summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <faern@faern.net>2023-03-31 10:41:51 +0200
committerOskar Nyberg <oskar@mullvad.net>2024-01-30 10:09:25 +0100
commit4e97ae3a7a566061675854fea1890518d02fd5c6 (patch)
tree0ba0324af1f62b0210ca7f91ec4286a63840269a
parent3ad7afed8319d07639df483873cf94159c7cdadb (diff)
downloadmullvadvpn-4e97ae3a7a566061675854fea1890518d02fd5c6.tar.xz
mullvadvpn-4e97ae3a7a566061675854fea1890518d02fd5c6.zip
Add PoC of 3D globe as map
-rw-r--r--webgl-maps-poc/3dmap.js701
-rw-r--r--webgl-maps-poc/gl-matrix-min.js28
-rw-r--r--webgl-maps-poc/index.html18
-rw-r--r--webgl-maps-poc/land-data-50m.js1
-rw-r--r--webgl-maps-poc/ocean-data.js1
-rw-r--r--webgl-maps-poc/webgl.css7
6 files changed, 756 insertions, 0 deletions
diff --git a/webgl-maps-poc/3dmap.js b/webgl-maps-poc/3dmap.js
new file mode 100644
index 0000000000..3dd6ac8731
--- /dev/null
+++ b/webgl-maps-poc/3dmap.js
@@ -0,0 +1,701 @@
+// Color values for various components of the map.
+const landColor = [0.16, 0.302, 0.45, 1.0];
+const oceanColor = [0.098, 0.18, 0.271, 1.0];
+// The color of borders between geographical entities
+const contourColor = oceanColor;
+
+// The green color of the location marker when in the secured state
+const locationMarkerSecureColor = [0.267, 0.678, 0.302];
+// The red color of the location marken when in the unsecured state
+const locationMarkerUnsecureColor = [0.890, 0.251, 0.224];
+
+// Zoom is distance from earths center. 1.0 is at the surface.
+// These constants define the zoom levels for the connected and disconnected states.
+const disconnectedZoom = 1.5;
+const connectedZoom = 1.35;
+
+// Animations longer than this time will use the out-in zoom animation.
+// Shorter animations will use the direct animation.
+const zoomAnimationStyleTimeBreakpoint = 1.7;
+// When animating with the out-in zoom animation, set the middle
+// zoom point to this times the max start or end zoom levels.
+const animationZoomoutFactor = 1.2;
+// Never zoom out further than this.
+const maxZoomout = Math.max(disconnectedZoom, connectedZoom) * animationZoomoutFactor;
+
+// The min and max time an animation to a new location can take.
+const animationMinTime = 1.3;
+const animationMaxTime = 2.5;
+
+// The angle in degrees that the camera sees in
+const angleOfView = 70;
+
+// A geographical latitude, longitude coordinate in *degrees*.
+// This class is also being abused as a 2D vector in some parts of the code.
+class Coordinate {
+ lat = 0.0;
+ long = 0.0;
+ constructor(lat, long) {
+ this.lat = lat;
+ this.long = long;
+ }
+
+ // When treated as a 2D vector: Get the length of said vector.
+ length() {
+ return Math.sqrt(this.lat * this.lat + this.long * this.long);
+ }
+
+ // When treated as a 2D vector: Scale that vector by `r`
+ scale(r) {
+ return new Coordinate(this.lat * r, this.long * r);
+ }
+
+ // When treated as a 2D vector: Add two vectors together returning the sum
+ add(otherCoordinate) {
+ return new Coordinate(this.lat + otherCoordinate.lat, this.long + otherCoordinate.long);
+ }
+}
+
+// ==== DEBUG constants ==== //
+const gothenburgCoordinate = new Coordinate(57.67, 11.98);
+const helsinkiCoordinate = new Coordinate(60.170833, 24.9375);
+const sydneyCoordinate = new Coordinate(-33.86, 151.21);
+const losAngelesCoordinate = new Coordinate(34.05, -118.25);
+const romeCoordinate = new Coordinate(41.893, 12.482);
+const poleCoordinate1 = new Coordinate(88, -90);
+const poleCoordinate2 = new Coordinate(88, 90);
+const antarcticaCoordinate = new Coordinate(-85, 0);
+
+// Class for drawing earth. Relies on a global constant `landData` being defined and
+// having the structure:
+//
+// ```
+// {
+// "positions": [<floats>],
+// "triangle_indices": [<integers>],
+// "contour_indices": [<integers>],
+// }
+// ```
+//
+// `positions`: A flat array with vertice float values for OpenGL to render.
+// each group of three floats is one vertice.
+// So `(positions[x], positions[x+1], positions[x+2])` is one vertice where
+// `x` is a multiple of 3.
+//
+// `triangle_indices`: The indexes in `positions` of the vertices that makes up the triangles of
+// the earth.
+//
+// # Example
+//
+// If `[indices[0], indices[1], indices[2]] == [7, 2, 0]`,
+// then the vertices for the first triangle to draw is:
+// `vertice0 = [positions[7*3], positions[7*3+1], positions[7*3+2]]
+// `vertice1 = [positions[2*3], positions[2*3+1], positions[2*3+2]]
+// `vertice2 = [positions[0*3], positions[0*3+1], positions[0*3+2]]
+//
+// The `*3` part comes from the fact that the `indices` says which vertice,
+// to pull from `positions`, and each vertice occupies three elements in `positions`.
+//
+// `contour_indices`: Same format as `triangle_indices` but denotes the indexes for drawing
+// the contours between geographical entities/countries.
+//
+// It also relies on a global constant `oceanData` with the following format:
+//
+// ```
+// {
+// positions: [<float>],
+// indices: [<integer>],
+// }
+// ```
+//
+// This is very similar to `landData`, but it denotes the vertexes and indices for the sphere that
+// is drawn as the ocean.
+
+class Globe {
+ constructor(gl) {
+ this.gl = gl;
+
+ this.landVertexBuffer = initArrayBuffer(gl, landData.positions);
+ this.landContourIndexBuffer = initIndexBuffer(gl, landData.contour_indices);
+ this.landTriangleIndexBuffer = initIndexBuffer(gl, landData.triangle_indices);
+ this.oceanVertexBuffer = initArrayBuffer(gl, oceanData.positions);
+ this.oceanIndexBuffer = initIndexBuffer(gl, oceanData.indices);
+
+ const shaderProgram = initShaderProgram(gl, Globe.vsSource, Globe.fsSource);
+ this.programInfo = {
+ program: shaderProgram,
+ attribLocations: {
+ vertexPosition: gl.getAttribLocation(shaderProgram, "aVertexPosition"),
+ },
+ uniformLocations: {
+ color: gl.getUniformLocation(shaderProgram, "uColor"),
+ projectionMatrix: gl.getUniformLocation(
+ shaderProgram,
+ "uProjectionMatrix"
+ ),
+ modelViewMatrix: gl.getUniformLocation(shaderProgram, "uModelViewMatrix"),
+ },
+ };
+ }
+
+ draw(projectionMatrix, viewMatrix) {
+ const globeViewMatrix = mat4.clone(viewMatrix);
+
+ this.gl.useProgram(this.programInfo.program);
+
+ // Draw country contour lines
+ drawBufferElements(this.gl, this.programInfo, projectionMatrix, globeViewMatrix,
+ this.landVertexBuffer, this.landContourIndexBuffer, contourColor, this.gl.LINES);
+
+ // We scale down to render the land triangles behind/under the country contour lines.
+ mat4.scale(
+ globeViewMatrix, // destination matrix
+ globeViewMatrix, // matrix to scale
+ [0.9999, 0.9999, 0.9999], // amount to scale
+ );
+
+ // Draw land triangles.
+ drawBufferElements(this.gl, this.programInfo, projectionMatrix, globeViewMatrix,
+ this.landVertexBuffer, this.landTriangleIndexBuffer, landColor, this.gl.TRIANGLES);
+
+ // Draw the ocean as a sphere just beneath the land.
+ drawBufferElements(this.gl, this.programInfo, projectionMatrix, globeViewMatrix,
+ this.oceanVertexBuffer, this.oceanIndexBuffer, oceanColor, this.gl.TRIANGLES);
+ }
+
+ static vsSource = `
+ attribute vec3 aVertexPosition;
+
+ uniform vec4 uColor;
+ uniform mat4 uModelViewMatrix;
+ uniform mat4 uProjectionMatrix;
+
+ varying lowp vec4 vColor;
+
+ void main(void) {
+ gl_Position = uProjectionMatrix * uModelViewMatrix * vec4(aVertexPosition, 1.0);
+ vColor = uColor;
+ }
+ `;
+
+ static fsSource = `
+ varying lowp vec4 vColor;
+
+ void main(void) {
+ gl_FragColor = vColor;
+ }
+ `;
+}
+
+// Class for rendering a location marker on a given coordinate on the globe.
+class LocationMarker {
+ constructor(gl, color) {
+ this.gl = gl;
+
+ const white = [1.0, 1.0, 1.0];
+ const black = [0.0, 0.0, 0.0];
+ const rings = [
+ circleFanVertices(32, 0.5, [0.0, 0.0, 0.0], [...color, 0.4], [...color, 0.4]), // Semi-transparent outer
+ circleFanVertices(16, 0.28, [0.0, -0.05, 0.00001], [...black, 0.55], [...black, 0.0]), // shadow
+ circleFanVertices(32, 0.185, [0.0, 0.0, 0.00002], [...white, 1.0], [...white, 1.0]), // white ring
+ circleFanVertices(32, 0.15, [0.0, 0.0, 0.00003], [...color, 1.0], [...color, 1.0]), // Center colored circle
+ ]
+ this.ringPositionCount = rings.map(r => r.positions.length);
+ this.positionBuffer = initArrayBuffer(gl, rings.map(r => r.positions).flat());
+ this.colorBuffer = initArrayBuffer(gl, rings.map(r => r.colors).flat());
+
+ const shaderProgram = initShaderProgram(gl, LocationMarker.vsSource, LocationMarker.fsSource);
+ this.programInfo = {
+ program: shaderProgram,
+ attribLocations: {
+ vertexPosition: gl.getAttribLocation(shaderProgram, 'aVertexPosition'),
+ vertexColor: gl.getAttribLocation(shaderProgram, 'aVertexColor'),
+ },
+ uniformLocations: {
+ projectionMatrix: gl.getUniformLocation(shaderProgram, 'uProjectionMatrix'),
+ modelViewMatrix: gl.getUniformLocation(shaderProgram, 'uModelViewMatrix'),
+ },
+ };
+ }
+
+ draw(projectionMatrix, viewMatrix, coordinate, size) {
+ const modelViewMatrix = mat4.clone(viewMatrix);
+
+ this.gl.useProgram(this.programInfo.program);
+
+ var [theta, phi] = coordinates2thetaphi(coordinate);
+ mat4.rotateY(modelViewMatrix, modelViewMatrix, theta);
+ mat4.rotateX(modelViewMatrix, modelViewMatrix, -phi);
+
+ mat4.scale(
+ modelViewMatrix,
+ modelViewMatrix,
+ [size, size, 1.0]
+ );
+ mat4.translate(
+ modelViewMatrix,
+ modelViewMatrix,
+ [0.0, 0.0, 1.0001]
+ );
+
+ {
+ this.gl.bindBuffer(this.gl.ARRAY_BUFFER, this.positionBuffer);
+ this.gl.vertexAttribPointer(
+ this.programInfo.attribLocations.vertexPosition,
+ 3, // num components
+ this.gl.FLOAT, // type
+ false, // normalize
+ 0, // stride
+ 0 // offset
+ );
+ this.gl.enableVertexAttribArray(this.programInfo.attribLocations.vertexPosition);
+ }
+ {
+ this.gl.bindBuffer(this.gl.ARRAY_BUFFER, this.colorBuffer);
+ this.gl.vertexAttribPointer(
+ this.programInfo.attribLocations.vertexColor,
+ 4, // num components
+ this.gl.FLOAT, // type
+ false, // normalize
+ 0, // stride
+ 0 // offset
+ );
+ this.gl.enableVertexAttribArray(this.programInfo.attribLocations.vertexColor);
+ }
+
+ // Set the shader uniforms
+ this.gl.uniformMatrix4fv(
+ this.programInfo.uniformLocations.projectionMatrix,
+ false,
+ projectionMatrix
+ );
+ this.gl.uniformMatrix4fv(
+ this.programInfo.uniformLocations.modelViewMatrix,
+ false,
+ modelViewMatrix
+ );
+
+ let offset = 0;
+ for (var i = 0; i < this.ringPositionCount.length; i++) {
+ const numVertices = this.ringPositionCount[i] / 3;
+ this.gl.drawArrays(this.gl.TRIANGLE_FAN, offset, numVertices);
+ offset += numVertices;
+ }
+ }
+
+ static vsSource = `
+ attribute vec3 aVertexPosition;
+ attribute vec4 aVertexColor;
+
+ uniform mat4 uModelViewMatrix;
+ uniform mat4 uProjectionMatrix;
+
+ varying lowp vec4 vColor;
+
+ void main(void) {
+ gl_Position = uProjectionMatrix * uModelViewMatrix * vec4(aVertexPosition, 1.0);
+ vColor = aVertexColor;
+ }
+ `;
+
+ static fsSource = `
+ varying lowp vec4 vColor;
+
+ void main(void) {
+ gl_FragColor = vColor;
+ }
+ `;
+}
+
+// Class for computing a smooth linear interpolation from
+// `startCoordinate` (2D coordinate in degrees), along `path` (2D vector),
+// starting at zoom level `startZoom` and ending in `endZoom`.
+// starting at time `startTime` (usually now() at the time of creating an instance),
+// and animating for `duration` seconds
+class SmoothLerp {
+ constructor(startCoordinate, path, startZoom, endZoom, startTime, duration) {
+ this.startCoordinate = startCoordinate;
+ this.path = path;
+ if (duration > zoomAnimationStyleTimeBreakpoint) {
+ this.zoomAnimation = new SmoothZoomOutIn(startZoom, endZoom);
+ } else {
+ this.zoomAnimation = new SmoothZoomDirect(startZoom, endZoom);
+ }
+ this.startTime = startTime;
+ this.duration = duration;
+ }
+
+ // Computes and returns the coordinate as well as the zoom level and the smoothened transition
+ // ratio of this lerp operation.
+ compute(now) {
+ const animationRatio = Math.min(Math.max((now - this.startTime) / this.duration, 0.0), 1.0);
+ const smoothAnimationRatio = smoothTransition(animationRatio);
+ const position = this.startCoordinate.add(this.path.scale(smoothAnimationRatio));
+ const zoom = this.zoomAnimation.compute(animationRatio);
+ return [position, zoom, smoothAnimationRatio];
+ }
+}
+
+// Zooms from startZoom to endZoom via a midpoint that is `animationZoomoutFactor` times higer up
+// than max(startZoom, endZoom).
+class SmoothZoomOutIn {
+ constructor(startZoom, endZoom) {
+ this.startZoom = startZoom;
+ this.endZoom = endZoom;
+ this.middleZoom = Math.min(Math.max(startZoom, endZoom) * animationZoomoutFactor, maxZoomout);
+ }
+
+ compute(animationRatio) {
+ // Linear animation ratio 0-1. 0.0-0.5 means zooming out and 0.5-1.0 means zooming in
+ if (animationRatio <= 0.5) {
+ const smoothAnimationRatio = smoothTransition(animationRatio * 2);
+ return this.startZoom + smoothAnimationRatio * (this.middleZoom - this.startZoom);
+ } else {
+ const smoothAnimationRatio = smoothTransition((animationRatio - 0.5) * 2);
+ return this.middleZoom - smoothAnimationRatio * (this.middleZoom - this.endZoom);
+ }
+ }
+}
+
+// Zooms from startZoom to endZoom directly in a smooth manner.
+class SmoothZoomDirect {
+ constructor(startZoom, endZoom) {
+ this.startZoom = startZoom;
+ this.endZoom = endZoom;
+ }
+
+ compute(animationRatio) {
+ const smoothAnimationRatio = smoothTransition(animationRatio);
+ return this.startZoom + smoothAnimationRatio * (this.endZoom - this.startZoom);
+ }
+}
+
+class Map {
+ constructor(gl, startCoordinate, connectionState) {
+ this.globe = new Globe(gl);
+ this.locationMarkerSecure = new LocationMarker(gl, locationMarkerSecureColor);
+ this.locationMarkerUnsecure = new LocationMarker(gl, locationMarkerUnsecureColor);
+
+ this.coordinate = startCoordinate;
+ this.zoom = connectionState ? connectedZoom : disconnectedZoom;
+ this.connectionState = connectionState;
+ // `targetCoordinate` is the same as `coordinate` when no animation is in progress.
+ // This is where the location marker is drawn.
+ this.targetCoordinate = startCoordinate;
+ // An array of smooth lerps. Empty when no animation is in progress.
+ this.animations = [];
+ }
+
+ // Move the location marker to `newCoordinate` (with state `connectionState`) and queue
+ // animation to move to that coordinate.
+ setLocation(newCoordinate, connectionState, now) {
+ const path = shortestPath(this.coordinate, newCoordinate);
+ // Compute animation time as a function of movement distance. Clamp the
+ // duration range between animationMinTime and animationMaxTime
+ const duration = Math.min(Math.max(path.length() / 20, animationMinTime), animationMaxTime);
+
+ const endZoom = connectionState ? connectedZoom : disconnectedZoom;
+ this.animations.push(new SmoothLerp(this.coordinate, path, this.zoom, endZoom, now, duration));
+
+ this.connectionState = connectionState;
+ this.targetCoordinate = newCoordinate;
+ }
+
+ // Render the map for the time `now`.
+ draw(projectionMatrix, now) {
+ this.updatePosition(now);
+
+ const viewMatrix = mat4.create();
+
+ // Move the camera back `this.zoom` away from the center of the globe.
+ mat4.translate(
+ viewMatrix, // destination matrix
+ viewMatrix, // matrix to translate
+ [0.0, 0.0, -this.zoom]
+ );
+
+ // Rotate the globe so the camera ends up looking down on `this.coordinate`.
+ var [theta, phi] = coordinates2thetaphi(this.coordinate);
+ mat4.rotateX(viewMatrix, viewMatrix, phi);
+ mat4.rotateY(viewMatrix, viewMatrix, -theta);
+
+ this.globe.draw(projectionMatrix, viewMatrix);
+
+ // Draw the appropriate location marker depending on our connection state.
+ const locationMarker = this.connectionState ? this.locationMarkerSecure : this.locationMarkerUnsecure;
+ locationMarker.draw(projectionMatrix, viewMatrix, this.targetCoordinate, 0.03 * this.zoom);
+ }
+
+ // Private funciton that just updates internal animation state to match with time `now`.
+ updatePosition(now) {
+ if (this.animations.length === 0) {
+ return;
+ }
+
+ // Compute lerp position and ratio of the newest animation
+ const lastAnimation = this.animations[this.animations.length - 1];
+ var [coordinate, zoom, ratio] = lastAnimation.compute(now);
+ if (ratio >= 1.0) {
+ // Animation is done. We can empty the animations array
+ this.animations = [];
+ }
+
+ // Loop through all previous animations (that are still in progress) backwards and
+ // lerp between them to compute our actual location.
+ for (var i = this.animations.length - 2; i >= 0; i--) {
+ const [previousPoint, previousZoom, animationRatio] = this.animations[i].compute(now);
+ coordinate = lerpCoordinate(previousPoint, coordinate, ratio);
+ zoom = lerp(previousZoom, zoom, ratio);
+ // If this animation is finished, none of the animations [0, i) will have any effect,
+ // so they can be pruned
+ if (animationRatio >= 1.0 && i > 0) {
+ this.animations = this.animations.slice(i, this.animations.length);
+ break;
+ }
+ ratio = animationRatio;
+ }
+
+ // Set our coordinate and zoom to the values interpolated from all ongoing animations.
+ this.coordinate = coordinate;
+ this.zoom = zoom;
+ }
+}
+
+main();
+
+function main() {
+ const canvas = document.querySelector("#glcanvas");
+ const gl = canvas.getContext("webgl2", { antialias: true });
+
+ if (!gl) {
+ alert(
+ "Unable to initialize WebGL. Your browser or machine may not support it."
+ );
+ return;
+ }
+
+ const map = new Map(gl, gothenburgCoordinate, true);
+
+ // Hide triangles not facing the camera
+ gl.enable(gl.CULL_FACE);
+ gl.cullFace(gl.BACK);
+
+ // Enable transparency (alpha < 1.0)
+ gl.enable(gl.BLEND);
+ gl.blendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA);
+
+ // Enables using gl.UNSIGNED_INT for indexes. Allows 32 bit integer
+ // indexes. Needed to have more than 2^16 vertices in one buffer.
+ // Not needed on WebGL2 canvases where it's enabled by default
+ // const ext = gl.getExtension('OES_element_index_uint');
+
+ // Create a perspective matrix, a special matrix that is
+ // used to simulate the distortion of perspective in a camera.
+ const fieldOfView = angleOfView / 180 * Math.PI; // in radians
+ const aspect = gl.canvas.clientWidth / gl.canvas.clientHeight;
+ const zNear = 0.1;
+ const zFar = 10;
+ const projectionMatrix = mat4.create();
+ mat4.perspective(projectionMatrix, fieldOfView, aspect, zNear, zFar);
+
+ var hasSetCoordinate = 0;
+
+ // Draw the scene repeatedly
+ function render(now) {
+ now *= 0.001; // convert to seconds
+
+ if (now > 1.5 && hasSetCoordinate == 0) {
+ map.setLocation(sydneyCoordinate, false, now);
+ hasSetCoordinate = 1;
+ } else if (now > 3 && hasSetCoordinate == 1) {
+ map.setLocation(romeCoordinate, true, now);
+ hasSetCoordinate = 2;
+ } else if (now > 4.5 && hasSetCoordinate == 2) {
+ map.setLocation(losAngelesCoordinate, false, now);
+ hasSetCoordinate = 3;
+ } else if (now > 8 && hasSetCoordinate == 3) {
+ map.setLocation(helsinkiCoordinate, true, now);
+ hasSetCoordinate = 4;
+ }
+
+ drawScene(gl, projectionMatrix, now, map);
+ requestAnimationFrame(render);
+ }
+ requestAnimationFrame(render);
+}
+
+function drawScene(gl, projectionMatrix, now, map) {
+ gl.clearColor(0.0, 0.0, 0.0, 1.0); // Clear to black, fully opaque
+ gl.clearDepth(1.0); // Clear everything
+ gl.enable(gl.DEPTH_TEST); // Enable depth testing
+ gl.depthFunc(gl.LEQUAL); // Near things obscure far things
+
+ // Clear the canvas before we start drawing on it.
+ gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
+
+ map.draw(projectionMatrix, now);
+}
+
+// Draws primitives of type `mode` (TRIANGLES, LINES etc) using vertex positions from
+// `positionBuffer` at indices in `indices` with the color `color` and using the shaders in
+// `programInfo`.
+function drawBufferElements(gl, programInfo, projectionMatrix, modelViewMatrix, positionBuffer, indices, color, mode) {
+ {
+ gl.bindBuffer(gl.ARRAY_BUFFER, positionBuffer);
+ gl.vertexAttribPointer(
+ programInfo.attribLocations.vertexPosition,
+ 3, // num components
+ gl.FLOAT, // type
+ false, // normalize
+ 0, // stride
+ 0 // offset
+ );
+ gl.enableVertexAttribArray(programInfo.attribLocations.vertexPosition);
+ }
+
+ // Tell WebGL which indices to use to index the vertices
+ gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indices.indexBuffer);
+
+ // Set the shader uniforms
+ gl.uniform4fv(
+ programInfo.uniformLocations.color,
+ color,
+ );
+ gl.uniformMatrix4fv(
+ programInfo.uniformLocations.projectionMatrix,
+ false,
+ projectionMatrix
+ );
+ gl.uniformMatrix4fv(
+ programInfo.uniformLocations.modelViewMatrix,
+ false,
+ modelViewMatrix
+ );
+
+ gl.drawElements(mode, indices.length, gl.UNSIGNED_INT, 0);
+}
+
+// Allocates and returns an ELEMENT_ARRAY_BUFFER filled with the Uint32 indices in `indices`.
+// On a WebGL1 canvas the `OES_element_index_uint` extension must be loaded.
+function initIndexBuffer(gl, indices) {
+ const indexBuffer = gl.createBuffer();
+ gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indexBuffer);
+ gl.bufferData(
+ gl.ELEMENT_ARRAY_BUFFER,
+ new Uint32Array(indices),
+ gl.STATIC_DRAW
+ );
+ return {
+ indexBuffer: indexBuffer,
+ length: indices.length,
+ };
+}
+
+// Allocates and returns an ARRAY_BUFFER filled with the Float32 data in `data`.
+// This type of buffer is used for vertex coordinate data and color values.
+function initArrayBuffer(gl, data) {
+ const arrayBuffer = gl.createBuffer();
+ gl.bindBuffer(gl.ARRAY_BUFFER, arrayBuffer);
+ gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(data), gl.STATIC_DRAW);
+ return arrayBuffer;
+}
+
+// Initialize a shader program, so WebGL knows how to draw our data
+function initShaderProgram(gl, vsSource, fsSource) {
+ const vertexShader = loadShader(gl, gl.VERTEX_SHADER, vsSource);
+ const fragmentShader = loadShader(gl, gl.FRAGMENT_SHADER, fsSource);
+
+ const shaderProgram = gl.createProgram();
+ gl.attachShader(shaderProgram, vertexShader);
+ gl.attachShader(shaderProgram, fragmentShader);
+ gl.linkProgram(shaderProgram);
+
+ // See if creating the shader program was successful
+ if (!gl.getProgramParameter(shaderProgram, gl.LINK_STATUS)) {
+ alert(
+ "Unable to initialize the shader program: " +
+ gl.getProgramInfoLog(shaderProgram)
+ );
+ return null;
+ }
+
+ return shaderProgram;
+}
+
+// creates a shader of the given type, uploads the source and compiles it.
+function loadShader(gl, type, source) {
+ const shader = gl.createShader(type);
+ gl.shaderSource(shader, source);
+ gl.compileShader(shader);
+
+ // See if the shader compiled successfully
+ if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) {
+ alert(
+ "An error occurred compiling the shaders: " + gl.getShaderInfoLog(shader)
+ );
+ gl.deleteShader(shader);
+ return null;
+ }
+
+ return shader;
+}
+
+
+// Takes coordinates in degrees and outputs [theta, phi]
+function coordinates2thetaphi(coordinate) {
+ var phi = coordinate.lat * (Math.PI / 180);
+ var theta = coordinate.long * (Math.PI / 180);
+ return [theta, phi];
+};
+
+// Returns a `Coordinate` between c1 and c2.
+// ratio=0.0 returns c1. ratio=1.0 returns c2.
+function lerpCoordinate(c1, c2, ratio) {
+ const lat = lerp(c1.lat, c2.lat, ratio);
+ const long = lerp(c1.long, c2.long, ratio);
+ return new Coordinate(lat, long);
+}
+
+// Performs linear interpolation between two floats, `x` and `y`.
+function lerp(x, y, ratio) {
+ return x + (y - x) * ratio;
+}
+
+// The shortest coordinate change from c1 to c2.
+// Returns a vector representing the movement needed to go from c1 to c2 (as a `Coordinate`)
+function shortestPath(c1, c2) {
+ var longDiff = c2.long - c1.long;
+ if (longDiff > 180) {
+ longDiff -= 360;
+ } else if (longDiff < -180) {
+ longDiff += 360;
+ }
+ return new Coordinate(c2.lat - c1.lat, longDiff);
+}
+
+// smooths out a linear 0-1 transition into an accelerating and decelerating transition
+function smoothTransition(x) {
+ return 0.5 - 0.5 * Math.cos(x * Math.PI);
+}
+
+// Returns vertex positions and color values for a circle.
+// `offset` is a vector of x, y and z values determining how much to offset the circle
+// position from origo
+function circleFanVertices(numEdges, radius, offset, centerColor, ringColor) {
+ const positions = [...offset];
+ const colors = [...centerColor];
+ for (var i = 0; i <= numEdges; i++) {
+ const angle = (i / numEdges) * 2 * Math.PI;
+ const x = offset[0] + radius * Math.cos(angle);
+ const y = offset[1] + radius * Math.sin(angle);
+ const z = offset[2];
+ positions.push(x, y, z);
+ colors.push(...ringColor);
+ }
+ return { positions: positions, colors: colors };
+}
+
+
+// Good resources:
+// https://www.youtube.com/watch?v=aVwxzDHniEw - The Beauty of Bézier Curves
+// https://splines.readthedocs.io/en/latest/rotation/slerp.html - slerp - spherical lerp \ No newline at end of file
diff --git a/webgl-maps-poc/gl-matrix-min.js b/webgl-maps-poc/gl-matrix-min.js
new file mode 100644
index 0000000000..747b3a77ee
--- /dev/null
+++ b/webgl-maps-poc/gl-matrix-min.js
@@ -0,0 +1,28 @@
+/*!
+@fileoverview gl-matrix - High performance matrix and vector operations
+@author Brandon Jones
+@author Colin MacKenzie IV
+@version 2.7.0
+
+Copyright (c) 2015-2018, Brandon Jones, Colin MacKenzie IV.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+*/
+!function(t,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n();else if("function"==typeof define&&define.amd)define([],n);else{var r=n();for(var a in r)("object"==typeof exports?exports:t)[a]=r[a]}}("undefined"!=typeof self?self:this,function(){return function(t){var n={};function r(a){if(n[a])return n[a].exports;var e=n[a]={i:a,l:!1,exports:{}};return t[a].call(e.exports,e,e.exports,r),e.l=!0,e.exports}return r.m=t,r.c=n,r.d=function(t,n,a){r.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:a})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,n){if(1&n&&(t=r(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var a=Object.create(null);if(r.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var e in t)r.d(a,e,function(n){return t[n]}.bind(null,e));return a},r.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(n,"a",n),n},r.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r.p="",r(r.s=10)}([function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.setMatrixArrayType=function(t){n.ARRAY_TYPE=t},n.toRadian=function(t){return t*e},n.equals=function(t,n){return Math.abs(t-n)<=a*Math.max(1,Math.abs(t),Math.abs(n))};var a=n.EPSILON=1e-6;n.ARRAY_TYPE="undefined"!=typeof Float32Array?Float32Array:Array,n.RANDOM=Math.random;var e=Math.PI/180},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.forEach=n.sqrLen=n.len=n.sqrDist=n.dist=n.div=n.mul=n.sub=void 0,n.create=e,n.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},n.fromValues=function(t,n,r,e){var u=new a.ARRAY_TYPE(4);return u[0]=t,u[1]=n,u[2]=r,u[3]=e,u},n.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},n.set=function(t,n,r,a,e){return t[0]=n,t[1]=r,t[2]=a,t[3]=e,t},n.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},n.subtract=u,n.multiply=o,n.divide=i,n.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t[3]=Math.ceil(n[3]),t},n.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t[3]=Math.floor(n[3]),t},n.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t[3]=Math.min(n[3],r[3]),t},n.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t[3]=Math.max(n[3],r[3]),t},n.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t[3]=Math.round(n[3]),t},n.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},n.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t},n.distance=s,n.squaredDistance=c,n.length=f,n.squaredLength=M,n.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t[3]=-n[3],t},n.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t[3]=1/n[3],t},n.normalize=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r*r+a*a+e*e+u*u;o>0&&(o=1/Math.sqrt(o),t[0]=r*o,t[1]=a*o,t[2]=e*o,t[3]=u*o);return t},n.dot=function(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]+t[3]*n[3]},n.lerp=function(t,n,r,a){var e=n[0],u=n[1],o=n[2],i=n[3];return t[0]=e+a*(r[0]-e),t[1]=u+a*(r[1]-u),t[2]=o+a*(r[2]-o),t[3]=i+a*(r[3]-i),t},n.random=function(t,n){var r,e,u,o,i,s;n=n||1;do{r=2*a.RANDOM()-1,e=2*a.RANDOM()-1,i=r*r+e*e}while(i>=1);do{u=2*a.RANDOM()-1,o=2*a.RANDOM()-1,s=u*u+o*o}while(s>=1);var c=Math.sqrt((1-i)/s);return t[0]=n*r,t[1]=n*e,t[2]=n*u*c,t[3]=n*o*c,t},n.transformMat4=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3];return t[0]=r[0]*a+r[4]*e+r[8]*u+r[12]*o,t[1]=r[1]*a+r[5]*e+r[9]*u+r[13]*o,t[2]=r[2]*a+r[6]*e+r[10]*u+r[14]*o,t[3]=r[3]*a+r[7]*e+r[11]*u+r[15]*o,t},n.transformQuat=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=r[0],i=r[1],s=r[2],c=r[3],f=c*a+i*u-s*e,M=c*e+s*a-o*u,h=c*u+o*e-i*a,l=-o*a-i*e-s*u;return t[0]=f*c+l*-o+M*-s-h*-i,t[1]=M*c+l*-i+h*-o-f*-s,t[2]=h*c+l*-s+f*-i-M*-o,t[3]=n[3],t},n.str=function(t){return"vec4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},n.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},n.equals=function(t,n){var r=t[0],e=t[1],u=t[2],o=t[3],i=n[0],s=n[1],c=n[2],f=n[3];return Math.abs(r-i)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(i))&&Math.abs(e-s)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(s))&&Math.abs(u-c)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(c))&&Math.abs(o-f)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(f))};var a=function(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}(r(0));function e(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0),t}function u(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}function o(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t[3]=n[3]*r[3],t}function i(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t[3]=n[3]/r[3],t}function s(t,n){var r=n[0]-t[0],a=n[1]-t[1],e=n[2]-t[2],u=n[3]-t[3];return Math.sqrt(r*r+a*a+e*e+u*u)}function c(t,n){var r=n[0]-t[0],a=n[1]-t[1],e=n[2]-t[2],u=n[3]-t[3];return r*r+a*a+e*e+u*u}function f(t){var n=t[0],r=t[1],a=t[2],e=t[3];return Math.sqrt(n*n+r*r+a*a+e*e)}function M(t){var n=t[0],r=t[1],a=t[2],e=t[3];return n*n+r*r+a*a+e*e}n.sub=u,n.mul=o,n.div=i,n.dist=s,n.sqrDist=c,n.len=f,n.sqrLen=M,n.forEach=function(){var t=e();return function(n,r,a,e,u,o){var i=void 0,s=void 0;for(r||(r=4),a||(a=0),s=e?Math.min(e*r+a,n.length):n.length,i=a;i<s;i+=r)t[0]=n[i],t[1]=n[i+1],t[2]=n[i+2],t[3]=n[i+3],u(t,t,o),n[i]=t[0],n[i+1]=t[1],n[i+2]=t[2],n[i+3]=t[3];return n}}()},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.forEach=n.sqrLen=n.len=n.sqrDist=n.dist=n.div=n.mul=n.sub=void 0,n.create=e,n.clone=function(t){var n=new a.ARRAY_TYPE(3);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n},n.length=u,n.fromValues=o,n.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t},n.set=function(t,n,r,a){return t[0]=n,t[1]=r,t[2]=a,t},n.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t},n.subtract=i,n.multiply=s,n.divide=c,n.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t[2]=Math.ceil(n[2]),t},n.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t[2]=Math.floor(n[2]),t},n.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t[2]=Math.min(n[2],r[2]),t},n.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t[2]=Math.max(n[2],r[2]),t},n.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t[2]=Math.round(n[2]),t},n.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t},n.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t},n.distance=f,n.squaredDistance=M,n.squaredLength=h,n.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t},n.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t[2]=1/n[2],t},n.normalize=l,n.dot=v,n.cross=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=r[0],i=r[1],s=r[2];return t[0]=e*s-u*i,t[1]=u*o-a*s,t[2]=a*i-e*o,t},n.lerp=function(t,n,r,a){var e=n[0],u=n[1],o=n[2];return t[0]=e+a*(r[0]-e),t[1]=u+a*(r[1]-u),t[2]=o+a*(r[2]-o),t},n.hermite=function(t,n,r,a,e,u){var o=u*u,i=o*(2*u-3)+1,s=o*(u-2)+u,c=o*(u-1),f=o*(3-2*u);return t[0]=n[0]*i+r[0]*s+a[0]*c+e[0]*f,t[1]=n[1]*i+r[1]*s+a[1]*c+e[1]*f,t[2]=n[2]*i+r[2]*s+a[2]*c+e[2]*f,t},n.bezier=function(t,n,r,a,e,u){var o=1-u,i=o*o,s=u*u,c=i*o,f=3*u*i,M=3*s*o,h=s*u;return t[0]=n[0]*c+r[0]*f+a[0]*M+e[0]*h,t[1]=n[1]*c+r[1]*f+a[1]*M+e[1]*h,t[2]=n[2]*c+r[2]*f+a[2]*M+e[2]*h,t},n.random=function(t,n){n=n||1;var r=2*a.RANDOM()*Math.PI,e=2*a.RANDOM()-1,u=Math.sqrt(1-e*e)*n;return t[0]=Math.cos(r)*u,t[1]=Math.sin(r)*u,t[2]=e*n,t},n.transformMat4=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=r[3]*a+r[7]*e+r[11]*u+r[15];return o=o||1,t[0]=(r[0]*a+r[4]*e+r[8]*u+r[12])/o,t[1]=(r[1]*a+r[5]*e+r[9]*u+r[13])/o,t[2]=(r[2]*a+r[6]*e+r[10]*u+r[14])/o,t},n.transformMat3=function(t,n,r){var a=n[0],e=n[1],u=n[2];return t[0]=a*r[0]+e*r[3]+u*r[6],t[1]=a*r[1]+e*r[4]+u*r[7],t[2]=a*r[2]+e*r[5]+u*r[8],t},n.transformQuat=function(t,n,r){var a=r[0],e=r[1],u=r[2],o=r[3],i=n[0],s=n[1],c=n[2],f=e*c-u*s,M=u*i-a*c,h=a*s-e*i,l=e*h-u*M,v=u*f-a*h,d=a*M-e*f,b=2*o;return f*=b,M*=b,h*=b,l*=2,v*=2,d*=2,t[0]=i+f+l,t[1]=s+M+v,t[2]=c+h+d,t},n.rotateX=function(t,n,r,a){var e=[],u=[];return e[0]=n[0]-r[0],e[1]=n[1]-r[1],e[2]=n[2]-r[2],u[0]=e[0],u[1]=e[1]*Math.cos(a)-e[2]*Math.sin(a),u[2]=e[1]*Math.sin(a)+e[2]*Math.cos(a),t[0]=u[0]+r[0],t[1]=u[1]+r[1],t[2]=u[2]+r[2],t},n.rotateY=function(t,n,r,a){var e=[],u=[];return e[0]=n[0]-r[0],e[1]=n[1]-r[1],e[2]=n[2]-r[2],u[0]=e[2]*Math.sin(a)+e[0]*Math.cos(a),u[1]=e[1],u[2]=e[2]*Math.cos(a)-e[0]*Math.sin(a),t[0]=u[0]+r[0],t[1]=u[1]+r[1],t[2]=u[2]+r[2],t},n.rotateZ=function(t,n,r,a){var e=[],u=[];return e[0]=n[0]-r[0],e[1]=n[1]-r[1],e[2]=n[2]-r[2],u[0]=e[0]*Math.cos(a)-e[1]*Math.sin(a),u[1]=e[0]*Math.sin(a)+e[1]*Math.cos(a),u[2]=e[2],t[0]=u[0]+r[0],t[1]=u[1]+r[1],t[2]=u[2]+r[2],t},n.angle=function(t,n){var r=o(t[0],t[1],t[2]),a=o(n[0],n[1],n[2]);l(r,r),l(a,a);var e=v(r,a);return e>1?0:e<-1?Math.PI:Math.acos(e)},n.str=function(t){return"vec3("+t[0]+", "+t[1]+", "+t[2]+")"},n.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]},n.equals=function(t,n){var r=t[0],e=t[1],u=t[2],o=n[0],i=n[1],s=n[2];return Math.abs(r-o)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(e-i)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(i))&&Math.abs(u-s)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(s))};var a=function(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}(r(0));function e(){var t=new a.ARRAY_TYPE(3);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t}function u(t){var n=t[0],r=t[1],a=t[2];return Math.sqrt(n*n+r*r+a*a)}function o(t,n,r){var e=new a.ARRAY_TYPE(3);return e[0]=t,e[1]=n,e[2]=r,e}function i(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t}function s(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t[2]=n[2]*r[2],t}function c(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t[2]=n[2]/r[2],t}function f(t,n){var r=n[0]-t[0],a=n[1]-t[1],e=n[2]-t[2];return Math.sqrt(r*r+a*a+e*e)}function M(t,n){var r=n[0]-t[0],a=n[1]-t[1],e=n[2]-t[2];return r*r+a*a+e*e}function h(t){var n=t[0],r=t[1],a=t[2];return n*n+r*r+a*a}function l(t,n){var r=n[0],a=n[1],e=n[2],u=r*r+a*a+e*e;return u>0&&(u=1/Math.sqrt(u),t[0]=n[0]*u,t[1]=n[1]*u,t[2]=n[2]*u),t}function v(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}n.sub=i,n.mul=s,n.div=c,n.dist=f,n.sqrDist=M,n.len=u,n.sqrLen=h,n.forEach=function(){var t=e();return function(n,r,a,e,u,o){var i=void 0,s=void 0;for(r||(r=3),a||(a=0),s=e?Math.min(e*r+a,n.length):n.length,i=a;i<s;i+=r)t[0]=n[i],t[1]=n[i+1],t[2]=n[i+2],u(t,t,o),n[i]=t[0],n[i+1]=t[1],n[i+2]=t[2];return n}}()},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.setAxes=n.sqlerp=n.rotationTo=n.equals=n.exactEquals=n.normalize=n.sqrLen=n.squaredLength=n.len=n.length=n.lerp=n.dot=n.scale=n.mul=n.add=n.set=n.copy=n.fromValues=n.clone=void 0,n.create=s,n.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t},n.setAxisAngle=c,n.getAxisAngle=function(t,n){var r=2*Math.acos(n[3]),e=Math.sin(r/2);e>a.EPSILON?(t[0]=n[0]/e,t[1]=n[1]/e,t[2]=n[2]/e):(t[0]=1,t[1]=0,t[2]=0);return r},n.multiply=f,n.rotateX=function(t,n,r){r*=.5;var a=n[0],e=n[1],u=n[2],o=n[3],i=Math.sin(r),s=Math.cos(r);return t[0]=a*s+o*i,t[1]=e*s+u*i,t[2]=u*s-e*i,t[3]=o*s-a*i,t},n.rotateY=function(t,n,r){r*=.5;var a=n[0],e=n[1],u=n[2],o=n[3],i=Math.sin(r),s=Math.cos(r);return t[0]=a*s-u*i,t[1]=e*s+o*i,t[2]=u*s+a*i,t[3]=o*s-e*i,t},n.rotateZ=function(t,n,r){r*=.5;var a=n[0],e=n[1],u=n[2],o=n[3],i=Math.sin(r),s=Math.cos(r);return t[0]=a*s+e*i,t[1]=e*s-a*i,t[2]=u*s+o*i,t[3]=o*s-u*i,t},n.calculateW=function(t,n){var r=n[0],a=n[1],e=n[2];return t[0]=r,t[1]=a,t[2]=e,t[3]=Math.sqrt(Math.abs(1-r*r-a*a-e*e)),t},n.slerp=M,n.random=function(t){var n=a.RANDOM(),r=a.RANDOM(),e=a.RANDOM(),u=Math.sqrt(1-n),o=Math.sqrt(n);return t[0]=u*Math.sin(2*Math.PI*r),t[1]=u*Math.cos(2*Math.PI*r),t[2]=o*Math.sin(2*Math.PI*e),t[3]=o*Math.cos(2*Math.PI*e),t},n.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r*r+a*a+e*e+u*u,i=o?1/o:0;return t[0]=-r*i,t[1]=-a*i,t[2]=-e*i,t[3]=u*i,t},n.conjugate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t[3]=n[3],t},n.fromMat3=h,n.fromEuler=function(t,n,r,a){var e=.5*Math.PI/180;n*=e,r*=e,a*=e;var u=Math.sin(n),o=Math.cos(n),i=Math.sin(r),s=Math.cos(r),c=Math.sin(a),f=Math.cos(a);return t[0]=u*s*f-o*i*c,t[1]=o*i*f+u*s*c,t[2]=o*s*c-u*i*f,t[3]=o*s*f+u*i*c,t},n.str=function(t){return"quat("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"};var a=i(r(0)),e=i(r(5)),u=i(r(2)),o=i(r(1));function i(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}function s(){var t=new a.ARRAY_TYPE(4);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t[3]=1,t}function c(t,n,r){r*=.5;var a=Math.sin(r);return t[0]=a*n[0],t[1]=a*n[1],t[2]=a*n[2],t[3]=Math.cos(r),t}function f(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=r[0],s=r[1],c=r[2],f=r[3];return t[0]=a*f+o*i+e*c-u*s,t[1]=e*f+o*s+u*i-a*c,t[2]=u*f+o*c+a*s-e*i,t[3]=o*f-a*i-e*s-u*c,t}function M(t,n,r,e){var u=n[0],o=n[1],i=n[2],s=n[3],c=r[0],f=r[1],M=r[2],h=r[3],l=void 0,v=void 0,d=void 0,b=void 0,m=void 0;return(v=u*c+o*f+i*M+s*h)<0&&(v=-v,c=-c,f=-f,M=-M,h=-h),1-v>a.EPSILON?(l=Math.acos(v),d=Math.sin(l),b=Math.sin((1-e)*l)/d,m=Math.sin(e*l)/d):(b=1-e,m=e),t[0]=b*u+m*c,t[1]=b*o+m*f,t[2]=b*i+m*M,t[3]=b*s+m*h,t}function h(t,n){var r=n[0]+n[4]+n[8],a=void 0;if(r>0)a=Math.sqrt(r+1),t[3]=.5*a,a=.5/a,t[0]=(n[5]-n[7])*a,t[1]=(n[6]-n[2])*a,t[2]=(n[1]-n[3])*a;else{var e=0;n[4]>n[0]&&(e=1),n[8]>n[3*e+e]&&(e=2);var u=(e+1)%3,o=(e+2)%3;a=Math.sqrt(n[3*e+e]-n[3*u+u]-n[3*o+o]+1),t[e]=.5*a,a=.5/a,t[3]=(n[3*u+o]-n[3*o+u])*a,t[u]=(n[3*u+e]+n[3*e+u])*a,t[o]=(n[3*o+e]+n[3*e+o])*a}return t}n.clone=o.clone,n.fromValues=o.fromValues,n.copy=o.copy,n.set=o.set,n.add=o.add,n.mul=f,n.scale=o.scale,n.dot=o.dot,n.lerp=o.lerp;var l=n.length=o.length,v=(n.len=l,n.squaredLength=o.squaredLength),d=(n.sqrLen=v,n.normalize=o.normalize);n.exactEquals=o.exactEquals,n.equals=o.equals,n.rotationTo=function(){var t=u.create(),n=u.fromValues(1,0,0),r=u.fromValues(0,1,0);return function(a,e,o){var i=u.dot(e,o);return i<-.999999?(u.cross(t,n,e),u.len(t)<1e-6&&u.cross(t,r,e),u.normalize(t,t),c(a,t,Math.PI),a):i>.999999?(a[0]=0,a[1]=0,a[2]=0,a[3]=1,a):(u.cross(t,e,o),a[0]=t[0],a[1]=t[1],a[2]=t[2],a[3]=1+i,d(a,a))}}(),n.sqlerp=function(){var t=s(),n=s();return function(r,a,e,u,o,i){return M(t,a,o,i),M(n,e,u,i),M(r,t,n,2*i*(1-i)),r}}(),n.setAxes=function(){var t=e.create();return function(n,r,a,e){return t[0]=a[0],t[3]=a[1],t[6]=a[2],t[1]=e[0],t[4]=e[1],t[7]=e[2],t[2]=-r[0],t[5]=-r[1],t[8]=-r[2],d(n,h(n,t))}}()},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.sub=n.mul=void 0,n.create=function(){var t=new a.ARRAY_TYPE(16);a.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0);return t[0]=1,t[5]=1,t[10]=1,t[15]=1,t},n.clone=function(t){var n=new a.ARRAY_TYPE(16);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n[6]=t[6],n[7]=t[7],n[8]=t[8],n[9]=t[9],n[10]=t[10],n[11]=t[11],n[12]=t[12],n[13]=t[13],n[14]=t[14],n[15]=t[15],n},n.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t[9]=n[9],t[10]=n[10],t[11]=n[11],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15],t},n.fromValues=function(t,n,r,e,u,o,i,s,c,f,M,h,l,v,d,b){var m=new a.ARRAY_TYPE(16);return m[0]=t,m[1]=n,m[2]=r,m[3]=e,m[4]=u,m[5]=o,m[6]=i,m[7]=s,m[8]=c,m[9]=f,m[10]=M,m[11]=h,m[12]=l,m[13]=v,m[14]=d,m[15]=b,m},n.set=function(t,n,r,a,e,u,o,i,s,c,f,M,h,l,v,d,b){return t[0]=n,t[1]=r,t[2]=a,t[3]=e,t[4]=u,t[5]=o,t[6]=i,t[7]=s,t[8]=c,t[9]=f,t[10]=M,t[11]=h,t[12]=l,t[13]=v,t[14]=d,t[15]=b,t},n.identity=e,n.transpose=function(t,n){if(t===n){var r=n[1],a=n[2],e=n[3],u=n[6],o=n[7],i=n[11];t[1]=n[4],t[2]=n[8],t[3]=n[12],t[4]=r,t[6]=n[9],t[7]=n[13],t[8]=a,t[9]=u,t[11]=n[14],t[12]=e,t[13]=o,t[14]=i}else t[0]=n[0],t[1]=n[4],t[2]=n[8],t[3]=n[12],t[4]=n[1],t[5]=n[5],t[6]=n[9],t[7]=n[13],t[8]=n[2],t[9]=n[6],t[10]=n[10],t[11]=n[14],t[12]=n[3],t[13]=n[7],t[14]=n[11],t[15]=n[15];return t},n.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],s=n[6],c=n[7],f=n[8],M=n[9],h=n[10],l=n[11],v=n[12],d=n[13],b=n[14],m=n[15],p=r*i-a*o,P=r*s-e*o,A=r*c-u*o,E=a*s-e*i,O=a*c-u*i,R=e*c-u*s,y=f*d-M*v,q=f*b-h*v,x=f*m-l*v,_=M*b-h*d,Y=M*m-l*d,L=h*m-l*b,S=p*L-P*Y+A*_+E*x-O*q+R*y;if(!S)return null;return S=1/S,t[0]=(i*L-s*Y+c*_)*S,t[1]=(e*Y-a*L-u*_)*S,t[2]=(d*R-b*O+m*E)*S,t[3]=(h*O-M*R-l*E)*S,t[4]=(s*x-o*L-c*q)*S,t[5]=(r*L-e*x+u*q)*S,t[6]=(b*A-v*R-m*P)*S,t[7]=(f*R-h*A+l*P)*S,t[8]=(o*Y-i*x+c*y)*S,t[9]=(a*x-r*Y-u*y)*S,t[10]=(v*O-d*A+m*p)*S,t[11]=(M*A-f*O-l*p)*S,t[12]=(i*q-o*_-s*y)*S,t[13]=(r*_-a*q+e*y)*S,t[14]=(d*P-v*E-b*p)*S,t[15]=(f*E-M*P+h*p)*S,t},n.adjoint=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],s=n[6],c=n[7],f=n[8],M=n[9],h=n[10],l=n[11],v=n[12],d=n[13],b=n[14],m=n[15];return t[0]=i*(h*m-l*b)-M*(s*m-c*b)+d*(s*l-c*h),t[1]=-(a*(h*m-l*b)-M*(e*m-u*b)+d*(e*l-u*h)),t[2]=a*(s*m-c*b)-i*(e*m-u*b)+d*(e*c-u*s),t[3]=-(a*(s*l-c*h)-i*(e*l-u*h)+M*(e*c-u*s)),t[4]=-(o*(h*m-l*b)-f*(s*m-c*b)+v*(s*l-c*h)),t[5]=r*(h*m-l*b)-f*(e*m-u*b)+v*(e*l-u*h),t[6]=-(r*(s*m-c*b)-o*(e*m-u*b)+v*(e*c-u*s)),t[7]=r*(s*l-c*h)-o*(e*l-u*h)+f*(e*c-u*s),t[8]=o*(M*m-l*d)-f*(i*m-c*d)+v*(i*l-c*M),t[9]=-(r*(M*m-l*d)-f*(a*m-u*d)+v*(a*l-u*M)),t[10]=r*(i*m-c*d)-o*(a*m-u*d)+v*(a*c-u*i),t[11]=-(r*(i*l-c*M)-o*(a*l-u*M)+f*(a*c-u*i)),t[12]=-(o*(M*b-h*d)-f*(i*b-s*d)+v*(i*h-s*M)),t[13]=r*(M*b-h*d)-f*(a*b-e*d)+v*(a*h-e*M),t[14]=-(r*(i*b-s*d)-o*(a*b-e*d)+v*(a*s-e*i)),t[15]=r*(i*h-s*M)-o*(a*h-e*M)+f*(a*s-e*i),t},n.determinant=function(t){var n=t[0],r=t[1],a=t[2],e=t[3],u=t[4],o=t[5],i=t[6],s=t[7],c=t[8],f=t[9],M=t[10],h=t[11],l=t[12],v=t[13],d=t[14],b=t[15];return(n*o-r*u)*(M*b-h*d)-(n*i-a*u)*(f*b-h*v)+(n*s-e*u)*(f*d-M*v)+(r*i-a*o)*(c*b-h*l)-(r*s-e*o)*(c*d-M*l)+(a*s-e*i)*(c*v-f*l)},n.multiply=u,n.translate=function(t,n,r){var a=r[0],e=r[1],u=r[2],o=void 0,i=void 0,s=void 0,c=void 0,f=void 0,M=void 0,h=void 0,l=void 0,v=void 0,d=void 0,b=void 0,m=void 0;n===t?(t[12]=n[0]*a+n[4]*e+n[8]*u+n[12],t[13]=n[1]*a+n[5]*e+n[9]*u+n[13],t[14]=n[2]*a+n[6]*e+n[10]*u+n[14],t[15]=n[3]*a+n[7]*e+n[11]*u+n[15]):(o=n[0],i=n[1],s=n[2],c=n[3],f=n[4],M=n[5],h=n[6],l=n[7],v=n[8],d=n[9],b=n[10],m=n[11],t[0]=o,t[1]=i,t[2]=s,t[3]=c,t[4]=f,t[5]=M,t[6]=h,t[7]=l,t[8]=v,t[9]=d,t[10]=b,t[11]=m,t[12]=o*a+f*e+v*u+n[12],t[13]=i*a+M*e+d*u+n[13],t[14]=s*a+h*e+b*u+n[14],t[15]=c*a+l*e+m*u+n[15]);return t},n.scale=function(t,n,r){var a=r[0],e=r[1],u=r[2];return t[0]=n[0]*a,t[1]=n[1]*a,t[2]=n[2]*a,t[3]=n[3]*a,t[4]=n[4]*e,t[5]=n[5]*e,t[6]=n[6]*e,t[7]=n[7]*e,t[8]=n[8]*u,t[9]=n[9]*u,t[10]=n[10]*u,t[11]=n[11]*u,t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15],t},n.rotate=function(t,n,r,e){var u=e[0],o=e[1],i=e[2],s=Math.sqrt(u*u+o*o+i*i),c=void 0,f=void 0,M=void 0,h=void 0,l=void 0,v=void 0,d=void 0,b=void 0,m=void 0,p=void 0,P=void 0,A=void 0,E=void 0,O=void 0,R=void 0,y=void 0,q=void 0,x=void 0,_=void 0,Y=void 0,L=void 0,S=void 0,w=void 0,I=void 0;if(s<a.EPSILON)return null;u*=s=1/s,o*=s,i*=s,c=Math.sin(r),f=Math.cos(r),M=1-f,h=n[0],l=n[1],v=n[2],d=n[3],b=n[4],m=n[5],p=n[6],P=n[7],A=n[8],E=n[9],O=n[10],R=n[11],y=u*u*M+f,q=o*u*M+i*c,x=i*u*M-o*c,_=u*o*M-i*c,Y=o*o*M+f,L=i*o*M+u*c,S=u*i*M+o*c,w=o*i*M-u*c,I=i*i*M+f,t[0]=h*y+b*q+A*x,t[1]=l*y+m*q+E*x,t[2]=v*y+p*q+O*x,t[3]=d*y+P*q+R*x,t[4]=h*_+b*Y+A*L,t[5]=l*_+m*Y+E*L,t[6]=v*_+p*Y+O*L,t[7]=d*_+P*Y+R*L,t[8]=h*S+b*w+A*I,t[9]=l*S+m*w+E*I,t[10]=v*S+p*w+O*I,t[11]=d*S+P*w+R*I,n!==t&&(t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]);return t},n.rotateX=function(t,n,r){var a=Math.sin(r),e=Math.cos(r),u=n[4],o=n[5],i=n[6],s=n[7],c=n[8],f=n[9],M=n[10],h=n[11];n!==t&&(t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]);return t[4]=u*e+c*a,t[5]=o*e+f*a,t[6]=i*e+M*a,t[7]=s*e+h*a,t[8]=c*e-u*a,t[9]=f*e-o*a,t[10]=M*e-i*a,t[11]=h*e-s*a,t},n.rotateY=function(t,n,r){var a=Math.sin(r),e=Math.cos(r),u=n[0],o=n[1],i=n[2],s=n[3],c=n[8],f=n[9],M=n[10],h=n[11];n!==t&&(t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]);return t[0]=u*e-c*a,t[1]=o*e-f*a,t[2]=i*e-M*a,t[3]=s*e-h*a,t[8]=u*a+c*e,t[9]=o*a+f*e,t[10]=i*a+M*e,t[11]=s*a+h*e,t},n.rotateZ=function(t,n,r){var a=Math.sin(r),e=Math.cos(r),u=n[0],o=n[1],i=n[2],s=n[3],c=n[4],f=n[5],M=n[6],h=n[7];n!==t&&(t[8]=n[8],t[9]=n[9],t[10]=n[10],t[11]=n[11],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]);return t[0]=u*e+c*a,t[1]=o*e+f*a,t[2]=i*e+M*a,t[3]=s*e+h*a,t[4]=c*e-u*a,t[5]=f*e-o*a,t[6]=M*e-i*a,t[7]=h*e-s*a,t},n.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t},n.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=n[1],t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=n[2],t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotation=function(t,n,r){var e=r[0],u=r[1],o=r[2],i=Math.sqrt(e*e+u*u+o*o),s=void 0,c=void 0,f=void 0;if(i<a.EPSILON)return null;return e*=i=1/i,u*=i,o*=i,s=Math.sin(n),c=Math.cos(n),f=1-c,t[0]=e*e*f+c,t[1]=u*e*f+o*s,t[2]=o*e*f-u*s,t[3]=0,t[4]=e*u*f-o*s,t[5]=u*u*f+c,t[6]=o*u*f+e*s,t[7]=0,t[8]=e*o*f+u*s,t[9]=u*o*f-e*s,t[10]=o*o*f+c,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromXRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=a,t[6]=r,t[7]=0,t[8]=0,t[9]=-r,t[10]=a,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromYRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=0,t[2]=-r,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=r,t[9]=0,t[10]=a,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromZRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=0,t[3]=0,t[4]=-r,t[5]=a,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.fromRotationTranslation=o,n.fromQuat2=function(t,n){var r=new a.ARRAY_TYPE(3),e=-n[0],u=-n[1],i=-n[2],s=n[3],c=n[4],f=n[5],M=n[6],h=n[7],l=e*e+u*u+i*i+s*s;l>0?(r[0]=2*(c*s+h*e+f*i-M*u)/l,r[1]=2*(f*s+h*u+M*e-c*i)/l,r[2]=2*(M*s+h*i+c*u-f*e)/l):(r[0]=2*(c*s+h*e+f*i-M*u),r[1]=2*(f*s+h*u+M*e-c*i),r[2]=2*(M*s+h*i+c*u-f*e));return o(t,n,r),t},n.getTranslation=function(t,n){return t[0]=n[12],t[1]=n[13],t[2]=n[14],t},n.getScaling=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[4],o=n[5],i=n[6],s=n[8],c=n[9],f=n[10];return t[0]=Math.sqrt(r*r+a*a+e*e),t[1]=Math.sqrt(u*u+o*o+i*i),t[2]=Math.sqrt(s*s+c*c+f*f),t},n.getRotation=function(t,n){var r=n[0]+n[5]+n[10],a=0;r>0?(a=2*Math.sqrt(r+1),t[3]=.25*a,t[0]=(n[6]-n[9])/a,t[1]=(n[8]-n[2])/a,t[2]=(n[1]-n[4])/a):n[0]>n[5]&&n[0]>n[10]?(a=2*Math.sqrt(1+n[0]-n[5]-n[10]),t[3]=(n[6]-n[9])/a,t[0]=.25*a,t[1]=(n[1]+n[4])/a,t[2]=(n[8]+n[2])/a):n[5]>n[10]?(a=2*Math.sqrt(1+n[5]-n[0]-n[10]),t[3]=(n[8]-n[2])/a,t[0]=(n[1]+n[4])/a,t[1]=.25*a,t[2]=(n[6]+n[9])/a):(a=2*Math.sqrt(1+n[10]-n[0]-n[5]),t[3]=(n[1]-n[4])/a,t[0]=(n[8]+n[2])/a,t[1]=(n[6]+n[9])/a,t[2]=.25*a);return t},n.fromRotationTranslationScale=function(t,n,r,a){var e=n[0],u=n[1],o=n[2],i=n[3],s=e+e,c=u+u,f=o+o,M=e*s,h=e*c,l=e*f,v=u*c,d=u*f,b=o*f,m=i*s,p=i*c,P=i*f,A=a[0],E=a[1],O=a[2];return t[0]=(1-(v+b))*A,t[1]=(h+P)*A,t[2]=(l-p)*A,t[3]=0,t[4]=(h-P)*E,t[5]=(1-(M+b))*E,t[6]=(d+m)*E,t[7]=0,t[8]=(l+p)*O,t[9]=(d-m)*O,t[10]=(1-(M+v))*O,t[11]=0,t[12]=r[0],t[13]=r[1],t[14]=r[2],t[15]=1,t},n.fromRotationTranslationScaleOrigin=function(t,n,r,a,e){var u=n[0],o=n[1],i=n[2],s=n[3],c=u+u,f=o+o,M=i+i,h=u*c,l=u*f,v=u*M,d=o*f,b=o*M,m=i*M,p=s*c,P=s*f,A=s*M,E=a[0],O=a[1],R=a[2],y=e[0],q=e[1],x=e[2],_=(1-(d+m))*E,Y=(l+A)*E,L=(v-P)*E,S=(l-A)*O,w=(1-(h+m))*O,I=(b+p)*O,N=(v+P)*R,g=(b-p)*R,T=(1-(h+d))*R;return t[0]=_,t[1]=Y,t[2]=L,t[3]=0,t[4]=S,t[5]=w,t[6]=I,t[7]=0,t[8]=N,t[9]=g,t[10]=T,t[11]=0,t[12]=r[0]+y-(_*y+S*q+N*x),t[13]=r[1]+q-(Y*y+w*q+g*x),t[14]=r[2]+x-(L*y+I*q+T*x),t[15]=1,t},n.fromQuat=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r+r,i=a+a,s=e+e,c=r*o,f=a*o,M=a*i,h=e*o,l=e*i,v=e*s,d=u*o,b=u*i,m=u*s;return t[0]=1-M-v,t[1]=f+m,t[2]=h-b,t[3]=0,t[4]=f-m,t[5]=1-c-v,t[6]=l+d,t[7]=0,t[8]=h+b,t[9]=l-d,t[10]=1-c-M,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t},n.frustum=function(t,n,r,a,e,u,o){var i=1/(r-n),s=1/(e-a),c=1/(u-o);return t[0]=2*u*i,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=2*u*s,t[6]=0,t[7]=0,t[8]=(r+n)*i,t[9]=(e+a)*s,t[10]=(o+u)*c,t[11]=-1,t[12]=0,t[13]=0,t[14]=o*u*2*c,t[15]=0,t},n.perspective=function(t,n,r,a,e){var u=1/Math.tan(n/2),o=void 0;t[0]=u/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=u,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=e&&e!==1/0?(o=1/(a-e),t[10]=(e+a)*o,t[14]=2*e*a*o):(t[10]=-1,t[14]=-2*a);return t},n.perspectiveFromFieldOfView=function(t,n,r,a){var e=Math.tan(n.upDegrees*Math.PI/180),u=Math.tan(n.downDegrees*Math.PI/180),o=Math.tan(n.leftDegrees*Math.PI/180),i=Math.tan(n.rightDegrees*Math.PI/180),s=2/(o+i),c=2/(e+u);return t[0]=s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=c,t[6]=0,t[7]=0,t[8]=-(o-i)*s*.5,t[9]=(e-u)*c*.5,t[10]=a/(r-a),t[11]=-1,t[12]=0,t[13]=0,t[14]=a*r/(r-a),t[15]=0,t},n.ortho=function(t,n,r,a,e,u,o){var i=1/(n-r),s=1/(a-e),c=1/(u-o);return t[0]=-2*i,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*s,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*c,t[11]=0,t[12]=(n+r)*i,t[13]=(e+a)*s,t[14]=(o+u)*c,t[15]=1,t},n.lookAt=function(t,n,r,u){var o=void 0,i=void 0,s=void 0,c=void 0,f=void 0,M=void 0,h=void 0,l=void 0,v=void 0,d=void 0,b=n[0],m=n[1],p=n[2],P=u[0],A=u[1],E=u[2],O=r[0],R=r[1],y=r[2];if(Math.abs(b-O)<a.EPSILON&&Math.abs(m-R)<a.EPSILON&&Math.abs(p-y)<a.EPSILON)return e(t);h=b-O,l=m-R,v=p-y,d=1/Math.sqrt(h*h+l*l+v*v),o=A*(v*=d)-E*(l*=d),i=E*(h*=d)-P*v,s=P*l-A*h,(d=Math.sqrt(o*o+i*i+s*s))?(o*=d=1/d,i*=d,s*=d):(o=0,i=0,s=0);c=l*s-v*i,f=v*o-h*s,M=h*i-l*o,(d=Math.sqrt(c*c+f*f+M*M))?(c*=d=1/d,f*=d,M*=d):(c=0,f=0,M=0);return t[0]=o,t[1]=c,t[2]=h,t[3]=0,t[4]=i,t[5]=f,t[6]=l,t[7]=0,t[8]=s,t[9]=M,t[10]=v,t[11]=0,t[12]=-(o*b+i*m+s*p),t[13]=-(c*b+f*m+M*p),t[14]=-(h*b+l*m+v*p),t[15]=1,t},n.targetTo=function(t,n,r,a){var e=n[0],u=n[1],o=n[2],i=a[0],s=a[1],c=a[2],f=e-r[0],M=u-r[1],h=o-r[2],l=f*f+M*M+h*h;l>0&&(l=1/Math.sqrt(l),f*=l,M*=l,h*=l);var v=s*h-c*M,d=c*f-i*h,b=i*M-s*f;(l=v*v+d*d+b*b)>0&&(l=1/Math.sqrt(l),v*=l,d*=l,b*=l);return t[0]=v,t[1]=d,t[2]=b,t[3]=0,t[4]=M*b-h*d,t[5]=h*v-f*b,t[6]=f*d-M*v,t[7]=0,t[8]=f,t[9]=M,t[10]=h,t[11]=0,t[12]=e,t[13]=u,t[14]=o,t[15]=1,t},n.str=function(t){return"mat4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+", "+t[9]+", "+t[10]+", "+t[11]+", "+t[12]+", "+t[13]+", "+t[14]+", "+t[15]+")"},n.frob=function(t){return Math.sqrt(Math.pow(t[0],2)+Math.pow(t[1],2)+Math.pow(t[2],2)+Math.pow(t[3],2)+Math.pow(t[4],2)+Math.pow(t[5],2)+Math.pow(t[6],2)+Math.pow(t[7],2)+Math.pow(t[8],2)+Math.pow(t[9],2)+Math.pow(t[10],2)+Math.pow(t[11],2)+Math.pow(t[12],2)+Math.pow(t[13],2)+Math.pow(t[14],2)+Math.pow(t[15],2))},n.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t[4]=n[4]+r[4],t[5]=n[5]+r[5],t[6]=n[6]+r[6],t[7]=n[7]+r[7],t[8]=n[8]+r[8],t[9]=n[9]+r[9],t[10]=n[10]+r[10],t[11]=n[11]+r[11],t[12]=n[12]+r[12],t[13]=n[13]+r[13],t[14]=n[14]+r[14],t[15]=n[15]+r[15],t},n.subtract=i,n.multiplyScalar=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t[4]=n[4]*r,t[5]=n[5]*r,t[6]=n[6]*r,t[7]=n[7]*r,t[8]=n[8]*r,t[9]=n[9]*r,t[10]=n[10]*r,t[11]=n[11]*r,t[12]=n[12]*r,t[13]=n[13]*r,t[14]=n[14]*r,t[15]=n[15]*r,t},n.multiplyScalarAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t[4]=n[4]+r[4]*a,t[5]=n[5]+r[5]*a,t[6]=n[6]+r[6]*a,t[7]=n[7]+r[7]*a,t[8]=n[8]+r[8]*a,t[9]=n[9]+r[9]*a,t[10]=n[10]+r[10]*a,t[11]=n[11]+r[11]*a,t[12]=n[12]+r[12]*a,t[13]=n[13]+r[13]*a,t[14]=n[14]+r[14]*a,t[15]=n[15]+r[15]*a,t},n.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]&&t[4]===n[4]&&t[5]===n[5]&&t[6]===n[6]&&t[7]===n[7]&&t[8]===n[8]&&t[9]===n[9]&&t[10]===n[10]&&t[11]===n[11]&&t[12]===n[12]&&t[13]===n[13]&&t[14]===n[14]&&t[15]===n[15]},n.equals=function(t,n){var r=t[0],e=t[1],u=t[2],o=t[3],i=t[4],s=t[5],c=t[6],f=t[7],M=t[8],h=t[9],l=t[10],v=t[11],d=t[12],b=t[13],m=t[14],p=t[15],P=n[0],A=n[1],E=n[2],O=n[3],R=n[4],y=n[5],q=n[6],x=n[7],_=n[8],Y=n[9],L=n[10],S=n[11],w=n[12],I=n[13],N=n[14],g=n[15];return Math.abs(r-P)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(P))&&Math.abs(e-A)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(A))&&Math.abs(u-E)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(E))&&Math.abs(o-O)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(O))&&Math.abs(i-R)<=a.EPSILON*Math.max(1,Math.abs(i),Math.abs(R))&&Math.abs(s-y)<=a.EPSILON*Math.max(1,Math.abs(s),Math.abs(y))&&Math.abs(c-q)<=a.EPSILON*Math.max(1,Math.abs(c),Math.abs(q))&&Math.abs(f-x)<=a.EPSILON*Math.max(1,Math.abs(f),Math.abs(x))&&Math.abs(M-_)<=a.EPSILON*Math.max(1,Math.abs(M),Math.abs(_))&&Math.abs(h-Y)<=a.EPSILON*Math.max(1,Math.abs(h),Math.abs(Y))&&Math.abs(l-L)<=a.EPSILON*Math.max(1,Math.abs(l),Math.abs(L))&&Math.abs(v-S)<=a.EPSILON*Math.max(1,Math.abs(v),Math.abs(S))&&Math.abs(d-w)<=a.EPSILON*Math.max(1,Math.abs(d),Math.abs(w))&&Math.abs(b-I)<=a.EPSILON*Math.max(1,Math.abs(b),Math.abs(I))&&Math.abs(m-N)<=a.EPSILON*Math.max(1,Math.abs(m),Math.abs(N))&&Math.abs(p-g)<=a.EPSILON*Math.max(1,Math.abs(p),Math.abs(g))};var a=function(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}(r(0));function e(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function u(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],s=n[5],c=n[6],f=n[7],M=n[8],h=n[9],l=n[10],v=n[11],d=n[12],b=n[13],m=n[14],p=n[15],P=r[0],A=r[1],E=r[2],O=r[3];return t[0]=P*a+A*i+E*M+O*d,t[1]=P*e+A*s+E*h+O*b,t[2]=P*u+A*c+E*l+O*m,t[3]=P*o+A*f+E*v+O*p,P=r[4],A=r[5],E=r[6],O=r[7],t[4]=P*a+A*i+E*M+O*d,t[5]=P*e+A*s+E*h+O*b,t[6]=P*u+A*c+E*l+O*m,t[7]=P*o+A*f+E*v+O*p,P=r[8],A=r[9],E=r[10],O=r[11],t[8]=P*a+A*i+E*M+O*d,t[9]=P*e+A*s+E*h+O*b,t[10]=P*u+A*c+E*l+O*m,t[11]=P*o+A*f+E*v+O*p,P=r[12],A=r[13],E=r[14],O=r[15],t[12]=P*a+A*i+E*M+O*d,t[13]=P*e+A*s+E*h+O*b,t[14]=P*u+A*c+E*l+O*m,t[15]=P*o+A*f+E*v+O*p,t}function o(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=a+a,s=e+e,c=u+u,f=a*i,M=a*s,h=a*c,l=e*s,v=e*c,d=u*c,b=o*i,m=o*s,p=o*c;return t[0]=1-(l+d),t[1]=M+p,t[2]=h-m,t[3]=0,t[4]=M-p,t[5]=1-(f+d),t[6]=v+b,t[7]=0,t[8]=h+m,t[9]=v-b,t[10]=1-(f+l),t[11]=0,t[12]=r[0],t[13]=r[1],t[14]=r[2],t[15]=1,t}function i(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t[4]=n[4]-r[4],t[5]=n[5]-r[5],t[6]=n[6]-r[6],t[7]=n[7]-r[7],t[8]=n[8]-r[8],t[9]=n[9]-r[9],t[10]=n[10]-r[10],t[11]=n[11]-r[11],t[12]=n[12]-r[12],t[13]=n[13]-r[13],t[14]=n[14]-r[14],t[15]=n[15]-r[15],t}n.mul=u,n.sub=i},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.sub=n.mul=void 0,n.create=function(){var t=new a.ARRAY_TYPE(9);a.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0);return t[0]=1,t[4]=1,t[8]=1,t},n.fromMat4=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[4],t[4]=n[5],t[5]=n[6],t[6]=n[8],t[7]=n[9],t[8]=n[10],t},n.clone=function(t){var n=new a.ARRAY_TYPE(9);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n[6]=t[6],n[7]=t[7],n[8]=t[8],n},n.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t},n.fromValues=function(t,n,r,e,u,o,i,s,c){var f=new a.ARRAY_TYPE(9);return f[0]=t,f[1]=n,f[2]=r,f[3]=e,f[4]=u,f[5]=o,f[6]=i,f[7]=s,f[8]=c,f},n.set=function(t,n,r,a,e,u,o,i,s,c){return t[0]=n,t[1]=r,t[2]=a,t[3]=e,t[4]=u,t[5]=o,t[6]=i,t[7]=s,t[8]=c,t},n.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.transpose=function(t,n){if(t===n){var r=n[1],a=n[2],e=n[5];t[1]=n[3],t[2]=n[6],t[3]=r,t[5]=n[7],t[6]=a,t[7]=e}else t[0]=n[0],t[1]=n[3],t[2]=n[6],t[3]=n[1],t[4]=n[4],t[5]=n[7],t[6]=n[2],t[7]=n[5],t[8]=n[8];return t},n.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],s=n[6],c=n[7],f=n[8],M=f*o-i*c,h=-f*u+i*s,l=c*u-o*s,v=r*M+a*h+e*l;if(!v)return null;return v=1/v,t[0]=M*v,t[1]=(-f*a+e*c)*v,t[2]=(i*a-e*o)*v,t[3]=h*v,t[4]=(f*r-e*s)*v,t[5]=(-i*r+e*u)*v,t[6]=l*v,t[7]=(-c*r+a*s)*v,t[8]=(o*r-a*u)*v,t},n.adjoint=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],s=n[6],c=n[7],f=n[8];return t[0]=o*f-i*c,t[1]=e*c-a*f,t[2]=a*i-e*o,t[3]=i*s-u*f,t[4]=r*f-e*s,t[5]=e*u-r*i,t[6]=u*c-o*s,t[7]=a*s-r*c,t[8]=r*o-a*u,t},n.determinant=function(t){var n=t[0],r=t[1],a=t[2],e=t[3],u=t[4],o=t[5],i=t[6],s=t[7],c=t[8];return n*(c*u-o*s)+r*(-c*e+o*i)+a*(s*e-u*i)},n.multiply=e,n.translate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],s=n[5],c=n[6],f=n[7],M=n[8],h=r[0],l=r[1];return t[0]=a,t[1]=e,t[2]=u,t[3]=o,t[4]=i,t[5]=s,t[6]=h*a+l*o+c,t[7]=h*e+l*i+f,t[8]=h*u+l*s+M,t},n.rotate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],s=n[5],c=n[6],f=n[7],M=n[8],h=Math.sin(r),l=Math.cos(r);return t[0]=l*a+h*o,t[1]=l*e+h*i,t[2]=l*u+h*s,t[3]=l*o-h*a,t[4]=l*i-h*e,t[5]=l*s-h*u,t[6]=c,t[7]=f,t[8]=M,t},n.scale=function(t,n,r){var a=r[0],e=r[1];return t[0]=a*n[0],t[1]=a*n[1],t[2]=a*n[2],t[3]=e*n[3],t[4]=e*n[4],t[5]=e*n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t},n.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=n[0],t[7]=n[1],t[8]=1,t},n.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=0,t[3]=-r,t[4]=a,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=0,t[4]=n[1],t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},n.fromMat2d=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=0,t[3]=n[2],t[4]=n[3],t[5]=0,t[6]=n[4],t[7]=n[5],t[8]=1,t},n.fromQuat=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r+r,i=a+a,s=e+e,c=r*o,f=a*o,M=a*i,h=e*o,l=e*i,v=e*s,d=u*o,b=u*i,m=u*s;return t[0]=1-M-v,t[3]=f-m,t[6]=h+b,t[1]=f+m,t[4]=1-c-v,t[7]=l-d,t[2]=h-b,t[5]=l+d,t[8]=1-c-M,t},n.normalFromMat4=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],s=n[6],c=n[7],f=n[8],M=n[9],h=n[10],l=n[11],v=n[12],d=n[13],b=n[14],m=n[15],p=r*i-a*o,P=r*s-e*o,A=r*c-u*o,E=a*s-e*i,O=a*c-u*i,R=e*c-u*s,y=f*d-M*v,q=f*b-h*v,x=f*m-l*v,_=M*b-h*d,Y=M*m-l*d,L=h*m-l*b,S=p*L-P*Y+A*_+E*x-O*q+R*y;if(!S)return null;return S=1/S,t[0]=(i*L-s*Y+c*_)*S,t[1]=(s*x-o*L-c*q)*S,t[2]=(o*Y-i*x+c*y)*S,t[3]=(e*Y-a*L-u*_)*S,t[4]=(r*L-e*x+u*q)*S,t[5]=(a*x-r*Y-u*y)*S,t[6]=(d*R-b*O+m*E)*S,t[7]=(b*A-v*R-m*P)*S,t[8]=(v*O-d*A+m*p)*S,t},n.projection=function(t,n,r){return t[0]=2/n,t[1]=0,t[2]=0,t[3]=0,t[4]=-2/r,t[5]=0,t[6]=-1,t[7]=1,t[8]=1,t},n.str=function(t){return"mat3("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+")"},n.frob=function(t){return Math.sqrt(Math.pow(t[0],2)+Math.pow(t[1],2)+Math.pow(t[2],2)+Math.pow(t[3],2)+Math.pow(t[4],2)+Math.pow(t[5],2)+Math.pow(t[6],2)+Math.pow(t[7],2)+Math.pow(t[8],2))},n.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t[4]=n[4]+r[4],t[5]=n[5]+r[5],t[6]=n[6]+r[6],t[7]=n[7]+r[7],t[8]=n[8]+r[8],t},n.subtract=u,n.multiplyScalar=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t[4]=n[4]*r,t[5]=n[5]*r,t[6]=n[6]*r,t[7]=n[7]*r,t[8]=n[8]*r,t},n.multiplyScalarAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t[4]=n[4]+r[4]*a,t[5]=n[5]+r[5]*a,t[6]=n[6]+r[6]*a,t[7]=n[7]+r[7]*a,t[8]=n[8]+r[8]*a,t},n.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]&&t[4]===n[4]&&t[5]===n[5]&&t[6]===n[6]&&t[7]===n[7]&&t[8]===n[8]},n.equals=function(t,n){var r=t[0],e=t[1],u=t[2],o=t[3],i=t[4],s=t[5],c=t[6],f=t[7],M=t[8],h=n[0],l=n[1],v=n[2],d=n[3],b=n[4],m=n[5],p=n[6],P=n[7],A=n[8];return Math.abs(r-h)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(h))&&Math.abs(e-l)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(l))&&Math.abs(u-v)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(v))&&Math.abs(o-d)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(d))&&Math.abs(i-b)<=a.EPSILON*Math.max(1,Math.abs(i),Math.abs(b))&&Math.abs(s-m)<=a.EPSILON*Math.max(1,Math.abs(s),Math.abs(m))&&Math.abs(c-p)<=a.EPSILON*Math.max(1,Math.abs(c),Math.abs(p))&&Math.abs(f-P)<=a.EPSILON*Math.max(1,Math.abs(f),Math.abs(P))&&Math.abs(M-A)<=a.EPSILON*Math.max(1,Math.abs(M),Math.abs(A))};var a=function(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}(r(0));function e(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],s=n[5],c=n[6],f=n[7],M=n[8],h=r[0],l=r[1],v=r[2],d=r[3],b=r[4],m=r[5],p=r[6],P=r[7],A=r[8];return t[0]=h*a+l*o+v*c,t[1]=h*e+l*i+v*f,t[2]=h*u+l*s+v*M,t[3]=d*a+b*o+m*c,t[4]=d*e+b*i+m*f,t[5]=d*u+b*s+m*M,t[6]=p*a+P*o+A*c,t[7]=p*e+P*i+A*f,t[8]=p*u+P*s+A*M,t}function u(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t[4]=n[4]-r[4],t[5]=n[5]-r[5],t[6]=n[6]-r[6],t[7]=n[7]-r[7],t[8]=n[8]-r[8],t}n.mul=e,n.sub=u},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.forEach=n.sqrLen=n.sqrDist=n.dist=n.div=n.mul=n.sub=n.len=void 0,n.create=e,n.clone=function(t){var n=new a.ARRAY_TYPE(2);return n[0]=t[0],n[1]=t[1],n},n.fromValues=function(t,n){var r=new a.ARRAY_TYPE(2);return r[0]=t,r[1]=n,r},n.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t},n.set=function(t,n,r){return t[0]=n,t[1]=r,t},n.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t},n.subtract=u,n.multiply=o,n.divide=i,n.ceil=function(t,n){return t[0]=Math.ceil(n[0]),t[1]=Math.ceil(n[1]),t},n.floor=function(t,n){return t[0]=Math.floor(n[0]),t[1]=Math.floor(n[1]),t},n.min=function(t,n,r){return t[0]=Math.min(n[0],r[0]),t[1]=Math.min(n[1],r[1]),t},n.max=function(t,n,r){return t[0]=Math.max(n[0],r[0]),t[1]=Math.max(n[1],r[1]),t},n.round=function(t,n){return t[0]=Math.round(n[0]),t[1]=Math.round(n[1]),t},n.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t},n.scaleAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t},n.distance=s,n.squaredDistance=c,n.length=f,n.squaredLength=M,n.negate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t},n.inverse=function(t,n){return t[0]=1/n[0],t[1]=1/n[1],t},n.normalize=function(t,n){var r=n[0],a=n[1],e=r*r+a*a;e>0&&(e=1/Math.sqrt(e),t[0]=n[0]*e,t[1]=n[1]*e);return t},n.dot=function(t,n){return t[0]*n[0]+t[1]*n[1]},n.cross=function(t,n,r){var a=n[0]*r[1]-n[1]*r[0];return t[0]=t[1]=0,t[2]=a,t},n.lerp=function(t,n,r,a){var e=n[0],u=n[1];return t[0]=e+a*(r[0]-e),t[1]=u+a*(r[1]-u),t},n.random=function(t,n){n=n||1;var r=2*a.RANDOM()*Math.PI;return t[0]=Math.cos(r)*n,t[1]=Math.sin(r)*n,t},n.transformMat2=function(t,n,r){var a=n[0],e=n[1];return t[0]=r[0]*a+r[2]*e,t[1]=r[1]*a+r[3]*e,t},n.transformMat2d=function(t,n,r){var a=n[0],e=n[1];return t[0]=r[0]*a+r[2]*e+r[4],t[1]=r[1]*a+r[3]*e+r[5],t},n.transformMat3=function(t,n,r){var a=n[0],e=n[1];return t[0]=r[0]*a+r[3]*e+r[6],t[1]=r[1]*a+r[4]*e+r[7],t},n.transformMat4=function(t,n,r){var a=n[0],e=n[1];return t[0]=r[0]*a+r[4]*e+r[12],t[1]=r[1]*a+r[5]*e+r[13],t},n.rotate=function(t,n,r,a){var e=n[0]-r[0],u=n[1]-r[1],o=Math.sin(a),i=Math.cos(a);return t[0]=e*i-u*o+r[0],t[1]=e*o+u*i+r[1],t},n.angle=function(t,n){var r=t[0],a=t[1],e=n[0],u=n[1],o=r*r+a*a;o>0&&(o=1/Math.sqrt(o));var i=e*e+u*u;i>0&&(i=1/Math.sqrt(i));var s=(r*e+a*u)*o*i;return s>1?0:s<-1?Math.PI:Math.acos(s)},n.str=function(t){return"vec2("+t[0]+", "+t[1]+")"},n.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]},n.equals=function(t,n){var r=t[0],e=t[1],u=n[0],o=n[1];return Math.abs(r-u)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(u))&&Math.abs(e-o)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(o))};var a=function(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}(r(0));function e(){var t=new a.ARRAY_TYPE(2);return a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0),t}function u(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t}function o(t,n,r){return t[0]=n[0]*r[0],t[1]=n[1]*r[1],t}function i(t,n,r){return t[0]=n[0]/r[0],t[1]=n[1]/r[1],t}function s(t,n){var r=n[0]-t[0],a=n[1]-t[1];return Math.sqrt(r*r+a*a)}function c(t,n){var r=n[0]-t[0],a=n[1]-t[1];return r*r+a*a}function f(t){var n=t[0],r=t[1];return Math.sqrt(n*n+r*r)}function M(t){var n=t[0],r=t[1];return n*n+r*r}n.len=f,n.sub=u,n.mul=o,n.div=i,n.dist=s,n.sqrDist=c,n.sqrLen=M,n.forEach=function(){var t=e();return function(n,r,a,e,u,o){var i=void 0,s=void 0;for(r||(r=2),a||(a=0),s=e?Math.min(e*r+a,n.length):n.length,i=a;i<s;i+=r)t[0]=n[i],t[1]=n[i+1],u(t,t,o),n[i]=t[0],n[i+1]=t[1];return n}}()},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.sqrLen=n.squaredLength=n.len=n.length=n.dot=n.mul=n.setReal=n.getReal=void 0,n.create=function(){var t=new a.ARRAY_TYPE(8);a.ARRAY_TYPE!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[4]=0,t[5]=0,t[6]=0,t[7]=0);return t[3]=1,t},n.clone=function(t){var n=new a.ARRAY_TYPE(8);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n[6]=t[6],n[7]=t[7],n},n.fromValues=function(t,n,r,e,u,o,i,s){var c=new a.ARRAY_TYPE(8);return c[0]=t,c[1]=n,c[2]=r,c[3]=e,c[4]=u,c[5]=o,c[6]=i,c[7]=s,c},n.fromRotationTranslationValues=function(t,n,r,e,u,o,i){var s=new a.ARRAY_TYPE(8);s[0]=t,s[1]=n,s[2]=r,s[3]=e;var c=.5*u,f=.5*o,M=.5*i;return s[4]=c*e+f*r-M*n,s[5]=f*e+M*t-c*r,s[6]=M*e+c*n-f*t,s[7]=-c*t-f*n-M*r,s},n.fromRotationTranslation=i,n.fromTranslation=function(t,n){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=.5*n[0],t[5]=.5*n[1],t[6]=.5*n[2],t[7]=0,t},n.fromRotation=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.fromMat4=function(t,n){var r=e.create();u.getRotation(r,n);var o=new a.ARRAY_TYPE(3);return u.getTranslation(o,n),i(t,r,o),t},n.copy=s,n.identity=function(t){return t[0]=0,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t[6]=0,t[7]=0,t},n.set=function(t,n,r,a,e,u,o,i,s){return t[0]=n,t[1]=r,t[2]=a,t[3]=e,t[4]=u,t[5]=o,t[6]=i,t[7]=s,t},n.getDual=function(t,n){return t[0]=n[4],t[1]=n[5],t[2]=n[6],t[3]=n[7],t},n.setDual=function(t,n){return t[4]=n[0],t[5]=n[1],t[6]=n[2],t[7]=n[3],t},n.getTranslation=function(t,n){var r=n[4],a=n[5],e=n[6],u=n[7],o=-n[0],i=-n[1],s=-n[2],c=n[3];return t[0]=2*(r*c+u*o+a*s-e*i),t[1]=2*(a*c+u*i+e*o-r*s),t[2]=2*(e*c+u*s+r*i-a*o),t},n.translate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=.5*r[0],s=.5*r[1],c=.5*r[2],f=n[4],M=n[5],h=n[6],l=n[7];return t[0]=a,t[1]=e,t[2]=u,t[3]=o,t[4]=o*i+e*c-u*s+f,t[5]=o*s+u*i-a*c+M,t[6]=o*c+a*s-e*i+h,t[7]=-a*i-e*s-u*c+l,t},n.rotateX=function(t,n,r){var a=-n[0],u=-n[1],o=-n[2],i=n[3],s=n[4],c=n[5],f=n[6],M=n[7],h=s*i+M*a+c*o-f*u,l=c*i+M*u+f*a-s*o,v=f*i+M*o+s*u-c*a,d=M*i-s*a-c*u-f*o;return e.rotateX(t,n,r),a=t[0],u=t[1],o=t[2],i=t[3],t[4]=h*i+d*a+l*o-v*u,t[5]=l*i+d*u+v*a-h*o,t[6]=v*i+d*o+h*u-l*a,t[7]=d*i-h*a-l*u-v*o,t},n.rotateY=function(t,n,r){var a=-n[0],u=-n[1],o=-n[2],i=n[3],s=n[4],c=n[5],f=n[6],M=n[7],h=s*i+M*a+c*o-f*u,l=c*i+M*u+f*a-s*o,v=f*i+M*o+s*u-c*a,d=M*i-s*a-c*u-f*o;return e.rotateY(t,n,r),a=t[0],u=t[1],o=t[2],i=t[3],t[4]=h*i+d*a+l*o-v*u,t[5]=l*i+d*u+v*a-h*o,t[6]=v*i+d*o+h*u-l*a,t[7]=d*i-h*a-l*u-v*o,t},n.rotateZ=function(t,n,r){var a=-n[0],u=-n[1],o=-n[2],i=n[3],s=n[4],c=n[5],f=n[6],M=n[7],h=s*i+M*a+c*o-f*u,l=c*i+M*u+f*a-s*o,v=f*i+M*o+s*u-c*a,d=M*i-s*a-c*u-f*o;return e.rotateZ(t,n,r),a=t[0],u=t[1],o=t[2],i=t[3],t[4]=h*i+d*a+l*o-v*u,t[5]=l*i+d*u+v*a-h*o,t[6]=v*i+d*o+h*u-l*a,t[7]=d*i-h*a-l*u-v*o,t},n.rotateByQuatAppend=function(t,n,r){var a=r[0],e=r[1],u=r[2],o=r[3],i=n[0],s=n[1],c=n[2],f=n[3];return t[0]=i*o+f*a+s*u-c*e,t[1]=s*o+f*e+c*a-i*u,t[2]=c*o+f*u+i*e-s*a,t[3]=f*o-i*a-s*e-c*u,i=n[4],s=n[5],c=n[6],f=n[7],t[4]=i*o+f*a+s*u-c*e,t[5]=s*o+f*e+c*a-i*u,t[6]=c*o+f*u+i*e-s*a,t[7]=f*o-i*a-s*e-c*u,t},n.rotateByQuatPrepend=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=r[0],s=r[1],c=r[2],f=r[3];return t[0]=a*f+o*i+e*c-u*s,t[1]=e*f+o*s+u*i-a*c,t[2]=u*f+o*c+a*s-e*i,t[3]=o*f-a*i-e*s-u*c,i=r[4],s=r[5],c=r[6],f=r[7],t[4]=a*f+o*i+e*c-u*s,t[5]=e*f+o*s+u*i-a*c,t[6]=u*f+o*c+a*s-e*i,t[7]=o*f-a*i-e*s-u*c,t},n.rotateAroundAxis=function(t,n,r,e){if(Math.abs(e)<a.EPSILON)return s(t,n);var u=Math.sqrt(r[0]*r[0]+r[1]*r[1]+r[2]*r[2]);e*=.5;var o=Math.sin(e),i=o*r[0]/u,c=o*r[1]/u,f=o*r[2]/u,M=Math.cos(e),h=n[0],l=n[1],v=n[2],d=n[3];t[0]=h*M+d*i+l*f-v*c,t[1]=l*M+d*c+v*i-h*f,t[2]=v*M+d*f+h*c-l*i,t[3]=d*M-h*i-l*c-v*f;var b=n[4],m=n[5],p=n[6],P=n[7];return t[4]=b*M+P*i+m*f-p*c,t[5]=m*M+P*c+p*i-b*f,t[6]=p*M+P*f+b*c-m*i,t[7]=P*M-b*i-m*c-p*f,t},n.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t[4]=n[4]+r[4],t[5]=n[5]+r[5],t[6]=n[6]+r[6],t[7]=n[7]+r[7],t},n.multiply=c,n.scale=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t[4]=n[4]*r,t[5]=n[5]*r,t[6]=n[6]*r,t[7]=n[7]*r,t},n.lerp=function(t,n,r,a){var e=1-a;f(n,r)<0&&(a=-a);return t[0]=n[0]*e+r[0]*a,t[1]=n[1]*e+r[1]*a,t[2]=n[2]*e+r[2]*a,t[3]=n[3]*e+r[3]*a,t[4]=n[4]*e+r[4]*a,t[5]=n[5]*e+r[5]*a,t[6]=n[6]*e+r[6]*a,t[7]=n[7]*e+r[7]*a,t},n.invert=function(t,n){var r=h(n);return t[0]=-n[0]/r,t[1]=-n[1]/r,t[2]=-n[2]/r,t[3]=n[3]/r,t[4]=-n[4]/r,t[5]=-n[5]/r,t[6]=-n[6]/r,t[7]=n[7]/r,t},n.conjugate=function(t,n){return t[0]=-n[0],t[1]=-n[1],t[2]=-n[2],t[3]=n[3],t[4]=-n[4],t[5]=-n[5],t[6]=-n[6],t[7]=n[7],t},n.normalize=function(t,n){var r=h(n);if(r>0){r=Math.sqrt(r);var a=n[0]/r,e=n[1]/r,u=n[2]/r,o=n[3]/r,i=n[4],s=n[5],c=n[6],f=n[7],M=a*i+e*s+u*c+o*f;t[0]=a,t[1]=e,t[2]=u,t[3]=o,t[4]=(i-a*M)/r,t[5]=(s-e*M)/r,t[6]=(c-u*M)/r,t[7]=(f-o*M)/r}return t},n.str=function(t){return"quat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+")"},n.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]&&t[4]===n[4]&&t[5]===n[5]&&t[6]===n[6]&&t[7]===n[7]},n.equals=function(t,n){var r=t[0],e=t[1],u=t[2],o=t[3],i=t[4],s=t[5],c=t[6],f=t[7],M=n[0],h=n[1],l=n[2],v=n[3],d=n[4],b=n[5],m=n[6],p=n[7];return Math.abs(r-M)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(M))&&Math.abs(e-h)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(h))&&Math.abs(u-l)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(l))&&Math.abs(o-v)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(v))&&Math.abs(i-d)<=a.EPSILON*Math.max(1,Math.abs(i),Math.abs(d))&&Math.abs(s-b)<=a.EPSILON*Math.max(1,Math.abs(s),Math.abs(b))&&Math.abs(c-m)<=a.EPSILON*Math.max(1,Math.abs(c),Math.abs(m))&&Math.abs(f-p)<=a.EPSILON*Math.max(1,Math.abs(f),Math.abs(p))};var a=o(r(0)),e=o(r(3)),u=o(r(4));function o(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}function i(t,n,r){var a=.5*r[0],e=.5*r[1],u=.5*r[2],o=n[0],i=n[1],s=n[2],c=n[3];return t[0]=o,t[1]=i,t[2]=s,t[3]=c,t[4]=a*c+e*s-u*i,t[5]=e*c+u*o-a*s,t[6]=u*c+a*i-e*o,t[7]=-a*o-e*i-u*s,t}function s(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t}n.getReal=e.copy;n.setReal=e.copy;function c(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=r[4],s=r[5],c=r[6],f=r[7],M=n[4],h=n[5],l=n[6],v=n[7],d=r[0],b=r[1],m=r[2],p=r[3];return t[0]=a*p+o*d+e*m-u*b,t[1]=e*p+o*b+u*d-a*m,t[2]=u*p+o*m+a*b-e*d,t[3]=o*p-a*d-e*b-u*m,t[4]=a*f+o*i+e*c-u*s+M*p+v*d+h*m-l*b,t[5]=e*f+o*s+u*i-a*c+h*p+v*b+l*d-M*m,t[6]=u*f+o*c+a*s-e*i+l*p+v*m+M*b-h*d,t[7]=o*f-a*i-e*s-u*c+v*p-M*d-h*b-l*m,t}n.mul=c;var f=n.dot=e.dot;var M=n.length=e.length,h=(n.len=M,n.squaredLength=e.squaredLength);n.sqrLen=h},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.sub=n.mul=void 0,n.create=function(){var t=new a.ARRAY_TYPE(6);a.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0,t[4]=0,t[5]=0);return t[0]=1,t[3]=1,t},n.clone=function(t){var n=new a.ARRAY_TYPE(6);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n[4]=t[4],n[5]=t[5],n},n.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t},n.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t},n.fromValues=function(t,n,r,e,u,o){var i=new a.ARRAY_TYPE(6);return i[0]=t,i[1]=n,i[2]=r,i[3]=e,i[4]=u,i[5]=o,i},n.set=function(t,n,r,a,e,u,o){return t[0]=n,t[1]=r,t[2]=a,t[3]=e,t[4]=u,t[5]=o,t},n.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=n[4],i=n[5],s=r*u-a*e;if(!s)return null;return s=1/s,t[0]=u*s,t[1]=-a*s,t[2]=-e*s,t[3]=r*s,t[4]=(e*i-u*o)*s,t[5]=(a*o-r*i)*s,t},n.determinant=function(t){return t[0]*t[3]-t[1]*t[2]},n.multiply=e,n.rotate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],s=n[5],c=Math.sin(r),f=Math.cos(r);return t[0]=a*f+u*c,t[1]=e*f+o*c,t[2]=a*-c+u*f,t[3]=e*-c+o*f,t[4]=i,t[5]=s,t},n.scale=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],s=n[5],c=r[0],f=r[1];return t[0]=a*c,t[1]=e*c,t[2]=u*f,t[3]=o*f,t[4]=i,t[5]=s,t},n.translate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],s=n[5],c=r[0],f=r[1];return t[0]=a,t[1]=e,t[2]=u,t[3]=o,t[4]=a*c+u*f+i,t[5]=e*c+o*f+s,t},n.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=-r,t[3]=a,t[4]=0,t[5]=0,t},n.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t[4]=0,t[5]=0,t},n.fromTranslation=function(t,n){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=n[0],t[5]=n[1],t},n.str=function(t){return"mat2d("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+")"},n.frob=function(t){return Math.sqrt(Math.pow(t[0],2)+Math.pow(t[1],2)+Math.pow(t[2],2)+Math.pow(t[3],2)+Math.pow(t[4],2)+Math.pow(t[5],2)+1)},n.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t[4]=n[4]+r[4],t[5]=n[5]+r[5],t},n.subtract=u,n.multiplyScalar=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t[4]=n[4]*r,t[5]=n[5]*r,t},n.multiplyScalarAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t[4]=n[4]+r[4]*a,t[5]=n[5]+r[5]*a,t},n.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]&&t[4]===n[4]&&t[5]===n[5]},n.equals=function(t,n){var r=t[0],e=t[1],u=t[2],o=t[3],i=t[4],s=t[5],c=n[0],f=n[1],M=n[2],h=n[3],l=n[4],v=n[5];return Math.abs(r-c)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(c))&&Math.abs(e-f)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(f))&&Math.abs(u-M)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(M))&&Math.abs(o-h)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(h))&&Math.abs(i-l)<=a.EPSILON*Math.max(1,Math.abs(i),Math.abs(l))&&Math.abs(s-v)<=a.EPSILON*Math.max(1,Math.abs(s),Math.abs(v))};var a=function(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}(r(0));function e(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=n[4],s=n[5],c=r[0],f=r[1],M=r[2],h=r[3],l=r[4],v=r[5];return t[0]=a*c+u*f,t[1]=e*c+o*f,t[2]=a*M+u*h,t[3]=e*M+o*h,t[4]=a*l+u*v+i,t[5]=e*l+o*v+s,t}function u(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t[4]=n[4]-r[4],t[5]=n[5]-r[5],t}n.mul=e,n.sub=u},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.sub=n.mul=void 0,n.create=function(){var t=new a.ARRAY_TYPE(4);a.ARRAY_TYPE!=Float32Array&&(t[1]=0,t[2]=0);return t[0]=1,t[3]=1,t},n.clone=function(t){var n=new a.ARRAY_TYPE(4);return n[0]=t[0],n[1]=t[1],n[2]=t[2],n[3]=t[3],n},n.copy=function(t,n){return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t},n.identity=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t},n.fromValues=function(t,n,r,e){var u=new a.ARRAY_TYPE(4);return u[0]=t,u[1]=n,u[2]=r,u[3]=e,u},n.set=function(t,n,r,a,e){return t[0]=n,t[1]=r,t[2]=a,t[3]=e,t},n.transpose=function(t,n){if(t===n){var r=n[1];t[1]=n[2],t[2]=r}else t[0]=n[0],t[1]=n[2],t[2]=n[1],t[3]=n[3];return t},n.invert=function(t,n){var r=n[0],a=n[1],e=n[2],u=n[3],o=r*u-e*a;if(!o)return null;return o=1/o,t[0]=u*o,t[1]=-a*o,t[2]=-e*o,t[3]=r*o,t},n.adjoint=function(t,n){var r=n[0];return t[0]=n[3],t[1]=-n[1],t[2]=-n[2],t[3]=r,t},n.determinant=function(t){return t[0]*t[3]-t[2]*t[1]},n.multiply=e,n.rotate=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=Math.sin(r),s=Math.cos(r);return t[0]=a*s+u*i,t[1]=e*s+o*i,t[2]=a*-i+u*s,t[3]=e*-i+o*s,t},n.scale=function(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=r[0],s=r[1];return t[0]=a*i,t[1]=e*i,t[2]=u*s,t[3]=o*s,t},n.fromRotation=function(t,n){var r=Math.sin(n),a=Math.cos(n);return t[0]=a,t[1]=r,t[2]=-r,t[3]=a,t},n.fromScaling=function(t,n){return t[0]=n[0],t[1]=0,t[2]=0,t[3]=n[1],t},n.str=function(t){return"mat2("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+")"},n.frob=function(t){return Math.sqrt(Math.pow(t[0],2)+Math.pow(t[1],2)+Math.pow(t[2],2)+Math.pow(t[3],2))},n.LDU=function(t,n,r,a){return t[2]=a[2]/a[0],r[0]=a[0],r[1]=a[1],r[3]=a[3]-t[2]*r[1],[t,n,r]},n.add=function(t,n,r){return t[0]=n[0]+r[0],t[1]=n[1]+r[1],t[2]=n[2]+r[2],t[3]=n[3]+r[3],t},n.subtract=u,n.exactEquals=function(t,n){return t[0]===n[0]&&t[1]===n[1]&&t[2]===n[2]&&t[3]===n[3]},n.equals=function(t,n){var r=t[0],e=t[1],u=t[2],o=t[3],i=n[0],s=n[1],c=n[2],f=n[3];return Math.abs(r-i)<=a.EPSILON*Math.max(1,Math.abs(r),Math.abs(i))&&Math.abs(e-s)<=a.EPSILON*Math.max(1,Math.abs(e),Math.abs(s))&&Math.abs(u-c)<=a.EPSILON*Math.max(1,Math.abs(u),Math.abs(c))&&Math.abs(o-f)<=a.EPSILON*Math.max(1,Math.abs(o),Math.abs(f))},n.multiplyScalar=function(t,n,r){return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=n[3]*r,t},n.multiplyScalarAndAdd=function(t,n,r,a){return t[0]=n[0]+r[0]*a,t[1]=n[1]+r[1]*a,t[2]=n[2]+r[2]*a,t[3]=n[3]+r[3]*a,t};var a=function(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}(r(0));function e(t,n,r){var a=n[0],e=n[1],u=n[2],o=n[3],i=r[0],s=r[1],c=r[2],f=r[3];return t[0]=a*i+u*s,t[1]=e*i+o*s,t[2]=a*c+u*f,t[3]=e*c+o*f,t}function u(t,n,r){return t[0]=n[0]-r[0],t[1]=n[1]-r[1],t[2]=n[2]-r[2],t[3]=n[3]-r[3],t}n.mul=e,n.sub=u},function(t,n,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.vec4=n.vec3=n.vec2=n.quat2=n.quat=n.mat4=n.mat3=n.mat2d=n.mat2=n.glMatrix=void 0;var a=l(r(0)),e=l(r(9)),u=l(r(8)),o=l(r(5)),i=l(r(4)),s=l(r(3)),c=l(r(7)),f=l(r(6)),M=l(r(2)),h=l(r(1));function l(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n.default=t,n}n.glMatrix=a,n.mat2=e,n.mat2d=u,n.mat3=o,n.mat4=i,n.quat=s,n.quat2=c,n.vec2=f,n.vec3=M,n.vec4=h}])}); \ No newline at end of file
diff --git a/webgl-maps-poc/index.html b/webgl-maps-poc/index.html
new file mode 100644
index 0000000000..dab451e9c0
--- /dev/null
+++ b/webgl-maps-poc/index.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8" />
+ <title>WebGL Demo</title>
+ <link rel="stylesheet" href="webgl.css" type="text/css" />
+ <script src="gl-matrix-min.js" defer></script>
+ <script src="land-data-50m.js" defer></script>
+ <!--<script src="world-data-ne50m-angle.js" defer></script>-->
+ <script src="ocean-data.js" defer></script>
+ <script src="3dmap.js" defer></script>
+ <!--<script src="webgl-lint.js"></script><!-- From: https://greggman.github.io/webgl-lint/ -->
+ </head>
+
+ <body style="background-color: black; width: 100%; height: 100%">
+ <canvas id="glcanvas" width="544" height="966"></canvas>
+ </body>
+</html>
diff --git a/webgl-maps-poc/land-data-50m.js b/webgl-maps-poc/land-data-50m.js
new file mode 100644
index 0000000000..8d6f5d409e
--- /dev/null
+++ b/webgl-maps-poc/land-data-50m.js
@@ -0,0 +1 @@
+const landData = {"positions":[-0.9778359,0.16604935,0.12753253,-0.9777702,0.16636708,0.12762235,-0.9777601,0.16704436,0.12681265,-0.97797304,0.16796516,0.12392103,-0.97785205,0.16908404,0.12335286,-0.97786546,0.16970977,0.12238358,-0.97755307,0.17349795,0.119534574,-0.97760046,0.17436312,0.117876604,-0.9763298,0.18626189,0.10993924,-0.9760942,0.18763825,0.10969036,-0.97594583,0.18870965,0.109171726,-0.97586244,0.18939082,0.10873638,-0.9761576,0.18801329,0.10847699,-0.9769702,0.18627279,0.10407533,-0.97715616,0.18696435,0.10104491,-0.9772675,0.18704468,0.099812485,-0.9772472,0.18741062,0.09932405,-0.9771326,0.18808939,0.09916765,-0.97702515,0.1891079,0.098285355,-0.97692204,0.1904643,0.09667821,-0.9770299,0.19037138,0.09576666,-0.97711784,0.19066595,0.09427233,-0.9771741,0.19159022,0.091782056,-0.9772588,0.19170313,0.090637445,-0.9775635,0.19091016,0.08901057,-0.97793597,0.18987188,0.08712048,-0.97809666,0.19365743,0.07631281,-0.97807884,0.19405377,0.075530685,-0.9781445,0.1939684,0.07489686,-0.97829235,0.19343089,0.07435393,-0.9785268,0.1924784,0.07373846,-0.97867185,0.19194402,0.0732042,-0.9787138,0.191873,0.07282826,-0.97877693,0.19154505,0.07284387,-0.97897965,0.19055629,0.07271216,-0.97936004,0.18946023,0.07041785,-0.9794635,0.18905358,0.070071205,-0.97952706,0.18823761,0.07136714,-0.979572,0.18721975,0.07339917,-0.97965884,0.18643862,0.074224286,-0.97987527,0.1853199,0.07416843,-0.98000747,0.18455946,0.07431791,-0.9802893,0.18332466,0.07365458,-0.98097426,0.18048723,0.07151125,-0.9813296,0.17866553,0.07120929,-0.9817544,0.17593126,0.07215608,-0.982136,0.17293638,0.07417458,-0.9822313,0.17197105,0.07514995,-0.9820824,0.17039758,0.08049084,-0.98241323,0.16711405,0.08328983,-0.9824665,0.16645524,0.08397656,-0.98235303,0.16680235,0.084613785,-0.9821343,0.16794413,0.08489419,-0.9819566,0.16847669,0.08588819,-0.9814239,0.17056966,0.08782414,-0.98126817,0.17166372,0.08743173,-0.9812046,0.17250405,0.08648638,-0.9806651,0.1778076,0.08173438,-0.9807561,0.1770042,0.08238338,-0.9807463,0.17563683,0.085372135,-0.98113537,0.1700272,0.09200062,-0.9814338,0.16853885,0.09155522,-0.9815794,0.16757195,0.09176888,-0.9816818,0.16622415,0.09311446,-0.9816412,0.16549811,0.094821066,-0.98138267,0.16440195,0.09929819,-0.98143595,0.16297191,0.101112165,-0.981326,0.16119753,0.104950495,-0.9823384,0.15175948,0.109454535,-0.9828121,0.14978471,0.10791175,-0.98291177,0.14746968,0.1101689,-0.9828819,0.14687459,0.11122502,-0.9827214,0.14674723,0.112800136,-0.98263234,0.14634016,0.11409751,-0.9824839,0.14618662,0.11556299,-0.98233294,0.14718482,0.11557919,-0.98223937,0.14792821,0.1154256,-0.9819,0.1479038,0.11830846,-0.9822741,0.14527273,0.11846224,-0.9822677,0.1441445,0.11988598,-0.98233217,0.14231345,0.121533096,-0.9824594,0.14039409,0.122731455,-0.9823216,0.14142936,0.12264539,-0.982215,0.14262211,0.122116975,-0.9821487,0.14361069,0.12148996,-0.9819747,0.14552654,0.12061386,-0.9814686,0.14700688,0.12291604,-0.981341,0.14762567,0.123193085,-0.9811448,0.1489134,0.123205885,-0.98098814,0.15014455,0.12295862,-0.98030895,0.15397614,0.12363478,-0.98004305,0.1546859,0.124851234,-0.97996974,0.1549874,0.12505321,-0.979903,0.15560187,0.12481297,-0.9798898,0.15626694,0.12408333,-0.97992307,0.1573973,0.122379854,-0.980037,0.15747052,0.12136953,-0.9788643,0.16451459,0.12148947,-0.97875345,0.1647206,0.122101665,-0.97860485,0.1652451,0.12258288,-0.97824705,0.16662757,0.12356358,-0.9782103,0.16584091,0.12490583,-0.9781517,0.16514845,0.12627433,-0.97804093,0.16537878,0.12682952,-0.97793,0.16571571,0.12724486,-0.9780666,0.19263235,0.07923696,-0.9785956,0.19220583,0.07353565,-0.9820853,0.15305568,0.109920375,-0.9821968,0.14986734,0.11326572,-0.9817546,0.14933139,0.11772058,-0.982159,0.14463274,0.12018704,-0.97839993,0.16626623,0.12283751,-0.976941,0.1816506,0.11220248,-0.97802144,0.19149321,0.08248854,-0.98167276,0.15574166,0.10983191,-0.9821128,0.14500794,0.120112576,-0.98059803,0.1530776,0.12245311,-0.97642535,0.1871393,0.10757522,-0.9812445,0.17394781,0.08307446,-0.9809231,0.17191903,0.09073953,-0.98084444,0.15195659,0.121874385,-0.97721153,0.1790663,0.11398641,-0.98108023,0.17549342,0.08175379,-0.9820625,0.15137875,0.11241755,-0.97674656,0.1864084,0.10591576,-0.98150826,0.15704377,0.10944756,-0.97895217,0.16417253,0.12124372,-0.9806592,0.17805758,0.08125927,-0.98187935,0.15156658,0.113756575,-0.98180777,0.15064578,0.11558277,-0.97952205,0.16072315,0.12126249,-0.98138195,0.15902473,0.107705586,-0.98033255,0.16939692,0.10125562,-0.98032963,0.1692718,0.101493426,-0.959297,0.25808388,0.11463799,-0.95907706,0.25870207,0.11508429,-0.95951736,0.25895482,0.11076476,-0.9598894,0.25843123,0.108745754,-0.96030045,0.25726044,0.10788897,-0.9605252,0.256735,0.10713766,-0.96056455,0.25685528,0.106494725,-0.96082884,0.25639474,0.10521217,-0.961606,0.25495797,0.101539515,-0.9617042,0.25521085,0.09996237,-0.9618187,0.25495464,0.0995136,-0.9621883,0.2541972,0.097864784,-0.9621715,0.2545657,0.09706862,-0.9622546,0.2544082,0.09665709,-0.9625274,0.25354436,0.096209675,-0.96252376,0.25386503,0.095397465,-0.9626773,0.25361863,0.09449899,-0.9631197,0.2539838,0.0888409,-0.9628704,0.25528336,0.087811716,-0.9628929,0.25561056,0.086605914,-0.96333337,0.25464314,0.08453227,-0.9637055,0.25351393,0.083680294,-0.9639017,0.25282463,0.08350608,-0.9640467,0.25219876,0.08372394,-0.9641883,0.2517815,0.08334876,-0.96432614,0.2515728,0.08237887,-0.96458775,0.25080487,0.081654415,-0.9649722,0.24947803,0.08117512,-0.96524334,0.24845289,0.081095144,-0.9655783,0.24719878,0.08094014,-0.96577126,0.24685778,0.07966931,-0.96618503,0.2457113,0.07818245,-0.96729076,0.24239981,0.07477229,-0.9676148,0.24162659,0.073062114,-0.96789026,0.24076736,0.07224597,-0.9680574,0.2413405,0.0679684,-0.967768,0.24277093,0.06698762,-0.9678795,0.2425519,0.06616577,-0.96813023,0.24183005,0.06513109,-0.9686273,0.2402189,0.063686945,-0.9693773,0.23778191,0.061379477,-0.96953964,0.23810716,0.05742713,-0.9697082,0.23791437,0.05534177,-0.96980447,0.2376205,0.054916963,-0.9700116,0.23681657,0.054731257,-0.97026616,0.23574,0.05486595,-0.9711625,0.23187052,0.055493645,-0.97165626,0.22978432,0.055526856,-0.971735,0.22970635,0.054462213,-0.9718645,0.22948068,0.05308448,-0.972077,0.2287515,0.052335884,-0.9722625,0.22800072,0.052165587,-0.9731204,0.22480573,0.049991205,-0.9733994,0.22459815,0.045270063,-0.973515,0.22409977,0.045252997,-0.9735032,0.22468202,0.04253901,-0.9733186,0.22562607,0.04175884,-0.97333455,0.2256875,0.041049067,-0.9736991,0.2243672,0.039615672,-0.9739397,0.22331074,0.039670352,-0.97508925,0.21658187,0.047887195,-0.9753152,0.2153171,0.048977345,-0.97576386,0.21213928,0.05368283,-0.9760087,0.21058495,0.05532584,-0.97654843,0.20759659,0.057068124,-0.97722834,0.20344146,0.060302332,-0.9786265,0.19232622,0.07280664,-0.97594386,0.18967524,0.10750275,-0.974495,0.19813924,0.10535815,-0.9741361,0.19943558,0.10622736,-0.97386026,0.20050514,0.10674158,-0.9734218,0.20179664,0.10829643,-0.97315806,0.2031953,0.108051345,-0.9728774,0.20491558,0.10732778,-0.97298,0.2048597,0.106500715,-0.9728229,0.20614243,0.10545592,-0.9726156,0.20674442,0.10618662,-0.97245866,0.20752569,0.10610063,-0.97206205,0.20889184,0.10704924,-0.972128,0.2084234,0.10736334,-0.972116,0.20832674,0.107658915,-0.9713545,0.21179456,0.107766464,-0.97110146,0.21280967,0.10804672,-0.97094667,0.21366233,0.10775391,-0.97023636,0.2173364,0.106800415,-0.97010934,0.21760006,0.10741573,-0.9698339,0.21836281,0.10835002,-0.9698962,0.21779135,0.10894198,-0.9702019,0.21668753,0.10841958,-0.9704157,0.21574642,0.10838316,-0.9705909,0.21467538,0.10893952,-0.97054386,0.21462287,0.10946031,-0.9703712,0.21493664,0.11037215,-0.9700018,0.21667998,0.11020961,-0.96973664,0.21808,0.10978103,-0.9683527,0.22399765,0.110082455,-0.96697086,0.23039465,0.10902138,-0.963904,0.24186233,0.11131772,-0.96352154,0.24288668,0.11239374,-0.96298367,0.24452241,0.11345156,-0.9623632,0.24644315,0.11455527,-0.96200275,0.24767685,0.11492062,-0.96044445,0.2545854,0.11283958,-0.96045417,0.25485986,0.11213538,-0.959831,0.25697303,0.11264641,-0.9602153,0.25548112,0.11276531,-0.9601243,0.2556616,0.11313048,-0.95946544,0.2576787,0.114139,-0.96131486,0.25535262,0.10329012,-0.9619211,0.2546126,0.099399954,-0.9624373,0.25372657,0.09662978,-0.96298695,0.25280732,0.09351291,-0.9668148,0.24376209,0.07647962,-0.9681191,0.23982266,0.07232202,-0.971522,0.23027691,0.055835698,-0.9736693,0.22360146,0.044390354,-0.9736941,0.22360972,0.043800272,-0.9743551,0.22082627,0.043220155,-0.9780722,0.19648254,0.069060214,-0.9783607,0.19421257,0.07135685,-0.9757921,0.19098458,0.106557794,-0.9730004,0.20511405,0.10582254,-0.9721514,0.20892355,0.106172755,-0.9707793,0.21485014,0.10689708,-0.9693924,0.22006896,0.108848535,-0.9605171,0.2548738,0.11156281,-0.9620322,0.25428128,0.09917198,-0.96214175,0.25410244,0.09856594,-0.96321905,0.25310084,0.09027173,-0.96819943,0.2395281,0.07222263,-0.96832496,0.23928644,0.07133502,-0.97251177,0.22694923,0.052105013,-0.97297806,0.20553862,0.10520261,-0.97049373,0.21647282,0.106213585,-0.9695384,0.21928662,0.109126866,-0.95985407,0.25716817,0.112003155,-0.9631683,0.2526334,0.09210387,-0.9654018,0.24773136,0.08141502,-0.96926886,0.23802611,0.062140636,-0.9727869,0.22586438,0.051681556,-0.9755097,0.19304456,0.10542586,-0.9748048,0.1968644,0.10488075,-0.96513224,0.23749624,0.110069595,-0.9750036,0.19594695,0.10475082,-0.96008104,0.25663775,0.11127172,-0.96825165,0.2394156,0.07189539,-0.9730123,0.22508392,0.050834555,-0.9603303,0.25587332,0.110880986,-0.97602606,0.20260161,0.0795338,-0.9660986,0.23595989,0.10476824,-0.9746561,0.2094839,0.07849838,-0.96746373,0.2305211,0.10427851,-0.9722718,0.21634759,0.0887765,-0.9686095,0.22575475,0.10406888,-0.97197986,0.21779181,0.08844164,-0.89421797,0.33690107,0.29474044,-0.89416265,0.33739364,0.29434457,-0.8945671,0.33704147,0.29351816,-0.895038,0.33745143,0.29160506,-0.896251,0.33782846,0.28741267,-0.8969124,0.33895594,0.28400183,-0.89743733,0.340394,0.28060326,-0.8984479,0.3408402,0.27680188,-0.8997436,0.34044197,0.27305812,-0.9003331,0.34011185,0.27152196,-0.9009595,0.33963415,0.27003804,-0.9016278,0.3388597,0.26877767,-0.90228766,0.3374586,0.2683257,-0.902448,0.33641636,0.26909423,-0.90218776,0.33606485,0.27040276,-0.9010869,0.33562818,0.27458337,-0.9003403,0.33283696,0.2803692,-0.9010779,0.33120358,0.2799336,-0.90176314,0.32953608,0.27969486,-0.902231,0.3277348,0.28030187,-0.90289825,0.32674915,0.27930224,-0.90306664,0.32382062,0.28215387,-0.90296483,0.3213329,0.28530622,-0.9027435,0.32019883,0.28727505,-0.9037136,0.31827584,0.28636044,-0.90474933,0.31814498,0.283218,-0.90514296,0.31755835,0.28261808,-0.90620524,0.31622544,0.28070194,-0.9067194,0.31657147,0.27864394,-0.909582,0.31767467,0.26784945,-0.90979785,0.3183858,0.26626742,-0.9105552,0.31855294,0.26346397,-0.91093636,0.31898263,0.26162022,-0.9112893,0.3196392,0.25958174,-0.9117483,0.31999612,0.2575221,-0.9120351,0.31989685,0.2566282,-0.9126669,0.3193679,0.25503582,-0.9140032,0.31647694,0.25385135,-0.9142252,0.31553414,0.2542252,-0.91429174,0.3147578,0.2549473,-0.9136924,0.31348187,0.2586414,-0.91342086,0.31139234,0.26210123,-0.9134687,0.30971232,0.2639189,-0.9131727,0.309983,0.26462454,-0.90959716,0.312891,0.27337217,-0.90920585,0.312428,0.27519712,-0.9081138,0.31153482,0.27977735,-0.90749615,0.31160778,0.28169352,-0.9067903,0.31194055,0.2835921,-0.9065295,0.31211793,0.28423002,-0.90622574,0.3124741,0.2848067,-0.9031386,0.31099388,0.29601267,-0.9031119,0.30966687,0.2974817,-0.9022386,0.3124005,0.29727337,-0.90175426,0.31350857,0.2975763,-0.9015152,0.3146768,0.29706725,-0.90125936,0.3191305,0.2930653,-0.9006216,0.31919345,0.29495135,-0.90023756,0.31971195,0.29556143,-0.89935464,0.32115692,0.2966808,-0.898896,0.3223189,0.29681063,-0.8986457,0.3231973,0.29661334,-0.89857686,0.32424793,0.29567385,-0.89832306,0.32535374,0.2952297,-0.89767116,0.32631907,0.29614586,-0.89676887,0.3277252,0.29732424,-0.8965301,0.3282653,0.29744864,-0.8963635,0.32879978,0.29736027,-0.89620924,0.3309173,0.29547048,-0.89543444,0.33252275,0.29601645,-0.89510137,0.33358586,0.2958276,-0.9055705,0.3167784,0.2821232,-0.91348165,0.31258586,0.26046374,-0.9032726,0.3121041,0.29443097,-0.9016954,0.31591746,0.29519758,-0.9006478,0.3342358,0.2777049,-0.9059218,0.31634676,0.28147906,-0.9127751,0.31103763,0.26475888,-0.9100417,0.31318322,0.27155194,-0.90342534,0.312534,0.29350492,-0.9015376,0.31751314,0.2939648,-0.8963864,0.33028105,0.29564485,-0.9036351,0.31280845,0.2925654,-0.9013945,0.31892455,0.292874,-0.9059186,0.3126651,0.28557307,-0.9120592,0.31217298,0.26588738,-0.91137534,0.3128165,0.26747128,-0.91068447,0.31308687,0.26950043,-0.9030112,0.31935182,0.28737634,-0.9034197,0.31853676,0.2869969,-0.9049199,0.3207308,0.279735,-0.90445584,0.32189694,0.27989644,-0.9045631,0.32328123,0.27794755,-0.9049057,0.3244463,0.27546388,-0.90520084,0.32502818,0.27380303,-0.9057768,0.32480982,0.27215254,-0.90612954,0.32386336,0.27210614,-0.90570986,0.32211557,0.27555603,-0.8967271,0.34225234,0.28061357,-0.89679235,0.34263507,0.2799369,-0.8970993,0.34352684,0.27785283,-0.89738184,0.3435556,0.27690303,-0.8976934,0.3434275,0.276051,-0.8980863,0.3430409,0.27525222,-0.89796877,0.34253585,0.27626294,-0.89789087,0.3424701,0.27659753,-0.8976799,0.34260148,0.277119,-0.89735603,0.34207615,0.27881172,-0.8969637,0.34178782,0.28042322,-0.84714985,0.31016114,0.43143624,-0.8479906,0.31016114,0.4297814,-0.8480254,0.3100842,0.4297682,-0.84787863,0.30970415,0.43033147,-0.8474789,0.30933553,0.4313827,-0.8472718,0.30977058,0.4314773,-0.9684537,0.24896058,0.010774303,-0.96840703,0.24915697,0.010424643,-0.9683982,0.24921562,0.009822798,-0.9684866,0.2489226,0.008436985,-0.968509,0.24885736,0.007766916,-0.9685994,0.24852228,0.007207943,-0.96878606,0.24779499,0.007153202,-0.96908456,0.24661414,0.0075262585,-0.9693124,0.24572447,0.0072703348,-0.96950334,0.2450149,0.0055622393,-0.9696838,0.2443141,0.0048888717,-0.9700775,0.24277012,0.0034928315,-0.970059,0.24285442,0.0027098735,-0.97010046,0.24269414,0.0021552367,-0.9703064,0.24187726,0.0009707723,-0.97069913,0.24029665,-0.0008156115,-0.97098774,0.23912264,-0.0017749666,-0.9712033,0.2382454,-0.0017952742,-0.9713967,0.23745733,-0.001614289,-0.9716186,0.23655249,0.00050090486,-0.97211885,0.23446523,0.003322063,-0.97229904,0.23360027,0.00809069,-0.97238195,0.23307319,0.0122601,-0.97305584,0.22976518,0.019243633,-0.9733146,0.2280779,0.025282951,-0.9732494,0.22830272,0.02575936,-0.97310114,0.22911495,0.02409574,-0.9729608,0.22972794,0.023922127,-0.9731535,0.22858067,0.026891291,-0.9732313,0.22773932,0.030913772,-0.97312397,0.22781976,0.03358374,-0.9730211,0.2280223,0.035154324,-0.972814,0.22876565,0.036044247,-0.97253454,0.22979754,0.03700912,-0.972141,0.23150662,0.036693797,-0.9720714,0.2317338,0.037101742,-0.97180927,0.2326199,0.03840315,-0.97167665,0.23315863,0.038489096,-0.97160006,0.2335473,0.038064852,-0.9710121,0.2359893,0.038006112,-0.9703095,0.23874864,0.038711596,-0.9702021,0.23922937,0.038434047,-0.9700444,0.24005839,0.037227266,-0.9700806,0.24014275,0.035706967,-0.9701284,0.2403066,0.033221234,-0.9699173,0.24125455,0.032506503,-0.9698439,0.24170768,0.031308457,-0.97009814,0.24095097,0.02919483,-0.9704451,0.23981108,0.02696302,-0.9703638,0.24030499,0.025449619,-0.9701161,0.24131563,0.02532971,-0.97005755,0.24156551,0.025189206,-0.9699985,0.24192433,0.023991607,-0.969967,0.2421848,0.022593917,-0.9699133,0.24246503,0.021881446,-0.96975803,0.24314548,0.021204794,-0.96957,0.244034,0.019531753,-0.9694115,0.24469267,0.019150058,-0.9690716,0.24619949,0.01691195,-0.968889,0.24694777,0.016457714,-0.96875876,0.24749193,0.015943531,-0.9685982,0.24818626,0.014869208,-0.9686536,0.2480187,0.014031195,-0.96846896,0.24888219,0.011202849,-0.96996045,0.2432256,0.0042430805,-0.97307473,0.2293563,0.02283216,-0.97130835,0.23480824,0.03775157,-0.97020507,0.23988307,0.03403258,-0.96923816,0.24600537,0.0076604495,-0.97155416,0.23380822,0.03763098,-0.9705676,0.23945276,0.025708988,-0.97299707,0.22973536,0.022324348,-0.97056603,0.23939732,0.026277674,-0.90299416,0.30910766,0.2984191,-0.9033024,0.30716836,0.29948696,-0.90365094,0.30604663,0.29958376,-0.9037525,0.30525708,0.30008253,-0.9034023,0.30444872,0.30195236,-0.9034323,0.30296198,0.30335474,-0.9031504,0.3031366,0.30401915,-0.9027105,0.30393565,0.30452725,-0.90144134,0.30651963,0.30569482,-0.89945495,0.31017905,0.30784696,-0.89902997,0.31114694,0.3081115,-0.8979883,0.3135482,0.3087143,-0.8973293,0.31386784,0.31030172,-0.8961542,0.31474808,0.3127959,-0.8955777,0.31459272,0.31459793,-0.8954966,0.31345513,0.31596157,-0.8952831,0.3126214,0.31738937,-0.89344966,0.31319296,0.32195935,-0.8930859,0.31361294,0.32255933,-0.8894343,0.31625134,0.3299875,-0.88881755,0.31590852,0.33197168,-0.88808304,0.31598216,0.33386195,-0.88726556,0.31630877,0.33572087,-0.8862843,0.31563604,0.33893067,-0.8854243,0.31578162,0.34103623,-0.88508785,0.31464374,0.3429559,-0.8852159,0.31343082,0.3437354,-0.88511354,0.3126401,0.34471768,-0.8849289,0.31258258,0.34524354,-0.8847206,0.3127,0.34567058,-0.88346547,0.31491145,0.346871,-0.8829172,0.31530133,0.34791118,-0.8824248,0.31594247,0.34857833,-0.8812845,0.31793487,0.34964994,-0.8807822,0.31914985,0.34980872,-0.8807306,0.32013583,0.34903678,-0.88089466,0.32085186,0.34796357,-0.8813428,0.32399634,0.3438912,-0.8821941,0.32537797,0.34038615,-0.88283265,0.32578567,0.33833444,-0.883527,0.3260378,0.33627284,-0.8840881,0.32642454,0.33441776,-0.8845753,0.3269883,0.3325735,-0.88511485,0.3273435,0.33078387,-0.88462037,0.32906458,0.33039886,-0.88353795,0.32888433,0.33346027,-0.88306487,0.3292899,0.3343121,-0.88263106,0.33005017,0.33470783,-0.8828684,0.33097118,0.33316886,-0.8852526,0.33336738,0.32433632,-0.88468736,0.33528295,0.32390356,-0.8846054,0.33663303,0.322725,-0.88492143,0.33665064,0.32183912,-0.885771,0.33604553,0.32012984,-0.88652545,0.33670205,0.31733942,-0.88672435,0.33826554,0.31511322,-0.8869283,0.33835945,0.31443772,-0.8881815,0.33957326,0.30955386,-0.88824016,0.34017038,0.30872905,-0.8887362,0.34060866,0.30681217,-0.88955027,0.34022328,0.30487448,-0.8906043,0.3395283,0.30256325,-0.8908482,0.3395155,0.30185872,-0.8914272,0.340281,0.2992763,-0.8920239,0.34030342,0.2974674,-0.8924266,0.34000927,0.29659462,-0.89285463,0.33953637,0.2958474,-0.89335454,0.33865848,0.295344,-0.8938408,0.33767202,0.29500213,-0.90350574,0.3049868,0.30109864,-0.89853346,0.31273884,0.30794814,-0.885724,0.3275118,0.32898194,-0.88779306,0.3383377,0.31201124,-0.88796544,0.3386272,0.3112058,-0.90305495,0.308255,0.29911628,-0.8983333,0.31316942,0.30809435,-0.892291,0.31474885,0.32365093,-0.8901202,0.3163702,0.3280182,-0.88401,0.31409603,0.3462225,-0.88514626,0.32897362,0.32907817,-0.88551974,0.33162004,0.32539657,-0.8861198,0.33607686,0.31913024,-0.8854097,0.33050147,0.32683086,-0.89189184,0.31521228,0.32429934,-0.88549274,0.32821542,0.32890305,-0.89097166,0.31594247,0.32611308,-0.9097845,0.392602,0.13474375,-0.9100752,0.3933488,0.13053672,-0.91048044,0.39378837,0.12631747,-0.9112695,0.39320305,0.12239006,-0.9123758,0.39176792,0.118694596,-0.9126789,0.39143074,0.11747029,-0.9141013,0.39045805,0.1093682,-0.91435856,0.39021012,0.10809503,-0.91778713,0.38535875,0.09573581,-0.91823196,0.38459423,0.09453732,-0.9194528,0.38226762,0.09207595,-0.920212,0.38072988,0.09085549,-0.92105985,0.37873843,0.09058654,-0.92215747,0.37580886,0.09161494,-0.922607,0.375113,0.08992503,-0.9226354,0.37527966,0.088933274,-0.9227631,0.3751106,0.08831945,-0.92416817,0.3728928,0.08284979,-0.9244233,0.372291,0.08271059,-0.9245401,0.3718204,0.08351777,-0.9243705,0.37205288,0.08435461,-0.9238464,0.37224752,0.08910414,-0.924369,0.37098163,0.08896446,-0.9241853,0.37123248,0.089822054,-0.922797,0.3734574,0.094737954,-0.92252636,0.37368587,0.09645751,-0.92223054,0.37428498,0.09696209,-0.9208253,0.3773578,0.098395936,-0.9203869,0.37751645,0.10182922,-0.9202501,0.3776624,0.102522284,-0.9199407,0.37798512,0.10409768,-0.91997766,0.37763247,0.10504699,-0.919546,0.37821233,0.1067263,-0.91885513,0.3795082,0.10806843,-0.9183162,0.3803509,0.10967485,-0.91802377,0.380852,0.11038191,-0.9169186,0.38290942,0.11243032,-0.9160861,0.38421664,0.11473407,-0.9155141,0.38523534,0.115877435,-0.91455466,0.3821471,0.13248877,-0.915344,0.38142246,0.1290823,-0.91580325,0.38087174,0.12744096,-0.91620386,0.37930867,0.12921081,-0.916429,0.3780617,0.13125275,-0.9164407,0.37784395,0.13179642,-0.9156652,0.37757882,0.13780937,-0.91597605,0.3762906,0.13925987,-0.9157685,0.37637663,0.14038788,-0.91539854,0.37691817,0.14134458,-0.9149514,0.37788808,0.14164911,-0.9147811,0.37795278,0.1425737,-0.9151925,0.3767777,0.14304283,-0.9153441,0.37619108,0.14361554,-0.9153828,0.37579694,0.14439867,-0.9153302,0.3754622,0.14559783,-0.9140554,0.3756343,0.15297563,-0.91386443,0.37601656,0.15317751,-0.91396284,0.37515247,0.15470144,-0.9143861,0.3735285,0.1561232,-0.91456187,0.37253705,0.15745698,-0.91457975,0.37184176,0.15898933,-0.9144925,0.37043703,0.16272625,-0.9138766,0.36788356,0.17173038,-0.91376865,0.3675183,0.17308107,-0.91357213,0.36735898,0.17445157,-0.9120219,0.368432,0.18020557,-0.9131276,0.36319953,0.18515964,-0.91447896,0.35924292,0.18620624,-0.914621,0.3585469,0.186849,-0.914693,0.35794225,0.18765385,-0.9146725,0.3571861,0.18918866,-0.91502136,0.3544847,0.19255248,-0.91490036,0.35372594,0.19451295,-0.9144315,0.35369718,0.19675703,-0.9136565,0.3533129,0.20100203,-0.9132169,0.35330343,0.20300649,-0.9127527,0.3520187,0.20728074,-0.9129974,0.3511874,0.20761286,-0.9131103,0.3500709,0.20899749,-0.91462797,0.34694207,0.20757383,-0.9171289,0.34336674,0.20241997,-0.9190153,0.3396486,0.20012425,-0.9180923,0.33974558,0.2041552,-0.91700107,0.340277,0.2081362,-0.9162282,0.34026173,0.211537,-0.9156582,0.34072968,0.21324489,-0.91513604,0.34103888,0.21498474,-0.91403985,0.3413096,0.21917795,-0.9128485,0.34180954,0.22332476,-0.91079473,0.34090835,0.23288292,-0.910602,0.3402337,0.23461698,-0.90951025,0.34026656,0.23876707,-0.9090381,0.34076735,0.23984843,-0.9086558,0.34135377,0.24046245,-0.9084547,0.341264,0.2413481,-0.908632,0.34078416,0.24135867,-0.908733,0.34040275,0.24151656,-0.90809804,0.34084827,0.2432702,-0.90772504,0.34132966,0.24398637,-0.90469635,0.34325543,0.25238883,-0.903966,0.34332666,0.25489658,-0.90359217,0.3439406,0.25539395,-0.90301025,0.3447831,0.25631428,-0.90256727,0.3458212,0.2564762,-0.90235406,0.3468077,0.2558937,-0.90238005,0.3471234,0.2553735,-0.90245044,0.347368,0.2547914,-0.902676,0.34722012,0.2541932,-0.90334135,0.3483196,0.2502957,-0.9031815,0.35056886,0.24771883,-0.90318,0.3514036,0.24653868,-0.90336514,0.35266867,0.2440415,-0.9035619,0.3530283,0.24278975,-0.9043818,0.3537012,0.23872377,-0.90497303,0.35350114,0.23677157,-0.90564895,0.35374668,0.23380174,-0.9060284,0.35402164,0.23190771,-0.9064719,0.35371235,0.23064305,-0.90595084,0.3553021,0.23024657,-0.9052192,0.35572103,0.23246685,-0.90512055,0.35670772,0.23133598,-0.90472424,0.35751167,0.23164538,-0.9042655,0.35828117,0.23224653,-0.9040147,0.35936704,0.2315442,-0.9040717,0.36017644,0.23005943,-0.90475476,0.36022896,0.2272751,-0.90532607,0.3605413,0.22448768,-0.90547293,0.36207026,0.2214133,-0.90594053,0.36282244,0.21824679,-0.9066006,0.3629995,0.21519008,-0.9064096,0.3639085,0.21445785,-0.9064359,0.3642085,0.21383682,-0.9065591,0.36426568,0.21321607,-0.90713674,0.3637458,0.21164092,-0.90689594,0.36430463,0.21171197,-0.9065939,0.36486876,0.21203332,-0.9065629,0.36583507,0.21049552,-0.9063739,0.3679462,0.20761004,-0.9068422,0.36712834,0.20701225,-0.90758896,0.3662331,0.20531842,-0.9073091,0.36711636,0.20497715,-0.90718526,0.3683297,0.20334256,-0.90686995,0.36802313,0.20529476,-0.9066182,0.36808643,0.20629068,-0.9061963,0.36883202,0.20681207,-0.9062958,0.36929935,0.20553824,-0.906322,0.36994547,0.20425661,-0.9062025,0.37064287,0.20352136,-0.9060135,0.3725283,0.2009037,-0.9062016,0.37281382,0.19952065,-0.9063005,0.37247455,0.1997052,-0.9070024,0.374153,0.1932773,-0.90669954,0.37637663,0.19035909,-0.9067967,0.3805353,0.18141843,-0.9070758,0.38054314,0.18000107,-0.9071084,0.38092378,0.17902912,-0.9072823,0.38100567,0.17797044,-0.9080416,0.3839373,0.16748886,-0.90731853,0.38659936,0.16526951,-0.9072567,0.38795307,0.16241208,-0.90677106,0.38891512,0.16282286,-0.9071825,0.3886277,0.1612094,-0.90723276,0.38875258,0.16062419,-0.90711635,0.38980442,0.15872104,-0.90732396,0.3899175,0.1572501,-0.9079025,0.39099783,0.15110843,-0.9076153,0.392076,0.15003617,-0.9075807,0.39238644,0.14943296,-0.90858495,0.39217404,0.14378105,-0.909162,0.39161336,0.14164554,-0.9089752,0.39279637,0.13955343,-0.9087612,0.3932493,0.13967116,-0.9091907,0.39281368,0.13809265,-0.9238496,0.37297267,0.08598484,-0.9233705,0.37347797,0.08888826,-0.9231635,0.37296084,0.09310952,-0.9200459,0.37798202,0.103175044,-0.91766626,0.3815525,0.11093402,-0.91363114,0.37660325,0.153128,-0.9126426,0.35255623,0.20685169,-0.91411865,0.34770915,0.20853162,-0.9110691,0.34137058,0.23112588,-0.90826553,0.34215704,0.24079497,-0.9057694,0.3429737,0.24889924,-0.9063163,0.36279777,0.2167224,-0.9074564,0.3661578,0.20603727,-0.9071002,0.37299722,0.19504447,-0.90819746,0.38087493,0.17352715,-0.90768963,0.38968596,0.15570599,-0.90921384,0.39168948,0.14110124,-0.92248225,0.37518805,0.09088677,-0.9236274,0.3733175,0.08687092,-0.9214425,0.3760963,0.09744378,-0.9142486,0.3826299,0.13320574,-0.91449213,0.3789388,0.14180785,-0.9125256,0.36510128,0.18438587,-0.90643007,0.3715466,0.20084214,-0.9069575,0.38039345,0.18091127,-0.9079,0.38982165,0.15413205,-0.9079404,0.39032942,0.15260144,-0.9139334,0.38324472,0.13360135,-0.91359544,0.348695,0.2091774,-0.9124644,0.3418519,0.22482455,-0.9070205,0.3420578,0.24558145,-0.90309286,0.3474343,0.2524136,-0.9062506,0.35470775,0.22998317,-0.90821624,0.38284245,0.16904138,-0.92344326,0.3735222,0.08794142,-0.9118862,0.36800638,0.18175471,-0.912081,0.3667533,0.18330365,-0.9132863,0.34943765,0.20928769,-0.9064567,0.35406545,0.23016052,-0.9065407,0.3711787,0.20102312,-0.906971,0.37132514,0.19879967,-0.9136005,0.3841647,0.13323534,-0.90679556,0.3709563,0.20028271,-0.9083481,0.38119325,0.17203346,-0.90832484,0.3818597,0.17067268,-0.9210141,0.37702703,0.0978961,-0.9152098,0.38573307,0.11662359,-0.9134277,0.38482553,0.1325114,-0.91289455,0.35302362,0.20493366,-0.91093606,0.386318,0.1447548,-0.9133693,0.385214,0.13178304,-0.91300887,0.37662643,0.15673947,-0.9081569,0.34999663,0.22968121,-0.90798146,0.3674929,0.20129262,-0.91348225,0.38556796,0.12995213,-0.9125841,0.3820593,0.14567406,-0.91152096,0.37264857,0.17396125,-0.90948474,0.3631992,0.2022962,-0.9133787,0.3854626,0.13098823,-0.9095341,0.36086997,0.20620507,-0.90930104,0.3616274,0.20590582,-0.91139233,0.36951625,0.18116775,-0.9127475,0.3773788,0.15645233,-0.9127098,0.37894002,0.15285745,-0.9064372,0.37333322,0.19746856,-0.90610045,0.37382895,0.1980755,-0.90573674,0.3745496,0.19837706,-0.90532637,0.37548032,0.19849089,-0.90562564,0.3759486,0.19622654,-0.9058422,0.37609386,0.19494435,-0.90608346,0.37603158,0.19394061,-0.90634716,0.37520784,0.19430396,-0.90640056,0.37441143,0.19558667,-0.90637726,0.37412766,0.19623658,-0.90630996,0.3740494,0.19669585,-0.9053548,0.3789475,0.19165455,-0.90517867,0.37921646,0.19195427,-0.90515995,0.37955153,0.19137959,-0.9047404,0.38086393,0.19075531,-0.9046395,0.3815785,0.18980339,-0.9047659,0.38167766,0.1889994,-0.9050963,0.3814509,0.18787241,-0.9052237,0.38110662,0.18795684,-0.9052244,0.3807473,0.18868056,-0.90544915,0.37981093,0.18948753,-0.90529424,0.3795492,0.19074798,-0.9051061,0.38318405,0.18426324,-0.90540594,0.3835257,0.18206646,-0.90573287,0.38323128,0.18105716,-0.9058285,0.38282594,0.18143599,-0.90582216,0.3824929,0.18216869,-0.90572065,0.38210306,0.1834866,-0.90534985,0.38204002,0.18543725,-0.9053356,0.3817982,0.1860043,-0.90518296,0.3817982,0.1867458,-0.9049221,0.38196522,0.18766582,-0.90459824,0.38330606,0.18649013,-0.9046973,0.3834485,0.1857149,-0.9048696,0.38338873,0.18499744,-0.9058273,0.37662378,0.19398832,-0.9056974,0.3766695,0.19450541,-0.9054341,0.377016,0.19505924,-0.9052569,0.37785807,0.19425018,-0.9051854,0.37807584,0.19415988,-0.9052732,0.37849793,0.19292416,-0.9049298,0.37949,0.19258575,-0.9049973,0.37943563,0.19237605,-0.9053506,0.3786162,0.19232775,-0.90576965,0.37786126,0.19183916,-0.90589476,0.37729776,0.192357,-0.92266417,0.3668041,0.118935406,-0.92213273,0.36766484,0.120389864,-0.92182606,0.36847866,0.12025079,-0.9210265,0.3708312,0.11913999,-0.9207865,0.3717104,0.11825216,-0.92040825,0.37283042,0.117669396,-0.9203685,0.37314188,0.116991624,-0.92062664,0.37367955,0.1131821,-0.921502,0.37191057,0.111877345,-0.9217824,0.3712285,0.11183333,-0.922843,0.3679993,0.11374281,-0.9232355,0.36769733,0.11151224,-0.9230509,0.36849847,0.11039031,-0.9232465,0.36801836,0.11035544,-0.923557,0.3670189,0.11108396,-0.9238092,0.36600393,0.11232843,-0.92377436,0.36554793,0.11408613,-0.9235444,0.36558998,0.115800135,-0.9232765,0.36730352,0.11246649,-0.9230797,0.36756584,0.11322175,-0.90705246,0.38490266,0.17060411,-0.90688425,0.3853249,0.17054527,-0.9068659,0.3856056,0.1700073,-0.9066129,0.38762397,0.16673566,-0.9067653,0.3875996,0.16596168,-0.9067942,0.38731682,0.16646306,-0.9070831,0.3860852,0.16774537,-0.96711737,0.25157946,-0.03730565,-0.96721244,0.25114727,-0.037750892,-0.9688359,0.24578479,-0.030770078,-0.9694108,0.24386787,-0.027771013,-0.97005683,0.24175568,-0.023323875,-0.970415,0.24066149,-0.01941311,-0.97054034,0.24071935,-0.010281299,-0.9706786,0.24024378,-0.008116868,-0.9682546,0.2497165,0.011164007,-0.9679415,0.25088647,0.012050625,-0.9675778,0.2521856,0.013987462,-0.9673004,0.25323856,0.014145154,-0.9667776,0.25525534,0.013630654,-0.96643925,0.25656033,0.0131176,-0.96628064,0.2571426,0.013389766,-0.9656441,0.25949147,0.013984264,-0.9654903,0.26003793,0.014449423,-0.9651243,0.26122347,0.017243681,-0.9650751,0.261388,0.017502777,-0.96458143,0.26304847,0.019701015,-0.9640241,0.2648914,0.022138137,-0.9634023,0.2669222,0.024667256,-0.96269506,0.26918906,0.027486658,-0.9622779,0.27051425,0.029039856,-0.9620945,0.2710877,0.029759038,-0.9612109,0.2748033,0.023593104,-0.96132255,0.27441815,0.023527848,-0.96143734,0.27397725,0.023974132,-0.96194255,0.27239004,0.021684298,-0.9617089,0.27332965,0.020172805,-0.96169233,0.2734387,0.019473068,-0.961607,0.27380183,0.018563785,-0.96162444,0.27378866,0.017840289,-0.96162295,0.27397072,0.0148785105,-0.9617092,0.27376905,0.012877961,-0.9616828,0.2738657,0.012798949,-0.9604844,0.27803263,0.012948366,-0.95859444,0.28446966,0.013176964,-0.95718116,0.2891819,0.013344475,-0.9557763,0.29378447,0.013506542,-0.9547091,0.29722837,0.0136281755,-0.9532372,0.30190843,0.013791631,-0.95194817,0.305942,0.013932797,-0.9519921,0.30594438,0.010442592,-0.9520369,0.30595005,0.0045061777,-0.9520406,0.3059565,-0.0030506058,-0.95198727,0.30596298,-0.01033548,-0.9519,0.30596787,-0.016435284,-0.95479083,0.2966099,-0.019925179,-0.95470065,0.29663917,-0.02349272,-0.9548082,0.29631528,-0.023207225,-0.95551205,0.29424468,-0.02041839,-0.95624626,0.2919739,-0.018559022,-0.95683795,0.29016474,-0.016297936,-0.95843756,0.2851051,-0.01061222,-0.95870775,0.28419513,-0.010610296,-0.9589307,0.28347683,-0.009636875,-0.95952815,0.28152618,-0.0069834637,-0.9599647,0.28001958,-0.007542148,-0.9604459,0.27836,-0.007708864,-0.9608786,0.27683145,-0.008753978,-0.9608468,0.27682906,-0.011793636,-0.96077996,0.27682492,-0.016428094,-0.96069825,0.2768225,-0.02069054,-0.96062106,0.2768192,-0.02404725,-0.9604821,0.27681428,-0.02912006,-0.9611016,0.27450252,-0.030530171,-0.9621149,0.27065462,-0.032878693,-0.96301496,0.26716357,-0.03501142,-0.96375847,0.26422483,-0.036807552,-0.9639587,0.26345214,-0.037103128,-0.9641298,0.26282397,-0.03711133,-0.96515703,0.25927007,-0.03536925,-0.96524066,0.258852,-0.03614005,-0.9654047,0.25820482,-0.036387637,-0.96568626,0.25715503,-0.036349602,-0.9660377,0.25575554,-0.036881454,-0.966298,0.25479314,-0.03672389,-0.96662027,0.2536063,-0.036456533,-0.96687186,0.25257733,-0.036924843,-0.9529387,0.3027151,-0.016474353,-0.9548639,0.29658225,-0.016549993,-0.95728743,0.28881636,-0.013634816,-0.9581048,0.28620526,-0.011036439,-0.9608819,0.2768569,-0.0074994094,-0.96166795,0.27311328,0.024573637,-0.96210223,0.27167824,0.023456613,-0.9550262,0.29570472,-0.021992644,-0.9590865,0.2830035,-0.007885927,-0.9649567,0.26007006,-0.03495842,-0.9575313,0.28832304,-0.0019045807,-0.9577082,0.28749597,-0.011879915,-0.9575458,0.288275,-0.0018654567,-0.95384943,0.29983106,-0.016509663,-0.9593329,0.28219095,-0.0069820425,-0.968029,0.25019634,-0.017935991,-0.9579807,0.28682658,-0.0018761251,-0.9653387,0.26097098,-0.003918332,-0.9652482,0.2613054,-0.0039179646,-0.84696597,0.31074768,0.43137524,-0.8470392,0.3108935,0.4311262,-0.8473162,0.3109308,0.43055463,-0.84782493,0.3105224,0.42984727,-0.9589921,0.25953177,0.11391853,-0.9583793,0.2628626,0.11141061,-0.9583192,0.26502448,0.10670712,-0.9583881,0.2649744,0.106211334,-0.9587934,0.26251557,0.10863154,-0.95868325,0.26329675,0.1077089,-0.95886034,0.263212,0.10633067,-0.95920724,0.26253203,0.104873285,-0.95896786,0.2636921,0.104149126,-0.95880157,0.26476067,0.10296308,-0.95871305,0.26545587,0.10199253,-0.95877075,0.26579845,0.100547805,-0.9582125,0.26756847,0.10117206,-0.9583679,0.26564813,0.10469967,-0.9582417,0.26617628,0.10451318,-0.9572889,0.2726598,0.096201055,-0.95747477,0.27350178,0.091863275,-0.9575488,0.27307382,0.09236368,-0.9578742,0.27231386,0.09122611,-0.9576237,0.27368373,0.08974492,-0.9576137,0.2754677,0.08422282,-0.95779866,0.27520066,0.08298391,-0.95823056,0.2742641,0.0810768,-0.9587574,0.273951,0.075730465,-0.9586469,0.27568483,0.07066801,-0.9587872,0.2760428,0.06728628,-0.95945114,0.2740543,0.06593789,-0.95967674,0.27370998,0.064057894,-0.9603529,0.27199808,0.06114992,-0.96039844,0.27229828,0.05906338,-0.96070445,0.27218345,0.05443452,-0.96099496,0.27164796,0.0519241,-0.96097505,0.2728582,0.045555614,-0.96108454,0.2727246,0.044020966,-0.961181,0.2728238,0.0412102,-0.96086323,0.2741248,0.039966933,-0.96091694,0.27413785,0.03856324,-0.9611785,0.27361253,0.035665568,-0.96127826,0.27333125,0.035130296,-0.96170354,0.2720481,0.033408612,-0.9618302,0.2716897,0.032670405,-0.96217483,0.27061766,0.0313957,-0.97213304,0.23135155,0.037865795,-0.972159,0.23106973,0.03890402,-0.97198236,0.23150325,0.040699996,-0.9721991,0.23022969,0.042699516,-0.97235197,0.22962339,0.04248116,-0.97255975,0.22861305,0.04316956,-0.97287464,0.22711769,0.04396027,-0.972981,0.22639145,0.04533116,-0.9589563,0.260149,0.11280637,-0.95848155,0.26377192,0.108339764,-0.9591305,0.26251316,0.10561924,-0.9575286,0.2727754,0.09344827,-0.9588551,0.275675,0.067824855,-0.95906824,0.27485567,0.0681365,-0.9613391,0.27211544,0.042192917,-0.9720318,0.23094864,0.04262495,-0.958909,0.26551586,0.0999741,-0.95844555,0.26742145,0.09933713,-0.95763147,0.27249178,0.09322102,-0.9587087,0.2625617,0.10926582,-0.9589757,0.2655717,0.09918386,-0.9585806,0.26711106,0.09886813,-0.9578043,0.27217853,0.09235618,-0.9588584,0.266063,0.09900087,-0.95961267,0.2719133,0.07215774,-0.96189,0.26761648,0.056117274,-0.9626001,0.26431027,0.059507478,-0.96379656,0.26367936,0.03961627,-0.9609929,0.26494104,0.07936613,-0.9628366,0.26279026,0.062344994,-0.9639449,0.26291943,0.041032266,-0.9612572,0.2626611,0.083628766,-0.9681627,0.24749158,0.037535563,-0.9643247,0.25933143,0.05315127,-0.96767974,0.24941903,0.037229866,-0.96451145,0.2588482,0.05210868,-0.96754384,0.24995545,0.037164807,-0.9674366,0.25035608,0.03725886,-0.96739054,0.2505024,0.03747144,-0.9575482,0.28197923,0.059909526,-0.95712715,0.28281394,0.0626409,-0.957162,0.2829978,0.061262146,-0.9573928,0.28257358,0.059591826,-0.95776856,0.2817069,0.05762445,-0.9581374,0.2806961,0.056413412,-0.9580951,0.2806708,0.057252422,-0.9568973,0.28240192,0.06779872,-0.95652103,0.2833713,0.069051795,-0.95635957,0.28381017,0.06948503,-0.9562322,0.28419754,0.069654316,-0.9562707,0.28424895,0.06891168,-0.95647734,0.28373587,0.06815481,-0.9567853,0.2828384,0.067559704,-0.75206095,0.5381058,-0.38058707,-0.75032973,0.5377903,-0.38443053,-0.7523482,0.53499544,-0.38438532,-0.75285906,0.53442645,-0.38417655,-0.75455374,0.5328546,-0.3830334,-0.7566569,0.5298802,-0.38301077,-0.75937676,0.5277132,-0.38061234,-0.76007885,0.5260704,-0.38148406,-0.75972104,0.52611965,-0.3821282,-0.7596597,0.5259848,-0.38243577,-0.7603119,0.52545124,-0.3818727,-0.76144785,0.5234639,-0.38233846,-0.7623356,0.5224848,-0.38190845,-0.76734674,0.5169419,-0.3794075,-0.767964,0.5158005,-0.379712,-0.76870096,0.51459676,-0.37985379,-0.7725537,0.5106249,-0.37738985,-0.7737323,0.508494,-0.37785202,-0.77513504,0.50625134,-0.3779884,-0.7791054,0.5012717,-0.37645897,-0.77995676,0.49939838,-0.37718529,-0.7805408,0.49902838,-0.37646595,-0.78243595,0.49631336,-0.37612095,-0.7837432,0.4951559,-0.37492308,-0.78655255,0.49290854,-0.3719896,-0.7883041,0.491318,-0.37038258,-0.7897506,0.49066684,-0.3681577,-0.79036593,0.49016777,-0.36750132,-0.79129976,0.4891067,-0.3669051,-0.7941002,0.48625264,-0.3646412,-0.7991471,0.48068154,-0.36098367,-0.8011266,0.47877488,-0.35912514,-0.8053481,0.4696762,-0.36168864,-0.80542666,0.46846136,-0.3630866,-0.80570763,0.4680533,-0.36298943,-0.8066086,0.46743566,-0.36178234,-0.8067727,0.46685848,-0.36216158,-0.8077991,0.4652532,-0.3619393,-0.8063757,0.46601194,-0.36413065,-0.8059931,0.46698204,-0.36373463,-0.80566406,0.46751323,-0.36378118,-0.8054417,0.46702272,-0.36490202,-0.80528706,0.46633837,-0.36611643,-0.8046045,0.4661385,-0.3678675,-0.8026289,0.46684867,-0.37126684,-0.8011556,0.46703252,-0.3742062,-0.80149424,0.46636927,-0.3743084,-0.8022165,0.46539882,-0.3739689,-0.80365956,0.46421108,-0.37234318,-0.8054658,0.4623607,-0.370739,-0.8073937,0.46068165,-0.36862966,-0.80806226,0.4598313,-0.3682261,-0.8088573,0.45839503,-0.3682713,-0.80955446,0.45737976,-0.3680016,-0.8107086,0.4564459,-0.36661804,-0.81165344,0.45622072,-0.36480314,-0.81250966,0.45563737,-0.36362433,-0.81408626,0.4537991,-0.36239475,-0.81448644,0.45376107,-0.36154205,-0.8164415,0.45198092,-0.35935587,-0.8173618,0.45074284,-0.35881838,-0.8185083,0.4496509,-0.35757264,-0.81904495,0.4508121,-0.35487166,-0.82002836,0.45073676,-0.35268953,-0.8199593,0.45176494,-0.3515326,-0.8196174,0.45315418,-0.3505405,-0.8208118,0.4507558,-0.3508378,-0.8215054,0.44957626,-0.3507278,-0.8230671,0.4474977,-0.34972313,-0.82717437,0.44333315,-0.34530905,-0.83429664,0.4346893,-0.3391082,-0.8352748,0.43256372,-0.33941787,-0.8357221,0.43183982,-0.3392388,-0.8376233,0.42773604,-0.33974862,-0.83925545,0.4233001,-0.341273,-0.84005696,0.4215745,-0.34143704,-0.8409735,0.4200863,-0.34101483,-0.8434551,0.41739237,-0.33818203,-0.8438498,0.41678512,-0.33794636,-0.844261,0.4158584,-0.33806095,-0.8445854,0.41536853,-0.3378527,-0.8451993,0.41557932,-0.3360536,-0.84657097,0.41378796,-0.33480904,-0.848261,0.41197562,-0.33276019,-0.8519623,0.40841445,-0.32765508,-0.8536606,0.4062624,-0.32590547,-0.85501885,0.40477455,-0.32419178,-0.8567009,0.40254384,-0.3225244,-0.8590658,0.40042794,-0.31884715,-0.86004746,0.39903188,-0.31794962,-0.8609825,0.39734417,-0.31753227,-0.86179364,0.39621064,-0.31674734,-0.8644829,0.39081898,-0.31611696,-0.8656348,0.38902813,-0.31517223,-0.86614144,0.388897,-0.31393966,-0.86645836,0.38948032,-0.312338,-0.86659074,0.39043927,-0.31076938,-0.866498,0.3919945,-0.30906543,-0.8666984,0.39329708,-0.3068409,-0.8665438,0.39417842,-0.30614558,-0.8655308,0.39723694,-0.30505612,-0.8650114,0.39843094,-0.3049724,-0.86376405,0.4003154,-0.30603808,-0.8624492,0.4013335,-0.30840355,-0.8613255,0.40360612,-0.3085781,-0.86056715,0.40458128,-0.3094157,-0.859883,0.40576398,-0.309769,-0.85881263,0.40726286,-0.31076986,-0.857816,0.40847975,-0.31192318,-0.85715896,0.40951872,-0.31236672,-0.85469943,0.4122225,-0.3155338,-0.85450834,0.41214183,-0.31615597,-0.85461634,0.4116091,-0.3165578,-0.8549544,0.4108649,-0.31661183,-0.85551935,0.40984136,-0.31641233,-0.8553227,0.40882355,-0.31825516,-0.8551493,0.40936786,-0.31802142,-0.85490584,0.40965867,-0.31830153,-0.84988993,0.41741556,-0.32163844,-0.84938097,0.41927025,-0.3205689,-0.8487851,0.42052394,-0.32050514,-0.847526,0.42253247,-0.32119468,-0.8457143,0.4248985,-0.3228445,-0.8431172,0.4292553,-0.32387242,-0.8422523,0.43093556,-0.32389113,-0.8412793,0.43165445,-0.325459,-0.8377141,0.43729383,-0.3271227,-0.8363193,0.4403378,-0.3266077,-0.83490425,0.442524,-0.3272726,-0.8342134,0.44385248,-0.3272355,-0.83352816,0.4447672,-0.32773906,-0.83278525,0.44630146,-0.32754207,-0.83182526,0.44743437,-0.32843462,-0.8307541,0.44943774,-0.32841036,-0.82819766,0.45211843,-0.33117607,-0.8281512,0.45189118,-0.3316021,-0.8289752,0.4501958,-0.3318491,-0.82969975,0.44912025,-0.33149543,-0.8309295,0.44746187,-0.3306571,-0.8292758,0.4489839,-0.33273885,-0.82797766,0.4515034,-0.3325622,-0.8263156,0.4534786,-0.3340056,-0.82596475,0.45414156,-0.33397257,-0.82552195,0.45522007,-0.33359882,-0.82447976,0.45625857,-0.3347554,-0.8219077,0.45938548,-0.33679768,-0.82032466,0.46211135,-0.3369282,-0.81800383,0.46418467,-0.33970907,-0.8149558,0.46793953,-0.3418766,-0.814298,0.46939257,-0.341452,-0.8132114,0.47089154,-0.3419772,-0.8124126,0.4726604,-0.34143513,-0.81133246,0.47396505,-0.34219405,-0.81090426,0.47486606,-0.3419597,-0.81030816,0.475996,-0.34180188,-0.8095533,0.47648153,-0.34291226,-0.80896384,0.4767385,-0.34394467,-0.8083029,0.47733927,-0.34466454,-0.8054204,0.4817349,-0.34529623,-0.8049436,0.4820418,-0.34597898,-0.804327,0.48235092,-0.34698072,-0.8041011,0.48287046,-0.3467816,-0.8032102,0.48399538,-0.34727782,-0.8016629,0.48516664,-0.3492132,-0.8010084,0.4863696,-0.34904182,-0.7976534,0.49040923,-0.35106677,-0.79663837,0.4915035,-0.35184038,-0.7938656,0.49408627,-0.35448012,-0.79215455,0.49597895,-0.35566276,-0.7901922,0.4974317,-0.3579917,-0.78947526,0.49843448,-0.35817862,-0.787556,0.50033647,-0.35974842,-0.7852127,0.50359505,-0.36032352,-0.7831603,0.50764185,-0.3591096,-0.7819114,0.5093597,-0.35939845,-0.7806335,0.5115208,-0.3591069,-0.77869815,0.5144206,-0.35916653,-0.7733927,0.523063,-0.35814646,-0.7728501,0.5246861,-0.3569415,-0.7712797,0.5269341,-0.35702685,-0.77182406,0.52705204,-0.35567373,-0.77233773,0.5266211,-0.35519657,-0.7730143,0.5263958,-0.35405695,-0.77362514,0.5259696,-0.3533554,-0.776866,0.52330846,-0.35018206,-0.7779578,0.52260816,-0.34880129,-0.7783489,0.5226525,-0.34786105,-0.77869976,0.5228727,-0.34674323,-0.7814012,0.52201676,-0.34192204,-0.7824724,0.5202035,-0.34223583,-0.7837573,0.51942366,-0.34047535,-0.7855453,0.51886207,-0.33719552,-0.7859772,0.5185648,-0.33664584,-0.7868185,0.5181342,-0.3353411,-0.7880964,0.5159487,-0.33570957,-0.7877544,0.516194,-0.3361351,-0.7879338,0.5157573,-0.33638465,-0.78902864,0.51411146,-0.33633783,-0.79008335,0.51194257,-0.33716935,-0.7915609,0.50980777,-0.33693835,-0.7975822,0.50189847,-0.3346051,-0.7988345,0.49978006,-0.3347886,-0.7996265,0.4987426,-0.33444452,-0.800259,0.4980347,-0.33398655,-0.80193126,0.49575472,-0.3333669,-0.8043101,0.4929767,-0.33175173,-0.8050663,0.4918174,-0.3316382,-0.8053604,0.49120358,-0.331834,-0.8060174,0.4901083,-0.33185807,-0.80752933,0.4889179,-0.3299328,-0.80890465,0.48660928,-0.32997677,-0.80985683,0.48509803,-0.3298662,-0.81149155,0.4832197,-0.32860342,-0.8126551,0.48210832,-0.32735795,-0.8129793,0.48172152,-0.32712227,-0.8133994,0.4810269,-0.32710034,-0.81463647,0.47942936,-0.3263662,-0.81577426,0.47813958,-0.325415,-0.8168783,0.47670707,-0.32474637,-0.81872344,0.47537827,-0.32203633,-0.8218514,0.47124642,-0.32013604,-0.8238826,0.46896282,-0.31826317,-0.8249451,0.46833035,-0.31643692,-0.82558817,0.46775812,-0.315605,-0.8257659,0.4682009,-0.3144814,-0.8279108,0.4673776,-0.31003544,-0.8281716,0.46631947,-0.3109308,-0.8290467,0.46412957,-0.31187385,-0.83000016,0.46243483,-0.31185544,-0.830885,0.46097663,-0.31165797,-0.83151984,0.4601317,-0.31121325,-0.83229375,0.45900086,-0.31081408,-0.83350754,0.45761478,-0.3096028,-0.83457947,0.45651114,-0.30834195,-0.83697796,0.4552239,-0.30370882,-0.8374535,0.45443615,-0.30357775,-0.83785033,0.453651,-0.30365705,-0.838718,0.45217627,-0.30346137,-0.83988816,0.45041186,-0.3028482,-0.8407728,0.44936466,-0.30194762,-0.841232,0.44926947,-0.30080846,-0.84214157,0.44948032,-0.29793453,-0.8453,0.4454159,-0.29508045,-0.8456456,0.44470838,-0.29515746,-0.8461341,0.4439358,-0.2949203,-0.84713644,0.44241932,-0.29432115,-0.846584,0.44315287,-0.29480687,-0.84667116,0.4421809,-0.29601336,-0.84699947,0.44054213,-0.29751393,-0.8473941,0.43888193,-0.2988408,-0.8498009,0.434086,-0.29901144,-0.85089195,0.43260747,-0.29804975,-0.85132706,0.43222407,-0.2973627,-0.8517408,0.4319681,-0.29654887,-0.8521604,0.4323224,-0.29482192,-0.852357,0.43274653,-0.293629,-0.8523861,0.4335062,-0.2924215,-0.8523244,0.434185,-0.2915928,-0.8529211,0.43190435,-0.29323065,-0.85269296,0.4313231,-0.29474577,-0.8529665,0.4307741,-0.29475734,-0.853402,0.4302033,-0.29432988,-0.85387534,0.4306933,-0.2922331,-0.8542256,0.43111014,-0.29059014,-0.85521877,0.42931688,-0.29032388,-0.8557879,0.4286656,-0.2896081,-0.8577782,0.4268076,-0.286447,-0.8587398,0.4256898,-0.2852267,-0.8608383,0.42409676,-0.281246,-0.8607914,0.42310318,-0.28288132,-0.860236,0.42378333,-0.2835519,-0.85999525,0.4239076,-0.28409597,-0.8611056,0.42221966,-0.28324485,-0.8633894,0.41918895,-0.28078365,-0.8640442,0.4177649,-0.2808915,-0.86487114,0.41651702,-0.28019905,-0.8660507,0.41531268,-0.27833697,-0.8666663,0.415091,-0.2767472,-0.86698747,0.4147498,-0.2762523,-0.8674251,0.41453654,-0.2751968,-0.8686785,0.41246948,-0.27434748,-0.8669499,0.41424727,-0.27712274,-0.86676437,0.41424727,-0.27770266,-0.87473255,0.40484235,-0.26635617,-0.877509,0.40052003,-0.26374552,-0.87932914,0.39794007,-0.26157975,-0.8817582,0.39387134,-0.2595531,-0.88340044,0.3917099,-0.25722963,-0.88586634,0.38798296,-0.2543817,-0.88655204,0.38714546,-0.25326648,-0.8907578,0.37989053,-0.24946685,-0.89288974,0.37441376,-0.25012463,-0.8944829,0.3716669,-0.24852349,-0.89569587,0.36930013,-0.24768183,-0.8961444,0.3684209,-0.24736847,-0.897888,0.36635214,-0.24409701,-0.8984627,0.36455852,-0.24466689,-0.899298,0.36243325,-0.24475528,-0.90032315,0.35880074,-0.24633357,-0.90053135,0.35716385,-0.24794608,-0.90075475,0.3558214,-0.24906245,-0.900727,0.3552495,-0.24997729,-0.9009993,0.35472524,-0.2497402,-0.903071,0.35040128,-0.24835812,-0.90243167,0.35017383,-0.25098878,-0.9023583,0.34916064,-0.25265852,-0.90253323,0.34833634,-0.2531712,-0.9031743,0.34720257,-0.25244132,-0.9038899,0.34575397,-0.25186747,-0.90493983,0.34325632,-0.2515135,-0.9057325,0.34162772,-0.2508768,-0.90812457,0.33720195,-0.2482027,-0.90971124,0.33483008,-0.24558948,-0.9106477,0.33287317,-0.24477774,-0.9118512,0.33066878,-0.24328063,-0.91413075,0.32808986,-0.23816402,-0.915289,0.32707292,-0.23509446,-0.91625553,0.32574937,-0.23315899,-0.9177351,0.3241125,-0.22959389,-0.9206293,0.31950444,-0.22440691,-0.92189443,0.31704602,-0.22269382,-0.9232828,0.31441313,-0.22066554,-0.92562497,0.31211713,-0.21401231,-0.9274589,0.31005982,-0.20900437,-0.92812544,0.30970415,-0.20655887,-0.9297437,0.3083101,-0.20129971,-0.93043303,0.3085639,-0.19769342,-0.9319165,0.30639297,-0.19404934,-0.93345404,0.30322757,-0.19161558,-0.9340187,0.30262488,-0.18980862,-0.9348758,0.30094227,-0.18825778,-0.9362705,0.29892612,-0.1845012,-0.9373345,0.29697692,-0.18223257,-0.93820566,0.2957161,-0.1797837,-0.9401758,0.29344067,-0.17309546,-0.9411429,0.2921076,-0.17006795,-0.94210374,0.29104462,-0.16653395,-0.9440582,0.28768855,-0.16121268,-0.94527674,0.2867711,-0.15560903,-0.94661105,0.28537798,-0.14995655,-0.94703615,0.28476128,-0.14843664,-0.9474589,0.28459707,-0.14603452,-0.9491888,0.28074768,-0.1422013,-0.95059085,0.2790966,-0.13594875,-0.9526285,0.275081,-0.12972812,-0.9541459,0.27411494,-0.12027722,-0.9557799,0.2710442,-0.114104524,-0.95670813,0.2697922,-0.10918647,-0.9567553,0.2703165,-0.107463375,-0.95706886,0.27048385,-0.1042004,-0.9569237,0.27375424,-0.09672459,-0.9570143,0.2752129,-0.09155,-0.9565522,0.2786048,-0.08594845,-0.9566646,0.2791589,-0.08284461,-0.9568797,0.27915317,-0.080341555,-0.9568044,0.27947882,-0.08010619,-0.9566346,0.2797717,-0.08110507,-0.9562315,0.28029206,-0.08401002,-0.956088,0.28077137,-0.08404266,-0.95586073,0.28199148,-0.082529664,-0.95572144,0.28263408,-0.08194159,-0.9561331,0.28174865,-0.080169715,-0.9563105,0.28111985,-0.08026093,-0.95651466,0.28045157,-0.08016645,-0.9565478,0.28051943,-0.07953058,-0.9563917,0.28153443,-0.07780264,-0.95665365,0.28093165,-0.07675391,-0.9569518,0.27946404,-0.078377716,-0.95710796,0.279023,-0.07804157,-0.9574369,0.278766,-0.07486015,-0.9588277,0.27595514,-0.06706913,-0.9585885,0.2766783,-0.06750715,-0.9579866,0.27807924,-0.07023937,-0.9578112,0.2784468,-0.0711695,-0.95708406,0.2804114,-0.07320962,-0.95738506,0.2796506,-0.07217569,-0.95764095,0.27907622,-0.070995115,-0.95875984,0.27653578,-0.06563175,-0.9597542,0.2737657,-0.06264275,-0.9606158,0.27144694,-0.059446506,-0.96240044,0.2663645,-0.053248744,-0.9631668,0.2640456,-0.05088903,-0.9635996,0.26279762,-0.049124196,-0.96413726,0.2611544,-0.047304947,-0.9657035,0.25611463,-0.042686295,-0.96709496,0.251525,-0.038243264,-0.9512195,0.30801502,0.017556394,-0.95134026,0.3075983,0.01830319,-0.95125055,0.307835,0.018972922,-0.95103586,0.3084447,0.019815996,-0.95044094,0.31020567,0.020844864,-0.9491883,0.31383547,0.023426738,-0.94830763,0.31640908,0.024451355,-0.9480389,0.31701198,0.026938012,-0.94805676,0.31684795,0.02820968,-0.94781363,0.31754547,0.028532216,-0.9470609,0.31966427,0.029840196,-0.9466311,0.32093823,0.029802369,-0.9462948,0.32182032,0.030949472,-0.94592047,0.32283515,0.031812772,-0.9464894,0.3210569,0.032867998,-0.9476426,0.31770948,0.032157734,-0.9478575,0.31703788,0.03245293,-0.9480492,0.31632575,0.033774797,-0.94891983,0.3135595,0.035094135,-0.94892883,0.3134786,0.035571482,-0.9484152,0.31493816,0.03636641,-0.94789785,0.31641304,0.037047196,-0.94672054,0.3198694,0.03746902,-0.9458635,0.3222414,0.038766537,-0.94442105,0.3263335,0.039689373,-0.9429738,0.33031324,0.041153394,-0.9428087,0.33080232,0.041007794,-0.94281805,0.33085936,0.040327188,-0.9432733,0.3296986,0.039170854,-0.9422813,0.33241987,0.040037077,-0.94218594,0.33258224,0.04092433,-0.94205874,0.33288127,0.041416693,-0.9416869,0.333835,0.04218995,-0.9412034,0.33517772,0.042332318,-0.94121784,0.33522916,0.041598383,-0.941317,0.33503562,0.040906716,-0.94138014,0.33500755,0.039664447,-0.94153136,0.3346936,0.038715914,-0.9398277,0.33918932,0.040920567,-0.9398181,0.3391347,0.0415886,-0.9395791,0.33974805,0.04198003,-0.9393528,0.34035465,0.042131152,-0.93878233,0.34199607,0.041549277,-0.93552643,0.35032627,0.045407206,-0.9346354,0.35235208,0.048007786,-0.9335645,0.35488617,0.05013159,-0.932899,0.35649434,0.05110047,-0.9321063,0.358453,0.05185941,-0.9311557,0.3608195,0.052519836,-0.9308733,0.36162528,0.051981047,-0.93066967,0.36218148,0.051754106,-0.9294879,0.365229,0.051574692,-0.9293036,0.36589766,0.050138652,-0.9285814,0.3679985,0.04809994,-0.9284711,0.3684731,0.046571825,-0.92890763,0.36766407,0.044200473,-0.9289645,0.36769822,0.04269569,-0.9291207,0.3673368,0.042407736,-0.929222,0.36690634,0.043890025,-0.92917556,0.3669333,0.0446402,-0.929694,0.36605397,0.040908843,-0.9294315,0.3670831,0.03751153,-0.9293985,0.3673051,0.036130656,-0.92918795,0.36819026,0.032336943,-0.92918026,0.368382,0.03031044,-0.92928046,0.36818153,0.029668305,-0.929358,0.36798587,0.029665237,-0.9295558,0.36758724,0.02838388,-0.9296401,0.3676276,0.02488416,-0.9298863,0.36712912,0.022970982,-0.9307877,0.36510605,0.018218016,-0.9318475,0.36283833,0.0029311655,-0.93198943,0.36248094,0.0018275862,-0.93281746,0.36033705,-0.002977889,-0.93350375,0.35852143,-0.0057534096,-0.93506175,0.35441372,-0.007101807,-0.9353295,0.35369873,-0.007484078,-0.9362939,0.35112837,-0.007911608,-0.9373711,0.3482445,-0.007825609,-0.9383144,0.34569156,-0.007965483,-0.93950564,0.3424421,-0.0079106325,-0.9401808,0.34057423,-0.008321063,-0.9408442,0.33867127,-0.010675638,-0.9412257,0.3375862,-0.011387503,-0.94452226,0.32806972,-0.0157451,-0.9447979,0.32718804,-0.017463643,-0.9451195,0.32618687,-0.018740263,-0.9458456,0.3237489,-0.023721715,-0.94597876,0.32333356,-0.024075089,-0.9461523,0.322811,-0.024266746,-0.94616336,0.32280773,-0.023876518,-0.94595987,0.32353437,-0.022032196,-0.94634527,0.32236642,-0.022595618,-0.94651574,0.32187843,-0.02241002,-0.9473975,0.31936392,-0.021089947,-0.94779205,0.31799716,-0.023833506,-0.94822407,0.31658527,-0.02539289,-0.947427,0.31835428,-0.03213591,-0.94725996,0.3189536,-0.031100607,-0.94704765,0.3195843,-0.031092051,-0.9465595,0.32087535,-0.032620843,-0.9465476,0.32068565,-0.034761637,-0.94658834,0.32036272,-0.036582354,-0.94648886,0.3202045,-0.04034841,-0.946516,0.3200309,-0.041082535,-0.9466435,0.31915233,-0.044809908,-0.9468352,0.31853768,-0.04513121,-0.94733393,0.31603712,-0.051759172,-0.94712937,0.31637427,-0.0534159,-0.94688517,0.3161535,-0.058782298,-0.94705987,0.31495184,-0.062312745,-0.9472328,0.31406602,-0.06412979,-0.94599265,0.31479582,-0.077469565,-0.9449197,0.31754628,-0.07931627,-0.9443036,0.31847304,-0.08285999,-0.94333506,0.320625,-0.08554867,-0.942645,0.32092932,-0.09178641,-0.9421137,0.3218509,-0.09398759,-0.94211304,0.32174277,-0.09436456,-0.94246864,0.3210044,-0.09332226,-0.9427778,0.32045475,-0.09208003,-0.941306,0.3230933,-0.09774318,-0.9417642,0.3223294,-0.09583278,-0.94180864,0.32235685,-0.09530214,-0.9410675,0.3238706,-0.09746624,-0.9400611,0.32645518,-0.09855009,-0.9396129,0.32731128,-0.099974245,-0.9389925,0.32885134,-0.10074681,-0.9378691,0.33123496,-0.103368536,-0.93707824,0.33336008,-0.10370822,-0.9364348,0.33491275,-0.10451443,-0.93450344,0.3398835,-0.105747215,-0.93213725,0.34510624,-0.10964428,-0.9279914,0.35375303,-0.11700766,-0.92746395,0.35510853,-0.11708326,-0.92524785,0.36006203,-0.11946476,-0.92310154,0.364845,-0.121538274,-0.9228859,0.36539724,-0.121517815,-0.9225665,0.36614358,-0.121696524,-0.91853374,0.37503788,-0.12506917,-0.9205941,0.37075216,-0.12267613,-0.92183477,0.36832583,-0.120651476,-0.9225488,0.36688817,-0.11956957,-0.9228369,0.36593813,-0.12025543,-0.9235041,0.36416963,-0.12050169,-0.9240845,0.36280498,-0.12016819,-0.9234918,0.36445296,-0.11973658,-0.9231933,0.36549243,-0.11886753,-0.9224381,0.36754367,-0.11840433,-0.9220204,0.36836693,-0.119097546,-0.9211855,0.36982507,-0.121023245,-0.91799855,0.37631896,-0.1251509,-0.9168239,0.3791218,-0.12530194,-0.91517025,0.3828495,-0.12605406,-0.9148623,0.38360363,-0.1259973,-0.91437876,0.38469017,-0.1261944,-0.913456,0.38713446,-0.12539911,-0.91284704,0.3888993,-0.124368586,-0.91249615,0.38980517,-0.1241076,-0.9099808,0.39564413,-0.12409961,-0.9071234,0.40246263,-0.12308951,-0.90689254,0.40291667,-0.12330462,-0.90673244,0.40335262,-0.12305618,-0.9054081,0.40642753,-0.12269023,-0.8969978,0.42630196,-0.11688288,-0.89478093,0.4318567,-0.113432236,-0.8936288,0.4345227,-0.112328365,-0.8921044,0.43776664,-0.11184865,-0.89198786,0.43745473,-0.11397814,-0.8921045,0.43697733,-0.11489328,-0.892282,0.43656254,-0.115091644,-0.8920532,0.43665767,-0.11649532,-0.89104503,0.43812287,-0.11868909,-0.89015627,0.4390305,-0.12195869,-0.8885929,0.44011432,-0.12923653,-0.8878172,0.4412298,-0.1307551,-0.88724816,0.44189036,-0.13237676,-0.8863715,0.44270292,-0.13549781,-0.8857072,0.4437036,-0.13656443,-0.88513577,0.444342,-0.13818426,-0.88299805,0.44719958,-0.14257284,-0.88298374,0.4472271,-0.14257514,-0.8813248,0.45028412,-0.14321598,-0.8801884,0.45219678,-0.14417487,-0.87864465,0.4545606,-0.14614494,-0.87845516,0.45487106,-0.14631738,-0.8784547,0.4548718,-0.14631805,-0.87825584,0.4552604,-0.14630342,-0.87760633,0.45663396,-0.14591998,-0.877068,0.45762083,-0.14606483,-0.876086,0.45927492,-0.14676462,-0.87569124,0.4601695,-0.14631794,-0.8751454,0.4612435,-0.14620228,-0.87444794,0.46249676,-0.14641593,-0.873519,0.46385098,-0.14767116,-0.8708963,0.46742514,-0.15183355,-0.8691434,0.47020876,-0.15327556,-0.8678333,0.47213465,-0.15477158,-0.86463386,0.47695047,-0.15788122,-0.8645471,0.47719762,-0.15760957,-0.8634452,0.47890955,-0.1584551,-0.8598186,0.48439434,-0.161475,-0.85895884,0.48585573,-0.1616599,-0.8577358,0.48759332,-0.16291746,-0.85515416,0.49091405,-0.1664777,-0.8545873,0.49182042,-0.16671292,-0.85458547,0.4918219,-0.16671786,-0.85234076,0.4944589,-0.17036887,-0.8511921,0.496104,-0.17132694,-0.85072106,0.4966234,-0.17215945,-0.8503496,0.4967247,-0.17369545,-0.850136,0.49709597,-0.17367904,-0.8500584,0.49711365,-0.17400809,-0.8480716,0.4973562,-0.18278775,-0.84734243,0.49805173,-0.18426953,-0.8471559,0.49795797,-0.18537706,-0.84753525,0.49650574,-0.18752584,-0.8472206,0.496252,-0.18960817,-0.84773844,0.49460855,-0.19157758,-0.84908164,0.49157172,-0.19343628,-0.85000694,0.4896157,-0.1943315,-0.85078156,0.48810956,-0.19472985,-0.85077673,0.487713,-0.19574231,-0.85103244,0.48682672,-0.19683385,-0.85014516,0.48588842,-0.20289303,-0.84815955,0.48796454,-0.206194,-0.846778,0.48924646,-0.20881826,-0.8450419,0.49069282,-0.21242595,-0.84387195,0.49211788,-0.21377575,-0.8429889,0.49306795,-0.21506646,-0.8378299,0.49985677,-0.21950911,-0.8366133,0.5020297,-0.21919036,-0.8333531,0.5067509,-0.22073995,-0.8318743,0.50879127,-0.22162254,-0.8311007,0.5097314,-0.2223633,-0.8299942,0.5108514,-0.22392076,-0.82854897,0.5121519,-0.2262897,-0.8261031,0.5147502,-0.22931623,-0.8226382,0.5186392,-0.23298006,-0.8204064,0.5209762,-0.23562077,-0.8181619,0.5231632,-0.238561,-0.8166017,0.52515984,-0.23951797,-0.8154763,0.52642846,-0.24056509,-0.8154021,0.526487,-0.24068831,-0.8153537,0.52651316,-0.2407949,-0.81441355,0.5265306,-0.24391824,-0.8134619,0.5265472,-0.24703805,-0.8124978,0.52656466,-0.25015402,-0.8115222,0.5265813,-0.25326642,-0.8105347,0.5265979,-0.25637498,-0.8095346,0.5266153,-0.25948018,-0.8085234,0.52663195,-0.262581,-0.80749995,0.52664936,-0.265677,-0.8084775,0.52497923,-0.2660093,-0.80945146,0.52330774,-0.26634055,-0.810423,0.52163357,-0.26667008,-0.811391,0.5199581,-0.26699856,-0.80973417,0.5199486,-0.27200025,-0.8080465,0.5199384,-0.27699247,-0.8063285,0.5199283,-0.28197342,-0.804579,0.5199188,-0.28694436,-0.80279917,0.5199093,-0.2919037,-0.80098855,0.51989985,-0.29685274,-0.799148,0.51988965,-0.30178997,-0.7972764,0.5198802,-0.30671632,-0.7934582,0.52208567,-0.31281087,-0.789589,0.5242864,-0.31886205,-0.7856681,0.5264849,-0.32486817,-0.78169733,0.5286792,-0.33082858,-0.77767634,0.5308707,-0.33674303,-0.7736059,0.533058,-0.3426122,-0.765319,0.5374218,-0.3542098,-0.76513386,0.53825295,-0.35334674,-0.7642361,0.5404655,-0.35190955,-0.76362324,0.54030985,-0.35347536,-0.7620313,0.539995,-0.35737038,-0.7604194,0.53968,-0.3612587,-0.7587873,0.53936577,-0.36513895,-0.75713533,0.5390507,-0.36901277,-0.75546384,0.5387355,-0.37287846,-0.753772,0.53842115,-0.37673655,-0.7644651,0.52042824,-0.38045704,-0.7715858,0.512105,-0.37736422,-0.7764747,0.5054287,-0.37633613,-0.7772001,0.5045821,-0.3759747,-0.8062166,0.46823323,-0.36162466,-0.8152204,0.45346946,-0.36025155,-0.8359416,0.43165833,-0.3389288,-0.836615,0.43032566,-0.3389619,-0.844814,0.4155531,-0.3370533,-0.85400045,0.4101484,-0.32009596,-0.823633,0.456891,-0.33597514,-0.804614,0.4819545,-0.34686622,-0.8026487,0.48369032,-0.34899667,-0.77632433,0.5173758,-0.36005944,-0.76983887,0.5284492,-0.357896,-0.7881868,0.5154448,-0.33627117,-0.7933354,0.5076889,-0.33596286,-0.80665785,0.48973086,-0.33085778,-0.826275,0.46816403,-0.31319654,-0.8468546,0.44316056,-0.294017,-0.8473934,0.44233143,-0.29371288,-0.86757874,0.4147692,-0.2743604,-0.873122,0.4069935,-0.26835486,-0.9312076,0.30772635,-0.19533792,-0.95773584,0.278477,-0.0720601,-0.95812666,0.27807352,-0.06832569,-0.9509275,0.3090121,0.015761077,-0.9481103,0.31691995,0.025468366,-0.929445,0.36778292,0.029456396,-0.9305262,0.365659,0.020358156,-0.94342065,0.33137488,-0.0121732,-0.9458222,0.3239271,-0.022174967,-0.9465526,0.32182425,-0.021617439,-0.9471198,0.3119179,-0.07530826,-0.92226714,0.3666264,-0.12250881,-0.8923727,0.4363387,-0.11523627,-0.8893765,0.4393819,-0.12630486,-0.8868854,0.44209835,-0.13410172,-0.8846545,0.44461912,-0.14035745,-0.87654537,0.4584246,-0.14668033,-0.8669707,0.47320628,-0.15632528,-0.8651435,0.47605595,-0.15778917,-0.8561433,0.48960614,-0.16524099,-0.85054505,0.4965671,-0.17318872,-0.8501169,0.49677652,-0.17468359,-0.8475129,0.49707446,-0.18611518,-0.8505252,0.4887432,-0.19426008,-0.8515477,0.485449,-0.19800456,-0.8460109,0.48973462,-0.21077341,-0.84239507,0.4935431,-0.21630026,-0.81942993,0.52176803,-0.23726086,-0.76948655,0.5352416,-0.3484348,-0.7601215,0.52633274,-0.38103685,-0.7665785,0.51806855,-0.3794237,-0.8043689,0.4728789,-0.359689,-0.80859095,0.46446627,-0.361181,-0.80724424,0.46512192,-0.3633433,-0.82827854,0.44265622,-0.34352592,-0.8557605,0.40833816,-0.31770086,-0.8504147,0.41611955,-0.32193068,-0.83893925,0.43507072,-0.3269471,-0.8156616,0.46678764,-0.3417681,-0.7771795,0.5162414,-0.35984293,-0.7704982,0.5277066,-0.3575727,-0.7805361,0.5228458,-0.34263062,-0.7880548,0.5163392,-0.3352064,-0.79578644,0.5045298,-0.33492333,-0.8445132,0.44672695,-0.2953517,-0.85260123,0.43359685,-0.29165897,-0.8611335,0.4229094,-0.28212887,-0.86877495,0.4126177,-0.2738187,-0.90132093,0.35470542,-0.24860565,-0.90317875,0.35149935,-0.24640676,-0.9187231,0.32273597,-0.22757283,-0.9307654,0.30834898,-0.19646038,-0.9523286,0.2774645,-0.12682122,-0.9557699,0.2826717,-0.08124429,-0.95148224,0.30738902,0.013911342,-0.94251424,0.33187658,0.039049294,-0.9401668,0.33840105,0.039638244,-0.92879224,0.36783922,0.045158148,-0.9399753,0.34114704,-0.00806688,-0.9468588,0.32095438,-0.021136003,-0.9476369,0.31777653,-0.031661134,-0.94746,0.3122563,-0.06939444,-0.928747,0.35208654,-0.11603446,-0.9222791,0.36758405,-0.119512275,-0.8984332,0.42284837,-0.118393876,-0.8923276,0.43635938,-0.115507305,-0.88405913,0.44536853,-0.14172624,-0.8613175,0.48208,-0.16040881,-0.8497234,0.49670845,-0.17677905,-0.8488677,0.49690884,-0.18029179,-0.83920366,0.4977961,-0.21894367,-0.808194,0.4644006,-0.3621527,-0.8295932,0.44172376,-0.3415483,-0.7798924,0.52335787,-0.343314,-0.8539019,0.43119317,-0.2914173,-0.86122733,0.42367837,-0.28068516,-0.8614331,0.42290398,-0.2812209,-0.8678634,0.414521,-0.27383465,-0.8684225,0.41348535,-0.27362785,-0.888188,0.38473815,-0.2511945,-0.9000407,0.36030924,-0.24516092,-0.9524842,0.28160226,-0.11607791,-0.95645845,0.28146327,-0.077237904,-0.957524,0.27891412,-0.073176,-0.9511052,0.30853224,0.014384174,-0.9458718,0.3229086,0.03250596,-0.94325376,0.32982016,0.038614523,-0.94271094,0.33137643,0.03854401,-0.9410731,0.3360616,0.03799981,-0.9373536,0.34581238,0.042214364,-0.9290342,0.3672147,0.045265157,-0.9472951,0.31678575,-0.047735404,-0.9414905,0.3225892,-0.09763177,-0.92202175,0.36708388,-0.12298474,-0.90261245,0.4129453,-0.12151949,-0.8660739,0.47451353,-0.1573306,-0.77767646,0.53087,-0.33674362,-0.8030974,0.47602597,-0.3583766,-0.8557628,0.40895888,-0.31689543,-0.8525165,0.41217363,-0.32144767,-0.8309111,0.44720343,-0.33105272,-0.7859903,0.50236064,-0.36035123,-0.77828807,0.52387774,-0.34614986,-0.78726673,0.5177171,-0.33493292,-0.8615272,0.4231774,-0.28052062,-0.90185726,0.35433957,-0.24717793,-0.9029186,0.35239995,-0.24607377,-0.93972534,0.29618344,-0.17085554,-0.95228,0.2826847,-0.11511835,-0.95730174,0.2794313,-0.07410434,-0.93816394,0.34369487,0.04149938,-0.92900044,0.36725518,0.04562619,-0.9296852,0.3656399,0.044641692,-0.94801676,0.3168181,-0.029842004,-0.9426987,0.3204571,-0.09287776,-0.9215048,0.36818394,-0.12356968,-0.8723545,0.4653045,-0.14996454,-0.8411351,0.4951203,-0.21759504,-0.77274686,0.52857715,-0.3513807,-0.8418805,0.42976934,-0.32639778,-0.7781615,0.524422,-0.34560993,-0.81211853,0.48606345,-0.32280937,-0.902682,0.3529606,-0.24613819,-0.93952304,0.29649597,-0.17142557,-0.95213014,0.2836157,-0.114062525,-0.9495765,0.31346285,0.0067459005,-0.94132876,0.33534798,0.037970796,-0.93503666,0.35406822,0.018498102,-0.9482461,0.31643,-0.026482075,-0.9420213,0.32151613,-0.096037425,-0.85698473,0.48583445,-0.17187782,-0.81896746,0.5173565,-0.24826297,-0.7768737,0.52638274,-0.34552637,-0.7659484,0.52962255,-0.36444893,-0.7873196,0.52313524,-0.326278,-0.7750684,0.5090616,-0.3743332,-0.8306739,0.44733307,-0.33147258,-0.8417642,0.42983478,-0.3266115,-0.8030836,0.48218343,-0.35007975,-0.80800545,0.49275348,-0.32298785,-0.94506526,0.2955183,-0.1397164,-0.9508538,0.28908274,-0.110942684,-0.9383655,0.30194047,-0.1682323,-0.9492542,0.3144139,0.0077625625,-0.9291875,0.36673188,0.046025116,-0.9349972,0.3541583,0.018766271,-0.92958903,0.36581922,0.045173004,-0.9470828,0.31770384,-0.04580795,-0.9203074,0.3715062,-0.122546144,-0.85745,0.4851856,-0.17138939,-0.8267155,0.5075919,-0.2426765,-0.7769865,0.5071296,-0.37297672,-0.83294034,0.43699953,-0.3394729,-0.841084,0.43066835,-0.32726526,-0.81012267,0.4733868,-0.3458413,-0.83087134,0.46476817,-0.3060121,-0.8167704,0.48261854,-0.3161731,-0.80222917,0.50027066,-0.32581854,-0.9173145,0.3307472,-0.22167605,-0.9509058,0.28911093,-0.11042209,-0.9451103,0.29553708,-0.13937126,-0.95087117,0.2890921,-0.11076915,-0.9383933,0.3019498,-0.16806085,-0.95702666,0.28045475,-0.07379096,-0.9477894,0.31870085,0.011184215,-0.9352424,0.35351387,0.01869546,-0.8591214,0.48067528,-0.17567487,-0.82737577,0.50681007,-0.24205984,-0.7806148,0.5034459,-0.37038186,-0.8436156,0.4236205,-0.32993692,-0.82245845,0.45532483,-0.340942,-0.8065889,0.47651488,-0.34978274,-0.8377757,0.43387365,-0.33148986,-0.91506803,0.3375108,-0.22076465,-0.92310554,0.32296827,-0.20872845,-0.90665966,0.35197318,-0.23255773,-0.9471191,0.3206965,0.0109167,-0.93710184,0.3486559,0.016707364,-0.9480982,0.314344,-0.047934957,-0.8979357,0.42160425,-0.12633829,-0.86807597,0.46687534,-0.16873498,-0.82878155,0.5053981,-0.24019548,-0.841989,0.42600095,-0.33102524,-0.8046719,0.47872347,-0.35117957,-0.8212226,0.45681635,-0.34192443,-0.80595064,0.47725147,-0.3502493,-0.8371799,0.43462846,-0.33200586,-0.91063744,0.34683126,-0.22460537,-0.92099875,0.3276581,-0.21071659,-0.8996955,0.36586058,-0.23810509,-0.94699734,0.32105532,0.010935169,-0.929442,0.36613238,0.04565898,-0.94360155,0.33105543,-0.0042970385,-0.939365,0.34269634,0.012352963,-0.9346925,0.35428485,0.028847212,-0.9473669,0.31177056,-0.07276759,-0.9480919,0.31410122,-0.049620964,-0.9019028,0.41259328,-0.12782077,-0.8684798,0.4655282,-0.17037126,-0.8293012,0.50492376,-0.23939838,-0.815576,0.4603495,-0.35059103,-0.84122324,0.42700577,-0.33167687,-0.84393835,0.44768253,-0.29554763,-0.82582045,0.47136816,-0.30956846,-0.80691534,0.49471858,-0.32270908,-0.9272411,0.33419523,-0.16893038,-0.936486,0.31493136,-0.15431179,-0.942871,0.30854663,-0.12567134,-0.9496673,0.29563627,-0.10359171,-0.9353917,0.3214003,-0.14745888,-0.9202372,0.33409727,-0.20381984,-0.9184317,0.34692866,-0.19006243,-0.9089767,0.35959867,-0.21083201,-0.8988905,0.3722025,-0.23121671,-0.9607283,0.27194232,-0.055213716,-0.9357978,0.3512219,0.030422455,-0.9416636,0.3362218,0.014983905,-0.9470329,0.32113582,-0.00064072135,-0.93930405,0.34285435,0.012600787,-0.93465894,0.35436344,0.02896997,-0.94357425,0.33113474,-0.004172056,-0.9345916,0.35452083,0.029215457,-0.9000305,0.41487962,-0.13349165,-0.8516366,0.48478195,-0.19925271,-0.8685373,0.46519053,-0.17099915,-0.8169103,0.5124381,-0.26469752,-0.827059,0.50490874,-0.24706398,-0.83676296,0.49734068,-0.2290851,-0.84024864,0.42905256,-0.3315058,-0.8275848,0.44578284,-0.34114665,-0.81453925,0.4623588,-0.35035726,-0.86485285,0.419349,-0.2759999,-0.8546543,0.4337495,-0.28535488,-0.847546,0.44304997,-0.29218575,-0.84414554,0.44803992,-0.29441217,-0.8333354,0.46221673,-0.30316293,-0.82223296,0.47627652,-0.3115985,-0.81084764,0.49021545,-0.31971067,-0.79918903,0.5040301,-0.32749137,-0.9218631,0.34448698,-0.17747442,-0.914169,0.35461313,-0.19632757,-0.90598565,0.3646978,-0.21490821,-0.89732206,0.37473994,-0.23320183,-0.94054604,0.31374562,-0.1301417,-0.9341493,0.32398933,-0.14965275,-0.9485986,0.29824817,-0.10587087,-0.9316283,0.32915992,-0.15402119,-0.89986855,0.37486327,-0.22296666,-0.9112696,0.3597228,-0.20046733,-0.88768184,0.3899044,-0.24494,-0.9606277,0.27232775,-0.05506421,-0.9447404,0.32780585,-0.0029979318,-0.9004569,0.41397265,-0.13343182,-0.8513004,0.48482677,-0.2005756,-0.868392,0.4652132,-0.17167434,-0.8293362,0.5030059,-0.24328266,-0.8180993,0.51149195,-0.26284888,-0.8400233,0.49447116,-0.22329158,-0.80812925,0.4709543,-0.35373604,-0.8309078,0.4418012,-0.33823642,-0.84186316,0.42704466,-0.32999903,-0.81966007,0.456439,-0.3461515,-0.7963253,0.48534322,-0.36098194,-0.7842583,0.49960193,-0.36788154,-0.7719387,0.5137265,-0.37442723,-0.8879674,0.40353706,-0.22061677,-0.8816468,0.40418985,-0.24357632,-0.9056277,0.37420174,-0.19952784,-0.9139271,0.35938996,-0.18861653,-0.8969722,0.38891864,-0.21019801,-0.92641217,0.3438171,-0.1534612,-0.9336699,0.3288231,-0.14190105,-0.94227105,0.3134069,-0.11790379,-0.94932044,0.29807794,-0.09970121,-0.9346316,0.32865456,-0.13583077,-0.9176238,0.35889053,-0.1707748,-0.9082785,0.37387085,-0.18775164,-0.8983886,0.38875434,-0.20437205,-0.87702864,0.4182152,-0.23646732,-0.86558694,0.43278491,-0.25190568,-0.8584431,0.433428,-0.27425477,-0.8536575,0.44724235,-0.2669142,-0.841256,0.46158394,-0.28147563,-0.82839894,0.4758059,-0.29557383,-0.81510335,0.48990443,-0.3091929,-0.8013866,0.5038761,-0.3223174,-0.95624983,0.2885357,-0.04830596,-0.9022804,0.410127,-0.1329885,-0.89363676,0.4274509,-0.13674428,-0.9105808,0.39265394,-0.12909515,-0.8591924,0.47585067,-0.18802798,-0.8678664,0.46575058,-0.17287114,-0.87615806,0.4555894,-0.15743355,-0.8131116,0.51146275,-0.27794853,-0.82628256,0.5029864,-0.25349912,-0.8386353,0.4944613,-0.22847067,-0.77362716,0.5140903,-0.37042162,-0.95073384,0.29596925,-0.09223538,-0.9437573,0.31144896,-0.11100358,-0.9499879,0.29709408,-0.09621928,-0.94291466,0.31256795,-0.114948645,-0.9361641,0.32684648,-0.12949172,-0.92796516,0.3421577,-0.14767781,-0.9356975,0.32740286,-0.13144396,-0.9496082,0.29765633,-0.098209485,-0.9269342,0.34326404,-0.15153502,-0.919172,0.3573785,-0.16554005,-0.9097967,0.37250507,-0.18305703,-0.9186128,0.35792845,-0.16744508,-0.9091926,0.3730514,-0.18493623,-0.8998525,0.3875333,-0.20020807,-0.88935333,0.40245914,-0.21697289,-0.89952904,0.38780475,-0.20113422,-0.9183315,0.35820338,-0.16839696,-0.9349894,0.32823738,-0.13436928,-0.9424867,0.3131273,-0.11691908,-0.93546253,0.32768106,-0.13241933,-0.94941664,0.2979374,-0.099204086,-0.87831354,0.41727886,-0.23333165,-0.86674845,0.43198842,-0.24926515,-0.8775808,0.41781396,-0.23512429,-0.8659751,0.43251944,-0.2510261,-0.8546741,0.44658384,-0.26475468,-0.84210706,0.46106148,-0.2797822,-0.8542682,0.44684726,-0.26561892,-0.87721294,0.41808146,-0.2360198,-0.82906455,0.4754174,-0.29433027,-0.8155646,0.48964772,-0.30838203,-0.82862103,0.47567642,-0.29515943,-0.80162567,0.5037489,-0.32192138,-0.8540649,0.44697896,-0.26605076,-0.89904183,0.3882117,-0.20252262,-0.90888906,0.37332457,-0.18587516,-0.91790766,0.3586157,-0.16982406,-0.899367,0.38794032,-0.20159708,-0.93487036,0.32837644,-0.13485646,-0.9180492,0.35847825,-0.16934843,-0.9527958,0.29995012,-0.04701138,-0.90390664,0.40675762,-0.13229142,-0.89448446,0.42578158,-0.1364097,-0.9129153,0.38755563,-0.1280092,-0.8461503,0.4830667,-0.2251138,-0.83639026,0.49305883,-0.23946682,-0.8237221,0.5015918,-0.26436254,-0.81169486,0.5107696,-0.28331232,-0.8352128,0.49235716,-0.24495722,-0.8565187,0.4737215,-0.20485029,-0.86630267,0.46432278,-0.18418498,-0.87548745,0.45487148,-0.16313708,-0.7712701,0.5166887,-0.37171918,-0.9531252,0.29855195,-0.049185216,-0.8940543,0.4263494,-0.1374518,-0.9036311,0.40713984,-0.13299608,-0.89434123,0.42597085,-0.13675715,-0.9127832,0.38774848,-0.12836617,-0.8101584,0.51076126,-0.28769135,-0.8224941,0.5015846,-0.26817226,-0.8110392,0.5107661,-0.28519008,-0.8233147,0.5015894,-0.2656331,-0.8342654,0.49235106,-0.24817681,-0.84545445,0.4830619,-0.2277235,-0.8346458,0.49235353,-0.2468894,-0.81147677,0.5107685,-0.2839385,-0.8560444,0.47371796,-0.20683163,-0.8660188,0.46432036,-0.18552116,-0.8563611,0.47372037,-0.20551078,-0.875362,0.4548702,-0.16381238,-0.8348353,0.4923547,-0.24624549,-0.77046746,0.51768976,-0.37199083,-0.9531212,0.2984739,-0.049733113,-0.8721912,0.44556803,-0.20187068,-0.86690724,0.4550025,-0.2035795,-0.8673237,0.4456345,-0.22171934,-0.8766044,0.44550154,-0.18191533,-0.88056105,0.44543505,-0.1618637,-0.85658205,0.4644519,-0.22483715,-0.8341113,0.48319185,-0.26605263,-0.8400015,0.48312682,-0.2469532,-0.81612307,0.5016488,-0.28686506,-0.8511933,0.46451756,-0.24432221,-0.8906526,0.42641658,-0.15781899,-0.886787,0.42648375,-0.17810252,-0.8965598,0.4072755,-0.17408949,-0.88245946,0.4265508,-0.19829182,-0.9095868,0.38781694,-0.14916424,-0.90032995,0.40720767,-0.15358348,-0.885443,0.42129517,-0.19621703,-0.8844523,0.42304865,-0.19691113,-0.87150794,0.43869472,-0.21913663,-0.8984414,0.40373927,-0.17261994,-0.91047186,0.3860333,-0.14838912,-0.8364092,0.47980124,-0.2649724,-0.85229576,0.46280375,-0.24373075,-0.8173193,0.49997458,-0.2863818,-0.8544899,0.45937097,-0.24253927,-0.90215725,0.39664862,-0.16965306,-0.91222984,0.3824616,-0.14683248,-0.88741285,0.41778353,-0.19482137,-0.91569704,0.37530133,-0.1436937,-0.94727683,0.31178188,-0.07388306,-0.88776785,0.41717657,-0.19450422,-0.88764966,0.41737884,-0.19460994,-0.8720105,0.4378942,-0.21873808,-0.90237874,0.39623985,-0.16943032,-0.91579986,0.3750949,-0.14357717,-0.83668786,0.47941053,-0.2648,-0.85462266,0.45917314,-0.24244618,-0.81746495,0.4997817,-0.28630286,-0.85488784,0.45877758,-0.24226002,-0.90282106,0.39542198,-0.16898409,-0.91600543,0.37468213,-0.1433436,-0.88800436,0.4167719,-0.19429244,-0.9164158,0.37385625,-0.14287624,-0.78398466,0.52417123,-0.3325846,-0.8924097,0.4091943,-0.19017087,-0.89095014,0.4117234,-0.19155096,-0.8782419,0.427894,-0.21353652,-0.9055719,0.3903212,-0.16609904,-0.9176948,0.37128252,-0.14137006,-0.8401687,0.47453538,-0.2625504,-0.8565476,0.4563115,-0.2410518,-0.819289,0.4973776,-0.28527352,-0.8598426,0.45136884,-0.23861428,-0.9109626,0.38008362,-0.16026106,-0.9202243,0.3661265,-0.13834211,-0.89530194,0.40412685,-0.18739247,-0.8869432,0.41604593,-0.20059292,-0.9033108,0.39213872,-0.17394511,-0.92516845,0.35578075,-0.13222462,-0.9182507,0.3679636,-0.1463507,-0.9317098,0.34353712,-0.11789358,-0.78796154,0.52215296,-0.3263017,-0.94984174,0.30103368,-0.08473155,-0.89710456,0.4009865,-0.18550819,-0.8965053,0.40203372,-0.18613742,-0.88081956,0.42375514,-0.21116003,-0.9120736,0.37796712,-0.15894222,-0.9256769,0.35471186,-0.13153662,-0.8416248,0.4725209,-0.26151803,-0.8605315,0.4503481,-0.23805918,-0.8200553,0.4963852,-0.28480002,-0.8088118,0.50818,-0.29593334,-0.83099633,0.4844981,-0.27332515,-0.8619048,0.44830483,-0.23694496,-0.8519308,0.46045575,-0.24938808,-0.8715374,0.43607062,-0.22419886,-0.9142755,0.3737283,-0.15629263,-0.92668855,0.35257253,-0.13015768,-0.89829826,0.39889023,-0.18424672,-0.88974255,0.41136095,-0.19783904,-0.90647846,0.38634527,-0.17039408,-0.9286911,0.3482883,-0.12738928,-0.92168206,0.36104193,-0.14195381,-0.935296,0.33546993,-0.11261126,-0.7887982,0.52162015,-0.32513055,-0.9495979,0.30157408,-0.08553904,-0.90445215,0.38274622,-0.18833932,-0.9131059,0.37314156,-0.16432586,-0.90172714,0.38784936,-0.19094768,-0.9182044,0.36285752,-0.15885574,-0.92823404,0.3479919,-0.13146539,-0.9305644,0.34280217,-0.12859483,-0.93510014,0.33532104,-0.114662826,-0.9209,0.36059946,-0.14802463,-0.8961728,0.39801988,-0.19609782,-0.90486056,0.38561583,-0.1803549,-0.88705236,0.41035172,-0.21154082,-0.87750906,0.42260897,-0.22667049,-0.85719573,0.44689077,-0.25593773,-0.8604115,0.4419368,-0.25373992,-0.8675533,0.4347894,-0.24147373,-0.8464477,0.45891082,-0.27005023,-0.83532065,0.47084758,-0.28379923,-0.8238265,0.4826987,-0.29717308,-0.8119777,0.49446204,-0.3101605,-0.79978675,0.5061356,-0.3227506,-0.9351129,0.33239132,-0.12280004,-0.79937714,0.5065297,-0.3231468,-0.8116056,0.49483284,-0.31054276,-0.8165338,0.49572003,-0.29586172,-0.8234909,0.4830456,-0.29753935,-0.8350203,0.4711701,-0.2841474,-0.8394914,0.47207075,-0.2690787,-0.8461815,0.45920852,-0.27037832,-0.85696214,0.44716322,-0.2562439,-0.8589913,0.44761994,-0.24853617,-0.8673508,0.43503627,-0.2417561,-0.87733626,0.42282978,-0.22692733,-0.81889814,0.49616352,-0.28849193,-0.8869076,0.41054618,-0.21177046,-0.8960543,0.39818764,-0.1962988,-0.8975683,0.39865604,-0.18826693,-0.9047666,0.38575628,-0.18052569,-0.9130347,0.37325457,-0.16446485,-0.92084956,0.36068472,-0.14813049,-0.92820257,0.34804893,-0.13153712,-0.93508536,0.33534965,-0.11469927,-0.85997987,0.4478483,-0.24467635,-0.8463993,0.45896494,-0.27010992,-0.8570556,0.44705424,-0.2561215,-0.8463751,0.45899206,-0.27013978,-0.85710233,0.44699976,-0.25606018,-0.8673958,0.43498144,-0.2416933,-0.86741835,0.43495396,-0.24166192,-0.84632665,0.45904619,-0.27019948,-0.8352206,0.47095504,-0.2839154,-0.82374907,0.4827788,-0.2972577,-0.8237748,0.48275208,-0.29722947,-0.8119245,0.4945151,-0.31021518,-0.7997594,0.50616187,-0.32277706,-0.86746335,0.4348991,-0.24159913,-0.90480417,0.38570008,-0.18045738,-0.90482295,0.38567203,-0.18042322,-0.8961333,0.39807588,-0.19616485,-0.88703173,0.41037956,-0.21157366,-0.9208832,0.36062792,-0.14805987,-0.8869903,0.4104351,-0.21163933,-0.8235943,0.48293883,-0.29742664,-0.82364583,0.48288548,-0.29737037,-0.8118183,0.49462098,-0.3103243,-0.79970485,0.50621444,-0.32282975,-0.84627825,0.4591003,-0.27025917,-0.7995956,0.5063196,-0.32293555,-0.9367644,0.34648004,0.04923463,-0.9365313,0.34698993,0.05007079,-0.9354121,0.34969163,0.052153736,-0.93485415,0.35105336,0.053002574,-0.9346947,0.35149935,0.052858498,-0.93487835,0.35116822,0.051800348,-0.93501127,0.35104933,0.050182898,-0.9354319,0.35004053,0.049384434,-0.9361214,0.3482828,0.04874171,-0.891783,0.36696422,-0.264689,-0.8914109,0.36830044,-0.26408592,-0.8910554,0.36897373,-0.2643458,-0.8908489,0.3693634,-0.26449758,-0.8903457,0.36994392,-0.26537898,-0.89023954,0.36971188,-0.26605785,-0.89078635,0.3683377,-0.2661336,-0.8912302,0.36749923,-0.2658064,-0.88433975,0.32094952,-0.3390201,-0.88458586,0.32129824,-0.33804616,-0.8841067,0.32229388,-0.33835185,-0.88350385,0.32330853,-0.33895794,-0.8833782,0.32276338,-0.33980387,-0.883492,0.3219623,-0.34026775,-0.84944534,0.42090204,-0.31825155,-0.8485155,0.42267302,-0.31838483,-0.8480935,0.42328465,-0.31869656,-0.8472477,0.42400715,-0.31998324,-0.8472415,0.4239061,-0.3201335,-0.8474591,0.4233557,-0.32028592,-0.8482529,0.42212543,-0.31980792,-0.84904647,0.42116326,-0.31896967,-0.8038469,0.48534018,-0.34391147,-0.8037538,0.48560688,-0.3437525,-0.8029981,0.48682234,-0.34379932,-0.8015222,0.48941073,-0.3435684,-0.80019844,0.48997468,-0.34584284,-0.7995689,0.4911695,-0.34560403,-0.79878783,0.49220982,-0.34592992,-0.79764766,0.49333334,-0.3469588,-0.79706335,0.49353272,-0.3480165,-0.7978893,0.49185675,-0.34849614,-0.7983619,0.4911049,-0.34847414,-0.79970247,0.48949835,-0.34765977,-0.80275095,0.48628545,-0.34513378,-0.7987416,0.47004557,-0.37559164,-0.79859245,0.47054043,-0.37528884,-0.797972,0.4721218,-0.37462202,-0.7964907,0.47451657,-0.37474868,-0.7959479,0.4751383,-0.37511396,-0.7958748,0.4747453,-0.37576613,-0.7968778,0.47286692,-0.37600878,-0.79713756,0.4710727,-0.3777066,-0.8111311,0.4812846,-0.33231226,-0.8097252,0.4848908,-0.33049348,-0.8085148,0.48673144,-0.33075118,-0.8077938,0.48796296,-0.3306982,-0.8074036,0.48847544,-0.3308944,-0.8068911,0.48791543,-0.3329643,-0.8069045,0.48736787,-0.333733,-0.8086892,0.4831906,-0.33548287,-0.8091494,0.48248166,-0.33539334,-0.81065506,0.4813429,-0.3333878,-0.7709038,0.48333973,-0.41483736,-0.770929,0.4839231,-0.41410977,-0.7701401,0.4854713,-0.41376552,-0.76968724,0.48612827,-0.41383678,-0.76902133,0.48680067,-0.4142841,-0.76862764,0.48759854,-0.4140763,-0.7681906,0.48767066,-0.41480172,-0.76813364,0.48729187,-0.41535205,-0.7685199,0.48652303,-0.4155389,-0.93083096,0.36147836,0.053731885,-0.93054307,0.36226404,0.05342645,-0.93039715,0.3626707,0.053207982,-0.93030936,0.36292562,0.053004917,-0.93032956,0.36290652,0.052780982,-0.9306017,0.36216637,0.053065423,-0.9308109,0.36157206,0.053448174,-0.9470008,0.31985563,-0.029696908,-0.94692796,0.32023838,-0.027834408,-0.94675136,0.32080263,-0.027342256,-0.94653344,0.32160485,-0.025392894,-0.94645065,0.3218308,-0.02561502,-0.9464087,0.3219026,-0.02625564,-0.9468694,0.3202141,-0.03002316,-0.8584045,0.40908802,-0.30949757,-0.85849786,0.409144,-0.30916423,-0.858465,0.40934306,-0.30899203,-0.85834146,0.40965867,-0.30891705,-0.856731,0.41222718,-0.30996883,-0.85677016,0.41200593,-0.31015474,-0.857771,0.40993315,-0.3101351,-0.77278835,0.5254919,-0.35588828,-0.7729585,0.525555,-0.35542533,-0.7728419,0.5258311,-0.3552704,-0.77243817,0.5263161,-0.3554302,-0.7717425,0.52686816,-0.3561228,-0.77169466,0.5268044,-0.35632077,-0.7720194,0.52617544,-0.35654664,-0.8383843,0.4386944,-0.32351053,-0.83804363,0.43955794,-0.3232207,-0.8378123,0.43946618,-0.3239446,-0.83777404,0.43900824,-0.3246637,-0.83899415,0.4357949,-0.32583985,-0.83901083,0.43601194,-0.3255066,-0.8383398,0.43835807,-0.32408112,-0.8387495,0.4379643,-0.3235529,-0.83871275,0.43812823,-0.32342628,-0.84643227,0.41225207,-0.3370469,-0.8461953,0.41300273,-0.33672282,-0.84429514,0.4152964,-0.3386658,-0.8437092,0.41550493,-0.33986825,-0.84339815,0.41522354,-0.34098235,-0.8430084,0.4152422,-0.34192201,-0.8430534,0.41541895,-0.34159634,-0.84273744,0.4160211,-0.34164318,-0.8419125,0.4171376,-0.342315,-0.84137845,0.41833612,-0.3421655,-0.8407035,0.41944665,-0.34246475,-0.83991396,0.42080536,-0.34273502,-0.837992,0.42616403,-0.34081325,-0.8374043,0.42713124,-0.34104678,-0.83932376,0.42184496,-0.3429031,-0.83997405,0.41928798,-0.34444332,-0.8406713,0.41886783,-0.34325132,-0.84110785,0.41833612,-0.34283006,-0.84171855,0.41707876,-0.34286326,-0.84023577,0.42010254,-0.34280863,-0.40507722,0.8342953,-0.37398377,-0.4054833,0.8344005,-0.37330833,-0.40567484,0.8346155,-0.37261888,-0.40483245,0.8351911,-0.37224534,-0.40393552,0.8356609,-0.3721653,-0.40154317,0.8367143,-0.37238714,-0.4024128,0.8357727,-0.37356108,-0.40280867,0.83520705,-0.37439868,-0.40294084,0.8349135,-0.37491083,-0.40328574,0.8345329,-0.37538695,-0.40385473,0.8341214,-0.37568983,-0.40428495,0.8340057,-0.37548387,-0.405132,0.83399206,-0.37460014,-0.40504572,0.8341331,-0.3743794,-0.4074969,0.8314128,-0.37775534,-0.4078001,0.8314431,-0.37736124,-0.4080998,0.83183116,-0.37618017,-0.4079731,0.83208174,-0.37576306,-0.40762198,0.8323345,-0.37558427,-0.40738535,0.8325768,-0.3753039,-0.4072642,0.832808,-0.37492225,-0.40703216,0.8330363,-0.37466702,-0.4066904,0.8332606,-0.37453932,-0.4061378,0.8333892,-0.37485263,-0.4047969,0.8334401,-0.3761875,-0.40470466,0.8333247,-0.37654224,-0.4046975,0.83284384,-0.37761226,-0.40485033,0.8325815,-0.37802666,-0.40512186,0.83235013,-0.37824532,-0.40693527,0.83156097,-0.3780345,-0.37696728,0.84993035,-0.36812237,-0.3767497,0.8501584,-0.36781833,-0.37557808,0.85069376,-0.36777878,-0.37432015,0.8511092,-0.36809996,-0.37370923,0.85092485,-0.3691454,-0.3738487,0.8507278,-0.36945826,-0.3747895,0.8502889,-0.36951524,-0.37606412,0.8499529,-0.3689931,-0.28300688,0.86874086,-0.4064437,-0.2830216,0.8689522,-0.40598127,-0.28269175,0.8693934,-0.4052659,-0.28239822,0.86950463,-0.405232,-0.28184837,0.8689497,-0.40680206,-0.28231317,0.8688159,-0.4067655,-0.29118234,0.86438584,-0.409939,-0.29147494,0.8644363,-0.40962443,-0.29173267,0.86533594,-0.4075362,-0.29228994,0.86586934,-0.40600106,-0.29209167,0.8661579,-0.40552804,-0.29142168,0.8659921,-0.40636322,-0.29117602,0.8655947,-0.40738478,-0.29112336,0.8649607,-0.40876672,-0.26427528,0.866595,-0.42328686,-0.26485258,0.86683,-0.4224439,-0.26315737,0.8673458,-0.42244458,-0.2623465,0.8670144,-0.42362764,-0.2625211,0.8664899,-0.42459157,-0.26413295,0.8663282,-0.42392123,-0.2316641,0.86913306,-0.4369662,-0.23200619,0.8691647,-0.43672168,-0.23217675,0.86927044,-0.43642044,-0.23222898,0.870121,-0.43469432,-0.23201059,0.870273,-0.4345066,-0.23145764,0.87038803,-0.43457112,-0.2318046,0.8695589,-0.43604353,-0.19169515,0.8217343,-0.53666157,-0.1914453,0.82251835,-0.53554857,-0.19104359,0.8227098,-0.535398,-0.18984488,0.8226638,-0.5358948,-0.18970375,0.8224801,-0.53622663,-0.19016655,0.82223326,-0.53644115,-0.2020241,0.8188249,-0.53731936,-0.20230299,0.81887573,-0.5371369,-0.20215546,0.8191471,-0.5367785,-0.20169206,0.81956095,-0.536321,-0.20093283,0.8197401,-0.53633213,-0.2010844,0.8195018,-0.53663933,-0.201718,0.81893295,-0.5372696,-0.20031822,0.8198738,-0.5363577,-0.19996831,0.82066935,-0.5352705,-0.1993175,0.82140785,-0.5343798,-0.19908176,0.8213257,-0.5345938,-0.1990688,0.8209702,-0.5351445,-0.19932513,0.8204082,-0.5359102,-0.19894351,0.8203912,-0.53607816,-0.19909105,0.82017523,-0.53635377,-0.19910681,0.8198977,-0.536772,-0.19948086,0.81972545,-0.53689617,-0.19989008,0.8199612,-0.53638387,-0.20024478,0.8197484,-0.5365767,-0.19921973,0.8208037,-0.53534365,-0.14090748,0.8061391,-0.5747041,-0.14103882,0.80616885,-0.5746302,-0.14118703,0.80651563,-0.574107,-0.14153601,0.8068304,-0.5735785,-0.14174215,0.80729836,-0.57286865,-0.1415971,0.807404,-0.57275563,-0.14121243,0.8073326,-0.57295126,-0.1409263,0.8071917,-0.5732201,-0.1405881,0.8067972,-0.57385826,-0.14047909,0.806628,-0.5741227,-0.14056802,0.8063947,-0.57442856,-0.042141676,0.7857541,-0.6171017,-0.043029416,0.7859902,-0.61673975,-0.04232595,0.7863241,-0.61636263,-0.04097412,0.7867872,-0.6158628,-0.04090489,0.7862325,-0.6165755,-0.09652696,0.91511333,-0.39147183,-0.096770294,0.9151528,-0.39131936,-0.09771749,0.9155094,-0.39024842,-0.098330505,0.9157828,-0.3894522,-0.09833978,0.9158594,-0.38926953,-0.097104535,0.9155063,-0.3904087,-0.09648296,0.91522115,-0.39123037,-0.06608501,0.8958333,-0.439449,-0.06591204,0.89602226,-0.43908963,-0.06430821,0.89669514,-0.43795237,-0.06359816,0.8965102,-0.4384344,-0.06343424,0.8955605,-0.44039473,-0.063436285,0.8951666,-0.44119456,-0.06354193,0.89475703,-0.44200933,-0.06387823,0.8943472,-0.44278958,-0.06435711,0.8941092,-0.4432008,-0.06527464,0.89377266,-0.443745,-0.066191606,0.89362204,-0.44391254,-0.06708849,0.893679,-0.44366303,-0.06789225,0.89393663,-0.44302142,-0.07595786,0.893248,-0.44310084,-0.07632404,0.8928396,-0.4438604,-0.076834016,0.89255697,-0.44434062,-0.080309235,0.89174813,-0.44534892,-0.08104751,0.890928,-0.4468542,-0.08148108,0.8906584,-0.44731247,-0.08186392,0.8907572,-0.44704577,-0.0821868,0.89098096,-0.44654036,-0.08523347,0.892467,-0.4429874,-0.08725801,0.8923594,-0.44281015,-0.08783264,0.8926941,-0.44202107,-0.08788686,0.89345443,-0.4404714,-0.08562367,0.8937421,-0.44033358,-0.083889805,0.89375204,-0.440647,-0.08329496,0.89382195,-0.440618,-0.0823019,0.89375013,-0.44095024,-0.08125349,0.89394695,-0.44074568,-0.08090886,0.89420575,-0.44028383,-0.08055781,0.89439297,-0.4399678,-0.07697624,0.8951461,-0.4390765,-0.07664296,0.8955305,-0.43835023,-0.07623182,0.89584774,-0.4377734,-0.07579143,0.89602906,-0.4374787,-0.07470878,0.89633644,-0.437035,-0.073661536,0.89647734,-0.4369237,-0.072761886,0.8963973,-0.43723866,-0.0718908,0.89624536,-0.43769392,-0.07053206,0.8956651,-0.43910044,-0.069324374,0.8955991,-0.43942723,-0.0680246,0.8957826,-0.43925646,-0.066877104,0.895864,-0.4392666,-0.07741618,0.89253736,-0.44427896,-0.0832955,0.8923586,-0.4435741,-0.07933187,0.894529,-0.439914,-0.06864712,0.89428085,-0.44220957,-0.07845609,0.89237434,-0.44442394,-0.07991322,0.89197403,-0.44496766,-0.07737048,0.89487004,-0.4395696,-0.06946101,0.89451265,-0.44161332,-0.07549434,0.89345866,-0.44275528,-0.08210722,0.8914672,-0.4455834,-0.08261548,0.89196557,-0.44449085,-0.07951564,0.8921161,-0.44475392,-0.074617624,0.8937574,-0.44230074,-0.07026973,0.8945675,-0.44137424,-0.07110479,0.8945008,-0.4413756,-0.0737458,0.89399236,-0.44197193,-0.11937194,0.8689248,-0.48033324,-0.11842189,0.869353,-0.47979328,-0.117959246,0.8694671,-0.47970054,-0.117460296,0.8694187,-0.47991064,-0.11657533,0.8691908,-0.48053876,-0.11604119,0.86933696,-0.48040363,-0.11557343,0.8693463,-0.48049954,-0.114693925,0.8689666,-0.4813963,-0.11366303,0.8687721,-0.4819915,-0.113282256,0.86860067,-0.48238987,-0.11311901,0.86791277,-0.4836647,-0.10955434,0.86805624,-0.4842274,-0.1088015,0.86797756,-0.48453817,-0.10808122,0.86782306,-0.4849759,-0.10964639,0.8668594,-0.48634607,-0.11126566,0.86609995,-0.48733032,-0.11265747,0.8658848,-0.48739296,-0.116112135,0.8648418,-0.48843285,-0.11864511,0.8645769,-0.48829314,-0.11940826,0.86440545,-0.48841053,-0.12018752,0.8640449,-0.4888572,-0.12055369,0.86395955,-0.48891786,-0.12087145,0.8640591,-0.48866352,-0.120502114,0.8644483,-0.4880659,-0.12181534,0.8650642,-0.4866466,-0.123310044,0.865092,-0.48622063,-0.1247408,0.8652663,-0.48554495,-0.12440465,0.865788,-0.48470062,-0.123980105,0.8662728,-0.48394248,-0.123136304,0.8666298,-0.48351857,-0.12306537,0.8669018,-0.48304886,-0.12273245,0.86752987,-0.48200485,-0.12275128,0.8679746,-0.4811988,-0.12248214,0.86847186,-0.48036942,-0.1220759,0.8687543,-0.4799618,-0.12153733,0.86893916,-0.47976395,-0.12102515,0.8690311,-0.47972697,-0.11979062,0.8689007,-0.48027256,-0.12066089,0.86471,-0.4875629,-0.24260427,0.8464156,-0.47405046,-0.24250723,0.847092,-0.47289047,-0.24147628,0.8474559,-0.47276592,-0.23944242,0.84778875,-0.47320348,-0.2389972,0.84765583,-0.47366646,-0.23994201,0.8469258,-0.47449404,-0.23983197,0.84678113,-0.47480765,-0.24012621,0.8463793,-0.4753752,-0.2398902,0.84610456,-0.47598296,-0.23892559,0.84623677,-0.47623307,-0.23869042,0.8461781,-0.47645506,-0.23854914,0.8459992,-0.47684345,-0.23850018,0.8457001,-0.47739822,-0.23745327,0.84583104,-0.47768798,-0.2360346,0.8467304,-0.4767969,-0.23567231,0.8468551,-0.47675467,-0.23500188,0.8469398,-0.47693512,-0.23472978,0.84689087,-0.47715598,-0.23451188,0.8467771,-0.47746494,-0.23426689,0.8463779,-0.4782922,-0.23444216,0.8461073,-0.478685,-0.23488316,0.8457947,-0.47902122,-0.2357526,0.84539926,-0.47929195,-0.23705237,0.8449206,-0.47949493,-0.23722613,0.84470856,-0.47978252,-0.23627134,0.8447642,-0.48015553,-0.23601767,0.8446629,-0.48045835,-0.23644519,0.8442868,-0.480909,-0.23760808,0.84285897,-0.48283657,-0.2384493,0.8421405,-0.4836748,-0.23692678,0.84281904,-0.4832409,-0.2357857,0.84367335,-0.48230734,-0.2351076,0.8439176,-0.48221102,-0.23497126,0.84401816,-0.48210144,-0.23501493,0.8442092,-0.48174566,-0.23444198,0.844615,-0.48131326,-0.23358458,0.8448066,-0.48139387,-0.23304568,0.84481794,-0.48163506,-0.23227888,0.8446839,-0.4822402,-0.23169294,0.8442389,-0.48330024,-0.23063844,0.84394825,-0.48431116,-0.23018578,0.8428855,-0.4863728,-0.230356,0.84213495,-0.48759082,-0.23060328,0.84184396,-0.48797634,-0.2325823,0.8406224,-0.48914146,-0.23425306,0.83901805,-0.49109495,-0.236355,0.8379178,-0.49196547,-0.23708275,0.83783084,-0.4917634,-0.23720829,0.83832645,-0.49085742,-0.2371441,0.83872116,-0.49021375,-0.23689206,0.8390139,-0.48983458,-0.23656225,0.839272,-0.48955157,-0.23615538,0.8394953,-0.48936522,-0.2358162,0.83961475,-0.48932382,-0.23488149,0.839587,-0.48982078,-0.23784073,0.8397004,-0.48819575,-0.2376756,0.83925027,-0.48904938,-0.23773809,0.8388724,-0.48966697,-0.23790947,0.8388613,-0.48960274,-0.2384389,0.83914506,-0.48885834,-0.23975837,0.838704,-0.48896992,-0.24043976,0.83864963,-0.48872843,-0.24058709,0.8385708,-0.48879132,-0.23929532,0.8369616,-0.4921717,-0.23940526,0.83680767,-0.49237993,-0.2396733,0.8366541,-0.49251044,-0.2399418,0.8365538,-0.49255022,-0.24043551,0.8365178,-0.4923705,-0.24174212,0.8373215,-0.49036053,-0.24205187,0.8382972,-0.48853734,-0.24200393,0.83851546,-0.4881863,-0.2418169,0.83876896,-0.48784348,-0.24157704,0.8389517,-0.48764795,-0.24069709,0.8391678,-0.48771137,-0.24175945,0.8394082,-0.48677117,-0.24213599,0.839649,-0.48616838,-0.24344233,0.8408158,-0.4834921,-0.24524511,0.84092236,-0.48239452,-0.24546579,0.84134084,-0.4815518,-0.24614024,0.8417068,-0.480567,-0.24689537,0.84170544,-0.48018184,-0.24745464,0.84180254,-0.47972357,-0.24765226,0.8419359,-0.4793875,-0.24730709,0.8422604,-0.47899538,-0.2468707,0.8425543,-0.4787036,-0.24606767,0.84295434,-0.47841272,-0.24531934,0.8434184,-0.47797886,-0.24719802,0.84312713,-0.47752467,-0.24913551,0.84296715,-0.47679958,-0.24935997,0.8430171,-0.47659388,-0.2495764,0.8432247,-0.4761132,-0.24992627,0.84411275,-0.47435275,-0.24979174,0.84430647,-0.47407874,-0.249498,0.84446716,-0.47394723,-0.24783666,0.8447587,-0.47429922,-0.24662265,0.84558266,-0.47346297,-0.24684258,0.8460287,-0.47255075,-0.24674089,0.8462481,-0.47221094,-0.24646683,0.846432,-0.47202444,-0.24560855,0.84667146,-0.4720423,-0.24476524,0.8466474,-0.47252324,-0.24421585,0.8464932,-0.47308338,-0.2430337,0.84590465,-0.47474197,-0.23978248,0.8472206,-0.47404805,-0.23943551,0.8415591,-0.4841992,-0.23809594,0.8420591,-0.4839905,-0.24208456,0.83997977,-0.48562232,-0.24455476,0.8430194,-0.47907326,-0.24332568,0.8459669,-0.47448143,-0.24014512,0.8461536,-0.47576714,-0.23801877,0.84555084,-0.47790253,-0.2424005,0.8402562,-0.4849861,-0.24415761,0.8431001,-0.4791339,-0.24460796,0.8434679,-0.47825608,-0.24685758,0.8452928,-0.47385803,-0.2383236,0.8455504,-0.47775137,-0.23767324,0.8398267,-0.48806,-0.23485163,0.8396865,-0.4896645,-0.24443638,0.8433736,-0.47851002,-0.23873875,0.8417496,-0.48421216,-0.23514214,0.83992106,-0.48912245,-0.23733927,0.8399391,-0.48802906,-0.235759,0.84002745,-0.48864263,-0.23670156,0.8400062,-0.4882233,-0.42971164,0.8274339,-0.361526,-0.42944673,0.8279451,-0.36066926,-0.42882645,0.8285545,-0.36000746,-0.4280623,0.82917905,-0.3594785,-0.42729262,0.8296737,-0.35925278,-0.42654186,0.83010256,-0.35915425,-0.42610124,0.8298449,-0.36027092,-0.4244131,0.8302313,-0.36137164,-0.42281756,0.8312811,-0.3608282,-0.42136818,0.83160216,-0.3617827,-0.419934,0.8323492,-0.36173233,-0.41832665,0.8327146,-0.36275226,-0.4144095,0.83389753,-0.36452663,-0.4129369,0.83443195,-0.36497456,-0.41182008,0.83483654,-0.36531103,-0.41032347,0.83475167,-0.36718434,-0.4092369,0.8356618,-0.36632568,-0.40827605,0.8362109,-0.36614484,-0.40785164,0.8366957,-0.36550978,-0.40695536,0.836943,-0.3659423,-0.40563568,0.83730656,-0.36657527,-0.404852,0.838227,-0.36533594,-0.40425617,0.838923,-0.3643971,-0.4017289,0.8394249,-0.36603236,-0.4013882,0.8400496,-0.36497143,-0.40111148,0.84055275,-0.36411634,-0.39982522,0.8412874,-0.3638342,-0.39751565,0.8425157,-0.3635225,-0.3958199,0.84339046,-0.36334434,-0.39335203,0.84474957,-0.36286682,-0.39118478,0.84593916,-0.36243805,-0.3894149,0.8469085,-0.3620801,-0.38810164,0.84757584,-0.3619286,-0.38595787,0.84876627,-0.36143103,-0.38341302,0.8501028,-0.36099815,-0.38125247,0.8511508,-0.36081693,-0.38059026,0.8518265,-0.35992038,-0.37867838,0.85267174,-0.35993546,-0.37686718,0.85352504,-0.35981402,-0.37478384,0.8545044,-0.35966548,-0.37330538,0.85498303,-0.36006543,-0.37225083,0.8553236,-0.36034828,-0.36971447,0.8562534,-0.36075106,-0.36906803,0.8566247,-0.3605314,-0.36854413,0.85688627,-0.36044574,-0.3679261,0.8572498,-0.36021268,-0.36731523,0.85767245,-0.35982978,-0.36681208,0.8579336,-0.35972065,-0.3649266,0.8585603,-0.36014274,-0.36411065,0.8589533,-0.36003143,-0.3627836,0.85940635,-0.36028975,-0.3590586,0.8611101,-0.35995328,-0.35860738,0.8615941,-0.3592442,-0.35811535,0.8620778,-0.35857394,-0.35772806,0.86232513,-0.35836574,-0.35518026,0.8633517,-0.3584284,-0.35399842,0.8637766,-0.35857362,-0.3527934,0.8642156,-0.35870355,-0.35205072,0.86364865,-0.3607925,-0.35050204,0.8628524,-0.36418957,-0.34942022,0.86255634,-0.36592627,-0.35064548,0.86192054,-0.36625224,-0.35079885,0.8612396,-0.36770442,-0.3500062,0.8612665,-0.36839613,-0.3518569,0.8596733,-0.37034905,-0.35244817,0.8585328,-0.37242684,-0.35094336,0.8585131,-0.37389034,-0.35056955,0.85811955,-0.37514237,-0.35000739,0.8575353,-0.3769987,-0.34954634,0.857061,-0.37850192,-0.3486707,0.8564057,-0.38078606,-0.3481484,0.85708827,-0.37972677,-0.3464581,0.858239,-0.3786721,-0.34505025,0.8591946,-0.3777897,-0.3438144,0.8596842,-0.37780243,-0.34173518,0.86050725,-0.37781525,-0.34017634,0.8611231,-0.3778189,-0.33795312,0.86200047,-0.37781334,-0.33640134,0.86261195,-0.37780255,-0.33478186,0.8632493,-0.37778535,-0.33265704,0.86408395,-0.37775418,-0.33094877,0.86516297,-0.37678367,-0.32943228,0.8655516,-0.3772199,-0.32598212,0.866754,-0.3774562,-0.3254172,0.86752856,-0.37616196,-0.32473674,0.8684537,-0.37461212,-0.32409856,0.86900914,-0.37387592,-0.3231217,0.868975,-0.37479967,-0.32165328,0.86892265,-0.37618154,-0.3203359,0.8688763,-0.37741077,-0.3200557,0.8682238,-0.3791462,-0.3177747,0.8680905,-0.38136345,-0.31546795,0.868629,-0.38205191,-0.31576723,0.86792463,-0.3834031,-0.31378588,0.86827785,-0.38422906,-0.3117855,0.86863357,-0.3850526,-0.22183648,0.935805,-0.27396628,-0.21883051,0.93759054,-0.27025396,-0.21837042,0.937643,-0.270444,-0.21732925,0.937675,-0.27117082,-0.21728063,0.9375662,-0.2715855,-0.21688476,0.9376062,-0.27176377,-0.2156979,0.93797785,-0.27142572,-0.21431318,0.93831426,-0.2713599,-0.21047354,0.9389134,-0.27229127,-0.20918226,0.93933094,-0.27184576,-0.20688717,0.93989414,-0.2716555,-0.20364845,0.9403847,-0.27240402,-0.20357744,0.9402603,-0.27288613,-0.20324996,0.940226,-0.27324805,-0.20213401,0.94029677,-0.27383167,-0.20126782,0.9402997,-0.27445891,-0.20020385,0.94001514,-0.27620637,-0.19864345,0.93992525,-0.2776351,-0.19820215,0.9395859,-0.2790954,-0.1951271,0.9397445,-0.2807235,-0.19469766,0.93989503,-0.28051764,-0.19354315,0.93999624,-0.2809771,-0.1906542,0.9406444,-0.28078306,-0.18953824,0.9406218,-0.281613,-0.18816549,0.94079876,-0.28194228,-0.18582733,0.94083196,-0.28337854,-0.18020119,0.9411178,-0.28605035,-0.17925522,0.9414898,-0.28541994,-0.17830369,0.9415616,-0.28577894,-0.1774395,0.9417964,-0.2855428,-0.17689963,0.9418039,-0.285853,-0.1760822,0.9415759,-0.28710604,-0.1741923,0.94215286,-0.28636518,-0.17333436,0.94220483,-0.28671452,-0.17056924,0.942646,-0.28692263,-0.16994038,0.94259137,-0.28747478,-0.16909118,0.94271654,-0.28756508,-0.1674785,0.94269776,-0.2885686,-0.1653207,0.94231415,-0.2910552,-0.16423355,0.942584,-0.2907968,-0.16346906,0.9426992,-0.290854,-0.16222127,0.9424356,-0.2924027,-0.16156435,0.9423592,-0.293012,-0.16132936,0.94216716,-0.29375815,-0.15736799,0.94236207,-0.29527795,-0.1575519,0.9427075,-0.2940749,-0.15744548,0.94286287,-0.29363337,-0.15743136,0.94299144,-0.29322776,-0.15538739,0.942971,-0.2943815,-0.15488496,0.9430385,-0.29442996,-0.15444513,0.9433081,-0.29379678,-0.15373687,0.9433412,-0.29406184,-0.15268205,0.9439926,-0.29251692,-0.1531324,0.9444358,-0.29084626,-0.15251063,0.9446446,-0.29049474,-0.151282,0.9448401,-0.29050124,-0.15029652,0.9448959,-0.290831,-0.14982809,0.9448119,-0.29134518,-0.14712556,0.94513476,-0.29167518,-0.14608137,0.9448979,-0.2929646,-0.14502059,0.9449123,-0.29344454,-0.14402682,0.94481945,-0.29423207,-0.14314969,0.94438285,-0.29605618,-0.14186594,0.9445962,-0.29599354,-0.1407302,0.9446515,-0.2963588,-0.13943921,0.9449163,-0.29612485,-0.13950756,0.94510746,-0.29548183,-0.13936032,0.9454453,-0.29446882,-0.13818951,0.94579375,-0.2939011,-0.13729982,0.9459895,-0.29368794,-0.13604343,0.9460809,-0.29397807,-0.13583817,0.94598484,-0.2943819,-0.13361907,0.94461715,-0.29974058,-0.13285762,0.9449617,-0.29899195,-0.13214068,0.94510776,-0.29884812,-0.13346642,0.9454925,-0.2970365,-0.13389544,0.9458679,-0.29564494,-0.13377357,0.94620454,-0.29462117,-0.13301323,0.9465523,-0.29384744,-0.12733953,0.947652,-0.2928145,-0.12774122,0.9477499,-0.29232228,-0.12728618,0.94781107,-0.29232243,-0.12626532,0.9473162,-0.29436213,-0.12586322,0.946818,-0.2961319,-0.122923836,0.9446361,-0.3042241,-0.12036522,0.9446118,-0.30532074,-0.12035072,0.94449174,-0.30569762,-0.11988972,0.94437075,-0.30625212,-0.11786567,0.9443856,-0.30699107,-0.117617406,0.94421595,-0.30760756,-0.11636805,0.9444559,-0.30734593,-0.11668616,0.94455945,-0.30690673,-0.116477676,0.9447183,-0.3064967,-0.116163835,0.94481605,-0.30631447,-0.115711,0.9448261,-0.30645487,-0.11427411,0.9443004,-0.30860686,-0.11296566,0.9434246,-0.31175116,-0.11362155,0.94342005,-0.31152648,-0.11538358,0.9428188,-0.31269675,-0.11737735,0.9427842,-0.31205854,-0.11603124,0.9425083,-0.31339255,-0.115197554,0.94262445,-0.3133508,-0.115296096,0.9423675,-0.3140865,-0.11557556,0.94199455,-0.3151009,-0.11595665,0.94161266,-0.31610075,-0.116155304,0.94134605,-0.31682098,-0.1156267,0.9416554,-0.31609422,-0.1145813,0.9416663,-0.3164423,-0.11443315,0.94233555,-0.3144976,-0.11373961,0.9424815,-0.31431183,-0.11398616,0.9430379,-0.3125486,-0.11343827,0.9431391,-0.3124427,-0.11301666,0.9431717,-0.31249702,-0.11098251,0.9423287,-0.31575227,-0.10974357,0.94149756,-0.31865138,-0.10652486,0.9410847,-0.32095495,-0.10599628,0.9408603,-0.32178688,-0.10455558,0.94074273,-0.32260084,-0.10514284,0.9409131,-0.32191238,-0.105448075,0.94116676,-0.3210698,-0.10572182,0.94122124,-0.32082006,-0.10551518,0.94133717,-0.3205478,-0.105268344,0.9414108,-0.32041276,-0.10467184,0.9416571,-0.3198839,-0.104354195,0.94139785,-0.32074964,-0.104138196,0.94104147,-0.32186368,-0.10323061,0.9402533,-0.32444906,-0.10143261,0.9382403,-0.33078176,-0.10131733,0.937347,-0.33333975,-0.10184127,0.9363928,-0.33585244,-0.10186149,0.9359395,-0.33710748,-0.1016983,0.93601364,-0.33695093,-0.10165352,0.93572354,-0.33776912,-0.097240396,0.93318254,-0.34599808,-0.09383291,0.93296885,-0.34751183,-0.092980996,0.9328433,-0.34807733,-0.09021049,0.9327496,-0.34905612,-0.08587269,0.93286145,-0.3498505,-0.08638054,0.93230623,-0.35120293,-0.08511111,0.9296082,-0.35858706,-0.085558206,0.92993295,-0.35763744,-0.0850077,0.92982787,-0.35804155,-0.08429715,0.9295168,-0.35901603,-0.085772045,0.9292633,-0.35932285,-0.08685545,0.9291839,-0.3592679,-0.08805692,0.92899007,-0.3594766,-0.090269595,0.92819977,-0.36096624,-0.09432897,0.9274817,-0.36177307,-0.10594975,0.9237298,-0.36810046,-0.10779589,0.9223426,-0.3710312,-0.108649276,0.9218331,-0.3720472,-0.110298105,0.92120296,-0.37312126,-0.114099346,0.9206909,-0.37324205,-0.11562015,0.92075306,-0.37262014,-0.1168655,0.920631,-0.3725333,-0.117579125,0.92121226,-0.37086803,-0.11777732,0.92091554,-0.37154147,-0.11810362,0.9206403,-0.37211958,-0.12329472,0.92036396,-0.37111807,-0.12287266,0.91997755,-0.37221453,-0.122507535,0.9191625,-0.37434232,-0.123169154,0.91844875,-0.37587404,-0.12459795,0.9180698,-0.37632865,-0.12558782,0.91769636,-0.3769099,-0.12693278,0.91742057,-0.37713075,-0.12981747,0.918245,-0.3741304,-0.1316043,0.9177891,-0.3746244,-0.13341196,0.9178412,-0.37385657,-0.13184616,0.9162535,-0.37828043,-0.12963717,0.91688055,-0.3775238,-0.12881847,0.9170274,-0.37744734,-0.12762596,0.91703457,-0.37783492,-0.12612863,0.91677815,-0.37895834,-0.12205875,0.91822034,-0.3767931,-0.121698044,0.91902614,-0.37494066,-0.12086849,0.91914475,-0.37491837,-0.11949507,0.9199492,-0.37338242,-0.11865125,0.92014515,-0.37316856,-0.11797071,0.9200323,-0.37366214,-0.11730326,0.91978306,-0.37448514,-0.11814969,0.91917056,-0.37572083,-0.11898512,0.9186923,-0.37662587,-0.12399847,0.9170118,-0.37909597,-0.1242082,0.91644526,-0.38039508,-0.12500133,0.9161589,-0.38082483,-0.13121125,0.9148809,-0.38180703,-0.13044958,0.91523767,-0.38121247,-0.12994191,0.91509616,-0.3817252,-0.12884022,0.91529155,-0.38163018,-0.12793095,0.91553205,-0.38135913,-0.12741171,0.9153153,-0.38205266,-0.12592416,0.9138495,-0.38603395,-0.123895004,0.9140491,-0.386218,-0.12147727,0.9139059,-0.38732314,-0.12052237,0.9139696,-0.3874713,-0.11922306,0.9142484,-0.38721535,-0.11740564,0.9140802,-0.3881666,-0.111216284,0.91536295,-0.38696468,-0.11156488,0.91557074,-0.38637224,-0.11109929,0.9162115,-0.384985,-0.11132248,0.91700876,-0.3830173,-0.11127212,0.9172764,-0.38239056,-0.11071752,0.91748804,-0.38204357,-0.11028248,0.9175873,-0.381931,-0.110769756,0.9176402,-0.38166288,-0.11199141,0.9175789,-0.38145372,-0.11120818,0.9178686,-0.38098547,-0.10903338,0.91782904,-0.3817087,-0.10644669,0.91767436,-0.38280913,-0.10515997,0.9174426,-0.3837192,-0.10303015,0.91662693,-0.38623807,-0.10211581,0.9166416,-0.38644612,-0.10054171,0.91643196,-0.38735497,-0.09868801,0.9157961,-0.38933042,-0.098565176,0.9155817,-0.38986543,-0.09854184,0.9152768,-0.3905866,-0.10076013,0.9147277,-0.3913063,-0.09751386,0.91444653,-0.39278316,-0.09627239,0.9147501,-0.39238232,-0.095107794,0.9145678,-0.39309055,-0.0943001,0.9142584,-0.3940038,-0.09305078,0.9139132,-0.39510027,-0.09237348,0.9132554,-0.39677662,-0.09142073,0.91267055,-0.39834,-0.08917876,0.9125441,-0.39913717,-0.088307254,0.91182154,-0.40097797,-0.08602364,0.91150635,-0.40218917,-0.0858862,0.9117487,-0.4016688,-0.08542752,0.9115407,-0.40223843,-0.085076354,0.9110997,-0.40331063,-0.08565676,0.910652,-0.40419787,-0.0860857,0.9104512,-0.404559,-0.09070391,0.9093967,-0.40591916,-0.096235864,0.90878713,-0.4060106,-0.096579604,0.90889233,-0.4056933,-0.10038058,0.90822166,-0.4062723,-0.099209405,0.90831685,-0.40634716,-0.098087616,0.90812355,-0.40705094,-0.09556744,0.907391,-0.4092779,-0.09515362,0.90751237,-0.4091052,-0.09502051,0.907463,-0.40924564,-0.0959652,0.9070153,-0.41001698,-0.09846623,0.9059607,-0.411752,-0.099955834,0.9050272,-0.41344234,-0.09956325,0.9048089,-0.4140145,-0.09979609,0.90429187,-0.41508672,-0.10130977,0.90352786,-0.41638178,-0.10279651,0.9032062,-0.41671503,-0.10813187,0.90268177,-0.41650108,-0.110562116,0.90232384,-0.41663852,-0.11176774,0.90223676,-0.4165054,-0.11231516,0.90228933,-0.41624427,-0.11254102,0.9024373,-0.4158622,-0.11330445,0.90276015,-0.41495323,-0.113628544,0.902641,-0.4151238,-0.11611005,0.90321493,-0.41318423,-0.12406159,0.9023988,-0.41265616,-0.12517954,0.9020121,-0.4131637,-0.12521614,0.9024245,-0.41225109,-0.12540676,0.90273345,-0.41151604,-0.12446762,0.90283275,-0.41158327,-0.12668085,0.90270853,-0.41118035,-0.12784056,0.901638,-0.4131655,-0.12851667,0.90166306,-0.41290095,-0.13094415,0.9039189,-0.40716606,-0.13278508,0.9044006,-0.4054969,-0.13319215,0.9049478,-0.40414014,-0.13419463,0.90477115,-0.40420416,-0.13536456,0.904789,-0.40377393,-0.13764255,0.9055984,-0.4011808,-0.13864495,0.90512073,-0.40191293,-0.13943712,0.90479404,-0.4023743,-0.13870496,0.90270853,-0.40728155,-0.13707918,0.9027833,-0.40766606,-0.13700028,0.9020872,-0.40923056,-0.14152434,0.90070784,-0.4107265,-0.14325415,0.8990326,-0.4137857,-0.14420815,0.89829546,-0.41505328,-0.13760395,0.894711,-0.42492044,-0.1368852,0.8952004,-0.42412117,-0.13625449,0.8952532,-0.42421275,-0.13564762,0.8951616,-0.42460024,-0.13543946,0.8945648,-0.4259225,-0.13436304,0.8931032,-0.42931724,-0.13323943,0.89263767,-0.43063357,-0.13260558,0.89191586,-0.4323215,-0.12980856,0.89136875,-0.43429422,-0.12914857,0.89167523,-0.4338616,-0.1284396,0.8918438,-0.43372566,-0.12755641,0.891456,-0.4347822,-0.12706076,0.89113647,-0.43558165,-0.127016,0.89138496,-0.43508595,-0.12738937,0.891563,-0.43461177,-0.12752746,0.8917219,-0.43424502,-0.12750714,0.891996,-0.43368775,-0.12630396,0.8925293,-0.43294197,-0.12450728,0.89295703,-0.43258017,-0.12320107,0.89307094,-0.43271905,-0.121118486,0.8927041,-0.43406186,-0.12083197,0.89246935,-0.43462408,-0.12060138,0.89201564,-0.43561846,-0.12205082,0.891434,-0.43640462,-0.12207987,0.8912478,-0.4367767,-0.12170354,0.89132667,-0.4367208,-0.11988415,0.8911686,-0.43754584,-0.11942624,0.8907735,-0.43847454,-0.11936793,0.89035636,-0.4393368,-0.11949253,0.88942415,-0.44118735,-0.12020205,0.88843346,-0.44298697,-0.12062195,0.88800156,-0.4437382,-0.12120567,0.8884311,-0.44271818,-0.1214936,0.88788164,-0.44374037,-0.12039206,0.8876631,-0.44447708,-0.12104866,0.88710445,-0.44541326,-0.12130386,0.8868589,-0.44583264,-0.12028014,0.88715243,-0.44552585,-0.11937621,0.88728297,-0.44550896,-0.11855849,0.88711315,-0.44606522,-0.11809902,0.8867974,-0.4468142,-0.11678307,0.88542527,-0.44987082,-0.115518965,0.8837692,-0.45343944,-0.11556564,0.8830436,-0.4548391,-0.11591295,0.8826145,-0.45558295,-0.116188854,0.8823523,-0.45602033,-0.117151454,0.88187426,-0.45669833,-0.11551101,0.8816069,-0.45763138,-0.11426184,0.8815852,-0.45798668,-0.11367804,0.8813292,-0.45862418,-0.114353076,0.8808766,-0.45932534,-0.11624039,0.880445,-0.45967895,-0.1140881,0.8800224,-0.46102548,-0.11379619,0.880124,-0.46090364,-0.113522656,0.88007015,-0.46107385,-0.11378662,0.8795573,-0.4619865,-0.114031814,0.87919945,-0.46260682,-0.114650585,0.8788732,-0.46307355,-0.11555827,0.87924045,-0.4621499,-0.1171071,0.87874347,-0.4627049,-0.116551325,0.8780148,-0.46422604,-0.117149144,0.87744516,-0.46515173,-0.11868528,0.87714535,-0.4653277,-0.1197147,0.87601376,-0.4671919,-0.120457284,0.8754843,-0.4679928,-0.12118336,0.8754213,-0.46792328,-0.12195339,0.87551767,-0.46754274,-0.12172438,0.8760438,-0.46661597,-0.12145259,0.8764101,-0.4659985,-0.122436784,0.8768841,-0.46484783,-0.12205382,0.87653893,-0.4655989,-0.12189269,0.87628734,-0.46611443,-0.122531235,0.8760512,-0.46639085,-0.123215504,0.8759098,-0.46647608,-0.123678595,0.876243,-0.46572718,-0.123842426,0.8757185,-0.46666926,-0.12447732,0.8754155,-0.4670686,-0.12614878,0.87535286,-0.46673742,-0.1253063,0.8749888,-0.46764615,-0.12417713,0.8743291,-0.46917877,-0.124802515,0.8740506,-0.4695316,-0.12525359,0.8739475,-0.4696034,-0.12776345,0.87403774,-0.46875852,-0.13056825,0.87351716,-0.46895593,-0.13424443,0.8734724,-0.46800047,-0.13695793,0.87358105,-0.46701032,-0.13546227,0.87360597,-0.46739984,-0.13500977,0.8733798,-0.467953,-0.13649249,0.87179804,-0.47046575,-0.13556384,0.87245476,-0.4695158,-0.13517073,0.87256676,-0.46942103,-0.13461843,0.8726329,-0.46945676,-0.13384464,0.8719967,-0.47085816,-0.13227518,0.8711439,-0.47287586,-0.13247071,0.871613,-0.47195578,-0.13260762,0.87227976,-0.47068375,-0.13198158,0.87267745,-0.47012222,-0.1314574,0.87288713,-0.46987984,-0.13019124,0.8730842,-0.46986625,-0.12858975,0.87353045,-0.4694776,-0.12750135,0.8737046,-0.46945038,-0.12680082,0.87354416,-0.46993846,-0.12637176,0.872411,-0.47215378,-0.12435067,0.87070966,-0.4758168,-0.12549242,0.87055826,-0.475794,-0.12722602,0.87036115,-0.4756943,-0.12718405,0.8700483,-0.4762774,-0.12728328,0.8696031,-0.4770633,-0.12871344,0.86905,-0.47768703,-0.1298756,0.86869395,-0.47802,-0.13103773,0.86866444,-0.47775644,-0.1332625,0.8673255,-0.47957027,-0.13673863,0.8659751,-0.48102984,-0.13684563,0.8655789,-0.48171195,-0.13704629,0.8651232,-0.482473,-0.13940829,0.8643344,-0.48320952,-0.1413399,0.8642881,-0.4827309,-0.14502713,0.86467487,-0.48094124,-0.14754874,0.8653505,-0.47895503,-0.14844416,0.86596996,-0.47755668,-0.14981034,0.86593586,-0.47719175,-0.14988206,0.8663601,-0.47639847,-0.14977325,0.8671278,-0.47503415,-0.14922403,0.8677578,-0.4740554,-0.14890715,0.86803466,-0.4736481,-0.14760126,0.86836284,-0.47345525,-0.14817856,0.8686053,-0.47282973,-0.14881285,0.869449,-0.47107658,-0.14955851,0.8711728,-0.46764332,-0.14990817,0.87150776,-0.4669066,-0.15017323,0.8719458,-0.46600276,-0.15173295,0.87193954,-0.4655089,-0.15049863,0.87133676,-0.46703574,-0.1500122,0.86998487,-0.4697048,-0.14970921,0.86849296,-0.47255376,-0.15167187,0.8675773,-0.4736088,-0.1534542,0.86585104,-0.47618666,-0.15660653,0.8635197,-0.47938296,-0.15813826,0.8604351,-0.4844003,-0.15764324,0.8597095,-0.48584786,-0.15864071,0.8584781,-0.48769704,-0.15973517,0.8578504,-0.4884439,-0.16039956,0.85814977,-0.48769957,-0.16167563,0.8581515,-0.48727503,-0.1608844,0.8573147,-0.48900682,-0.16118129,0.85671705,-0.4899556,-0.16151036,0.8562437,-0.4906741,-0.16247422,0.8553126,-0.4919781,-0.1616979,0.8546137,-0.49344623,-0.16053437,0.8543229,-0.49432892,-0.15954491,0.85395277,-0.4952879,-0.16305816,0.85366,-0.49464798,-0.16618292,0.8541824,-0.49270242,-0.16611432,0.8548548,-0.491558,-0.16637692,0.85501087,-0.4911977,-0.166544,0.85535944,-0.49053374,-0.1668014,0.8553731,-0.4904225,-0.16894692,0.85601825,-0.4885588,-0.16986412,0.8560117,-0.4882522,-0.17081791,0.8567632,-0.48659843,-0.17282519,0.8576269,-0.48436296,-0.17409255,0.8569113,-0.48517507,-0.17534162,0.8563203,-0.48576832,-0.17775147,0.85554385,-0.4862603,-0.17841502,0.85568947,-0.4857609,-0.18303125,0.85465175,-0.48587027,-0.18670338,0.85236436,-0.48848417,-0.18817651,0.85176843,-0.4889583,-0.18936281,0.8521014,-0.487919,-0.18907593,0.8528253,-0.48676416,-0.18704575,0.8553095,-0.48317653,-0.18698305,0.85629,-0.48146117,-0.18631235,0.85693234,-0.4805774,-0.18685105,0.85671836,-0.4807497,-0.1876541,0.856532,-0.4807691,-0.18812212,0.8570576,-0.47964823,-0.1882423,0.85782146,-0.4782334,-0.19147024,0.8569868,-0.47844824,-0.19026104,0.8572511,-0.4784572,-0.18938765,0.85716116,-0.47896463,-0.18929861,0.85661286,-0.4799796,-0.18955538,0.8558191,-0.4812925,-0.19046332,0.855207,-0.48202142,-0.19108427,0.85487247,-0.48236898,-0.19238955,0.85393065,-0.48351708,-0.19348395,0.85368043,-0.4835222,-0.19476475,0.853916,-0.48259112,-0.19714741,0.85489815,-0.47987717,-0.20077613,0.8560654,-0.47627825,-0.20160961,0.85706717,-0.4741196,-0.20203003,0.8583719,-0.4715734,-0.20208937,0.85684055,-0.47432497,-0.2022322,0.855116,-0.4773665,-0.20265949,0.85485923,-0.4776451,-0.20299186,0.854788,-0.4776314,-0.20142151,0.8539226,-0.47983906,-0.20026378,0.85266775,-0.48254755,-0.20019978,0.85192204,-0.48388934,-0.2005943,0.851276,-0.48486194,-0.20145084,0.8503863,-0.48606658,-0.20236239,0.8502127,-0.48599157,-0.2042904,0.8498392,-0.4858382,-0.20230259,0.8496366,-0.4870229,-0.20152956,0.84933984,-0.48786026,-0.20155677,0.84851784,-0.48927733,-0.20234549,0.84707755,-0.49144274,-0.20265554,0.84567094,-0.49373218,-0.20290242,0.84507006,-0.49465865,-0.20327686,0.8446839,-0.49516422,-0.20411403,0.8443416,-0.49540356,-0.20476644,0.84377265,-0.49610326,-0.20517986,0.84363407,-0.4961681,-0.20403023,0.8435201,-0.49683553,-0.20368475,0.84375936,-0.49657094,-0.20329024,0.84384257,-0.49659115,-0.20246054,0.8436546,-0.4972491,-0.20213142,0.84349805,-0.49764836,-0.20084615,0.8421363,-0.50046706,-0.2001807,0.8419129,-0.5011091,-0.19958001,0.841491,-0.50205654,-0.19877277,0.8405578,-0.50393647,-0.19824362,0.83975315,-0.50548404,-0.19797812,0.8390449,-0.5067625,-0.19805634,0.83864546,-0.5073928,-0.19827187,0.83814013,-0.50814307,-0.19860555,0.83760184,-0.50889975,-0.19671129,0.8372171,-0.5102668,-0.19652854,0.8375488,-0.5097927,-0.19600035,0.8373378,-0.51034236,-0.19496495,0.8364781,-0.5121455,-0.19427621,0.8356978,-0.5136788,-0.19040789,0.8344789,-0.5170975,-0.18866771,0.83327854,-0.51966465,-0.18793379,0.83288586,-0.5205594,-0.18694766,0.83209074,-0.52218354,-0.18661422,0.83138674,-0.52342266,-0.18635671,0.8303771,-0.5251143,-0.18624179,0.8296142,-0.52635944,-0.18627267,0.829099,-0.5271597,-0.1865786,0.8286962,-0.5276846,-0.18715946,0.828407,-0.5279329,-0.18746407,0.82745206,-0.5293206,-0.18704227,0.82770276,-0.5290778,-0.18634841,0.8278089,-0.5291565,-0.18538171,0.8277711,-0.5295551,-0.1849759,0.8276162,-0.529939,-0.18239333,0.82817495,-0.52996117,-0.1832337,0.8284643,-0.5292186,-0.18332207,0.8287496,-0.52874106,-0.18302064,0.82897556,-0.5284912,-0.18248793,0.828741,-0.52904296,-0.18010533,0.8288173,-0.52973956,-0.18033883,0.8291786,-0.52909434,-0.1799645,0.8292467,-0.52911496,-0.17602862,0.828131,-0.53217757,-0.17417628,0.8273176,-0.5340489,-0.17258279,0.82628936,-0.536154,-0.17132792,0.8250615,-0.5384425,-0.1694612,0.8226482,-0.54270875,-0.16848363,0.82211494,-0.54382014,-0.16799682,0.821677,-0.5446319,-0.16683686,0.82101834,-0.54598016,-0.1664086,0.8211964,-0.5458431,-0.16579464,0.82108885,-0.5461916,-0.16452487,0.8203697,-0.54765415,-0.16439418,0.82011044,-0.54808164,-0.16452558,0.8197377,-0.5485996,-0.1649194,0.8192517,-0.5492069,-0.16506673,0.8186438,-0.5500684,-0.16496626,0.81791246,-0.5511854,-0.1651435,0.8175386,-0.55168664,-0.16559932,0.81752294,-0.5515733,-0.16614828,0.817782,-0.5510239,-0.166788,0.81831574,-0.5500373,-0.16684768,0.81888795,-0.5491669,-0.16754243,0.8196171,-0.54786617,-0.1691805,0.8186967,-0.5487383,-0.16963503,0.81865114,-0.5486659,-0.17082673,0.8191178,-0.5475986,-0.17117807,0.81953657,-0.5468619,-0.17108062,0.819867,-0.5463969,-0.17017,0.82132864,-0.5444827,-0.1728504,0.8202206,-0.5453081,-0.17253193,0.82008016,-0.54562,-0.17254886,0.81992894,-0.54584193,-0.17290021,0.81976694,-0.545974,-0.17333569,0.8196757,-0.545973,-0.1738542,0.8196547,-0.5458396,-0.17430897,0.8198846,-0.5453491,-0.17502803,0.8205885,-0.54405856,-0.17592695,0.8205442,-0.5438354,-0.17655262,0.8211356,-0.542739,-0.17794736,0.8230487,-0.5393751,-0.17801382,0.8233415,-0.5389062,-0.18231179,0.8245565,-0.53560156,-0.18120255,0.8247055,-0.5357486,-0.18065758,0.8246823,-0.53596824,-0.18037,0.82448316,-0.53637123,-0.1801893,0.82425743,-0.5367788,-0.18010208,0.8237789,-0.5375421,-0.18037257,0.8231146,-0.5384683,-0.18059884,0.82296306,-0.538624,-0.18142043,0.82285166,-0.5385181,-0.18325432,0.823026,-0.53763,-0.18391255,0.82319295,-0.5371495,-0.18445592,0.8235368,-0.5364355,-0.18488318,0.82405764,-0.53548783,-0.18530469,0.82426083,-0.5350293,-0.18662219,0.82396346,-0.5350293,-0.1869597,0.8241228,-0.534666,-0.18765265,0.8246438,-0.5336189,-0.18840152,0.82447696,-0.53361285,-0.18889745,0.8244948,-0.5334099,-0.18913966,0.82469726,-0.5330109,-0.18938345,0.82524973,-0.53206843,-0.18959819,0.8254595,-0.5316664,-0.19067457,0.82571006,-0.53089184,-0.19200553,0.8267168,-0.52884144,-0.19261667,0.82703024,-0.5281286,-0.19307953,0.8270039,-0.52800083,-0.19340014,0.8270834,-0.52775884,-0.19535147,0.82703024,-0.52712315,-0.19605692,0.8255571,-0.5291664,-0.19625029,0.82536906,-0.5293881,-0.19657382,0.8256336,-0.52885526,-0.19675191,0.8260512,-0.5281365,-0.19672598,0.82657486,-0.52732617,-0.19658157,0.8271787,-0.5264324,-0.1972772,0.82749945,-0.52566755,-0.20237876,0.8289098,-0.52148956,-0.2028565,0.8294581,-0.52043104,-0.2036733,0.83066237,-0.5181864,-0.20434895,0.8297441,-0.5193903,-0.20457287,0.82964325,-0.5194632,-0.20476075,0.82977355,-0.5191809,-0.20497036,0.83012396,-0.5185377,-0.20592853,0.83094794,-0.5168356,-0.20574635,0.83102,-0.51679224,-0.20524493,0.8315098,-0.51620334,-0.20486152,0.8317635,-0.515947,-0.20436837,0.83196926,-0.5158107,-0.20354818,0.8321309,-0.5158743,-0.20385657,0.83343774,-0.5136381,-0.20518439,0.8336755,-0.5127227,-0.20564236,0.8338957,-0.51218086,-0.20606916,0.8339855,-0.51186293,-0.20686619,0.833978,-0.51155365,-0.20727257,0.83408284,-0.51121813,-0.20722246,0.83419096,-0.5110619,-0.20671767,0.83430135,-0.5110861,-0.20796983,0.83534384,-0.50887054,-0.20893033,0.835169,-0.50876397,-0.20953144,0.8351137,-0.50860757,-0.20977245,0.8351789,-0.50840116,-0.20999719,0.83555037,-0.50769746,-0.21092238,0.8369159,-0.5050579,-0.21151958,0.83684546,-0.50492483,-0.21207024,0.83687955,-0.5046373,-0.21257448,0.8370181,-0.5041953,-0.21302035,0.83733916,-0.50347334,-0.21380937,0.8381196,-0.5018377,-0.21423015,0.8381726,-0.5015696,-0.21452695,0.8383743,-0.5011055,-0.2152261,0.8388232,-0.50005335,-0.2159913,0.8387652,-0.49982062,-0.21599303,0.8392887,-0.49894038,-0.21663854,0.8395231,-0.49826574,-0.21677604,0.8396689,-0.4979601,-0.21683976,0.8406123,-0.49633807,-0.21665427,0.84095,-0.49584678,-0.21594556,0.84145087,-0.49530584,-0.2155852,0.8416116,-0.4951898,-0.21741976,0.8430483,-0.49193323,-0.21809673,0.8428759,-0.49192888,-0.2183782,0.8428993,-0.4917639,-0.21826845,0.8438129,-0.4902435,-0.21977834,0.8439446,-0.48934138,-0.22002769,0.8440305,-0.48908103,-0.22009239,0.8445767,-0.48810816,-0.22066349,0.84501034,-0.48709872,-0.22077204,0.8452718,-0.4865955,-0.22098082,0.84581053,-0.48556358,-0.22184911,0.84597963,-0.4848726,-0.22251976,0.8462594,-0.4840764,-0.22345217,0.8469534,-0.48243037,-0.22366102,0.8472455,-0.48182026,-0.22379541,0.8481966,-0.48008135,-0.22707333,0.84856254,-0.47789052,-0.22675414,0.8490617,-0.4771548,-0.22795106,0.84940773,-0.47596723,-0.22900847,0.84940284,-0.4754681,-0.22921959,0.84951925,-0.4751583,-0.22883354,0.8502109,-0.47410613,-0.22870758,0.8507081,-0.47327432,-0.22806822,0.8507511,-0.47350553,-0.22793834,0.85085094,-0.4733886,-0.22921614,0.85141414,-0.4717562,-0.22926073,0.851701,-0.47121644,-0.22982651,0.8535881,-0.46751165,-0.23068182,0.85379046,-0.46672016,-0.2311556,0.85404813,-0.46601388,-0.23194872,0.8549556,-0.4639512,-0.23210217,0.8555651,-0.4627494,-0.23209347,0.855887,-0.4621581,-0.23197551,0.8561257,-0.46177498,-0.23171708,0.8563441,-0.46149972,-0.23073418,0.8568072,-0.46113256,-0.22829303,0.85751474,-0.46103233,-0.22704065,0.85777724,-0.46116245,-0.22308661,0.8593184,-0.46022204,-0.22302793,0.8601762,-0.45864528,-0.22268444,0.86041564,-0.4583629,-0.2241429,0.8613963,-0.45580295,-0.22439237,0.86171645,-0.45507446,-0.22446018,0.8620298,-0.45444718,-0.22483438,0.8625003,-0.4533682,-0.22482568,0.86264646,-0.4530944,-0.22610664,0.8635494,-0.45073074,-0.22625828,0.8631064,-0.45150244,-0.2264612,0.8630419,-0.45152408,-0.22739287,0.8631396,-0.4508686,-0.22825375,0.8634759,-0.44978836,-0.22846779,0.86365986,-0.4493263,-0.22821483,0.86422205,-0.4483728,-0.22798087,0.86436695,-0.4482126,-0.22642192,0.8646496,-0.4484575,-0.227024,0.86493295,-0.44760597,-0.22880934,0.8651347,-0.44630504,-0.22941048,0.8653343,-0.445609,-0.2296534,0.86600107,-0.44418627,-0.22959279,0.8663839,-0.44347045,-0.229284,0.86675566,-0.4429035,-0.22872798,0.8671167,-0.44248402,-0.2276891,0.8675701,-0.44213092,-0.22616985,0.8681155,-0.4418401,-0.22557282,0.86856985,-0.441252,-0.22685534,0.86817425,-0.44137302,-0.22746925,0.86808676,-0.44122913,-0.22802436,0.86809856,-0.44091925,-0.22870503,0.8683324,-0.4401055,-0.22952731,0.8689455,-0.43846437,-0.22980316,0.86933196,-0.43755278,-0.22984138,0.86957616,-0.43704724,-0.22919211,0.86995167,-0.43664065,-0.23051529,0.8723602,-0.43110368,-0.23108056,0.87241274,-0.43069458,-0.23123516,0.8725376,-0.43035844,-0.23152477,0.8747391,-0.4257086,-0.23264372,0.8749743,-0.4246137,-0.23329589,0.87534505,-0.4234904,-0.23622929,0.8771482,-0.418099,-0.23698132,0.8768103,-0.418382,-0.23956533,0.8768771,-0.41676733,-0.24044648,0.876973,-0.41605762,-0.24055344,0.87709785,-0.41573232,-0.24342257,0.87879515,-0.41044432,-0.24212907,0.87812734,-0.41263288,-0.24153012,0.87767637,-0.41394123,-0.24129261,0.8772091,-0.41506866,-0.24124621,0.8768419,-0.41587082,-0.24130814,0.8764183,-0.41672692,-0.2407858,0.8762582,-0.41736522,-0.2407095,0.87606347,-0.41781777,-0.2417108,0.8756477,-0.41811118,-0.24543245,0.8745676,-0.41820374,-0.24663082,0.8743212,-0.41801393,-0.24916634,0.87407506,-0.41702393,-0.24937552,0.87360597,-0.41788095,-0.24546342,0.8742132,-0.41892594,-0.24374671,0.8743001,-0.41974607,-0.24045111,0.87449443,-0.42123953,-0.23967092,0.87481135,-0.42102608,-0.23898661,0.87481916,-0.4213987,-0.23730525,0.8738978,-0.42425102,-0.23655844,0.8732727,-0.42595175,-0.23453625,0.8724356,-0.428776,-0.23442249,0.8722652,-0.4291847,-0.2348934,0.8717262,-0.43002144,-0.23595062,0.87081563,-0.43128583,-0.23748627,0.8677883,-0.43651313,-0.2370593,0.8668274,-0.43864915,-0.23686235,0.8659235,-0.44053683,-0.23696607,0.86533636,-0.44163334,-0.23741812,0.8641174,-0.4437722,-0.23813471,0.8635795,-0.4444348,-0.23869574,0.8633955,-0.44449133,-0.24099244,0.8629661,-0.4440857,-0.24148302,0.8629584,-0.4438342,-0.2417572,0.863063,-0.4434814,-0.24325901,0.86418176,-0.4404713,-0.24220152,0.861476,-0.44631547,-0.24094535,0.86129415,-0.44734517,-0.2401117,0.8607984,-0.44874543,-0.23998185,0.8606205,-0.44915593,-0.23992097,0.8602327,-0.4499307,-0.24007317,0.8597195,-0.4508295,-0.24032888,0.859541,-0.4510336,-0.24072576,0.85949355,-0.45091236,-0.24253441,0.85885733,-0.45115533,-0.24347807,0.8588464,-0.45066756,-0.24504694,0.8593672,-0.44882077,-0.24576016,0.8592486,-0.44865775,-0.24629202,0.8592224,-0.4484161,-0.24664104,0.8592896,-0.44809553,-0.24655615,0.8594682,-0.44779953,-0.24717714,0.8596599,-0.44708872,-0.24822986,0.8593528,-0.44709584,-0.24839716,0.85939854,-0.446915,-0.24835667,0.8602249,-0.4453449,-0.24909237,0.8609814,-0.4434682,-0.24912597,0.8614487,-0.4425408,-0.2488176,0.8622008,-0.44124773,-0.24944751,0.8619594,-0.44136375,-0.24977522,0.8619417,-0.44121295,-0.25087073,0.86236566,-0.43976048,-0.2512541,0.86225694,-0.4397548,-0.25175083,0.8622181,-0.43954694,-0.25259432,0.86330783,-0.4369161,-0.2524693,0.8635103,-0.4365881,-0.25190997,0.8641191,-0.43570572,-0.2534902,0.8637294,-0.43556195,-0.25353894,0.8638385,-0.43531713,-0.25317767,0.8651104,-0.43299547,-0.25443757,0.86414015,-0.43419278,-0.25470042,0.8639836,-0.43435022,-0.25478542,0.86401534,-0.4342372,-0.25420842,0.8651018,-0.43240827,-0.2543311,0.8657308,-0.43107522,-0.2542707,0.8660343,-0.4305008,-0.253742,0.8669468,-0.4289734,-0.25512898,0.86614466,-0.42977044,-0.25553524,0.8660105,-0.42979944,-0.25634915,0.8663176,-0.42869455,-0.25699246,0.8660275,-0.42889538,-0.25764304,0.8658506,-0.4288621,-0.25907585,0.8655994,-0.428506,-0.25978968,0.86556906,-0.42813495,-0.2605194,0.86564845,-0.42753056,-0.26093382,0.865764,-0.42704356,-0.26129135,0.86592907,-0.42648995,-0.26170892,0.8658046,-0.4264866,-0.26185083,0.8659304,-0.42614403,-0.2616436,0.8672919,-0.4234942,-0.2619751,0.8673038,-0.42326486,-0.26214677,0.8673683,-0.42302635,-0.26215816,0.86748576,-0.4227784,-0.26120576,0.8683518,-0.4215882,-0.26069024,0.8696174,-0.41929248,-0.26118553,0.869739,-0.41873172,-0.26139817,0.8699416,-0.41817778,-0.26132825,0.87022555,-0.41763026,-0.2608731,0.8705562,-0.41722557,-0.26003495,0.8709325,-0.4169633,-0.25947234,0.87100077,-0.4171712,-0.25852492,0.8706313,-0.41852847,-0.25749287,0.8706132,-0.4192016,-0.25681338,0.8704828,-0.4198888,-0.256954,0.8709744,-0.41878185,-0.25791663,0.8709551,-0.41822982,-0.25805274,0.8710711,-0.4179042,-0.25799647,0.87129366,-0.41747478,-0.2576687,0.8718582,-0.41649753,-0.25739238,0.87206674,-0.4162316,-0.25666243,0.87227684,-0.41624203,-0.2548333,0.87322414,-0.41537884,-0.2554255,0.8731934,-0.4150796,-0.2556061,0.87337774,-0.41458026,-0.2552866,0.87410897,-0.4132339,-0.25517005,0.87487286,-0.41168648,-0.254933,0.87499213,-0.41157988,-0.25455368,0.8749261,-0.41195482,-0.25400636,0.87468,-0.41281435,-0.25470054,0.8753657,-0.41092896,-0.25513387,0.87529314,-0.4108146,-0.2558872,0.8753183,-0.41029215,-0.2561455,0.8755193,-0.4097017,-0.25650695,0.8761921,-0.4080338,-0.25690296,0.8764659,-0.40719575,-0.2569625,0.8747808,-0.41076615,-0.25712743,0.87435347,-0.41157192,-0.25739446,0.8741818,-0.4117697,-0.25858378,0.8736864,-0.41207585,-0.2592205,0.8736482,-0.41175658,-0.26011482,0.873853,-0.4107568,-0.260155,0.8740522,-0.41030735,-0.25999522,0.8744457,-0.40956956,-0.26004925,0.8745767,-0.4092554,-0.2605651,0.87436837,-0.40937242,-0.26137146,0.87419873,-0.40922058,-0.26194257,0.8739251,-0.40943983,-0.26218018,0.8738953,-0.40935144,-0.2623775,0.87398845,-0.409026,-0.26245525,0.87416893,-0.4085901,-0.26383424,0.8745875,-0.4068025,-0.2643717,0.87443167,-0.40678853,-0.26489887,0.87466097,-0.40595168,-0.2681452,0.87557113,-0.4018374,-0.26643476,0.8750721,-0.40405604,-0.2666865,0.8745565,-0.40500528,-0.26746842,0.87374943,-0.40622967,-0.2679369,0.8735255,-0.4064026,-0.2687145,0.8732528,-0.40647522,-0.26994282,0.87301433,-0.4061734,-0.26966307,0.8725539,-0.40734705,-0.26939926,0.8724543,-0.4077346,-0.26936173,0.87231815,-0.40805063,-0.27008054,0.8720759,-0.40809327,-0.27087417,0.87239474,-0.40688398,-0.27234334,0.8722018,-0.4063165,-0.27254516,0.8720033,-0.40660712,-0.2729362,0.8717333,-0.40692365,-0.27649695,0.8705675,-0.40701553,-0.27626568,0.87016803,-0.40802553,-0.27670592,0.87009114,-0.40789118,-0.27897355,0.86984575,-0.40686876,-0.28070953,0.8693964,-0.4066351,-0.28172925,0.86932355,-0.4060852,-0.28203005,0.8696275,-0.40522477,-0.28216907,0.86995715,-0.40441954,-0.28312722,0.87180513,-0.39974338,-0.2832017,0.87108195,-0.40126425,-0.28338337,0.8706443,-0.4020851,-0.28376693,0.87000465,-0.40319756,-0.28457552,0.86893535,-0.40492976,-0.2852708,0.8685888,-0.40518394,-0.28625113,0.8683953,-0.40490714,-0.2869502,0.8681921,-0.40484828,-0.2873676,0.8679792,-0.40500847,-0.2883366,0.8678107,-0.40468082,-0.29273826,0.86657494,-0.40416846,-0.29234985,0.86642474,-0.40477115,-0.29270703,0.86616856,-0.40506133,-0.2939593,0.8661021,-0.40429577,-0.29515198,0.86613786,-0.40334916,-0.30680373,0.86631715,-0.39416507,-0.31037614,0.86576235,-0.392584,-0.3111003,0.8659798,-0.39152983,-0.31143558,0.8661949,-0.39078665,-0.31147477,0.86639416,-0.3903135,-0.3128466,0.86585104,-0.39042148,-0.31279936,0.8651757,-0.39195344,-0.31359512,0.8649218,-0.391878,-0.3181165,0.8638256,-0.3906498,-0.31968808,0.8635997,-0.3898655,-0.32136035,0.8634901,-0.3887317,-0.32258263,0.8636302,-0.38740593,-0.32383862,0.8643245,-0.3848009,-0.3240426,0.86454433,-0.38413477,-0.32536098,0.8660339,-0.3796386,-0.32748717,0.86508816,-0.37996665,-0.32974315,0.864582,-0.37916675,-0.3294116,0.86452246,-0.37959045,-0.32843116,0.8646243,-0.38020745,-0.32834953,0.8644492,-0.38067585,-0.32855627,0.8641174,-0.38125047,-0.32885098,0.8637766,-0.3817682,-0.32848766,0.8637363,-0.38217208,-0.32744944,0.8646954,-0.38089198,-0.3270552,0.86495006,-0.38065252,-0.32550052,0.86564845,-0.38039738,-0.3251925,0.865709,-0.38052294,-0.32509798,0.86561984,-0.38080648,-0.32501876,0.8654427,-0.38127646,-0.32512376,0.8652595,-0.3816025,-0.32535544,0.8649808,-0.38203672,-0.32566398,0.8646984,-0.38241288,-0.3263907,0.8641886,-0.38294542,-0.32760024,0.8623972,-0.38593936,-0.32718217,0.8622138,-0.38670298,-0.32715157,0.86203843,-0.3871196,-0.32751006,0.8618708,-0.3871896,-0.32813454,0.8616642,-0.38712093,-0.32946828,0.86129636,-0.3868065,-0.33190757,0.8605254,-0.3864367,-0.33634588,0.8592896,-0.3853477,-0.3380441,0.8588486,-0.38484445,-0.33952856,0.85865515,-0.38396835,-0.3396254,0.8585328,-0.3841563,-0.33958873,0.8583261,-0.3846503,-0.3398836,0.8582001,-0.38467097,-0.34598014,0.8561861,-0.38372278,-0.34660205,0.85578775,-0.38404986,-0.34768718,0.85523355,-0.38430357,-0.34923643,0.854523,-0.38447928,-0.35030636,0.8540951,-0.38445675,-0.35129553,0.853786,-0.3842407,-0.35170823,0.8534593,-0.38458875,-0.35188296,0.8533798,-0.38460544,-0.35692468,0.85168314,-0.38371944,-0.3589462,0.8511083,-0.3831087,-0.36072686,0.85050327,-0.3827797,-0.36156678,0.85029703,-0.3824453,-0.36171976,0.85030824,-0.38227564,-0.3616747,0.8510676,-0.38062504,-0.36364838,0.8512729,-0.3782781,-0.3638253,0.8513995,-0.37782285,-0.36378613,0.85158217,-0.3774486,-0.36304247,0.8522088,-0.37674966,-0.36221755,0.8526976,-0.37643763,-0.3604286,0.8535712,-0.37617478,-0.359574,0.8537732,-0.37653416,-0.35856533,0.8537114,-0.3776343,-0.3584508,0.85427547,-0.37646574,-0.35819766,0.85446453,-0.37627748,-0.35675138,0.8549335,-0.3765862,-0.35627905,0.8552406,-0.37633607,-0.35574338,0.85544807,-0.37637118,-0.35449457,0.85581774,-0.37670892,-0.35325974,0.8561006,-0.3772258,-0.35268635,0.8561187,-0.37772098,-0.35236144,0.85596627,-0.37836915,-0.35209838,0.8564937,-0.3774193,-0.3522611,0.8565816,-0.37706777,-0.35190263,0.85687,-0.3767471,-0.35097548,0.857477,-0.37623054,-0.3525303,0.857022,-0.37581334,-0.35470432,0.85663575,-0.37464657,-0.35541216,0.85633093,-0.37467265,-0.3560905,0.85592884,-0.37494722,-0.3564297,0.85578287,-0.374958,-0.3570896,0.8556109,-0.37472257,-0.35803714,0.8552459,-0.37465164,-0.35873675,0.855052,-0.37442496,-0.35894644,0.8550944,-0.37412706,-0.35901135,0.8552631,-0.3736788,-0.35884032,0.85554165,-0.3732052,-0.358433,0.8559297,-0.37270653,-0.35808,0.8562081,-0.37240627,-0.35729435,0.8566885,-0.37205586,-0.35712582,0.85716593,-0.37111682,-0.3585644,0.8562058,-0.37194505,-0.35897657,0.8560324,-0.37194678,-0.3599599,0.85624856,-0.37049592,-0.3593471,0.85555977,-0.3726757,-0.35966855,0.8552658,-0.37304023,-0.36306524,0.853342,-0.37415382,-0.3640121,0.85231,-0.37558335,-0.36466256,0.8517287,-0.37627047,-0.3648826,0.8516742,-0.37618044,-0.3666726,0.85183716,-0.37406504,-0.36784193,0.8515085,-0.3736651,-0.36922,0.85079545,-0.3739301,-0.3700579,0.85040647,-0.37398672,-0.37134284,0.8501997,-0.37318218,-0.37154642,0.8503141,-0.37271863,-0.37139326,0.8506175,-0.37217847,-0.3711709,0.8508733,-0.37181553,-0.37073347,0.8511857,-0.3715369,-0.36835334,0.85275143,-0.37031174,-0.3673285,0.8534575,-0.3697027,-0.3663311,0.8541949,-0.3689887,-0.36488748,0.85516286,-0.36817607,-0.3630074,0.85635376,-0.36726546,-0.36080396,0.85795325,-0.36570022,-0.35885653,0.8589804,-0.365205,-0.35920522,0.8590554,-0.3646854,-0.35944828,0.85903054,-0.3645043,-0.3589878,0.85933053,-0.36425093,-0.35785398,0.8599297,-0.36395258,-0.35820395,0.8600167,-0.36340237,-0.35790378,0.8603248,-0.3629685,-0.35764176,0.8608313,-0.36202452,-0.35848027,0.86007404,-0.36299396,-0.3595638,0.8593088,-0.3637338,-0.3619949,0.8578552,-0.36475217,-0.365005,0.85575163,-0.36668858,-0.3658452,0.85533506,-0.36682308,-0.36713588,0.8548411,-0.36668503,-0.36829054,0.8539714,-0.3675525,-0.37139046,0.8522191,-0.36849937,-0.3728444,0.8515871,-0.36849213,-0.37417436,0.8514267,-0.36751345,-0.3758789,0.85080755,-0.36720785,-0.37694103,0.8502989,-0.3672973,-0.37737313,0.85019565,-0.36709252,-0.37737596,0.85062164,-0.3661014,-0.37653047,0.8518671,-0.36407048,-0.37657312,0.8526286,-0.36223915,-0.37661833,0.852347,-0.36285412,-0.37781888,0.85071254,-0.3654327,-0.37853727,0.8499946,-0.3663587,-0.37946093,0.84923315,-0.36716807,-0.38022393,0.8487149,-0.36757702,-0.38194117,0.84798574,-0.36747932,-0.38301697,0.8474591,-0.36757454,-0.38438562,0.8467005,-0.36789396,-0.38463634,0.8466043,-0.36785322,-0.38508812,0.84657437,-0.36744928,-0.38511956,0.84672266,-0.36707446,-0.38766614,0.8468034,-0.36419633,-0.38560492,0.84693754,-0.3660678,-0.3856175,0.8467866,-0.36640355,-0.38595638,0.84649956,-0.36670998,-0.38670188,0.8459619,-0.36716488,-0.387728,0.845514,-0.3671145,-0.391495,0.8440118,-0.36657298,-0.39144915,0.843908,-0.36686072,-0.38935515,0.8446186,-0.36745334,-0.38731015,0.8452158,-0.36824057,-0.3869982,0.84521216,-0.3685767,-0.3870403,0.8450427,-0.36892086,-0.38726535,0.8447231,-0.3694164,-0.38891375,0.8438989,-0.3695684,-0.39189413,0.84185815,-0.3710712,-0.39345962,0.8403033,-0.37293407,-0.39837563,0.8391214,-0.37036756,-0.39908847,0.83905745,-0.36974448,-0.39979416,0.83829206,-0.37071693,-0.40016943,0.8380104,-0.37094885,-0.400729,0.8376726,-0.37110764,-0.40216058,0.836977,-0.3711285,-0.40284243,0.83673024,-0.37094548,-0.40415096,0.83644307,-0.37016883,-0.40547934,0.83532465,-0.37124017,-0.4059153,0.83517563,-0.37109897,-0.4068819,0.83487785,-0.37071025,-0.40739876,0.8344432,-0.3711209,-0.4079835,0.8340772,-0.37130132,-0.40863502,0.8337809,-0.37125036,-0.40984908,0.83312064,-0.37139425,-0.41038942,0.8329198,-0.3712481,-0.41231823,0.83218336,-0.37076205,-0.41309226,0.8316925,-0.37100175,-0.41368595,0.8313886,-0.37102142,-0.41409838,0.8312721,-0.37082237,-0.41623652,0.83105034,-0.36892077,-0.4155253,0.83060783,-0.37071466,-0.41485208,0.8305969,-0.37149227,-0.41627547,0.82835454,-0.37489128,-0.4168778,0.8268908,-0.37744468,-0.41684237,0.82662326,-0.37806925,-0.41708314,0.8263052,-0.37849882,-0.41883004,0.8251091,-0.37917843,-0.41938904,0.82481533,-0.37919977,-0.42065734,0.8244721,-0.3785408,-0.42070588,0.8246611,-0.37807494,-0.42020673,0.8255783,-0.37662557,-0.41949973,0.82644147,-0.37551886,-0.41936445,0.8267465,-0.37499812,-0.4192107,0.8269119,-0.37480542,-0.41866747,0.8283755,-0.37217134,-0.42004982,0.82915574,-0.36886173,-0.42085645,0.8298963,-0.3662677,-0.42106968,0.8294705,-0.36698642,-0.42115524,0.8290132,-0.36792022,-0.42164385,0.8286485,-0.36818224,-0.4277361,0.8246312,-0.37016907,-0.42869106,0.8237258,-0.37107918,-0.42997977,0.8226914,-0.37188208,-0.43036577,0.8224626,-0.37194157,-0.4310821,0.82232296,-0.3714204,-0.43129662,0.82211393,-0.37163413,-0.43035245,0.82158667,-0.37388784,-0.4306436,0.8209458,-0.37495878,-0.43086764,0.8207273,-0.3751797,-0.43235648,0.819764,-0.37557265,-0.43384844,0.8186551,-0.37627035,-0.43594795,0.8172215,-0.37695938,-0.43766326,0.8170535,-0.3753325,-0.43815842,0.8168397,-0.3752201,-0.43799582,0.8174886,-0.3739947,-0.4379564,0.81861055,-0.371579,-0.43772197,0.819411,-0.37008792,-0.4367794,0.8205213,-0.3687392,-0.43588284,0.82212317,-0.36622348,-0.43536347,0.822577,-0.36582202,-0.43447912,0.8232583,-0.36534056,-0.43285775,0.82436746,-0.36476362,-0.43009716,0.8268822,-0.36232895,-0.4113622,0.8348103,-0.3658864,-0.4032223,0.8391284,-0.365069,-0.36189854,0.8595955,-0.36072853,-0.35127938,0.86306643,-0.3629314,-0.35099483,0.8614548,-0.36701268,-0.32781002,0.86596656,-0.37768048,-0.31979024,0.8676193,-0.3807506,-0.22483721,0.9339948,-0.27767217,-0.18444191,0.9407057,-0.28469974,-0.16659437,0.942313,-0.29033163,-0.13587181,0.9456037,-0.2955883,-0.12722582,0.94744253,-0.2935409,-0.12559062,0.94604725,-0.29869992,-0.11680925,0.94408,-0.30833182,-0.11614117,0.9442687,-0.3080063,-0.10197698,0.93598545,-0.33694503,-0.12072024,0.92084247,-0.3707772,-0.12868679,0.9181201,-0.3748269,-0.12670252,0.9164119,-0.3796522,-0.110935494,0.915069,-0.3877397,-0.09786899,0.91440475,-0.39279202,-0.08622285,0.9112682,-0.40268582,-0.097865395,0.90744585,-0.4086128,-0.113006845,0.90280783,-0.41493064,-0.12214828,0.9029591,-0.41200072,-0.12379657,0.9030602,-0.41128668,-0.12871523,0.9022155,-0.41163036,-0.13667417,0.9057465,-0.40117747,-0.13963768,0.90284413,-0.40666175,-0.14525484,0.8974043,-0.41661322,-0.121880755,0.88851047,-0.44237337,-0.12550247,0.8755901,-0.4664666,-0.1358011,0.87436336,-0.46588275,-0.13745934,0.8731112,-0.46774116,-0.13757646,0.871128,-0.47139013,-0.13273132,0.87127155,-0.47251272,-0.12640618,0.8705797,-0.47551286,-0.1582496,0.8609931,-0.48337144,-0.1872511,0.85462874,-0.48430026,-0.20282373,0.85021,-0.48580393,-0.20573926,0.8435622,-0.4960587,-0.20436619,0.8433708,-0.4969508,-0.2013765,0.84254146,-0.4995712,-0.19708048,0.83692104,-0.51060987,-0.18908353,0.8277123,-0.5283368,-0.17041153,0.8236316,-0.5409168,-0.1680048,0.8213344,-0.545146,-0.16632912,0.8194999,-0.54841095,-0.17469989,0.8203649,-0.54450107,-0.18717249,0.82452565,-0.53396994,-0.19382758,0.82740134,-0.52710325,-0.2029769,0.83054423,-0.51864886,-0.2029826,0.8320283,-0.5162625,-0.21469945,0.8387239,-0.50044614,-0.21806088,0.84363997,-0.4906333,-0.22062144,0.845575,-0.48613697,-0.22679566,0.84913826,-0.47699893,-0.2289153,0.8521085,-0.47064734,-0.22607525,0.8578679,-0.46146795,-0.22332147,0.8585625,-0.461517,-0.22420844,0.8628209,-0.453068,-0.23041648,0.87320423,-0.42944458,-0.23348244,0.8758497,-0.4223425,-0.23593171,0.87720305,-0.41815194,-0.24046698,0.87775725,-0.41438848,-0.24291757,0.87407047,-0.42070404,-0.2412569,0.8742405,-0.4213058,-0.24428754,0.8592329,-0.44949126,-0.24828082,0.8598762,-0.44606006,-0.2487306,0.86193955,-0.4418069,-0.25056517,0.86234885,-0.43996766,-0.25275308,0.86456186,-0.43433705,-0.2536379,0.86689883,-0.42913198,-0.2610333,0.8659154,-0.4266757,-0.26152116,0.86708826,-0.42398658,-0.25918514,0.8707604,-0.41785103,-0.25648668,0.870239,-0.42059323,-0.25616756,0.8723598,-0.41637307,-0.25428358,0.87315184,-0.41586736,-0.2632729,0.8746412,-0.40705064,-0.27637622,0.8716515,-0.40477142,-0.27653852,0.8708881,-0.4063008,-0.28985432,0.86768746,-0.40385997,-0.30325314,0.8667752,-0.3959019,-0.31098244,0.8667705,-0.38987026,-0.3273697,0.8636272,-0.38337603,-0.34050897,0.8581555,-0.38421714,-0.35698012,0.8548234,-0.37661934,-0.3521529,0.85603017,-0.37841865,-0.35921782,0.856301,-0.37109452,-0.36241004,0.8537572,-0.3738417,-0.3574496,0.86091465,-0.36201623,-0.36675197,0.85505325,-0.3665745,-0.40650097,0.83509636,-0.3706359,-0.4113235,0.83272874,-0.37064248,-0.4166899,0.8274684,-0.37638497,-0.41846812,0.8274272,-0.37449783,-0.41707113,0.8329679,-0.36361536,-0.41584533,0.8333963,-0.36403748,-0.22783162,0.9321607,-0.28137025,-0.18082738,0.9409826,-0.28609997,-0.16605663,0.94225824,-0.29081714,-0.15311812,0.94353306,-0.293769,-0.13212536,0.9465841,-0.29414517,-0.10078186,0.93464035,-0.34101388,-0.085643716,0.9295262,-0.35867283,-0.10420683,0.9245908,-0.36643246,-0.12245408,0.92064494,-0.37069917,-0.11997829,0.9186788,-0.37634355,-0.12988555,0.9159032,-0.37980396,-0.11381366,0.9141396,-0.3890954,-0.096285224,0.90730035,-0.40931064,-0.099539064,0.905765,-0.41192445,-0.12371098,0.9037242,-0.40985137,-0.13771936,0.90213346,-0.40888697,-0.13830294,0.8945675,-0.42499572,-0.13034351,0.8913742,-0.4341229,-0.12691553,0.8912467,-0.4353985,-0.12140648,0.88698447,-0.44555476,-0.116097465,0.8803068,-0.45997974,-0.123519406,0.8761962,-0.4658575,-0.12610282,0.87556374,-0.4663542,-0.1374064,0.8737975,-0.4664734,-0.15818726,0.8617576,-0.4820276,-0.17171791,0.8572331,-0.48545277,-0.17888281,0.8562156,-0.48466057,-0.18184182,0.85530025,-0.48517525,-0.19239135,0.8569644,-0.47811875,-0.199058,0.8370311,-0.50966156,-0.1881299,0.82724434,-0.52940905,-0.18094274,0.82856214,-0.5298533,-0.18049084,0.8285912,-0.52996194,-0.16776872,0.82110494,-0.54556423,-0.16729067,0.8209882,-0.54588664,-0.16628322,0.8197992,-0.5479774,-0.17254825,0.82060504,-0.54482514,-0.17786643,0.82442194,-0.53730065,-0.19508083,0.82732236,-0.5267648,-0.20348202,0.830818,-0.51801205,-0.20713113,0.83528197,-0.50931394,-0.21045704,0.8368581,-0.5053478,-0.21676373,0.8429149,-0.49245095,-0.2289312,0.852576,-0.46979213,-0.22960293,0.85344017,-0.4678914,-0.22596931,0.86365813,-0.45059133,-0.22652,0.86477375,-0.44816855,-0.22476657,0.8685386,-0.44172466,-0.22990648,0.8719174,-0.43232283,-0.23078336,0.87444735,-0.42670932,-0.2413952,0.8765734,-0.4163502,-0.24208692,0.8740506,-0.42122382,-0.23662226,0.87006724,-0.43242678,-0.2428401,0.86177355,-0.4453931,-0.24603693,0.85976,-0.447525,-0.24608485,0.8598592,-0.44730794,-0.24862762,0.86219007,-0.44137582,-0.25158694,0.864138,-0.4358549,-0.2527721,0.86532277,-0.43280804,-0.26047516,0.86943513,-0.41980386,-0.2567027,0.8709158,-0.41905782,-0.25386417,0.87471676,-0.41282383,-0.25431266,0.87531084,-0.4112858,-0.26540917,0.87527496,-0.40429157,-0.2720723,0.872366,-0.4061455,-0.27651787,0.87140197,-0.4052116,-0.27763987,0.8700769,-0.40728655,-0.29251942,0.8667603,-0.40392935,-0.31265068,0.86606157,-0.39011142,-0.32424247,0.8657935,-0.38114095,-0.3299653,0.8626103,-0.3834403,-0.3277919,0.8626047,-0.3853125,-0.35089323,0.85395277,-0.38423768,-0.3510253,0.85735726,-0.37645686,-0.35649994,0.8575226,-0.37089452,-0.37643898,0.85280573,-0.36196136,-0.3988596,0.8392007,-0.3696664,-0.42422733,0.8271979,-0.36847642,-0.4270351,0.82523,-0.3696438,-0.43731782,0.8197548,-0.36980432,-0.4306046,0.8262889,-0.36307898,-0.37072837,0.85581505,-0.36075062,-0.36148712,0.8597478,-0.360778,-0.2308201,0.93030226,-0.285061,-0.17664857,0.94155866,-0.28681445,-0.12805393,0.947163,-0.29408237,-0.11650025,0.9441036,-0.30837652,-0.10445256,0.94065565,-0.32288787,-0.086625256,0.9308853,-0.35489243,-0.12666105,0.91392595,-0.3856116,-0.10064402,0.91457266,-0.39169836,-0.09985793,0.91434264,-0.39243585,-0.12034579,0.9032471,-0.41189986,-0.13010207,0.9034314,-0.40851575,-0.13912016,0.9018067,-0.4091335,-0.12183992,0.88869226,-0.44201937,-0.11654881,0.8791186,-0.46213293,-0.13847084,0.87290627,-0.4678253,-0.15786453,0.86241317,-0.48095977,-0.17939746,0.8563674,-0.48420182,-0.20540284,0.84323615,-0.49675193,-0.19819446,0.8367237,-0.5105021,-0.1890391,0.8270796,-0.52934253,-0.1825369,0.8279346,-0.53028715,-0.17798917,0.8247522,-0.5367529,-0.2031412,0.83083415,-0.51811993,-0.20985962,0.8363796,-0.50638735,-0.21340661,0.837842,-0.5024723,-0.22427048,0.8629287,-0.452832,-0.22552267,0.8637487,-0.4506414,-0.22477075,0.86859393,-0.44161382,-0.22892323,0.8705973,-0.4354934,-0.23397246,0.8762919,-0.42115247,-0.2405172,0.87809473,-0.41364375,-0.23738778,0.8684106,-0.43532753,-0.25264505,0.86476433,-0.43399668,-0.25675625,0.8764565,-0.40730855,-0.26241437,0.8744357,-0.40804514,-0.26268706,0.87459284,-0.4075327,-0.27146396,0.8724881,-0.40629035,-0.28223315,0.87067276,-0.4028317,-0.2912473,0.86733776,-0.40360904,-0.30040255,0.86687034,-0.39786193,-0.31163773,0.86674714,-0.38939866,-0.32443056,0.86617446,-0.38011387,-0.3295988,0.86306596,-0.38272935,-0.32759586,0.86337876,-0.3837422,-0.3413982,0.85795105,-0.3838844,-0.34503356,0.8566405,-0.3835607,-0.3762279,0.85262454,-0.36260715,-0.3876494,0.8469149,-0.36395484,-0.4254315,0.826452,-0.3687615,-0.4312596,0.8256504,-0.36375338,-0.23380308,0.92841935,-0.28874493,-0.13532092,0.94491655,-0.29802847,-0.11104874,0.9421777,-0.31617922,-0.098048955,0.9333374,-0.34535155,-0.08630505,0.9297137,-0.35802776,-0.12100827,0.91839886,-0.37669694,-0.09185597,0.91286933,-0.397784,-0.112614244,0.90267074,-0.4153355,-0.123211995,0.9033795,-0.41076067,-0.14023696,0.90317875,-0.40571135,-0.1416983,0.8946863,-0.42362487,-0.13938993,0.87255925,-0.4681995,-0.19088839,0.8575042,-0.4777533,-0.20591062,0.8434496,-0.49617898,-0.19888487,0.8366551,-0.51034606,-0.18959479,0.8273961,-0.52864873,-0.18549095,0.8268007,-0.53103083,-0.18450807,0.8268045,-0.5313671,-0.1701782,0.82161385,-0.5440497,-0.17162542,0.82123333,-0.5441696,-0.18211879,0.8247165,-0.5354208,-0.19439222,0.8275095,-0.5267255,-0.2057766,0.8343869,-0.51132625,-0.21012215,0.8366719,-0.5057953,-0.22904515,0.8701168,-0.43638873,-0.23025858,0.8734152,-0.42910022,-0.23564558,0.8771556,-0.4184128,-0.2434071,0.8623864,-0.44389495,-0.2515623,0.8640724,-0.43599918,-0.26053974,0.8691925,-0.42026594,-0.2563939,0.87056,-0.41998506,-0.26592514,0.87569916,-0.40303203,-0.28252327,0.87122136,-0.40143985,-0.29687378,0.8665052,-0.4012912,-0.31076553,0.86697364,-0.3895915,-0.31120375,0.86694264,-0.38931057,-0.3299427,0.8626934,-0.38327262,-0.34254998,0.85758793,-0.3836697,-0.3563054,0.8575993,-0.37090406,-0.3848215,0.8473487,-0.36594063,-0.41833514,0.82761186,-0.37423822,-0.43206352,0.8249656,-0.36435264,-0.388121,0.84668887,-0.3639781,-0.23677948,0.9265126,-0.29242077,-0.10486673,0.9406751,-0.3226971,-0.086587176,0.92993796,-0.3573766,-0.12352229,0.9174745,-0.3781307,-0.14332272,0.89491075,-0.4226031,-0.12171871,0.876862,-0.46507812,-0.188913,0.8579739,-0.47769526,-0.18540335,0.8266545,-0.531289,-0.17103514,0.8215745,-0.54384035,-0.18165201,0.8249064,-0.53528684,-0.20281383,0.832077,-0.51625025,-0.20339595,0.8332672,-0.51409715,-0.20600812,0.8347723,-0.51060337,-0.22511518,0.8635799,-0.45116833,-0.23023425,0.87386334,-0.42819977,-0.24100056,0.878573,-0.41234475,-0.2500757,0.87364954,-0.41737115,-0.25011948,0.87357193,-0.41750723,-0.2435921,0.8628464,-0.4428984,-0.26078334,0.8688316,-0.42086074,-0.25634634,0.870265,-0.42062497,-0.31077006,0.86705047,-0.38941672,-0.37625322,0.85277903,-0.3622174,-0.38521498,0.8473505,-0.36552233,-0.39044943,0.8454478,-0.36437246,-0.23974973,0.9245817,-0.296089,-0.13490279,0.94470465,-0.29888856,-0.12525694,0.9457434,-0.29980022,-0.10042604,0.9144744,-0.39198354,-0.14033331,0.9034318,-0.4051143,-0.122172065,0.8769353,-0.46482086,-0.19915155,0.8367153,-0.5101433,-0.1895276,0.8271304,-0.5290885,-0.18054275,0.8252338,-0.53515744,-0.19414453,0.82748365,-0.5268573,-0.21544348,0.84177357,-0.49497616,-0.24138401,0.87870073,-0.411848,-0.24371767,0.8640273,-0.44052067,-0.25446597,0.87294704,-0.41618574,-0.4182986,0.8278309,-0.37379438,-0.23058055,0.93032974,-0.28516513,-0.24271423,0.9226265,-0.29975012,-0.1895605,0.93988806,-0.28403753,-0.12440412,0.9451843,-0.30191103,-0.099407434,0.9338096,-0.34368277,-0.10003334,0.9084048,-0.40594828,-0.14038347,0.9039477,-0.4039443,-0.13190082,0.89163744,-0.43311068,-0.13890989,0.8717663,-0.4698165,-0.19811223,0.835512,-0.51251465,-0.24355869,0.8641183,-0.44043016,-0.26725098,0.87576663,-0.40200707,-0.28294975,0.8717517,-0.3999855,-0.23207135,0.9293916,-0.28700885,-0.24567191,0.9206476,-0.30340284,-0.18762203,0.93998736,-0.28499427,-0.13419825,0.9445752,-0.29961404,-0.12330516,0.9447208,-0.3038065,-0.1980869,0.83538204,-0.51273626,-0.17951848,0.8254008,-0.5352444,-0.21562234,0.8420757,-0.49438402,-0.3039172,0.8690039,-0.39046964,-0.23356052,0.92844754,-0.28885055,-0.24862315,0.9186448,-0.3070476,-0.09967257,0.9085488,-0.4057148,-0.17007159,0.8650405,-0.4719964,-0.17837536,0.82504267,-0.53617793,-0.22394535,0.8582429,-0.461809,-0.29642603,0.8709127,-0.3919729,-0.23504858,0.92749715,-0.29069087,-0.25156847,0.91661775,-0.31068504,-0.112256266,0.93938416,-0.32396907,-0.13278979,0.9161746,-0.37814143,-0.140032,0.8848523,-0.4443281,-0.13666856,0.8740965,-0.46612978,-0.16998102,0.8650867,-0.4719444,-0.15155795,0.87202966,-0.46539712,-0.1790242,0.825295,-0.5355731,-0.20282574,0.8322972,-0.5158906,-0.21455747,0.84598714,-0.48813003,-0.29597953,0.8710121,-0.3920893,-0.23653476,0.926541,-0.29252887,-0.25450677,0.9145672,-0.31431383,-0.14713892,0.94297177,-0.29858735,-0.17084663,0.94119626,-0.29148063,-0.1942779,0.9393945,-0.28247863,-0.12399324,0.9332067,-0.33726987,-0.13042793,0.9156249,-0.38028887,-0.13706417,0.90575707,-0.40102068,-0.1405347,0.8850998,-0.44367585,-0.14424032,0.89538485,-0.4212846,-0.17649288,0.86528105,-0.4691897,-0.21424492,0.84615314,-0.48797944,-0.32505828,0.8661323,-0.37967345,-0.29630095,0.87099135,-0.39189252,-0.2380194,0.9255788,-0.294365,-0.25743845,0.9124928,-0.31793442,-0.15069737,0.925058,-0.34865168,-0.13679397,0.9352502,-0.32648805,-0.17600158,0.92934966,-0.32454994,-0.14888048,0.937263,-0.3152343,-0.19822894,0.93351924,-0.2987425,-0.13529544,0.91650426,-0.3764507,-0.14096375,0.88551635,-0.44270757,-0.14498729,0.8961811,-0.41933057,-0.18504046,0.8266334,-0.5314483,-0.20947468,0.84315896,-0.49518,-0.21677724,0.8509522,-0.47842237,-0.20141897,0.8351844,-0.5117591,-0.23950285,0.9246103,-0.2961996,-0.2603639,0.9103944,-0.32154733,-0.17668225,0.9293904,-0.32406306,-0.19853647,0.933539,-0.2984765,-0.1510691,0.92507905,-0.34843498,-0.19915025,0.93357855,-0.29794338,-0.14118898,0.8857951,-0.44207767,-0.14536686,0.89671326,-0.41805962,-0.15069695,0.87202543,-0.46568453,-0.21638243,0.8523773,-0.47605845,-0.2092666,0.84413224,-0.49360737,-0.20134245,0.8356825,-0.5109755,-0.2409844,0.923636,-0.29803184,-0.26328212,0.9082726,-0.3251513,-0.15928715,0.92303723,-0.35018542,-0.15653594,0.9237208,-0.34962326,-0.18213046,0.9280701,-0.32482967,-0.20184503,0.932939,-0.2981332,-0.1483332,0.8846795,-0.44197223,-0.21853492,0.8586958,-0.4635559,-0.21109141,0.84846646,-0.4853299,-0.20244832,0.83790994,-0.5068744,-0.24246436,0.92265576,-0.29986218,-0.23046052,0.9303437,-0.28521678,-0.25437704,0.9145825,-0.31437424,-0.26619348,0.9061272,-0.32874683,-0.15993862,0.9228355,-0.3504201,-0.15972136,0.92290276,-0.35034207,-0.13427001,0.9175636,-0.37423065,-0.18256797,0.92794,-0.3249558,-0.2020643,0.93287617,-0.29818135,-0.14829782,0.88504374,-0.44125426,-0.25381857,0.8749322,-0.41239506,-0.24394311,0.9216693,-0.301691,-0.2312059,0.9298754,-0.28613922,-0.2565759,0.91302884,-0.31709173,-0.2690984,0.9039579,-0.33233437,-0.1348461,0.9171195,-0.37511107,-0.16042097,0.9225129,-0.35104853,-0.18292142,0.92773193,-0.32535094,-0.16009933,0.92272806,-0.3506297,-0.20225608,0.9327756,-0.2983657,-0.14870557,0.88504577,-0.441113,-0.25396794,0.8751303,-0.41188255,-0.24541984,0.9206771,-0.3035173,-0.25730786,0.9125081,-0.31799632,-0.23195073,0.9294056,-0.28706104,-0.25877056,0.9114621,-0.319804,-0.27199575,0.9017655,-0.33591262,-0.16084394,0.9220663,-0.35202694,-0.18325932,0.9274441,-0.3259807,-0.16056193,0.9223642,-0.35137475,-0.20245211,0.9326367,-0.29866695,-0.13986199,0.9044969,-0.4028944,-0.17273082,0.8786222,-0.4451821,-0.18716292,0.8686785,-0.45865855,-0.15875466,0.8881988,-0.43116102,-0.24689542,0.9196786,-0.30534217,-0.25950146,0.9109368,-0.3207073,-0.23269548,0.9289342,-0.28798273,-0.2609619,0.9098817,-0.3225122,-0.2748866,0.89954925,-0.33948275,-0.15353468,0.9090078,-0.38746873,-0.16612433,0.91341454,-0.37158656,-0.162647,0.9192308,-0.35855353,-0.17761622,0.9177168,-0.3553145,-0.18799977,0.921914,-0.33871922,-0.20541817,0.92999136,-0.30482697,-0.17011218,0.88219345,-0.43908605,-0.18581146,0.8705377,-0.45567337,-0.1549605,0.8933323,-0.42183483,-0.21629952,0.85627544,-0.46904892,-0.24836902,0.9186744,-0.3071646,-0.2616913,0.9093521,-0.32341367,-0.23343956,0.92846143,-0.2889036,-0.26314902,0.9082883,-0.32521516,-0.2777698,0.8973099,-0.3430435,-0.15402925,0.9085382,-0.38837263,-0.1665806,0.9130215,-0.37234744,-0.15374662,0.9088067,-0.38785616,-0.16627637,0.91328365,-0.37184027,-0.17802316,0.91739714,-0.35593566,-0.1883462,0.92166466,-0.33920482,-0.1778603,0.9175251,-0.35568717,-0.15360536,0.90894073,-0.38759792,-0.20561165,0.92987317,-0.30505696,-0.17777893,0.917589,-0.355563,-0.2498413,0.91766405,-0.3089854,-0.2638773,0.9077542,-0.32611522,-0.23418342,0.9279871,-0.28982422,-0.2653327,0.90668136,-0.32791388,-0.28064626,0.8950469,-0.3465959,-0.17706573,0.8927726,-0.4142521,-0.1931039,0.881607,-0.43067384,-0.21567933,0.88101923,-0.4210552,-0.19615184,0.8869678,-0.41810602,-0.15846284,0.89843285,-0.40952155,-0.20965362,0.86992496,-0.44640335,-0.18965669,0.87613016,-0.44320005,-0.19880003,0.8922115,-0.40550855,-0.22010228,0.89164907,-0.39562216,-0.20104784,0.89733773,-0.39289278,-0.18242425,0.902881,-0.38926497,-0.22292262,0.9018088,-0.37019783,-0.2028953,0.9023456,-0.38027087,-0.1615674,0.9034151,-0.3971613,-0.22414587,0.911493,-0.3448755,-0.20539053,0.91200393,-0.35505438,-0.22378324,0.9206967,-0.31974792,-0.20629211,0.9211814,-0.32995215,-0.22185093,0.92941487,-0.2949071,-0.18618385,0.9125134,-0.36421818,-0.21723141,0.866522,-0.4493886,-0.34934142,0.8562953,-0.38041955,-0.25131175,0.91664785,-0.31080395,-0.26605952,0.9061429,-0.32881215,-0.23492688,0.9275113,-0.2907443,-0.26751208,0.90506136,-0.3306073,-0.28351498,0.89276093,-0.35013875,-0.23285775,0.8921887,-0.38700974,-0.2275466,0.8885231,-0.39843342,-0.23225641,0.8834765,-0.4068492,-0.23258919,0.90058106,-0.36722746,-0.23145406,0.9086505,-0.34753877,-0.2294574,0.9163942,-0.32798013,-0.22660568,0.92380923,-0.30858764,-0.22290684,0.93089306,-0.28939712,-0.25278047,0.91562575,-0.3126204,-0.26823762,0.9045185,-0.33150396,-0.23566982,0.92703396,-0.29166377,-0.26968753,0.9034282,-0.33329585,-0.2863763,0.8904518,-0.35367244,-0.23479633,0.8934775,-0.3828428,-0.23316471,0.9009953,-0.36584374,-0.2341563,0.89304876,-0.3842327,-0.23478238,0.88503546,-0.4019819,-0.23442611,0.8848134,-0.4026781,-0.23401645,0.9016151,-0.3637671,-0.2324462,0.90944546,-0.34478647,-0.23008999,0.91696596,-0.32593256,-0.22988059,0.9167756,-0.32661507,-0.22695366,0.924174,-0.30723685,-0.22304432,0.9310671,-0.28873038,-0.25424758,0.9145977,-0.31443477,-0.27041176,0.9028809,-0.3341909,-0.23641239,0.92655516,-0.29258275,-0.27185905,0.9017818,-0.33597955,-0.28923017,0.8881195,-0.35719693,-0.23432575,0.9018092,-0.36308625,-0.23583043,0.89408153,-0.3807916,-0.23447978,0.90190613,-0.36274588,-0.23548728,0.89388037,-0.38147563,-0.23611744,0.8857658,-0.39958414,-0.2359278,0.8856616,-0.399927,-0.2347867,0.90209997,-0.36206478,-0.23298946,0.9098184,-0.3434332,-0.2304431,0.91723436,-0.32492626,-0.23032568,0.91714495,-0.32526168,-0.22715321,0.9243453,-0.3065732,-0.2231264,0.93114895,-0.28840292,-0.25571308,0.9135636,-0.31624722,-0.27258202,0.90123004,-0.33687305,-0.23715469,0.9260748,-0.29350144,-0.2740266,0.90012217,-0.33865833,-0.29207653,0.88576406,-0.36071217,-0.2395657,0.895163,-0.37588754,-0.23833044,0.8948031,-0.37752616,-0.24080656,0.8870729,-0.393845,-0.23510337,0.9104869,-0.34020585,-0.22802451,0.9246529,-0.30499488,-0.25717714,0.9125235,-0.31805786,-0.27474838,0.89956594,-0.33955035,-0.23789662,0.9255929,-0.29441965,-0.27619055,0.8984491,-0.34133264,-0.29491574,0.88338524,-0.3642186,-0.24041589,0.89524907,-0.37513903,-0.24013276,0.8952204,-0.37538877,-0.24264704,0.8788236,-0.41084248,-0.241855,0.8871769,-0.39296734,-0.23560596,0.9105401,-0.33971536,-0.22824413,0.9246774,-0.3047562,-0.25863925,0.9114776,-0.31986606,-0.27691078,0.8978886,-0.34222278,-0.23863804,0.9251096,-0.29533723,-0.27835003,0.8967632,-0.34400147,-0.29774675,0.8809839,-0.36771485,-0.24095038,0.8952291,-0.37484363,-0.24077223,0.8952358,-0.3749421,-0.242506,0.8871528,-0.39262038,-0.23593108,0.9105278,-0.3395227,-0.22839123,0.92467177,-0.30466306,-0.26009995,0.9104256,-0.32167256,-0.27906904,0.8961982,-0.3448901,-0.23937926,0.9246247,-0.29625455,-0.28050578,0.8950639,-0.3466657,-0.30057055,0.8785592,-0.37120223,-0.2462751,0.9092189,-0.3356629,-0.25208864,0.89381886,-0.3708627,-0.25764003,0.8931104,-0.36874852,-0.23317635,0.92406994,-0.3028589,-0.24828075,0.88642377,-0.39065272,-0.26155868,0.90936786,-0.3234766,-0.2812234,0.8944946,-0.34755254,-0.24011995,0.9241383,-0.29717124,-0.28265712,0.8933518,-0.34932443,-0.3033861,0.876112,-0.3746794,-0.26301578,0.9083042,-0.32527864,-0.28337333,0.89277816,-0.35020956,-0.24086021,0.9236505,-0.29808736,-0.28480437,0.89162654,-0.35197815,-0.3061937,0.873642,-0.3781468,-0.29161295,0.87187356,-0.3934442,-0.26447138,0.90723443,-0.32707882,-0.28551927,0.8910485,-0.35286164,-0.24160026,0.9231611,-0.29900324,-0.23002787,0.9305841,-0.2847813,-0.25308296,0.91537684,-0.3131042,-0.28694773,0.889888,-0.354627,-0.2757611,0.8987371,-0.34092158,-0.29802677,0.88069075,-0.3681899,-0.30899385,0.87114894,-0.38160494,-0.2896046,0.8722233,-0.39415172,-0.26592496,0.906159,-0.32887653,-0.28766116,0.8893057,-0.35550871,-0.24233977,0.92267025,-0.29991847,-0.23040055,0.93035054,-0.2852427,-0.25418293,0.91460526,-0.31446505,-0.28908652,0.88813674,-0.3572703,-0.27756116,0.8973349,-0.343147,-0.30049622,0.87856835,-0.3712407,-0.27893466,0.8820277,-0.37976652,-0.26815346,0.89146435,-0.36521924,-0.26742783,0.8989381,-0.34697646,-0.26809594,0.8837398,-0.38357335,-0.25726533,0.9005293,-0.35051596,-0.16481955,0.81730103,-0.55213547,-0.16321301,0.8189589,-0.55015254,-0.16274193,0.8192952,-0.5497913,-0.1622422,0.81953067,-0.54958797,-0.16166753,0.81966054,-0.54956365,-0.15975851,0.81964296,-0.5501479,-0.15921378,0.81954336,-0.550454,-0.15687777,0.8187026,-0.5523725,-0.15585071,0.81815016,-0.5534807,-0.1543447,0.818282,-0.5537078,-0.15384412,0.8182183,-0.55394113,-0.15344827,0.8179576,-0.5544358,-0.15245083,0.8160568,-0.5575034,-0.1521191,0.8157636,-0.55802286,-0.15099692,0.81520677,-0.5591403,-0.15098776,0.8148038,-0.5597298,-0.15107125,0.81456906,-0.5600489,-0.15175006,0.81372386,-0.56109303,-0.15232565,0.81329465,-0.56155914,-0.15314946,0.81317663,-0.56150603,-0.15465981,0.81314486,-0.5611379,-0.15581913,0.81337845,-0.56047827,-0.1563274,0.8135866,-0.5600344,-0.15675044,0.8139373,-0.5594063,-0.15887716,0.81534,-0.55675733,-0.16361667,0.81538737,-0.55531347,-0.16407093,0.8155151,-0.5549917,-0.1653465,0.8164974,-0.5531659,-0.16827458,0.81582475,-0.5532754,-0.16814575,0.8159972,-0.5530602,-0.16754994,0.8163724,-0.55268717,-0.16694686,0.8166189,-0.5525055,-0.1575008,0.8148379,-0.55788237,-0.16603076,0.8167984,-0.5525162,-0.16535686,0.81697583,-0.55245596,-0.15799439,0.81515837,-0.5572742,-0.4121653,0.82428056,-0.3881769,-0.41172257,0.82455844,-0.3880566,-0.41128787,0.8247098,-0.3881959,-0.41011894,0.82439494,-0.39009672,-0.40953335,0.82451403,-0.39046004,-0.40927157,0.8240957,-0.3916159,-0.41083845,0.8232685,-0.39171523,-0.41223103,0.82183874,-0.39325148,-0.41243738,0.8223153,-0.39203703,-0.41234335,0.8227563,-0.39120972,-0.41239446,0.82290494,-0.39084303,-0.41219774,0.823312,-0.39019278,-0.4120725,0.8234479,-0.39003825,-0.41236168,0.8241049,-0.38834125,-0.41093114,0.82434666,-0.3893432,-0.42978737,0.8199504,-0.37810597,-0.4279247,0.8212819,-0.377328,-0.42668217,0.82177365,-0.37766436,-0.42631936,0.8217873,-0.37804428,-0.4263978,0.82163477,-0.37828726,-0.42691624,0.82115746,-0.37873867,-0.42774045,0.82052517,-0.37917876,-0.4279813,0.8200592,-0.37991443,-0.42869627,0.8194091,-0.3805106,-0.43007612,0.81911683,-0.3795815,-0.43061814,0.81845635,-0.38039094,-0.43091455,0.81824327,-0.38051364,-0.43133786,0.81809235,-0.38035843,-0.43191653,0.81802666,-0.37984267,-0.43239033,0.8181874,-0.37895635,-0.43186307,0.81864625,-0.37856647,-0.42879865,0.8196371,-0.37990358,-0.42932683,0.8195048,-0.37959245,-0.41365197,0.8301035,-0.37392536,-0.4124969,0.8314137,-0.37228692,-0.41004845,0.8328047,-0.37188253,-0.4082573,0.8337653,-0.37170058,-0.40772495,0.83387405,-0.37204096,-0.40865785,0.83229536,-0.3745441,-0.40856025,0.83218807,-0.37488863,-0.4090512,0.8313886,-0.37612504,-0.40874103,0.83121383,-0.37684786,-0.40885553,0.8309669,-0.37726805,-0.40963176,0.8303049,-0.37788293,-0.41039208,0.8297998,-0.37816757,-0.41089314,0.8296851,-0.37787494,-0.4120003,0.82958704,-0.3768834,-0.41259074,0.8293191,-0.37682715,-0.4130219,0.8288378,-0.3774133,-0.4133421,0.8286294,-0.3775204,-0.4137895,0.828449,-0.37742612,-0.4144353,0.8283478,-0.37693933,-0.41494,0.828575,-0.37588325,-0.41530055,0.8284834,-0.375687,-0.41468894,0.82857835,-0.3761529,-0.42869103,0.8229311,-0.37283826,-0.42772514,0.824019,-0.37154263,-0.42695987,0.824798,-0.3706934,-0.4258497,0.8257985,-0.36974165,-0.425012,0.82637,-0.36942858,-0.42281613,0.8276358,-0.36911452,-0.42106745,0.82853925,-0.36908665,-0.4207849,0.8286017,-0.36926854,-0.41982028,0.8273913,-0.373061,-0.42232528,0.82497096,-0.3755852,-0.42247623,0.8241566,-0.37719995,-0.4228353,0.82329744,-0.3786709,-0.4234784,0.8227267,-0.37919226,-0.42513362,0.8213792,-0.38026,-0.42606744,0.8208086,-0.38044682,-0.4257632,0.82133204,-0.37965694,-0.42544508,0.82213336,-0.3782767,-0.4257802,0.8225518,-0.37698773,-0.42574248,0.8228735,-0.3763277,-0.42613956,0.8228231,-0.37598827,-0.42651272,0.82230604,-0.3766958,-0.42714632,0.82190424,-0.3768546,-0.4276087,0.8218043,-0.37654823,-0.4279117,0.8218309,-0.37614554,-0.4287942,0.8213461,-0.37619954,-0.4294249,0.82121193,-0.37577286,-0.42945984,0.821814,-0.37441427,-0.42553937,0.8232235,-0.37579173,-0.39667183,0.8384059,-0.37380078,-0.39590418,0.838704,-0.37394592,-0.3930403,0.83926743,-0.37569875,-0.39193925,0.839323,-0.37672347,-0.39157102,0.83908343,-0.3776389,-0.39181545,0.8387615,-0.37810025,-0.39267334,0.83835757,-0.37810612,-0.39602226,0.8367405,-0.37819532,-0.39689812,0.8359032,-0.37912747,-0.39829528,0.83481216,-0.3800651,-0.39919296,0.83404756,-0.38080132,-0.3996571,0.83373195,-0.38100556,-0.40005687,0.8335399,-0.38100618,-0.40097517,0.8334208,-0.38030082,-0.40141386,0.8336341,-0.37936953,-0.40263677,0.8335446,-0.3782684,-0.40274748,0.83363503,-0.37795123,-0.4026719,0.83383924,-0.3775811,-0.4024093,0.8341576,-0.37715766,-0.40200165,0.83452964,-0.3767691,-0.40144992,0.8349548,-0.37641525,-0.40094838,0.8352783,-0.37623215,-0.4001558,0.8357044,-0.37612963,-0.39968696,0.8360534,-0.37585247,-0.39858848,0.83663267,-0.37573,-0.39891264,0.83672464,-0.37518078,-0.40084207,0.8356468,-0.37552634,-0.40214625,0.8350472,-0.37546587,-0.40231642,0.83507574,-0.3752199,-0.40225017,0.8353017,-0.3747878,-0.40204155,0.8355874,-0.37437463,-0.40169063,0.83593273,-0.37398013,-0.40088758,0.8365977,-0.37335435,-0.40024495,0.837246,-0.37258965,-0.3999027,0.8375306,-0.3723175,-0.3990928,0.8380085,-0.3721111,-0.3981396,0.8384259,-0.37219203,-0.39701384,0.8387035,-0.3727686,-0.3965581,0.8387179,-0.37322104,-0.39374557,0.8379508,-0.3778926,-0.39468127,0.83749616,-0.37792444,-0.39799222,0.83705163,-0.37542877,-0.39809245,0.8369411,-0.37556887,-0.421532,0.81809384,-0.3911946,-0.4198287,0.8191779,-0.39075747,-0.41926372,0.8194823,-0.39072588,-0.418359,0.82025766,-0.39006808,-0.4172912,0.82081246,-0.39004478,-0.41658756,0.82128584,-0.38980043,-0.4140607,0.8223996,-0.3901444,-0.41338602,0.8221819,-0.391317,-0.4136695,0.82174987,-0.39192438,-0.41443175,0.8212557,-0.39215484,-0.41533116,0.8210047,-0.39172858,-0.41594264,0.8209015,-0.39129582,-0.41720665,0.8199968,-0.39184678,-0.41896337,0.8188498,-0.39237055,-0.4194649,0.8186453,-0.3922615,-0.41979328,0.8183638,-0.39249754,-0.42094257,0.81769615,-0.392658,-0.4227229,0.8167689,-0.39267534,-0.4238461,0.81622964,-0.3925858,-0.42480186,0.815978,-0.39207563,-0.424561,0.81640196,-0.39145347,-0.42445,0.8167035,-0.39094448,-0.4236535,0.8175519,-0.39003408,-0.42322212,0.81807375,-0.38940775,-0.4228532,0.81822073,-0.3894996,-0.42237562,0.8183408,-0.38976562,-0.42181394,0.8184113,-0.39022562,-0.42191088,0.8180536,-0.39087015,-0.42184052,0.81795853,-0.39114502,-0.27336028,0.86968595,-0.41099936,-0.2729695,0.8699227,-0.410758,-0.27151713,0.8701886,-0.41115716,-0.2712963,0.870079,-0.4115348,-0.27112755,0.86977595,-0.41228583,-0.27109596,0.8695685,-0.41274393,-0.27120116,0.869457,-0.4129097,-0.27163538,0.8691558,-0.41325825,-0.27207908,0.8689396,-0.41342112,-0.27282774,0.8684038,-0.41405296,-0.27303755,0.8683586,-0.41400948,-0.27383435,0.868848,-0.41245344,-0.27503046,0.86921906,-0.41087282,-0.27535444,0.86943054,-0.41020784,-0.27538303,0.86959124,-0.4098478,-0.27511767,0.8697011,-0.409793,-0.27468127,0.86974275,-0.40999728,-0.26771247,0.8642645,-0.42588374,-0.268417,0.8643909,-0.42518306,-0.2687673,0.86455154,-0.4246348,-0.2689862,0.8648499,-0.423888,-0.26942763,0.86486703,-0.4235726,-0.26954624,0.86506546,-0.42309168,-0.26935884,0.86567837,-0.4219559,-0.26960188,0.8657632,-0.42162654,-0.26963007,0.86594826,-0.42122823,-0.26936993,0.8666817,-0.41988415,-0.27031946,0.8682364,-0.41604435,-0.27024373,0.86853516,-0.41546956,-0.26943597,0.8689101,-0.41521028,-0.26845574,0.8691765,-0.4152875,-0.26805434,0.8691348,-0.41563398,-0.26826307,0.8687294,-0.41634613,-0.26811224,0.8668708,-0.42029843,-0.26756757,0.86634475,-0.4217278,-0.26730222,0.86562026,-0.42338052,-0.26712725,0.86553407,-0.42366707,-0.26712114,0.8651685,-0.4244169,-0.2672813,0.8645237,-0.4256283,-0.26876563,0.8647451,-0.42424172,-0.26934004,0.86544615,-0.4224439,-0.26935604,0.8664784,-0.4203124,-0.26833847,0.86763835,-0.41856676,-0.2640441,0.8697028,-0.41701052,-0.26383317,0.8699298,-0.41667035,-0.26328042,0.8702818,-0.41628474,-0.26321307,0.87024236,-0.4164098,-0.26328292,0.8699033,-0.41707343,-0.26303428,0.8698823,-0.41727418,-0.26282728,0.8700639,-0.41702595,-0.2627655,0.8700105,-0.4171762,-0.26316747,0.8692473,-0.41851166,-0.26329917,0.8690745,-0.4187876,-0.26344356,0.8688168,-0.41923124,-0.2633534,0.8686265,-0.41968212,-0.26406187,0.86802363,-0.42048335,-0.26453942,0.86803126,-0.42016733,-0.26464438,0.86778915,-0.42060113,-0.26482925,0.8676366,-0.4207994,-0.2650931,0.8675739,-0.42076257,-0.2651987,0.8676807,-0.4204757,-0.26514512,0.8679568,-0.4199393,-0.26488242,0.86839575,-0.419197,-0.26461634,0.869085,-0.41793475,-0.26402068,0.86948526,-0.41747874,-0.2631863,0.8698289,-0.41728964,-0.25796705,0.8730746,-0.4137557,-0.25881463,0.8731448,-0.41307756,-0.25832704,0.87356323,-0.41249776,-0.25797346,0.87377346,-0.41227376,-0.25725207,0.8739768,-0.41229337,-0.25685647,0.87390894,-0.41268378,-0.25704214,0.8737283,-0.41295066,-0.25727502,0.8732993,-0.41371235,-0.25744584,0.8731826,-0.41385236,-0.24637088,0.8398554,-0.4836779,-0.24696304,0.83989704,-0.48330346,-0.24710955,0.83999646,-0.48305568,-0.2470194,0.8401166,-0.4828928,-0.24669205,0.8402576,-0.48281488,-0.24362326,0.8404253,-0.48407954,-0.24338834,0.8399224,-0.48506945,-0.24374235,0.8391636,-0.4862038,-0.24475275,0.8386747,-0.48653966,-0.24507643,0.8389424,-0.4859147,-0.24531038,0.8395624,-0.48472443,-0.24551065,0.8395495,-0.48464543,-0.24128425,0.852445,-0.4638096,-0.24147855,0.8525034,-0.46360114,-0.24184768,0.8530126,-0.4624707,-0.24188717,0.8532856,-0.46194613,-0.24176426,0.853505,-0.46160504,-0.24156368,0.8536515,-0.46143913,-0.2412841,0.853727,-0.46144584,-0.24074495,0.853719,-0.46174204,-0.23995934,0.85324514,-0.46302503,-0.23987195,0.8530202,-0.4634846,-0.24048258,0.8527243,-0.46371257,-0.23954405,0.8464011,-0.47562993,-0.23959145,0.84665877,-0.4751472,-0.23886393,0.84710246,-0.47472256,-0.2381606,0.84742606,-0.47449824,-0.23679692,0.84778017,-0.47454816,-0.23657458,0.84763867,-0.47491178,-0.23669071,0.8475102,-0.47508305,-0.23733713,0.84720886,-0.47529805,-0.2385984,0.8467689,-0.47545052,-0.23927744,0.8464673,-0.47564635,-0.23221786,0.826978,-0.5120373,-0.23237619,0.8272884,-0.5114638,-0.2320037,0.82792985,-0.5105942,-0.23171483,0.8282667,-0.510179,-0.23151116,0.82829815,-0.51022035,-0.23134081,0.82818836,-0.51047575,-0.23079464,0.8273726,-0.5120433,-0.23108497,0.8271021,-0.5123493,-0.23152721,0.82700056,-0.5123136,-0.23597345,0.8330386,-0.5003631,-0.23642375,0.83326674,-0.49977028,-0.23738347,0.8340922,-0.49793497,-0.23763444,0.8345902,-0.49697998,-0.23731698,0.83483046,-0.49672803,-0.23683271,0.834853,-0.4969212,-0.23615594,0.8344761,-0.49787545,-0.23560569,0.8339065,-0.4990891,-0.23552282,0.83360773,-0.49962708,-0.23557511,0.8333063,-0.5001049,-0.23572491,0.8331169,-0.5003499,-0.23963837,0.8340081,-0.496995,-0.24005091,0.83402926,-0.49676025,-0.24046761,0.8341707,-0.49632096,-0.24066977,0.8343084,-0.49599153,-0.24065731,0.83444226,-0.4957723,-0.24054836,0.83467144,-0.4954393,-0.24034242,0.834876,-0.49519455,-0.23938604,0.8349318,-0.49556354,-0.23871416,0.8345653,-0.49650413,-0.2388276,0.8342614,-0.49695998,-0.18822633,0.822291,-0.53703666,-0.18818808,0.822734,-0.5363711,-0.18803881,0.82293206,-0.5361195,-0.18772912,0.8231199,-0.53593975,-0.1874347,0.82318234,-0.5359469,-0.18692574,0.82296884,-0.5364523,-0.18667826,0.8224956,-0.53726363,-0.18672706,0.82225657,-0.53761244,-0.18757135,0.8208899,-0.53940415,-0.18799324,0.82060313,-0.53969353,-0.18828908,0.8208621,-0.53919625,-0.18871795,0.82092637,-0.5389485,-0.1896784,0.82074094,-0.53889376,-0.19069748,0.8209984,-0.53814137,-0.1906832,0.8211234,-0.53795564,-0.19005644,0.8214798,-0.53763324,-0.18921405,0.82221967,-0.53679866,-0.18923482,0.8227732,-0.53594255,-0.18914889,0.82294565,-0.53570807,-0.18896268,0.8229209,-0.5358117,-0.18862437,0.82236177,-0.5367886,-0.18837127,0.82228565,-0.53699404,-0.1748608,0.81757104,-0.54863584,-0.17506826,0.81761765,-0.54850024,-0.17522556,0.81782025,-0.5481478,-0.1753144,0.818471,-0.5471472,-0.1751711,0.81869864,-0.5468525,-0.17479564,0.8189868,-0.54654104,-0.17452125,0.8189804,-0.5466383,-0.17340408,0.8184661,-0.54776293,-0.17373118,0.8181085,-0.54819334,-0.17406923,0.8178786,-0.5484291,-0.17376657,0.81289285,-0.55588704,-0.17451485,0.81311464,-0.555328,-0.17380357,0.81357425,-0.5548777,-0.17337541,0.8137308,-0.5547821,-0.17154239,0.81406003,-0.5548688,-0.17183848,0.8135514,-0.5555228,-0.17277789,0.81312406,-0.55585706,-0.19627164,0.8202201,-0.53732336,-0.19673504,0.8204389,-0.53681964,-0.1968335,0.8205977,-0.5365407,-0.19678503,0.8209736,-0.53598326,-0.19604284,0.8213612,-0.5356612,-0.19608846,0.82178193,-0.5349989,-0.19588965,0.82187563,-0.5349277,-0.1956074,0.8218213,-0.53511447,-0.19537844,0.8211268,-0.536263,-0.19486924,0.8210748,-0.536528,-0.19456096,0.8204901,-0.5375332,-0.1943318,0.82035315,-0.5378251,-0.19395792,0.82038194,-0.5379161,-0.19446425,0.8197211,-0.5387402,-0.19458443,0.8192566,-0.5394029,-0.19441101,0.8183775,-0.5407982,-0.1948613,0.818568,-0.54034764,-0.1958516,0.81982404,-0.5380806,-0.19622897,0.81994164,-0.5377638,-0.1945428,0.81953555,-0.538994,-0.19559607,0.81959707,-0.5385191,-0.14353062,0.80974114,-0.5689624,-0.14452346,0.8098482,-0.56855863,-0.14490439,0.81004065,-0.56818736,-0.14472178,0.81024545,-0.5679418,-0.1440129,0.8105745,-0.5676524,-0.1425509,0.8111351,-0.5672205,-0.14180891,0.8111764,-0.56734735,-0.14113519,0.81097454,-0.56780374,-0.14074972,0.81074864,-0.5682219,-0.1406531,0.81050014,-0.5686003,-0.14078748,0.8101845,-0.5690167,-0.14144932,0.8095741,-0.5697208,-0.14167482,0.8095006,-0.5697693,-0.14266261,0.80962366,-0.5693478,-0.14292617,0.8095211,-0.5694275,-0.14321561,0.8095606,-0.5692986,-0.14567448,0.8103398,-0.5675635,-0.14608063,0.81041723,-0.56734854,-0.14684999,0.81086886,-0.566504,-0.14738351,0.8110314,-0.5661326,-0.14700897,0.81114554,-0.5660665,-0.14650571,0.81128705,-0.56599414,-0.14586635,0.81181735,-0.5653986,-0.14566252,0.8119258,-0.5652954,-0.14529148,0.8118661,-0.5654766,-0.14475048,0.8116078,-0.565986,-0.14532813,0.8108958,-0.5668578,-0.14553347,0.81044614,-0.5674478,-0.16987866,0.85319626,-0.49315044,-0.17043194,0.8533425,-0.49270633,-0.17110974,0.855321,-0.489027,-0.17068288,0.85526663,-0.48927122,-0.1690799,0.8547889,-0.49066073,-0.16855238,0.8541984,-0.49186912,-0.16816434,0.85417044,-0.4920504,-0.16916908,0.85327,-0.49326676,-0.061192986,0.8704043,-0.48851994,-0.06046064,0.8712724,-0.4870616,-0.059479196,0.8709421,-0.48777252,-0.059392232,0.8702973,-0.48893267,-0.060435507,0.8700357,-0.4892702,-0.06345036,0.8688809,-0.49093792,-0.065489426,0.8689003,-0.4906357,-0.06696836,0.8686239,-0.4909254,-0.0664882,0.8690087,-0.49030927,-0.06543683,0.86948186,-0.4896114,-0.06426581,0.86942375,-0.4898696,-0.06229137,0.8699891,-0.48912045,-0.09176432,0.8399682,-0.53482026,-0.09261174,0.84041464,-0.53397214,-0.09287961,0.8409615,-0.5330638,-0.09045728,0.84059525,-0.53405726,-0.09049958,0.8404585,-0.5342652,-0.090843976,0.8401333,-0.53471804,-0.10800174,0.7966051,-0.5947738,-0.10806951,0.7970294,-0.5941928,-0.10782385,0.7972337,-0.5939634,-0.10732686,0.7974116,-0.59381443,-0.106645696,0.7974091,-0.5939406,-0.1050453,0.797068,-0.5946832,-0.10500013,0.7968446,-0.5949905,-0.105174944,0.79659325,-0.5952961,-0.106228225,0.79667515,-0.5949994,-0.10788641,0.796449,-0.5950038,-0.09825071,0.7943401,-0.5994753,-0.098700434,0.7943416,-0.59939945,-0.09903194,0.79451656,-0.5991128,-0.09924388,0.7948642,-0.59861636,-0.09920778,0.79513043,-0.5982687,-0.09892342,0.7953154,-0.59806985,-0.09812253,0.79544765,-0.5980259,-0.09713112,0.79474574,-0.59912,-0.09682332,0.7944223,-0.5995985,-0.09702499,0.7940065,-0.60011643,-0.09724694,0.79388165,-0.6002457,-0.09784624,0.79421836,-0.5997027,-0.07948261,0.79076934,-0.6069319,-0.08024309,0.7909274,-0.60662585,-0.081737414,0.7915392,-0.6056275,-0.08092355,0.7920014,-0.6051323,-0.07997406,0.7921622,-0.60504806,-0.0792619,0.79179746,-0.6056189,-0.07890496,0.79149705,-0.6060581,-0.07860034,0.79093367,-0.60683274,-0.09910651,0.83499324,-0.5412617,-0.09781422,0.8351845,-0.54120165,-0.097781025,0.8349243,-0.541609,-0.09920646,0.8343258,-0.5422716,-0.09964803,0.8342943,-0.5422391,-0.10057565,0.8347906,-0.5413032,-0.100405164,0.8350181,-0.54098386,-0.09976585,0.83511794,-0.54094803,-0.039430745,0.78513646,-0.6180663,-0.040057488,0.7857704,-0.61721975,-0.040117744,0.7858874,-0.61706686,-0.03900804,0.78651625,-0.61633646,-0.03864759,0.78629464,-0.6166418,-0.038906828,0.78542346,-0.61773473,-0.04271327,0.78803694,-0.6141444,-0.043183297,0.7883218,-0.6137458,-0.043026444,0.7885419,-0.613474,-0.042533517,0.78889453,-0.61305493,-0.042022716,0.78908354,-0.61284685,-0.041185945,0.78907776,-0.6129111,-0.04091689,0.78861266,-0.6135274,-0.04101569,0.7883312,-0.6138825,-0.04141078,0.78805685,-0.61420804,-0.042488903,0.7877205,-0.6145658,-0.030521993,0.7848165,-0.6189761,-0.03082434,0.78495747,-0.61878234,-0.03090388,0.7859317,-0.61754054,-0.031031966,0.786243,-0.61713773,-0.031461123,0.78657466,-0.6166932,-0.031613868,0.7869555,-0.6161993,-0.031089578,0.7872446,-0.6158566,-0.030858494,0.78725564,-0.6158541,-0.030497015,0.7870365,-0.61615217,-0.0300763,0.786302,-0.6171099,-0.028771915,0.7856001,-0.61806524,-0.025210876,0.7850055,-0.6189756,-0.025194189,0.78478795,-0.6192521,-0.025373574,0.7845228,-0.6195807,-0.026199292,0.7847135,-0.61930466,-0.028302453,0.7848286,-0.61906624,-0.029957438,0.78470665,-0.619143,-0.027307548,0.7847901,-0.61915976,-0.029588422,0.7859101,-0.61763245,0.016025223,0.78692555,-0.6168398,0.015333885,0.7871101,-0.6166219,0.014978914,0.78750575,-0.6161253,0.015365361,0.7877693,-0.6157787,0.016017385,0.78795356,-0.6155263,0.016396476,0.78766376,-0.6158871,0.016376307,0.7873928,-0.61623406,0.007864914,0.7812178,-0.6242089,0.0059752236,0.7812221,-0.62422454,0.0063638943,0.78153,-0.62383515,0.00889596,0.7822812,-0.62286186,0.0099427495,0.78290886,-0.622057,0.0118335895,0.78386223,-0.62082195,0.014159383,0.7842997,-0.62022054,0.014642085,0.7841691,-0.62037444,0.013585942,0.7835494,-0.62118095,0.011660622,0.7829889,-0.62192637,0.007680091,0.7817474,-0.6235479,0.06746653,0.7918277,-0.6070068,0.066774055,0.7918589,-0.6070426,0.06641014,0.79278594,-0.6058714,0.06600586,0.7933014,-0.6052405,0.06724335,0.7933969,-0.6049791,0.06881548,0.79283684,-0.6055363,0.0698094,0.79269034,-0.6056143,0.070095964,0.7923406,-0.60603875,0.06785412,0.7921965,-0.606482,-0.38338107,0.8409606,-0.38184324,-0.3816747,0.84199524,-0.38127214,-0.38036108,0.8426094,-0.3812281,-0.37977043,0.8427498,-0.38150653,-0.37728244,0.8437018,-0.38187078,-0.37658644,0.8437136,-0.38253108,-0.37651286,0.84354615,-0.3829725,-0.37690789,0.8426846,-0.3844777,-0.37710676,0.8418177,-0.38617802,-0.37654677,0.84167373,-0.3870373,-0.37668332,0.84132606,-0.38765982,-0.37720567,0.8408541,-0.38817558,-0.37889755,0.8396236,-0.38919005,-0.37924105,0.8392169,-0.38973227,-0.37952238,0.83876103,-0.3904391,-0.38029844,0.8389911,-0.38918763,-0.3802715,0.8393489,-0.38844168,-0.37922424,0.8409809,-0.38592765,-0.38064763,0.84045714,-0.38566715,-0.38197684,0.8394453,-0.3865557,-0.38281283,0.8391349,-0.3864027,-0.38349187,0.83893037,-0.38617325,-0.38369533,0.838022,-0.3879394,-0.38392687,0.83766145,-0.38848868,-0.3843556,0.8372493,-0.38895297,-0.3847205,0.83697325,-0.38918617,-0.38525268,0.83676755,-0.38910204,-0.3858333,0.8369947,-0.38803667,-0.38616976,0.8367867,-0.38815066,-0.3868775,0.83605057,-0.38903117,-0.38752964,0.8358345,-0.3888463,-0.38850772,0.8354253,-0.38874957,-0.38904896,0.8354909,-0.3880668,-0.3895335,0.8350049,-0.38862628,-0.38951492,0.8348108,-0.3890618,-0.3897429,0.83449817,-0.3895038,-0.39021572,0.83406824,-0.38995105,-0.39106235,0.83346975,-0.39038232,-0.39313188,0.83218145,-0.39105156,-0.3938505,0.8317725,-0.39119852,-0.394651,0.83138007,-0.3912259,-0.39537162,0.83114135,-0.39100555,-0.39544496,0.83125126,-0.39069763,-0.39483428,0.8319777,-0.3897678,-0.39344543,0.8332653,-0.38841936,-0.3923666,0.8341096,-0.38769785,-0.39206302,0.8344254,-0.3873253,-0.39201334,0.83464324,-0.38690588,-0.39185008,0.83488065,-0.38655892,-0.3905891,0.83598274,-0.38545167,-0.39004424,0.836402,-0.38509375,-0.38892403,0.83716816,-0.3845615,-0.3861074,0.83918536,-0.383,-0.38467786,0.8401555,-0.38231102,-0.38323224,0.83909726,-0.3860684,-0.38936844,0.83552414,-0.38767463,-0.3772623,0.84202325,-0.3855774,-0.37719175,0.84235823,-0.38491428,-0.3892232,0.8356066,-0.3876429,-0.3794835,0.84103346,-0.38555807,-0.37509167,0.84953994,-0.37092873,-0.37408164,0.8501225,-0.3706139,-0.37240803,0.85099596,-0.37029466,-0.37148583,0.8513118,-0.370495,-0.3716937,0.85107654,-0.37082678,-0.37255412,0.85046965,-0.37135532,-0.3734367,0.849912,-0.3717455,-0.37636656,0.848002,-0.3731498,-0.3794715,0.8455977,-0.37545428,-0.38073012,0.8446839,-0.37623623,-0.3818943,0.8440268,-0.37653083,-0.38350487,0.84322286,-0.3766951,-0.3855388,0.84086657,-0.3798728,-0.3856276,0.84052414,-0.38053986,-0.38627142,0.83997935,-0.3810894,-0.38689455,0.8395439,-0.38141665,-0.38749823,0.83921736,-0.38152242,-0.38791287,0.839075,-0.3814141,-0.38829908,0.83921176,-0.38071954,-0.3885187,0.84006304,-0.37861237,-0.38795942,0.84151167,-0.37595955,-0.3887163,0.84185725,-0.3744008,-0.38864192,0.8420058,-0.37414396,-0.38848582,0.8421579,-0.37396368,-0.38718712,0.842935,-0.37355942,-0.3871012,0.8433163,-0.37278715,-0.38604584,0.84415567,-0.3719809,-0.38554376,0.8444603,-0.37181014,-0.38370842,0.8453761,-0.37162757,-0.37991378,0.848151,-0.36919555,-0.3802387,0.8478832,-0.36947605,-0.38180003,0.84693027,-0.3700512,-0.38246414,0.84656125,-0.37020975,-0.38289586,0.8463847,-0.3701671,-0.3835766,0.84599286,-0.37035808,-0.38517675,0.84498936,-0.37098765,-0.38637742,0.84449226,-0.37087104,-0.38628644,0.84459585,-0.37072986,-0.3851468,0.8453319,-0.37023765,-0.38405305,0.84609276,-0.3696354,-0.38275722,0.8468786,-0.36917955,-0.38079914,0.8479975,-0.36863574,-0.37811813,0.84937716,-0.3682189,-0.37434083,0.84940374,-0.37199768,-0.3841381,0.84264195,-0.37734932,-0.37531784,0.8487671,-0.372466,-0.3806951,0.8469783,-0.37107816,-0.3769753,0.8493295,-0.3694984,-0.3794209,0.8483988,-0.3691331,-0.3790611,0.8485025,-0.36926433,-0.37964422,0.84770966,-0.37048426,-0.37883493,0.84846145,-0.36959064,-0.37885076,0.84836584,-0.36979386,-0.36932606,0.84940284,-0.37697884,-0.36737588,0.8502993,-0.37686342,-0.36675164,0.85052216,-0.3769686,-0.3663487,0.85032624,-0.3778015,-0.36634207,0.84994614,-0.3786622,-0.3661272,0.8498608,-0.3790614,-0.36544842,0.84987557,-0.37968266,-0.36558515,0.84946847,-0.38046142,-0.3648616,0.84950125,-0.38108218,-0.36372483,0.85006636,-0.3809086,-0.36418447,0.84936863,-0.3820244,-0.36397627,0.8490455,-0.38294002,-0.3637115,0.84893477,-0.38343677,-0.36408868,0.84851557,-0.38400617,-0.36459503,0.84779054,-0.38512552,-0.36633423,0.84687227,-0.38549522,-0.37093833,0.84502447,-0.38514724,-0.37290555,0.84371823,-0.38611016,-0.37438795,0.84289014,-0.38648403,-0.37613535,0.8426397,-0.38533175,-0.37601155,0.8432073,-0.38420928,-0.3777014,0.8440812,-0.38061607,-0.37925044,0.8434949,-0.38037547,-0.38057864,0.84321463,-0.37966964,-0.37983772,0.844227,-0.37815884,-0.37906852,0.8447765,-0.37770322,-0.37772933,0.84548897,-0.37745062,-0.37585652,0.84556544,-0.3791451,-0.37511232,0.8463403,-0.37815195,-0.37575617,0.8461568,-0.37792328,-0.37619138,0.8461341,-0.37754095,-0.37681326,0.8463534,-0.3764275,-0.3756749,0.84761107,-0.3747317,-0.37484512,0.84818983,-0.37425274,-0.37416106,0.8485201,-0.37418857,-0.37264222,0.84893334,-0.3747665,-0.37114367,0.8491941,-0.3756618,-0.37098044,0.8491756,-0.37586477,-0.37088054,0.8489937,-0.37637386,-0.3697509,0.8484042,-0.37880674,-0.37006822,0.84857917,-0.3781043,-0.3695662,0.84919673,-0.37720782,-0.36614484,0.84895766,-0.38106278,-0.36722103,0.8465648,-0.38532668,-0.37086147,0.84812707,-0.37834144,-0.37479153,0.84429955,-0.38300067,-0.3749371,0.8449096,-0.3815101,-0.3748933,0.8459015,-0.37934908,-0.3743182,0.844802,-0.3823552,-0.37445205,0.84494835,-0.38190043,-0.3701715,0.84815824,-0.37894687,-0.37076214,0.84797263,-0.37878472,-0.4031039,0.8321262,-0.38088486,-0.4016164,0.83233356,-0.38200143,-0.40164086,0.83211154,-0.3824592,-0.40271914,0.8311432,-0.3834296,-0.40347472,0.8307563,-0.38347372,-0.4039751,0.82995045,-0.3846899,-0.40391153,0.8290323,-0.38673106,-0.40435863,0.8286943,-0.38698822,-0.404983,0.82847863,-0.386797,-0.40537232,0.8290304,-0.3852037,-0.40819114,0.8282638,-0.38387376,-0.40810305,0.82792795,-0.38469106,-0.40845132,0.8275181,-0.3852029,-0.40810996,0.82705134,-0.3865648,-0.40713573,0.8273937,-0.38685942,-0.40677065,0.8274387,-0.38714713,-0.40656927,0.8271179,-0.388043,-0.40665713,0.82693493,-0.38834086,-0.407306,0.8265777,-0.38842133,-0.40849888,0.82601136,-0.3883734,-0.4097689,0.8259897,-0.38707936,-0.4103454,0.8256144,-0.38726935,-0.4111073,0.82518137,-0.38738415,-0.41159594,0.82506824,-0.38710624,-0.41245484,0.8252377,-0.3858287,-0.4130745,0.82501185,-0.3856486,-0.41334736,0.8244711,-0.3865117,-0.41364384,0.8241667,-0.38684368,-0.41574237,0.8229001,-0.38729015,-0.41532752,0.82291365,-0.38770628,-0.41501442,0.8227422,-0.3884047,-0.41525096,0.8224185,-0.3888373,-0.41592416,0.8221532,-0.38867876,-0.41810772,0.8210344,-0.38870102,-0.4204615,0.8196371,-0.38911068,-0.42118543,0.819453,-0.38871527,-0.42086875,0.8198914,-0.38813344,-0.4201453,0.8204565,-0.3877229,-0.4206265,0.82051057,-0.3870863,-0.42086685,0.8202523,-0.38737234,-0.4217349,0.8196757,-0.38764864,-0.42229438,0.8191095,-0.38823593,-0.42305014,0.8186771,-0.38832515,-0.42349926,0.8186551,-0.38788173,-0.42375115,0.81853026,-0.38787007,-0.4245828,0.8183726,-0.38729283,-0.42493638,0.8182222,-0.38722274,-0.42655057,0.8171685,-0.38767296,-0.42778435,0.81648904,-0.387745,-0.4283917,0.8162641,-0.38754806,-0.42885587,0.81627,-0.38702187,-0.42900705,0.8164029,-0.38657376,-0.4284503,0.8171935,-0.38551936,-0.42811885,0.817496,-0.3852461,-0.427664,0.8178345,-0.38503277,-0.42732012,0.8181639,-0.38471466,-0.42703316,0.81855327,-0.38420463,-0.4267248,0.8188464,-0.38392258,-0.4258882,0.8194906,-0.38347667,-0.4241885,0.82123476,-0.38162494,-0.42376295,0.821454,-0.3816258,-0.42229724,0.82151526,-0.38311583,-0.4222673,0.82169646,-0.38276008,-0.42200455,0.82214206,-0.38209236,-0.42174545,0.82237244,-0.38188264,-0.42073458,0.82297325,-0.38170332,-0.420196,0.8231228,-0.38197404,-0.41832802,0.8239572,-0.38222536,-0.41736352,0.8237736,-0.3836726,-0.41700408,0.82386106,-0.3838756,-0.4170242,0.82415223,-0.38322827,-0.41681224,0.82455796,-0.38258556,-0.4165265,0.82505375,-0.38182715,-0.41887945,0.82420003,-0.3810962,-0.4198428,0.82392,-0.38064137,-0.41998416,0.8239345,-0.38045406,-0.41929767,0.82431245,-0.38039258,-0.41607693,0.8259705,-0.3803324,-0.41445172,0.8270619,-0.3797347,-0.4137354,0.82749707,-0.37956765,-0.41275358,0.8280116,-0.37951452,-0.4106307,0.82898897,-0.3796837,-0.40723845,0.83001035,-0.38110328,-0.40707272,0.8302916,-0.38066724,-0.40681645,0.8305556,-0.38036522,-0.40636876,0.830928,-0.3800303,-0.40578452,0.8313251,-0.37978604,-0.40506425,0.83174646,-0.37963244,-0.4042346,0.83214605,-0.3796411,-0.40388763,0.83045644,-0.3836886,-0.4061106,0.82938766,-0.38365385,-0.40879172,0.826058,-0.38796604,-0.41561922,0.8230923,-0.38701388,-0.42282346,0.82132864,-0.38293546,-0.41644618,0.8250196,-0.38198856,-0.408334,0.8270643,-0.3863005,-0.42022058,0.8206187,-0.3872979,-0.42248333,0.8213923,-0.38317433,-0.4183873,0.8247001,-0.38055456,-0.4073722,0.8299153,-0.38116726,-0.40684056,0.82922,-0.38324258,-0.4077377,0.8286184,-0.38359025,-0.39348048,0.8371938,-0.37984163,-0.39315307,0.83742493,-0.37967122,-0.3925077,0.8377024,-0.37972677,-0.39154392,0.83802664,-0.38000613,-0.39082134,0.8378918,-0.381046,-0.39099106,0.8371337,-0.38253516,-0.39180893,0.836281,-0.38356206,-0.3921157,0.83603746,-0.38377932,-0.39394194,0.835012,-0.3841415,-0.39424887,0.83465594,-0.3846002,-0.39588115,0.8340156,-0.38431254,-0.39692146,0.83346504,-0.38443378,-0.39662188,0.8330518,-0.38563678,-0.39847508,0.8310162,-0.38811046,-0.40016332,0.82978785,-0.38900054,-0.4006146,0.82979214,-0.3885266,-0.40084794,0.8301971,-0.38741925,-0.4012372,0.83002317,-0.387389,-0.4013232,0.8300893,-0.38715822,-0.4012589,0.83028215,-0.38681114,-0.40064633,0.83092284,-0.38606972,-0.39997938,0.83187795,-0.38470197,-0.3990634,0.8328118,-0.38363126,-0.3971359,0.83495665,-0.38095987,-0.39753157,0.83484876,-0.38078362,-0.3971935,0.8353321,-0.38007572,-0.39610347,0.8360842,-0.3795593,-0.3952022,0.8365855,-0.37939414,-0.39463863,0.8365318,-0.38009846,-0.4004081,0.8303334,-0.3875819,-0.3971346,0.83467656,-0.3815745,-0.39796057,0.8337461,-0.38274655,-0.24289718,0.85136276,-0.46495426,-0.24212642,0.85172427,-0.46469408,-0.2414032,0.8519845,-0.4645933,-0.24072574,0.8521446,-0.4646511,-0.24018654,0.8521892,-0.46484828,-0.23906709,0.8518769,-0.46599638,-0.23918515,0.8516867,-0.46628344,-0.24023859,0.85058755,-0.46774596,-0.2394555,0.8507547,-0.46784356,-0.23877427,0.85078377,-0.4681386,-0.2380249,0.8502468,-0.46949396,-0.2368518,0.84885365,-0.47259784,-0.23763803,0.848631,-0.47260296,-0.2407417,0.848021,-0.47212693,-0.24121049,0.8479898,-0.4719436,-0.24179655,0.8481758,-0.47130898,-0.24226908,0.8481953,-0.47103128,-0.24230951,0.84833837,-0.47075275,-0.24275614,0.8486333,-0.46999043,-0.2428574,0.8489883,-0.46929643,-0.24295618,0.8496002,-0.46813652,-0.24340235,0.8491432,-0.4687335,-0.243691,0.84898067,-0.46887794,-0.244201,0.8492413,-0.46814004,-0.24481073,0.8491954,-0.46790475,-0.24533166,0.84928405,-0.46747088,-0.24522533,0.84946984,-0.46718898,-0.24477795,0.8497687,-0.46687996,-0.24499156,0.85036254,-0.4656852,-0.2454764,0.85002154,-0.4660522,-0.24598093,0.84975165,-0.4662784,-0.2461964,0.8496928,-0.4662719,-0.24677421,0.849535,-0.46625403,-0.24698439,0.84968966,-0.46586072,-0.24722376,0.8503002,-0.46461818,-0.24683279,0.85090154,-0.4637242,-0.24661309,0.85094136,-0.463768,-0.24635084,0.8508724,-0.46403384,-0.24597208,0.8509243,-0.46413955,-0.24516346,0.8514915,-0.4635268,-0.24465251,0.8513891,-0.46398455,-0.24334592,0.85185015,-0.46382552,-0.24314217,0.85183316,-0.4639635,-0.24013735,0.8512291,-0.4666295,-0.240567,0.8506144,-0.4675282,-0.24324657,0.85128856,-0.46490738,-0.24461575,0.8499667,-0.4666044,-0.24485181,0.8503679,-0.46574885,-0.24277459,0.8495485,-0.4683245,-0.12166625,0.8011288,-0.5859948,-0.12448527,0.802246,-0.5838706,-0.12537192,0.8026853,-0.5830765,-0.12545651,0.80317706,-0.5823807,-0.1256978,0.8037007,-0.5816058,-0.12539238,0.80393946,-0.5813417,-0.123645894,0.8044607,-0.58099455,-0.12276097,0.804448,-0.5811997,-0.12161376,0.80420244,-0.5817805,-0.12074721,0.80385834,-0.5824361,-0.12016083,0.80341613,-0.58316714,-0.11989929,0.8029089,-0.583919,-0.11996347,0.8023365,-0.5846922,-0.12013549,0.8020042,-0.5851125,-0.11991597,0.8013257,-0.5860864,-0.11850484,0.80141693,-0.5862487,-0.117848024,0.80131394,-0.5865218,-0.11740583,0.80101615,-0.58701706,-0.11683305,0.8004704,-0.5878751,-0.116718054,0.8001955,-0.5882721,-0.11685301,0.79946816,-0.58923346,-0.11681427,0.7991071,-0.5897307,-0.11646806,0.7988426,-0.59015733,-0.11589883,0.7981223,-0.59124297,-0.1153417,0.7976857,-0.59194076,-0.11443656,0.79720646,-0.59276146,-0.1143575,0.7968678,-0.5932319,-0.11459051,0.7968878,-0.59316003,-0.11761819,0.79818237,-0.59082216,-0.11803824,0.7982512,-0.59064543,-0.11893539,0.7988047,-0.58971643,-0.11937806,0.79901433,-0.58934283,-0.11980488,0.79908866,-0.58915544,-0.12030253,0.7995214,-0.5884665,-0.12053731,0.8018128,-0.5852922,-0.120869756,0.8003105,-0.5872764,-0.12041594,0.8016029,-0.5856046,-0.13638861,0.8079994,-0.57317984,-0.13595878,0.80897236,-0.5719081,-0.13546705,0.8090781,-0.5718752,-0.13487297,0.80903953,-0.57207024,-0.13380608,0.80879,-0.5726733,-0.13255998,0.8086366,-0.5731794,-0.13202527,0.80842346,-0.57360333,-0.13161571,0.80804807,-0.5742261,-0.13144225,0.8077081,-0.5747439,-0.13150501,0.8074045,-0.57515603,-0.1317543,0.8070982,-0.57552874,-0.13219164,0.80678916,-0.5758617,-0.13268122,0.80664206,-0.5759551,-0.13573585,0.8060619,-0.5760555,-0.13519683,0.8057774,-0.57658017,-0.13526918,0.8053714,-0.5771301,-0.1349675,0.8053911,-0.57717323,-0.1342487,0.8058985,-0.5766324,-0.13302082,0.8059116,-0.5768986,-0.13289002,0.8054588,-0.5775607,-0.1324455,0.80526584,-0.57793176,-0.13234644,0.8041315,-0.5795317,-0.13175626,0.80380464,-0.5801193,-0.1297097,0.80320495,-0.58140963,-0.1287592,0.8027519,-0.582246,-0.12767732,0.8026777,-0.58258647,-0.12699807,0.80251455,-0.58295965,-0.12613316,0.8020236,-0.58382237,-0.12648737,0.8017782,-0.5840828,-0.1277434,0.8013578,-0.5843862,-0.12816128,0.8013522,-0.5843024,-0.12849289,0.80149084,-0.5840394,-0.12919287,0.8015275,-0.58383465,-0.12957944,0.80169207,-0.5835229,-0.13042985,0.8022134,-0.5826163,-0.13088079,0.8022027,-0.58252984,-0.13122576,0.80230194,-0.58231556,-0.1343697,0.80331004,-0.5802049,-0.13546337,0.8033674,-0.5798712,-0.13620436,0.8036079,-0.5793641,-0.13669825,0.80423737,-0.5783735,-0.13827747,0.80499387,-0.5769438,-0.13892233,0.80543,-0.5761798,-0.13975151,0.8056547,-0.5756648,-0.14012446,0.80590254,-0.57522714,-0.1397634,0.80611086,-0.57502306,-0.13929279,0.80614007,-0.57509625,-0.13803442,0.8068108,-0.5744587,-0.1394418,0.8077201,-0.5728387,-0.14012532,0.8083252,-0.5718176,-0.13895181,0.8087183,-0.571548,-0.13849252,0.80900645,-0.57125163,-0.13828523,0.8087925,-0.57160467,-0.13518612,0.80532193,-0.5772186,-0.12999637,0.80204344,-0.5829471,-0.13146493,0.80251145,-0.5819728,-0.13803528,0.8082449,-0.5724391,-0.13697578,0.8075111,-0.57372767,-0.13253841,0.80289924,-0.5811939,-0.1376578,0.80620164,-0.5754036,-0.13762476,0.8078206,-0.5731363,-0.13322252,0.80665666,-0.57580966,-0.13409826,0.8065333,-0.5757792,-0.137705,0.80593836,-0.575761,-0.13530888,0.80627066,-0.5758638,-0.071066685,0.78903747,-0.6102208,-0.068914965,0.7894729,-0.6099044,-0.067801535,0.78955287,-0.60992557,-0.066538826,0.78928083,-0.6104165,-0.06639895,0.7891301,-0.6106266,-0.064815976,0.78941953,-0.6104226,-0.06425678,0.78933424,-0.610592,-0.064315945,0.7891228,-0.610859,-0.0649948,0.7887856,-0.61122257,-0.06556885,0.788587,-0.6114175,-0.06603754,0.7885283,-0.6114427,-0.06775727,0.7886834,-0.61105436,-0.07004625,0.78845704,-0.6110884,-0.0710271,0.7885005,-0.61091906,-0.07244265,0.7887405,-0.6104428,-0.0730202,0.7886818,-0.61044985,-0.07465374,0.7888605,-0.6100213,-0.07461959,0.78898245,-0.6098677,-0.07365634,0.78908825,-0.6098479,-0.051375683,0.78794515,-0.61359835,-0.05706626,0.78838676,-0.6125273,-0.060576115,0.78884584,-0.61159855,-0.06287392,0.7894614,-0.61057156,-0.062156875,0.7901586,-0.6097424,-0.062296674,0.7904051,-0.6094087,-0.06341658,0.79064673,-0.6089795,-0.06361736,0.79111457,-0.6083507,-0.06368137,0.7915626,-0.6077609,-0.06334146,0.7919406,-0.6073038,-0.061960217,0.7925043,-0.60671073,-0.06055685,0.79205453,-0.6074393,-0.059984934,0.791671,-0.6079958,-0.059273917,0.79140747,-0.6084085,-0.05961104,0.7911808,-0.6086703,-0.060786154,0.79032785,-0.60966134,-0.059039686,0.78998417,-0.6102781,-0.057041172,0.78945875,-0.61114746,-0.05444361,0.7890218,-0.61194813,-0.052343488,0.78851676,-0.61278176,-0.051321726,0.78842133,-0.61299086,-0.05046891,0.78824884,-0.6132835,-0.06121664,0.790893,-0.6088849,-0.036693238,0.7865762,-0.61640203,-0.037098218,0.7871458,-0.6156502,-0.03709634,0.78740907,-0.6153136,-0.036561605,0.787815,-0.61482584,-0.035468757,0.78786063,-0.6148313,-0.035038114,0.7868777,-0.61611354,-0.035174314,0.7862878,-0.6168584,-0.0347902,0.7860592,-0.61717147,-0.033725653,0.7857541,-0.61761886,-0.032921184,0.7837331,-0.6202246,-0.034214437,0.7845154,-0.61916476,-0.034964766,0.7840178,-0.61975276,-0.03720561,0.78490674,-0.6184958,-0.037680022,0.78526944,-0.6180066,-0.0381366,0.7851132,-0.61817706,-0.03832081,0.7851623,-0.6181033,-0.038466774,0.7853633,-0.61783874,-0.038409658,0.7860739,-0.616938,-0.038008068,0.7862604,-0.6167252,-0.036778357,0.7862151,-0.61685747,-0.022962917,0.784232,-0.6200426,-0.023507945,0.7846237,-0.6195265,-0.024067597,0.78561807,-0.6182435,-0.024547849,0.7858748,-0.6178982,-0.0254018,0.7861403,-0.6175259,-0.023722516,0.78628886,-0.6174035,-0.022998024,0.7865083,-0.61715126,-0.022022387,0.7871337,-0.6163891,-0.020272018,0.78710586,-0.61648476,-0.01972191,0.7869676,-0.6166791,-0.019448174,0.7867435,-0.6169736,-0.019905377,0.7863773,-0.61742574,-0.021094909,0.78586847,-0.6180338,-0.021621147,0.7849654,-0.61916214,-0.020785686,0.7846818,-0.61955017,-0.021006009,0.78448,-0.61979836,-0.022478076,0.78388184,-0.62050307,-0.022739232,0.78387123,-0.6205069,-0.021857701,0.785185,-0.61887544,-0.021746242,0.78547096,-0.6185163,0.0038224175,0.786722,-0.6172956,0.0029316868,0.7869934,-0.61695445,0.0023659593,0.78765434,-0.6161129,0.004003695,0.78833747,-0.61523,0.0053331056,0.7877914,-0.6159191,0.005405852,0.78728825,-0.6165614,0.0048509957,0.78687084,-0.6170986,0.027835192,0.7867499,-0.616644,0.025874417,0.78744686,-0.61583924,0.02582775,0.7879446,-0.61520416,0.02517823,0.78865254,-0.61432344,0.024976052,0.7891165,-0.61373556,0.025324464,0.7892322,-0.61357254,0.026105514,0.7891966,-0.61358553,0.027091498,0.7879205,-0.6151808,0.028150972,0.7877504,-0.6153509,0.02959914,0.7869665,-0.61628526,0.029500388,0.7867593,-0.6165545,0.028797356,0.7862999,-0.61717355,0.026623763,0.7882064,-0.61483485,0.07354339,0.79842824,-0.5975815,0.07528161,0.79877186,-0.5969055,0.076685846,0.798715,-0.5968029,0.07871951,0.79798263,-0.5975173,0.07772813,0.797662,-0.5980749,0.076444395,0.7974317,-0.59854734,0.07603727,0.79649746,-0.5998418,0.07444306,0.79602414,-0.60066944,0.07281709,0.79668236,-0.59999573,0.07200184,0.79664373,-0.6001454,0.07047037,0.7968034,-0.60011524,0.06999333,0.7967921,-0.6001861,0.06949064,0.7968966,-0.6001057,0.06903047,0.79707885,-0.5999168,0.070812374,0.79803294,-0.5984388,0.072285175,0.79858935,-0.5975199,-0.39029726,0.3249726,-0.8614295,-0.39085007,0.32576638,-0.86087894,-0.39131334,0.3273676,-0.86006063,-0.39433524,0.32985795,-0.85772574,-0.3980225,0.33083045,-0.8556456,-0.40072194,0.33305156,-0.8535213,-0.40123397,0.3342093,-0.8528279,-0.40057233,0.33492804,-0.85285693,-0.3987264,0.33618522,-0.85322726,-0.39796662,0.33762076,-0.8530151,-0.396781,0.33788702,-0.85346186,-0.39616305,0.33997968,-0.85291773,-0.39418823,0.34192806,-0.8530538,-0.3874572,0.34469905,-0.85502017,-0.38404968,0.34653997,-0.85581297,-0.38345236,0.34627774,-0.8561869,-0.3834036,0.34476385,-0.85681945,-0.3848631,0.34225234,-0.85717195,-0.3838279,0.3402929,-0.8584153,-0.38278815,0.33925658,-0.85928935,-0.38208032,0.33791584,-0.8601323,-0.38532737,0.3318733,-0.861036,-0.38570666,0.3276439,-0.8624847,-0.38620177,0.32673144,-0.86260927,-0.38945937,0.32503462,-0.86178535,-0.38370442,0.3353006,-0.86043274,-0.36104807,0.3618748,-0.8594713,-0.36046773,0.36210915,-0.85961616,-0.3605301,0.36130828,-0.85992694,-0.3602133,0.36084896,-0.8602525,-0.360147,0.36020193,-0.8605514,-0.3642261,0.35996103,-0.8589339,-0.36674112,0.35928583,-0.858146,-0.36830032,0.3600548,-0.85715544,-0.3687067,0.36089343,-0.8566278,-0.36823675,0.36103094,-0.856772,-0.3655841,0.36125505,-0.85781294,-0.36500242,0.36161974,-0.85790694,-0.36428332,0.36142823,-0.85829324,-0.37262928,0.35726896,-0.85644984,-0.37179953,0.35824856,-0.8564012,-0.37090233,0.35892716,-0.85650617,-0.3698578,0.35876724,-0.85702467,-0.36943308,0.35753793,-0.8577213,-0.36967108,0.35676107,-0.85794216,-0.37097925,0.355463,-0.85791636,-0.37212932,0.35494357,-0.8576333,-0.37305582,0.3551268,-0.8571548,-0.37375742,0.35357687,-0.8574898,-0.37413424,0.3521335,-0.85791934,-0.3746062,0.3519262,-0.85779846,-0.37610108,0.35182166,-0.857187,-0.37715176,0.35230902,-0.85652494,-0.3790187,0.35257298,-0.8555917,-0.38023984,0.35371634,-0.8545773,-0.3804873,0.35440734,-0.8541808,-0.37996978,0.3549778,-0.85417426,-0.37858307,0.35576493,-0.8544625,-0.37780082,0.35650146,-0.8545018,-0.3757081,0.35757378,-0.8549763,-0.3745855,0.3574138,-0.8555355,-0.37306198,0.35697833,-0.85638267,-0.35070375,0.36669463,-0.86170876,-0.35064614,0.36736763,-0.8614455,-0.34861973,0.36976892,-0.86124057,-0.34777284,0.36961374,-0.86164945,-0.34644684,0.36812854,-0.8628186,-0.34422174,0.36788523,-0.8638124,-0.34486565,0.36703786,-0.86391604,-0.3449625,0.36632827,-0.8641784,-0.346756,0.36450535,-0.8642315,-0.3473092,0.3635537,-0.86441016,-0.34779492,0.36345053,-0.86425835,-0.3492666,0.36351317,-0.8636382,-0.34859607,0.36435214,-0.8635556,-0.349336,0.36433873,-0.8632622,-0.34957996,0.36368865,-0.86343753,-0.35040146,0.36391094,-0.8630108,-0.35131022,0.3631019,-0.86298215,-0.35212457,0.36274055,-0.86280215,-0.35372204,0.36292163,-0.8620723,-0.35448933,0.363375,-0.86156595,-0.35414377,0.363803,-0.8615275,-0.35326487,0.36452043,-0.861585,-0.35284114,0.36581445,-0.8612101,-0.35219464,0.36570415,-0.8615216,-0.349156,0.36452755,-0.8632553,-0.35166398,0.365797,-0.86169887,-0.3511736,0.3660373,-0.8617968,-0.3255857,0.372601,-0.86900085,-0.32679015,0.3735119,-0.86815727,-0.32713458,0.37417984,-0.86773986,-0.3271623,0.37542662,-0.86719066,-0.32748204,0.37630948,-0.8666872,-0.32730654,0.37709814,-0.8664107,-0.32643938,0.37815717,-0.86627626,-0.32299432,0.37821478,-0.8675415,-0.3209507,0.376874,-0.8688824,-0.32022503,0.37528285,-0.8698383,-0.32096747,0.37444216,-0.869927,-0.32259634,0.37382573,-0.86958945,-0.32326195,0.37314188,-0.86963606,-0.32475418,0.37299412,-0.8691433,-0.31504995,0.37264368,-0.8728575,-0.31610408,0.37310794,-0.8722779,-0.31604198,0.37392855,-0.8719489,-0.316364,0.37468156,-0.8715087,-0.3155509,0.3748531,-0.87172973,-0.31474644,0.3737009,-0.87251496,-0.31398094,0.37294346,-0.87311465,-0.31375632,0.3720656,-0.8735698,-0.31397587,0.37142718,-0.87376255,-0.3145165,0.37131715,-0.87361485,-0.31472757,0.37203318,-0.87323415,-0.36676824,0.3542009,-0.8602457,-0.36758947,0.35466072,-0.8597056,-0.36805025,0.3556152,-0.859114,-0.3673529,0.35637572,-0.85909736,-0.36680272,0.35681674,-0.85914934,-0.36582294,0.35722753,-0.85939634,-0.36423323,0.35694093,-0.86019033,-0.365377,0.35552594,-0.8602911,-0.36576805,0.35441372,-0.8605839,-0.68187875,0.7071549,0.18701135,-0.6820282,0.70715433,0.18646806,-0.68225914,0.7070953,0.18584593,-0.68250614,0.7071549,0.18470852,-0.6833566,0.7067378,0.1831542,-0.68478197,0.7058637,0.1811907,-0.6869921,0.7042906,0.17893174,-0.6914675,0.7008728,0.17507161,-0.69189554,0.700511,0.17482808,-0.69267267,0.6998752,0.17429674,-0.6937538,0.69919676,0.17271227,-0.6948412,0.69846463,0.17129737,-0.6956748,0.69769335,0.1710571,-0.6961943,0.6973416,0.1703765,-0.698681,0.69538134,0.16819507,-0.7006081,0.6937075,0.16708758,-0.70257014,0.6919518,0.1661261,-0.7060392,0.6899669,0.15954405,-0.7069328,0.68998104,0.15547405,-0.70768034,0.6899928,0.15198159,-0.708545,0.690007,0.1478318,-0.70915705,0.69001746,0.1448178,-0.70988953,0.6899348,0.14158697,-0.7106884,0.689409,0.14013292,-0.7117329,0.6886982,0.13831478,-0.7128538,0.687931,0.13634677,-0.714233,0.686217,0.13775863,-0.7148023,0.6855398,0.13817683,-0.7168359,0.6833515,0.1384812,-0.7170122,0.68311197,0.1387498,-0.7172651,0.68278635,0.13904482,-0.7177778,0.68221956,0.13918166,-0.7179799,0.6819603,0.13940941,-0.72126955,0.6787819,0.1379323,-0.7230469,0.67753685,0.13471068,-0.72508615,0.67609143,0.13095994,-0.72987574,0.67300934,0.119749084,-0.73119456,0.6723302,0.11544068,-0.7321307,0.67183924,0.11232417,-0.7337998,0.6704715,0.10957122,-0.73562706,0.66895956,0.106517486,-0.7371514,0.667686,0.1039388,-0.7388477,0.6662554,0.101034455,-0.7404359,0.66490257,0.098281465,-0.73375374,0.6734221,0.0900454,-0.73291415,0.67411166,0.091707915,-0.7314499,0.675506,0.09312755,-0.730532,0.6763369,0.09429463,-0.72958595,0.6771933,0.09546484,-0.72814405,0.6786662,0.09601285,-0.72475314,0.68222016,0.09648082,-0.7240852,0.68292516,0.09650804,-0.7216548,0.68535113,0.097510196,-0.7189551,0.68802625,0.098607615,-0.7177116,0.6892516,0.09910763,-0.7148106,0.692423,0.097960345,-0.7081773,0.69955796,0.095412,-0.706047,0.7018174,0.09460485,-0.70403266,0.7039396,0.0938458,-0.7020038,0.7060635,0.09308643,-0.700008,0.7081395,0.0923435,-0.69857645,0.70962477,0.091780365,-0.69687575,0.71138066,0.09111355,-0.695967,0.7126104,0.08840984,-0.6953418,0.7134702,0.08637111,-0.69259727,0.7171191,0.07777687,-0.69021744,0.71927524,0.07901278,-0.6898697,0.71962744,0.078843094,-0.6894945,0.720051,0.07825618,-0.6888915,0.7207549,0.07707716,-0.688889,0.7208264,0.07642788,-0.68918437,0.720661,0.07531746,-0.6873751,0.7228299,0.07093919,-0.6863524,0.72382027,0.070743755,-0.6854656,0.7247105,0.0702256,-0.68494946,0.7251772,0.07044287,-0.6847,0.72540957,0.07047676,-0.68439615,0.7257016,0.07042134,-0.68423027,0.725888,0.0701114,-0.68419677,0.7259695,0.0695924,-0.68476164,0.7255966,0.067905135,-0.6848745,0.72556204,0.06713194,-0.6851401,0.72535205,0.06668987,-0.68217903,0.72857237,0.06175844,-0.68054444,0.7301611,0.061024632,-0.67973053,0.73111475,0.05863119,-0.6789068,0.732067,0.056244425,-0.6780741,0.7330172,0.053863373,-0.6772311,0.7339666,0.051488943,-0.6763785,0.73491454,0.04912018,-0.6755162,0.73586106,0.04675834,-0.6746445,0.73680615,0.04440217,-0.67376316,0.7377498,0.042052362,-0.67347103,0.73806214,0.04124369,-0.6715876,0.7400445,0.03611529,-0.67029685,0.74137276,0.032689106,-0.66898614,0.74269813,0.029275967,-0.6678269,0.7438515,0.026310254,-0.6669983,0.74466544,0.024218636,-0.66668177,0.7449742,0.023427213,-0.6658588,0.7457713,0.021383265,-0.6649238,0.7466739,0.018826496,-0.66550386,0.7462202,0.016127812,-0.66698533,0.74496055,0.012822117,-0.6678238,0.7442393,0.01092705,-0.6691114,0.7431437,0.005248489,-0.66892666,0.7433238,0.002622309,-0.6691885,0.74309176,0.0011559695,-0.6689318,0.7433238,0.00007413164,-0.6681159,0.74405706,-0.00046571725,-0.66759634,0.74452263,-0.0010696349,-0.667833,0.74430186,-0.003731318,-0.66763145,0.7444583,-0.007074223,-0.6677166,0.744365,-0.008675428,-0.6673644,0.7446734,-0.009287523,-0.6664539,0.7454822,-0.009775314,-0.6663285,0.74558216,-0.01065443,-0.6665039,0.7454027,-0.012139556,-0.6676215,0.744365,-0.014225435,-0.6662137,0.7454476,-0.02161637,-0.66479886,0.7466597,-0.023275409,-0.66425264,0.7470836,-0.025190338,-0.6643186,0.7469737,-0.026666488,-0.6649762,0.7463665,-0.027271325,-0.66494423,0.7463665,-0.028039128,-0.6637588,0.7474024,-0.028526353,-0.6628329,0.74820757,-0.028946664,-0.66240245,0.7485518,-0.029885534,-0.66145074,0.7493238,-0.031571183,-0.6609228,0.749739,-0.032749083,-0.66025335,0.7502474,-0.034558997,-0.6601142,0.75034034,-0.035192553,-0.65997803,0.75040346,-0.03638112,-0.6598658,0.750444,-0.03756189,-0.6599466,0.7503021,-0.038952373,-0.6606098,0.74966395,-0.039983682,-0.66052216,0.74952126,-0.043913104,-0.65972316,0.750195,-0.04441573,-0.65888494,0.750792,-0.046711363,-0.6563586,0.7525126,-0.054021094,-0.655638,0.75313854,-0.054047793,-0.65563196,0.7531436,-0.054050133,-0.6502994,0.75766283,-0.055297576,-0.64969885,0.7581866,-0.0551774,-0.6494885,0.758351,-0.055393107,-0.64902514,0.75869644,-0.0560902,-0.64854187,0.75892675,-0.058511496,-0.65350646,0.75461507,-0.059037466,-0.65323937,0.7546313,-0.061725155,-0.6527619,0.7546313,-0.066585034,-0.64913917,0.7546313,-0.09565533,-0.64840937,0.7546313,-0.10048322,-0.64764434,0.7546307,-0.10530564,-0.6218204,0.7546307,-0.20945625,-0.6202445,0.7546307,-0.21407771,-0.6186347,0.75463015,-0.21868803,-0.57471883,0.75463015,-0.31659374,-0.5723467,0.75463015,-0.32086226,-0.5699437,0.7546296,-0.32511276,-0.55224246,0.7546296,-0.35434788,-0.55160826,0.7546296,-0.35533425,-0.55356866,0.75302416,-0.3556913,-0.5544448,0.7523492,-0.35575503,-0.5549853,0.7519993,-0.35565203,-0.55528224,0.7520364,-0.35510972,-0.55526316,0.75218016,-0.35483494,-0.5568987,0.7509119,-0.35495785,-0.5581477,0.74959344,-0.355782,-0.55842793,0.74938923,-0.35577247,-0.5587151,0.7488167,-0.35652614,-0.5580746,0.7489314,-0.35728762,-0.5579789,0.7488399,-0.3576288,-0.55817807,0.74855345,-0.35791755,-0.5584258,0.74833536,-0.3579872,-0.55872405,0.74818385,-0.35783845,-0.5591198,0.7481301,-0.35733238,-0.5619905,0.7462803,-0.3566964,-0.5617113,0.7461561,-0.35739544,-0.5617015,0.74581444,-0.35812336,-0.56197304,0.745468,-0.3584184,-0.5624839,0.74500656,-0.35857642,-0.5629477,0.7446665,-0.358555,-0.56407636,0.74412656,-0.3579016,-0.5640636,0.74419427,-0.3577809,-0.5628823,0.74519587,-0.35755652,-0.56321216,0.74508446,-0.3572691,-0.5640115,0.74447256,-0.3572836,-0.5646021,0.74408036,-0.35716784,-0.56583446,0.7432702,-0.35690433,-0.5662088,0.7423625,-0.35819766,-0.5665113,0.7419598,-0.3585534,-0.5669728,0.7410455,-0.35971287,-0.5673127,0.7406202,-0.36005276,-0.5681668,0.73982435,-0.36034214,-0.5684538,0.739358,-0.3608462,-0.5686931,0.73907447,-0.36104986,-0.5694893,0.73850125,-0.36096787,-0.5702677,0.7376117,-0.3615573,-0.57186645,0.73604053,-0.36223346,-0.572223,0.7348649,-0.3640528,-0.57193744,0.7348556,-0.36451986,-0.5719496,0.7346255,-0.36496437,-0.5725151,0.73268324,-0.36796987,-0.5716198,0.7330891,-0.3685528,-0.5711173,0.73291695,-0.36967257,-0.5703047,0.73300505,-0.37075078,-0.5702019,0.73340434,-0.37011877,-0.569631,0.73425823,-0.36930394,-0.56964564,0.7352572,-0.36728823,-0.5709432,0.7340378,-0.36771238,-0.5711249,0.7339475,-0.3676104,-0.57045233,0.73510873,-0.36633226,-0.5712073,0.7346949,-0.36598575,-0.5715667,0.73461396,-0.36558703,-0.57153213,0.73483366,-0.36519927,-0.5704778,0.73615533,-0.36418465,-0.5698222,0.73684305,-0.36382008,-0.5689344,0.7376123,-0.36365068,-0.5674725,0.73865813,-0.3638119,-0.56779987,0.73855126,-0.36351803,-0.5678116,0.7386392,-0.363321,-0.5667254,0.7397813,-0.36269265,-0.5667069,0.74044496,-0.36136487,-0.566284,0.74098885,-0.36091268,-0.56501025,0.7422066,-0.36040634,-0.5645882,0.74230194,-0.3608712,-0.56466967,0.7421678,-0.36101964,-0.56535923,0.7414602,-0.36139405,-0.5654544,0.7412206,-0.36173654,-0.56555897,0.7403602,-0.3633316,-0.5659786,0.7396374,-0.3641493,-0.5660719,0.73914397,-0.36500522,-0.5659955,0.7385421,-0.36633953,-0.566069,0.737977,-0.36736336,-0.56650794,0.7370337,-0.36857852,-0.56671053,0.7367307,-0.36887273,-0.56724954,0.73609304,-0.36931708,-0.5675472,0.7361098,-0.36882594,-0.56476957,0.74061275,-0.36404407,-0.5653169,0.7400462,-0.3643465,-0.56543195,0.7400823,-0.36409461,-0.5646506,0.74175525,-0.3618962,-0.56395435,0.74234766,-0.36176717,-0.5618152,0.7440314,-0.3616363,-0.561344,0.7445448,-0.36131144,-0.56108195,0.7447496,-0.36129642,-0.56013817,0.74409693,-0.36409473,-0.5587461,0.7449048,-0.36458144,-0.55846834,0.7449469,-0.36492077,-0.55193716,0.74547595,-0.3736723,-0.5509794,0.7459694,-0.37410071,-0.5486915,0.74664724,-0.37610576,-0.546555,0.7475089,-0.37750247,-0.54598784,0.7475706,-0.3782004,-0.5471987,0.7464743,-0.37861556,-0.5484916,0.74491334,-0.3798171,-0.5506431,0.7428425,-0.38075867,-0.55166817,0.74202436,-0.38087016,-0.55401576,0.74061966,-0.38019618,-0.5559113,0.7391451,-0.38029882,-0.5590556,0.7361513,-0.3814946,-0.56187,0.73383117,-0.38182974,-0.56334895,0.73238444,-0.38242772,-0.56414926,0.73153615,-0.3828714,-0.5649522,0.7308141,-0.38306624,-0.56462014,0.73135775,-0.3825179,-0.5642854,0.7317726,-0.38221836,-0.56480694,0.731707,-0.38157314,-0.5656596,0.7311688,-0.38134158,-0.56683624,0.73091525,-0.38007835,-0.56610155,0.72971725,-0.3834603,-0.5676177,0.7283085,-0.3838971,-0.5703371,0.72563124,-0.3849348,-0.56927055,0.7266355,-0.3846191,-0.57043374,0.7252605,-0.38548997,-0.57170045,0.72384554,-0.38627213,-0.57249135,0.7227192,-0.3872088,-0.573031,0.72297597,-0.38592908,-0.5738073,0.7225784,-0.38551992,-0.5748618,0.72296536,-0.38321665,-0.5754534,0.7225778,-0.3830596,-0.57665515,0.72261846,-0.38117114,-0.577582,0.7220138,-0.38091356,-0.5788139,0.72140795,-0.38019064,-0.57829225,0.72121614,-0.38134676,-0.5772936,0.721874,-0.38161492,-0.57678616,0.72203386,-0.3820797,-0.57459503,0.72154486,-0.38628167,-0.5737971,0.7220674,-0.38649118,-0.5736824,0.72199434,-0.386798,-0.57420635,0.72149825,-0.38694617,-0.5747904,0.7210419,-0.3869296,-0.57779366,0.7174332,-0.38915807,-0.58076763,0.7141912,-0.39069155,-0.5815795,0.7129577,-0.39173537,-0.5824548,0.7120362,-0.3921108,-0.5880774,0.70435834,-0.39754772,-0.5894967,0.7027523,-0.39828745,-0.5906522,0.701159,-0.39938205,-0.5917356,0.69998103,-0.39984432,-0.5923015,0.69883716,-0.40100572,-0.5948819,0.69535685,-0.40322992,-0.5983979,0.69077826,-0.40588844,-0.5985459,0.6902709,-0.40653268,-0.5992661,0.68886125,-0.40786067,-0.6002117,0.6872107,-0.4092522,-0.6003387,0.68754864,-0.40849772,-0.6007204,0.6866737,-0.4094071,-0.6003896,0.6866843,-0.4098744,-0.60046643,0.6863472,-0.41032624,-0.6029357,0.682156,-0.4136808,-0.60335696,0.68119204,-0.4146538,-0.60427237,0.6796063,-0.41592082,-0.6074779,0.6766664,-0.41604468,-0.60934454,0.67405754,-0.41754726,-0.6101645,0.6730686,-0.41794497,-0.61232007,0.6707231,-0.4185626,-0.6147041,0.66893107,-0.4179356,-0.61565197,0.6676841,-0.4185339,-0.61635816,0.6663755,-0.41957873,-0.61761665,0.6654778,-0.41915277,-0.62151957,0.66110474,-0.4203023,-0.6231693,0.6581102,-0.4225528,-0.6249869,0.6556608,-0.42367473,-0.62588847,0.6537121,-0.42535174,-0.6260409,0.653298,-0.42576352,-0.62616396,0.65309083,-0.42590028,-0.6264351,0.65304697,-0.42556873,-0.62654126,0.65270805,-0.42593214,-0.6269223,0.65205187,-0.4263763,-0.626625,0.6521501,-0.42666307,-0.62646085,0.65246725,-0.42641926,-0.62625796,0.6526312,-0.42646626,-0.6263159,0.6522379,-0.42698255,-0.6270675,0.6507489,-0.42814964,-0.62771577,0.6493314,-0.42935038,-0.6289515,0.6477356,-0.4299518,-0.63030654,0.64615,-0.43035322,-0.63338834,0.6440506,-0.4289732,-0.64123654,0.6362794,-0.42891043,-0.6422679,0.6343043,-0.43029058,-0.64538765,0.63082457,-0.430738,-0.64738786,0.62806183,-0.43177226,-0.65157646,0.6249107,-0.43004048,-0.6538609,0.623004,-0.42933893,-0.6559092,0.6218214,-0.42792675,-0.6577781,0.61984855,-0.42792034,-0.6584771,0.6194653,-0.42739978,-0.6606881,0.61735636,-0.42703906,-0.65899485,0.6187833,-0.4275898,-0.6602442,0.616995,-0.42824614,-0.6606966,0.6159267,-0.4290854,-0.6609931,0.615505,-0.42923397,-0.6615961,0.61601996,-0.4275627,-0.6631612,0.61491376,-0.42672977,-0.66414505,0.6143175,-0.42605796,-0.6651173,0.613928,-0.42510152,-0.6660135,0.6132713,-0.4246462,-0.6663104,0.6134335,-0.42394546,-0.664567,0.6175287,-0.4207244,-0.6660883,0.61665887,-0.41959295,-0.6665515,0.6165623,-0.41899887,-0.66722506,0.6173121,-0.41681713,-0.6679579,0.6168547,-0.41632015,-0.6684537,0.6166924,-0.4157645,-0.6693607,0.6167676,-0.4141908,-0.66989213,0.61668974,-0.41344675,-0.6702157,0.6168152,-0.41273463,-0.6708846,0.61638176,-0.41229525,-0.6703344,0.6165039,-0.41300696,-0.6700149,0.61613005,-0.41408172,-0.6671863,0.61634356,-0.41830975,-0.66631496,0.61622006,-0.41987774,-0.66590405,0.6157622,-0.42119914,-0.6658041,0.61511934,-0.42229497,-0.66630846,0.61457694,-0.42228925,-0.6667674,0.6142381,-0.42205778,-0.66800475,0.6127737,-0.42222977,-0.6690751,0.61196923,-0.42170152,-0.6705003,0.610511,-0.4215514,-0.67149514,0.60936767,-0.42162222,-0.6719286,0.60901356,-0.4214433,-0.6715659,0.6087844,-0.42235157,-0.67054373,0.609646,-0.42273256,-0.6697833,0.6100324,-0.42338032,-0.66775376,0.6120939,-0.42361057,-0.6673712,0.6127488,-0.42326662,-0.66683084,0.6128794,-0.42392865,-0.6665574,0.61252046,-0.42487633,-0.6677327,0.6108748,-0.42539984,-0.6687311,0.60935146,-0.42601594,-0.67092395,0.6070034,-0.4259201,-0.67250323,0.6047036,-0.42670003,-0.67614603,0.60168904,-0.42520216,-0.6815406,0.5970298,-0.4231522,-0.6816752,0.59583753,-0.42461348,-0.6829672,0.5938811,-0.4252777,-0.68410575,0.59244984,-0.4254439,-0.6872374,0.5899583,-0.4238561,-0.6906933,0.5867595,-0.4226772,-0.69147843,0.5858614,-0.42263937,-0.6927657,0.58484775,-0.42193455,-0.6942171,0.58320546,-0.42182234,-0.69589114,0.5822241,-0.42041713,-0.697833,0.58042955,-0.41967925,-0.6992176,0.5796381,-0.41846663,-0.70002234,0.5787892,-0.4182963,-0.70062643,0.57750076,-0.419065,-0.70139194,0.57657015,-0.41906592,-0.7041747,0.57466906,-0.41700533,-0.70505595,0.5728509,-0.4180166,-0.7065134,0.57088494,-0.41824535,-0.70695686,0.56998765,-0.41871956,-0.7077241,0.56883377,-0.4189924,-0.7083518,0.5675561,-0.419664,-0.70928025,0.56703746,-0.41879603,-0.71046996,0.5659981,-0.4181849,-0.7111902,0.56582457,-0.41719413,-0.7135956,0.56596434,-0.41287485,-0.7155208,0.56513923,-0.41066736,-0.71662843,0.564962,-0.40897632,-0.72100806,0.5629119,-0.40407607,-0.7220314,0.56156516,-0.40412268,-0.7231259,0.56081253,-0.4032101,-0.7260586,0.5595468,-0.3996828,-0.7275889,0.55969936,-0.39667508,-0.7305245,0.5571408,-0.39487728,-0.7313806,0.5554823,-0.39562845,-0.73245186,0.555023,-0.3942889,-0.73383284,0.55516624,-0.39150962,-0.735585,0.55367684,-0.3903289,-0.7373893,0.5524968,-0.38859257,-0.746622,0.5427844,-0.38463053,-0.7470865,0.54179984,-0.38511643,-0.74846303,0.53971165,-0.38537574,-0.7492995,0.53949356,-0.38405338,-0.7502616,0.5378845,-0.38443175,-0.89159805,0.4388375,-0.11168952,-0.8913075,0.4393957,-0.11181436,-0.8911636,0.43943554,-0.1128001,-0.88751924,0.44597661,-0.11582091,-0.88586205,0.44919023,-0.11608842,-0.88527703,0.45024836,-0.11645147,-0.8840552,0.45255175,-0.116804324,-0.8835289,0.45348242,-0.11717686,-0.8829318,0.45481798,-0.1164989,-0.8825052,0.45582253,-0.11580305,-0.88207275,0.45667794,-0.115727894,-0.88154143,0.45767838,-0.11582399,-0.88072246,0.45845035,-0.11895908,-0.8792093,0.46109077,-0.11994357,-0.87988764,0.46012112,-0.11868601,-0.88085574,0.45886603,-0.11634037,-0.88092405,0.458907,-0.115659654,-0.88091326,0.4590879,-0.11502217,-0.88030577,0.46049935,-0.11402658,-0.8784756,0.4643877,-0.11235958,-0.876699,0.46746728,-0.11346067,-0.87706566,0.46722698,-0.11160111,-0.8770174,0.46761492,-0.11034886,-0.87634134,0.4692571,-0.108736195,-0.8755373,0.47091708,-0.10803494,-0.8748945,0.47190848,-0.10891251,-0.87500405,0.4719889,-0.10767698,-0.8748822,0.47238997,-0.106905185,-0.87466,0.47292396,-0.10636132,-0.8750036,0.47232535,-0.10619501,-0.87528324,0.47189796,-0.105790734,-0.8750778,0.47246435,-0.10495864,-0.8749258,0.47286168,-0.10443524,-0.8733304,0.47595626,-0.10372924,-0.87416685,0.47472286,-0.10232551,-0.8741572,0.47511953,-0.10055159,-0.87396353,0.4757171,-0.09940281,-0.87365717,0.47650397,-0.098322004,-0.8733825,0.47683963,-0.09913087,-0.8732184,0.4769857,-0.09987135,-0.8712449,0.4804641,-0.100431815,-0.87153304,0.4799857,-0.1002189,-0.87189275,0.47943166,-0.099740796,-0.87247354,0.4786073,-0.09861507,-0.8722971,0.47916833,-0.09744484,-0.87226397,0.4795363,-0.09591889,-0.8728027,0.4790322,-0.09350737,-0.8728902,0.4791811,-0.0919144,-0.8732838,0.47809234,-0.09382471,-0.8737109,0.47698945,-0.095448084,-0.8736938,0.47718716,-0.09461294,-0.87325007,0.47848976,-0.09209682,-0.8730699,0.47930968,-0.089505695,-0.87266207,0.48040283,-0.087601304,-0.8725036,0.4809065,-0.08640857,-0.87161,0.48325855,-0.08220184,-0.8712221,0.48425794,-0.08041426,-0.87041736,0.48601887,-0.07848131,-0.8696859,0.48736933,-0.07821511,-0.86907107,0.48876542,-0.07631378,-0.86829627,0.49045596,-0.07426033,-0.8674665,0.49182263,-0.07491547,-0.8667881,0.49289373,-0.07572472,-0.86524093,0.49564964,-0.0754291,-0.8655889,0.49515808,-0.07466193,-0.86566854,0.4951092,-0.07406013,-0.8660655,0.49478042,-0.0715743,-0.8669206,0.4931503,-0.07246631,-0.86708534,0.49296042,-0.071784414,-0.8672302,0.49315175,-0.06865254,-0.86806756,0.4911776,-0.07213309,-0.8683438,0.49066457,-0.072300605,-0.86666405,0.49500996,-0.062118072,-0.86672163,0.49529725,-0.05894245,-0.8664385,0.49580204,-0.058860935,-0.86564565,0.49725938,-0.058229763,-0.8656859,0.49712557,-0.058771968,-0.86617494,0.49630156,-0.05852935,-0.866478,0.49583983,-0.057953425,-0.86630094,0.4962572,-0.057022046,-0.866222,0.49651825,-0.055937536,-0.8664513,0.49661884,-0.051301867,-0.8664329,0.49681345,-0.049703408,-0.8673563,0.49567324,-0.04473358,-0.86816466,0.49446782,-0.04232834,-0.86857533,0.49389744,-0.040524777,-0.86918974,0.49328658,-0.034315303,-0.86898166,0.49383295,-0.031621575,-0.86878556,0.49420255,-0.031232709,-0.86831963,0.4949684,-0.032051787,-0.86697924,0.49751958,-0.028657157,-0.8677528,0.49622685,-0.027640358,-0.8678628,0.4961573,-0.025340103,-0.8691248,0.49402264,-0.023742374,-0.8695756,0.49326438,-0.022986418,-0.87000424,0.49262974,-0.02021342,-0.8695984,0.49337855,-0.01939582,-0.8695968,0.49339855,-0.018956864,-0.8700982,0.49250656,-0.019141408,-0.870517,0.49177518,-0.01890342,-0.8717403,0.4896552,-0.017511172,-0.87160146,0.4898535,-0.018828213,-0.8716735,0.48969823,-0.019517893,-0.87194246,0.48921445,-0.019636959,-0.8728437,0.48776066,-0.015277233,-0.87343514,0.4868059,-0.011449487,-0.87328106,0.48710743,-0.010326517,-0.87243444,0.4887097,-0.0045926133,-0.8735008,0.48680818,-0.003761528,-0.87372434,0.48641056,-0.0032449309,-0.87346333,0.48688555,-0.0020708789,-0.8730758,0.4875821,-0.0015446724,-0.87258255,0.48846504,-0.0012597205,-0.8720961,0.48933336,-0.0011222041,-0.8717543,0.48994267,-0.00080314145,-0.8709443,0.4913811,-0.0007956466,-0.87066936,0.49186632,-0.0015314888,-0.8705272,0.49211562,-0.0021462117,-0.8713745,0.49060887,0.003081766,-0.8717798,0.4898877,0.0031589612,-0.8719485,0.4895786,0.0043069315,-0.8720297,0.48941883,0.0057795793,-0.8723227,0.48888814,0.006438036,-0.87247187,0.48861006,0.007282268,-0.8729308,0.48777035,0.0084839435,-0.87367994,0.48641202,0.009314101,-0.8739693,0.48588103,0.009861619,-0.87472564,0.48452482,0.009524959,-0.8745712,0.48478946,0.010218761,-0.8740761,0.48563376,0.012277481,-0.8743842,0.48506302,0.012888475,-0.87412906,0.48551372,0.013223038,-0.8736779,0.48631525,0.013579574,-0.87328196,0.48698676,0.014917129,-0.8727688,0.48790345,0.014994639,-0.8724074,0.48859444,0.013448314,-0.87167513,0.48992562,0.012464405,-0.87170994,0.4898877,0.011476684,-0.8710105,0.49120885,0.007393328,-0.87045234,0.49221137,0.0063759782,-0.8700091,0.4930109,0.0049380064,-0.8693183,0.49423447,0.004234662,-0.8690849,0.49464044,0.004714255,-0.86883557,0.4950774,0.004807675,-0.86875737,0.49521142,0.0051234337,-0.86883616,0.4950662,0.0057525095,-0.8686227,0.4954291,0.0066809,-0.86797726,0.49655303,0.007110128,-0.8678618,0.4967372,0.008249059,-0.867535,0.4972801,0.009775053,-0.8673665,0.49757648,0.009646683,-0.8666596,0.49880534,0.009713423,-0.86617273,0.49966267,0.0090568615,-0.86588514,0.5001645,0.008855338,-0.8655759,0.5006958,0.009053511,-0.8654838,0.5008787,0.0076370784,-0.8659819,0.50003177,0.006599368,-0.8667436,0.49871525,0.0062099383,-0.8656198,0.5006906,0.0033654151,-0.86533046,0.5011832,0.004308903,-0.86498743,0.501768,0.0050569633,-0.86474687,0.5021829,0.005017929,-0.8645117,0.50259703,0.003961533,-0.86493945,0.50186825,0.0028342274,-0.8649233,0.50190145,0.0015994612,-0.8655077,0.5008956,0.00008776542,-0.8629423,0.50530213,-0.00068093924,-0.86367035,0.5040567,0.00068967487,-0.8645512,0.50250643,0.0062096897,-0.86403084,0.503369,0.008392295,-0.86293566,0.50521016,0.010233636,-0.8629396,0.5051853,0.011092061,-0.86303115,0.5050153,0.01169489,-0.8626764,0.5055558,0.014243948,-0.8622734,0.5061315,0.017762087,-0.8626827,0.5053618,0.019696176,-0.86239,0.5056346,0.024843363,-0.8624359,0.5054794,0.026361551,-0.86235166,0.5055309,0.028073024,-0.8619123,0.5062645,0.028343333,-0.86055785,0.50853366,0.028872885,-0.860518,0.50846326,0.03120792,-0.86150914,0.5067811,0.031224018,-0.8618081,0.5062468,0.031637084,-0.8631777,0.5039109,0.03159092,-0.8632627,0.50384027,0.030371957,-0.8634802,0.5034861,0.03006352,-0.8619745,0.50548893,0.038482517,-0.8624926,0.5046674,0.037646174,-0.8626081,0.5044415,0.038027577,-0.86207813,0.505119,0.040940266,-0.86155045,0.5059838,0.04136701,-0.8609985,0.506842,0.042340823,-0.86023563,0.5081212,0.042514965,-0.8601951,0.5081242,0.04329269,-0.8605005,0.5075449,0.04401233,-0.8599977,0.5083487,0.0445606,-0.8610481,0.5064983,0.045339722,-0.8614564,0.5059838,0.04328101,-0.86168444,0.5056456,0.042690367,-0.8620202,0.505119,0.042142197,-0.8615497,0.5056176,0.045640092,-0.8610404,0.50607705,0.049954336,-0.86078304,0.50640553,0.051048663,-0.86001277,0.5074722,0.05338489,-0.8600629,0.5072687,0.054499857,-0.8598534,0.5074333,0.056246646,-0.8604895,0.50612116,0.058302756,-0.8604007,0.50647175,0.05654316,-0.86087054,0.5060204,0.053340167,-0.86188877,0.5032371,0.062451385,-0.8621889,0.50259703,0.06345486,-0.8621936,0.50252193,0.06398411,-0.8618792,0.5030391,0.06415501,-0.8614991,0.5036893,0.064159244,-0.86097115,0.50432813,0.06619493,-0.86145145,0.50357664,0.06566548,-0.86189276,0.50286084,0.06535935,-0.86247957,0.50176877,0.0660086,-0.86249727,0.50184166,0.06521813,-0.86357147,0.49963385,0.06789938,-0.86507934,0.49674755,0.069854125,-0.86461955,0.49761721,0.069355786,-0.8652672,0.49648288,0.06940774,-0.86584604,0.495386,0.070023775,-0.8659045,0.4951588,0.07090205,-0.8654992,0.49557862,0.07289041,-0.8651829,0.49577844,0.07524792,-0.8648947,0.4961455,0.0761371,-0.8645082,0.4966352,0.07732386,-0.86442757,0.49656567,0.078660935,-0.8629965,0.49845514,0.082337044,-0.8627509,0.49864137,0.0837718,-0.8626702,0.4985992,0.08484681,-0.86244357,0.4989323,0.08519118,-0.8614275,0.49888065,0.095187925,-0.86480504,0.49169275,0.10173699,-0.8672312,0.48559645,0.110028304,-0.8689944,0.48193735,0.11218344,-0.86935806,0.4812936,0.11212944,-0.8717338,0.47694156,0.11228035,-0.8739532,0.4731169,0.11120362,-0.87731797,0.4670966,0.11015427,-0.87780964,0.46602473,0.11077536,-0.8780873,0.46537307,0.1113129,-0.8782255,0.46498686,0.11183543,-0.87798053,0.46535346,0.1122331,-0.87799186,0.46512648,0.11308257,-0.8777007,0.46555266,0.113588005,-0.8774189,0.46603525,0.11378573,-0.8766147,0.46751702,0.113905534,-0.87589055,0.468831,0.11407562,-0.8764254,0.46758857,0.11506298,-0.87646085,0.46743482,0.1154171,-0.87710536,0.46594107,0.11655533,-0.87803566,0.46450618,0.115270555,-0.879498,0.4621288,0.11366742,-0.87967277,0.46198523,0.11289591,-0.87985295,0.46174246,0.11248386,-0.88045317,0.46021637,0.11403119,-0.8827952,0.4549181,0.11714149,-0.8835888,0.45299095,0.11861724,-0.88396394,0.45198017,0.11967314,-0.8840364,0.45163882,0.12042417,-0.8839738,0.4515019,0.12139326,-0.88368046,0.45203558,0.12154253,-0.8826654,0.45339274,0.12384195,-0.8833291,0.4523032,0.123091534,-0.8848116,0.44938672,0.123125985,-0.88590896,0.44701064,0.12388203,-0.8859314,0.44681996,0.124408625,-0.88575816,0.44701064,0.12495556,-0.8850356,0.44824976,0.12563524,-0.88440186,0.44911715,0.12699264,-0.8852459,0.44771484,0.12606001,-0.88621306,0.44604063,0.12519686,-0.886326,0.44568977,0.12564586,-0.8864329,0.44518238,0.1266861,-0.8885214,0.44066143,0.12785628,-0.88954246,0.4381068,0.12952474,-0.8898985,0.43666914,0.13191248,-0.88988,0.43571904,0.13513869,-0.8905777,0.43415967,0.13556074,-0.8914055,0.43182433,0.13756436,-0.8927338,0.42841843,0.13958555,-0.89281046,0.4279595,0.14049962,-0.8934229,0.42616326,0.14205767,-0.89305043,0.42765984,0.1398854,-0.8932138,0.42751038,0.13929805,-0.89356846,0.42686853,0.13899146,-0.8938874,0.42622948,0.13890225,-0.8944128,0.42480052,0.13989343,-0.894206,0.42472488,0.1414369,-0.8935189,0.42540294,0.14372312,-0.8933467,0.42508972,0.14570644,-0.8923299,0.42629117,0.14840254,-0.8921591,0.4262504,0.14954168,-0.8911047,0.4278509,0.15124796,-0.89029425,0.42936233,0.15173723,-0.8888037,0.4323778,0.1519127,-0.8876679,0.43431547,0.15302232,-0.88648415,0.4364614,0.15377678,-0.8864734,0.43639383,0.1540302,-0.886691,0.43590078,0.15417385,-0.88673276,0.43575734,0.15433913,-0.8844448,0.44043425,0.15419175,-0.8809233,0.447269,0.1546758,-0.87910074,0.45099768,0.15421751,-0.87775576,0.4538963,0.15337172,-0.8771588,0.45528078,0.15268202,-0.86975026,0.47225705,0.14320506,-0.8690974,0.4736604,0.14253235,-0.8683622,0.47533256,0.14144301,-0.8669818,0.47808868,0.14061911,-0.8664401,0.47923717,0.14004697,-0.8655229,0.48072043,0.1406338,-0.8659544,0.47996262,0.14056605,-0.86633444,0.47919458,0.14084452,-0.8665911,0.47836256,0.14208874,-0.8672043,0.47740734,0.14155868,-0.867649,0.47658947,0.14158954,-0.86852056,0.4747791,0.14232674,-0.86820596,0.47523877,0.1427114,-0.86684567,0.47751,0.14339757,-0.86854553,0.47440106,0.14343092,-0.8696769,0.472206,0.14381799,-0.87136644,0.46846136,0.14582364,-0.87152976,0.4679404,0.14651838,-0.8675392,0.47603038,0.14412075,-0.86693996,0.47694525,0.14470086,-0.8664632,0.47802356,0.14399666,-0.85771805,0.49687997,0.1320229,-0.8549247,0.5021328,0.13025522,-0.853917,0.504075,0.1293602,-0.85083383,0.5096537,0.12780815,-0.850139,0.5110147,0.1269941,-0.8489095,0.51316166,0.12656121,-0.84851897,0.51374745,0.12680319,-0.8476084,0.51517314,0.12710874,-0.8468626,0.51635814,0.12727138,-0.8465327,0.5169375,0.12711407,-0.8458424,0.51802266,0.1272913,-0.8459587,0.51772004,0.12774898,-0.8459197,0.517607,0.12846352,-0.8449246,0.5189808,0.12946552,-0.84456956,0.5197245,0.12879755,-0.84433115,0.5203133,0.1279801,-0.8439773,0.5205803,0.12922254,-0.84331065,0.5215463,0.12967879,-0.8428974,0.5220835,0.13020273,-0.842265,0.52296424,0.13075925,-0.84224254,0.52307755,0.1304507,-0.8423997,0.5229221,0.1300583,-0.8420289,0.52360404,0.12971526,-0.84153914,0.524139,0.13072957,-0.84120494,0.5246717,0.13074368,-0.8403132,0.52612036,0.13065648,-0.84007967,0.52626383,0.13157718,-0.8396911,0.52677757,0.13200094,-0.83945704,0.52715564,0.13198034,-0.83927757,0.5275625,0.13149482,-0.8387645,0.5283508,0.13160406,-0.83869725,0.52832043,0.13215311,-0.8379319,0.5291038,0.13386337,-0.8370393,0.5303571,0.13448611,-0.8367053,0.5309343,0.13428687,-0.83621335,0.5316043,0.13469999,-0.83596647,0.53178036,0.13553452,-0.8357389,0.5320221,0.13598886,-0.8349125,0.5331084,0.13680837,-0.834654,0.5335539,0.13664913,-0.8330288,0.53653467,0.13488336,-0.83383244,0.53489894,0.13640593,-0.8336632,0.5350695,0.13677073,-0.8331412,0.5357671,0.1372203,-0.8337322,0.5347398,0.13763736,-0.8339976,0.5342465,0.1379447,-0.8339788,0.5341651,0.13837314,-0.8334781,0.5347124,0.13927272,-0.833158,0.5351164,0.13963601,-0.83247596,0.53616196,0.13969311,-0.8321252,0.5369373,0.13880174,-0.8320401,0.53747207,0.13723342,-0.8315325,0.53761363,0.13973293,-0.8314825,0.53731036,0.14118943,-0.8309099,0.5378493,0.14250228,-0.830176,0.5386659,0.14368995,-0.83006555,0.5386106,0.14453289,-0.8295247,0.5390637,0.14594248,-0.8288797,0.5397575,0.14703819,-0.82818705,0.54066193,0.14761727,-0.82753193,0.54185575,0.14691265,-0.8274122,0.54152334,0.14880067,-0.82688177,0.542072,0.14974806,-0.8257791,0.5433104,0.15133627,-0.8248502,0.54465187,0.15158013,-0.82436824,0.54503846,0.15280724,-0.82401496,0.5452614,0.15391365,-0.82275635,0.5466194,0.15581803,-0.82216215,0.5473464,0.15640095,-0.82107913,0.54924786,0.1554214,-0.8204823,0.5499441,0.15610956,-0.8209932,0.5492001,0.15604298,-0.8215114,0.54820764,0.15680388,-0.8129089,0.5579997,0.16677961,-0.8118021,0.5579162,0.1723565,-0.8108954,0.55909747,0.1727967,-0.80999917,0.56025076,0.173264,-0.81081927,0.55904025,0.17333825,-0.811278,0.5583207,0.17351075,-0.81010395,0.5599182,0.1738482,-0.80907404,0.5613494,0.17402896,-0.80681896,0.5639871,0.17595962,-0.8064278,0.564355,0.17657202,-0.80511516,0.5657065,0.1782292,-0.80395836,0.5667889,0.1800038,-0.8037561,0.5671939,0.17963053,-0.80235,0.5691989,0.17957479,-0.802986,0.5681348,0.18010086,-0.80295783,0.5678858,0.18100972,-0.80269426,0.56806815,0.18160532,-0.8014259,0.569393,0.18305226,-0.8012576,0.56924164,0.18425572,-0.80072105,0.56930053,0.18639408,-0.8003711,0.56933904,0.18777427,-0.8001352,0.5693796,0.18865447,-0.79914534,0.5702824,0.19011776,-0.7987376,0.57038736,0.19151086,-0.79784316,0.57132846,0.19243209,-0.7966737,0.57266855,0.19329202,-0.79647785,0.5734242,0.19185352,-0.7968709,0.57578516,0.18294314,-0.7976594,0.57364756,0.18619311,-0.7975353,0.57343817,0.18736637,-0.7962292,0.5746245,0.18927698,-0.79588,0.5750645,0.189409,-0.7946376,0.57664883,0.1898082,-0.79392076,0.57743603,0.19041388,-0.7937077,0.5779376,0.18977924,-0.79361266,0.5782804,0.1891317,-0.7935787,0.5801116,0.18358468,-0.7931068,0.58109206,0.18252014,-0.7932521,0.5801783,0.18478157,-0.7930904,0.5797291,0.1868736,-0.79252523,0.5800381,0.18830734,-0.7916955,0.58112466,0.18844733,-0.79164577,0.58082294,0.18958294,-0.7922989,0.57979995,0.18998563,-0.79260015,0.5792388,0.19044012,-0.79222727,0.5792992,0.19180287,-0.7921572,0.5788406,0.19346978,-0.7919595,0.57862866,0.19490753,-0.7914636,0.5790005,0.19581586,-0.7897331,0.5808222,0.19740094,-0.7877031,0.58278936,0.19970095,-0.7864312,0.58446884,0.19980511,-0.7857106,0.58556986,0.19941604,-0.7851957,0.58637094,0.19909018,-0.78477913,0.5871604,0.1984046,-0.78488034,0.5872225,0.19781968,-0.78594804,0.58631504,0.19626619,-0.7877461,0.58385533,0.19639,-0.78735363,0.58478135,0.19520497,-0.7863968,0.5860706,0.19519544,-0.785519,0.587366,0.19483608,-0.78577375,0.5876611,0.19290937,-0.7862056,0.58732045,0.19218585,-0.78666383,0.5871197,0.19092019,-0.78711355,0.5871645,0.18891817,-0.7875906,0.5869893,0.18746887,-0.7878263,0.5871866,0.18585362,-0.7870446,0.5882581,0.18577756,-0.78611493,0.58966583,0.18524976,-0.78513306,0.5910161,0.18511087,-0.7858943,0.5898744,0.18552224,-0.7864974,0.5888479,0.18622586,-0.7867061,0.58800167,0.18800944,-0.7863128,0.588183,0.18908459,-0.7857353,0.5887445,0.1897364,-0.7849452,0.5896693,0.19013473,-0.7846909,0.5897347,0.19097961,-0.78459877,0.58942217,0.19231828,-0.7840046,0.5904633,0.1915459,-0.7840712,0.59013927,0.19227043,-0.78404117,0.5898413,0.19330466,-0.7833174,0.5908181,0.19325578,-0.78269696,0.5917219,0.19300431,-0.7828308,0.59109175,0.19438747,-0.78273034,0.59073216,0.19587946,-0.7828329,0.5902631,0.19688089,-0.78324336,0.5893774,0.19789921,-0.78185457,0.59156114,0.19687289,-0.7808997,0.5931801,0.19578835,-0.7806187,0.5938283,0.19494179,-0.7802184,0.5944548,0.19463482,-0.77912605,0.59581906,0.19483921,-0.7788808,0.5962241,0.19458038,-0.7789461,0.5957554,0.19575094,-0.78162706,0.5916058,0.19764031,-0.78301615,0.58924866,0.19917765,-0.7848017,0.585976,0.20178802,-0.78516173,0.5852279,0.20255698,-0.78465194,0.58608025,0.20206745,-0.78186584,0.5910175,0.19845441,-0.7780216,0.59702367,0.19556367,-0.7770977,0.5985417,0.19459441,-0.77620345,0.59988916,0.19401346,-0.77580005,0.6005967,0.19343711,-0.7761028,0.60084736,0.19143373,-0.7762122,0.6011546,0.19002062,-0.7773643,0.60027844,0.18807055,-0.7775801,0.6003786,0.18685502,-0.776982,0.60127175,0.18647031,-0.7765181,0.60247564,0.18450674,-0.77535367,0.60422295,0.18368782,-0.77553785,0.60437846,0.18239447,-0.7756233,0.60494655,0.18013367,-0.77538997,0.6055863,0.17898501,-0.7757381,0.60592866,0.1762976,-0.7749252,0.6062337,0.17880613,-0.7749958,0.6048448,0.18315104,-0.77472144,0.6049011,0.18412305,-0.77543855,0.6038046,0.18470272,-0.7758522,0.6028225,0.18616776,-0.77613115,0.60224366,0.18687691,-0.7763342,0.6016938,0.18780243,-0.7759057,0.60199803,0.18859635,-0.7753206,0.60254914,0.18924217,-0.7747832,0.6033595,0.1888606,-0.77447647,0.6038936,0.18841107,-0.7740695,0.60477555,0.18725105,-0.774032,0.60525054,0.18586634,-0.7722022,0.6088364,0.18171975,-0.77352226,0.6061185,0.1851584,-0.7736169,0.60562086,0.18638735,-0.77314746,0.60598767,0.18714167,-0.7728587,0.6064316,0.18689613,-0.7722861,0.6071835,0.1868217,-0.772135,0.6067799,0.1887478,-0.7713475,0.6078002,0.18868479,-0.7707284,0.6086945,0.1883315,-0.77069026,0.6091805,0.18691058,-0.77006155,0.60975075,0.18764147,-0.77004826,0.6105441,0.18509851,-0.7698413,0.6111008,0.18411982,-0.76917434,0.61228734,0.18296194,-0.7689054,0.61304706,0.18154293,-0.7679697,0.61483914,0.1794305,-0.7672361,0.6161153,0.17818725,-0.7664178,0.61793745,0.17537703,-0.7666278,0.61697346,0.17783591,-0.76768285,0.6151321,0.179654,-0.76781625,0.6148082,0.18019184,-0.7695222,0.6112815,0.1848527,-0.76946414,0.6111183,0.18563247,-0.76910883,0.61119115,0.18686093,-0.76850706,0.611825,0.18726201,-0.7677111,0.6128289,0.18724415,-0.7670495,0.6135701,0.18752818,-0.7665844,0.6141964,0.1873798,-0.7661535,0.61515564,0.18599011,-0.76603043,0.6158152,0.1843068,-0.76540816,0.61696005,0.18305889,-0.7652983,0.61750185,0.1816865,-0.76545626,0.6183682,0.1780379,-0.76420856,0.62055516,0.17577444,-0.76425993,0.6207389,0.17489974,-0.76117873,0.6249233,0.1734295,-0.7605009,0.6255086,0.1742912,-0.75976104,0.6262743,0.17476778,-0.7605311,0.62532175,0.17482895,-0.7613699,0.6245627,0.17388882,-0.7627888,0.62307405,0.17300881,-0.7633404,0.6224439,0.17284396,-0.7642351,0.62125325,0.17317383,-0.7641148,0.62110835,0.17422113,-0.76340145,0.62171865,0.17516889,-0.7631327,0.6217667,0.17616667,-0.7636362,0.62106425,0.17646249,-0.76401323,0.62042284,0.17708535,-0.7644049,0.6196706,0.17802678,-0.7638616,0.62028784,0.17820911,-0.76330227,0.62101483,0.1780738,-0.7643352,0.6192712,0.17970757,-0.7641449,0.6187967,0.18213513,-0.76427495,0.61804533,0.18412974,-0.7646142,0.61737984,0.184952,-0.7648156,0.61685747,0.18585996,-0.7642262,0.6175957,0.18583328,-0.76374435,0.6183655,0.18525293,-0.7631339,0.6193442,0.18449765,-0.7619175,0.6218908,0.18092439,-0.76064765,0.6236005,0.18038177,-0.761043,0.6230407,0.18064822,-0.76189303,0.62163717,0.18189627,-0.76203305,0.6211978,0.18280849,-0.76224935,0.6206213,0.18386161,-0.7620271,0.62072355,0.18443689,-0.76155925,0.6214242,0.18400972,-0.7611166,0.6221724,0.18331113,-0.7585316,0.6258231,0.1815912,-0.7579964,0.6264444,0.18168369,-0.7574219,0.6271562,0.18162382,-0.7568198,0.6279405,0.18142353,-0.75623834,0.628577,0.18164405,-0.7557203,0.62933624,0.18117015,-0.755093,0.6302418,0.18063743,-0.75526106,0.6297355,0.18169731,-0.7546302,0.63032186,0.18228447,-0.7540961,0.63102823,0.18205072,-0.75394195,0.6314704,0.1811536,-0.75301,0.6329666,0.17980331,-0.7530141,0.6323674,0.1818826,-0.75265795,0.63274354,0.18204843,-0.7521185,0.6334336,0.18187791,-0.7517472,0.6337138,0.18243648,-0.7512744,0.6342516,0.18251501,-0.7508049,0.6347832,0.18259878,-0.75150377,0.6336881,0.18352526,-0.7511252,0.6340849,0.1837042,-0.75028354,0.6350044,0.18396735,-0.7506949,0.6344598,0.18416858,-0.7502044,0.6347739,0.18508224,-0.74974024,0.6351769,0.18557988,-0.7492861,0.6356783,0.18569727,-0.7482497,0.63690114,0.18568611,-0.747984,0.63700294,0.18640605,-0.7476532,0.637223,0.18698013,-0.74855816,0.63614,0.18704715,-0.74817103,0.6362248,0.18830311,-0.7487619,0.635652,0.18788879,-0.7489911,0.63553417,0.18737306,-0.74967384,0.63487667,0.1868712,-0.75005317,0.63428915,0.18734331,-0.7503569,0.63431025,0.18605088,-0.75119007,0.63358396,0.18516174,-0.7527802,0.6319157,0.18440333,-0.7540884,0.630183,0.18498683,-0.75476575,0.6291945,0.1855881,-0.75476056,0.6294449,0.18475828,-0.75497633,0.6294475,0.18386546,-0.75563407,0.6286797,0.18379034,-0.7561085,0.6280797,0.18389075,-0.75675327,0.6269119,0.18521872,-0.75697273,0.6268515,0.18452525,-0.7582566,0.62537426,0.18426603,-0.75801027,0.62555385,0.18466942,-0.75738776,0.6262291,0.18493482,-0.7573266,0.6260364,0.18583527,-0.7577506,0.6253337,0.18647197,-0.75826895,0.62416923,0.18825755,-0.75866073,0.6239009,0.18756777,-0.75875884,0.62413394,0.18639165,-0.7591701,0.6238789,0.18556894,-0.7603824,0.62244123,0.18543334,-0.7608983,0.62164587,0.18598445,-0.7615167,0.62061864,0.18688202,-0.76166403,0.62002105,0.18826,-0.76184934,0.6194987,0.18922713,-0.7615863,0.6197088,0.18959804,-0.7610827,0.6202163,0.18996036,-0.76144767,0.6196606,0.19031066,-0.7611554,0.6199114,0.19066292,-0.76034313,0.6206287,0.1915679,-0.7608583,0.6200358,0.19144256,-0.7614186,0.61924785,0.19176501,-0.76198417,0.6185999,0.19160986,-0.7625963,0.6179864,0.19115372,-0.7627038,0.6176841,0.19170092,-0.76301384,0.61685276,0.1931386,-0.7636898,0.61611193,0.19283123,-0.76440054,0.61527056,0.1927017,-0.76551676,0.6132019,0.1948527,-0.7664388,0.6123048,0.19404726,-0.76818186,0.6104098,0.19312307,-0.77074945,0.60735416,0.19252597,-0.7722068,0.6054859,0.19257052,-0.77269256,0.60476875,0.19287561,-0.77314043,0.60393023,0.19370641,-0.77138627,0.6059416,0.19441728,-0.76992357,0.6077251,0.19464818,-0.76859945,0.60898787,0.19593026,-0.7681732,0.6092508,0.1967826,-0.76777995,0.6095737,0.19731654,-0.76172715,0.6165556,0.19907513,-0.76084405,0.6174368,0.19972013,-0.75943244,0.61898816,0.20028998,-0.7590696,0.6191635,0.20112173,-0.7585545,0.6197536,0.20124744,-0.7571441,0.62128466,0.20183706,-0.75761133,0.6206788,0.2019478,-0.75734895,0.6209153,0.20220482,-0.75685066,0.62150836,0.20224874,-0.7560333,0.62255996,0.202071,-0.75537133,0.62358916,0.20137212,-0.7552874,0.6238709,0.20081344,-0.7556409,0.6237583,0.19983082,-0.7550011,0.6243217,0.20048864,-0.75389266,0.62555313,0.20082101,-0.75333124,0.6262982,0.2006054,-0.75322527,0.6268674,0.19922091,-0.75103754,0.63057786,0.19573997,-0.7490943,0.6331296,0.19494793,-0.7481567,0.63476866,0.19321035,-0.74754274,0.63576776,0.19229968,-0.74670297,0.6367914,0.19217524,-0.74635816,0.63728213,0.19188787,-0.7458252,0.6379721,0.19166742,-0.744712,0.6390012,0.19256581,-0.74389815,0.6398543,0.1928783,-0.74250734,0.6409768,0.19450366,-0.7416771,0.64137965,0.19633427,-0.74037707,0.6425669,0.19735658,-0.74187404,0.64105463,0.19665158,-0.742995,0.6405083,0.19418427,-0.7436603,0.6399715,0.19340588,-0.74466306,0.6389343,0.19297639,-0.7460298,0.6374489,0.19260955,-0.74676853,0.6365075,0.19286,-0.74723357,0.63594604,0.19291085,-0.7482671,0.6339188,0.19555871,-0.7484419,0.63316846,0.19731292,-0.74892956,0.63213557,0.19876912,-0.7485988,0.63217586,0.19988371,-0.7498844,0.6299599,0.20204918,-0.7510353,0.6286413,0.20188151,-0.75102,0.6285213,0.20231119,-0.7499189,0.6293462,0.20382597,-0.7472017,0.63213557,0.20516908,-0.7466321,0.63267165,0.20558968,-0.7461456,0.63328063,0.20548098,-0.7452584,0.6340137,0.20643774,-0.7451497,0.6339557,0.20700733,-0.744509,0.63455796,0.20746715,-0.74372506,0.63546574,0.2075001,-0.7433041,0.6359006,0.20767626,-0.74270356,0.6367349,0.20726834,-0.7425644,0.6365614,0.2082974,-0.74145997,0.63761044,0.20902187,-0.7399572,0.63912505,0.20971991,-0.73746824,0.6419601,0.2098281,-0.7366811,0.6426955,0.21034135,-0.7385184,0.6404998,0.21059576,-0.73894376,0.6399505,0.21077353,-0.73737866,0.64175814,0.21075863,-0.7356856,0.643763,0.21056095,-0.7345329,0.6450755,0.21056832,-0.73355734,0.6461311,0.21073256,-0.7326603,0.6471673,0.21067362,-0.7319323,0.6481244,0.21026166,-0.73146456,0.6488127,0.20976564,-0.72961426,0.65174425,0.2071049,-0.729327,0.65193033,0.2075305,-0.72879577,0.65235806,0.2080522,-0.72824097,0.6528443,0.2084692,-0.72615117,0.65492886,0.20921943,-0.725186,0.6560075,0.20918763,-0.72367775,0.6578458,0.20863704,-0.7260962,0.654905,0.2094844,-0.72705775,0.65393263,0.20918669,-0.7281562,0.6527778,0.20897275,-0.7277304,0.65311605,0.2093991,-0.7271676,0.6536335,0.20973915,-0.72678226,0.6538353,0.2104447,-0.7260007,0.654456,0.21121122,-0.7205001,0.658372,0.21777505,-0.7194481,0.6589055,0.21963155,-0.71831167,0.65980697,0.22064248,-0.7182246,0.659554,0.22167985,-0.716678,0.65968406,0.22625114,-0.7158496,0.660161,0.2274791,-0.71565354,0.65989214,0.22887202,-0.71450704,0.6603441,0.23113929,-0.7137603,0.6605399,0.2328802,-0.7132158,0.6604068,0.23491716,-0.7116733,0.6610363,0.23780696,-0.7105262,0.6620147,0.23851399,-0.708484,0.6643607,0.23806565,-0.7074589,0.665266,0.23858567,-0.70654935,0.6664715,0.23791556,-0.706666,0.6660412,0.23877245,-0.70704955,0.66548926,0.23917538,-0.7073086,0.66498595,0.2398086,-0.7060865,0.66582566,0.24107675,-0.70746946,0.66446257,0.24078302,-0.70877004,0.66283447,0.24144478,-0.7089818,0.6624815,0.24179135,-0.7080736,0.6631177,0.24270694,-0.7075109,0.6632542,0.24397172,-0.70452005,0.66542375,0.24670388,-0.70549124,0.664032,0.24767661,-0.7060905,0.66338176,0.24771124,-0.7063061,0.66306734,0.2479383,-0.70501566,0.66369736,0.24991742,-0.70419556,0.66427726,0.25068784,-0.70172614,0.6650216,0.25559095,-0.70163035,0.6649325,0.25608522,-0.7012011,0.6653665,0.2561337,-0.7001722,0.66663474,0.2556503,-0.69865423,0.6686282,0.2545948,-0.697949,0.6701458,0.25253093,-0.6979663,0.6703893,0.25183582,-0.698115,0.6704399,0.25128844,-0.69838756,0.67031276,0.25086972,-0.6985896,0.6700515,0.25100484,-0.6988083,0.6695858,0.25163832,-0.6984846,0.6695212,0.25270653,-0.6989493,0.6688671,0.25315353,-0.6997544,0.6674728,0.25460532,-0.70274407,0.6665756,0.2486519,-0.7014063,0.66833407,0.24770711,-0.7013352,0.6689627,0.24620676,-0.70090777,0.66941047,0.24620706,-0.7005816,0.6696548,0.24647085,-0.6990161,0.6720936,0.24426776,-0.69895524,0.6725598,0.2431562,-0.6993212,0.6730125,0.24084027,-0.6991832,0.67341393,0.24011771,-0.6975751,0.67471445,0.24114168,-0.6966043,0.6755468,0.24161722,-0.69581306,0.6762666,0.24188362,-0.69527954,0.6764951,0.24277726,-0.6943796,0.6770898,0.2436932,-0.69409966,0.6771745,0.24425489,-0.6937671,0.67751426,0.24425747,-0.6936052,0.67779756,0.24393083,-0.69371206,0.67782575,0.24354854,-0.6937198,0.67843205,0.24183208,-0.6932093,0.67910856,0.24139704,-0.6927555,0.6797657,0.24084917,-0.6912468,0.6812394,0.24102016,-0.68960464,0.68289155,0.24104889,-0.6889857,0.6833926,0.2413987,-0.6884972,0.6837123,0.24188653,-0.6855653,0.68643826,0.24249262,-0.68339664,0.68810415,0.24388875,-0.6810746,0.68994963,0.24516715,-0.68088454,0.69032955,0.24462502,-0.68083996,0.69052804,0.24418847,-0.6774575,0.69283664,0.24704,-0.6779178,0.6923707,0.2470835,-0.67825943,0.6919906,0.2472106,-0.67794544,0.6921056,0.24774958,-0.6774602,0.69238913,0.24828391,-0.6776568,0.6920158,0.24878773,-0.67771703,0.69179434,0.24923919,-0.6772712,0.69220895,0.24929999,-0.6766227,0.69298476,0.24890547,-0.67612284,0.6933895,0.2491364,-0.67651325,0.69290733,0.24941784,-0.67647165,0.69279796,0.24983414,-0.6749664,0.6940156,0.2505248,-0.6756843,0.693158,0.25096366,-0.67546797,0.6932329,0.25133863,-0.6743928,0.6941886,0.25158787,-0.6750415,0.6933686,0.25210902,-0.67477834,0.69346565,0.25254628,-0.673089,0.69467,0.25374147,-0.6727268,0.6944885,0.25519472,-0.6717484,0.69513327,0.25601536,-0.67076296,0.69588214,0.25656393,-0.6698924,0.6968192,0.25629514,-0.6674129,0.6990158,0.25678197,-0.6664597,0.7000851,0.25634417,-0.6653638,0.70072323,0.25744504,-0.6644174,0.7015241,0.25770795,-0.6647137,0.7010308,0.2582857,-0.6654764,0.7003425,0.25818914,-0.6654918,0.7002373,0.25843465,-0.6652291,0.70019406,0.25922683,-0.6663003,0.6994356,0.25852248,-0.66686374,0.69890666,0.25849986,-0.6662849,0.698547,0.26095313,-0.6665546,0.69805104,0.26159087,-0.6665109,0.69789845,0.2621087,-0.66591495,0.69846404,0.26211682,-0.6650806,0.69941664,0.26169482,-0.6641451,0.7002324,0.261889,-0.66330844,0.701004,0.2619452,-0.66359216,0.70052433,0.26250908,-0.6636669,0.7002257,0.26311633,-0.6630781,0.700584,0.26364636,-0.66251653,0.70100105,0.26394957,-0.66196626,0.70079255,0.26587677,-0.6624444,0.7001472,0.26638556,-0.66288936,0.69946784,0.2670627,-0.6625028,0.69967425,0.2674807,-0.66214854,0.69991475,0.2677289,-0.66154486,0.7004648,0.26778263,-0.6614055,0.70033157,0.26847437,-0.6596965,0.70185804,0.2686926,-0.6593616,0.70197517,0.26920828,-0.6592795,0.7017366,0.27003,-0.6589775,0.7016856,0.2708984,-0.6585592,0.7018647,0.271451,-0.65758497,0.70270926,0.27162784,-0.6569852,0.70285535,0.27269912,-0.6560814,0.7033559,0.2735832,-0.65549415,0.7030917,0.275662,-0.65278697,0.704977,0.2772663,-0.6525601,0.7052483,0.2771102,-0.6524633,0.705473,0.27676597,-0.6520753,0.70642006,0.27526078,-0.6514059,0.70697296,0.27542633,-0.6503889,0.70818883,0.27470502,-0.6499396,0.7088203,0.27413934,-0.64956635,0.7091947,0.2740556,-0.64964366,0.7093491,0.2734721,-0.6497247,0.70947886,0.27294254,-0.6498036,0.7095803,0.27249044,-0.65006447,0.7094073,0.27231848,-0.65037405,0.70917606,0.27218172,-0.65066886,0.7092481,0.2712879,-0.65040845,0.7096956,0.27074155,-0.6502285,0.71015656,0.2699641,-0.64957356,0.71090615,0.26956755,-0.64910007,0.711295,0.2696823,-0.6486196,0.7117555,0.2696234,-0.64824396,0.71228623,0.2691246,-0.648071,0.7125883,0.26874134,-0.64748675,0.713263,0.26835942,-0.64718395,0.7134212,0.26866895,-0.6468516,0.71362245,0.26893497,-0.64639765,0.71405214,0.26888588,-0.6460536,0.7145108,0.26849407,-0.6461301,0.71469736,0.2678126,-0.64640576,0.7146259,0.26733774,-0.6466302,0.7150121,0.26575753,-0.6465088,0.71534145,0.26516607,-0.64647865,0.71552783,0.26473615,-0.645498,0.71685654,0.26353198,-0.645164,0.717128,0.2636112,-0.64487284,0.71742785,0.26350757,-0.6443177,0.71802664,0.26323462,-0.6438605,0.7184541,0.2631868,-0.6436421,0.71876705,0.2628664,-0.64261186,0.7198505,0.26242206,-0.6406804,0.72187287,0.26158804,-0.6391966,0.723418,0.2609485,-0.6373271,0.72535497,0.26014283,-0.63404053,0.72872823,0.2587427,-0.632214,0.7305883,0.25796533,-0.63049334,0.73233867,0.2572125,-0.6300614,0.7333458,0.2553949,-0.6295061,0.7346169,0.253101,-0.6292701,0.73545814,0.251238,-0.6294981,0.7355592,0.2503692,-0.6298227,0.73544145,0.24989855,-0.631056,0.7347464,0.24882935,-0.63225585,0.73436356,0.24690607,-0.6335427,0.73376924,0.24536987,-0.6329318,0.7353658,0.24214569,-0.63181114,0.73641133,0.24189472,-0.6319977,0.7366258,0.24075162,-0.6321837,0.7368407,0.2396029,-0.6331646,0.7361207,0.23922585,-0.6340184,0.73551357,0.23883127,-0.6358314,0.73418826,0.23808834,-0.64222527,0.72948116,0.23538047,-0.64438343,0.72787964,0.23443808,-0.64614815,0.726232,0.2346905,-0.64781845,0.72466594,0.2349267,-0.64945805,0.7234715,0.2340794,-0.65081817,0.72237456,0.23368952,-0.6521391,0.72115594,0.23377056,-0.65334034,0.720035,0.23387195,-0.6542651,0.71909523,0.23417783,-0.65466666,0.7186017,0.23457012,-0.6556951,0.7177383,0.23434104,-0.6567793,0.7169337,0.23376702,-0.6575835,0.71615857,0.23388217,-0.65813875,0.715776,0.23349097,-0.65940607,0.7150096,0.23226029,-0.6609242,0.7138785,0.23142329,-0.6615615,0.7132373,0.23157933,-0.66201115,0.71270424,0.23193502,-0.66262597,0.71214205,0.23190628,-0.66278297,0.7121571,0.23141107,-0.6630373,0.71208465,0.23090474,-0.66364604,0.7116112,0.23061532,-0.6642926,0.7109307,0.23085266,-0.6648861,0.71068555,0.22989674,-0.66452503,0.7112058,0.22933137,-0.66463524,0.7112567,0.22885351,-0.6652061,0.7109116,0.22826658,-0.66604525,0.7103431,0.22758816,-0.66633993,0.71031255,0.22681968,-0.6664866,0.71067774,0.22523944,-0.66790074,0.7095749,0.22452638,-0.67374235,0.7071881,0.21437413,-0.6752874,0.70718205,0.2094766,-0.6767967,0.707176,0.20456854,-0.6782697,0.7071706,0.1996495,-0.6797075,0.7071646,0.19471997,-0.68110955,0.70715857,0.18978012,-0.71809626,0.68175083,0.139834,-0.7342291,0.67301625,0.089200675,-0.7105086,0.6970679,0.09630134,-0.69430584,0.7148726,0.08304545,-0.6898313,0.72022307,0.073562905,-0.68376607,0.7270218,0.06247553,-0.66914916,0.7431009,0.0063574165,-0.6579904,0.75131136,-0.05079321,-0.6537164,0.7547431,-0.05493396,-0.6521514,0.7560727,-0.05525078,-0.6507339,0.7570301,-0.058743358,-0.6522483,0.7546313,-0.07144069,-0.6498331,0.7546313,-0.090821594,-0.6233618,0.7546307,-0.20482321,-0.57705885,0.75463015,-0.31230822,-0.554864,0.7546296,-0.35022858,-0.5588068,0.74902004,-0.355955,-0.56537086,0.7436356,-0.356878,-0.5691507,0.73878276,-0.36092597,-0.5727265,0.7333383,-0.3663323,-0.57048965,0.7349753,-0.36654183,-0.5674546,0.7386007,-0.36395657,-0.566868,0.7395468,-0.362948,-0.5680163,0.7363093,-0.3677038,-0.5610817,0.7441954,-0.3624369,-0.5582366,0.74459374,-0.3659946,-0.5687605,0.7278768,-0.3830234,-0.5717412,0.7245637,-0.3848629,-0.5791656,0.72136486,-0.37973672,-0.57619023,0.72155017,-0.38388819,-0.60636115,0.67777747,-0.4158652,-0.6402351,0.6376754,-0.42833295,-0.65979135,0.6183615,-0.42697126,-0.6650597,0.6150226,-0.42360687,-0.6669145,0.61735904,-0.41724434,-0.67119503,0.6164301,-0.41171739,-0.67247957,0.6084605,-0.4213634,-0.66867375,0.61091727,-0.42385778,-0.67870575,0.60096323,-0.4221395,-0.68121076,0.5980767,-0.42220384,-0.7029387,0.5758283,-0.41749126,-0.712693,0.56606764,-0.41428998,-0.7172345,0.5652264,-0.4075461,-0.7322616,0.5556949,-0.3936955,-0.7486642,0.5400624,-0.38449258,-0.8768502,0.46696094,-0.11437311,-0.87489283,0.47169426,-0.109849855,-0.8650905,0.4962556,-0.07313524,-0.86696416,0.4934534,-0.06983528,-0.8677157,0.49218845,-0.06942547,-0.86557823,0.49720097,-0.059711777,-0.86540854,0.49774355,-0.057613716,-0.86803293,0.49545044,-0.03236781,-0.8714588,0.49015364,-0.017575359,-0.87226665,0.4889491,-0.008925045,-0.8710714,0.49114874,0.0027629405,-0.8738549,0.4860472,0.011651623,-0.8726513,0.48813632,0.014236851,-0.86839056,0.495842,0.0062010325,-0.8648188,0.5020724,0.0034241588,-0.8622028,0.5062792,0.016962407,-0.8618451,0.5061454,0.032248218,-0.86296225,0.50399625,0.03583293,-0.8603343,0.50704336,0.0522678,-0.86118656,0.5050176,0.057575203,-0.86219084,0.50224125,0.06618676,-0.86540955,0.49606705,0.07059576,-0.8764901,0.4678951,0.11331065,-0.8760723,0.46797347,0.116181806,-0.88013864,0.46096224,0.11344525,-0.8832187,0.4530069,0.121282704,-0.8764516,0.45720696,0.15097795,-0.8664355,0.478706,0.1418805,-0.8703557,0.47055095,0.14512989,-0.8680784,0.47508207,0.14400287,-0.84106463,0.52498066,0.13040553,-0.83335125,0.5355482,0.1367983,-0.83168787,0.53779536,0.1380994,-0.82008654,0.5505519,0.15604731,-0.80916375,0.5616357,0.17268294,-0.8020836,0.5697215,0.17910677,-0.79961205,0.57002753,0.18891592,-0.79790395,0.5727321,0.1879554,-0.79538363,0.5757615,0.18937683,-0.7923519,0.57939154,0.1910076,-0.78834057,0.5834069,0.19533414,-0.7649484,0.62032723,0.17334372,-0.7622813,0.62387955,0.17234118,-0.7603613,0.62404275,0.1800593,-0.7606488,0.622954,0.18259715,-0.75516105,0.63020474,0.18048221,-0.75103307,0.63456255,0.18242729,-0.7501654,0.6352512,0.18359682,-0.7486893,0.63644177,0.18548912,-0.749595,0.6347114,0.18774681,-0.74963176,0.6344064,0.18862866,-0.7531829,0.6309866,0.18593423,-0.75809664,0.62422186,0.1887766,-0.758291,0.62390286,0.18905012,-0.76124847,0.6200906,0.18970619,-0.76051253,0.6205391,0.19118534,-0.7639876,0.6153001,0.1942388,-0.7670641,0.6105765,0.1970002,-0.75762707,0.62093335,0.20110446,-0.7431356,0.64053315,0.19356349,-0.7487577,0.63129133,0.20207211,-0.72260916,0.65934193,0.20761542,-0.72464335,0.6556093,0.21229348,-0.7236999,0.6563471,0.21322972,-0.7062292,0.6658041,0.24071823,-0.70212257,0.66493505,0.25472596,-0.6939952,0.6777054,0.24307613,-0.67516816,0.6940935,0.24976403,-0.6745248,0.6945817,0.2501451,-0.6742303,0.6944419,0.25132436,-0.66521,0.7003425,0.25887462,-0.6664298,0.69894326,0.25951806,-0.6527143,0.7056868,0.27562687,-0.64659256,0.71552783,0.2644579,-0.6447008,0.7176422,0.26334497,-0.64454347,0.7178125,0.26326594,-0.6359603,0.726762,0.2595603,-0.6302435,0.7351058,0.24982493,-0.63363826,0.7346024,0.2426147,-0.6397725,0.73129267,0.23643652,-0.65509397,0.7182004,0.23460613,-0.6651041,0.7103383,0.23033895,-0.72817796,0.6738642,0.1251558,-0.7125695,0.6948508,0.09709336,-0.69342244,0.71604675,0.080264665,-0.66749704,0.744365,-0.019196536,-0.6608566,0.74938244,-0.041163668,-0.65729916,0.75175494,-0.053126343,-0.65169865,0.7546313,-0.07629239,-0.65049094,0.7546313,-0.08598339,-0.62486887,0.7546307,-0.2001783,-0.57936686,0.75463015,-0.30800542,-0.5574551,0.7546296,-0.34608948,-0.55539346,0.7521616,-0.35467026,-0.56778586,0.7402456,-0.36007738,-0.5723305,0.7350579,-0.3634939,-0.5694615,0.7353473,-0.3673935,-0.5645643,0.7407244,-0.36413527,-0.56268543,0.7432993,-0.36178902,-0.55800295,0.7445391,-0.36646187,-0.5697316,0.7272939,-0.3826872,-0.5795131,0.72119963,-0.37952042,-0.5789445,0.7210833,-0.38060763,-0.6007262,0.6873834,-0.40820596,-0.6188841,0.6642097,-0.4192946,-0.6372368,0.64092445,-0.42795464,-0.66088986,0.616424,-0.42807236,-0.66407233,0.6176513,-0.42132512,-0.71928084,0.5640821,-0.40552008,-0.7283805,0.55944437,-0.3955804,-0.7460216,0.54374385,-0.3844403,-0.78959984,0.52539617,-0.31700322,-0.87672544,0.46730223,-0.11393509,-0.87412214,0.4744086,-0.10414887,-0.8720826,0.47956556,-0.09741035,-0.8652757,0.49549413,-0.07604952,-0.8652271,0.4962165,-0.07177232,-0.8642561,0.49969363,-0.058031976,-0.86661506,0.49665517,-0.048082396,-0.8720379,0.4893787,-0.0076481,-0.8720919,0.48930812,-0.0057718544,-0.871914,0.4896336,0.004984471,-0.86595744,0.5001099,0.002793277,-0.86278445,0.5055683,-0.0018970416,-0.86222255,0.5062616,0.016476851,-0.8599516,0.5094455,0.03079845,-0.86282563,0.504404,0.03329292,-0.86171013,0.50594556,0.038402267,-0.8598238,0.5085952,0.045098163,-0.8604039,0.5075669,0.045616835,-0.86111957,0.50421566,0.06511251,-0.8620097,0.49973205,0.08489535,-0.8928173,0.42754197,0.14172196,-0.8675437,0.47642535,0.14278246,-0.86955684,0.47225633,0.14437754,-0.844512,0.52000105,0.12805612,-0.8407529,0.525534,0.13018692,-0.83897513,0.5281214,0.13118072,-0.834551,0.5338407,0.1361569,-0.8304511,0.5384253,0.14300068,-0.8198354,0.5505668,0.15730886,-0.81382847,0.5573574,0.16442646,-0.8034291,0.5677308,0.17939718,-0.791558,0.5811621,0.18890865,-0.7649494,0.6204877,0.17276421,-0.7585043,0.6278171,0.17469111,-0.755452,0.62854785,0.18498625,-0.7561781,0.6273208,0.1861807,-0.7626557,0.6175903,0.19219404,-0.76393545,0.61502796,0.19530307,-0.7692781,0.6083875,0.19513035,-0.7570405,0.621495,0.20157796,-0.7520993,0.6288666,0.19716358,-0.7485777,0.6318701,0.2009268,-0.74580765,0.63359845,0.2057278,-0.73698103,0.6424663,0.20999026,-0.7300134,0.65141004,0.2067497,-0.72439957,0.6567855,0.20947112,-0.70652086,0.6663533,0.23833103,-0.70442253,0.665362,0.24714835,-0.6983998,0.66994464,0.25181732,-0.67609096,0.6935356,0.24881583,-0.67399514,0.69410944,0.2528689,-0.66400504,0.70178944,0.25804806,-0.66228616,0.7010934,0.26428226,-0.6499993,0.7105033,0.26960337,-0.6458343,0.71654266,0.26356143,-0.6383742,0.7323212,0.23703158,-0.6648748,0.7104397,0.23068802,-0.6705461,0.70720017,0.22413348,-0.70475835,0.68998355,0.16504043,-0.70550424,0.6899589,0.16192761,-0.68976384,0.72036844,0.07276752,-0.68482804,0.7258939,0.06394228,-0.67269653,0.73888385,0.039115272,-0.66817504,0.7438281,-0.01618057,-0.66813946,0.74382526,-0.017709542,-0.66090125,0.7492498,-0.04282794,-0.6511128,0.7546313,-0.0811404,-0.6263412,0.7546307,-0.19552281,-0.58164304,0.75463015,-0.30368516,-0.5600151,0.7546296,-0.3419316,-0.5628498,0.745289,-0.35741332,-0.57282525,0.7330682,-0.3667181,-0.5609211,0.7440423,-0.3629995,-0.56054825,0.74400014,-0.36366114,-0.55307823,0.7451089,-0.37271583,-0.5709092,0.7257749,-0.3838145,-0.6207738,0.6620907,-0.41985205,-0.6384135,0.63978094,-0.42791188,-0.6637329,0.6171572,-0.42258206,-0.6805674,0.59903723,-0.42187965,-0.7035926,0.5753252,-0.4170833,-0.7330322,0.5555801,-0.39242136,-0.7948334,0.5262599,-0.30214313,-0.875604,0.47040737,-0.1097026,-0.8711893,0.48035797,-0.10141704,-0.86489564,0.49870047,-0.05703838,-0.8707143,0.49178556,0.0018655125,-0.86268985,0.505722,-0.0033922538,-0.8623541,0.5052338,0.032928083,-0.8601884,0.5066591,0.05807324,-0.86425817,0.4981205,0.070240796,-0.86522794,0.49633923,0.07090823,-0.8615746,0.5004383,0.08515201,-0.8760364,0.46891314,0.11260831,-0.88282806,0.45342165,0.122569986,-0.88469213,0.4487684,0.1262011,-0.8930678,0.42679295,0.14239997,-0.86695063,0.477435,0.14301191,-0.8688486,0.47365138,0.14407125,-0.84238696,0.52307755,0.12951465,-0.83432204,0.5343278,0.13564877,-0.8168396,0.5542444,0.1599568,-0.80743575,0.56330913,0.17530064,-0.7981199,0.5731512,0.18574837,-0.77836144,0.5966824,0.19525276,-0.7662779,0.6179582,0.1759142,-0.75965637,0.6263009,0.17512687,-0.7531826,0.6327634,0.17979564,-0.7536264,0.6304337,0.18601237,-0.7555838,0.6281746,0.18571411,-0.7573365,0.62123257,0.20127466,-0.7410386,0.6418758,0.19712235,-0.73189545,0.6485163,0.20917866,-0.7305933,0.65088034,0.20636924,-0.69410735,0.6777656,0.24258761,-0.66199833,0.7009342,0.26542327,-0.64782417,0.7129331,0.26842162,-0.63389075,0.7341617,0.24328816,-0.6623192,0.71237296,0.23207334,-0.6831122,0.7038573,0.1947888,-0.6881301,0.7220804,0.071252406,-0.68579334,0.72486204,0.06528833,-0.6720861,0.7396543,0.03481107,-0.6509866,0.7546229,-0.08222381,-0.6277788,0.7546307,-0.19085652,-0.5838868,0.75463015,-0.29934847,-0.56254405,0.7546296,-0.33775482,-0.5595699,0.74792475,-0.3570575,-0.5657116,0.7378896,-0.36808866,-0.7442844,0.54610264,-0.38446403,-0.78852797,0.5310823,-0.31012127,-0.7997824,0.526366,-0.28859475,-0.7766742,0.53578216,-0.33123195,-0.875236,0.4710524,-0.109870896,-0.8711242,0.48057994,-0.10092344,-0.86456734,0.49927878,-0.056955352,-0.85951227,0.5102615,0.02952786,-0.8619827,0.50555366,0.037434794,-0.86001617,0.5070008,0.05763979,-0.86487454,0.49694142,0.07100174,-0.8776526,0.45600566,0.14759657,-0.8159976,0.5551939,0.16095844,-0.78820497,0.5834159,0.19585393,-0.7756949,0.60611445,0.17584848,-0.7231644,0.6583033,0.20897375,-0.67810774,0.69257915,0.24597564,-0.66206175,0.70109886,0.26482937,-0.63391167,0.733863,0.24413331,-0.6823975,0.70386034,0.19726731,-0.6721619,0.70719415,0.21925966,-0.7348638,0.6723756,0.08880436,-0.6890518,0.7211199,0.07206722,-0.67617923,0.73563254,0.040329188,-0.6568326,0.7521207,-0.053716894,-0.6468428,0.7546307,-0.110122144,-0.65067613,0.7546229,-0.084645405,-0.62918186,0.7546307,-0.18617913,-0.58609825,0.75463015,-0.29499522,-0.56504184,0.7546296,-0.33355933,-0.5603044,0.74750036,-0.3567943,-0.5693822,0.73479205,-0.3686252,-0.5680936,0.73618764,-0.367828,-0.566425,0.73654276,-0.36968553,-0.67208153,0.60852337,-0.42190728,-0.68002576,0.59973913,-0.4217558,-0.74162763,0.5489573,-0.38553137,-0.79905474,0.52761763,-0.28832477,-0.7992976,0.5272005,-0.28841484,-0.7880441,0.53191394,-0.30992597,-0.7764331,0.5361966,-0.33112663,-0.8675337,0.4963792,-0.031511206,-0.87031454,0.4924903,-0.0024424132,-0.8666284,0.49893904,0.003875152,-0.8765257,0.46693313,0.116945155,-0.876741,0.4579818,0.14689434,-0.83379966,0.535287,0.13507743,-0.79783076,0.5739366,0.18456122,-0.7781918,0.5970524,0.1947972,-0.7736203,0.6063015,0.18414694,-0.7315956,0.6498277,0.20613545,-0.7227972,0.65892667,0.2082784,-0.6466119,0.71472603,0.2665703,-0.63379955,0.73376346,0.244723,-0.6816737,0.7038634,0.19974308,-0.71823645,0.68150455,0.14031368,-0.7127531,0.696762,0.08065796,-0.67742294,0.7346255,0.037729338,-0.64600533,0.7546307,-0.11493308,-0.6503567,0.7546229,-0.087066054,-0.6305499,0.7546307,-0.18149194,-0.5882775,0.75463015,-0.29062507,-0.5675087,0.7546296,-0.32934484,-0.5616866,0.7465673,-0.35657468,-0.5721059,0.7357613,-0.3624228,-0.6033691,0.6846113,-0.40896577,-0.6969476,0.5829777,-0.41761354,-0.7531282,0.5447183,-0.3688901,-0.7975951,0.5301167,-0.28778192,-0.79808235,0.52928424,-0.28796312,-0.78707457,0.5335752,-0.30953386,-0.7759507,0.5370248,-0.3309154,-0.8414931,0.49763903,-0.21034443,-0.88303906,0.45100373,-0.12976004,-0.8643255,0.49965593,-0.05731745,-0.8672251,0.49697837,-0.030546842,-0.8700328,0.4929879,-0.0024156934,-0.8668457,0.49854526,0.005572333,-0.86576736,0.5004397,-0.002649486,-0.85938615,0.5104557,0.029840259,-0.87581754,0.4691818,0.11319026,-0.8763142,0.46735725,0.11683561,-0.77847296,0.5967516,0.19459553,-0.7755604,0.6063937,0.17547886,-0.7724674,0.6084733,0.18180852,-0.76459676,0.6211017,0.17211764,-0.64633393,0.71602833,0.2637345,-0.682073,0.70354706,0.19949436,-0.71847963,0.6811708,0.14068861,-0.713438,0.69608104,0.08048239,-0.7361915,0.67096955,0.08844163,-0.68566775,0.72491604,0.06600341,-0.6684479,0.74369824,0.009501398,-0.67775995,0.7343508,0.037018087,-0.6451321,0.7546307,-0.119737126,-0.6500282,0.7546229,-0.089485265,-0.62560964,0.75463045,-0.19785225,-0.631883,0.7546307,-0.17679471,-0.5805093,0.7546299,-0.30584747,-0.5904239,0.75463015,-0.2862394,-0.5669292,0.73593265,-0.37012753,-0.5976478,0.6955256,-0.3988249,-0.6987952,0.5826141,-0.41502538,-0.75105405,0.5464952,-0.37048724,-0.8016903,0.5300533,-0.27628994,-0.7900321,0.53353304,-0.30197984,-0.79897845,0.5300956,-0.28395787,-0.777541,0.53700376,-0.3271955,-0.87570035,0.4628043,-0.13769919,-0.7727253,0.6080519,0.18212228,-0.76112217,0.6230267,0.18036282,-0.7323032,0.6488672,0.20664807,-0.70023847,0.6668729,0.2548464,-0.650652,0.70900244,0.2719697,-0.68833274,0.69864243,0.19518408,-0.71876967,0.6808376,0.14082043,-0.7144342,0.69503987,0.08064342,-0.7381072,0.6688177,0.08877256,-0.66881776,0.743378,0.0084844995,-0.6779636,0.73418826,0.036509797,-0.65206826,0.75319463,-0.08663039,-0.6263416,0.75463045,-0.19552292,-0.6331812,0.7546307,-0.17208716,-0.5816433,0.7546299,-0.30368543,-0.5925376,0.75463015,-0.28183785,-0.56727237,0.73557484,-0.37031302,-0.61093843,0.67730033,-0.4099006,-0.6007807,0.6922259,-0.3998573,-0.59030443,0.70686096,-0.38972843,-0.64244735,0.63989747,-0.42165455,-0.6981464,0.5832359,-0.41524392,-0.7466706,0.54999036,-0.37415716,-0.80328214,0.53002787,-0.27167684,-0.79119486,0.5335161,-0.2989503,-0.8022239,0.53004485,-0.27475327,-0.77817225,0.5369953,-0.3257054,-0.83210707,0.51060593,-0.21651669,-0.87512964,0.4636857,-0.13836043,-0.86319476,0.4855704,0.13826142,-0.8047219,0.56821334,0.17191927,-0.7014468,0.6661403,0.25343546,-0.64655185,0.7157135,0.26405475,-0.70774513,0.6875152,0.16254124,-0.69601494,0.69413525,0.18368313,-0.68360597,0.70069706,0.2042216,-0.69934547,0.7112535,0.07095298,-0.71258605,0.6973731,0.07675914,-0.72550863,0.683226,0.082700975,-0.67817265,0.73404765,0.035438094,-0.6541533,0.75194657,-0.08160792,-0.6499237,0.75329024,-0.10076231,-0.65781444,0.75059974,-0.062290773,-0.6270647,0.75463045,-0.19319111,-0.6344443,0.7546307,-0.1673706,-0.58276916,0.7546299,-0.30151916,-0.59461844,0.75463015,-0.2774207,-0.5556714,0.7519814,-0.35461724,-0.5679055,0.73562676,-0.36923793,-0.6437302,0.644391,-0.41276097,-0.6230064,0.67083085,-0.4023046,-0.6015906,0.6964443,-0.39122134,-0.69450223,0.5911261,-0.4101666,-0.7413298,0.55290693,-0.38042614,-0.80406827,0.5300148,-0.26936686,-0.791772,0.5335074,-0.29743394,-0.8035449,0.5300235,-0.2709071,-0.77848685,0.536991,-0.32495993,-0.83186394,0.511419,-0.21552947,-0.8736717,0.465832,-0.1403505,-0.88262135,0.45268336,-0.12671751,-0.86432385,0.47887868,-0.15368636,-0.8683784,0.48309132,0.11198961,-0.865396,0.48112544,0.14002885,-0.8137053,0.55901515,0.15932904,-0.7026014,0.6656076,0.2516305,-0.7193583,0.68025684,0.14062074,-0.70819473,0.6870834,0.16240872,-0.69631964,0.6938499,0.18360648,-0.707895,0.6873713,0.16249704,-0.6837605,0.7005557,0.20418921,-0.6879942,0.725268,0.025501335,-0.68718183,0.72506505,0.04540767,-0.70580363,0.7069347,0.045657057,-0.7225246,0.6881136,0.06676743,-0.65863603,0.7492529,-0.06941615,-0.6523748,0.75194806,-0.0947695,-0.6638968,0.7465453,-0.043716166,-0.6277792,0.75463045,-0.19085662,-0.6356722,0.7546307,-0.16264479,-0.5838871,0.7546299,-0.2993486,-0.59666663,0.75463015,-0.2729877,-0.56755984,0.73548704,-0.37004688,-0.6439631,0.64475113,-0.41183433,-0.64388573,0.6446311,-0.41214317,-0.62314683,0.6710637,-0.40169817,-0.60165346,0.6965569,-0.3909241,-0.71900636,0.5790765,-0.38431793,-0.7419769,0.559923,-0.36872286,-0.6953899,0.59791565,-0.3986599,-0.83188564,0.5122635,-0.21343023,-0.88827354,0.44458088,-0.11540353,-0.87211734,0.46836805,-0.14157219,-0.8611951,0.50097835,0.08581191,-0.86547846,0.481106,0.13958506,-0.79970104,0.57472277,0.17370084,-0.8112017,0.5621242,0.16114648,-0.8223152,0.54939383,0.14820305,-0.7203115,0.6794713,0.13953541,-0.7089393,0.6864995,0.16162774,-0.6968348,0.6934641,0.18310855,-0.70844305,0.6868888,0.16214854,-0.6840271,0.70036453,0.20395206,-0.7066379,0.706052,0.04640446,-0.72291905,0.687661,0.06716016,-0.68843347,0.72483855,0.025854483,-0.7237064,0.6867549,0.06794657,-0.7395861,0.66696113,0.090416975,-0.6442233,0.7546307,-0.12453445,-0.65183574,0.75194806,-0.098409005,-0.6583732,0.7492529,-0.071866296,-0.65219736,0.75194806,-0.095983006,-0.66381437,0.7465453,-0.04495119,-0.62848496,0.75463045,-0.1885195,-0.63686496,0.7546307,-0.15790996,-0.5849969,0.7546299,-0.29717404,-0.5986815,0.75463015,-0.26854014,-0.5713608,0.74527,-0.343685,-0.6460585,0.6445381,-0.40887538,-0.62451726,0.6709259,-0.3997956,-0.6446631,0.6446801,-0.41084915,-0.6023242,0.6964903,-0.3900089,-0.7708842,0.55307007,-0.31599203,-0.74918944,0.57233244,-0.3333928,-0.75689584,0.55650127,-0.34265885,-0.80006725,0.53812194,-0.2651739,-0.78391796,0.5496295,-0.2887559,-0.7669452,0.5610337,-0.3115064,-0.7306926,0.5835235,-0.35438478,-0.73454475,0.5757094,-0.35916933,-0.7114982,0.5946049,-0.37445346,-0.6916505,0.6055744,-0.39357245,-0.8319967,0.51230997,-0.21288522,-0.8717163,0.46905652,-0.14176255,-0.8654783,0.50004786,-0.029991334,-0.86044854,0.50156814,0.089765094,-0.79843867,0.57660323,0.17327535,-0.81037486,0.56339157,0.16088061,-0.7992807,0.5753499,0.17355905,-0.8219094,0.55003417,0.14807872,-0.70969945,0.6859872,0.1604625,-0.69736826,0.6931257,0.18235761,-0.709193,0.6863287,0.16123953,-0.68430644,0.700197,0.20358998,-0.6885799,0.7248315,0.021840865,-0.7068177,0.7060472,0.043658003,-0.6884849,0.7248362,0.024516657,-0.7238394,0.68675244,0.06654024,-0.6432786,0.7546307,-0.12932557,-0.65127623,0.75194806,-0.1020459,-0.6581012,0.7492529,-0.07431576,-0.6516515,0.75194806,-0.099621646,-0.6637296,0.7465453,-0.04618622,-0.6291821,0.75463045,-0.18617952,-0.6380225,0.7546307,-0.15316586,-0.5860985,0.7546299,-0.29499534,-0.60066324,0.75463015,-0.26407766,-0.571493,0.7449239,-0.34421524,-0.6462881,0.64450383,-0.4085664,-0.62466794,0.67090386,-0.39959732,-0.646135,0.64452666,-0.40877244,-0.60239816,0.69647956,-0.3899137,-0.80011255,0.53809935,-0.26508307,-0.7839594,0.5496103,-0.28868008,-0.8000866,0.5381123,-0.26513502,-0.78393185,0.5496231,-0.28873062,-0.7669818,0.5610179,-0.311445,-0.7492202,0.57231987,-0.3333453,-0.7669672,0.5610242,-0.31146953,-0.8000737,0.5381187,-0.26516098,-0.73071694,0.58351415,-0.3543501,-0.71151507,0.5945987,-0.37443113,-0.73070073,0.5835204,-0.35437322,-0.6916592,0.6055714,-0.39356172,-0.7669598,0.56102735,-0.31148186,-0.8420681,0.5044847,-0.19083107,-0.83359617,0.5118367,-0.20770311,-0.82472914,0.5191515,-0.2242846,-0.87014717,0.47123066,-0.14417228,-0.8790358,0.45864993,-0.13013999,-0.86086273,0.4837161,-0.15790533,-0.86545485,0.50006676,-0.030349374,-0.86427945,0.48908988,0.11752497,-0.8602522,0.49177,0.13464203,-0.79074836,0.58910924,0.16633524,-0.8053339,0.571839,0.1563252,-0.8194332,0.55431145,0.14583544,-0.7028656,0.6659764,0.24991073,-0.71275,0.6839886,0.15539306,-0.699522,0.6918063,0.17908926,-0.71072096,0.6853215,0.15877701,-0.6854407,0.6995438,0.20201373,-0.68829155,0.72539794,0.0072532785,-0.70697665,0.70643544,0.033659864,-0.6885182,0.72502035,0.016976269,-0.7241033,0.68695176,0.06141478,-0.64229846,0.7546307,-0.13410884,-0.6506966,0.75194806,-0.10567908,-0.65782017,0.7492529,-0.07676379,-0.65108526,0.75194806,-0.10325734,-0.6636425,0.7465453,-0.04742085,-0.6298705,0.75463045,-0.1838372,-0.6391446,0.7546307,-0.14841379,-0.58719224,0.7546299,-0.29281232,-0.60261196,0.75463015,-0.25960004,-0.5718037,0.7439457,-0.345811,-0.57270426,0.7326722,-0.36769724,-0.64850426,0.6441417,-0.4056152,-0.62612474,0.6706697,-0.39770597,-0.6470283,0.6443832,-0.40758398,-0.60311484,0.69636625,-0.3890071,-0.833562,0.5118664,-0.207767,-0.8247113,0.51916623,-0.22431585,-0.8420518,0.5044996,-0.19086356,-0.8246757,0.5191957,-0.22437872,-0.86575264,0.4786925,-0.14603344,-0.86544615,0.50098354,-0.004304293,-0.86526847,0.5003387,-0.031171544,-0.8638807,0.490443,0.11478559,-0.79064834,0.589322,0.16605665,-0.80526775,0.571983,0.15613866,-0.790715,0.5891802,0.16624239,-0.8194005,0.5543845,0.14574175,-0.73558694,0.64819187,0.19687346,-0.6793821,0.69171923,0.24487649,-0.72683567,0.6748365,0.1276933,-0.7141553,0.6830569,0.15302095,-0.7005182,0.6911917,0.17756237,-0.7132195,0.6836781,0.15460324,-0.68596697,0.69923973,0.2012787,-0.6741882,0.7337663,-0.084007286,-0.6720005,0.7388163,-0.050652154,-0.6587974,0.74428934,-0.10963265,-0.68496215,0.72819954,-0.023501303,-0.6868942,0.7256369,-0.040341925,-0.7013692,0.71218574,-0.029540995,-0.68840104,0.72306424,-0.057289757,-0.71302956,0.7011335,-0.0008258041,-0.7048875,0.7093165,0.00193172,-0.7233224,0.6899101,0.028787382,-0.73219186,0.6785184,0.059226677,-0.69510525,0.7188243,-0.010968439,-0.63055015,0.75463045,-0.18149233,-0.6402313,0.7546307,-0.14365353,-0.58827764,0.7546299,-0.29062548,-0.60452706,0.75463015,-0.25510854,-0.6492371,0.64386106,-0.4048878,-0.62661135,0.67048824,-0.39724514,-0.6487485,0.64404815,-0.40537304,-0.6033567,0.6962785,-0.388789,-0.83294755,0.5126279,-0.208353,-0.82435983,0.5195745,-0.22466254,-0.84175384,0.5048824,-0.19116563,-0.82372713,0.5203319,-0.22522953,-0.8141025,0.527994,-0.24178396,-0.8040843,0.53561324,-0.25800553,-0.79436696,0.5424444,-0.27337733,-0.80441815,0.5352387,-0.25774217,-0.7936834,0.54318905,-0.27388376,-0.78326046,0.5503509,-0.2891659,-0.78291065,0.550721,-0.28940845,-0.7717777,0.5582083,-0.3045696,-0.8050849,0.5344895,-0.25721446,-0.7602961,0.56565046,-0.31935784,-0.74847764,0.5730468,-0.33376417,-0.73671263,0.5800356,-0.3475819,-0.73633474,0.5803967,-0.34777975,-0.72387975,0.5876997,-0.36139607,-0.71112525,0.59495515,-0.3746054,-0.6980842,0.60216236,-0.38740024,-0.8646088,0.4815991,-0.14322701,-0.8647757,0.5021196,-0.006234162,-0.86490464,0.50090706,-0.03212644,-0.85934615,0.49922588,0.11089477,-0.78264767,0.60055256,0.16370484,-0.8000871,0.5795989,0.15467936,-0.78799886,0.59307843,0.16527481,-0.81688917,0.5582548,0.14506422,-0.7380454,0.6462508,0.19403338,-0.71523654,0.68233526,0.15117976,-0.7012864,0.6907157,0.17637815,-0.71451634,0.68281645,0.15240782,-0.6863736,0.69900435,0.20070922,-0.7133968,0.70076036,-0.000061517654,-0.7132745,0.70088476,-0.0003164239,-0.70190686,0.7116959,-0.028558755,-0.7235421,0.68965757,0.029313957,-0.73228866,0.67839026,0.059497852,-0.6745021,0.73352927,-0.08355691,-0.68854713,0.7229437,-0.057054132,-0.65896463,0.7441729,-0.10941846,-0.688839,0.72270274,-0.056582768,-0.72397983,0.68915236,0.030368164,-0.7324816,0.6781341,0.06004049,-0.713641,0.7005115,0.0004483867,-0.73286635,0.67762125,0.061126508,-0.74024713,0.6659211,0.092646,-0.6312211,0.75463045,-0.17914467,-0.6252407,0.75463027,-0.19901583,-0.6365703,0.75463057,-0.1590943,-0.64128274,0.7546307,-0.13888475,-0.5893549,0.7546299,-0.28843462,-0.5799394,0.75462973,-0.30692714,-0.5981809,0.75463,-0.26965365,-0.6064087,0.75463015,-0.2506029,-0.57407254,0.7388325,-0.35294095,-0.7022311,0.61591405,-0.3571013,-0.727096,0.6016392,-0.33069876,-0.7288291,0.6153978,-0.3001561,-0.71609646,0.61565596,-0.32889766,-0.68725586,0.6161721,-0.3847224,-0.7390751,0.5944284,-0.31689572,-0.7507351,0.5871696,-0.30270234,-0.7939448,0.5576646,-0.24220218,-0.7834821,0.5579365,-0.2736104,-0.8232644,0.52771574,-0.2091692,-0.83701897,0.5124873,-0.19171874,-0.8088977,0.54277647,-0.2260051,-0.76239026,0.58690435,-0.27258825,-0.7673601,0.57264405,-0.2885088,-0.7784329,0.5723755,-0.25773722,-0.7458457,0.60124665,-0.2867344,-0.6798134,0.6433596,-0.35205424,-0.66505015,0.64361036,-0.37877965,-0.68381447,0.6298623,-0.36833575,-0.6566645,0.67000204,-0.34624994,-0.6611357,0.6569068,-0.36245427,-0.6684043,0.6301167,-0.39520705,-0.6935028,0.6431088,-0.32475376,-0.6981445,0.62960786,-0.34086394,-0.711371,0.6293533,-0.3128349,-0.67525643,0.6566598,-0.33589682,-0.6421444,0.6702452,-0.3720511,-0.6185775,0.6960434,-0.3645347,-0.6228733,0.6833705,-0.38083282,-0.6377603,0.6831313,-0.35579982,-0.59915024,0.70873415,-0.37244442,-0.64597124,0.6571538,-0.38842,-0.8643915,0.4818612,-0.14365615,-0.8635783,0.5041898,-0.0050038113,-0.8643269,0.5019434,-0.031492844,-0.859637,0.502166,0.09409324,-0.763103,0.62291336,0.17219959,-0.7815624,0.6019392,0.16379693,-0.7993879,0.58054125,0.15476039,-0.7822861,0.601015,0.1637357,-0.8165523,0.5587346,0.14511414,-0.7111111,0.6664076,0.22410251,-0.67171645,0.7014509,0.23825125,-0.72532296,0.6756935,0.13170007,-0.70857716,0.6863416,0.16387069,-0.71866345,0.6801275,0.1447393,-0.6902871,0.6968446,0.19470826,-0.71399677,0.70014787,0.0012719294,-0.7138783,0.70026916,0.0009972671,-0.7024329,0.7112186,-0.027498486,-0.72419006,0.6889062,0.030934725,-0.7329574,0.6774963,0.061417773,-0.6748133,0.7332984,-0.08306877,-0.68898296,0.7225854,-0.056328014,-0.6591313,0.7440594,-0.10918584,-0.6892706,0.7223506,-0.055818122,-0.72460896,0.68841374,0.032068685,-0.7331392,0.6772465,0.06200054,-0.7142333,0.6999054,0.001821357,-0.7335012,0.6767466,0.06316707,-0.74085534,0.66490704,0.095036656,-0.6318833,0.75463045,-0.1767948,-0.6256098,0.75463027,-0.1978523,-0.6374483,0.75463057,-0.15553905,-0.59042406,0.7546299,-0.28623965,-0.58050936,0.75462973,-0.3058477,-0.5996767,0.75463,-0.26631057,-0.608257,0.75463015,-0.2460829,-0.5754694,0.7381412,-0.35211167,-0.8376053,0.5120489,-0.19032449,-0.8238457,0.52731097,-0.20789768,-0.83729285,0.5122827,-0.1910683,-0.8235138,0.5275423,-0.20862444,-0.8094678,0.5424048,-0.22485314,-0.79449797,0.55732554,-0.24116641,-0.80929255,0.54251915,-0.22520773,-0.8371364,0.5123996,-0.19144002,-0.7941293,0.55755156,-0.24185705,-0.77896357,0.57206845,-0.25681397,-0.7628931,0.5866288,-0.27177352,-0.7787708,0.5721801,-0.25714982,-0.76269203,0.586739,-0.27209952,-0.74631566,0.60100186,-0.28602397,-0.7292614,0.6151832,-0.29954538,-0.7462113,0.6010563,-0.28618193,-0.77867424,0.57223594,-0.2573177,-0.8090294,0.5426907,-0.22573939,-0.8233476,0.5276579,-0.20898765,-0.8092049,0.5425763,-0.22538498,-0.8370581,0.5124581,-0.19162583,-0.71176124,0.6291682,-0.31231922,-0.6938469,0.6429524,-0.32432812,-0.7115383,0.629274,-0.31261393,-0.69361746,0.64305663,-0.3246119,-0.6755505,0.65653145,-0.33555624,-0.6569053,0.66990095,-0.34598866,-0.67543286,0.6565828,-0.33569255,-0.71142673,0.6293269,-0.31276125,-0.63794464,0.6830567,-0.35561237,-0.6187026,0.6959945,-0.36441568,-0.6378218,0.6831064,-0.35573724,-0.5992138,0.70871013,-0.37238806,-0.6753741,0.65660846,-0.33576053,-0.74605465,0.6011379,-0.28641877,-0.7625915,0.58679414,-0.27226245,-0.7785295,0.5723196,-0.25756943,-0.746159,0.6010835,-0.28626084,-0.8089855,0.54271924,-0.22582796,-0.7785778,0.57229173,-0.25748554,-0.86345613,0.48420796,-0.14137219,-0.86391026,0.50271094,-0.030672297,-0.85766625,0.5057551,0.092845894,-0.7809659,0.602679,0.1639215,-0.799004,0.58104426,0.15485525,-0.78136367,0.60218585,0.1638385,-0.81636745,0.55899084,0.14516723,-0.7063865,0.6712014,0.22473714,-0.6737644,0.6997147,0.23757268,-0.6476927,0.744059,-0.16392168,-0.66307974,0.733298,-0.1503307,-0.64184135,0.7440589,-0.18551573,-0.6304737,0.7493684,-0.20236094,-0.6527168,0.738702,-0.1681671,-0.68218917,0.72235024,-0.11326126,-0.67165375,0.7332983,-0.10561632,-0.6677411,0.7332982,-0.1280453,-0.6729103,0.7278473,-0.13202302,-0.68559873,0.72235036,-0.090356834,-0.6908977,0.7168071,-0.09406338,-0.6990178,0.7112183,-0.07444806,-0.6572108,0.7440594,-0.12020661,-0.71342397,0.69990516,-0.034043435,-0.70111847,0.7112185,-0.05100186,-0.70653224,0.7055842,-0.05443472,-0.71416366,0.69990534,-0.010137474,-0.7196772,0.6941815,-0.013294961,-0.7252765,0.6884136,0.007789422,-0.7302074,0.6826018,0.029187642,-0.734456,0.67674655,0.050877046,-0.7380094,0.67084813,0.072834596,-0.591485,0.7546299,-0.28404087,-0.60017115,0.75463,-0.26519448,-0.5810774,0.75462973,-0.30476722,-0.60115373,0.75463,-0.26295957,-0.61007136,0.75463015,-0.24154978,-0.6546876,0.6790477,-0.33208188,-0.6744375,0.6611914,-0.3285726,-0.69142395,0.65239185,-0.310351,-0.67323136,0.665826,-0.32161352,-0.6900734,0.65707403,-0.30340144,-0.7078291,0.6435034,-0.291344,-0.72361815,0.6345273,-0.27157298,-0.7070928,0.6458711,-0.28787187,-0.6725935,0.66813374,-0.3181436,-0.6177385,0.7004291,-0.35748878,-0.6369321,0.68756795,-0.3486659,-0.63639075,0.6898137,-0.3452014,-0.5987671,0.71089184,-0.36893198,-0.71054333,0.633971,-0.30530143,-0.79140884,0.5675692,-0.2270182,-0.7767684,0.57966495,-0.2462101,-0.7615099,0.5916342,-0.26471052,-0.77825505,0.5746061,-0.25327244,-0.7456637,0.6034745,-0.28249627,-0.8079103,0.5475986,-0.21775363,-0.82222843,0.53256416,-0.20078813,-0.83677775,0.51470685,-0.18676153,-0.8070971,0.5501876,-0.21421473,-0.74282426,0.61330694,-0.26845258,-0.7584661,0.60157686,-0.25066808,-0.7751896,0.5847015,-0.23917641,-0.74126613,0.6181879,-0.26147318,-0.64914006,0.69702715,-0.3045823,-0.6326548,0.7031482,-0.3245466,-0.61553,0.7092176,-0.343705,-0.6352381,0.69428515,-0.33829072,-0.59780335,0.7152349,-0.36203614,-0.6870956,0.6663627,-0.28958672,-0.67124826,0.6727299,-0.3112238,-0.70555127,0.6505879,-0.28094968,-0.6682814,0.6818447,-0.29746887,-0.59301805,0.73233086,-0.33469558,-0.586705,0.72678906,-0.35714817,-0.610003,0.72646666,-0.31645292,-0.6297032,0.71190333,-0.310914,-0.59007215,0.74071085,-0.32118878,-0.86171865,0.48851186,-0.1371028,-0.8614541,0.50777256,0.007985934,-0.8629571,0.50508446,-0.013954057,-0.8638919,0.5023915,-0.03596497,-0.8581014,0.50726885,0.079625726,-0.85637176,0.5056729,0.10451,-0.859106,0.5088631,0.054728787,-0.6907019,0.6882782,0.22181983,-0.6742846,0.70235306,0.22812384,-0.7068164,0.6739393,0.21498016,-0.6169902,0.75463015,-0.22328551,-0.62904656,0.7493684,-0.20675457,-0.64061975,0.7440589,-0.18969108,-0.6413212,0.7440589,-0.18730618,-0.6516881,0.738702,-0.1721105,-0.6622304,0.733298,-0.15402909,-0.65200716,0.738702,-0.17089783,-0.6301907,0.7493684,-0.20324056,-0.66279894,0.733298,-0.15156403,-0.672226,0.7278473,-0.13546388,-0.68165505,0.72235024,-0.11643285,-0.6724769,0.7278473,-0.13421305,-0.68187046,0.72235024,-0.11516451,-0.69049793,0.7168071,-0.096954584,-0.698736,0.7112183,-0.07704841,-0.6905878,0.7168071,-0.09631216,-0.6726014,0.7278473,-0.13358754,-0.65248156,0.738702,-0.1690777,-0.6416685,0.7440589,-0.18611278,-0.65216583,0.738702,-0.17029126,-0.6303795,0.7493684,-0.2026542,-0.7063513,0.7055842,-0.056734614,-0.7133262,0.69990516,-0.036034077,-0.7064556,0.7055842,-0.055420436,-0.713392,0.69990516,-0.034706958,-0.71964437,0.6941815,-0.014968386,-0.7252898,0.6884136,0.00644012,-0.71965796,0.6941815,-0.014299059,-0.70650685,0.7055842,-0.054763272,-0.73024744,0.6826018,0.028168634,-0.73450303,0.67674655,0.05019375,-0.73022085,0.6826018,0.028847978,-0.7380432,0.67084813,0.0724913,-0.7196645,0.6941815,-0.013964306,-0.6907215,0.7168071,-0.095348544,-0.6819773,0.72235024,-0.1145302,-0.67278713,0.7278473,-0.1326489,-0.6906325,0.7168071,-0.095991,-0.6525601,0.738702,-0.16877417,-0.6727254,0.7278473,-0.13296175,-0.5925378,0.7546299,-0.28183812,-0.6016419,0.75463,-0.26184073,-0.5816434,0.75462973,-0.30368567,-0.60261196,0.75463,-0.25960037,-0.611852,0.75463015,-0.23700327,-0.84318197,0.51868844,-0.14144453,-0.85762775,0.4996455,-0.12177436,-0.83175224,0.5266346,-0.17562528,-0.8278854,0.53747743,-0.16038649,-0.8117736,0.5560032,-0.17856115,-0.7985384,0.5637261,-0.21106695,-0.7948837,0.57425684,-0.19593102,-0.77725476,0.5922293,-0.2124604,-0.76997966,0.5959781,-0.2279067,-0.75892735,0.6099119,-0.22811548,-0.7399437,0.6272959,-0.24286446,-0.7551381,0.61175686,-0.23562685,-0.78445184,0.5799657,-0.21971595,-0.81222373,0.5472656,-0.20197292,-0.8254923,0.5305906,-0.19244747,-0.83832955,0.51370764,-0.18250473,-0.7203474,0.64437276,-0.25667754,-0.70018345,0.6611342,-0.2695269,-0.69152576,0.6646235,-0.28296244,-0.6794981,0.6775719,-0.28138706,-0.65833867,0.69367796,-0.29223466,-0.6750598,0.6792838,-0.28786752,-0.7077179,0.6497027,-0.2775278,-0.6367537,0.70944434,-0.30204868,-0.6147927,0.72486347,-0.31081015,-0.63206774,0.71108466,-0.30797562,-0.59250575,0.73992765,-0.3185028,-0.6728164,0.68013835,-0.29108402,-0.76622117,0.5978476,-0.23554908,-0.7789557,0.5828095,-0.23143248,-0.7532141,0.61267805,-0.23936176,-0.8105365,0.5482403,-0.20606601,-0.8534843,0.5108749,0.10281736,-0.8544505,0.50914305,0.10338103,-0.85614187,0.5107353,0.07855315,-0.8581098,0.51059544,0.054220907,-0.6777794,0.6994596,0.22665256,-0.69299126,0.6863137,0.22076386,-0.70793945,0.6729397,0.21441527,-0.61531156,0.75463015,-0.22787063,-0.62758887,0.7493684,-0.21113795,-0.6393711,0.7440589,-0.19385825,-0.64008796,0.7440589,-0.19147797,-0.6506356,0.738702,-0.17604756,-0.66136044,0.733298,-0.15772267,-0.650962,0.738702,-0.17483683,-0.6287574,0.7493684,-0.20763202,-0.66194266,0.733298,-0.15526082,-0.67152417,0.7278473,-0.13890126,-0.68110615,0.72235024,-0.11960193,-0.6717814,0.7278473,-0.13765174,-0.68132746,0.72235024,-0.1183346,-0.69008607,0.7168071,-0.099844,-0.6984445,0.7112183,-0.0796477,-0.69017863,0.7168071,-0.099202044,-0.6719092,0.7278473,-0.1370268,-0.65144736,0.738702,-0.17301959,-0.6404431,0.7440589,-0.19028683,-0.65112436,0.738702,-0.17423125,-0.62895036,0.7493684,-0.20704699,-0.7061628,0.7055842,-0.059033997,-0.71322286,0.69990516,-0.038024604,-0.70627147,0.7055842,-0.057720166,-0.7132924,0.69990516,-0.036697675,-0.7196076,0.6941815,-0.016641902,-0.7253005,0.6884136,0.005090794,-0.7196228,0.6941815,-0.015972609,-0.7063248,0.7055842,-0.057063174,-0.730286,0.6826018,0.027149748,-0.7345494,0.67674655,0.04951059,-0.73026043,0.6826018,0.027829127,-0.7380768,0.67084813,0.07214808,-0.7196301,0.6941815,-0.01563787,-0.6903164,0.7168071,-0.098239005,-0.68143725,0.72235024,-0.117700785,-0.6720997,0.7278473,-0.13608919,-0.6902247,0.7168071,-0.098881,-0.6515277,0.738702,-0.17271663,-0.67203635,0.7278473,-0.13640174,-0.59358245,0.7546299,-0.2796312,-0.6030939,0.75463,-0.25847867,-0.58220744,0.75462973,-0.3026029,-0.6040516,0.75463,-0.2562327,-0.6135988,0.75463015,-0.23244312,-0.8552821,0.5062028,-0.11068511,-0.8523666,0.5136612,-0.098098725,-0.8385291,0.5316008,-0.11945538,-0.84128183,0.52423704,-0.13198647,-0.8237977,0.54930496,-0.14007655,-0.80820894,0.56676596,-0.15992069,-0.8251258,0.5456772,-0.14630032,-0.85664606,0.50245935,-0.117013484,-0.810648,0.55960137,-0.17232567,-0.7918015,0.5839759,-0.17894837,-0.77461547,0.6009274,-0.19712204,-0.79297704,0.5804513,-0.18510488,-0.77571815,0.5974566,-0.20324133,-0.7566932,0.6176128,-0.21440583,-0.73807836,0.6340246,-0.23076627,-0.75721705,0.6159065,-0.21744321,-0.7935414,0.5786848,-0.18819132,-0.8257665,0.5438595,-0.14942078,-0.8270008,0.54021645,-0.15567863,-0.8425643,0.5205404,-0.13828619,-0.85730445,0.500584,-0.12018602,-0.657621,0.696794,-0.2863786,-0.6791261,0.67916447,-0.27843007,-0.69937927,0.66438055,-0.2635663,-0.67873853,0.6807539,-0.27547807,-0.6989538,0.665999,-0.26059335,-0.7190467,0.6493319,-0.2476689,-0.71881634,0.6501557,-0.24617185,-0.67853886,0.6815474,-0.27400383,-0.6144793,0.72635496,-0.3079345,-0.6364223,0.71097034,-0.29914525,-0.6362507,0.71173203,-0.29769537,-0.59235924,0.74065626,-0.31707862,-0.71992946,0.6460288,-0.2536696,-0.75797355,0.6133417,-0.22200929,-0.77624595,0.595717,-0.20630912,-0.7943585,0.57603014,-0.19283116,-0.75747305,0.6150523,-0.21896397,-0.8272996,0.539304,-0.1572466,-0.79381764,0.57780063,-0.18973666,-0.8530332,0.5116665,0.10262437,-0.8531836,0.5114027,0.1026887,-0.8495449,0.51206994,0.12671962,-0.85583776,0.5112631,0.07843306,-0.85795623,0.5108594,0.054165207,-0.70909756,0.6736425,0.20829403,-0.68603545,0.69325805,0.22079095,-0.7314427,0.65354055,0.1946184,-0.6261006,0.7493684,-0.21551107,-0.63809526,0.7440589,-0.19801734,-0.6388276,0.7440589,-0.19564179,-0.64955926,0.738702,-0.17997827,-0.6604699,0.733298,-0.16141133,-0.649893,0.738702,-0.17876953,-0.62729365,0.7493684,-0.21201338,-0.6610658,0.733298,-0.15895277,-0.67080474,0.7278473,-0.14233503,-0.6805425,0.72235024,-0.12276842,-0.6710684,0.7278473,-0.14108683,-0.6807697,0.72235024,-0.121502124,-0.68966204,0.7168071,-0.10273168,-0.6981433,0.7112183,-0.08224589,-0.68975735,0.7168071,-0.102090195,-0.6711993,0.7278473,-0.14046246,-0.6503893,0.738702,-0.17695527,-0.6391905,0.7440589,-0.19445297,-0.650059,0.738702,-0.17816493,-0.6274906,0.7493684,-0.21142985,-0.7059669,0.7055842,-0.06133267,-0.713114,0.69990516,-0.04001467,-0.7060798,0.7055842,-0.060019195,-0.7131872,0.69990516,-0.038687937,-0.71956694,0.6941815,-0.018315328,-0.7253087,0.6884136,0.0037414518,-0.7195837,0.6941815,-0.017645901,-0.7061353,0.7055842,-0.05936238,-0.73032314,0.6826018,0.026130809,-0.7345951,0.67674655,0.048827205,-0.7302985,0.6826018,0.02681005,-0.7381103,0.67084813,0.07180475,-0.7195918,0.6941815,-0.017311351,-0.6898991,0.7168071,-0.101127654,-0.68088245,0.72235024,-0.12086883,-0.67139465,0.7278473,-0.13952585,-0.68980473,0.7168071,-0.10176935,-0.65047157,0.738702,-0.1766527,-0.6713297,0.7278473,-0.13983814,-0.6153025,0.74065655,-0.26987168,-0.6042921,0.74065644,-0.2936992,-0.61521065,0.7335464,-0.28883487,-0.6147624,0.7476848,-0.2510671,-0.5932887,0.7476845,-0.29828927,-0.626038,0.7263551,-0.28369823,-0.6367676,0.7190834,-0.27829123,-0.6366413,0.7263552,-0.2590289,-0.64739287,0.71173215,-0.27261654,-0.62537384,0.7406567,-0.24563229,-0.66830486,0.69679415,-0.26047358,-0.678579,0.689209,-0.25401092,-0.67796874,0.69679433,-0.23417112,-0.6887234,0.6815476,-0.24729124,-0.7085989,0.6659992,-0.23309368,-0.72348773,0.65015584,-0.2320839,-0.6934224,0.68154764,-0.23379089,-0.6462729,0.7263554,-0.2339642,-0.65754694,0.7117323,-0.2471216,-0.6622486,0.71173245,-0.23423019,-0.63005257,0.74065673,-0.23336962,-0.65790737,0.70430213,-0.2666765,-0.7644902,0.6176129,-0.18468614,-0.7465286,0.6340248,-0.20176119,-0.7607369,0.61761284,-0.19958408,-0.75383955,0.6340249,-0.17244817,-0.7817238,0.60092753,-0.16671553,-0.7951458,0.58397603,-0.1634477,-0.7679519,0.61761296,-0.16971776,-0.81383854,0.5667661,-0.12823044,-0.8263766,0.549305,-0.12395811,-0.8407024,0.53160083,-0.10305332,-0.8532841,0.5136612,-0.08976887,-0.8275479,0.54930514,-0.11588085,-0.7995931,0.58397615,-0.14008139,-0.78483105,0.60092765,-0.15141381,-0.7967043,0.5839761,-0.1556734,-0.7695729,0.617613,-0.16220887,-0.7299766,0.65015596,-0.21078755,-0.73395467,0.650156,-0.19648843,-0.72103465,0.6659994,-0.1911904,-0.7376527,0.6501561,-0.18211415,-0.7130168,0.66599923,-0.2192078,-0.7040085,0.6815478,-0.19966108,-0.6865978,0.69679445,-0.20751126,-0.6999743,0.68154776,-0.21337466,-0.7257199,0.65015584,-0.22500639,-0.66882664,0.7117325,-0.21472716,-0.6507195,0.7263555,-0.22129567,-0.6645047,0.71173245,-0.22775072,-0.63230175,0.7406568,-0.22720462,-0.6978568,0.6815477,-0.22020133,-0.85551685,0.51180923,0.07837197,-0.8527138,0.5122127,0.10255419,-0.85255396,0.5124856,0.10251909,-0.85779506,0.51113266,0.054139223,-0.7120703,0.6711876,0.20606606,-0.7328788,0.6522844,0.19342633,-0.68757135,0.69206196,0.21976343,-0.7357393,0.6497668,0.19102573,-0.72979367,0.6772851,-0.0931994,-0.7283601,0.6735405,-0.12583654,-0.74425423,0.6578387,-0.11547273,-0.7596727,0.6418456,-0.10455459,-0.7449591,0.6597488,-0.0988305,-0.7138234,0.6926157,-0.10363244,-0.71418536,0.6944448,-0.08766877,-0.74171156,0.6540058,-0.14879638,-0.75752664,0.63794345,-0.13849722,-0.74317205,0.6559244,-0.13213088,-0.7452881,0.66165453,-0.08221274,-0.76028556,0.6457311,-0.07069087,-0.7452424,0.6635561,-0.0656282,-0.7297537,0.68101215,-0.0606795,-0.7593765,0.64959997,-0.03697562,-0.74482375,0.66545343,-0.049085334,-0.71418655,0.6962694,-0.07173917,-0.74287504,0.66923505,-0.016158322,-0.7569599,0.6534521,-0.0034778684,-0.7413492,0.6711194,0.00020897617,-0.75305325,0.65728736,0.029734347,-0.73945886,0.6729995,0.016501194,-0.74767715,0.66110575,0.06259439,-0.72825325,0.6847217,-0.028343916,-0.7366742,0.67514515,-0.038602956,-0.67804354,0.7188295,-0.15343125,-0.67414016,0.71529025,-0.1841059,-0.6849881,0.7096891,-0.16471991,-0.69523203,0.70404273,-0.14483197,-0.69163376,0.7004276,-0.17619312,-0.6973989,0.70763963,-0.11349428,-0.65628576,0.72983617,-0.191385,-0.6627097,0.7208458,-0.20297065,-0.70874244,0.68525475,-0.16766049,-0.7254427,0.6697786,-0.15852296,-0.7188776,0.6794193,-0.14698459,-0.69797534,0.69104666,-0.18784288,-0.7317026,0.6600236,-0.17023553,-0.7120119,0.68894416,-0.13562843,-0.7048506,0.69835144,-0.1244624,-0.816181,0.5751037,-0.055716798,-0.82906145,0.55354106,-0.07905345,-0.83547527,0.5468755,-0.053928923,-0.84107053,0.540175,-0.028483825,-0.8289209,0.55776286,-0.042316943,-0.80949944,0.5816156,-0.08021163,-0.8028679,0.59218985,-0.06866135,-0.7889994,0.60901386,-0.081129484,-0.84766126,0.5248228,-0.07766311,-0.8537953,0.51801133,-0.05193988,-0.84172344,0.5358949,-0.065713696,-0.8220652,0.56855506,-0.030885827,-0.82713753,0.5619702,-0.005746385,-0.81491303,0.5792503,-0.01964349,-0.80209804,0.5962739,-0.033108126,-0.81203616,0.583382,0.016209427,-0.8074694,0.58984673,-0.008597727,-0.7959363,0.6026631,-0.057294253,-0.78130376,0.6153258,-0.10458759,-0.7938075,0.594528,-0.12808618,-0.7917839,0.6017957,-0.10449971,-0.77286637,0.6215986,-0.12764302,-0.80203605,0.5880906,-0.10434355,-0.7637053,0.6278318,-0.15027122,-0.82184386,0.5601715,-0.10382958,-0.81205714,0.57421446,-0.1041199,-0.7834446,0.62102526,0.023284307,-0.77850384,0.6249972,0.05753529,-0.76607394,0.6412843,0.043419745,-0.76846915,0.6393341,0.026590548,-0.79580945,0.60439575,0.0373228,-0.79797,0.6023711,0.019821808,-0.7601684,0.6451722,0.07679098,-0.76330596,0.6432303,0.06015597,-0.77048904,0.6373798,0.009676723,-0.7721309,0.6354214,-0.007313058,-0.78685284,0.61703736,-0.011290128,-0.7733925,0.63345885,-0.024370313,-0.7997398,0.60034263,0.0022438087,-0.77476597,0.62952167,-0.058652718,-0.77487415,0.62754697,-0.07586031,-0.77459455,0.6255682,-0.093100555,-0.7811933,0.62329936,-0.035141055,-0.78546524,0.61618197,-0.05800145,-0.85078764,0.51531976,0.102985196,-0.85435104,0.5137003,0.07871667,-0.8519663,0.51343095,0.10267489,-0.8572186,0.5120789,0.05432834,-0.6894333,0.6905712,0.21861675,-0.68881315,0.6910685,0.21899985,-0.7132711,0.67016727,0.20523201,-0.7363176,0.64924383,0.19057505,-0.7957485,0.60439396,0.038629998,-0.79576904,0.60439456,0.038194273,-0.81200045,0.58337957,0.017987877,-0.7784413,0.624996,0.05838783,-0.7601267,0.64517164,0.07720723,-0.841102,0.5401738,-0.027562814,-0.82714087,0.56196964,-0.0052935053,-0.8538241,0.51801074,-0.051472418,-0.82714707,0.5619684,-0.0043877405,-0.7783134,0.6249937,0.060092706,-0.7600427,0.64517045,0.07803967,-0.79570657,0.60439277,0.03950141,-0.75987184,0.6451682,0.07970435,-0.8502756,0.51613456,0.10313343,-0.8540137,0.5142442,0.07882543,-0.850617,0.5155915,0.10303471,-0.8570521,0.5123511,0.054387655,-0.69354457,0.6880759,0.2134186,-0.6921793,0.6889085,0.21515769,-0.7159075,0.6684612,0.20158379,-0.73757887,0.64837015,0.18866251,-0.78941494,0.6067511,0.09315136,-0.76546776,0.6362789,0.095959686,-0.77211916,0.63065296,0.078159094,-0.7840907,0.6159137,0.076499455,-0.80167365,0.5951283,0.056050353,-0.8070828,0.5892695,0.037132606,-0.7957815,0.60095555,0.07472764,-0.8335173,0.55235386,0.012416985,-0.83757037,0.54627824,-0.00748061,-0.8510216,0.52421623,-0.030977774,-0.858564,0.5099263,-0.053320818,-0.84266627,0.53836006,-0.009054172,-0.8235951,0.5661937,0.033403844,-0.8129217,0.5798757,0.053875167,-0.80152017,0.59339607,0.07380066,-0.7631972,0.63295,0.13001664,-0.75214714,0.6490694,0.11394569,-0.77663165,0.619937,0.11189904,-0.73820555,0.6616791,0.1312756,-0.7491393,0.64578664,0.14747854,-0.73448694,0.65844333,0.16425996,-0.71927005,0.6709165,0.1803375,-0.7035197,0.68320256,0.19568928,-0.68726754,0.69529825,0.21029441,-0.8491616,0.5178553,0.103683926,-0.85328484,0.515393,0.07921469,-0.8499047,0.5167084,0.103317104,-0.8566949,0.51292646,0.05459313,-0.7466578,0.64325887,0.16947049,-0.7254527,0.6634671,0.18311109,-0.7611826,0.630387,0.15235908,-0.7751009,0.61733943,0.13457602,-0.7825494,0.61205894,0.114018835,-0.7670816,0.6225922,0.15480563,-0.82415384,0.5634655,0.057245854,-0.80727047,0.58531684,0.07562157,-0.8291572,0.5579221,0.034946796,-0.8480211,0.5299055,-0.0077666463,-0.85750055,0.51280284,-0.041545585,-0.86160403,0.5041738,-0.05871288,-0.8368872,0.5467953,0.025193874,-0.8098814,0.57990927,0.08830247,-0.79413503,0.5961201,0.11828069,-0.7769846,0.61209154,0.14710173,-0.8452397,0.5237258,0.10621226,-0.8507364,0.5193162,0.08098301,-0.8478596,0.5198149,0.10453016,-0.8554549,0.5148929,0.055517435,-0.77879447,0.6100935,0.14582555,-0.79585713,0.59409153,0.11690455,-0.8106967,0.57888055,0.087568045,-0.7796969,0.609093,0.1451846,-0.82568353,0.5613783,0.05568689,-0.8376012,0.54573816,0.024373997,-0.84868103,0.5288347,-0.008624526,-0.8578027,0.5122609,-0.041991748,-0.83795744,0.5452092,0.023963565,-0.81191593,0.57733583,0.08646324,-0.79671544,0.5930758,0.11621379,-0.8111036,0.5783659,0.0872002,-0.7801474,0.6085924,0.14486344,-0.8569721,0.51397806,0.037755266,-0.8541319,0.51664966,0.059429523,-0.84928834,0.52106756,0.08484022,-0.8444569,0.524599,0.10811299,-0.85346234,0.5175272,0.061381306,-0.85981154,0.5104201,0.013981344,-0.86197525,0.5068532,-0.009920899,-0.86091214,0.5086556,0.009986904,-0.8634582,0.5032777,-0.033931915,-0.8378177,0.545393,0.02465659,-0.84835196,0.5293928,-0.0065053427,-0.8377477,0.54548484,0.025003072,-0.8484623,0.52920675,-0.007211516,-0.8575283,0.5129198,-0.039477568,-0.857568,0.51282567,-0.039836638,-0.837607,0.54566854,0.025695669,-0.82534426,0.56174105,0.057042535,-0.8116186,0.5776043,0.087455235,-0.81171787,0.5775148,0.08712461,-0.79648983,0.5932523,0.11685723,-0.7800215,0.60867935,0.1451756,-0.85764694,0.51263744,-0.040554784,-0.83938026,0.53198254,0.11151408,-0.84504956,0.52741504,0.08788989,-0.8422906,0.5277683,0.10957714,-0.84788185,0.5231867,0.085860975,-0.8500273,0.5228323,0.064031236,-0.8543046,0.5182343,0.039959207,-0.8514062,0.5207126,0.06297427,-0.8437364,0.5256562,0.10860208,-0.85787344,0.51362133,0.015695222,-0.860726,0.50899345,-0.008739337,-0.8591673,0.51148796,0.014553597,-0.8628556,0.5043509,-0.03332248,-0.8520932,0.51965165,0.062444277,-0.83694714,0.5464989,0.029297862,-0.8467871,0.53191304,0.0044900337,-0.83661115,0.54691386,0.031096991,-0.8473253,0.5310735,0.00082944956,-0.8562439,0.5158946,-0.026442185,-0.8564402,0.5154699,-0.02830154,-0.8359269,0.5477433,0.03469127,-0.8237084,0.56337994,0.064090535,-0.81018037,0.5788173,0.092619255,-0.8106636,0.5784131,0.09089959,-0.79539543,0.5940499,0.12021182,-0.7794093,0.60907245,0.14680563,-0.8568199,0.51462036,-0.03202313,-0.81473505,0.5656363,0.1275244,-0.82923096,0.5500283,0.099221356,-0.8126711,0.57224524,0.110004574,-0.83939517,0.541002,0.05227392,-0.8346553,0.54552305,0.07586264,-0.71997046,0.655875,0.2268709,-0.71907043,0.6565663,0.22772425,-0.7172075,0.65807235,0.22924714,-0.7179012,0.65771097,0.22811012,-0.719657,0.6564146,0.22630434,-0.72137535,0.655691,0.22290553,-0.722235,0.65561056,0.22034372,-0.72263175,0.6554909,0.21939692,-0.72362554,0.65506023,0.21739854,-0.7237688,0.6553184,0.21614031,-0.7239283,0.655283,0.21571296,-0.7244612,0.6550042,0.21476841,-0.724788,0.6549997,0.21367653,-0.72506917,0.6548226,0.21326515,-0.7254656,0.6544934,0.21292713,-0.72597414,0.653923,0.2129467,-0.72578317,0.65434515,0.21229967,-0.72641075,0.6538656,0.21163003,-0.72732043,0.6533103,0.21021567,-0.72835886,0.65243363,0.20934133,-0.72896206,0.65187544,0.2089801,-0.72955287,0.65128654,0.20875461,-0.7301181,0.65052503,0.20915261,-0.72961134,0.6507587,0.21019144,-0.7288907,0.6510627,0.21174411,-0.72981226,0.6503833,0.21065557,-0.7290797,0.6506778,0.21227618,-0.7284588,0.65077287,0.21410836,-0.7264238,0.6516163,0.2184141,-0.7264139,0.6514566,0.2189229,-0.72625375,0.6514921,0.21934794,-0.7232371,0.6531276,0.22439341,-0.7227572,0.6532967,0.22544494,-0.7218989,0.65376115,0.22684433,-0.72085243,0.6544161,0.22827911,-0.7202924,0.6546635,0.22933502,-0.7167156,0.6568581,0.23421411,-0.7173051,0.65664214,0.2330118,-0.7180212,0.6562571,0.23188822,-0.7178235,0.6567367,0.23114152,-0.71800613,0.6566749,0.23074934,-0.71866983,0.65637606,0.22953026,-0.7197217,0.6556923,0.22818492,-0.72321284,0.65513426,0.21854588,-0.72421217,0.65509367,0.21533461,-0.7286734,0.65131694,0.21171063,-0.72095764,0.6550222,0.22619894,-0.7203623,0.65595156,0.22540133,-0.72883743,0.6514579,0.21070996,-0.7285964,0.6515154,0.21136442,-0.7203484,0.6551864,0.22765964,-0.7207749,0.6549359,0.22702983,-0.6645742,0.69857746,0.26519924,-0.6640839,0.6988207,0.265786,-0.6637397,0.6992187,0.26559904,-0.6631184,0.7001417,0.26471794,-0.66319585,0.70036745,0.26392555,-0.6637116,0.70004195,0.26349223,-0.6647491,0.69921744,0.26306564,-0.6655524,0.6983445,0.26335335,-0.6656312,0.6981261,0.26373294,-0.6656126,0.6977868,0.2646764,-0.66536456,0.69802415,0.2646737,-0.6647729,0.69868356,0.26442063,-0.7316019,0.6496962,0.20652756,-0.73138416,0.64975125,0.20712446,-0.7309974,0.6500032,0.20769875,-0.73029655,0.6505949,0.20831041,-0.7299356,0.6509786,0.20837693,-0.72957015,0.6514275,0.20825379,-0.7295855,0.6515484,0.20782116,-0.7303823,0.65096766,0.20684008,-0.70911413,0.6603614,0.24714367,-0.70738673,0.66100174,0.25036103,-0.70703554,0.6615055,0.25002253,-0.70696795,0.66206074,0.24874064,-0.70731294,0.661947,0.24806161,-0.7085048,0.6609659,0.24727528,-0.70895976,0.6607747,0.2464809,-0.7097682,0.6621572,0.24036866,-0.7092608,0.6625147,0.24088025,-0.7074411,0.6646346,0.24039137,-0.7077535,0.664425,0.24005085,-0.7080193,0.66418743,0.23992439,-0.7087867,0.6634105,0.2398081,-0.7094256,0.6627023,0.23987669,-0.7099475,0.6622197,0.23966551,-0.70675105,0.6593387,0.2564672,-0.7062308,0.65955013,0.25735512,-0.7059075,0.6599837,0.25713035,-0.7050857,0.6612786,0.256056,-0.7053464,0.6609768,0.25611737,-0.70615464,0.66023207,0.25581095,-0.7071449,0.65982234,0.25412703,-0.70592976,0.6603748,0.25606298,-0.78540903,0.5854614,0.20091698,-0.785155,0.5857488,0.20107228,-0.7849131,0.5860989,0.20099609,-0.7846611,0.58651936,0.20075335,-0.78454524,0.58702445,0.19972743,-0.7916245,0.5766154,0.2021023,-0.79088354,0.57700384,0.2038865,-0.79036707,0.57757723,0.20426558,-0.78856206,0.5799728,0.20445377,-0.78739893,0.5816142,0.2042739,-0.7859778,0.58377504,0.20358214,-0.7855469,0.5845207,0.20310485,-0.78588283,0.5840428,0.20318021,-0.787409,0.5817272,0.20391281,-0.7904801,0.5775529,0.20389666,-0.7915809,0.57674,0.2019173,-0.7883421,0.5804115,0.20405687,-0.793538,0.57527435,0.19838578,-0.79220974,0.57629234,0.20072573,-0.79265636,0.57606316,0.19961725,-0.7935676,0.57533497,0.19809136,-0.8001851,0.5682961,0.19168553,-0.7999911,0.5684609,0.19200674,-0.7979469,0.57076603,0.19366711,-0.7961252,0.57270277,0.1954385,-0.79652655,0.5723562,0.19481745,-0.798672,0.57008773,0.19267312,-0.88694084,0.44506562,0.12350161,-0.8866631,0.44547313,0.124025315,-0.88677657,0.44558755,0.122797,-0.8867009,0.44583854,0.12243157,-0.88628614,0.44694814,0.12138455,-0.88676804,0.44590032,0.121718496,-0.8869482,0.44536468,0.12236475,-0.8864585,0.44609782,0.123239584,-0.88600206,0.4470151,0.12319852,-0.88520575,0.4487814,0.12249956,-0.8850347,0.4493304,0.12172029,-0.8858063,0.44763413,0.12235496,-0.89442044,0.42189434,0.1483821,-0.8925304,0.42486763,0.15125135,-0.8906927,0.42810884,0.1529357,-0.8908018,0.42800874,0.15258014,-0.8913155,0.42731005,0.15153465,-0.8923168,0.4254531,0.15086544,-0.8926741,0.42497867,0.15008707,-0.8930858,0.4242302,0.1497549,-0.8940211,0.4226391,0.14866892,-0.8917903,0.42631045,0.15155672,-0.87002754,0.49221802,-0.027810823,-0.869923,0.49243456,-0.027242668,-0.8696089,0.4930161,-0.026749909,-0.8693725,0.4934394,-0.026626972,-0.8692128,0.4937099,-0.02682526,-0.8690937,0.49389586,-0.02725901,-0.8686761,0.49456337,-0.028441222,-0.86862534,0.49460855,-0.029195467,-0.868873,0.4940982,-0.030442586,-0.8691989,0.49353355,-0.030296009,-0.87711704,0.467917,-0.1082564,-0.87713814,0.4679546,-0.107922085,-0.8763828,0.4697183,-0.1063852,-0.87594014,0.47083968,-0.10506588,-0.87554765,0.47151852,-0.10529283,-0.8755966,0.4712809,-0.10594817,-0.87629354,0.46968517,-0.10726403,-0.8765435,0.46917948,-0.1074342,-0.8755238,0.47175744,-0.10441729,-0.8755567,0.47182125,-0.10385215,-0.8749415,0.4737129,-0.10036609,-0.8746563,0.47466883,-0.09831451,-0.8743123,0.47534156,-0.09812491,-0.87432986,0.4752605,-0.09836003,-0.87456495,0.47471163,-0.098919354,-0.87450874,0.4746021,-0.09993666,-0.8750744,0.47300726,-0.10251337,-0.8751645,0.47258833,-0.10366948,-0.8817021,0.45775798,-0.11427553,-0.8813081,0.45865026,-0.11373652,-0.8795877,0.46238652,-0.111911364,-0.8776951,0.46672648,-0.10870901,-0.8779089,0.4660647,-0.10981664,-0.8796463,0.46210605,-0.112607576,-0.881039,0.4590879,-0.114055134,-0.87001973,0.48688918,-0.07748875,-0.8700059,0.48703516,-0.07672311,-0.86932826,0.48866507,-0.07399191,-0.8687193,0.48997688,-0.07245408,-0.8686258,0.49001107,-0.07333713,-0.86900276,0.48923233,-0.07406719,-0.8908782,0.44014195,-0.112299584,-0.89055103,0.44086945,-0.11204017,-0.88941455,0.44306803,-0.11239461,-0.88523775,0.45090032,-0.114206,-0.8820644,0.45704326,-0.114340775,-0.88278246,0.45554793,-0.1147659,-0.88498735,0.45119694,-0.114972726,-0.8890561,0.44353712,-0.11337551,-0.71516347,0.559515,-0.41890836,-0.71552974,0.55955243,-0.41823235,-0.71488714,0.5600693,-0.41863915,-0.7146747,0.56025285,-0.41875625,-0.71448725,0.5600072,-0.41940415,-0.71447486,0.55966896,-0.41987664,-0.72828066,0.5477871,-0.41174814,-0.7285847,0.5478142,-0.41117397,-0.7284291,0.5480366,-0.41115323,-0.72781366,0.54865235,-0.4114218,-0.72741884,0.5487606,-0.41197523,-0.7270896,0.5487065,-0.41262805,-0.7277638,0.5479225,-0.4124812,-0.7391893,0.5419796,-0.39982152,-0.7395195,0.5421128,-0.39902955,-0.73910874,0.5424336,-0.3993546,-0.7373206,0.54405206,-0.4004569,-0.73636615,0.5451171,-0.40076464,-0.73631394,0.54480267,-0.40128776,-0.7373735,0.5436959,-0.40084293,-0.7385683,0.54227895,-0.4005626,-0.7179441,0.5578158,-0.41641065,-0.71833724,0.5580181,-0.41546056,-0.7183091,0.5588071,-0.41444752,-0.7181357,0.5589745,-0.41452208,-0.71722335,0.55957645,-0.41528884,-0.7160213,0.5593935,-0.41760316,-0.71744597,0.55800676,-0.4170128,-0.7200382,0.5596047,-0.41035053,-0.71814203,0.56034535,-0.4126561,-0.71798545,0.5601738,-0.41316128,-0.71847224,0.5596584,-0.41301352,-0.71883756,0.55911934,-0.41310793,-0.71961415,0.5587265,-0.41228646,-0.721058,0.55928826,-0.40898898,-0.72096705,0.5596005,-0.40872228,-0.7206144,0.5599592,-0.40885276,-0.7358249,0.5491994,-0.39615875,-0.73485374,0.55027294,-0.39647153,-0.73430276,0.55070055,-0.39689854,-0.73264575,0.5516036,-0.39870247,-0.7326535,0.5514152,-0.3989488,-0.73292494,0.5510206,-0.3989953,-0.7329951,0.55094665,-0.3989687,-0.7336258,0.5506671,-0.3981945,-0.73425364,0.5498559,-0.39815843,-0.73475134,0.54927206,-0.39804602,-0.7352442,0.5493326,-0.39705116,-0.7333997,0.55087405,-0.39832485,-0.5555099,0.7506991,-0.35757446,-0.5551877,0.7509496,-0.35754904,-0.5540509,0.7513833,-0.3584002,-0.55396086,0.75134456,-0.3586206,-0.5538997,0.7510239,-0.3593859,-0.5540317,0.75071317,-0.35983127,-0.5544197,0.75041926,-0.3598469,-0.55535805,0.7500474,-0.35917458,-0.55519676,0.750253,-0.3589944,-0.5546894,0.75081056,-0.35861278,-0.5553493,0.75041753,-0.35841408,-0.55549216,0.75045526,-0.35811356,-0.55452013,0.7508573,-0.35877672,-0.5556275,0.74896586,-0.36100996,-0.5551459,0.7494005,-0.36084893,-0.55375844,0.7502643,-0.36118564,-0.5535311,0.75018483,-0.36169875,-0.5536999,0.74995774,-0.3619114,-0.5544635,0.74926,-0.3621873,-0.5547498,0.74904776,-0.3621881,-0.5552442,0.7488292,-0.36188227,-0.55615395,0.7485857,-0.36098796,-0.56391126,0.7434418,-0.35958084,-0.5621678,0.74497133,-0.35914484,-0.5615321,0.7454811,-0.3590817,-0.56121796,0.7456361,-0.3592508,-0.5605991,0.7458093,-0.35985714,-0.5604939,0.7459535,-0.35972208,-0.56085074,0.7465684,-0.35788554,-0.5605949,0.74688417,-0.3576275,-0.55994266,0.74732935,-0.35771912,-0.5595174,0.7475734,-0.35787472,-0.55932087,0.7476153,-0.35809436,-0.559433,0.7472303,-0.35872224,-0.55985403,0.74641645,-0.3597582,-0.56016076,0.74592966,-0.36029,-0.5603565,0.7457701,-0.36031592,-0.5612407,0.745172,-0.36017716,-0.561639,0.74496967,-0.3599747,-0.56191206,0.74491054,-0.35967094,-0.562265,0.7446444,-0.35967046,-0.5630892,0.7437871,-0.3601546,-0.5634411,0.7434908,-0.36021596,-0.5640601,0.74305695,-0.36014238,-0.564592,0.74292636,-0.3595779,-0.5649735,0.74272436,-0.35939598,-0.56548136,0.74234253,-0.35938615,-0.56579447,0.74218315,-0.3592224,-0.5659119,0.7422471,-0.3589052,-0.56584454,0.74242985,-0.35863328,-0.56533307,0.7429748,-0.35831118,-0.5634448,0.7440793,-0.35899308,-0.710172,0.66218525,0.23909499,-0.70985353,0.66242725,0.23937033,-0.70918304,0.6631726,0.23929368,-0.7089,0.6635584,0.23906289,-0.708996,0.6635418,0.23882413,-0.709686,0.6628166,0.23878859,-0.74234176,0.636474,0.2093552,-0.7402916,0.6385094,0.21041392,-0.73949,0.6393911,0.21055523,-0.74204034,0.6368656,0.20923266,-0.763819,0.6139004,0.19926582,-0.7634925,0.61412376,0.19982773,-0.7611257,0.6166569,0.20105226,-0.75976413,0.6181411,0.20164321,-0.75840163,0.61975294,0.20182481,-0.7591467,0.61895806,0.20146278,-0.76120645,0.6166555,0.20075028,-0.80011547,0.5685983,0.19107924,-0.80001855,0.56863195,0.19138476,-0.7998888,0.569201,0.19023195,-0.8000057,0.5692816,0.18949775,-0.8001157,0.56905943,0.1897003,-0.80013984,0.5687567,0.19050491,-0.89871424,0.41675565,0.13648269,-0.8984948,0.41708177,0.13693035,-0.89833546,0.41735372,0.13714659,-0.89821595,0.41763017,0.13708834,-0.89797986,0.41865975,0.13548496,-0.8981093,0.4183841,0.13547865,-0.8984867,0.41733193,0.13621934,-0.89870244,0.4168564,0.13625205,-0.89619577,0.41951004,0.14437617,-0.8961479,0.41951004,0.14467253,-0.8959144,0.41978544,0.14531882,-0.8958076,0.42001057,0.1453266,-0.8957638,0.4201853,0.14509143,-0.89606917,0.4197351,0.14450778,-0.89504355,0.42101103,0.1471283,-0.89494014,0.42108607,0.14754216,-0.8946268,0.42163634,0.14787032,-0.8946324,0.4216865,0.14769344,-0.8973113,0.41813332,0.14141081,-0.8970945,0.41830906,0.14226376,-0.896721,0.4188098,0.1431424,-0.897287,0.4184089,0.14074801,-0.89758545,0.41803348,0.13995866,-0.8975947,0.41775784,0.14072019,-0.85008144,0.5109598,0.12759958,-0.84782594,0.5146106,0.1279341,-0.8481104,0.5142512,0.12749363,-0.84862477,0.5135091,0.1270607,-0.8493623,0.51225364,0.12720002,-0.8996266,0.4161227,0.1323401,-0.8994055,0.41627923,0.13334684,-0.8992227,0.4165054,0.13387267,-0.8990175,0.4169548,0.13385156,-0.8987527,0.41769513,0.13332045,-0.8992226,0.41674718,0.13311847,-0.87632227,0.4571722,0.15183173,-0.87578565,0.45831475,0.15148275,-0.87305075,0.46451145,0.1483628,-0.8722263,0.4663022,0.14759254,-0.87188226,0.4671667,0.14689015,-0.87338513,0.46396726,0.1480972,-0.87521774,0.45982134,0.15019406,-0.9003754,0.4153655,0.1295981,-0.90030175,0.41540107,0.1299947,-0.90013033,0.41555852,0.13067712,-0.89997756,0.41589093,0.13067225,-0.9000344,0.41591108,0.13021526,-0.90026927,0.4156112,0.12954754,-0.86882734,0.49485594,0.01602089,-0.8683594,0.49564964,0.016835513,-0.868005,0.49626163,0.017080903,-0.8681897,0.49595296,0.016652381,-0.86865413,0.4951588,0.016055506,-0.86396396,0.50309205,0.021557577,-0.86386144,0.50325996,0.021744313,-0.8637512,0.50345963,0.021502195,-0.8634955,0.5039889,0.019250872,-0.8636623,0.50369734,0.019401891,-0.8638135,0.50340587,0.020217668,-0.8635575,0.5034861,0.027752014,-0.8633256,0.5038093,0.029071867,-0.8631567,0.5041316,0.028492514,-0.86339736,0.5038454,0.026169237,-0.86354667,0.5036296,0.02538421,-0.8636009,0.50351626,0.025785804,-0.86483973,0.5019066,0.011914804,-0.8644624,0.50254697,0.012302309,-0.86498755,0.5016744,0.010923673,-0.865275,0.50118923,0.010419941,-0.8654195,0.50094944,0.009939312,-0.86542445,0.5009178,0.01103547,-0.86561704,0.5005681,0.0117779225,-0.86521137,0.5012703,0.011719276,-0.86513543,0.50142294,0.010756687,-0.86780155,0.4966085,0.017334385,-0.8675169,0.4970908,0.017756188,-0.8664204,0.49899223,0.017958382,-0.8658402,0.50000584,0.017745517,-0.86536056,0.50085735,0.017115965,-0.86646855,0.4989168,0.017726671,-0.8661402,0.49404255,0.07565171,-0.8656971,0.49458864,0.077140905,-0.8646904,0.49595007,0.079649344,-0.8649215,0.49572584,0.07852822,-0.86534536,0.49513507,0.07758019,-0.8659533,0.4943545,0.07575293,-0.8659264,0.4945153,0.075007744,-0.8660569,0.49443966,0.073992305,-0.5708739,0.73355263,-0.36878657,-0.57072353,0.733786,-0.368555,-0.5706241,0.7339232,-0.3684357,-0.5697645,0.73461515,-0.36838707,-0.56981117,0.734374,-0.3687955,-0.57014024,0.73403955,-0.36895257,-0.5707713,0.7335654,-0.36892012,-0.5718115,0.7357722,-0.3628648,-0.5715938,0.73604107,-0.3626624,-0.5707382,0.73664194,-0.36279,-0.5700945,0.73715925,-0.36275116,-0.56999457,0.7371449,-0.3629375,-0.5705931,0.7363531,-0.3636036,-0.5712634,0.73560077,-0.36407375,-0.5712869,0.7359332,-0.36336428,-0.57158506,0.7356164,-0.36353686,-0.57176036,0.7355627,-0.36336985,-0.57117677,0.73598164,-0.36343923,-0.56895113,0.7381662,-0.36249867,-0.5687771,0.7383915,-0.3623129,-0.56775206,0.73942745,-0.36180744,-0.56760675,0.7395204,-0.36184555,-0.5672558,0.7396775,-0.36207467,-0.56725776,0.7396047,-0.36222026,-0.56750786,0.7392415,-0.36256987,-0.56800866,0.73868454,-0.36292055,-0.5683536,0.7384352,-0.36288795,-0.55760837,0.74804753,-0.35985798,-0.5575991,0.7481612,-0.359636,-0.5574082,0.7484043,-0.35942614,-0.5565677,0.7489772,-0.3595352,-0.5560101,0.74951786,-0.35927114,-0.5558733,0.74955225,-0.35941103,-0.55585533,0.74939483,-0.3597669,-0.55631334,0.7487795,-0.36033985,-0.55668545,0.74845743,-0.36043414,-0.55712837,0.74819964,-0.36028504,-0.66803163,0.6968681,0.2609762,-0.6676344,0.69711554,0.2613314,-0.667259,0.6976946,0.26074448,-0.66719633,0.69786793,0.2604408,-0.66734475,0.6977746,0.2603107,-0.6675904,0.69756514,0.26024196,-0.66814363,0.6969482,0.26047534,-0.43220216,0.8097207,-0.3969303,-0.4309563,0.8103229,-0.3970561,-0.42916885,0.81045866,-0.39871147,-0.42830712,0.8106329,-0.39928353,-0.42789862,0.8106443,-0.39969802,-0.4279445,0.8104921,-0.3999576,-0.42913514,0.8090746,-0.40154868,-0.4300168,0.80819815,-0.40236962,-0.4310016,0.80734164,-0.40303484,-0.43179926,0.80673474,-0.4033961,-0.43431002,0.8051961,-0.40377477,-0.43465263,0.8049494,-0.403898,-0.4351028,0.80450726,-0.4042941,-0.43604222,0.8039369,-0.4044164,-0.44048905,0.80217063,-0.40310252,-0.4396781,0.8023935,-0.40354404,-0.4387967,0.8025109,-0.4042693,-0.4385575,0.80248296,-0.40458414,-0.43875936,0.80188507,-0.40554965,-0.43976036,0.8013914,-0.4054412,-0.44156334,0.8006691,-0.4049085,-0.44283524,0.8006185,-0.40361735,-0.44440484,0.80141234,-0.4003031,-0.44432864,0.80186623,-0.39947784,-0.4437987,0.8026009,-0.39859056,-0.4397013,0.8073879,-0.3934305,-0.43898925,0.80887717,-0.39116,-0.43872204,0.80925083,-0.39068663,-0.4375914,0.8104647,-0.3894365,-0.4373798,0.81048316,-0.38963574,-0.4367744,0.8094475,-0.39245737,-0.4355266,0.8093685,-0.39400405,-0.43591905,0.8089744,-0.3943793,-0.43748957,0.80757993,-0.39549652,-0.43778098,0.8070323,-0.3962912,-0.43869138,0.80599886,-0.39738604,-0.4361527,0.8058006,-0.40056992,-0.4372692,0.8071123,-0.39669317,-0.43720996,0.8074397,-0.39609173,-0.43704844,0.8077347,-0.39566812,-0.43613592,0.8085574,-0.39499414,-0.43502706,0.8093084,-0.39467874,-0.43421122,0.8097992,-0.39457056,-0.43368778,0.8100301,-0.3946722,-0.4333298,0.8101036,-0.39491454,-0.43778098,0.80342674,-0.40355083,-0.4416607,0.8047683,-0.3965901,-0.43709332,0.8079929,-0.39509103,-0.44076166,0.80216104,-0.4028236,-0.4405708,0.80607253,-0.3951512,-0.43723133,0.8098097,-0.39119956,-0.436215,0.8056739,-0.40075678,-0.44057786,0.8023014,-0.40274507,-0.4363821,0.80555576,-0.4008123,-0.43881485,0.80577135,-0.39771107,-0.4367362,0.805429,-0.40068144,-0.43721056,0.8054457,-0.4001302,-0.44859767,0.7997159,-0.39901716,-0.44692653,0.80068487,-0.39894912,-0.44587535,0.80104214,-0.39940792,-0.44558114,0.80105996,-0.3997004,-0.4452145,0.80075175,-0.4007252,-0.4433968,0.8000626,-0.40410286,-0.44204253,0.80015516,-0.40540123,-0.44195926,0.80007744,-0.40564528,-0.44277865,0.79954547,-0.40580064,-0.44318724,0.7993898,-0.4056612,-0.44665512,0.79818857,-0.40422052,-0.44615442,0.79809,-0.40496746,-0.44609892,0.79794055,-0.40532288,-0.44636303,0.79765743,-0.40558928,-0.44692853,0.79723424,-0.40579858,-0.44830924,0.79635364,-0.40600455,-0.44913983,0.79603136,-0.40571848,-0.4533181,0.7937961,-0.40545088,-0.455643,0.79275787,-0.40487576,-0.456534,0.7922891,-0.4047897,-0.45769978,0.791459,-0.40509704,-0.4592007,0.79056114,-0.40515152,-0.46148965,0.78965855,-0.4043102,-0.4615523,0.79035914,-0.40286708,-0.46061766,0.79112864,-0.40242624,-0.45979246,0.7911344,-0.40335748,-0.45904592,0.79141057,-0.40366587,-0.45876497,0.7921835,-0.40246728,-0.45849773,0.7924591,-0.40222934,-0.458297,0.79256463,-0.40225017,-0.4576332,0.792457,-0.40321675,-0.45723614,0.7925251,-0.4035333,-0.4568146,0.79285705,-0.40335858,-0.4544866,0.7941837,-0.40337846,-0.45414373,0.79466194,-0.40282235,-0.45415437,0.7954915,-0.4011696,-0.45261306,0.7959514,-0.4019985,-0.4516774,0.7960695,-0.40281612,-0.45044962,0.7967272,-0.4028907,-0.44928873,0.79723316,-0.40318593,-0.4489657,0.7977381,-0.40254658,-0.4498654,0.7974266,-0.40215912,-0.45060477,0.79781723,-0.40055346,-0.4496724,0.79884624,-0.3995491,-0.4592461,0.7912563,-0.40374053,-0.44867837,0.79737157,-0.40359187,-0.44512618,0.8005133,-0.40129933,-0.4444922,0.8003182,-0.40238973,-0.4487651,0.79768,-0.40288523,-0.44623107,0.79862833,-0.4038201,-0.50516593,0.7731807,-0.3834045,-0.49976647,0.77517337,-0.38644508,-0.49795556,0.77561194,-0.38790002,-0.496742,0.77558124,-0.38951394,-0.49610162,0.77525514,-0.39097646,-0.49605823,0.7748798,-0.39177483,-0.496278,0.774329,-0.3925847,-0.49675652,0.7738024,-0.3930176,-0.49824685,0.7728363,-0.39303192,-0.5000902,0.77185273,-0.39262345,-0.5008534,0.77160776,-0.39213178,-0.50156295,0.7715427,-0.39135212,-0.5021718,0.7716121,-0.3904334,-0.5026877,0.77202123,-0.38895792,-0.5021142,0.7724868,-0.3887743,-0.50397617,0.77254635,-0.38623843,-0.50404596,0.77203256,-0.3871736,-0.5045178,0.7715774,-0.38746622,-0.5057443,0.7705648,-0.3878822,-0.5044805,0.7712352,-0.38819554,-0.50390047,0.77139246,-0.388636,-0.50269365,0.771303,-0.39037257,-0.5024793,0.7712244,-0.3908037,-0.50246114,0.771016,-0.39123797,-0.50312304,0.76991206,-0.39255902,-0.50344396,0.76969177,-0.39257962,-0.50423265,0.76955247,-0.39183986,-0.5054719,0.7684111,-0.39248255,-0.5058137,0.7677257,-0.3933825,-0.5061125,0.76747555,-0.3934862,-0.50654525,0.76736355,-0.39314774,-0.5068234,0.7674018,-0.39271426,-0.5090462,0.7675105,-0.3896147,-0.50975066,0.7669973,-0.3897043,-0.510432,0.76662695,-0.38954106,-0.51063424,0.76683867,-0.38885882,-0.51049656,0.7671154,-0.38849348,-0.5116053,0.76660836,-0.3880356,-0.5120292,0.7659595,-0.38875723,-0.5125686,0.76547384,-0.38900283,-0.5131868,0.76503885,-0.38904357,-0.51386136,0.76469356,-0.38883197,-0.5143934,0.7646013,-0.3883096,-0.5147582,0.7647281,-0.38757566,-0.5147433,0.7649516,-0.3871542,-0.5145492,0.76531154,-0.38670072,-0.51460207,0.76541734,-0.38642073,-0.5151937,0.76517767,-0.386107,-0.5160899,0.7649768,-0.38530722,-0.51680803,0.7646567,-0.38497993,-0.5186166,0.76339155,-0.38505858,-0.5191778,0.7630452,-0.3849889,-0.51954746,0.76288927,-0.38479915,-0.5199597,0.7628965,-0.3842277,-0.52081436,0.7624169,-0.38402197,-0.5213679,0.76222605,-0.3836495,-0.5227504,0.7621052,-0.3820047,-0.5211742,0.7617564,-0.38484365,-0.5208153,0.76143056,-0.38597265,-0.52083695,0.7612963,-0.38620824,-0.52117205,0.7608961,-0.38654473,-0.5225996,0.75948644,-0.38738877,-0.5230343,0.75923467,-0.3872955,-0.52313083,0.7592707,-0.38709444,-0.5229587,0.75985163,-0.38618615,-0.52315575,0.7598278,-0.38596597,-0.52463907,0.7590672,-0.38544896,-0.5246977,0.7591826,-0.38514176,-0.5244001,0.7597558,-0.38441604,-0.5251954,0.75944376,-0.38394663,-0.52559197,0.759513,-0.3832662,-0.52589285,0.7593711,-0.3831348,-0.5263895,0.7590327,-0.38312328,-0.5266945,0.7589079,-0.3829513,-0.52712,0.7590416,-0.38209996,-0.52779645,0.7579965,-0.38323915,-0.52843815,0.7575427,-0.3832521,-0.5286451,0.7575594,-0.38293353,-0.5289077,0.7578686,-0.3819579,-0.52934444,0.7576812,-0.38172457,-0.5304471,0.75699335,-0.3815586,-0.5307773,0.7568853,-0.3813137,-0.5312688,0.75630134,-0.38178763,-0.5308793,0.755936,-0.38305077,-0.53093314,0.75576025,-0.38332295,-0.5327265,0.7550432,-0.38224617,-0.5343264,0.7541692,-0.38173822,-0.53488773,0.75395095,-0.38138318,-0.5350037,0.75403434,-0.38105544,-0.5350379,0.75468946,-0.37970823,-0.53640175,0.75460666,-0.37794435,-0.5377354,0.7548722,-0.37551102,-0.53770393,0.7550644,-0.37516952,-0.53742653,0.7556079,-0.37447226,-0.5369643,0.7562996,-0.3737382,-0.5363434,0.7570763,-0.37305656,-0.5383115,0.7542095,-0.376017,-0.5384299,0.75267243,-0.37891617,-0.5386119,0.7524452,-0.37910876,-0.5391907,0.751964,-0.37924078,-0.54040456,0.7513963,-0.37863776,-0.5420096,0.7507295,-0.37766492,-0.5437921,0.75008005,-0.37639078,-0.5467278,0.74913186,-0.37401903,-0.5492783,0.74822,-0.3721024,-0.5511028,0.74764246,-0.37056231,-0.55375487,0.74702746,-0.36783892,-0.5540094,0.7469028,-0.36770883,-0.5540037,0.7471601,-0.3671944,-0.55368763,0.7481137,-0.3657265,-0.55462396,0.7478733,-0.3647983,-0.55472624,0.74792594,-0.3645347,-0.5544152,0.74843705,-0.36395833,-0.5522383,0.75018543,-0.36366826,-0.5513911,0.7509209,-0.36343592,-0.55092263,0.7512433,-0.36348012,-0.550832,0.7511544,-0.363801,-0.550913,0.7509693,-0.36406037,-0.55167323,0.74990416,-0.36510324,-0.54820466,0.752691,-0.36459273,-0.54601264,0.75415075,-0.3648655,-0.54413307,0.7556648,-0.3645407,-0.54352254,0.7560727,-0.36460575,-0.5424307,0.75666195,-0.36500913,-0.5414738,0.7572689,-0.365171,-0.5394218,0.758141,-0.36639643,-0.53057873,0.7623347,-0.3705834,-0.53059584,0.7625029,-0.37021264,-0.5298965,0.7630254,-0.37013772,-0.5233478,0.76724,-0.37074235,-0.5210415,0.7688936,-0.37056497,-0.5199631,0.76958674,-0.37064072,-0.51934415,0.7698729,-0.37091428,-0.51864433,0.77005184,-0.37152156,-0.5169457,0.7702997,-0.37337038,-0.5137659,0.771112,-0.37607297,-0.50981826,0.7717969,-0.3800196,-0.5017863,0.7728152,-0.38854492,-0.50548273,0.77081734,-0.3877214,-0.5226704,0.7623557,-0.38161433,-0.52434015,0.7596333,-0.38473967,-0.5269027,0.7592879,-0.38191026,-0.53100675,0.7569176,-0.3809299,-0.55373627,0.74779916,-0.3662957,-0.53656155,0.75904715,-0.3687127,-0.52777255,0.7643386,-0.37046263,-0.5045299,0.7693239,-0.39190614,-0.5084458,0.7678747,-0.389681,-0.5113581,0.76686436,-0.38785556,-0.5311555,0.75683296,-0.3808907,-0.53809196,0.7550332,-0.3746757,-0.5350868,0.7595967,-0.36972278,-0.5308878,0.7620263,-0.37077495,-0.5249026,0.76618135,-0.37073368,-0.5070307,0.76787364,-0.39152253,-0.5101577,0.76749355,-0.3881916,-0.53770965,0.75566256,-0.37395507,-0.5516064,0.7501375,-0.36472464,-0.5034243,0.77269673,-0.38665712,-0.5101916,0.7675902,-0.38795587,-0.5109868,0.76716405,-0.38775232,-0.53276795,0.7607468,-0.37070566,-0.5105986,0.7674056,-0.38778564,-0.53718805,0.75632805,-0.37335885,-0.5363363,0.75713927,-0.37293908,-0.42955953,0.82787204,-0.36070284,-0.43004847,0.82721514,-0.36162612,-0.43057692,0.8266065,-0.3623882,-0.43114448,0.8260469,-0.36298895,-0.43184924,0.8254273,-0.3635603,-0.4326913,0.8247474,-0.36410162,-0.4339215,0.82384855,-0.36467212,-0.4365149,0.82178676,-0.3662256,-0.4368751,0.82109714,-0.36734122,-0.43761438,0.82022935,-0.3683985,-0.4384459,0.819725,-0.36853248,-0.4382583,0.8202664,-0.3675496,-0.43742043,0.82165325,-0.36544397,-0.43691754,0.8223337,-0.36451384,-0.4359719,0.8233105,-0.3634396,-0.4347248,0.82444847,-0.36235216,-0.43453264,0.8247146,-0.36197683,-0.43539843,0.8241088,-0.3623161,-0.43604115,0.8237108,-0.362448,-0.43646392,0.82351846,-0.36237627,-0.4367042,0.8234996,-0.3621296,-0.43708664,0.82375574,-0.3610841,-0.43770579,0.8219499,-0.36443385,-0.4382833,0.8207969,-0.36633348,-0.4388273,0.8199626,-0.36754856,-0.43991715,0.8180218,-0.37055808,-0.44041237,0.8173737,-0.37139887,-0.44091263,0.8164428,-0.37285012,-0.44066343,0.81614053,-0.3738053,-0.44086912,0.8156867,-0.37455255,-0.44112423,0.8153301,-0.3750283,-0.44187626,0.81451416,-0.37591496,-0.44249088,0.81390905,-0.37650216,-0.44288266,0.813314,-0.3773264,-0.44385245,0.8126093,-0.37770504,-0.4454325,0.8117815,-0.37762496,-0.4477518,0.8108738,-0.37683147,-0.4498459,0.8107142,-0.37467468,-0.44853917,0.8103848,-0.3769471,-0.44870788,0.8100996,-0.37735915,-0.44996402,0.80876845,-0.37871623,-0.45015827,0.8076548,-0.38085595,-0.4510175,0.8061754,-0.382968,-0.45224702,0.80545425,-0.38303533,-0.45435166,0.80464137,-0.38225237,-0.45569536,0.8043898,-0.38118082,-0.45778754,0.8029501,-0.381709,-0.4595397,0.8021254,-0.38133726,-0.4612427,0.80126905,-0.3810814,-0.46088824,0.80226123,-0.3794192,-0.46156052,0.8027463,-0.3775715,-0.46146542,0.8030044,-0.37713864,-0.46091747,0.8036393,-0.37645572,-0.45991546,0.8046495,-0.37552235,-0.4588637,0.8067312,-0.37232894,-0.45892397,0.8069341,-0.37181458,-0.45879605,0.8073874,-0.3709875,-0.45891118,0.8073728,-0.37087688,-0.4592048,0.80719525,-0.37089995,-0.45937175,0.8072672,-0.37053642,-0.46132824,0.8074246,-0.3677523,-0.46088204,0.8072863,-0.3686143,-0.46072152,0.80706346,-0.36930236,-0.46084806,0.8067559,-0.36981615,-0.46109924,0.80641234,-0.37025213,-0.46147433,0.8060337,-0.3706091,-0.4621263,0.80552346,-0.37090603,-0.46377847,0.8044232,-0.37123156,-0.46479705,0.8039202,-0.3710472,-0.46569437,0.8036135,-0.37058628,-0.46602902,0.8035546,-0.37029305,-0.46966085,0.8024993,-0.3679859,-0.46878427,0.80300236,-0.3680062,-0.46732432,0.8034192,-0.3689521,-0.4668711,0.80343944,-0.36948124,-0.46663594,0.80292463,-0.37089476,-0.46611097,0.80303234,-0.37132144,-0.46281272,0.8043695,-0.37255073,-0.46223226,0.80447227,-0.3730492,-0.46143293,0.8055684,-0.3716709,-0.460975,0.8059752,-0.3713571,-0.46033296,0.8060851,-0.37191433,-0.46002716,0.805847,-0.37280774,-0.45997798,0.80531937,-0.37400663,-0.46077558,0.8042055,-0.37541896,-0.46204457,0.8032573,-0.37588906,-0.46317926,0.8024769,-0.3761593,-0.4692883,0.8001107,-0.37361932,-0.47264516,0.7973376,-0.3753122,-0.47376835,0.79680187,-0.37503377,-0.4748717,0.7976965,-0.371722,-0.4750877,0.7971421,-0.37263408,-0.4755059,0.7965912,-0.3732782,-0.47707778,0.79466146,-0.37537977,-0.47860608,0.7926675,-0.3776433,-0.479417,0.79189533,-0.3782342,-0.4795615,0.79195154,-0.37793326,-0.4795062,0.79237384,-0.37711728,-0.4796079,0.79383296,-0.37390578,-0.479673,0.7932542,-0.37504882,-0.4798819,0.79285705,-0.37562087,-0.48010552,0.7925828,-0.3759139,-0.4812361,0.7916767,-0.37637725,-0.48144582,0.7914173,-0.37665436,-0.48105723,0.789715,-0.38070217,-0.4838831,0.78799236,-0.38069034,-0.48675722,0.785732,-0.38169724,-0.48571414,0.7874789,-0.37941882,-0.4835651,0.791421,-0.37392196,-0.4842918,0.7916845,-0.37242058,-0.48438254,0.79185575,-0.37193823,-0.4840251,0.7947623,-0.36615926,-0.48406607,0.7949728,-0.36564782,-0.48394424,0.7952803,-0.36514005,-0.48365828,0.79568464,-0.36463776,-0.4833177,0.7960504,-0.36429065,-0.48446098,0.7950281,-0.365004,-0.48456356,0.7937536,-0.36763197,-0.48486307,0.7933346,-0.36814126,-0.48540208,0.7929033,-0.36836004,-0.48630896,0.792235,-0.36860174,-0.48678848,0.79198015,-0.3685166,-0.4886892,0.7913152,-0.36742768,-0.48940247,0.7908533,-0.36747274,-0.48988193,0.79042757,-0.36774984,-0.49204513,0.78921646,-0.36746287,-0.49026108,0.7900301,-0.36809838,-0.4891489,0.79073805,-0.368058,-0.48843893,0.791124,-0.36817148,-0.48709282,0.7913819,-0.3693985,-0.4857806,0.79223764,-0.3692922,-0.48494405,0.79182243,-0.37127683,-0.48486006,0.79119796,-0.37271503,-0.48454288,0.7907209,-0.37413725,-0.48441988,0.79005885,-0.37569183,-0.48524287,0.78893906,-0.37698087,-0.4861861,0.7879063,-0.37792426,-0.48701802,0.7879378,-0.3767857,-0.48758385,0.78670883,-0.3786176,-0.48799464,0.7860813,-0.37939078,-0.4884487,0.7855896,-0.3798247,-0.48967618,0.7844863,-0.3805241,-0.49063498,0.78373575,-0.3808354,-0.49176183,0.7830811,-0.38072857,-0.4922978,0.78266805,-0.38088527,-0.49256086,0.7825015,-0.3808874,-0.4929984,0.78236455,-0.38060254,-0.4931472,0.7823741,-0.38039008,-0.49299628,0.78276086,-0.37978947,-0.49269113,0.78329146,-0.37909093,-0.49551407,0.7844509,-0.37296456,-0.49364457,0.7842796,-0.37579325,-0.49333942,0.7841527,-0.37645817,-0.49323177,0.78378075,-0.37737268,-0.49378106,0.78181756,-0.38071194,-0.49431053,0.7809044,-0.38189718,-0.49494895,0.7800882,-0.38273746,-0.49625477,0.77880365,-0.38366142,-0.4977237,0.77810663,-0.38317254,-0.49978042,0.7770295,-0.38268086,-0.5008153,0.7765476,-0.38230604,-0.5017296,0.7762232,-0.38176563,-0.5036494,0.7756888,-0.38032106,-0.50394595,0.7756808,-0.37994447,-0.50401044,0.775977,-0.3792533,-0.5059443,0.776213,-0.37618315,-0.5058484,0.7767666,-0.37516803,-0.5064146,0.7767119,-0.37451684,-0.5071997,0.77567273,-0.37560654,-0.5076835,0.7754058,-0.37550396,-0.5086583,0.77502257,-0.3749757,-0.50859904,0.77458346,-0.37596205,-0.5087681,0.7741105,-0.37670675,-0.5092768,0.7736124,-0.37704244,-0.50949645,0.77353185,-0.37691087,-0.51036054,0.7734725,-0.37586227,-0.51241684,0.77396595,-0.3720291,-0.5132513,0.77366745,-0.37149936,-0.51236826,0.7734455,-0.3731767,-0.51168835,0.77299744,-0.37503326,-0.5107089,0.7728109,-0.37674895,-0.51071143,0.7725978,-0.37718228,-0.51110744,0.7721761,-0.37750924,-0.51162183,0.7719562,-0.37726212,-0.512797,0.7718831,-0.37581348,-0.51400787,0.771598,-0.37474316,-0.5144763,0.77158827,-0.3741199,-0.5149639,0.77148414,-0.37366334,-0.5155266,0.7717427,-0.37235138,-0.5159895,0.77171564,-0.37176585,-0.51651585,0.7713865,-0.37171796,-0.5169521,0.7712309,-0.37143436,-0.5172984,0.7712493,-0.3709136,-0.51728296,0.77146953,-0.37047693,-0.5159525,0.7732763,-0.36856028,-0.5172995,0.77200335,-0.36934018,-0.51771516,0.7717053,-0.36938038,-0.518025,0.7715931,-0.36918056,-0.51996547,0.7713616,-0.3669294,-0.52051735,0.77177846,-0.3652666,-0.52012265,0.7726443,-0.3639963,-0.5195793,0.77346057,-0.36303726,-0.5190681,0.7740437,-0.3625254,-0.51780915,0.77574265,-0.36068964,-0.51823056,0.7752271,-0.3611924,-0.5195449,0.77403176,-0.36186728,-0.5210337,0.77203965,-0.3639762,-0.52157974,0.7707207,-0.36598378,-0.5222676,0.77011,-0.36628836,-0.52369696,0.7693761,-0.36578944,-0.5241302,0.7689317,-0.36610323,-0.52712536,0.76686054,-0.3661472,-0.52771646,0.7662701,-0.36653182,-0.5289145,0.76556927,-0.3662692,-0.53195524,0.76388836,-0.3653739,-0.53273624,0.7635495,-0.36494413,-0.5336376,0.7634818,-0.36376703,-0.53429586,0.7637135,-0.36231148,-0.5341452,0.7644002,-0.36108342,-0.53436774,0.7646468,-0.3602309,-0.53426605,0.7648319,-0.35998878,-0.53324217,0.7659633,-0.3591002,-0.5329355,0.7668523,-0.35765526,-0.53261304,0.7671941,-0.35740256,-0.53351223,0.76653445,-0.35747674,-0.5334265,0.7662356,-0.35824457,-0.53370416,0.7658329,-0.35869178,-0.5357641,0.76374483,-0.36007032,-0.53659755,0.76308376,-0.36023086,-0.53752327,0.7625007,-0.36008525,-0.53816557,0.7621996,-0.3597633,-0.53852415,0.76218194,-0.35926375,-0.53904235,0.7624566,-0.35790113,-0.5386177,0.7613864,-0.36080715,-0.537876,0.76195294,-0.36071754,-0.5365065,0.76286614,-0.36082685,-0.53606886,0.7630766,-0.36103225,-0.5358601,0.7630766,-0.36134195,-0.53593636,0.76279616,-0.36182067,-0.5362953,0.762236,-0.3624689,-0.537103,0.7615709,-0.36267093,-0.5383615,0.76079935,-0.36242425,-0.53915954,0.7603462,-0.3621888,-0.5394982,0.76021165,-0.3619668,-0.5425094,0.7592408,-0.35949552,-0.542593,0.759299,-0.35924628,-0.5424985,0.75985384,-0.35821432,-0.54284024,0.7597469,-0.35792333,-0.54304403,0.75994307,-0.3571971,-0.5424855,0.76059854,-0.35665023,-0.54208475,0.76091707,-0.35658002,-0.54188865,0.762039,-0.354476,-0.54228705,0.76143056,-0.35517356,-0.5437709,0.75975966,-0.3564807,-0.5442514,0.7591631,-0.35701796,-0.5442849,0.7589867,-0.35734177,-0.5444298,0.75881076,-0.35749468,-0.54468757,0.75863427,-0.35747665,-0.5452791,0.75868255,-0.35647094,-0.54655343,0.75838655,-0.35514665,-0.5467901,0.7584682,-0.35460758,-0.5472949,0.7580576,-0.35470697,-0.54657197,0.75803816,-0.35586134,-0.5459993,0.75788087,-0.35707334,-0.54590625,0.7576845,-0.3576318,-0.54659885,0.7572177,-0.35756257,-0.5473598,0.7563983,-0.35813233,-0.5476514,0.75619036,-0.35812584,-0.54794306,0.75609386,-0.3578833,-0.5482778,0.7562032,-0.3571389,-0.5484274,0.7560632,-0.35720563,-0.54860044,0.75567764,-0.35775536,-0.5488608,0.7553544,-0.35803854,-0.54975486,0.7546296,-0.35819513,-0.54995316,0.7544831,-0.35819942,-0.5500683,0.75445455,-0.3580828,-0.5499874,0.7546296,-0.357838,-0.550981,0.75503486,-0.35544658,-0.67619073,0.71109426,0.19264233,-0.6755196,0.7113531,0.19403608,-0.67455304,0.7124346,0.19342998,-0.6744372,0.7136302,0.18938415,-0.6738625,0.7132731,0.19274537,-0.67264247,0.71403486,0.19418114,-0.6702492,0.71582896,0.19584392,-0.6691154,0.71615857,0.19849813,-0.6665052,0.7181245,0.20016982,-0.6646383,0.7196428,0.20092331,-0.66402125,0.72014326,0.20117036,-0.6629372,0.7207963,0.20240293,-0.6617157,0.7218776,0.20254664,-0.6605902,0.7225136,0.20394777,-0.6597091,0.722814,0.20572756,-0.6557905,0.7251948,0.20983641,-0.6547095,0.72608143,0.21014571,-0.6534749,0.72666365,0.21196803,-0.65196437,0.7276149,0.21335186,-0.651667,0.72745645,0.21479577,-0.6508695,0.72775346,0.21620314,-0.64833534,0.72892016,0.21985595,-0.6461948,0.7304597,0.22104509,-0.6446556,0.73143333,0.22231627,-0.64200765,0.7330155,0.22475418,-0.63756245,0.7363739,0.22642353,-0.636012,0.737313,0.22772405,-0.6319185,0.7400995,0.23006906,-0.63043994,0.74118227,0.23063883,-0.628712,0.74259084,0.2308247,-0.6266787,0.74428934,0.23088337,-0.6261377,0.74515325,0.22956112,-0.62615055,0.745543,0.22825678,-0.6263786,0.74598247,0.22618578,-0.6264084,0.7472688,0.22181508,-0.6270793,0.74725574,0.2199553,-0.62754583,0.74742,0.21805859,-0.6271868,0.7480566,0.21690579,-0.6271368,0.7484422,0.21571691,-0.62580496,0.74740976,0.22303984,-0.62582004,0.7463824,0.22641224,-0.62547183,0.74630076,0.22764046,-0.6256535,0.7455617,0.22955479,-0.6254909,0.74537313,0.23060803,-0.6250381,0.7454663,0.23153262,-0.62390697,0.74606645,0.23264772,-0.6215381,0.7476407,0.233931,-0.61866003,0.7498066,0.23462689,-0.61429197,0.75274765,0.23667774,-0.6118576,0.7540164,0.23893423,-0.610856,0.75479174,0.23904896,-0.6088292,0.7558479,0.2408755,-0.60814196,0.7560175,0.24207634,-0.6073964,0.7564206,0.24268791,-0.60227996,0.7585015,0.24886604,-0.6019031,0.7585282,0.24969514,-0.6013097,0.7586853,0.25064564,-0.59957135,0.7598522,0.25127453,-0.5976069,0.7615582,0.25078902,-0.5915084,0.76597375,0.25179762,-0.58974195,0.766779,0.25348443,-0.58810854,0.76778525,0.2542326,-0.5877192,0.7678496,0.25493735,-0.58685315,0.76841605,0.25522578,-0.586324,0.7685545,0.2560236,-0.5863517,0.7683577,0.25655052,-0.5856147,0.76851094,0.25777197,-0.5853258,0.768295,0.25906867,-0.5834128,0.7693342,0.2602968,-0.5829597,0.76894534,0.2624519,-0.5799353,0.7696227,0.26712552,-0.57979536,0.7693761,0.2681376,-0.5785941,0.7691262,0.27142903,-0.57647705,0.7694991,0.27485508,-0.5753204,0.76905864,0.27848738,-0.57415026,0.76944363,0.2798356,-0.57275665,0.76945126,0.28265625,-0.5725883,0.76893336,0.28440136,-0.57103735,0.76875895,0.28796872,-0.5699056,0.7693304,0.28868395,-0.5689952,0.7693032,0.2905463,-0.56826705,0.76941586,0.2916707,-0.56767917,0.769418,0.2928075,-0.5669889,0.76922697,0.2946413,-0.56615037,0.7691463,0.29645866,-0.56558603,0.7687181,0.29863843,-0.5643719,0.76865053,0.30109933,-0.5643532,0.7682497,0.3021554,-0.564866,0.7672105,0.30383298,-0.56139183,0.7683053,0.30748364,-0.5609284,0.7681886,0.30861887,-0.5595522,0.76834404,0.31072304,-0.5582221,0.7688396,0.31188738,-0.5574704,0.76851964,0.31401327,-0.5563287,0.7687175,0.3155498,-0.55416393,0.768893,0.3189136,-0.5523639,0.7695824,0.3203703,-0.55078304,0.7707163,0.32036605,-0.54878503,0.77153677,0.32181683,-0.5453392,0.77356863,0.32279512,-0.5429258,0.77472246,0.32409355,-0.5411486,0.77581626,0.32444918,-0.5353812,0.7790281,0.32631606,-0.5344918,0.7797431,0.32606643,-0.53270906,0.78049487,0.3271831,-0.5318494,0.78037816,0.32885578,-0.5306252,0.78055024,0.33042124,-0.5301118,0.7806711,0.33095923,-0.52823997,0.7815151,0.3319587,-0.524098,0.782372,0.33647496,-0.5233086,0.7819833,0.3386004,-0.52280235,0.7820295,0.33927494,-0.52242726,0.78214794,0.33957973,-0.51733196,0.7845708,0.34178406,-0.51441646,0.78582525,0.3432993,-0.5113175,0.7872504,0.34466112,-0.50700104,0.78948903,0.34591472,-0.5062698,0.7900495,0.3457061,-0.50579363,0.79059976,0.34514463,-0.5059123,0.79100925,0.3440307,-0.50586504,0.7913345,0.3433515,-0.5062001,0.7919744,0.34137663,-0.50596637,0.79223084,0.34112805,-0.50556546,0.79196554,0.34233627,-0.504911,0.7919088,0.34343162,-0.5042342,0.79219913,0.34375626,-0.5037526,0.7925906,0.34355995,-0.503466,0.79308295,0.34284306,-0.5036474,0.79343426,0.34176227,-0.5045687,0.7937505,0.33966246,-0.5056249,0.7937355,0.3381233,-0.5055664,0.7941366,0.33726802,-0.5048159,0.7941469,0.3383661,-0.5023694,0.79466194,0.34078938,-0.5018706,0.7948719,0.3410346,-0.5015746,0.7952317,0.34063104,-0.5001263,0.79677665,0.33914706,-0.49932694,0.79735667,0.33896163,-0.49828893,0.79864013,0.3374642,-0.49624392,0.80004776,0.3371432,-0.4952905,0.8008564,0.33662498,-0.495011,0.8012094,0.33619583,-0.49476913,0.8016279,0.33555362,-0.49451348,0.8019034,0.33527195,-0.49412346,0.8022333,0.33505794,-0.49388224,0.8027219,0.33424222,-0.4932691,0.80355716,0.33313885,-0.49274826,0.8047653,0.3309863,-0.4931391,0.8061174,0.3270911,-0.49270877,0.80659974,0.32654995,-0.49303004,0.80661434,0.32602867,-0.49411142,0.8065237,0.32461274,-0.49514195,0.80633575,0.32350764,-0.4968956,0.8056451,0.32253787,-0.49977198,0.8041528,0.3218171,-0.50109273,0.8035358,0.32130396,-0.50031656,0.80448496,0.3201364,-0.50023824,0.8047203,0.3196671,-0.5000335,0.8052365,0.31868586,-0.49768952,0.80608815,0.32019842,-0.49671286,0.80651563,0.32063827,-0.4961764,0.80687624,0.3205616,-0.4955937,0.8074517,0.32001337,-0.4949637,0.80824035,0.31899607,-0.49333167,0.81068325,0.31530386,-0.49408406,0.81097305,0.31337458,-0.49676973,0.81135136,0.3081052,-0.49772197,0.81108075,0.30727986,-0.4983278,0.81077707,0.30709925,-0.4985626,0.81059897,0.3071883,-0.49881226,0.8101895,0.30786252,-0.4970304,0.8099511,0.31135175,-0.4978751,0.80993414,0.31004357,-0.49961543,0.8095481,0.30824715,-0.5022493,0.80879,0.30594835,-0.50491184,0.8077357,0.30434698,-0.5127079,0.80423886,0.30055022,-0.514187,0.80390394,0.29891497,-0.51475847,0.80364996,0.2986143,-0.5196803,0.80142206,0.29606602,-0.519584,0.80154026,0.29591492,-0.5194857,0.801661,0.29576045,-0.51876724,0.80195385,0.29622725,-0.5183342,0.8022297,0.2962383,-0.51795363,0.80272853,0.29555196,-0.516556,0.8033354,0.2963479,-0.5158101,0.8037215,0.2966004,-0.51559657,0.804168,0.29576012,-0.5157276,0.80497116,0.29333696,-0.51529974,0.8054457,0.29278564,-0.5151514,0.8049979,0.29427424,-0.51471174,0.8048538,0.29543558,-0.514399,0.80499846,0.2955861,-0.51401854,0.80524814,0.29556793,-0.5120211,0.806564,0.29544684,-0.5107309,0.8070403,0.29637793,-0.5101459,0.807315,0.29663736,-0.5096688,0.80739594,0.29723647,-0.5093002,0.8072823,0.29817545,-0.50845015,0.8073124,0.29954144,-0.50575095,0.808289,0.30147114,-0.50447565,0.80864364,0.30265456,-0.5041843,0.80877346,0.3027931,-0.50244975,0.8094731,0.30380526,-0.5018663,0.809421,0.30490634,-0.5012843,0.80952513,0.30558658,-0.50024074,0.81007206,0.30584702,-0.4980732,0.8113508,0.30599496,-0.49736267,0.8116078,0.3064688,-0.49621624,0.81194574,0.30743062,-0.49550244,0.81228685,0.3076807,-0.4932617,0.812939,0.30955315,-0.49220344,0.8129643,0.31116688,-0.49081808,0.8135113,0.31192464,-0.48947066,0.8142926,0.31200317,-0.4883956,0.8148285,0.31228867,-0.48815078,0.8150354,0.31213155,-0.4879851,0.81553483,0.31108427,-0.48864236,0.8156364,0.30978358,-0.4887896,0.8168746,0.30626893,-0.48772606,0.8179061,0.30520967,-0.4881583,0.8179713,0.30434263,-0.48908123,0.8178075,0.30329922,-0.48987284,0.81727254,0.30346358,-0.49074814,0.81970304,0.2953866,-0.48980287,0.8206455,0.29433677,-0.48984528,0.82098234,0.29332516,-0.49052423,0.8211487,0.29172036,-0.4914335,0.82067907,0.29151157,-0.49316323,0.8197074,0.29132417,-0.49686965,0.81801933,0.28976697,-0.49821487,0.81728536,0.2895282,-0.49614272,0.81857675,0.28943825,-0.4925336,0.82045305,0.29028845,-0.49172625,0.8209093,0.29036734,-0.49186537,0.82112294,0.2895265,-0.4926054,0.8208835,0.28894666,-0.49274194,0.8211127,0.28806132,-0.49187315,0.82183725,0.28747922,-0.49168923,0.8222391,0.28664362,-0.49238774,0.82209307,0.28586245,-0.4931678,0.8217406,0.2855308,-0.49485448,0.82151186,0.28326192,-0.4960163,0.82108885,0.28245506,-0.49904165,0.81975424,0.28099892,-0.4977098,0.82044137,0.2813555,-0.49647948,0.8211487,0.28146568,-0.49396658,0.8228023,0.2810577,-0.49231988,0.823576,0.28168017,-0.49170864,0.8239374,0.281691,-0.49132672,0.8246891,0.28015345,-0.49084717,0.82523525,0.2793847,-0.4906556,0.8256019,0.2786371,-0.48970124,0.8261876,0.27857995,-0.4886349,0.8269301,0.27824906,-0.48893315,0.82696843,0.27761048,-0.48903129,0.82713085,0.276953,-0.49042955,0.82636374,0.2767703,-0.48947236,0.82722616,0.27588707,-0.48952928,0.82732576,0.27548724,-0.48925573,0.8279327,0.2741464,-0.48860028,0.82846576,0.27370477,-0.48881567,0.82862604,0.2728335,-0.49107292,0.82794845,0.27082968,-0.49059653,0.82835644,0.27044535,-0.4905332,0.8286017,0.26980796,-0.49090597,0.82925576,0.2671071,-0.48990044,0.8294976,0.26820016,-0.4896403,0.8297807,0.26779908,-0.48805,0.8311399,0.26648378,-0.4882381,0.8311963,0.26596296,-0.48870495,0.83184487,0.26306203,-0.48724863,0.83222115,0.26456895,-0.48648757,0.8325409,0.26496312,-0.4865208,0.8328278,0.26399872,-0.48725185,0.8328929,0.26244056,-0.4868062,0.833938,0.2599367,-0.48610434,0.83398926,0.2610833,-0.48580664,0.8341364,0.26116726,-0.48558003,0.8345644,0.26021978,-0.48559174,0.83469677,0.25977293,-0.4861259,0.8347596,0.25856912,-0.48570895,0.8354895,0.25699052,-0.48613784,0.836095,0.25419527,-0.484366,0.83707774,0.25434315,-0.48533085,0.8366467,0.25392187,-0.48552936,0.8364487,0.25419435,-0.48505124,0.83579844,0.25722802,-0.4832177,0.8353719,0.26201984,-0.48214823,0.8356234,0.2631855,-0.48093653,0.83653325,0.26251134,-0.48002818,0.83727026,0.26182336,-0.47894365,0.8379243,0.26171708,-0.4777459,0.8387712,0.2611927,-0.4768585,0.84040725,0.2575298,-0.47708413,0.8405306,0.25670823,-0.47757876,0.84101963,0.25417435,-0.47706518,0.84126896,0.25431335,-0.47587758,0.8419617,0.25424615,-0.4754252,0.84217405,0.25438896,-0.47528973,0.8422765,0.25430292,-0.47508797,0.8426479,0.2534481,-0.47540805,0.8429488,0.2518422,-0.47585097,0.8429653,0.25094888,-0.47650868,0.84283465,0.25013843,-0.47671223,0.8432902,0.2482077,-0.47634465,0.8431849,0.24926895,-0.47609156,0.8432462,0.2495449,-0.47514462,0.843661,0.2499474,-0.47466403,0.8437342,0.2506126,-0.47397107,0.8439715,0.25112444,-0.47281134,0.8444393,0.2517374,-0.471913,0.84496844,0.25164738,-0.47031784,0.846224,0.25041187,-0.46979964,0.84642607,0.25070152,-0.4692612,0.846763,0.25057188,-0.46886334,0.84723103,0.24973337,-0.46886927,0.847716,0.24807093,-0.4695749,0.8477915,0.24647315,-0.46796134,0.84946984,0.24374819,-0.4683406,0.84950715,0.24288832,-0.46969005,0.8492413,0.24120627,-0.47085035,0.84891,0.2401079,-0.4707466,0.8492215,0.23920786,-0.4687287,0.84989625,0.24076913,-0.46658194,0.850987,0.24108586,-0.46419963,0.85240316,0.24068147,-0.4639631,0.85260713,0.24041484,-0.4645605,0.8525689,0.23939466,-0.46514738,0.8524522,0.23866953,-0.46727845,0.8518261,0.23673452,-0.4668165,0.8521085,0.23662944,-0.46667555,0.85227925,0.23629212,-0.4668548,0.85233855,0.2357235,-0.46755219,0.85210353,0.23519021,-0.47001627,0.8510855,0.23396197,-0.46869507,0.85171616,0.23431699,-0.46778455,0.85220706,0.23435178,-0.466192,0.8528182,0.23530005,-0.46536526,0.8530571,0.23606937,-0.46274018,0.854209,0.23706236,-0.46172628,0.855048,0.23601218,-0.4608623,0.8558649,0.23473646,-0.46073106,0.8560702,0.23424499,-0.46155402,0.85588604,0.23329587,-0.461819,0.8559729,0.23245129,-0.46099216,0.8563666,0.23264253,-0.4607437,0.85651916,0.23257282,-0.4599948,0.85719585,0.23156011,-0.45980632,0.8574051,0.23115933,-0.45967513,0.8574766,0.23115522,-0.45904306,0.8576808,0.231653,-0.45899898,0.8577807,0.23137021,-0.45913216,0.85789984,0.23066306,-0.4594536,0.8578823,0.2300875,-0.46167856,0.8577562,0.22606911,-0.4610971,0.8577373,0.22732395,-0.46044925,0.8578757,0.22811335,-0.45940706,0.85820097,0.22898978,-0.45798114,0.8589097,0.22918855,-0.45661932,0.8601449,0.22726521,-0.45689029,0.86022145,0.22642969,-0.4583016,0.8596486,0.22575204,-0.45767483,0.8600184,0.22561492,-0.4573501,0.86029094,0.22523396,-0.45728663,0.8608227,0.2233231,-0.45629445,0.8611664,0.22402646,-0.45502815,0.8617407,0.22439316,-0.45338094,0.8633745,0.22142768,-0.45265672,0.8638681,0.22098368,-0.45202085,0.8644728,0.21991812,-0.45277655,0.8642186,0.21936177,-0.45377716,0.8637582,0.21910736,-0.45212707,0.86468303,0.21887058,-0.45046237,0.86578923,0.21792825,-0.44960338,0.8665839,0.21653904,-0.45006183,0.86659026,0.215559,-0.45092216,0.86640394,0.2145074,-0.4521961,0.86600405,0.2134377,-0.4515829,0.86634946,0.21333419,-0.45010626,0.8668491,0.21442229,-0.4486515,0.8675171,0.21476932,-0.44793907,0.86800927,0.21426736,-0.44762576,0.86835694,0.21351214,-0.4474618,0.8689438,0.21145825,-0.44794214,0.8688999,0.21062006,-0.44835612,0.8687033,0.21055025,-0.44881862,0.8685149,0.21034186,-0.44944546,0.8682161,0.21023682,-0.45257133,0.86656773,0.21033214,-0.45363036,0.86596787,0.21052119,-0.45504656,0.86522144,0.2105336,-0.45564887,0.86485934,0.2107189,-0.45606747,0.86453915,0.21112673,-0.45628828,0.8642889,0.21167344,-0.45673853,0.86385995,0.21245207,-0.45654494,0.86435837,0.21083489,-0.45670894,0.86443335,0.21017112,-0.45708543,0.86435455,0.20967636,-0.4574521,0.8642327,0.20937853,-0.45780814,0.8640685,0.20927823,-0.45916465,0.8633095,0.20943865,-0.45975465,0.8629433,0.20965335,-0.4601503,0.86266196,0.20994318,-0.4609614,0.8619775,0.2109724,-0.46112025,0.8617269,0.21164806,-0.46192625,0.8605467,0.21467079,-0.46149513,0.8613115,0.21251996,-0.4615762,0.8614414,0.21181639,-0.46215484,0.86136603,0.21085875,-0.4625159,0.86116594,0.2108844,-0.464043,0.85998577,0.21234068,-0.4639332,0.8603009,0.21130148,-0.4644721,0.86002797,0.21122868,-0.46615607,0.8590773,0.21138783,-0.46612754,0.85922503,0.2108493,-0.46624538,0.8592224,0.21059917,-0.46649548,0.85907894,0.21063079,-0.46719587,0.8585376,0.21128458,-0.4674427,0.8583133,0.21164955,-0.46755022,0.85816115,0.21202871,-0.4677544,0.85751253,0.21419181,-0.4682694,0.85749274,0.21314293,-0.46866703,0.85727394,0.21314944,-0.46895307,0.8574551,0.21178707,-0.46916077,0.8573809,0.21162727,-0.4694532,0.85719055,0.21175002,-0.4698214,0.8569029,0.2120973,-0.47002408,0.85699165,0.21128824,-0.4702423,0.8569609,0.21092695,-0.47138557,0.8563991,0.21065657,-0.47163695,0.85622746,0.21079159,-0.47207054,0.85578555,0.21161412,-0.47258523,0.85571855,0.21073435,-0.47311768,0.85555094,0.2102196,-0.47358784,0.8552547,0.21036617,-0.47420904,0.8547739,0.21092035,-0.47832978,0.8520086,0.21279566,-0.47652712,0.8532487,0.21186921,-0.47605443,0.8536019,0.2115089,-0.47549748,0.8540871,0.21080166,-0.47485292,0.85470444,0.20974983,-0.47448906,0.8551134,0.20890468,-0.47440746,0.85531473,0.20826478,-0.47468534,0.85528433,0.20775595,-0.4759351,0.85473895,0.20714025,-0.47652134,0.85443443,0.20704867,-0.47750556,0.8538836,0.20705366,-0.48008966,0.8525582,0.20653915,-0.4811161,0.85230064,0.20520951,-0.48195052,0.8520278,0.20438296,-0.48331755,0.85145575,0.20353693,-0.4850573,0.8508111,0.20208886,-0.4869036,0.8500166,0.20098923,-0.48737222,0.8497651,0.20091677,-0.48807323,0.8493434,0.20099802,-0.49015856,0.8481289,0.20105207,-0.48875192,0.84903646,0.20064549,-0.48832327,0.8493426,0.20039362,-0.48690754,0.85029525,0.19979763,-0.48512557,0.8515938,0.198598,-0.48492765,0.8517689,0.19833031,-0.48563632,0.85141104,0.19813283,-0.4896442,0.84933084,0.1971945,-0.4873547,0.8505105,0.19778104,-0.48688257,0.85077214,0.1978185,-0.486418,0.85108054,0.19763462,-0.48492265,0.8522864,0.19610704,-0.48472697,0.8525061,0.19563529,-0.4851988,0.8523969,0.19494012,-0.48639464,0.8517506,0.19478488,-0.48988226,0.8496874,0.19505568,-0.49286875,0.84815603,0.19419517,-0.4943261,0.84782445,0.19192553,-0.49620447,0.847145,0.19006954,-0.49414453,0.8480467,0.19141027,-0.49286583,0.84838885,0.19318302,-0.49188703,0.8487532,0.19407523,-0.4903107,0.84955436,0.19455807,-0.4892909,0.85014004,0.1945671,-0.48663935,0.85171974,0.1943081,-0.48544532,0.85249937,0.19387543,-0.4848621,0.8528969,0.19358599,-0.48452866,0.8531562,0.19327812,-0.4842396,0.853509,0.19244328,-0.4823704,0.85485303,0.19116756,-0.48193693,0.85520786,0.19067311,-0.481572,0.8555765,0.18994,-0.4812733,0.85595965,0.18896857,-0.48114327,0.8562028,0.18819673,-0.48118046,0.856308,0.1876219,-0.4821908,0.8561671,0.18566075,-0.4824552,0.85625124,0.1845828,-0.48283076,0.8562367,0.18366592,-0.4833204,0.8561222,0.18291025,-0.48413727,0.8558226,0.18215044,-0.487853,0.85443133,0.17873581,-0.48765737,0.85486805,0.17717467,-0.48781493,0.85500777,0.17606337,-0.4874277,0.8552684,0.17586963,-0.48649222,0.8555121,0.17726922,-0.48558813,0.8558715,0.17801169,-0.48515666,0.8560971,0.17810307,-0.4847767,0.85631543,0.17808823,-0.4840612,0.8566239,0.17855056,-0.48534176,0.85564756,0.17975159,-0.4853985,0.85555226,0.1800516,-0.48515055,0.85563076,0.18034677,-0.48435292,0.8559896,0.18078734,-0.48353362,0.8564532,0.18078487,-0.48234206,0.8571673,0.18058354,-0.4815693,0.857609,0.18054882,-0.48121482,0.85777986,0.18068206,-0.48093385,0.8579472,0.18063596,-0.47974148,0.85878134,0.17984064,-0.47806323,0.859649,0.18016423,-0.47767973,0.8598797,0.18008065,-0.47736758,0.86018884,0.17943066,-0.4781889,0.860224,0.17705935,-0.47496182,0.86220515,0.17610659,-0.47398323,0.8627141,0.17625068,-0.47317305,0.86317617,0.17616521,-0.47253087,0.86359197,0.17585093,-0.47125527,0.86446637,0.17497534,-0.47069472,0.8648953,0.1743634,-0.4702091,0.86530906,0.17361908,-0.47004542,0.8655439,0.17289025,-0.47122142,0.8657756,0.16847253,-0.4713961,0.86625415,0.16549782,-0.47113153,0.8661579,0.16675013,-0.46948227,0.86618084,0.17122245,-0.46881163,0.8662847,0.17252947,-0.46778902,0.86668676,0.1732843,-0.46700013,0.8670891,0.17339951,-0.46664888,0.8672919,0.17333062,-0.4659118,0.86775315,0.1730049,-0.4656156,0.86794204,0.17285475,-0.45800304,0.8724339,0.17056444,-0.45722577,0.87274826,0.1710412,-0.4565625,0.8730434,0.17130643,-0.4560127,0.87332004,0.1713609,-0.45547864,0.87362665,0.17121822,-0.45496112,0.87396276,0.17087853,-0.45386812,0.8747122,0.16994788,-0.45353934,0.87496156,0.16954145,-0.4534226,0.8751241,0.16901399,-0.45376435,0.8750383,0.16854039,-0.45434922,0.87473947,0.16851583,-0.45594382,0.8738965,0.16858278,-0.45632797,0.87382895,0.167892,-0.4573129,0.87343335,0.16726926,-0.45711482,0.8739574,0.1650592,-0.45625904,0.87445974,0.164766,-0.45573083,0.8747944,0.164451,-0.4555293,0.8749624,0.16411553,-0.45538807,0.8752,0.16323817,-0.45575204,0.8751604,0.16243261,-0.4565052,0.8749789,0.16129147,-0.4568335,0.8750862,0.15977281,-0.4566794,0.8756798,0.15693572,-0.45675823,0.8758567,0.1557143,-0.45497283,0.8777495,0.1501849,-0.45436007,0.8779723,0.15073659,-0.45414758,0.87809265,0.150676,-0.45278245,0.8790399,0.14925477,-0.45217046,0.8792409,0.14992462,-0.45175412,0.8794235,0.15010846,-0.4514319,0.8795853,0.15012951,-0.45115823,0.8797912,0.14974564,-0.4507087,0.88038236,0.14760938,-0.45102224,0.8802865,0.1472228,-0.45294514,0.87966555,0.1450144,-0.45195052,0.879992,0.14613257,-0.45151046,0.88018507,0.14633036,-0.4512753,0.88031405,0.14627965,-0.45067906,0.88071114,0.14572658,-0.4504275,0.8809173,0.14525738,-0.44984874,0.88131833,0.14461714,-0.4495325,0.88156384,0.14410307,-0.4490456,0.88202643,0.14278433,-0.44889304,0.8823131,0.1414875,-0.4492896,0.8821854,0.14102384,-0.45014772,0.8818244,0.14054467,-0.45075423,0.8816367,0.13977636,-0.4488073,0.88258123,0.14008,-0.44766665,0.8831707,0.14001457,-0.44729328,0.8833797,0.13988943,-0.446974,0.88357455,0.13967921,-0.44648588,0.8838789,0.1393145,-0.4463677,0.8839661,0.1391395,-0.44638768,0.8840195,0.13873556,-0.4468261,0.8839729,0.13761674,-0.44627875,0.88442147,0.136506,-0.44615108,0.88456666,0.13598184,-0.4452995,0.88522434,0.13448481,-0.44486308,0.8855967,0.13347399,-0.44451433,0.8859515,0.13227583,-0.44371027,0.8866414,0.1303388,-0.44359928,0.88679427,0.12967484,-0.4437976,0.88675886,0.12923785,-0.4445646,0.88648134,0.12850334,-0.4469735,0.88556707,0.12643467,-0.4482015,0.8851649,0.12489391,-0.44957438,0.88467157,0.123446874,-0.45008144,0.8844462,0.123213686,-0.45078224,0.8839713,0.124057,-0.45096648,0.88389355,0.123941116,-0.4498519,0.8848253,0.121315636,-0.44958127,0.8851051,0.12027357,-0.4496782,0.8851562,0.11953235,-0.44953045,0.88549185,0.11758661,-0.4497449,0.8854511,0.11707242,-0.45021608,0.88528347,0.11652751,-0.45242152,0.8844148,0.114565596,-0.4522535,0.88452727,0.11436024,-0.45114604,0.88498366,0.115200825,-0.4504349,0.8855223,0.11383622,-0.4497254,0.886734,0.10700405,-0.4493116,0.8872153,0.10472844,-0.44952905,0.887413,0.10208696,-0.44948393,0.88759446,0.10069884,-0.4505091,0.8872637,0.09901826,-0.4526012,0.8864182,0.09703007,-0.45396066,0.8858428,0.0959284,-0.4545926,0.8855405,0.09572646,-0.45517597,0.88524973,0.095643565,-0.45631087,0.8846517,0.09576913,-0.4578247,0.88382584,0.096168734,-0.4604988,0.88231903,0.09723129,-0.46177837,0.88156784,0.09797387,-0.4627079,0.8809887,0.09879432,-0.46310657,0.8807148,0.0993669,-0.4634839,0.8804341,0.10009217,-0.46430755,0.87986773,0.1012487,-0.4650307,0.8792855,0.1029726,-0.4664347,0.87863934,0.10213527,-0.46720865,0.8782948,0.10155896,-0.46789646,0.8779246,0.101593636,-0.4740599,0.874642,0.10133388,-0.47670105,0.8733661,0.09993833,-0.477232,0.87308496,0.09986109,-0.4772711,0.87300396,0.10038141,-0.47692412,0.8730771,0.10138949,-0.47718102,0.8728015,0.10254676,-0.4761096,0.8731365,0.104653135,-0.47633204,0.8729952,0.104819484,-0.47674587,0.87283266,0.1042905,-0.47825617,0.87204343,0.10397748,-0.4785717,0.87189025,0.10380986,-0.4792082,0.871555,0.10368884,-0.4799928,0.87102336,0.1045238,-0.48001623,0.87093,0.10519198,-0.48012412,0.8707226,0.106409624,-0.48083302,0.8704136,0.10573435,-0.4821678,0.86972845,0.10529319,-0.48306504,0.86917144,0.105779,-0.48590615,0.8672949,0.1081421,-0.48610398,0.86718804,0.108110465,-0.48679268,0.8669053,0.107276246,-0.48700735,0.86679393,0.10720127,-0.48733443,0.8665584,0.10761861,-0.48716486,0.866395,0.10968174,-0.48742187,0.8662175,0.109941706,-0.48901126,0.865371,0.109549396,-0.4896026,0.8650146,0.10972264,-0.49082392,0.86424524,0.11032717,-0.4922892,0.8635335,0.10936721,-0.49276727,0.8632596,0.10937652,-0.49372673,0.8625986,0.110261165,-0.49405766,0.8623277,0.110896155,-0.49429235,0.8622418,0.11051753,-0.49302673,0.86322397,0.10848529,-0.49335065,0.8631831,0.10733178,-0.49364647,0.86302984,0.10720361,-0.49476114,0.8623454,0.10757243,-0.49512553,0.8621439,0.10751116,-0.4965423,0.86141455,0.106820844,-0.49698988,0.8611283,0.10704744,-0.4990195,0.8598971,0.10750153,-0.50016314,0.8593663,0.10642567,-0.5009761,0.8589616,0.105867445,-0.501967,0.85843885,0.10541297,-0.5037219,0.85748225,0.10482536,-0.50601286,0.8562829,0.1035887,-0.50648046,0.85602623,0.103424944,-0.5071703,0.85562724,0.10334522,-0.5080837,0.85508466,0.10334962,-0.50937444,0.85429895,0.10349373,-0.5098437,0.8539971,0.10367413,-0.5104474,0.85357296,0.10419513,-0.5105618,0.8533749,0.10525183,-0.5125735,0.8517193,0.10882395,-0.5130302,0.851276,0.1101328,-0.5139953,0.8502567,0.113456555,-0.51451117,0.8498496,0.11416652,-0.516389,0.8482228,0.117730334,-0.5208589,0.8448695,0.12207222,-0.52166075,0.84431463,0.12248623,-0.52450174,0.8422696,0.12441795,-0.54438347,0.82900274,0.12806676,-0.54659444,0.8277396,0.12681358,-0.5484516,0.8266516,0.12588869,-0.5518237,0.8246746,0.124106325,-0.55559695,0.82258284,0.12111787,-0.5564935,0.8220572,0.12056935,-0.5575051,0.82151186,0.11960917,-0.55919015,0.820664,0.1175457,-0.5607063,0.8198377,0.11607985,-0.5618573,0.8192625,0.11456598,-0.5640322,0.81823003,0.111208394,-0.56452554,0.81796396,0.11066107,-0.5685188,0.8161119,0.103670746,-0.5689626,0.8158533,0.10327133,-0.56920147,0.81568325,0.10329815,-0.56923693,0.81560093,0.10375164,-0.57113516,0.8140299,0.1056407,-0.57240367,0.81304765,0.10633699,-0.57313013,0.8124563,0.106941976,-0.57401097,0.81171036,0.107877985,-0.57454437,0.8112357,0.10860641,-0.57482594,0.81091774,0.1094879,-0.5749219,0.81074965,0.1102263,-0.5757102,0.810215,0.11004326,-0.57608175,0.8100301,0.10945797,-0.5763966,0.80954957,0.11133938,-0.57694376,0.8090425,0.11218787,-0.5778024,0.80851823,0.11154657,-0.5780698,0.8083226,0.11157874,-0.5786962,0.807795,0.11215145,-0.5790886,0.80737484,0.11314688,-0.57921076,0.80728585,0.11315691,-0.57925516,0.8073371,0.1125625,-0.57958525,0.8071455,0.11223666,-0.5807121,0.80636495,0.11202255,-0.5811207,0.8061058,0.1117681,-0.5819319,0.80548,0.112058856,-0.5851124,0.80292517,0.113818705,-0.5878271,0.80079615,0.11482517,-0.5899599,0.7990907,0.11576436,-0.59079087,0.79838413,0.11640011,-0.59161067,0.7975731,0.11778773,-0.5921537,0.79712516,0.118090995,-0.5928203,0.7966607,0.11788045,-0.5935589,0.79610825,0.11789639,-0.59494,0.79500115,0.1184042,-0.5952738,0.7947085,0.11869057,-0.59796935,0.7922808,0.121341966,-0.59916115,0.7913376,0.12161676,-0.5993986,0.79112864,0.121806465,-0.59966224,0.7908111,0.122568466,-0.5998807,0.79071194,0.12213812,-0.6005028,0.79029703,0.12176603,-0.6032896,0.78836215,0.120527245,-0.60449445,0.78761286,0.1193837,-0.6052522,0.7870796,0.119061284,-0.60691327,0.7858442,0.11876495,-0.60735106,0.78558224,0.118259035,-0.6078916,0.7851417,0.11840731,-0.61054766,0.78258055,0.121652156,-0.61165464,0.78184676,0.1208065,-0.61233526,0.7813455,0.1206015,-0.6139193,0.7801212,0.120473884,-0.6148845,0.77934116,0.120600194,-0.6141696,0.77998424,0.120084435,-0.61256695,0.78137213,0.11924484,-0.61208826,0.7817963,0.11892214,-0.6116469,0.7822143,0.1184432,-0.611242,0.7826267,0.11780765,-0.61103994,0.78289294,0.11708462,-0.61104065,0.7830133,0.11627352,-0.61092055,0.78317285,0.11582941,-0.61003524,0.78394055,0.11530072,-0.6100467,0.7839988,0.11484313,-0.6111462,0.7833673,0.11329624,-0.6116396,0.7830175,0.11305129,-0.6128984,0.78209114,0.112645596,-0.613533,0.7816677,0.11212882,-0.6145206,0.78093845,0.11180119,-0.61585987,0.7799026,0.111662626,-0.6167629,0.77918786,0.11166839,-0.6172299,0.77879614,0.111820355,-0.61763686,0.77843577,0.11208268,-0.6183989,0.77768415,0.11309383,-0.6197897,0.7762366,0.11540122,-0.62163436,0.77453226,0.11692089,-0.620352,0.7757776,0.115466595,-0.6189793,0.77723175,0.11302878,-0.6171277,0.7790463,0.11063598,-0.61653805,0.7797223,0.10915168,-0.61616904,0.7802433,0.10749923,-0.61602104,0.7806089,0.10567831,-0.61602706,0.78075635,0.10454746,-0.61653036,0.7805103,0.1034116,-0.6174498,0.7800455,0.10141337,-0.61605936,0.7809177,0.10314264,-0.615375,0.78139603,0.103604466,-0.6147955,0.7818712,0.1034595,-0.61363167,0.7828807,0.10273243,-0.6118783,0.7844218,0.10142707,-0.6107699,0.7854071,0.100477666,-0.610312,0.78583896,0.0998821,-0.60840595,0.7877121,0.0967049,-0.60767674,0.7884984,0.09486413,-0.6073398,0.7889683,0.09309817,-0.6068001,0.7895367,0.091790505,-0.60606,0.79020303,0.090941675,-0.6057513,0.79054815,0.08999502,-0.60587364,0.79057264,0.08894907,-0.6064284,0.7903388,0.08723044,-0.6058727,0.79072815,0.08756271,-0.60514534,0.7911583,0.0886994,-0.60465586,0.79148036,0.08916352,-0.604003,0.7919411,0.0894965,-0.6031526,0.7926368,0.08907211,-0.60157776,0.7940288,0.08730683,-0.6005496,0.7949593,0.08590638,-0.5985846,0.7966525,0.083912306,-0.59780645,0.7973458,0.082867876,-0.59334975,0.8008513,0.081075884,-0.59253466,0.8014017,0.08159728,-0.5911235,0.8024489,0.08153947,-0.58776313,0.80500704,0.08061152,-0.58591425,0.8063367,0.08078126,-0.5848131,0.80714196,0.080718316,-0.58389264,0.80784273,0.08037117,-0.5817751,0.80947655,0.079280674,-0.5814133,0.8097652,0.07898656,-0.5800853,0.8108643,0.07746026,-0.57579476,0.8139482,0.0771281,-0.5709351,0.8172804,0.078011595,-0.57034504,0.81770694,0.077857696,-0.568442,0.81913346,0.076772995,-0.5675674,0.8198304,0.0757976,-0.5666596,0.8206382,0.07382309,-0.5665617,0.82080567,0.07270387,-0.5668564,0.82075745,0.070929475,-0.566079,0.8213704,0.070037164,-0.5659962,0.8214618,0.06963319,-0.566508,0.8212946,0.06740806,-0.5662422,0.82176447,0.063819654,-0.56631243,0.8217912,0.06284492,-0.5658584,0.8222895,0.060366984,-0.56592953,0.8222847,0.059763424,-0.5664005,0.82205284,0.05847813,-0.5664825,0.8220756,0.05735197,-0.56676984,0.8219703,0.05600677,-0.5674334,0.8217387,0.05258168,-0.56728137,0.82197857,0.05042972,-0.56737095,0.82200134,0.04903055,-0.56770647,0.82180816,0.048381615,-0.5683753,0.8213918,0.047592178,-0.5703372,0.8201065,0.04626887,-0.5673293,0.82211876,0.04752019,-0.5665975,0.8226303,0.047399107,-0.56615937,0.8229708,0.046718765,-0.5655743,0.82344496,0.04543276,-0.5650124,0.8238717,0.044681124,-0.56412953,0.8245232,0.043810252,-0.56334406,0.825124,0.042588804,-0.5626538,0.8256745,0.04101739,-0.5622017,0.826058,0.03946608,-0.56134546,0.8268179,0.03554353,-0.55961883,0.82820266,0.030118011,-0.55893236,0.8287901,0.026486982,-0.5578715,0.82958704,0.023763252,-0.5538602,0.83235675,0.020520903,-0.5521013,0.8335705,0.01855531,-0.5485118,0.8360473,0.012640151,-0.5472402,0.83690053,0.011210152,-0.54672146,0.8372544,0.010034747,-0.5462866,0.8375646,0.007517729,-0.54584044,0.8378657,0.006265639,-0.5449084,0.8384932,0.001989393,-0.5438786,0.8391636,-0.00071379694,-0.5424453,0.8400848,-0.0032646514,-0.5413204,0.8407978,-0.0055950745,-0.5408064,0.84110445,-0.008471705,-0.54100174,0.840956,-0.010494323,-0.54336816,0.8392762,-0.0191459,-0.5440881,0.8387559,-0.021368023,-0.54453576,0.8384342,-0.022557385,-0.5438681,0.83888674,-0.021827769,-0.5435283,0.8391061,-0.021862349,-0.54360163,0.8390194,-0.02331873,-0.54379004,0.8388826,-0.023840345,-0.54503524,0.8379885,-0.026679508,-0.5447096,0.83822006,-0.026049802,-0.5441982,0.8385712,-0.025428088,-0.54350173,0.8390412,-0.02481443,-0.5424771,0.8397235,-0.024145054,-0.5411242,0.8406164,-0.023421332,-0.54011667,0.84127545,-0.023013396,-0.5394553,0.8417022,-0.022919374,-0.5385009,0.84231,-0.023035102,-0.5372541,0.84309685,-0.023359763,-0.5326117,0.8459865,-0.025132827,-0.5316173,0.84660256,-0.025440961,-0.5281455,0.8487491,-0.02621641,-0.525906,0.85011804,-0.026872667,-0.5207635,0.85322696,-0.02844525,-0.5188126,0.8544097,-0.028593646,-0.5183381,0.85469115,-0.02878684,-0.5178292,0.85496974,-0.029659484,-0.51800734,0.85483044,-0.030548962,-0.5178955,0.8548619,-0.031550452,-0.5173089,0.855116,-0.0341785,-0.51732516,0.85500246,-0.036680873,-0.5176282,0.8547916,-0.037314698,-0.5192127,0.85379046,-0.038210012,-0.5233908,0.8511696,-0.0396536,-0.51868033,0.8540862,-0.038825072,-0.5178274,0.854604,-0.038818024,-0.51729774,0.85487115,-0.039978612,-0.5156815,0.85580146,-0.040944513,-0.51535434,0.8559826,-0.04127614,-0.5152138,0.8560482,-0.04166792,-0.51526105,0.85599756,-0.04212125,-0.5147371,0.85629696,-0.042440113,-0.51364,0.8569464,-0.042623807,-0.51294243,0.85735244,-0.04285814,-0.51244605,0.85761946,-0.04345088,-0.512085,0.8577855,-0.04441734,-0.5118664,0.8579572,-0.043614816,-0.5109595,0.8585245,-0.04308191,-0.5092415,0.85956585,-0.0426573,-0.5061034,0.8614353,-0.042291086,-0.49667057,0.8669609,-0.04119684,-0.4937973,0.8686408,-0.040340804,-0.4920702,0.8696363,-0.0399954,-0.49149492,0.8699542,-0.040154833,-0.491104,0.8701626,-0.040421594,-0.49021187,0.87067944,-0.040119782,-0.49022284,0.87071633,-0.039174534,-0.48931536,0.8712527,-0.038590517,-0.48540193,0.87352586,-0.036571596,-0.48314863,0.87483484,-0.035090722,-0.48147243,0.87579215,-0.03424021,-0.48037857,0.8764015,-0.034012202,-0.47953787,0.87686235,-0.033997033,-0.47874573,0.8772955,-0.033987217,-0.47896507,0.8772133,-0.033005238,-0.47844493,0.8775151,-0.0325233,-0.47813874,0.87768257,-0.032506153,-0.4768926,0.8783474,-0.03285306,-0.47458875,0.87966967,-0.030770708,-0.47315452,0.88052535,-0.0282813,-0.47267017,0.88080436,-0.027687246,-0.4722638,0.8810335,-0.027329875,-0.47207075,0.88113666,-0.027338523,-0.4694457,0.8824722,-0.029385215,-0.46975133,0.88236475,-0.02767816,-0.46970925,0.88239723,-0.027355198,-0.4693042,0.8826285,-0.026841633,-0.46897784,0.8827967,-0.027015414,-0.46821123,0.88319147,-0.027404832,-0.46823665,0.88322306,-0.025911927,-0.46786436,0.8834432,-0.025120704,-0.4673944,0.8837058,-0.024628127,-0.46714348,0.8838362,-0.024708722,-0.46649358,0.8841716,-0.024985697,-0.46555376,0.8847041,-0.02362888,-0.46508995,0.8849467,-0.023678046,-0.46442723,0.8852795,-0.024240386,-0.4633618,0.88579535,-0.025737623,-0.4649344,0.88506657,-0.022208469,-0.46576887,0.88464415,-0.021542229,-0.46626362,0.88439643,-0.021003278,-0.46641997,0.88432366,-0.020592535,-0.46589163,0.8845996,-0.020700093,-0.46467677,0.88522357,-0.021323852,-0.4638898,0.88562244,-0.021888379,-0.46249756,0.88635075,-0.02187087,-0.46173796,0.8867695,-0.02092677,-0.46124244,0.88703406,-0.020640017,-0.46030682,0.88753283,-0.020076225,-0.46045828,0.88747156,-0.01929893,-0.46036926,0.88753086,-0.018684056,-0.46008518,0.8876977,-0.0177328,-0.46076185,0.8873659,-0.016743613,-0.46083805,0.8873372,-0.01615611,-0.46031442,0.8876184,-0.01562759,-0.4600552,0.88775414,-0.0155497175,-0.4592382,0.8881747,-0.015682748,-0.45886493,0.88833916,-0.017219754,-0.4564091,0.88957095,-0.018820245,-0.4563153,0.88964605,-0.017499084,-0.45616946,0.88972783,-0.017142344,-0.45582563,0.88992184,-0.016190449,-0.45631596,0.88969314,-0.014895425,-0.45688888,0.8894487,-0.011556882,-0.4566779,0.8895671,-0.010757932,-0.45512345,0.8903843,-0.008857172,-0.45484626,0.89053404,-0.008000636,-0.45477837,0.8905778,-0.0069155237,-0.45438975,0.89078164,-0.006169425,-0.45368204,0.891145,-0.0057619116,-0.45296338,0.89151204,-0.005523044,-0.45223773,0.89188075,-0.005452189,-0.44922125,0.8934031,-0.005576983,-0.44847682,0.89377534,-0.0058441334,-0.4470274,0.8944882,-0.007569283,-0.44649184,0.8947464,-0.008597077,-0.44597092,0.8949875,-0.010354747,-0.4450756,0.8954182,-0.011571577,-0.44350928,0.89617467,-0.013054852,-0.44288048,0.8964675,-0.014241857,-0.44319385,0.89629793,-0.015142406,-0.4437184,0.89602184,-0.016089052,-0.4447025,0.8954744,-0.019113142,-0.44341862,0.896152,-0.017073385,-0.44288713,0.8964222,-0.016680272,-0.44262356,0.8965468,-0.016976664,-0.44215614,0.89675623,-0.018061874,-0.4392402,0.89804107,-0.024295254,-0.4388104,0.898234,-0.024920855,-0.4384158,0.89839953,-0.02588172,-0.43851724,0.89834374,-0.026097754,-0.43917307,0.8980279,-0.025939979,-0.43963167,0.8978145,-0.025555775,-0.43995488,0.89766884,-0.025107343,-0.4379049,0.89858586,-0.02797893,-0.43743345,0.8988284,-0.027558392,-0.43687233,0.89910424,-0.02746061,-0.435154,0.89991707,-0.02811221,-0.43713486,0.89901435,-0.026197894,-0.43875885,0.89831644,-0.022765651,-0.4406065,0.89748585,-0.019623274,-0.44133148,0.89716315,-0.01802218,-0.4415578,0.89707315,-0.016925983,-0.44145453,0.8971383,-0.016147872,-0.44124898,0.8972629,-0.014787585,-0.44145554,0.8971567,-0.015059622,-0.44168186,0.8970449,-0.015084316,-0.44192815,0.89692736,-0.014861239,-0.44222128,0.8968128,-0.012929038,-0.44251126,0.89668417,-0.011887569,-0.44427347,0.89585,-0.008592986,-0.44476473,0.89561737,-0.007341423,-0.444889,0.89556354,-0.0063047535,-0.44464946,0.8956879,-0.0054857656,-0.44423616,0.8958962,-0.004923693,-0.44365296,0.89618677,-0.0046181157,-0.44359285,0.8962189,-0.00413052,-0.444056,0.89599234,-0.003458531,-0.4442443,0.89590114,-0.0028598993,-0.4439761,0.8960366,-0.001900924,-0.44323155,0.89640635,-0.0011969989,-0.44143865,0.8972914,-0.00010347727,-0.4410462,0.89748436,-0.00013829628,-0.4402917,0.8978547,-0.00045812473,-0.4387025,0.89863145,-0.0012875851,-0.4386525,0.89865613,-0.001086324,-0.439256,0.89836174,0.0005989661,-0.43904448,0.8984646,0.0011056273,-0.43870232,0.8986318,0.0010673727,-0.43710598,0.89940995,0.00035425712,-0.4367987,0.89955926,0.00010979752,-0.43636587,0.8997691,-0.00060952455,-0.43572694,0.9000775,0.0015811236,-0.4368058,0.899554,0.001800565,-0.43715882,0.899382,0.0020393492,-0.43788108,0.8990281,0.0029361418,-0.4381257,0.8989072,0.0034310033,-0.4381271,0.8989049,0.003816385,-0.43788627,0.8990211,0.0040908135,-0.43772003,0.89909977,0.004557103,-0.43857884,0.8986726,0.006012708,-0.4388148,0.89855295,0.006651808,-0.43861443,0.8986494,0.006831609,-0.43667522,0.8995991,0.0060257115,-0.43654314,0.89966273,0.0060908254,-0.43777213,0.89905727,0.007185664,-0.4381235,0.89887995,0.007919763,-0.43839964,0.89873457,0.009047489,-0.438103,0.89886576,0.010301305,-0.43679562,0.8994758,0.012361388,-0.43525553,0.90019184,0.014396207,-0.4342751,0.9006523,0.015183724,-0.43334615,0.9010958,0.015408619,-0.43178454,0.9018358,0.01594596,-0.42488688,0.9050214,0.020181976,-0.42326358,0.90576714,0.020827586,-0.42104477,0.9067765,0.021855904,-0.42032403,0.9071071,0.022008508,-0.4189179,0.90776354,0.021752663,-0.41852543,0.9079589,0.021142961,-0.41805914,0.9082202,0.019042866,-0.41790605,0.9083646,0.015108174,-0.41550818,0.90957284,0.005499146,-0.41233528,0.91102767,0.0028758931,-0.4109274,0.9116668,0.0015205748,-0.41023672,0.9119789,0.00054364844,-0.40983355,0.9121603,-0.0003402021,-0.40971938,0.91221094,-0.0011344333,-0.4085502,0.9127259,-0.004255838,-0.40796384,0.91297126,-0.0070031392,-0.40826148,0.9128335,-0.0075890995,-0.40848902,0.9127311,-0.00765534,-0.40742996,0.9132176,-0.005872178,-0.40783626,0.91304314,-0.004665884,-0.40798742,0.91298026,-0.003655054,-0.40790418,0.913022,-0.002251569,-0.4086097,0.9127088,-0.0008315487,-0.40860817,0.9127099,-0.00002714927,-0.40883067,0.91260993,0.00078707613,-0.40877092,0.9126364,0.0010862093,-0.40893418,0.9125545,0.0041371863,-0.4108424,0.9116829,0.006541947,-0.41139668,0.911425,0.007567769,-0.41175333,0.91125065,0.009028029,-0.41280973,0.910767,0.009566493,-0.41317502,0.9105946,0.010193602,-0.41427317,0.9100786,0.01160879,-0.41614294,0.90919673,0.013652214,-0.41682938,0.9088647,0.014774758,-0.4169639,0.9087658,0.016906435,-0.41683695,0.90879214,0.018542957,-0.41653156,0.90890765,0.019705376,-0.41605017,0.909113,0.020393385,-0.4150937,0.9095324,0.021165015,-0.41365862,0.9101658,0.022017963,-0.4113004,0.91119164,0.023701388,-0.4054081,0.9137055,0.028044088,-0.40498054,0.91388935,0.028231932,-0.4038311,0.91438854,0.028530842,-0.4032702,0.9146385,0.028452227,-0.40277275,0.91486675,0.028158743,-0.40221405,0.9151377,0.02732792,-0.40159005,0.91545147,0.025962451,-0.4008842,0.9158163,0.023923889,-0.39917585,0.9165922,0.022748047,-0.39900216,0.9166613,0.023005294,-0.39876285,0.9167638,0.023071958,-0.3975599,0.9172781,0.02338821,-0.3974831,0.9172017,0.027353954,-0.3971478,0.9172893,0.029222239,-0.3968921,0.91731983,0.03163872,-0.39836383,0.9166443,0.032703616,-0.3994232,0.9161507,0.033600166,-0.40007296,0.91584027,0.03432513,-0.40081796,0.91546136,0.035712842,-0.4016503,0.91501397,0.037768546,-0.40200198,0.91481376,0.038861237,-0.40187877,0.9148627,0.038984146,-0.40068448,0.9153729,0.039298512,-0.40008605,0.915605,0.039982807,-0.4008476,0.9151793,0.042048253,-0.4010774,0.9150425,0.04282687,-0.40102166,0.9150552,0.04307603,-0.40057218,0.91523045,0.043533355,-0.3997754,0.9155924,0.04324714,-0.3978027,0.9165063,0.042061985,-0.3952372,0.9176869,0.040476188,-0.3943403,0.918086,0.040173102,-0.3938163,0.9183253,0.03984235,-0.3912821,0.9195243,0.03705938,-0.39099476,0.9196512,0.036942393,-0.39058322,0.91983753,0.036655672,-0.3901465,0.92005134,0.03593358,-0.3901074,0.9200998,0.035108704,-0.3903585,0.9200033,0.034845255,-0.3911308,0.91969305,0.03437101,-0.38939226,0.92031926,0.037230324,-0.38957062,0.92024094,0.037300948,-0.39007008,0.92000926,0.037792645,-0.39134943,0.9194047,0.03925116,-0.3916754,0.91929036,0.038672693,-0.39186135,0.91921186,0.038655348,-0.39230147,0.91901004,0.03898839,-0.39294672,0.918697,0.03985858,-0.39298326,0.918665,0.040233478,-0.39278477,0.9187188,0.040936824,-0.3936546,0.9183017,0.041929092,-0.39582393,0.91729915,0.04342519,-0.39654824,0.91695297,0.044122104,-0.3969112,0.91678625,0.044321723,-0.39803976,0.9162777,0.044715643,-0.39829037,0.9161442,0.045216814,-0.39815786,0.91616166,0.046023052,-0.39773858,0.91630775,0.04673486,-0.39703164,0.91658264,0.047351725,-0.3949258,0.9174134,0.04884852,-0.39407566,0.9176679,0.050891235,-0.39345896,0.91790277,0.05142501,-0.39189804,0.91851145,0.052466094,-0.3913211,0.91871613,0.053183116,-0.3908574,0.9188921,0.053552326,-0.38981688,0.91930777,0.054000147,-0.3881993,0.9199612,0.054522794,-0.3870003,0.92042255,0.055254307,-0.3868818,0.9204099,0.056285717,-0.38653758,0.9205185,0.056871586,-0.3852961,0.9209807,0.057805795,-0.38490543,0.921137,0.057917923,-0.38332742,0.92178583,0.058060355,-0.38055977,0.9229214,0.05822653,-0.37888882,0.9236115,0.058180377,-0.3783158,0.9238622,0.057928707,-0.37687203,0.9245152,0.056913756,-0.37628844,0.92479134,0.056285184,-0.3702191,0.9275199,0.051425535,-0.36819282,0.92831326,0.051658448,-0.3678629,0.9284463,0.051617928,-0.36784926,0.9284595,0.051476017,-0.36814946,0.9283541,0.051231414,-0.36883032,0.92813057,0.0503765,-0.36672944,0.92903733,0.04898081,-0.366573,0.9291105,0.048763428,-0.36641893,0.9291751,0.048691146,-0.3658765,0.9293797,0.048864674,-0.36559063,0.92950106,0.048695862,-0.363709,0.9302807,0.047891375,-0.36364016,0.93027407,0.04853794,-0.3630186,0.93045753,0.049661793,-0.36305216,0.9304082,0.050336663,-0.3635409,0.9301784,0.051050313,-0.3635208,0.93015367,0.051640607,-0.36299393,0.9303335,0.0521052,-0.3622149,0.93057334,0.053232096,-0.361602,0.93077505,0.053868543,-0.35974136,0.9314198,0.05516675,-0.35915405,0.9316432,0.055220515,-0.35833216,0.9319646,0.055136655,-0.3577406,0.9322014,0.054975085,-0.35704342,0.93250024,0.05443574,-0.35673526,0.9326393,0.054072753,-0.35657462,0.93273705,0.053443,-0.35655335,0.9328212,0.052098703,-0.3563046,0.9330106,0.050381906,-0.35536444,0.93330956,0.051472526,-0.3544852,0.93359935,0.052273605,-0.35233918,0.93432844,0.053735107,-0.3520263,0.9344466,0.053731885,-0.3513253,0.93473667,0.05327201,-0.3511557,0.93481416,0.053030174,-0.3504779,0.9351853,0.050928216,-0.35038012,0.93529636,0.04954329,-0.35080984,0.9352279,0.04776324,-0.35025948,0.93542564,0.047928777,-0.3497042,0.9356448,0.04770557,-0.3485153,0.936121,0.047060013,-0.347998,0.93641764,0.04493744,-0.347023,0.93678284,0.044865336,-0.34668553,0.936869,0.04566848,-0.34548798,0.93728733,0.046157867,-0.34481147,0.937536,0.04616589,-0.3442055,0.9378348,0.04459235,-0.3442378,0.93785936,0.043819416,-0.3445726,0.93780345,0.042360976,-0.34467655,0.9379128,0.038955856,-0.34482214,0.9378872,0.038279932,-0.34424385,0.9381633,0.03668462,-0.3429852,0.93870384,0.0345873,-0.3428897,0.9387561,0.034111306,-0.3429805,0.9387922,0.03214871,-0.34332368,0.93870413,0.031039601,-0.34399182,0.9385239,0.029026017,-0.34354973,0.9387106,0.028214877,-0.3433848,0.93879104,0.02753679,-0.34349808,0.93876547,0.026989425,-0.34367764,0.93870413,0.026837906,-0.3450556,0.9381801,0.027472196,-0.34665844,0.937595,0.027267763,-0.34718314,0.937396,0.02743347,-0.34830892,0.93696374,0.027926566,-0.34877402,0.93679386,0.027819708,-0.34928927,0.9366002,0.027874885,-0.35027373,0.93622375,0.028168531,-0.35053912,0.93612635,0.028102687,-0.3514754,0.9357759,0.0280819,-0.35205027,0.93555754,0.028154992,-0.353438,0.9350231,0.02851909,-0.35435054,0.934654,0.02928556,-0.35448933,0.9345946,0.029501732,-0.35572734,0.93404233,0.03198436,-0.35660446,0.93371165,0.03187176,-0.35713288,0.93350863,0.031902727,-0.35757068,0.9333441,0.031811263,-0.357833,0.9332624,0.031254083,-0.35854396,0.9330032,0.030842707,-0.35915476,0.93277085,0.030762967,-0.35959235,0.9326015,0.03078594,-0.36129913,0.93198436,0.02946243,-0.36088976,0.9321613,0.028877728,-0.36092755,0.9321594,0.028462237,-0.36100814,0.9321332,0.028299283,-0.36169526,0.93187374,0.028069401,-0.36220628,0.9316894,0.027595801,-0.36269498,0.9315069,0.02733612,-0.3633775,0.93124753,0.027106676,-0.36422318,0.9309173,0.027099252,-0.3729546,0.92748016,0.026181096,-0.37668258,0.92603403,0.023899022,-0.37709284,0.9258712,0.02373757,-0.37852678,0.92529666,0.023313921,-0.37956423,0.92487466,0.023191787,-0.38357902,0.92325115,0.0217822,-0.38366246,0.92322624,0.021364149,-0.38444546,0.92291653,0.020659825,-0.3868946,0.92195886,0.017447542,-0.38513428,0.92270374,0.017011955,-0.38464844,0.9229103,0.016800018,-0.37462825,0.9271104,0.010954469,-0.3717625,0.9282638,0.010906202,-0.37024596,0.9288733,0.010596094,-0.36900106,0.92935735,0.011537796,-0.37010399,0.92891306,0.011981466,-0.37033716,0.9288171,0.012213303,-0.37045866,0.928758,0.012995199,-0.37033695,0.92879754,0.013627032,-0.37002373,0.9289188,0.013870331,-0.36948192,0.9291322,0.014013708,-0.36873695,0.9294272,0.014077939,-0.36778843,0.92980313,0.014062759,-0.36707997,0.9300852,0.013923832,-0.3666099,0.9302744,0.013661051,-0.3652077,0.9308308,0.013318019,-0.36287123,0.93175,0.012897784,-0.36122274,0.9323977,0.012353129,-0.35957906,0.93304795,0.011152402,-0.35895503,0.93329513,0.010556172,-0.3560765,0.93442774,0.0073682885,-0.35471484,0.9349521,0.0064794472,-0.35398003,0.9352348,0.005828099,-0.35393843,0.93525565,0.004951584,-0.35417384,0.935169,0.0044537545,-0.35464376,0.9349929,0.004011677,-0.35697314,0.93411046,0.0027912345,-0.35812402,0.9336717,0.0020839183,-0.35947806,0.9331519,0.0017557335,-0.36266425,0.93191886,0.0013728961,-0.36446023,0.9312187,0.0007364125,-0.36496744,0.9310201,0.00065877545,-0.36815628,0.9297639,-0.00003420457,-0.36912036,0.9293813,-0.0007499531,-0.3696559,0.92916816,-0.0010118718,-0.36987755,0.9290787,-0.0018414807,-0.36924943,0.9293281,-0.0020444954,-0.36898157,0.9294338,-0.0023187702,-0.3682001,0.9297426,-0.0027186584,-0.367586,0.9299834,-0.0033895632,-0.36689353,0.9302557,-0.0036734005,-0.36467823,0.9311276,-0.0033431859,-0.36341786,0.93162066,-0.0032359236,-0.36129004,0.9324473,-0.0033986578,-0.36057463,0.93272567,-0.0029475698,-0.36029112,0.93283504,-0.0030121726,-0.35921463,0.93324775,-0.0036822131,-0.35661158,0.93424124,-0.004635764,-0.35362837,0.9353548,-0.0076372176,-0.35336077,0.93545693,-0.0075127212,-0.35336167,0.93546,-0.0070801103,-0.35311416,0.93555754,-0.0065197605,-0.35316968,0.93553793,-0.006317834,-0.35352957,0.93540096,-0.006474691,-0.3537943,0.9353027,-0.006206281,-0.35396606,0.93524206,-0.0055128676,-0.35359392,0.9353853,-0.00507395,-0.35108167,0.9363375,-0.0037107693,-0.35109043,0.9363363,-0.0031453287,-0.3509014,0.93640894,-0.0025452075,-0.35059804,0.936522,-0.002756924,-0.3501176,0.9366996,-0.0033911492,-0.34992987,0.93676704,-0.0040716976,-0.35003397,0.9367247,-0.0048005832,-0.3499062,0.93676674,-0.0058034053,-0.3494126,0.936936,-0.007856888,-0.34967706,0.9368291,-0.008789845,-0.34878755,0.9371681,-0.00794571,-0.34816718,0.93740547,-0.0071125966,-0.34789395,0.93750787,-0.006988936,-0.347763,0.93755406,-0.0072955783,-0.34766138,0.93758255,-0.00840091,-0.3482015,0.9373734,-0.009314872,-0.3493035,0.9369506,-0.010514263,-0.34774023,0.93749064,-0.0137132155,-0.34743544,0.9376062,-0.013533943,-0.34709653,0.9377247,-0.014011668,-0.3468819,0.9377872,-0.015105514,-0.34723252,0.9376421,-0.016027791,-0.3470148,0.9376963,-0.01750489,-0.34630832,0.93797314,-0.016640013,-0.3435153,0.93904704,-0.013705496,-0.3420597,0.93959695,-0.012357708,-0.34118268,0.9399232,-0.011775492,-0.3406285,0.9401183,-0.012238549,-0.34039888,0.94019616,-0.0126424795,-0.33924007,0.9405874,-0.014542769,-0.33843628,0.94088566,-0.013967421,-0.33788002,0.9410896,-0.013691779,-0.33781356,0.9411161,-0.013510881,-0.3385272,0.940866,-0.013056027,-0.33899942,0.9407028,-0.0125552155,-0.33946443,0.94054455,-0.011824527,-0.3396646,0.940482,-0.011022097,-0.33945906,0.9405721,-0.009577497,-0.3392412,0.9406534,-0.009307755,-0.33896837,0.94075227,-0.009255463,-0.33805576,0.94107544,-0.009761949,-0.33695704,0.9414659,-0.010092612,-0.3365046,0.941625,-0.010344863,-0.336241,0.94171536,-0.010686706,-0.336403,0.94165367,-0.0110158585,-0.33656684,0.9415808,-0.012180236,-0.3357755,0.94186634,-0.011943868,-0.3354072,0.9419968,-0.012000587,-0.333674,0.94260025,-0.0129027525,-0.33176634,0.9432662,-0.013414325,-0.33131656,0.9434212,-0.013630305,-0.33104286,0.9435147,-0.013808123,-0.33029428,0.9437618,-0.01481071,-0.3298538,0.94390935,-0.01521915,-0.32850942,0.9443657,-0.015969152,-0.32779992,0.94459504,-0.0169549,-0.3275615,0.9446758,-0.017060421,-0.3270048,0.94487524,-0.016691068,-0.32653308,0.9450406,-0.016565444,-0.32401326,0.9459118,-0.016315822,-0.32313663,0.9462117,-0.01631389,-0.32081407,0.946998,-0.016525045,-0.32017305,0.9472122,-0.016681883,-0.31957516,0.9474098,-0.016923299,-0.3174394,0.9481065,-0.01806081,-0.3164017,0.9484382,-0.01883911,-0.3155518,0.9487034,-0.019719474,-0.31373343,0.9492846,-0.020737171,-0.31304455,0.94951665,-0.020522831,-0.31261337,0.9496599,-0.02046941,-0.31220272,0.9497879,-0.020792326,-0.31201828,0.9498146,-0.022289038,-0.31057802,0.95023656,-0.024327451,-0.30946577,0.95059985,-0.024306918,-0.3083883,0.95094293,-0.024579823,-0.3082341,0.95098567,-0.0248602,-0.30824432,0.95096457,-0.025531119,-0.30849928,0.9508588,-0.026377,-0.30933595,0.95053583,-0.028158413,-0.31127372,0.9498455,-0.030036246,-0.3127261,0.94934547,-0.030750798,-0.31404105,0.9488663,-0.032108158,-0.3144351,0.9487279,-0.032340143,-0.3152339,0.94846797,-0.032189105,-0.31546035,0.9484026,-0.031895284,-0.31568316,0.9483461,-0.0313659,-0.3157842,0.9483534,-0.030102937,-0.31603077,0.9482774,-0.029908473,-0.3165296,0.94810224,-0.030185683,-0.31849724,0.9474158,-0.031028342,-0.31793803,0.94755155,-0.03258024,-0.31737006,0.94772977,-0.03293177,-0.31704018,0.94782764,-0.033291135,-0.31694764,0.9478456,-0.033659413,-0.31718934,0.94774824,-0.034119762,-0.31805158,0.9474289,-0.03495219,-0.31904456,0.9470626,-0.035818506,-0.31957304,0.94687337,-0.036108963,-0.3206307,0.9465168,-0.036082074,-0.3208981,0.94641966,-0.036252327,-0.32112423,0.9463291,-0.036612727,-0.3213756,0.94623816,-0.036756773,-0.32344255,0.9455319,-0.03680194,-0.32524934,0.9448903,-0.037351217,-0.32657763,0.94442654,-0.037491333,-0.32883033,0.9436778,-0.03664533,-0.32948986,0.9434675,-0.0361316,-0.32960024,0.9434444,-0.03572704,-0.32879668,0.943788,-0.034014925,-0.32886532,0.94376796,-0.033905614,-0.33007288,0.9433203,-0.03462325,-0.33046463,0.9431833,-0.03461763,-0.3312498,0.94292647,-0.034106396,-0.330851,0.94303167,-0.035054926,-0.33090094,0.94299763,-0.03549603,-0.33115566,0.9428842,-0.036129512,-0.33160645,0.9427077,-0.03659624,-0.3322553,0.9424676,-0.036896016,-0.33445308,0.9416307,-0.038375806,-0.33581856,0.9411348,-0.03861543,-0.33635795,0.94094163,-0.03862866,-0.33779058,0.94043595,-0.038440894,-0.34126133,0.9392438,-0.036902755,-0.34216008,0.9389254,-0.036681693,-0.3428675,0.9386806,-0.036340233,-0.34338334,0.93850976,-0.035878632,-0.3437422,0.93840325,-0.035223283,-0.34437945,0.9382258,-0.03369143,-0.3450563,0.9379956,-0.033172037,-0.34598842,0.9376913,-0.03204819,-0.3477002,0.9371467,-0.029334787,-0.34759226,0.9371934,-0.029122502,-0.34776083,0.93718123,-0.027454369,-0.34888843,0.9367763,-0.026963046,-0.34962353,0.9365148,-0.026522359,-0.34996638,0.9363976,-0.02613477,-0.3501645,0.9363414,-0.025488248,-0.35021642,0.9363462,-0.024583414,-0.3500805,0.93641317,-0.02395871,-0.3503504,0.9363704,-0.021565916,-0.3510642,0.93609905,-0.021735672,-0.35145968,0.93595093,-0.021724408,-0.35300833,0.9353262,-0.023452822,-0.3510964,0.9360769,-0.022166917,-0.35086277,0.93616384,-0.022194203,-0.351431,0.93591434,-0.02367715,-0.35186538,0.9357013,-0.025569884,-0.35227653,0.93552893,-0.026207967,-0.35289368,0.9352912,-0.026390262,-0.35343742,0.93508327,-0.026481813,-0.35491765,0.93452454,-0.026408412,-0.35517845,0.9344308,-0.0262187,-0.35658008,0.9338913,-0.02641474,-0.3579548,0.93331844,-0.028018491,-0.3586666,0.93302685,-0.028621681,-0.36040732,0.93234414,-0.029000483,-0.3608632,0.9321693,-0.02895049,-0.3614487,0.93196213,-0.028309012,-0.3612858,0.93207455,-0.026638571,-0.36096215,0.9322276,-0.025651796,-0.36041296,0.93245375,-0.025149124,-0.35932449,0.93288475,-0.024736252,-0.35782945,0.9334689,-0.024369849,-0.3611511,0.9322211,-0.023100559,-0.36273122,0.93160236,-0.023305312,-0.36360216,0.9312665,-0.02315589,-0.3637704,0.9312065,-0.022923525,-0.36390948,0.93117607,-0.021932075,-0.36505833,0.9306931,-0.023298306,-0.3660644,0.93025005,-0.02513381,-0.36719283,0.9297727,-0.026308749,-0.36984512,0.9286607,-0.028353078,-0.37039062,0.92842156,-0.0290548,-0.37217936,0.9276467,-0.030889329,-0.37239555,0.9275123,-0.03228715,-0.37176552,0.92772746,-0.03334847,-0.3720818,0.92757374,-0.03408941,-0.37205845,0.92754674,-0.035065603,-0.37219852,0.92747945,-0.035356894,-0.372562,0.92732364,-0.035615683,-0.37701052,0.92545754,-0.037301645,-0.3775613,0.9252353,-0.037244383,-0.3791754,0.9246139,-0.036265872,-0.3848822,0.9222856,-0.035424933,-0.3866067,0.92154145,-0.036007993,-0.3893349,0.92037326,-0.036488313,-0.39018816,0.9199328,-0.038430493,-0.38937327,0.92017883,-0.040734883,-0.38956267,0.92007804,-0.041198123,-0.3897858,0.9199799,-0.041280176,-0.3906479,0.9196191,-0.041169837,-0.39485294,0.91786927,-0.04008935,-0.39366862,0.9183783,-0.040079582,-0.3928011,0.91873163,-0.040490218,-0.38721532,0.92098165,-0.04309404,-0.3884709,0.9204892,-0.04230831,-0.3886251,0.9204609,-0.041500907,-0.3884493,0.9205791,-0.040512763,-0.3890369,0.9203559,-0.03994102,-0.38928467,0.9202776,-0.039326914,-0.38924807,0.9203389,-0.03823914,-0.38932902,0.9203189,-0.037895348,-0.38925254,0.9203676,-0.037496157,-0.38912904,0.92043287,-0.037174016,-0.38877326,0.92059505,-0.036879268,-0.38809502,0.920887,-0.03673352,-0.3871448,0.9212912,-0.036627233,-0.38649726,0.9215623,-0.036643095,-0.38556594,0.9219252,-0.0373208,-0.38544965,0.9219665,-0.03750184,-0.38546333,0.9219414,-0.037974462,-0.38564306,0.9218212,-0.039053347,-0.38402164,0.9225295,-0.03829772,-0.3837156,0.9226512,-0.038434673,-0.38390052,0.9225279,-0.039530743,-0.38424918,0.92234194,-0.040471632,-0.38384783,0.9224638,-0.041490734,-0.38244948,0.9230464,-0.041446086,-0.38196948,0.923239,-0.04158181,-0.3794566,0.9242388,-0.04237101,-0.37755024,0.9250719,-0.04120488,-0.37695146,0.92532766,-0.04094224,-0.36998957,0.9282118,-0.039122734,-0.36856169,0.92880386,-0.038544323,-0.3686933,0.9287224,-0.039243054,-0.3698159,0.92816705,-0.041738726,-0.3700419,0.9280694,-0.041907024,-0.37104484,0.92758363,-0.043752834,-0.3683055,0.9287631,-0.04183436,-0.367577,0.92906857,-0.0414575,-0.36724967,0.9292009,-0.0413927,-0.36807606,0.92881143,-0.042771287,-0.36755535,0.92890614,-0.045127258,-0.36640516,0.9293445,-0.04545489,-0.3656277,0.9296349,-0.04577456,-0.36431634,0.9301161,-0.046449743,-0.3638372,0.9302841,-0.04683964,-0.36349607,0.93039536,-0.047276698,-0.36345938,0.9303866,-0.047728386,-0.36353818,0.93030226,-0.04876177,-0.3625583,0.930627,-0.049848482,-0.36261997,0.93056893,-0.050479587,-0.36282063,0.9304844,-0.050596412,-0.36382517,0.93009424,-0.050556336,-0.36492306,0.92969674,-0.04995086,-0.36532265,0.92943126,-0.05193148,-0.36566973,0.929245,-0.052814715,-0.36439776,0.9296616,-0.054255176,-0.3643264,0.92966974,-0.054593362,-0.36448947,0.92958903,-0.054878246,-0.36452195,0.92954195,-0.055457346,-0.36505806,0.92933345,-0.055424973,-0.3669183,0.9286389,-0.054779086,-0.3673247,0.9284909,-0.05456395,-0.3687541,0.927936,-0.05436134,-0.36837363,0.9280462,-0.055055395,-0.3686075,0.9279513,-0.055090703,-0.36951533,0.9276063,-0.05481822,-0.3720167,0.92667955,-0.053558897,-0.37241274,0.9265485,-0.053071797,-0.37178355,0.92687994,-0.0516774,-0.37497127,0.92584574,-0.046969976,-0.37562075,0.92557245,-0.047166765,-0.3760777,0.9253845,-0.047212396,-0.37565428,0.92528117,-0.052331917,-0.37516627,0.9254653,-0.052576862,-0.3745912,0.92567044,-0.05306244,-0.3707591,0.92710817,-0.05484677,-0.3697069,0.92748845,-0.055515926,-0.3692026,0.9276575,-0.056044582,-0.36924854,0.92761546,-0.056435965,-0.36960477,0.9274581,-0.05668999,-0.37027124,0.9271851,-0.0568064,-0.37084106,0.9269596,-0.05677025,-0.37180513,0.9266036,-0.05627333,-0.37377006,0.9258567,-0.05554546,-0.3738197,0.9257369,-0.05718419,-0.37426838,0.9255037,-0.05801819,-0.3737532,0.9255095,-0.061161257,-0.3729428,0.9257656,-0.062223658,-0.37212124,0.9259684,-0.0640956,-0.37124065,0.92612475,-0.06688329,-0.37093943,0.92613053,-0.068455674,-0.37124246,0.92592496,-0.06958419,-0.37107113,0.92593044,-0.07042056,-0.37109566,0.9258638,-0.071163684,-0.37140992,0.92564404,-0.07237248,-0.37137392,0.9256221,-0.072836354,-0.3718739,0.9251644,-0.07603029,-0.37145045,0.9252669,-0.076848425,-0.3706075,0.9255095,-0.07798875,-0.37024304,0.92556244,-0.07908417,-0.37015492,0.92544556,-0.08084461,-0.36963853,0.9256211,-0.081196666,-0.36842594,0.9259469,-0.08297425,-0.3675595,0.9262179,-0.08378783,-0.36591554,0.92679256,-0.084624775,-0.3635191,0.9276005,-0.086087994,-0.3624846,0.9279341,-0.08685171,-0.36292815,0.9276349,-0.088185355,-0.3600789,0.92815346,-0.094203904,-0.35909835,0.928576,-0.09378158,-0.35881743,0.92868066,-0.09382065,-0.35828617,0.9288209,-0.09446016,-0.35820627,0.9287789,-0.09517374,-0.3580703,0.9288127,-0.09535522,-0.35720608,0.9291521,-0.09529035,-0.3570498,0.9292006,-0.095402874,-0.35704204,0.92918044,-0.09562771,-0.3572647,0.9290544,-0.09602025,-0.35394692,0.9301503,-0.09768343,-0.35202295,0.93091613,-0.097339705,-0.34968022,0.9318094,-0.09723683,-0.34856847,0.9322128,-0.09736178,-0.3477162,0.9325015,-0.0976443,-0.3469505,0.93273216,-0.09816369,-0.34592924,0.93299156,-0.09929604,-0.34545413,0.93307835,-0.10013131,-0.34549242,0.93295014,-0.10118794,-0.3460441,0.9324467,-0.10390692,-0.34598678,0.93238354,-0.10466163,-0.34673348,0.93162066,-0.10889858,-0.3467181,0.93136704,-0.111094475,-0.34622988,0.9311245,-0.11459492,-0.34636563,0.9310418,-0.114856414,-0.34914327,0.9296383,-0.11777737,-0.35022947,0.92911613,-0.11866957,-0.35060373,0.92898625,-0.118581265,-0.35279304,0.9283402,-0.11713926,-0.35324565,0.928188,-0.11698082,-0.3534362,0.9281607,-0.11662124,-0.35345474,0.9282866,-0.11555813,-0.35370836,0.9282454,-0.115112446,-0.3541259,0.92831546,-0.1132488,-0.35378668,0.92850477,-0.112755604,-0.3529168,0.9288228,-0.11286245,-0.35227147,0.9292844,-0.11106481,-0.3530785,0.9291095,-0.109959185,-0.35324857,0.92915964,-0.108985245,-0.35264644,0.9296949,-0.10633875,-0.3534293,0.9295023,-0.10541891,-0.35301492,0.92970556,-0.10501464,-0.35378668,0.9297115,-0.10233024,-0.35364136,0.92966855,-0.103219315,-0.35439444,0.9292573,-0.104333505,-0.35482872,0.9290582,-0.10463025,-0.35620484,0.9284896,-0.10500073,-0.3562169,0.9284576,-0.105242245,-0.35586652,0.9285459,-0.10564806,-0.35551465,0.9285896,-0.106445886,-0.35557866,0.9285298,-0.10675306,-0.35639092,0.92812777,-0.10753781,-0.35660464,0.9278772,-0.10898176,-0.35632095,0.9278912,-0.10978751,-0.35635668,0.9277958,-0.110475235,-0.35660753,0.9275082,-0.11206984,-0.35633746,0.92757,-0.112416886,-0.3562559,0.92739403,-0.11411405,-0.35610855,0.927425,-0.11432225,-0.3565065,0.9272655,-0.11437561,-0.35818303,0.92657346,-0.11474547,-0.358703,0.9262417,-0.11579511,-0.3591467,0.9259932,-0.11640562,-0.36044928,0.92542166,-0.116923206,-0.3609782,0.9252097,-0.11696894,-0.36209354,0.92480654,-0.11670941,-0.36312556,0.9244586,-0.116258584,-0.3650889,0.9237072,-0.11608223,-0.36576995,0.9233994,-0.11638699,-0.36645123,0.923108,-0.11655527,-0.36832193,0.9223564,-0.11660857,-0.3696295,0.9218572,-0.11641871,-0.37150416,0.9212076,-0.11559084,-0.37211728,0.92087805,-0.116242625,-0.37266147,0.9206586,-0.11623769,-0.37505808,0.9197021,-0.116101265,-0.37403846,0.9200403,-0.116709135,-0.3736442,0.9201498,-0.117108054,-0.37362614,0.92006904,-0.11779828,-0.37233946,0.92052615,-0.11830026,-0.37242532,0.92039657,-0.11903583,-0.37272847,0.9202419,-0.1192826,-0.3749987,0.91923,-0.11996759,-0.3756995,0.9189234,-0.120124,-0.3761878,0.91872257,-0.12013171,-0.37834957,0.9178828,-0.11976126,-0.3819028,0.9165366,-0.11878921,-0.37777093,0.9180116,-0.12059757,-0.37694183,0.9183337,-0.120739385,-0.37503564,0.9190067,-0.12155228,-0.37438238,0.9192592,-0.12165691,-0.37387916,0.9194399,-0.12183872,-0.3729123,0.91977096,-0.12230206,-0.37204123,0.9201037,-0.12245166,-0.36967608,0.92093384,-0.1233711,-0.36924955,0.92112035,-0.123256,-0.36999774,0.92089665,-0.122682735,-0.37036726,0.92084944,-0.12191957,-0.37035477,0.92098,-0.12096781,-0.37017104,0.9211526,-0.120213784,-0.36981663,0.92136735,-0.1196574,-0.3693119,0.92160964,-0.11934986,-0.36865607,0.92188,-0.119289555,-0.36770964,0.92224413,-0.119396076,-0.36318114,0.9237679,-0.12145883,-0.36132118,0.92448527,-0.121548295,-0.3611681,0.924533,-0.12164002,-0.36090115,0.92458725,-0.12201946,-0.36118424,0.9244316,-0.1223605,-0.3614108,0.92409563,-0.124215715,-0.35975483,0.92479265,-0.12383479,-0.35883567,0.92515117,-0.12382354,-0.35844344,0.9252808,-0.12399082,-0.3578422,0.9254069,-0.12478415,-0.35649088,0.9255521,-0.1275442,-0.3552861,0.92600316,-0.12763184,-0.35443234,0.926304,-0.1278226,-0.35386157,0.9264491,-0.12835132,-0.3522666,0.9270347,-0.12851043,-0.35195705,0.92713755,-0.12861642,-0.3519045,0.9271331,-0.12879236,-0.35222736,0.9268828,-0.12970796,-0.35187054,0.9268841,-0.13066357,-0.35271555,0.92608356,-0.13401847,-0.35240424,0.925859,-0.13636875,-0.35194877,0.92601925,-0.13645671,-0.3518236,0.925971,-0.13710538,-0.35201493,0.9255856,-0.13920012,-0.35167822,0.9255889,-0.14002718,-0.3510988,0.92541975,-0.14257586,-0.35077038,0.9254156,-0.14340906,-0.3507475,0.9253393,-0.14395611,-0.34929505,0.92512137,-0.14880651,-0.34870642,0.9252213,-0.14956374,-0.34750262,0.9252094,-0.15241231,-0.34683585,0.9252553,-0.15364735,-0.34611598,0.9253878,-0.1544706,-0.34565973,0.9254414,-0.15516968,-0.3447309,0.92554855,-0.1565902,-0.34344393,0.925839,-0.15769717,-0.34263927,0.92596006,-0.15873347,-0.34178716,0.9259971,-0.16034643,-0.34058425,0.92634255,-0.1609096,-0.3397253,0.926544,-0.16156398,-0.33943728,0.92668307,-0.16137166,-0.3389719,0.9271736,-0.15952145,-0.338774,0.9273051,-0.1591773,-0.3372217,0.9280446,-0.15816034,-0.33704695,0.9284551,-0.15611033,-0.3361803,0.92894024,-0.15508996,-0.33782622,0.92879564,-0.15235522,-0.33801964,0.9289181,-0.1511748,-0.3378865,0.92902535,-0.15081301,-0.33762968,0.9291745,-0.15046932,-0.33640528,0.9297705,-0.14952691,-0.33610713,0.92987275,-0.14956151,-0.33553308,0.93000376,-0.15003526,-0.33486232,0.9302726,-0.14986718,-0.33347458,0.9307501,-0.14999653,-0.33136928,0.93143463,-0.15041247,-0.32954645,0.9319831,-0.15101846,-0.3270216,0.9326393,-0.15244924,-0.32574838,0.9329023,-0.1535623,-0.32448208,0.9332104,-0.154369,-0.3235067,0.9334087,-0.1552148,-0.32282442,0.9334967,-0.15610357,-0.32260448,0.933501,-0.15653184,-0.3228879,0.9333181,-0.1570373,-0.322001,0.9334261,-0.15821211,-0.3218076,0.93341815,-0.15865195,-0.322021,0.9333169,-0.15881443,-0.32403514,0.9326731,-0.1584995,-0.3237238,0.93261904,-0.15945122,-0.32302213,0.9327878,-0.15988658,-0.32266742,0.93283165,-0.16034596,-0.322342,0.9328203,-0.16106482,-0.3204545,0.9330538,-0.16346103,-0.32027963,0.9329983,-0.16411926,-0.31991526,0.9330379,-0.16460435,-0.3193617,0.9331727,-0.16491453,-0.3169184,0.9335798,-0.16730653,-0.31290707,0.9344836,-0.16979286,-0.31085673,0.9350379,-0.17050567,-0.3101602,0.93517953,-0.17099665,-0.30351174,0.93618566,-0.17730483,-0.2991271,0.9373844,-0.17841925,-0.29805475,0.93764895,-0.17882356,-0.29574716,0.9381403,-0.18007337,-0.29465532,0.9383469,-0.18078509,-0.29368562,0.938478,-0.18168043,-0.29238114,0.9385904,-0.18319756,-0.2914685,0.9385439,-0.18488231,-0.29031673,0.93859774,-0.18641494,-0.29017752,0.9385439,-0.18690199,-0.2894745,0.93860656,-0.18767594,-0.28936934,0.93855333,-0.1881038,-0.28958035,0.93838733,-0.18860663,-0.29007715,0.93811965,-0.18917397,-0.2926033,0.9367945,-0.19183166,-0.2925455,0.9366516,-0.19261616,-0.29325688,0.9361824,-0.19381152,-0.29333228,0.9359209,-0.19495688,-0.29188678,0.9358927,-0.19724846,-0.29186183,0.9358068,-0.19769244,-0.28904942,0.93663454,-0.19790429,-0.2877873,0.9376051,-0.19512866,-0.28733575,0.9378283,-0.19472092,-0.28221434,0.9395885,-0.19372271,-0.28122783,0.9400616,-0.19286004,-0.28055903,0.940351,-0.19242285,-0.27995095,0.9405321,-0.19242357,-0.27963805,0.94059205,-0.1925856,-0.27948424,0.9405341,-0.19309095,-0.27959028,0.94038904,-0.19364332,-0.27995577,0.9401703,-0.19417685,-0.27976805,0.9399415,-0.1955498,-0.27984187,0.93985134,-0.19587742,-0.28012523,0.9397678,-0.19587344,-0.28036526,0.9397258,-0.19573118,-0.2812954,0.93950444,-0.19545914,-0.28140914,0.9393087,-0.19623461,-0.28169417,0.93906057,-0.19701189,-0.2822556,0.9385836,-0.1984757,-0.28176904,0.9386665,-0.19877477,-0.2826406,0.938232,-0.19958708,-0.2829961,0.9380848,-0.19977522,-0.2834892,0.93766135,-0.20105982,-0.28393587,0.9374399,-0.2014617,-0.2759397,0.9388142,-0.20611918,-0.27428353,0.9394481,-0.20544052,-0.27260283,0.9400605,-0.20487554,-0.2695194,0.94111323,-0.20412059,-0.26846454,0.94144785,-0.20396756,-0.26697823,0.9418743,-0.20394944,-0.26370457,0.9427413,-0.20420271,-0.2629015,0.942927,-0.20438056,-0.26211816,0.9430708,-0.20472293,-0.26203755,0.94302773,-0.20502444,-0.26227778,0.9427802,-0.20585392,-0.26270092,0.94252366,-0.20648822,-0.2634865,0.94216543,-0.20712097,-0.26393506,0.942042,-0.20711136,-0.26485708,0.9418414,-0.20684657,-0.26510432,0.9416396,-0.2074477,-0.26531246,0.9415607,-0.20753981,-0.2658205,0.94142884,-0.20748769,-0.26729155,0.94123703,-0.20646562,-0.26749843,0.94101006,-0.20723104,-0.2670796,0.9406519,-0.20938595,-0.26709613,0.9403363,-0.210778,-0.26740855,0.9386888,-0.21761425,-0.26762402,0.9389442,-0.21624334,-0.26745287,0.9390635,-0.21593678,-0.2667022,0.9394744,-0.21507621,-0.26661077,0.93949044,-0.21511947,-0.26670676,0.9392947,-0.21585411,-0.2668861,0.9391241,-0.21637408,-0.2666369,0.93882656,-0.21796668,-0.26582667,0.9386539,-0.21969314,-0.2650585,0.9380104,-0.22333941,-0.2649379,0.93762106,-0.22511023,-0.26537025,0.9370974,-0.22677554,-0.26589274,0.9365578,-0.22838672,-0.26702884,0.9355675,-0.23110414,-0.26730415,0.9353506,-0.23166296,-0.26801005,0.9348819,-0.23273666,-0.2674197,0.9351554,-0.23231676,-0.2660511,0.9358315,-0.23116289,-0.26513028,0.9362357,-0.23058331,-0.26465815,0.9363704,-0.23057877,-0.26435098,0.9364242,-0.23071244,-0.2642094,0.9363967,-0.2309862,-0.26429886,0.936257,-0.23144974,-0.26470214,0.93582094,-0.2327488,-0.2641286,0.93615216,-0.23206735,-0.26371768,0.93627673,-0.23203194,-0.26250714,0.9364359,-0.2327613,-0.26225528,0.9364218,-0.23310146,-0.2619475,0.93625575,-0.2341125,-0.2621873,0.9360694,-0.23458861,-0.26312962,0.9353856,-0.23625547,-0.26292077,0.93503916,-0.23785388,-0.2629867,0.934836,-0.23857862,-0.2628044,0.9346206,-0.23962083,-0.26233673,0.9344572,-0.24076802,-0.2623411,0.9340749,-0.24224211,-0.2626367,0.9338404,-0.24282531,-0.26292682,0.9336564,-0.24321836,-0.26342472,0.933408,-0.24363264,-0.26413158,0.93309456,-0.24406764,-0.26459748,0.9329277,-0.2442007,-0.2653588,0.9328903,-0.24351667,-0.26555943,0.93241775,-0.24510267,-0.26260164,0.93262273,-0.24749798,-0.26260445,0.93254614,-0.24778344,-0.26286238,0.93244827,-0.2478782,-0.26392534,0.93217546,-0.24777468,-0.26150826,0.9333747,-0.2458151,-0.26136956,0.93376017,-0.24449514,-0.2610208,0.9342133,-0.24313314,-0.26031107,0.93519616,-0.24009648,-0.26101068,0.93527824,-0.23901474,-0.2612172,0.9354931,-0.23794585,-0.2610863,0.9358426,-0.2367122,-0.26091117,0.9360739,-0.23598939,-0.26021412,0.9369736,-0.23317198,-0.26142547,0.93715715,-0.23106973,-0.26188567,0.93726146,-0.23012355,-0.2620448,0.9373779,-0.22946718,-0.26283413,0.9374767,-0.22815712,-0.26310268,0.93759465,-0.22736137,-0.26316395,0.93780404,-0.22642505,-0.2629774,0.9383723,-0.22427739,-0.26337564,0.9396792,-0.21825741,-0.26283094,0.9401331,-0.21695545,-0.26243445,0.9403189,-0.21663009,-0.26132485,0.9406892,-0.21636349,-0.26080576,0.9408392,-0.21633781,-0.2606111,0.940834,-0.21659467,-0.2610702,0.9402341,-0.21863699,-0.2606424,0.9402588,-0.21904086,-0.26025355,0.94020426,-0.21973632,-0.259718,0.9402762,-0.22006178,-0.25886044,0.94046175,-0.22027934,-0.25829393,0.9405443,-0.2205917,-0.2578504,0.9404487,-0.2215162,-0.2577752,0.9400003,-0.22349808,-0.25793839,0.9398007,-0.22414832,-0.25825483,0.9395701,-0.22474957,-0.25850233,0.93909895,-0.2264282,-0.25780663,0.93923914,-0.22663979,-0.25740042,0.9392017,-0.22725585,-0.2572795,0.938987,-0.22827758,-0.257439,0.9382122,-0.23126377,-0.25678083,0.9379383,-0.23309955,-0.2558389,0.9382022,-0.23307304,-0.25537518,0.93811935,-0.23391372,-0.25531378,0.9380496,-0.23426001,-0.25541812,0.93792945,-0.2346273,-0.25553036,0.9378777,-0.23471187,-0.25595993,0.93784577,-0.23437114,-0.25636253,0.9375449,-0.2351337,-0.25498292,0.93758994,-0.23645043,-0.2549254,0.93746215,-0.23701844,-0.2559429,0.93613416,-0.2411349,-0.255255,0.9360925,-0.24202421,-0.25476843,0.93586534,-0.24341132,-0.25315055,0.9359888,-0.24462184,-0.2529708,0.9362405,-0.24384312,-0.25233713,0.9367193,-0.242658,-0.25201002,0.9368446,-0.2425143,-0.25090924,0.93702537,-0.24295688,-0.25032428,0.9372044,-0.24286954,-0.24948248,0.93751794,-0.24252555,-0.24890967,0.93770015,-0.24240968,-0.2480512,0.9377786,-0.24298543,-0.24806128,0.9376797,-0.24335647,-0.24834833,0.93748146,-0.24382704,-0.24896656,0.9371111,-0.24461913,-0.24929476,0.93694884,-0.24490607,-0.25023142,0.9365354,-0.24553144,-0.25018603,0.93647593,-0.24580428,-0.24843259,0.9365859,-0.24716003,-0.24739563,0.9364754,-0.24861477,-0.24735276,0.9363638,-0.24907714,-0.24749993,0.93621415,-0.2494931,-0.24857353,0.9354925,-0.2511274,-0.2473305,0.93567306,-0.25168148,-0.24735023,0.93538857,-0.2527175,-0.24678242,0.93551296,-0.25281197,-0.24808276,0.93427587,-0.25609282,-0.24869466,0.9340886,-0.25618258,-0.24953675,0.93388915,-0.25609076,-0.25015116,0.9337761,-0.25590366,-0.25053883,0.9337489,-0.25562343,-0.25030386,0.9335844,-0.2564531,-0.24950317,0.93358684,-0.25722334,-0.2493652,0.9335343,-0.25754747,-0.24951027,0.93341875,-0.25782567,-0.25024748,0.93312126,-0.25818783,-0.25044063,0.9330602,-0.258221,-0.25179434,0.9329047,-0.25746524,-0.25526944,0.93166864,-0.25851712,-0.25144064,0.9325295,-0.25916466,-0.24972181,0.9328418,-0.25970218,-0.24784163,0.9329366,-0.26115853,-0.24693422,0.9328854,-0.26219907,-0.2446292,0.93327284,-0.26297987,-0.24361151,0.93335575,-0.26362938,-0.23754434,0.9345275,-0.2650113,-0.2360628,0.9349436,-0.26486745,-0.23315984,0.9355476,-0.26530582,-0.22875221,0.93676704,-0.2648394,-0.22393818,0.9374141,-0.266658,-0.21966064,0.93749624,-0.2699073,-0.43554115,0.82272816,-0.36527014,-0.44848302,0.8113329,-0.3749692,-0.4595913,0.8081811,-0.368265,-0.46646348,0.80375695,-0.36930555,-0.47167727,0.8015117,-0.36755887,-0.47457135,0.79765636,-0.37219122,-0.5051505,0.7777698,-0.3740282,-0.50805074,0.77549785,-0.37481663,-0.5201051,0.7734935,-0.36221325,-0.52039915,0.7731466,-0.3625313,-0.5334123,0.7657025,-0.35940373,-0.5311914,0.768104,-0.35756385,-0.5416316,0.76236945,-0.3541583,-0.54654384,0.7592591,-0.35329238,-0.54962176,0.7551505,-0.35730034,-0.5498639,0.7555638,-0.35605204,-0.678463,0.7096494,0.18996264,-0.6712169,0.7151431,0.19503385,-0.60707295,0.7569628,0.24180542,-0.57323205,0.76955956,0.28139493,-0.53413635,0.7799623,0.32612443,-0.5012216,0.7958508,0.33970338,-0.49352494,0.8048948,0.329511,-0.49372128,0.80514705,0.32859927,-0.5006377,0.8048928,0.3186056,-0.51636595,0.8027427,0.29827896,-0.51841486,0.80240214,0.29562953,-0.50359243,0.80912215,0.30284655,-0.4950788,0.81259686,0.3075439,-0.49164551,0.8186737,0.2967458,-0.4926781,0.8199592,0.29143643,-0.49865353,0.819827,0.2814753,-0.49586207,0.82157505,0.28131002,-0.48965648,0.8281993,0.2726213,-0.4910682,0.8287806,0.2682811,-0.47168455,0.84882575,0.23876469,-0.4582048,0.8596503,0.22594169,-0.4575783,0.86056584,0.22371529,-0.45454955,0.8622876,0.22325966,-0.45213068,0.86613107,0.21306066,-0.4610285,0.8615889,0.21240845,-0.4656139,0.8593615,0.21142718,-0.46740624,0.8579869,0.21304874,-0.4788857,0.853086,0.20715387,-0.4864586,0.8509051,0.19828895,-0.4801578,0.8585346,0.17990804,-0.45535362,0.87419254,0.16864294,-0.4571917,0.8758773,0.15432021,-0.4544188,0.87815994,0.14946108,-0.4517245,0.8799495,0.14708452,-0.47984275,0.8708982,0.10624171,-0.49027503,0.8645679,0.11023977,-0.49735385,0.86083436,0.10771853,-0.5135041,0.8507318,0.11211142,-0.5499585,0.8257394,0.12529999,-0.57507366,0.81062686,0.1103377,-0.58314586,0.8044845,0.11289673,-0.60161585,0.7895095,0.121380106,-0.60621375,0.7863436,0.119032025,-0.5973319,0.7978121,0.08179576,-0.5941224,0.80031097,0.08075186,-0.56684095,0.82070976,0.07160181,-0.5662162,0.82212216,0.059281927,-0.5672629,0.8217353,0.054441646,-0.5619897,0.82627404,0.03793156,-0.55116653,0.83422947,0.016634222,-0.550152,0.8349313,0.014914827,-0.54460865,0.838391,-0.022404194,-0.5218848,0.8525475,-0.02826608,-0.52285564,0.8515259,-0.03905832,-0.4874561,0.8723315,-0.037740443,-0.4635294,0.8857985,-0.02239441,-0.46056807,0.8873871,-0.02052292,-0.4600407,0.88771063,-0.018232109,-0.4585516,0.88848627,-0.017961765,-0.4558303,0.88990825,-0.016794678,-0.44168222,0.89695936,-0.019510172,-0.4410227,0.8973588,-0.015690617,-0.41155815,0.9113433,0.0085598575,-0.3979287,0.9171358,0.022685831,-0.39648634,0.9175345,0.03048109,-0.3962153,0.91724247,0.040985133,-0.39341426,0.9185279,0.039136592,-0.39099938,0.91956615,0.038955577,-0.37513253,0.92535776,0.054668438,-0.3652279,0.9296635,0.04831561,-0.35672024,0.93285066,0.050401,-0.34750226,0.9366379,0.044178095,-0.34777918,0.9371643,0.027797602,-0.34985793,0.93638146,0.028092485,-0.35437113,0.93461394,0.030296039,-0.3832922,0.9233598,0.022221083,-0.3804234,0.9247167,0.013303519,-0.35730803,0.9339479,0.008496919,-0.36615083,0.9305552,0.0007701207,-0.37022805,0.92894024,-0.0011269973,-0.3618364,0.9322353,-0.0034263155,-0.34947875,0.93690383,-0.008704988,-0.34034568,0.940188,-0.014536957,-0.32235086,0.94591403,-0.036558624,-0.34947482,0.93665904,-0.023177687,-0.3516179,0.93590623,-0.021080608,-0.3552505,0.9344274,-0.025347201,-0.36026576,0.93256456,-0.023062428,-0.36877915,0.9291121,-0.027436005,-0.3725876,0.9274559,-0.03168679,-0.38849598,0.92043257,-0.043298922,-0.38827714,0.92063266,-0.040943388,-0.3857933,0.92175907,-0.03903567,-0.38016495,0.9239447,-0.04243501,-0.37514207,0.9260794,-0.040563602,-0.37083685,0.9277383,-0.042210236,-0.3637288,0.9302572,-0.048196126,-0.37154448,0.92704105,-0.050493076,-0.3744552,0.92538035,-0.058775134,-0.37425423,0.92536616,-0.060259905,-0.37119773,0.92599195,-0.068928964,-0.3703565,0.9254262,-0.08013999,-0.3519214,0.92933285,-0.11176677,-0.35251766,0.92969173,-0.106792055,-0.35368016,0.9298235,-0.101678796,-0.35661495,0.92758334,-0.11142234,-0.37351096,0.92034364,-0.116005085,-0.37387484,0.92003167,-0.11730036,-0.3804602,0.917003,-0.119815,-0.3735244,0.91954976,-0.12209717,-0.3541521,0.92635477,-0.12823096,-0.35290676,0.92581004,-0.13539785,-0.35272405,0.92578906,-0.13601582,-0.34990177,0.92507637,-0.14765638,-0.3454687,0.9254159,-0.15574594,-0.34231526,0.92591274,-0.15970555,-0.33775797,0.9277332,-0.15884158,-0.3359477,0.92987055,-0.14993285,-0.30597165,0.93570495,-0.17560646,-0.28938335,0.9363958,-0.19854505,-0.28215045,0.9387596,-0.19779156,-0.28233743,0.93860036,-0.19827984,-0.2850698,0.9370759,-0.20155375,-0.26834977,0.9396185,-0.21238033,-0.26479605,0.93583655,-0.23257905,-0.26250267,0.93599117,-0.23454833,-0.26041,0.93486136,-0.24128993,-0.26105735,0.94032466,-0.21826266,-0.2587409,0.9391355,-0.22600356,-0.25590897,0.93672264,-0.2388752,-0.2544756,0.93545216,-0.24529867,-0.25378776,0.9353241,-0.24649669,-0.22213824,0.9372971,-0.26856792,-0.43676245,0.8236538,-0.3617084,-0.44905317,0.81143254,-0.37407026,-0.4502181,0.81137276,-0.37279734,-0.46136624,0.80755883,-0.36740983,-0.46732888,0.80118954,-0.37376335,-0.48415518,0.7896292,-0.37693426,-0.48337033,0.7911099,-0.374831,-0.4822599,0.79697794,-0.3636641,-0.48403788,0.79569805,-0.36410433,-0.49143115,0.78935355,-0.3679896,-0.4967757,0.7846966,-0.3707629,-0.5084758,0.77535635,-0.37453294,-0.51648027,0.7724414,-0.36957055,-0.522728,0.7700192,-0.36582223,-0.53326386,0.7670306,-0.3567824,-0.5417959,0.76128584,-0.35623184,-0.6746714,0.7131632,0.19030686,-0.609904,0.75535214,0.23970862,-0.6053849,0.75764227,0.24390027,-0.52744687,0.7818027,0.33254224,-0.52515554,0.7822722,0.33505505,-0.5004829,0.8050121,0.31854725,-0.49785584,0.8103618,0.30895516,-0.5076109,0.80638206,0.30344534,-0.5116028,0.80463225,0.30137935,-0.5131057,0.80593884,0.29527116,-0.5030079,0.80935645,0.30319175,-0.48889145,0.81587255,0.30876705,-0.48889852,0.81632566,0.30755588,-0.4974497,0.8178208,0.28933197,-0.49119478,0.82773095,0.27127317,-0.4890537,0.8310603,0.26488724,-0.4880428,0.83314896,0.26014817,-0.48796803,0.833441,0.2593516,-0.47757995,0.84043634,0.25609392,-0.4708782,0.84590876,0.2504239,-0.47305346,0.84806794,0.23874907,-0.46974728,0.85109216,0.23447734,-0.46207586,0.8576506,0.22565761,-0.45393667,0.8629101,0.22209832,-0.45639595,0.8640175,0.21254776,-0.461139,0.86129457,0.21335995,-0.46381858,0.8601215,0.21228145,-0.47181162,0.8559108,0.21168491,-0.4751013,0.8540038,0.21202913,-0.4949717,0.84775937,0.19054411,-0.48670018,0.85471505,0.18051364,-0.4844481,0.85652626,0.17796852,-0.48393217,0.8567689,0.17820409,-0.47615445,0.8615266,0.17620686,-0.4716387,0.8657709,0.16732502,-0.45724705,0.8759611,0.15367892,-0.45550895,0.8774582,0.15026197,-0.45388934,0.8785339,0.14887127,-0.4522301,0.8797478,0.14673696,-0.44589797,0.88596106,0.12746778,-0.47028494,0.8765644,0.10230823,-0.47266,0.8753298,0.10193258,-0.49776444,0.86056453,0.10797798,-0.56973755,0.81514454,0.10458745,-0.5962759,0.79372615,0.120223954,-0.59677094,0.7932672,0.12079543,-0.612267,0.7825413,0.11295244,-0.61963934,0.77851707,0.09979125,-0.60635275,0.790414,0.08707561,-0.58911324,0.8039901,0.08090409,-0.5776551,0.8126515,0.07689024,-0.5705704,0.8199451,0.046254992,-0.5446658,0.83827394,-0.025218744,-0.5240093,0.8507869,-0.03969688,-0.4989598,0.8656177,-0.041774236,-0.49075058,0.8703406,-0.040879283,-0.47894853,0.8771768,-0.03419236,-0.47151834,0.8814033,-0.028260559,-0.46843767,0.8830668,-0.027554303,-0.46682945,0.8839928,-0.025039574,-0.464165,0.8854439,-0.023235984,-0.4630648,0.88604164,-0.022388173,-0.43839216,0.89834523,-0.028074186,-0.44106084,0.89735425,-0.014854288,-0.4355341,0.9001711,0.0014342162,-0.40938047,0.9123334,-0.0074396213,-0.40721995,0.91330194,-0.00717572,-0.40779504,0.9130734,0.00039860856,-0.40817162,0.9129006,0.0029017907,-0.3994311,0.9164821,0.0227025,-0.374003,0.925887,0.053432725,-0.37075046,0.9273073,0.051431723,-0.36427113,0.9300749,0.04761648,-0.35105434,0.9351283,0.04791656,-0.34392166,0.9386077,0.027082566,-0.34457085,0.9383591,0.027444512,-0.36033058,0.9322631,0.03236482,-0.36134648,0.9319532,0.029866215,-0.36522985,0.93051654,0.027315607,-0.38172433,0.9239874,0.023103671,-0.38592428,0.92232084,0.019663502,-0.38725787,0.9218027,0.017639847,-0.3614186,0.9324023,0.0015717582,-0.37027138,0.92892224,-0.0016011087,-0.35267797,0.93573195,-0.004891258,-0.35136354,0.9362297,-0.0041947,-0.34825873,0.9373022,-0.013434047,-0.3369906,0.9414398,-0.011333507,-0.31434,0.94908535,-0.020673694,-0.3185502,0.9473678,-0.031938102,-0.34010842,0.9396436,-0.03736439,-0.34658793,0.93758225,-0.028572036,-0.34662288,0.93758374,-0.028094642,-0.34918636,0.93678856,-0.022273684,-0.34985366,0.9365554,-0.021595791,-0.35346088,0.93515146,-0.023603635,-0.35545665,0.9343482,-0.025377452,-0.3642211,0.93104863,-0.022168308,-0.39015177,0.91998655,-0.037501242,-0.37116012,0.9275961,-0.04249373,-0.36772653,0.9288446,-0.044999395,-0.3684845,0.9280475,-0.05428726,-0.3605608,0.9279761,-0.09410838,-0.35700953,0.92911965,-0.09633738,-0.35238218,0.92904055,-0.1127408,-0.35278267,0.9294344,-0.10814815,-0.35194314,0.9301653,-0.10453974,-0.35661775,0.9279284,-0.108502164,-0.35745075,0.92691445,-0.11427381,-0.3644961,0.92395484,-0.11597447,-0.3751593,0.9196964,-0.11581911,-0.37386897,0.9200046,-0.117530964,-0.3691416,0.921133,-0.12348472,-0.36470842,0.92323315,-0.120947555,-0.36203542,0.9238391,-0.12430483,-0.35202715,0.92571336,-0.13831729,-0.3509633,0.9251088,-0.14490865,-0.33749172,0.92786485,-0.15863836,-0.3141836,0.93415916,-0.16921979,-0.28596783,0.9380978,-0.19543521,-0.28306425,0.9392052,-0.19434047,-0.2865571,0.93654853,-0.2018956,-0.2772069,0.9383549,-0.20651013,-0.2686003,0.93945456,-0.21278867,-0.26689115,0.9389858,-0.21696715,-0.26451468,0.9319863,-0.24785803,-0.2618132,0.93286973,-0.24740228,-0.26008657,0.93677986,-0.23409076,-0.2570998,0.9379191,-0.23282498,-0.2566236,0.9375672,-0.23475981,-0.25623265,0.93626744,-0.24030836,-0.24855575,0.935591,-0.25077796,-0.2506876,0.933632,-0.25590432,-0.45936066,0.80532444,-0.37475368,-0.47912055,0.7936842,-0.37484518,-0.49265853,0.78870803,-0.36773255,-0.49694145,0.78481334,-0.37029353,-0.5184401,0.7745549,-0.36233202,-0.539032,0.7614654,-0.36002088,-0.54717684,0.75839823,-0.3541605,-0.53322333,0.78037655,0.3266272,-0.50609505,0.7938262,0.3372057,-0.49730226,0.8103154,0.30996692,-0.5098415,0.80534667,0.30245388,-0.5182511,0.8018439,0.29742607,-0.51258373,0.80627275,0.2952663,-0.4924881,0.8175308,0.2984943,-0.49080154,0.8276918,0.27210328,-0.49124762,0.82899565,0.26728648,-0.48947048,0.8312849,0.26340848,-0.48466036,0.8371099,0.2536757,-0.47771245,0.8405435,0.25549445,-0.46935683,0.8476283,0.24744792,-0.4730604,0.848184,0.23832275,-0.4669926,0.8518622,0.23716812,-0.48900595,0.84875137,0.201232,-0.48708886,0.8505598,0.19822355,-0.49129367,0.84888613,0.19499463,-0.48416635,0.8566775,0.17800736,-0.47756314,0.86067563,0.17655277,-0.47189265,0.8658882,0.16599707,-0.46491063,0.8685099,0.1718973,-0.45895538,0.8719821,0.17031498,-0.45756465,0.8736047,0.16567841,-0.45430613,0.8783152,0.14889047,-0.4706545,0.8763604,0.10235589,-0.47144634,0.87594926,0.10223148,-0.5694149,0.8154219,0.104181156,-0.57667303,0.8092629,0.11199033,-0.61844987,0.77923805,0.10152727,-0.5954632,0.7993294,0.08059867,-0.579226,0.81151867,0.07703658,-0.47633055,0.8786625,-0.032579407,-0.4449252,0.89536285,-0.019154223,-0.44014785,0.89757305,-0.025149204,-0.44089085,0.897431,-0.01525931,-0.41797924,0.9083614,0.013151574,-0.4163022,0.9092042,0.006346736,-0.40031135,0.91608584,0.02318621,-0.40012556,0.91559714,0.039766703,-0.38725996,0.92033225,0.054939162,-0.36885685,0.92809445,0.050846435,-0.3439166,0.93852186,0.029968899,-0.37250242,0.9276568,0.026357668,-0.38733435,0.92175376,0.018494828,-0.3782056,0.925645,0.011912701,-0.3689382,0.9293844,0.011367134,-0.35193446,0.93601334,-0.0045980844,-0.34950182,0.93686306,-0.011667227,-0.33998927,0.940311,-0.0149147995,-0.3371306,0.9413855,-0.011675916,-0.3121947,0.94974524,-0.0227686,-0.31203273,0.94978046,-0.023507586,-0.3439414,0.9383617,-0.03437493,-0.3594611,0.9328734,-0.023128426,-0.3931242,0.91862625,-0.03973884,-0.37140825,0.9274371,-0.043775484,-0.36298916,0.9274521,-0.08984124,-0.35472947,0.92986524,-0.097558536,-0.35253885,0.9296117,-0.10741736,-0.35330954,0.93005323,-0.1008633,-0.35655776,0.9280224,-0.107893236,-0.37105656,0.92137396,-0.115702406,-0.36318812,0.9234615,-0.123746745,-0.36301515,0.92346543,-0.12422393,-0.31552312,0.9338486,-0.16843978,-0.30454758,0.93594015,-0.17682421,-0.29141262,0.9374794,-0.19029208,-0.28968817,0.93621385,-0.19895831,-0.28056192,0.9397255,-0.19545051,-0.26933065,0.93855417,-0.21581712,-0.2626928,0.9358831,-0.23476656,-0.25612366,0.9364927,-0.23954569,-0.2540726,0.9351527,-0.24685328,-0.23938638,0.93415976,-0.26465017,-0.46758434,0.8036824,-0.3680481,-0.47952664,0.793892,-0.37388453,-0.48351103,0.7907,-0.3755138,-0.4837069,0.7960128,-0.36385608,-0.49230954,0.78454864,-0.37698105,-0.5129844,0.77389467,-0.37139472,-0.5160036,0.7731196,-0.36881742,-0.5180304,0.77506137,-0.3618348,-0.5330363,0.7672406,-0.356671,-0.49683988,0.8100781,0.3113256,-0.47768933,0.8408324,0.25458544,-0.46056718,0.85758966,0.2289495,-0.49033186,0.8479659,0.20131704,-0.4892752,0.8494514,0.19759075,-0.49204013,0.8485264,0.19467767,-0.49586165,0.84736323,0.18999156,-0.48768306,0.85436183,0.17953014,-0.46434772,0.8689105,0.17139369,-0.4609412,0.8709346,0.17031173,-0.45067272,0.8816218,0.14013262,-0.6097273,0.7833222,0.12099115,-0.6207458,0.7753251,0.11638571,-0.6194494,0.77859193,0.10038471,-0.59686947,0.7982271,0.08111951,-0.47095168,0.88169014,-0.028757105,-0.46310604,0.8859353,-0.025522292,-0.40767935,0.9131248,0.0007792708,-0.39292264,0.9186431,0.04131136,-0.3712147,0.9271174,0.05150709,-0.35098964,0.9351283,0.04838833,-0.35543758,0.93415946,0.031784255,-0.3606068,0.93215543,0.032388978,-0.38228193,0.92376006,0.022974275,-0.38280493,0.9235508,0.022679955,-0.34731418,0.93759465,-0.017002502,-0.31875572,0.9473154,-0.0314372,-0.34648415,0.9376276,-0.02834172,-0.35392192,0.9349875,-0.023188168,-0.3587354,0.9331485,-0.023297526,-0.38980556,0.9201598,-0.036845114,-0.37199154,0.926927,-0.04928165,-0.37282965,0.9262382,-0.05550574,-0.35294297,0.9302585,-0.100251704,-0.35690445,0.9254262,-0.12730116,-0.2853267,0.93829656,-0.195418,-0.281093,0.93963313,-0.19513144,-0.26774594,0.9384936,-0.21804093,-0.26293182,0.93566585,-0.23536414,-0.25645784,0.9377318,-0.23428278,-0.2566792,0.9376389,-0.23441236,-0.25328094,0.9325886,-0.2571524,-0.46858633,0.8032953,-0.36761865,-0.4649971,0.8020689,-0.37478417,-0.49286327,0.78866243,-0.36755595,-0.49268353,0.7848561,-0.37585083,-0.5391155,0.7621891,-0.35836044,-0.56138116,0.75509715,-0.33864355,-0.6651993,0.746652,-0.00454855,-0.64456826,0.7353011,0.2094375,-0.55072176,0.7749264,0.31015256,-0.48566034,0.8367806,0.25284827,-0.4852798,0.83694065,0.25304917,-0.47681716,0.8429053,0.24931125,-0.46145013,0.8608439,0.21450303,-0.4616565,0.86063445,0.21489908,-0.47555026,0.8536502,0.21244577,-0.46359307,0.869396,0.17097418,-0.46217018,0.8702478,0.17049193,-0.45308235,0.8795427,0.14533041,-0.61016786,0.7828972,0.121520214,-0.59595245,0.79895794,0.080665395,-0.55834544,0.82924527,0.024549512,-0.54499435,0.83803827,-0.025942434,-0.4705558,0.8818935,-0.029000608,-0.4631126,0.8859199,-0.025935547,-0.4401277,0.8975509,-0.026268473,-0.41703433,0.90886,0.0074684746,-0.4077524,0.9130908,0.001783319,-0.39130166,0.91963017,0.0341088,-0.3689727,0.9280602,0.050631057,-0.36391175,0.93021655,0.047595672,-0.36637467,0.93006545,0.027347866,-0.3697829,0.9290569,0.010671475,-0.3472427,0.93761545,-0.01731437,-0.33682558,0.94149005,-0.012041003,-0.39371267,0.9183803,-0.039597355,-0.38728312,0.92093545,-0.043469835,-0.3713511,0.9275002,-0.042915475,-0.37334788,0.926045,-0.055245336,-0.3744505,0.92533445,-0.05952271,-0.3626814,0.9273877,-0.091729075,-0.36170593,0.9275964,-0.0934547,-0.35122848,0.9305228,-0.103758976,-0.3633453,0.9233575,-0.12406093,-0.2600869,0.93688416,-0.2336725,-0.4001986,0.84222525,-0.3612446,-0.47092643,0.8020867,-0.36726722,-0.54953015,0.7554063,-0.35690033,-0.56263745,0.75509715,-0.33655217,-0.66366583,0.7479822,-0.008389449,-0.7181102,0.68880105,0.09935225,-0.6511085,0.7312743,0.20321321,-0.5537008,0.77499646,0.3046242,-0.51719636,0.79209876,0.32417205,-0.49169427,0.8169749,0.3013118,-0.47689182,0.84303457,0.24873058,-0.46173462,0.8574099,0.22726513,-0.46741062,0.857708,0.21415971,-0.47606158,0.8532958,0.21272431,-0.47827005,0.85201216,0.21291561,-0.4628673,0.8698416,0.1706738,-0.45760715,0.87340266,0.16662383,-0.45826313,0.88046384,0.12156622,-0.58130795,0.8105286,0.07158561,-0.55226475,0.8336682,-0.0010010478,-0.54512995,0.83792806,-0.026643625,-0.4580976,0.8887106,-0.018440563,-0.45668736,0.8894234,-0.01904615,-0.4396334,0.8977608,-0.027349843,-0.43615994,0.89986914,-0.00031708044,-0.3682953,0.9293133,0.027117848,-0.3666505,0.9303585,0.00065460155,-0.35284087,0.93542475,-0.021997806,-0.38070557,0.9239985,-0.0359172,-0.3841423,0.9223482,-0.04133411,-0.3772196,0.9247525,-0.050381556,-0.3622715,0.92745304,-0.09268355,-0.35634488,0.92932844,-0.096783206,-0.38234407,0.9163525,-0.11879031,-0.28723148,0.9362312,-0.20240845,-0.27808365,0.9380724,-0.20661473,-0.26846424,0.9381916,-0.21845698,-0.40349078,0.8411342,-0.36012277,-0.49457294,0.78495693,-0.37314898,-0.5312199,0.76815253,-0.35741723,-0.5496249,0.7555632,-0.356422,-0.5638858,0.75509715,-0.33445644,-0.6127294,0.75463045,-0.23472467,-0.6446819,0.754631,-0.12213684,-0.66336596,0.7482372,-0.009309311,-0.7163602,0.69020647,0.10219113,-0.6927958,0.7016422,0.16652973,-0.6096336,0.7572762,0.2342641,-0.5573854,0.7750277,0.29774764,-0.51698166,0.792795,0.32280955,-0.49126747,0.81688446,0.30225167,-0.46231234,0.8574134,0.22607426,-0.47659445,0.8529597,0.21287914,-0.45680293,0.8764183,0.1523876,-0.45954487,0.8794142,0.12429493,-0.58177686,0.81017274,0.071803674,-0.5590224,0.8291002,0.009315804,-0.5651167,0.8245496,0.027586546,-0.45774096,0.88888794,-0.01874699,-0.4448583,0.89542437,-0.01778609,-0.38879043,0.920618,0.036117803,-0.3721686,0.92671347,0.05189062,-0.35759786,0.93356055,-0.024257632,-0.38328022,0.9229486,-0.035526183,-0.3948559,0.917871,-0.04002131,-0.38745248,0.9208574,-0.04361424,-0.37312263,0.92653763,-0.048037283,-0.373661,0.9259179,-0.055258166,-0.35068822,0.9309065,-0.10213198,-0.3508336,0.92509,-0.14534177,-0.2900584,0.93605983,-0.19914351,-0.2818244,0.93694854,-0.20664558,-0.26901522,0.93799204,-0.21863607,-0.26557118,0.93280035,-0.2436298,-0.25587383,0.9315918,-0.25819618,-0.30154413,0.8783879,-0.3708178,-0.5317162,0.76798886,-0.3570308,-0.541507,0.76244617,-0.35418358,-0.5651263,0.75509715,-0.332356,-0.61185175,0.75463045,-0.23700286,-0.644223,0.754631,-0.1245347,-0.6499079,0.75583196,-0.07961004,-0.66330874,0.74828386,-0.009629609,-0.71566725,0.69096804,0.10189989,-0.69322497,0.7013835,0.16583231,-0.6079811,0.75819707,0.23557627,-0.55931467,0.77488494,0.29448336,-0.546508,0.7776382,0.3108181,-0.5716229,0.7721169,0.27763775,-0.5151408,0.7954662,0.31916052,-0.4615801,0.8778559,0.12772179,-0.586658,0.80638635,0.074655466,-0.5524257,0.83351284,-0.009063307,-0.5591119,0.82904375,0.008961681,-0.565167,0.82452106,0.02740896,-0.42648873,0.90443826,-0.0099404,-0.39772293,0.91722035,0.022875786,-0.3886918,0.9207005,0.035060808,-0.3519347,0.935784,-0.021220613,-0.37397277,0.92623335,-0.047287133,-0.35032985,0.9312044,-0.10063515,-0.2924276,0.9369256,-0.19145894,-0.26939878,0.9378954,-0.21857826,-0.2657135,0.9326252,-0.24414472,-0.25355384,0.93250644,-0.25718126,-0.30013004,0.87960374,-0.36907884,-0.39193124,0.84660184,-0.36007667,-0.45993486,0.80818367,-0.36783028,-0.532384,0.76766014,-0.35674244,-0.5634124,0.75694937,-0.33105004,-0.6109656,0.75463045,-0.23927806,-0.64375514,0.754631,-0.12693083,-0.64881855,0.75678307,-0.079459496,-0.6630719,0.74851,-0.008274265,-0.71484506,0.6918694,0.10155478,-0.6943898,0.70065665,0.16402183,-0.6073731,0.75851816,0.23611046,-0.5152355,0.7954006,0.3191712,-0.46183735,0.8776286,0.12835206,-0.51959205,0.8458033,0.120999694,-0.50362134,0.8561775,0.11543661,-0.58899397,0.8054295,0.06610182,-0.45713228,0.88919616,-0.018981569,-0.40719604,0.91329366,-0.009279468,-0.39105514,0.9197593,0.033447694,-0.3752475,0.92685884,0.011046495,-0.35755268,0.93358254,-0.024077345,-0.3502901,0.9312882,-0.099995784,-0.35227168,0.93058735,-0.099558026,-0.36587468,0.9210962,-0.13310727,-0.32432026,0.93255717,-0.15859851,-0.2904955,0.93593323,-0.1991014,-0.2695707,0.93796396,-0.21807157,-0.25588432,0.931655,-0.25795782,-0.24688046,0.9290741,-0.27544758,-0.298714,0.8808139,-0.3673375,-0.5007708,0.7859833,-0.36257246,-0.56097925,0.7585132,-0.33160222,-0.61007106,0.75463045,-0.24154967,-0.64327836,0.754631,-0.12932551,-0.6580689,0.75271654,-0.01905698,-0.7053202,0.69975007,0.113460444,-0.69425887,0.70089436,0.16355957,-0.51916254,0.8001236,0.3004539,-0.54098123,0.7900764,0.28830308,-0.53745174,0.78525054,0.30745265,-0.56241995,0.7798123,0.2749119,-0.47285798,0.8711322,0.1324162,-0.5042686,0.8557256,0.115960665,-0.5960522,0.7997072,0.072043136,-0.58353895,0.80994666,0.058895454,-0.60809165,0.7892296,0.08568097,-0.40831643,0.9127945,-0.009160166,-0.4072607,0.9132568,-0.010035189,-0.3908004,0.91986895,0.03340915,-0.37314957,0.926279,0.052599076,-0.35769448,0.9335346,-0.023829086,-0.37454453,0.9260151,-0.047037426,-0.3775774,0.924659,-0.04940687,-0.35096142,0.9311267,-0.09914218,-0.36642998,0.92090195,-0.13292332,-0.38155493,0.91660476,-0.11937962,-0.3069296,0.93461925,-0.17966934,-0.29099813,0.93584347,-0.19878906,-0.2835292,0.93647087,-0.20647891,-0.24846075,0.92812794,-0.2772107,-0.29729608,0.88201827,-0.36559382,-0.4596517,0.8105787,-0.36288074,-0.5005364,0.7861648,-0.36250275,-0.48323792,0.79636806,-0.36370176,-0.5609176,0.75855184,-0.3316181,-0.6091681,0.75463045,-0.24381791,-0.6427927,0.754631,-0.1317181,-0.69964635,0.70706844,0.1027093,-0.7065116,0.6975619,0.11936805,-0.6922702,0.7164489,0.08638806,-0.64984685,0.73382884,0.19797547,-0.6717579,0.7188678,0.17880277,-0.69278693,0.7035661,0.15824345,-0.54283583,0.789636,0.2860143,-0.5633181,0.7795875,0.27370802,-0.5201181,0.7999082,0.2993728,-0.56510633,0.7791376,0.2712919,-0.50312364,0.8196059,0.2740672,-0.47408342,0.84892374,0.23360956,-0.4727295,0.8656741,0.16472793,-0.4894837,0.860817,0.13928293,-0.57303816,0.81927276,0.020479588,-0.58655167,0.80925786,0.032539874,-0.56679535,0.8238565,0.001865582,-0.5769235,0.8166225,0.016940802,-0.60422164,0.7941415,0.06523458,-0.5916506,0.8045085,0.05211166,-0.5956581,0.8017638,0.048644263,-0.61222184,0.78639215,0.082290605,-0.40744075,0.9131752,-0.010151505,-0.38997123,0.9202049,0.033843458,-0.35808885,0.93338996,-0.023569083,-0.36677372,0.92079014,-0.13274994,-0.38222796,0.91637534,-0.11898749,-0.2934444,0.93599415,-0.19443603,-0.30703872,0.93452406,-0.17997783,-0.28751925,0.9357473,-0.20422938,-0.28473416,0.9361734,-0.20616938,-0.25003982,0.9271755,-0.27897248,-0.29587597,0.8832171,-0.36384746,-0.45473796,0.81364757,-0.36220297,-0.50008214,0.786477,-0.36245233,-0.48232913,0.79697895,-0.36357003,-0.5564235,0.76118356,-0.33315536,-0.60825664,0.75463045,-0.246083,-0.64229816,0.754631,-0.13410886,-0.6995732,0.7071643,0.10254719,-0.6922312,0.7164962,0.08630868,-0.7064776,0.6976105,0.1192854,-0.6921531,0.7165907,0.08615005,-0.5645544,0.7801399,0.2695554,-0.53128076,0.79528594,0.29199493,-0.51426125,0.80267924,0.302062,-0.54805607,0.7877725,0.28115684,-0.5807435,0.7723894,0.25719965,-0.59659123,0.7645222,0.24409999,-0.612066,0.75653934,0.23026809,-0.4775568,0.8467802,0.23431352,-0.49251246,0.8323263,0.25429207,-0.50649685,0.81728303,0.27478978,-0.5050769,0.84997797,0.14978239,-0.5606611,0.81925416,0.12034003,-0.38770297,0.9207514,-0.043626707,-0.35129794,0.93100667,-0.09907755,-0.3663512,0.92078316,-0.13395962,-0.31698215,0.9313475,-0.17920445,-0.2858907,0.9359365,-0.20564362,-0.26214442,0.932603,-0.24805635,-0.2516169,0.9262173,-0.28073204,-0.29445413,0.88441,-0.362099,-0.4547724,0.8136481,-0.36215863,-0.50739634,0.7825365,-0.3608124,-0.5576594,0.76118356,-0.33108246,-0.6073368,0.75463045,-0.24834447,-0.64179474,0.754631,-0.13649777,-0.65979946,0.7372678,0.1452612,-0.68674767,0.7130408,0.14124553,-0.6795179,0.7159605,0.16017458,-0.6660459,0.7281334,0.16187851,-0.644452,0.7428809,0.18113436,-0.6523776,0.74008083,0.16335204,-0.67308724,0.7316034,0.10821286,-0.68017703,0.72238725,0.1245627,-0.6667063,0.734442,0.1268764,-0.67893183,0.7287521,0.08928595,-0.6934364,0.71010876,0.122031055,-0.5467534,0.78901774,0.28019956,-0.541628,0.7911164,0.28420755,-0.57450354,0.7758381,0.26080832,-0.60134816,0.76231086,0.23929594,-0.49262416,0.83221555,0.25443807,-0.5065492,0.81722546,0.27486458,-0.47761613,0.8467271,0.2343846,-0.5066538,0.81711024,0.27501416,-0.50966775,0.8460092,0.15654781,-0.5607967,0.81914663,0.12044012,-0.46482116,0.8847423,-0.034239862,-0.39863172,0.9170186,0.013024548,-0.38746983,0.9217092,0.0178702,-0.365253,0.92085147,-0.13646546,-0.31804132,0.931083,-0.17870139,-0.2695283,0.9381975,-0.2171173,-0.26299897,0.93225104,-0.2484745,-0.2531923,0.92525303,-0.28248975,-0.29303023,0.88559735,-0.360348,-0.50614804,0.7839588,-0.3594756,-0.4798378,0.79973423,-0.36080578,-0.45352787,0.814976,-0.36073077,-0.5715837,0.75791645,-0.31441176,-0.55888736,0.76118356,-0.32900524,-0.60640854,0.75463045,-0.2506025,-0.6412823,0.754631,-0.138885,-0.6584569,0.73936975,0.14059468,-0.6722999,0.7326648,0.1059011,-0.6439067,0.7439231,0.17878062,-0.6357932,0.746187,0.19741325,-0.6514652,0.7416507,0.15983552,-0.6706968,0.73478234,0.10129511,-0.664871,0.73708034,0.12107528,-0.6759245,0.73247594,0.08127214,-0.5477882,0.7886925,0.27909175,-0.54744357,0.7888009,0.27946144,-0.5751645,0.77561545,0.26001245,-0.60166204,0.7621967,0.2388702,-0.49007562,0.8399982,0.23287101,-0.48592663,0.8422559,0.23341037,-0.50093,0.8275576,0.2534118,-0.51080644,0.8146967,0.2744924,-0.5114117,0.8447161,0.15783784,-0.5618757,0.8183336,0.12093681,-0.46322653,0.88557774,-0.03425321,-0.37043405,0.9288578,-0.0013240023,-0.3649487,0.920875,-0.13711911,-0.3179997,0.93104506,-0.17897281,-0.2869947,0.93576175,-0.2049,-0.2633274,0.93213356,-0.24856743,-0.25476637,0.9242826,-0.28424597,-0.29160458,0.8867788,-0.3585948,-0.47946027,0.7999649,-0.36079627,-0.4533393,0.8150873,-0.36071616,-0.5059595,0.7840781,-0.35948092,-0.45296237,0.8153099,-0.36068666,-0.5733297,0.75791645,-0.31121665,-0.56010765,0.76118356,-0.32692352,-0.54645234,0.7644315,-0.34210286,-0.6054719,0.75463045,-0.2528571,-0.6131649,0.75463057,-0.23358415,-0.5971734,0.75463027,-0.27187708,-0.6407612,0.754631,-0.1412701,-0.64490783,0.7546311,-0.120937094,-0.6359736,0.7546308,-0.1614618,-0.664416,0.73778784,0.11924941,-0.6645683,0.7375521,0.119857766,-0.657918,0.7403095,0.13815117,-0.6703597,0.7352559,0.100083284,-0.675739,0.73271364,0.08066937,-0.6437076,0.74438965,0.17755172,-0.65134865,0.7418849,0.15922232,-0.63571125,0.74641937,0.1967977,-0.6511137,0.742353,0.15799674,-0.669678,0.7362019,0.09766376,-0.6641095,0.73825914,0.1180338,-0.6746134,0.73413783,0.077060714,-0.52793425,0.81559294,0.23684086,-0.5383561,0.8023464,0.257707,-0.5197115,0.8151451,0.25580946,-0.55421144,0.80326897,0.21819428,-0.54664093,0.8028079,0.23808208,-0.52936584,0.8018845,0.27704346,-0.5165486,0.82842517,0.21653935,-0.5090733,0.8279916,0.23510471,-0.4974775,0.8404177,0.21497497,-0.53546566,0.8160403,0.2176114,-0.56517595,0.7896427,0.2388315,-0.59111965,0.7765911,0.217908,-0.5835221,0.7761035,0.23909281,-0.5727684,0.79011714,0.2182917,-0.609248,0.7626972,0.21704793,-0.55684626,0.7891678,0.259107,-0.50887686,0.8451297,0.16370739,-0.5170641,0.8437027,0.14425865,-0.4999593,0.8465508,0.18273593,-0.57230526,0.81033736,0.12577757,-0.376518,0.9251893,-0.047528114,-0.36431703,0.92095757,-0.13823973,-0.3173428,0.9309859,-0.18044035,-0.26434013,0.9319436,-0.2482044,-0.25478134,0.92431575,-0.2841247,-0.29017687,0.88795453,-0.35683912,-0.30203077,0.8783022,-0.37062472,-0.2782293,0.89723086,-0.3428779,-0.54733616,0.7746368,-0.3167979,-0.54023284,0.77116007,-0.33683923,-0.5668623,0.7647256,-0.3063688,-0.52756345,0.7843613,-0.32627323,-0.50758797,0.7938967,-0.33478728,-0.52013725,0.78095067,-0.34579372,-0.48745376,0.8032408,-0.34233478,-0.46720517,0.8123912,-0.34891236,-0.44688642,0.82134587,-0.3545187,-0.6045268,0.75463045,-0.25510842,-0.6127292,0.75463057,-0.23472461,-0.5956465,0.75463027,-0.27520618,-0.6402311,0.754631,-0.14365323,-0.6446817,0.7546311,-0.12213665,-0.6350626,0.7546308,-0.16500874,-0.65624017,0.74311966,0.13085087,-0.6686368,0.737618,0.09404499,-0.67404234,0.7348487,0.07526126,-0.6430946,0.7457869,0.17387141,-0.63546133,0.747116,0.19495271,-0.65002465,0.74445474,0.15249625,-0.66648734,0.74044067,0.08684562,-0.661731,0.74178165,0.10895921,-0.67050076,0.73909676,0.06453494,-0.5256062,0.8251849,0.20690122,-0.53849757,0.8149289,0.21426903,-0.52260804,0.826268,0.21014754,-0.50804514,0.8367564,0.20427641,-0.5065503,0.83728176,0.20583005,-0.54300344,0.8132562,0.20919272,-0.56022567,0.80097556,0.21115252,-0.5772613,0.78834826,0.21278252,-0.5757699,0.78893864,0.21462713,-0.5940991,0.7753799,0.21408485,-0.61072797,0.7620759,0.21506204,-0.5181133,0.8429408,0.14494616,-0.51776373,0.84319496,0.1447168,-0.5259321,0.84124917,0.12528093,-0.5095597,0.8446241,0.16419207,-0.5002918,0.8462992,0.18299115,-0.57141757,0.8109035,0.12616457,-0.54257286,0.8300826,0.12875396,-0.37624615,0.92651594,-0.0026540002,-0.3769425,0.92498606,-0.048115402,-0.3628476,0.92121327,-0.14038439,-0.3153832,0.9309552,-0.18399973,-0.25953484,0.92446744,-0.27928776,-0.28874743,0.8891244,-0.3550813,-0.30132318,0.87891096,-0.36975643,-0.2760649,0.8989132,-0.3402106,-0.4729503,0.81193954,-0.3421581,-0.4498114,0.82112503,-0.3513167,-0.4902905,0.8030101,-0.33880666,-0.5302808,0.7841211,-0.32242262,-0.5584403,0.76958084,-0.30966058,-0.5017428,0.79824317,-0.33325973,-0.44402826,0.8252028,-0.34911197,-0.41510123,0.83802605,-0.35412326,-0.3862934,0.85040236,-0.35720193,-0.6396921,0.754631,-0.14603461,-0.6347545,0.7546308,-0.16618998,-0.64445335,0.7546311,-0.12333594,-0.63413167,0.7546308,-0.16855082,-0.6616516,0.741898,0.1086482,-0.66167814,0.74185926,0.10875187,-0.6561479,0.7432745,0.13043368,-0.66642785,0.7405184,0.08663977,-0.6704677,0.7391357,0.06443286,-0.64306206,0.745864,0.17366093,-0.650005,0.74449337,0.15239142,-0.6354485,0.7471545,0.19484718,-0.64996564,0.7445706,0.15218177,-0.66630846,0.74067384,0.08622817,-0.67040133,0.7392136,0.06422872,-0.6615987,0.7419756,0.10844091,-0.67026854,0.7393694,0.063820586,-0.5531463,0.811427,0.18872061,-0.57976764,0.79720414,0.16833012,-0.5704009,0.7990938,0.18997881,-0.5450474,0.8216252,0.16689944,-0.5625091,0.80958986,0.16777317,-0.5536197,0.8198332,0.14621446,-0.5359636,0.83156693,0.14573736,-0.53996325,0.83069485,0.1355941,-0.5668912,0.80866826,0.15713046,-0.60429734,0.77339536,0.19153136,-0.58745503,0.78641474,0.1909148,-0.59223944,0.78544503,0.17980129,-0.61593264,0.7610596,0.20350762,-0.5180803,0.8350348,0.1852288,-0.5273938,0.83330494,0.16570649,-0.5357022,0.8234091,0.18713798,-0.57072824,0.8113747,0.12625492,-0.5411663,0.8309802,0.12888353,-0.38935274,0.92104256,-0.009221416,-0.362602,0.9212567,-0.14073347,-0.3151447,0.9309626,-0.18437034,-0.2769967,0.9341,-0.22523339,-0.25964108,0.9244898,-0.2791148,-0.2873161,0.89028853,-0.35332116,-0.2753426,0.899471,-0.33932045,-0.30061498,0.87951845,-0.3688874,-0.27389655,0.9005823,-0.3375384,-0.5823786,0.7695812,-0.2618777,-0.5599441,0.7841215,-0.26761192,-0.5732841,0.769581,-0.28123,-0.5908201,0.7695813,-0.24223164,-0.6057283,0.7621568,-0.22849548,-0.5755489,0.7769032,-0.25527412,-0.54403543,0.7912352,-0.27923506,-0.5407787,0.7841212,-0.30448705,-0.55067015,0.78412133,-0.28620988,-0.52785313,0.79824346,-0.2901352,-0.517843,0.79824334,-0.30764624,-0.51142746,0.80514526,-0.30030492,-0.49478906,0.8119397,-0.309738,-0.5635468,0.76958084,-0.30026713,-0.4779687,0.8186259,-0.31842974,-0.46099734,0.825203,-0.32637638,-0.42672503,0.83802617,-0.3400263,-0.44981116,0.8252029,-0.34162855,-0.3922198,0.8504024,-0.35068402,-0.51261944,0.7982433,-0.31627354,-0.63914436,0.754631,-0.14841373,-0.63381696,0.7546308,-0.16973025,-0.6442228,0.7546311,-0.12453467,-0.6331811,0.7546308,-0.17208734,-0.66039544,0.74370706,0.10381575,-0.6608006,0.74313045,0.10535535,-0.6547376,0.74557704,0.1242318,-0.6654096,0.74183124,0.083165355,-0.6697711,0.7399496,0.062301077,-0.64256877,0.74701136,0.17052698,-0.64967006,0.74514586,0.15062031,-0.63525504,0.7477272,0.19327457,-0.6490664,0.7462946,0.14750296,-0.6635641,0.7441393,0.07706753,-0.6595729,0.7448586,0.10074327,-0.6667038,0.7434192,0.0532349,-0.5671812,0.8084344,0.157287,-0.55450946,0.8191501,0.14667122,-0.5673261,0.8083175,0.15736522,-0.554213,0.8193779,0.14651895,-0.5410239,0.8299198,0.13611133,-0.54087245,0.83003056,0.1360374,-0.5271694,0.8403888,0.12585343,-0.5676161,0.8080835,0.15752178,-0.58033395,0.7967241,0.16865133,-0.59265375,0.78507596,0.18004796,-0.59251565,0.78519905,0.17996573,-0.60456645,0.7731434,0.19169945,-0.61606354,0.76093066,0.20359339,-0.59354836,0.79518765,0.1240039,-0.57631,0.80746007,0.12599628,-0.5588451,0.81939256,0.12762433,-0.3875281,0.92167944,0.018137984,-0.3893911,0.92102766,-0.0090893535,-0.3767432,0.92096174,-0.099468924,-0.33730236,0.92637545,-0.16749822,-0.31267324,0.9311457,-0.18762475,-0.3605848,0.9214517,-0.144587,-0.2765762,0.933887,-0.22662894,-0.26124576,0.92351484,-0.28083983,-0.28588277,0.89144695,-0.35155857,-0.2731728,0.90113586,-0.33664647,-0.2999063,0.8801245,-0.36801776,-0.27172387,0.90223855,-0.33486086,-0.4600362,0.8256329,-0.32664496,-0.4603566,0.82548964,-0.32655573,-0.49352294,0.81253207,-0.31020436,-0.47685316,0.8191359,-0.3187905,-0.42608115,0.8383031,-0.34015116,-0.39189863,0.8505359,-0.35071942,-0.5435756,0.791468,-0.27947077,-0.5437289,0.7913904,-0.27939227,-0.55933976,0.78443646,-0.2679523,-0.5275427,0.79839635,-0.29027912,-0.5112706,0.80522054,-0.3003702,-0.5905285,0.7697434,-0.24242783,-0.57540035,0.7769831,-0.25536588,-0.6055855,0.762239,-0.22859988,-0.57510316,0.7771429,-0.25554904,-0.52692175,0.79870194,-0.2905661,-0.5109568,0.80537105,-0.30050057,-0.543269,0.7916231,-0.27962762,-0.51032925,0.80567193,-0.30076036,-0.42479327,0.8388563,-0.34039807,-0.39125577,0.85080284,-0.35078976,-0.4593954,0.8259193,-0.32682282,-0.47653437,0.8192815,-0.3188931,-0.44213784,0.8324445,-0.33399147,-0.38997057,0.851336,-0.3509273,-0.6385877,0.754631,-0.1507908,-0.6328598,0.7546308,-0.17326501,-0.64399,0.7546311,-0.12573294,-0.6322108,0.7546308,-0.17561853,-0.65926033,0.7452898,0.09959353,-0.6593648,0.74514616,0.09997658,-0.6543748,0.74615127,0.12268658,-0.66332895,0.74442714,0.07630798,-0.666573,0.7435633,0.052859016,-0.64244276,0.7472978,0.16974464,-0.6489898,0.7464381,0.14711377,-0.635206,0.74787027,0.19288176,-0.6488358,0.7467248,0.14633593,-0.6628557,0.7450025,0.07479065,-0.6663106,0.7438514,0.052107874,-0.6590507,0.74557716,0.09882766,-0.6657829,0.74442726,0.050607458,-0.55741405,0.81697136,0.14780864,-0.55644697,0.81769884,0.1474293,-0.53118664,0.8376405,0.12727581,-0.5699897,0.8062199,0.15849711,-0.5821944,0.7951953,0.16945252,-0.5940196,0.7839014,0.18066372,-0.60545695,0.7723419,0.1921193,-0.61649853,0.7605209,0.20380768,-0.37772983,0.9208172,-0.09703533,-0.29835996,0.92822886,-0.22219926,-0.28171676,0.9301197,-0.2356119,-0.30833274,0.9301799,-0.19923918,-0.31436664,0.9263137,-0.20764524,-0.32966018,0.9243743,-0.19197997,-0.34416535,0.9224107,-0.1752389,-0.35780886,0.920423,-0.1574622,-0.3705193,0.9184112,-0.13869506,-0.26284873,0.9225338,-0.28256303,-0.3011,0.8803766,-0.36643675,-0.30070302,0.88029253,-0.36696422,-0.2866326,0.89160734,-0.35053968,-0.27207556,0.90231484,-0.33436924,-0.45850226,0.8262816,-0.32716098,-0.4588001,0.8261609,-0.3270484,-0.4754995,0.8197114,-0.31933272,-0.47564736,0.81965005,-0.31927013,-0.4923504,0.8130315,-0.3107585,-0.42419308,0.8390895,-0.3405716,-0.3896703,0.8514484,-0.35098815,-0.5428458,0.7918195,-0.2798934,-0.54298687,0.79175407,-0.27980477,-0.5587848,0.7847023,-0.26833177,-0.5266354,0.7988309,-0.29073068,-0.5101843,0.8057354,-0.30083632,-0.590262,0.7698802,-0.2426423,-0.5749671,0.7772103,-0.2556502,-0.6054554,0.76230836,-0.22871314,-0.57469475,0.7773452,-0.25585234,-0.52606255,0.7990887,-0.2910592,-0.50989425,0.8058623,-0.300988,-0.5425635,0.7919504,-0.28007036,-0.50931406,0.80611604,-0.3012907,-0.4229927,0.8395556,-0.3409158,-0.38906956,0.8516731,-0.35110927,-0.45790693,0.826523,-0.3273851,-0.47520387,0.8198341,-0.3194578,-0.44049236,0.8330971,-0.33453804,-0.3878685,0.85212207,-0.35134876,-0.6380221,0.754631,-0.15316609,-0.6318829,0.7546308,-0.17679451,-0.6437549,0.7546311,-0.12693094,-0.63122064,0.7546308,-0.1791447,-0.6585216,0.7462957,0.09691239,-0.6586987,0.7460563,0.097550474,-0.6537602,0.7471082,0.12011183,-0.6624578,0.7454821,0.07352605,-0.6655617,0.74466735,0.04998213,-0.64223033,0.74777555,0.16843972,-0.6487065,0.746964,0.14568718,-0.63512367,0.748109,0.19222617,-0.6484457,0.747442,0.1443905,-0.6616539,0.7464402,0.07100181,-0.66511714,0.7451472,0.04873263,-0.65816534,0.74677426,0.09563755,-0.6642199,0.7461058,0.0462389,-0.5593113,0.8155738,0.1483584,-0.5586793,0.81604016,0.14817522,-0.5337981,0.83587426,0.12796022,-0.5834162,0.79421633,0.16984104,-0.6060454,0.7718294,0.1923234,-0.616787,0.760259,0.20391193,-0.38379905,0.92155755,-0.058566175,-0.34421948,0.9224025,-0.17517604,-0.34420136,0.92240524,-0.17519699,-0.3297363,0.92436343,-0.19190156,-0.35784268,0.9204174,-0.15741771,-0.370535,0.9184084,-0.1386716,-0.29840142,0.92822355,-0.22216566,-0.31438652,0.9263111,-0.20762695,-0.28173813,0.93011713,-0.23559654,-0.31442645,0.92630565,-0.20759055,-0.35791057,0.9204063,-0.15732875,-0.3705666,0.91840273,-0.13862464,-0.34425554,0.92239696,-0.17513417,-0.3706298,0.9183914,-0.13853072,-0.2944805,0.9027591,-0.3135399,-0.29104337,0.8972548,-0.33200538,-0.30612,0.8862959,-0.34751987,-0.31108278,0.87761146,-0.36472672,-0.3005842,0.8946794,-0.330451,-0.28059384,0.9179961,-0.28026825,-0.2696409,0.9152658,-0.29930303,-0.6070363,0.76230836,-0.22448365,-0.5918294,0.7698802,-0.23879373,-0.6061968,0.76230836,-0.22674073,-0.59093684,0.7698802,-0.24099411,-0.5762313,0.7773452,-0.25237286,-0.5602737,0.7847023,-0.2652088,-0.5757608,0.7773452,-0.25344443,-0.605774,0.76230836,-0.22786811,-0.5592831,0.7847023,-0.2672916,-0.5439893,0.7919504,-0.27729082,-0.52741057,0.7990887,-0.2886093,-0.54347247,0.7919504,-0.27830237,-0.5268728,0.7990887,-0.28958985,-0.5105709,0.80611604,-0.29915598,-0.4935032,0.8130315,-0.30892444,-0.5102923,0.80611604,-0.29963085,-0.54321337,0.7919504,-0.2788077,-0.5750513,0.7773452,-0.25505012,-0.5904875,0.7698802,-0.24209307,-0.57552475,0.7773452,-0.25397986,-0.60556173,0.76230836,-0.22843148,-0.47624132,0.8198341,-0.31790912,-0.4588187,0.826523,-0.32610607,-0.47564912,0.8198341,-0.31879446,-0.45821115,0.826523,-0.3269592,-0.44126904,0.8330971,-0.33351287,-0.42362612,0.8395556,-0.3401284,-0.4409586,0.8330971,-0.33392325,-0.47535235,0.8198341,-0.31923684,-0.38819513,0.85212207,-0.35098785,-0.5098738,0.80611604,-0.30034256,-0.5266032,0.7990887,-0.2900799,-0.5428238,0.7919504,-0.27956548,-0.51015294,0.80611604,-0.29986808,-0.5749326,0.7773452,-0.25531757,-0.5429538,0.7919504,-0.27931294,-0.63744783,0.754631,-0.15553895,-0.6308863,0.7546308,-0.18031868,-0.6435177,0.7546311,-0.12812836,-0.630211,0.7546308,-0.1826648,-0.65792495,0.74711233,0.094646424,-0.65800524,0.7469997,0.09497664,-0.65348864,0.7475587,0.11877998,-0.66146934,0.74666566,0.07034702,-0.66411567,0.7462186,0.045914877,-0.64214456,0.7480006,0.16776597,-0.6483905,0.7475546,0.14405519,-0.6350934,0.74822146,0.19188814,-0.6482795,0.74777967,0.143385,-0.66109806,0.74711645,0.069038644,-0.6639065,0.7464442,0.0452673,-0.6577637,0.74733764,0.09398609,-0.6634862,0.7468952,0.04397346,-0.56146556,0.81400263,0.1488495,-0.5607479,0.81452703,0.148686,-0.53675467,0.8338853,0.12856786,-0.5848082,0.7931172,0.17018975,-0.6067183,0.7712547,0.1925072,-0.41238797,0.91042346,-0.03263825,-0.39058626,0.9171126,-0.07966745,-0.38696,0.91673297,-0.09931089,-0.39321798,0.9174914,-0.05991017,-0.3075314,0.9084024,-0.28324822,-0.33496773,0.8983048,-0.28433275,-0.32661557,0.90624875,-0.26839432,-0.31773105,0.9138848,-0.25270832,-0.31505084,0.90054375,-0.29960623,-0.34498307,0.9040713,-0.25227338,-0.35414454,0.8960423,-0.26774967,-0.3724958,0.8937563,-0.2498932,-0.2908666,0.92319155,-0.25122496,-0.2994673,0.91595244,-0.26711503,-0.32201815,0.89237934,-0.31616986,-0.32842642,0.8839119,-0.33292013,-0.3500414,0.8815047,-0.3168919,-0.33426937,0.8751443,-0.3498377,-0.36277765,0.8877091,-0.2834871,-0.34277895,0.8900559,-0.30050477,-0.35638353,0.915123,-0.18852249,-0.35210162,0.9096777,-0.22025213,-0.3680481,0.90753824,-0.20227452,-0.3830648,0.90537494,-0.18318722,-0.37923697,0.8996452,-0.21637425,-0.3625507,0.9018701,-0.23491989,-0.38406506,0.91094434,-0.15058029,-0.3251138,0.9192055,-0.22217631,-0.33530277,0.91179323,-0.23707624,-0.6208335,0.76988065,-0.1478159,-0.62212914,0.7623086,-0.17844042,-0.6351043,0.7623089,-0.124610245,-0.605927,0.7698804,-0.20034134,-0.60598755,0.7736264,-0.1851521,-0.5896148,0.78470266,-0.19130127,-0.60565156,0.7773456,-0.17005892,-0.57278126,0.7919508,-0.21150789,-0.57110554,0.78470236,-0.24099915,-0.5808919,0.7847025,-0.21634826,-0.5552106,0.799089,-0.23064683,-0.5448361,0.7990889,-0.2541861,-0.5369635,0.80611634,-0.24868971,-0.5181024,0.8130318,-0.26561102,-0.5968025,0.76988024,-0.22607782,-0.49869016,0.81983435,-0.28138903,-0.50626624,0.8130317,-0.28753093,-0.47879052,0.8265231,-0.2960053,-0.4656902,0.82652307,-0.31621557,-0.45846814,0.8330972,-0.30944455,-0.43778795,0.83955574,-0.32169533,-0.4168151,0.8458977,-0.3327496,-0.395615,0.8521222,-0.34260255,-0.3742529,0.85822845,-0.35125312,-0.5392736,0.79908884,-0.26578382,-0.6524128,0.7535922,0.08035118,-0.6593952,0.7501433,0.04982909,-0.6433496,0.75102293,0.14854622,-0.6361314,0.749734,0.18230677,-0.648779,0.75230896,0.11452949,-0.6542489,0.75487256,0.046105944,-0.65429026,0.75615007,0.011888095,-0.6525447,0.7574247,-0.022208367,-0.56295073,0.81292796,0.14911269,-0.56245583,0.8132865,0.14902507,-0.53878826,0.832523,0.12889035,-0.5857704,0.7923663,0.170378,-0.60718495,0.7708625,0.192607,-0.41519415,0.9089459,-0.03782952,-0.4407306,0.89679146,-0.03900782,-0.46592295,0.8839196,-0.04002404,-0.39408776,0.894608,-0.2106451,-0.39322743,0.90026736,-0.18679114,-0.39094904,0.9057784,-0.16347565,-0.38730288,0.91114044,-0.14078212,-0.38379374,0.8941825,-0.2305211,-0.36479667,0.8819535,-0.29846516,-0.3694133,0.887928,-0.2740761,-0.3426172,0.8753744,-0.3410765,-0.3296577,0.87202233,-0.36180496,-0.3543332,0.8786848,-0.31993908,-0.3819503,0.8883651,-0.2547968,-0.3740027,0.8851803,-0.27672708,-0.38864288,0.89150774,-0.2327459,-0.40367046,0.90658295,-0.12311581,-0.39782205,0.9061811,-0.1434346,-0.40128273,0.900681,-0.16657098,-0.39829606,0.8976658,-0.18856399,-0.40306666,0.90365344,-0.14473313,-0.4031199,0.9094695,-0.10178241,-0.40144444,0.9123128,-0.08079445,-0.39235774,0.914344,-0.10015212,-0.39867693,0.91511273,-0.06021116,-0.6367485,0.76628166,-0.085812405,-0.6237436,0.7735375,-0.11217694,-0.62233293,0.771451,-0.13253309,-0.60958856,0.7806933,-0.13754879,-0.59434766,0.7877482,-0.16187547,-0.608564,0.7796656,-0.14755118,-0.6356245,0.76310575,-0.1168378,-0.5913563,0.78571993,-0.18149903,-0.5780873,0.7947012,-0.18510817,-0.5608765,0.8015515,-0.20720215,-0.576299,0.79370296,-0.19471799,-0.55872905,0.80056816,-0.21659277,-0.5427861,0.80829823,-0.22811678,-0.5238888,0.8149404,-0.24781567,-0.54156035,0.8078143,-0.23269816,-0.5753444,0.79320306,-0.199519,-0.6067159,0.7781201,-0.16255733,-0.6213755,0.77040464,-0.1427208,-0.63528836,0.7625746,-0.12201889,-0.5042591,0.8214772,-0.2662668,-0.48397237,0.8279078,-0.28344205,-0.50113285,0.82053924,-0.2749203,-0.4805543,0.8269853,-0.2918268,-0.4631054,0.8342314,-0.29931816,-0.44173568,0.84044707,-0.31387615,-0.46127725,0.83377814,-0.30337653,-0.49951363,0.8200695,-0.27923498,-0.41994134,0.8465541,-0.32710153,-0.3978005,0.85255176,-0.33898416,-0.4178656,0.8461166,-0.33087,-0.3753917,0.8584392,-0.3495185,-0.46034974,0.8335513,-0.30540186,-0.5575959,0.80007565,-0.22128199,-0.57383686,0.7924521,-0.20671488,-0.54093295,0.8075721,-0.2349869,-0.60637146,0.7778621,-0.1650581,-0.57434934,0.7927025,-0.20431715,-0.65421355,0.7549596,0.0451744,-0.6542255,0.75493056,0.045484845,-0.6524308,0.7537084,0.07910572,-0.6542343,0.75620794,0.011270524,-0.65250075,0.7574535,-0.022514557,-0.6434245,0.7510813,0.14792526,-0.64880013,0.7523381,0.11421814,-0.6361854,0.7497632,0.1819981,-0.6488419,0.75239635,0.113595374,-0.65412074,0.75632364,0.010035731,-0.6524123,0.75751126,-0.023126902,-0.6541892,0.7550175,0.044553503,-0.6522337,0.75762665,-0.024351154,-0.5647002,0.8117124,0.14911999,-0.56411725,0.81211793,0.14911793,-0.5869129,0.79151785,0.17038997,-0.60774374,0.7704198,0.19261587,-0.45176995,0.89120275,-0.040762194,-0.47137192,0.88098574,-0.04089745,-0.4207988,0.906328,-0.038702298,-0.48221096,0.8750155,-0.04266737,-0.40306938,0.9036537,-0.14472434,-0.401292,0.90068173,-0.16654468,-0.4030707,0.90365374,-0.14471999,-0.40128896,0.9006815,-0.16655344,-0.39830863,0.89766663,-0.18853343,-0.39830682,0.8976665,-0.1885378,-0.3941041,0.894609,-0.21061045,-0.40307316,0.9036541,-0.14471117,-0.4036747,0.9065835,-0.12309821,-0.40312243,0.9094698,-0.101769246,-0.40312156,0.9094697,-0.101773635,-0.40144575,0.912313,-0.080785744,-0.39867738,0.91511285,-0.060206853,-0.39830315,0.89766634,-0.18854652,-0.3740109,0.8851807,-0.27671453,-0.37400812,0.88518053,-0.27671883,-0.36480868,0.881954,-0.29844898,-0.38195533,0.8883654,-0.2547883,-0.38864517,0.89150786,-0.23274162,-0.34262407,0.8753747,-0.34106886,-0.35433644,0.87868494,-0.31993514,-0.32966137,0.8720225,-0.3618012,-0.35434294,0.8786852,-0.31992733,-0.3819655,0.8883658,-0.25477156,-0.38864982,0.89150804,-0.23273306,-0.37401643,0.88518095,-0.27670634,-0.38865894,0.8915086,-0.23271596,-0.4031275,0.9094705,-0.10174302,-0.40312585,0.90947026,-0.10175176,-0.4036834,0.9065844,-0.12306304,-0.40144816,0.91231346,-0.080768354,-0.39867803,0.9151131,-0.0601982,-0.40129825,0.9006822,-0.16652708,-0.4030759,0.9036543,-0.14470237,-0.39831218,0.8976669,-0.18852465,-0.40308118,0.90365475,-0.14468475,-0.40145317,0.91231436,-0.08073356,-0.39867973,0.9151135,-0.060181007,-0.40313092,0.909471,-0.10172549,-0.39868292,0.91511434,-0.060146544,-0.6318234,0.7750541,0.009502736,-0.6395586,0.7684577,0.020916304,-0.6245956,0.78032154,0.031283464,-0.6382396,0.76973224,-0.012744894,-0.64382005,0.7643564,-0.03542737,-0.639551,0.7678192,0.037791487,-0.6390968,0.7671801,0.054680664,-0.63280684,0.7646158,0.1221403,-0.6430008,0.7591887,0.10090831,-0.6317506,0.75658685,0.16872332,-0.6298927,0.7525289,0.19218613,-0.63271874,0.7606159,0.14536329,-0.63038754,0.7725277,0.07623973,-0.6320257,0.7685864,0.099088065,-0.62790585,0.7764395,0.053627647,-0.621311,0.78280956,-0.034377027,-0.6351519,0.7710037,-0.046209157,-0.6034041,0.7955499,-0.054806698,-0.62623805,0.7775681,-0.056689955,-0.61555386,0.787996,-0.0124779055,-0.6204725,0.7841738,0.009238206,-0.60985804,0.7917881,-0.033835653,-0.5883054,0.8029822,-0.095479526,-0.6111679,0.7852851,-0.09900054,-0.6077087,0.79044527,-0.076723315,-0.5962128,0.79928136,-0.07536352,-0.59118235,0.7979601,-0.117316134,-0.5797044,0.80665237,-0.11512935,-0.5704332,0.81029165,-0.13428864,-0.6303127,0.7722721,-0.07938364,-0.61708724,0.78404886,-0.06686338,-0.53770894,0.81378305,-0.22051378,-0.52714205,0.82453763,-0.20556974,-0.52595127,0.8197678,-0.22661877,-0.5501009,0.8126224,-0.19244157,-0.5499776,0.8174771,-0.17104313,-0.561022,0.81145865,-0.16367406,-0.56051594,0.81389993,-0.15293398,-0.53884417,0.82102305,-0.18859504,-0.5021418,0.831472,-0.23771425,-0.51489866,0.82802063,-0.22194861,-0.49968603,0.82678765,-0.25833312,-0.4888997,0.8348915,-0.25285035,-0.47520143,0.8382791,-0.26734188,-0.44655448,0.8449581,-0.29433805,-0.45905864,0.83936477,-0.2910875,-0.4610764,0.8416347,-0.28117526,-0.43166572,0.8482492,-0.3068191,-0.41644073,0.85150784,-0.31860864,-0.38510457,0.8579274,-0.34008104,-0.5826446,0.7991604,-0.14787835,-0.5777823,0.7997594,-0.16294955,-0.5725303,0.8003576,-0.17786737,-0.60357815,0.7865182,-0.13070011,-0.5871126,0.7985607,-0.13266367,-0.5992402,0.78706986,0.14639755,-0.6208229,0.76578116,0.16780384,-0.60398096,0.7788134,0.1692826,-0.61616737,0.7742491,0.14448589,-0.62448764,0.7571783,0.19156247,-0.5820803,0.79955935,0.14794381,-0.4248646,0.90430474,-0.041508563,-0.42351243,0.9049815,-0.040567994,-0.45442805,0.88975775,-0.04273555,-0.48351258,0.8742457,-0.043704297,-0.375914,0.8853116,-0.2737007,-0.38273397,0.88842314,-0.25341466,-0.37570435,0.88529706,-0.27403533,-0.36756554,0.88213044,-0.29451895,-0.38311645,0.8884518,-0.25273532,-0.38900474,0.89153683,-0.23202874,-0.3891773,0.891551,-0.2316848,-0.37528414,0.88526803,-0.27470398,-0.36665124,0.8820717,-0.29583177,-0.3568349,0.8788341,-0.31673238,-0.34637028,0.8755858,-0.33671528,-0.35708266,0.878849,-0.31641173,-0.3458384,0.87555563,-0.33733973,-0.33395272,0.8722516,-0.35728532,-0.33366862,0.8722363,-0.35758793,-0.35757697,0.8788788,-0.3157701,-0.38387772,0.8885091,-0.2513751,-0.38952133,0.8915792,-0.23099697,-0.37633234,0.88534063,-0.27303106,-0.3902058,0.8916358,-0.22961928,-0.39532444,0.89472055,-0.20783107,-0.40327257,0.9036815,-0.14398271,-0.4019833,0.9007636,-0.16442157,-0.40336788,0.9036948,-0.14363167,-0.40175614,0.90073645,-0.16512369,-0.39924517,0.8977632,-0.1860768,-0.39911285,0.8977494,-0.18642671,-0.4035574,0.9037216,-0.14292921,-0.4039897,0.906637,-0.12166197,-0.40330553,0.90950984,-0.100680165,-0.40324765,0.90949684,-0.10102862,-0.40153357,0.91233987,-0.08004228,-0.39870548,0.915127,-0.059804652,-0.39884722,0.8977219,-0.18712643,-0.35534313,0.8787448,-0.31865162,-0.35584155,0.8787746,-0.31801257,-0.34477147,0.8754953,-0.33858618,-0.33309942,0.87220573,-0.3581926,-0.3748628,0.885239,-0.27537212,-0.33195767,0.87214476,-0.35939902,-0.6194199,0.7717813,0.14377952,-0.61833674,0.77260524,0.1440168,-0.6229896,0.7641108,0.16738744,-0.6255694,0.7563307,0.19138123,-0.37743172,0.8853928,-0.27133915,-0.38432422,0.88853204,-0.25061074,-0.37730992,0.885387,-0.2715273,-0.36915818,0.8822009,-0.29230767,-0.38454694,0.8885434,-0.25022838,-0.39040753,0.89164716,-0.22923203,-0.39050835,0.89165276,-0.22903837,-0.3770661,0.88537544,-0.27190349,-0.36862877,0.8821775,-0.29304564,-0.35901126,0.87893826,-0.313972,-0.34852254,0.8756701,-0.3342663,-0.35915422,0.8789442,-0.3137919,-0.34821615,0.87565804,-0.33461696,-0.33641312,0.87234294,-0.35474494,-0.33624968,0.8723369,-0.35491478,-0.35943973,0.87895614,-0.31343135,-0.38499102,0.8885663,-0.249463,-0.39070964,0.891664,-0.22865093,-0.37767497,0.88540435,-0.2709626,-0.39111096,0.8916866,-0.2278753,-0.3960431,0.8947651,-0.20626508,-0.40367356,0.9037323,-0.1425329,-0.40239426,0.90079606,-0.16323392,-0.40373158,0.9037376,-0.14233476,-0.40225765,0.90078527,-0.16362989,-0.39979914,0.8978016,-0.18469684,-0.39972025,0.89779615,-0.18489404,-0.40384716,0.9037483,-0.1419383,-0.4041799,0.9066581,-0.12087051,-0.4034175,0.9095254,-0.10008915,-0.40338022,0.90952027,-0.100286156,-0.40158817,0.91235006,-0.07965106,-0.398723,0.9151319,-0.05961095,-0.39956236,0.8977851,-0.18528841,-0.35815182,0.87890255,-0.31505165,-0.35843858,0.87891454,-0.314692,-0.34760222,0.87563396,-0.33531752,-0.33592248,0.8723247,-0.35525435,-0.37682194,0.8853638,-0.27227965,-0.33526736,0.87230027,-0.35593253,-0.62454885,0.76812583,0.1411435,-0.6264513,0.76164156,0.16571347,-0.62113285,0.7705656,0.14290746,-0.6273203,0.7550801,0.19058643,-0.37806034,0.8854224,-0.27036554,-0.38514733,0.88857424,-0.24919339,-0.37801751,0.88542044,-0.27043194,-0.36971667,0.8822253,-0.29152727,-0.38522547,0.8885782,-0.24905846,-0.39118165,0.89169055,-0.22773874,-0.391217,0.89169246,-0.2276704,-0.37793186,0.88541645,-0.27056468,-0.36953056,0.8822172,-0.29178753,-0.35994226,0.8789767,-0.31279626,-0.3492772,0.8756993,-0.33340102,-0.3599925,0.8789787,-0.3127327,-0.3491694,0.8756951,-0.33352476,-0.33727568,0.87237465,-0.3538468,-0.3372182,0.87237257,-0.35390675,-0.36009297,0.87898284,-0.3126055,-0.38538158,0.88858604,-0.24878873,-0.3912876,0.89169633,-0.22753383,-0.3781458,0.8854264,-0.27023295,-0.3914287,0.89170414,-0.22726047,-0.39629534,0.89478046,-0.20571312,-0.40388796,0.90375197,-0.14179872,-0.40253863,0.9008073,-0.16281544,-0.40390837,0.9037538,-0.14172888,-0.40249053,0.90080357,-0.16295494,-0.39999348,0.8978149,-0.18421055,-0.39996576,0.897813,-0.18427996,-0.40394914,0.90375745,-0.14158922,-0.40424696,0.9066653,-0.12059168,-0.40345708,0.90953076,-0.09988094,-0.4034439,0.909529,-0.099950366,-0.4016075,0.9123536,-0.07951319,-0.3987292,0.9151337,-0.059542686,-0.39991033,0.8978092,-0.18441893,-0.35964096,0.8789643,-0.31317747,-0.3597414,0.8789685,-0.31305042,-0.34895402,0.8756867,-0.33377215,-0.3371035,0.8723683,-0.35402665,-0.37784624,0.88541245,-0.2706973,-0.33687353,0.8723599,-0.35426614,-0.59456736,0.80173737,-0.060883597,-0.59303993,0.80160856,-0.075678736,-0.59710306,0.80023074,-0.055665877,-0.6004857,0.7988486,-0.03546404,-0.5875671,0.8046075,-0.08585813,-0.58248895,0.8059718,-0.105432905,-0.57951254,0.80745894,-0.110341385,-0.60202485,0.7972023,-0.045106936,-0.6093866,0.79275304,-0.013802307,-0.61507314,0.78826123,0.018146452,-0.61591065,0.7868432,0.03913939,-0.6132273,0.7898073,0.012516548,-0.6190371,0.783727,0.05064725,-0.6200228,0.7807256,0.07771255,-0.6212364,0.77915055,0.08360481,-0.6211453,0.7776383,0.097247675,-0.61827505,0.78379387,0.05833637,-0.6093705,0.7928844,0.0013623881,-0.57606333,0.8105441,-0.10568486,-0.5893492,0.8047354,-0.07119281,-0.5607393,0.8162741,-0.13880956,-0.543496,0.82192487,-0.17044541,-0.5572819,0.81614965,-0.15276353,-0.4939836,0.83425766,-0.24493748,-0.50376356,0.83298665,-0.22881329,-0.48986372,0.8356426,-0.24846521,-0.5116799,0.8301913,-0.22128281,-0.52445984,0.82749593,-0.20048055,-0.52820987,0.8260803,-0.19643226,-0.48154595,0.83839655,-0.2553521,-0.45795065,0.8437251,-0.2800163,-0.4331254,0.8489718,-0.30273628,-0.43761897,0.84763926,-0.29999548,-0.40722135,0.8541361,-0.32345378,-0.38039216,0.8592176,-0.3421213,-0.6249605,0.7788804,0.052627824,-0.624591,0.7774351,0.0740325,-0.6234831,0.7759858,0.09547203,-0.6174341,0.78657717,0.008458912,-0.60674345,0.79415363,-0.034386393,-0.6263421,0.7735309,0.096671976,-0.63000745,0.76313066,0.14395213,-0.4205366,0.8866647,-0.19228813,-0.4230218,0.87959266,-0.21764491,-0.43411607,0.8789302,-0.19754735,-0.44425273,0.87826604,-0.17688483,-0.4493801,0.86345077,-0.22915125,-0.44759807,0.87095743,-0.20270464,-0.4165391,0.89353514,-0.16760097,-0.43940002,0.8853751,-0.1517846,-0.43310148,0.8922829,-0.12749262,-0.4252936,0.8929099,-0.1477745,-0.40686375,0.8941587,-0.18692803,-0.4254238,0.8989879,-0.10409323,-0.41643873,0.9054885,-0.081666015,-0.41080442,0.9060778,-0.10130512,-0.40622258,0.91178334,-0.06028558,-0.4110879,0.9002026,-0.14367354,-0.3934458,0.86624336,-0.30793318,-0.3965897,0.87367713,-0.28178877,-0.39808637,0.8809123,-0.25597018,-0.3843127,0.8815696,-0.27411443,-0.39797363,0.88794726,-0.23057884,-0.36028156,0.86762965,-0.34266022,-0.365833,0.8750269,-0.3170081,-0.342545,0.8683203,-0.35872388,-0.377263,0.86693734,-0.3257181,-0.4239419,0.87232065,-0.2435774,-0.411001,0.8802533,-0.23713338,-0.4232496,0.8648504,-0.26998803,-0.40878808,0.8655477,-0.28934327,-0.43679234,0.8641515,-0.24990945,-0.4457852,0.89102376,-0.08574523,-0.47468245,0.87559265,-0.08952158,-0.465193,0.8827755,-0.06559616,-0.4506204,0.89039165,-0.06437393,-0.45434624,0.88407874,-0.109427124,-0.4399392,0.89165413,-0.10680069,-0.4939732,0.86682725,-0.067830324,-0.47964534,0.87492,-0.066748254,-0.4359317,0.8977663,-0.06308148,-0.42113099,0.9048975,-0.061718695,-0.46729866,0.8695874,-0.15952936,-0.4615406,0.87693274,-0.13404939,-0.45340315,0.8776002,-0.15570313,-0.48953146,0.8606315,-0.1402581,-0.4715561,0.8620445,-0.18577982,-0.4609787,0.86274844,-0.20775898,-0.4810828,0.86133885,-0.16326274,-0.5030975,0.8592118,-0.092994414,-0.48281938,0.86821073,-0.11443587,-0.49687716,0.8599225,-0.11681766,-0.5081725,0.85849947,-0.06884256,-0.46864098,0.87626356,-0.111972265,-0.58539385,0.80684215,-0.07949724,-0.5740981,0.8114691,-0.1092216,-0.5858395,0.80660856,-0.07857951,-0.5958875,0.80169284,-0.046974815,-0.57310677,0.8119308,-0.11098194,-0.55965495,0.8167305,-0.14049071,-0.5591108,0.8169585,-0.14132914,-0.5867262,0.806141,-0.076740324,-0.5974463,0.8007468,-0.04315632,-0.6061725,0.79528683,-0.00858576,-0.61228687,0.79024625,0.02481338,-0.6058433,0.7955264,-0.00957488,-0.6128261,0.7897616,0.02684883,-0.61713,0.78441674,0.06197555,-0.617336,0.7841715,0.0630191,-0.60517967,0.79600513,-0.01154987,-0.57110715,0.81285274,-0.11448636,-0.5580184,0.81741416,-0.14300177,-0.5844981,0.80730885,-0.081328794,-0.55581796,0.8183239,-0.14632978,-0.53874093,0.8237219,-0.17674954,-0.4801212,0.8388272,-0.25661755,-0.4996958,0.8342965,-0.23292355,-0.47940752,0.8390423,-0.25724772,-0.50105566,0.8338604,-0.23155998,-0.51999277,0.8290463,-0.20564479,-0.52063423,0.8288252,-0.20491177,-0.47797754,0.8394722,-0.2585031,-0.45496985,0.8445728,-0.2823105,-0.43080813,0.8495979,-0.30428246,-0.43158114,0.8493893,-0.30376887,-0.4056308,0.85454696,-0.32436576,-0.37957847,0.8594197,-0.34251708,-0.52191377,0.8283826,-0.20344105,-0.6081121,0.79384685,-0.00262935,-0.6074724,0.7943273,-0.004618976,-0.6138831,0.78879076,0.030930774,-0.61774224,0.78368074,0.065108374,-0.58760667,0.805673,-0.07489618,-0.6185324,0.7826976,0.069296815,-0.48267788,0.8604825,-0.16307034,-0.4763625,0.85947436,-0.1854256,-0.48347494,0.8600535,-0.1629724,-0.47476116,0.8603335,-0.18554822,-0.46660045,0.85975486,-0.20761883,-0.46579766,0.8601844,-0.20764226,-0.4558062,0.8600352,-0.22930379,-0.4850684,0.8591935,-0.16277319,-0.49269664,0.85891247,-0.13971196,-0.4992279,0.85863113,-0.11629316,-0.49844468,0.8590622,-0.116469085,-0.50464547,0.85834956,-0.09256899,-0.50893503,0.8580677,-0.06859249,-0.46419197,0.8610415,-0.20768578,-0.411164,0.8642805,-0.28976429,-0.4103718,0.8647036,-0.28962505,-0.3965832,0.8645566,-0.30864814,-0.42484507,0.8640042,-0.2701913,-0.43759394,0.8637276,-0.24997218,-0.3618076,0.8667915,-0.3431731,-0.3780375,0.86651754,-0.32593712,-0.34329447,0.8679025,-0.3590183,-0.37958696,0.8656762,-0.3263716,-0.42803645,0.86230445,-0.27058414,-0.43919712,0.8628782,-0.2500942,-0.4127484,0.8634327,-0.29003927,-0.44240314,0.86117196,-0.25032437,-0.50391954,0.85603195,-0.11521458,-0.5023571,0.85690075,-0.11557848,-0.49901193,0.85544515,-0.13856627,-0.50773656,0.85661757,-0.09170527,-0.510459,0.8572021,-0.06808923,-0.47956276,0.85774875,-0.18516669,-0.4866609,0.85833114,-0.16256951,-0.4682054,0.8588941,-0.20756851,-0.48984268,0.8565991,-0.16214858,-0.51389855,0.85312456,-0.08992627,-0.51350117,0.8554637,-0.06707004,-0.50703996,0.854287,-0.11447366,-0.51956254,0.85195786,-0.06498118,-0.5442663,0.82732415,-0.13895655,-0.5205221,0.84469986,-0.12465495,-0.53035,0.834362,-0.15022975,-0.547149,0.8308927,-0.10121902,-0.5350849,0.84133047,-0.07646704,-0.5474217,0.83442736,-0.06372133,-0.5406843,0.83963335,-0.051733468,-0.52835554,0.8430193,-0.100791425,-0.501659,0.84803605,-0.1708013,-0.5203031,0.8360843,-0.17391877,-0.51161313,0.84637207,-0.1480077,-0.5092009,0.8377985,-0.19699807,-0.4906926,0.84969175,-0.19298904,-0.47874874,0.85133904,-0.21452616,-0.45207787,0.85460865,-0.25547925,-0.46809047,0.8479732,-0.24866185,-0.46586427,0.85297805,-0.23536992,-0.43743002,0.85623085,-0.27481574,-0.42196277,0.85784465,-0.29334265,-0.40571988,0.8594501,-0.31102562,-0.3887462,0.861047,-0.32783288,-0.37108812,0.8626356,-0.34373453,-0.57233816,0.81655395,-0.075290136,-0.55936277,0.8273908,-0.05037587,-0.57088333,0.8202219,-0.036444876,-0.58433014,0.8091881,-0.061423488,-0.5720612,0.81470746,-0.094856046,-0.6026836,0.7979328,0.008703006,-0.58989185,0.80737895,0.012919298,-0.59256697,0.80549175,-0.0068886755,-0.59456813,0.8035964,-0.02686114,-0.6085929,0.79219794,0.045134064,-0.56916463,0.8220434,-0.01721148,-0.58195925,0.8129218,-0.021943722,-0.49282324,0.855047,-0.16130705,-0.4886088,0.8530864,-0.18304382,-0.49431178,0.85426795,-0.160879,-0.4855971,0.85464823,-0.18377118,-0.47886705,0.85346806,-0.20561756,-0.47734597,0.854249,-0.20591122,-0.4680845,0.85384923,-0.22768037,-0.49728546,0.8527043,-0.16000819,-0.504875,0.85232174,-0.136561,-0.511358,0.8519387,-0.11275364,-0.50992024,0.8527234,-0.113331705,-0.51671743,0.8515552,-0.08863834,-0.52093863,0.85117126,-0.06426819,-0.47430187,0.85580504,-0.20648362,-0.4173859,0.86115336,-0.29017904,-0.4158396,0.8619151,-0.29013747,-0.40274882,0.86152524,-0.3091403,-0.4311294,0.86078113,-0.27052417,-0.44394645,0.8604084,-0.25021774,-0.36484542,0.86529136,-0.34374222,-0.3811184,0.8649242,-0.32658064,-0.3447959,0.86715627,-0.35938254,-0.38418385,0.8634143,-0.326984,-0.43731675,0.8577111,-0.2703437,-0.44703287,0.85887533,-0.24998955,-0.42047948,0.85962415,-0.29024708,-0.45320347,0.85578614,-0.24947283,-0.5199489,0.8471905,-0.10918538,-0.5170921,0.8487809,-0.11039373,-0.5165312,0.8459829,-0.13231924,-0.5223323,0.8483937,-0.0860063,-0.5236842,0.8495925,-0.062828235,-0.49462038,0.84993976,-0.18152978,-0.5002541,0.851133,-0.15911774,-0.48190704,0.8519004,-0.20501536,-0.5061768,0.84796727,-0.15727855,-0.5334678,0.84197897,-0.08052022,-0.52914995,0.8464119,-0.059893843,-0.5256412,0.84398687,-0.10671218,-0.539975,0.8399593,-0.05380832,-0.4432808,0.8564738,-0.26448962,-0.43438944,0.8568506,-0.27769196,-0.4462332,0.8558534,-0.2615166,-0.4560545,0.8551643,-0.24639067,-0.45747203,0.8548529,-0.24483845,-0.42979366,0.8577779,-0.2819477,-0.41562462,0.85907644,-0.298737,-0.40080613,0.8603695,-0.31483123,-0.40244794,0.8600634,-0.31357083,-0.38537166,0.8616571,-0.33020568,-0.36935562,0.8629391,-0.34483704,-0.508372,0.8473301,-0.15358894,-0.5094593,0.8470111,-0.15173477,-0.49933898,0.84867185,-0.17440365,-0.48945606,0.8500082,-0.19472758,-0.5274583,0.8433421,-0.102770545,-0.37858137,0.86287344,-0.3348516,-0.18628459,0.98024386,-0.06648309,-0.18514217,0.9804446,-0.06671357,-0.18454471,0.98054093,-0.066953175,-0.18389297,0.98062986,-0.06744263,-0.18273883,0.9808079,-0.067988336,-0.18246938,0.98081183,-0.068651415,-0.18252045,0.98073435,-0.06961599,-0.1827097,0.98064333,-0.07039735,-0.18332802,0.9804228,-0.07184674,-0.18382746,0.9802823,-0.07248522,-0.18404071,0.98018384,-0.0732714,-0.18381356,0.9800907,-0.07506537,-0.18400696,0.979924,-0.076748565,-0.18423706,0.97980917,-0.077657565,-0.18475492,0.9796047,-0.07899511,-0.18544622,0.9794092,-0.079795524,-0.18572007,0.9793443,-0.07995518,-0.18638982,0.9792154,-0.07997555,-0.186682,0.9791654,-0.07990602,-0.18677822,0.97919774,-0.07928226,-0.18661754,0.97936946,-0.07752023,-0.18680058,0.979456,-0.07597056,-0.18860859,0.97916245,-0.075284265,-0.18905638,0.9791332,-0.07453793,-0.18896219,0.979178,-0.07418687,-0.18835215,0.97935206,-0.07343728,-0.18820532,0.9794615,-0.07234613,-0.18916406,0.9793017,-0.07200798,-0.18945555,0.9792608,-0.071797475,-0.1901268,0.979205,-0.07077689,-0.19022898,0.9792164,-0.070343144,-0.19016507,0.9793034,-0.06929666,-0.1908473,0.9792361,-0.068366244,-0.19090979,0.9792808,-0.06754647,-0.19069356,0.97935236,-0.06711836,-0.19022267,0.97946507,-0.066809274,-0.18959945,0.9796049,-0.06653068,-0.18882507,0.9797713,-0.06628156,-0.18820709,0.9798999,-0.066138685,-0.18688695,0.9801578,-0.06606007,-0.18659791,0.98021066,-0.06609299,-0.18633541,0.9802479,-0.06628092,-0.18781033,0.97949207,-0.07295622,-0.18772763,0.97952706,-0.07269864,-0.19452123,0.9784342,-0.06948358,-0.19314705,0.9785206,-0.07205362,-0.19291231,0.9784967,-0.07300073,-0.1929806,0.97843915,-0.07358889,-0.19242948,0.9784663,-0.074663945,-0.19224846,0.9781722,-0.07886485,-0.19262339,0.9778532,-0.08184962,-0.19249277,0.9778284,-0.08245105,-0.19259079,0.9777961,-0.082604945,-0.19319393,0.9776369,-0.08307991,-0.19355676,0.97754717,-0.083290465,-0.19391035,0.97746396,-0.08344459,-0.19447061,0.9773362,-0.08363678,-0.19553213,0.9771136,-0.08376276,-0.19621995,0.976958,-0.08396936,-0.19697641,0.97679436,-0.08410151,-0.19718833,0.9767379,-0.08426015,-0.19739152,0.97667134,-0.08455573,-0.19766879,0.9765979,-0.08475586,-0.19801997,0.97651774,-0.084859684,-0.19851601,0.9764102,-0.08493793,-0.1989973,0.97633654,-0.08465814,-0.19973643,0.9762013,-0.0844773,-0.20064089,0.97608286,-0.08369876,-0.20228839,0.97577995,-0.083264336,-0.20289333,0.9757021,-0.082702234,-0.20320901,0.9757038,-0.08190361,-0.2028913,0.97602516,-0.0788032,-0.20304474,0.9760428,-0.07818745,-0.20338514,0.97601557,-0.07764082,-0.20335247,0.9760912,-0.076770976,-0.20305216,0.9762606,-0.07539961,-0.20273708,0.9763885,-0.07458664,-0.20205207,0.9765677,-0.074098356,-0.20123956,0.97676474,-0.07371052,-0.19978371,0.9771035,-0.073179975,-0.19933759,0.9772029,-0.073068954,-0.19898048,0.977279,-0.07302426,-0.19870882,0.977331,-0.07306812,-0.19842723,0.9773656,-0.0733697,-0.19795337,0.9773474,-0.07487688,-0.19670287,0.97762644,-0.074528456,-0.19664875,0.9778009,-0.07235074,-0.19633879,0.97799283,-0.07057708,-0.1957789,0.9781451,-0.07001958,-0.19492754,0.9783534,-0.06948359,-0.19463536,0.97841805,-0.06939179,-0.19257869,0.9779352,-0.08097059,-0.197486,0.9774276,-0.075063735,-0.1969217,0.9775416,-0.075061746,-0.19715314,0.9774909,-0.075114176,-0.19809647,0.9756278,-0.09438359,-0.19737306,0.97577673,-0.09435901,-0.19512409,0.9761471,-0.095202126,-0.19394262,0.97635645,-0.095469,-0.19327646,0.9764575,-0.09578607,-0.19295424,0.9764755,-0.0962511,-0.19269204,0.9764049,-0.09748483,-0.19288109,0.97631055,-0.0980539,-0.19331002,0.9761641,-0.09866534,-0.19354488,0.9761029,-0.09881081,-0.19383173,0.976038,-0.098889165,-0.1950422,0.9757202,-0.09964231,-0.1947024,0.97576743,-0.09984435,-0.19503981,0.975655,-0.10028326,-0.19488734,0.9756012,-0.10110029,-0.19288254,0.9758451,-0.102579825,-0.19212769,0.9756599,-0.10571053,-0.1920383,0.975554,-0.106844045,-0.19255665,0.9753064,-0.10816374,-0.19317801,0.9750599,-0.10927185,-0.19405396,0.97465926,-0.11127589,-0.19542773,0.9740998,-0.11374324,-0.19560057,0.97399414,-0.11434986,-0.19576654,0.97392416,-0.114661165,-0.19688284,0.9735518,-0.11590509,-0.19732052,0.97314453,-0.118550904,-0.19755076,0.97302103,-0.11917964,-0.19789878,0.97286546,-0.1198702,-0.19958746,0.97218,-0.1226005,-0.19964835,0.9721309,-0.122890644,-0.19859572,0.97196597,-0.12586442,-0.19862838,0.9719203,-0.12616546,-0.19894384,0.9717685,-0.12683587,-0.20016728,0.9712494,-0.12887065,-0.20082773,0.9709875,-0.12981328,-0.20120005,0.97086185,-0.130176,-0.20165175,0.97093815,-0.12890165,-0.20178434,0.97088516,-0.12909351,-0.20205529,0.97080624,-0.1292627,-0.2032392,0.9704588,-0.13001375,-0.20326091,0.9704265,-0.13022058,-0.20358606,0.97033405,-0.13040145,-0.20421314,0.9701816,-0.13055515,-0.20466045,0.9700881,-0.13054916,-0.20505756,0.9700598,-0.13013592,-0.20505634,0.9701258,-0.12964492,-0.2055493,0.97038144,-0.12692273,-0.20670418,0.97021586,-0.12631136,-0.20700076,0.9701985,-0.12595826,-0.2071381,0.9702268,-0.12551394,-0.20703152,0.9703812,-0.124491945,-0.20600288,0.9708592,-0.12245498,-0.2076565,0.97043926,-0.12298959,-0.20818806,0.9703314,-0.12294203,-0.20902498,0.9701196,-0.123193055,-0.2104311,0.96974504,-0.123747155,-0.2111877,0.96955496,-0.12394713,-0.21129453,0.96955127,-0.12379419,-0.2113378,0.9696674,-0.122806765,-0.21176563,0.96969676,-0.12183405,-0.21131155,0.96993756,-0.12070021,-0.21100433,0.97006726,-0.12019441,-0.21056046,0.9702305,-0.1196537,-0.21074215,0.97022045,-0.11941554,-0.21054476,0.970284,-0.11924726,-0.21005125,0.97042465,-0.118972704,-0.20968778,0.9705151,-0.11887588,-0.20832652,0.97079074,-0.11901849,-0.20796005,0.9709537,-0.11832815,-0.20747882,0.97109216,-0.11803613,-0.20585637,0.971633,-0.11641489,-0.20660298,0.9714473,-0.11664197,-0.20755753,0.97122484,-0.116799615,-0.20872031,0.9709653,-0.1168855,-0.2093731,0.9708275,-0.11686226,-0.20958753,0.9708173,-0.11656254,-0.20945546,0.97090435,-0.116074115,-0.20919532,0.97099954,-0.11574637,-0.20806752,0.97137445,-0.114627965,-0.20786004,0.9714544,-0.11432673,-0.20733804,0.9716922,-0.113248214,-0.20691088,0.9718207,-0.11292634,-0.20610353,0.9720329,-0.11257622,-0.20510942,0.9722221,-0.11275779,-0.20432326,0.97247404,-0.11200996,-0.20463689,0.9724725,-0.11144975,-0.20451097,0.97256255,-0.11089334,-0.2039764,0.9727273,-0.11043229,-0.20290865,0.9730273,-0.10975409,-0.20183264,0.9734212,-0.10823437,-0.20189303,0.97346866,-0.107694075,-0.20176814,0.97359914,-0.10674424,-0.20297348,0.97331494,-0.107050285,-0.20401531,0.97299016,-0.10801834,-0.20507644,0.9726707,-0.10888239,-0.20615947,0.9723564,-0.10964197,-0.20688234,0.97215164,-0.11009496,-0.20754473,0.9719848,-0.110320814,-0.20875056,0.9717341,-0.11025455,-0.2093813,0.9716183,-0.11007882,-0.21050316,0.97143614,-0.10954545,-0.21078275,0.97143555,-0.1090118,-0.21086255,0.97147274,-0.10852499,-0.21076494,0.97154087,-0.10810421,-0.2104908,0.9716397,-0.10774956,-0.20983668,0.97185045,-0.10712242,-0.20941132,0.9719754,-0.10682089,-0.20844412,0.97224385,-0.106268466,-0.20802931,0.972354,-0.10607305,-0.20752506,0.9724985,-0.10573572,-0.20780486,0.97268337,-0.103461094,-0.20773241,0.9728207,-0.10230919,-0.20734219,0.9729919,-0.10146922,-0.20699394,0.9731263,-0.10088976,-0.2066895,0.97322416,-0.10056946,-0.20631139,0.9733241,-0.100377865,-0.20544845,0.9735172,-0.10027588,-0.203697,0.9738743,-0.10038148,-0.20324421,0.97404796,-0.099611245,-0.20373453,0.9740094,-0.0989848,-0.20344259,0.97413045,-0.09839208,-0.20290121,0.9742491,-0.098334715,-0.20160078,0.9744876,-0.09864584,-0.1990954,0.97506505,-0.09802629,-0.19874795,0.9754036,-0.09532614,-0.19853978,0.9755044,-0.09472686,-0.1983463,0.9755677,-0.09447977,-0.19479622,0.97591007,-0.09825473,-0.19555536,0.9756861,-0.09896878,-0.1951935,0.9755858,-0.10065673,-0.19663887,0.97364444,-0.11554086,-0.20129932,0.97097754,-0.12915578,-0.20253599,0.9707052,-0.1292693,-0.20278025,0.97063476,-0.12941547,-0.2066554,0.9713159,-0.11763897,-0.2031565,0.9740375,-0.09989164,-0.20014,0.9747677,-0.0988534,-0.20151117,0.9709761,-0.12883574,-0.20486674,0.97044235,-0.12755902,-0.20612611,0.9714659,-0.11732888,-0.20439348,0.9724228,-0.112326324,-0.2052089,0.9709818,-0.12281547,-0.20861803,0.9707163,-0.11911525,-0.20549077,0.9717154,-0.11637348,-0.20473957,0.97231215,-0.11265314,-0.2024059,0.9731828,-0.10930294,-0.20226756,0.97351617,-0.10655546,-0.2032511,0.97398156,-0.10024438,-0.19518216,0.9758403,-0.09818184,-0.2013636,0.97099876,-0.12889591,-0.2047714,0.97037256,-0.1282409,-0.20544189,0.9709938,-0.12232988,-0.20200408,0.9733259,-0.108770646,-0.1955317,0.97571295,-0.09875006,-0.20503971,0.97106206,-0.12246304,-0.20189987,0.97359526,-0.10653044,-0.19952513,0.9749054,-0.09873802,-0.20516351,0.971048,-0.122366965,-0.20557861,0.9716586,-0.11669176,-0.22720145,0.9709427,-0.075165264,-0.22662805,0.9711345,-0.07441478,-0.22616099,0.97127336,-0.07402214,-0.22451344,0.9716733,-0.07378829,-0.22332576,0.9719267,-0.07405456,-0.22220147,0.9721542,-0.07444908,-0.22128153,0.97238266,-0.074205674,-0.22072025,0.9725177,-0.074107006,-0.21914963,0.97289604,-0.07380232,-0.2184635,0.9730996,-0.07314966,-0.21805704,0.973212,-0.07286685,-0.21759789,0.9733296,-0.07266786,-0.21729825,0.973396,-0.07267486,-0.21715793,0.97341144,-0.07288728,-0.21578746,0.9736631,-0.07359304,-0.21559174,0.97362614,-0.074647926,-0.21575204,0.973547,-0.075215295,-0.21610893,0.9734191,-0.07584342,-0.21698138,0.9731453,-0.076858565,-0.21919765,0.972461,-0.07919635,-0.21963555,0.9723078,-0.07986089,-0.22030951,0.9720307,-0.081363924,-0.22056489,0.97195035,-0.08163089,-0.22100368,0.9718352,-0.08181513,-0.22162537,0.9716852,-0.08191517,-0.22210282,0.9715753,-0.08192493,-0.22243766,0.9715055,-0.08184456,-0.22391804,0.97122854,-0.08109173,-0.2243593,0.9711861,-0.08037714,-0.22777031,0.9703853,-0.08045483,-0.22864844,0.96999544,-0.082636476,-0.22980712,0.96971464,-0.08271773,-0.23651218,0.968176,-0.08183672,-0.23371021,0.9683889,-0.08719186,-0.2332362,0.9684072,-0.08825165,-0.23038334,0.9689142,-0.09015991,-0.2289056,0.9692831,-0.089958146,-0.22804922,0.9694911,-0.08989183,-0.22781302,0.96954,-0.08996363,-0.22740394,0.96958256,-0.09053813,-0.22632775,0.969729,-0.091659166,-0.22591743,0.96991765,-0.09066997,-0.22547242,0.9700389,-0.09048045,-0.22264816,0.9705984,-0.091468535,-0.22003335,0.9711414,-0.09203116,-0.21890901,0.97132,-0.09282428,-0.21839142,0.9713743,-0.093473166,-0.21822266,0.9713356,-0.09426605,-0.21540682,0.9717532,-0.09641384,-0.21468359,0.971944,-0.09610356,-0.21422581,0.9720539,-0.096013024,-0.21369168,0.9721718,-0.09600971,-0.21315429,0.97226715,-0.096238256,-0.21234034,0.97237706,-0.09692472,-0.21188505,0.9723932,-0.0977559,-0.21161501,0.9723596,-0.0986709,-0.21151927,0.9721147,-0.10125531,-0.21227907,0.97181594,-0.10252512,-0.2127284,0.9716723,-0.10295413,-0.21323681,0.97153175,-0.10322848,-0.21364757,0.97142506,-0.10338327,-0.21396,0.9713526,-0.10341788,-0.21439245,0.9712999,-0.10301638,-0.21505436,0.97106856,-0.10381442,-0.21425843,0.9711414,-0.10477469,-0.21409267,0.9711111,-0.10539244,-0.21441834,0.9708974,-0.10669134,-0.21488091,0.97069883,-0.10756355,-0.2151805,0.9706062,-0.10780027,-0.21615544,0.9703668,-0.10800517,-0.2164804,0.97026,-0.10831303,-0.21683541,0.9701163,-0.1088888,-0.21728274,0.96999645,-0.109064795,-0.21826722,0.9698321,-0.1085589,-0.2186136,0.9697914,-0.1082255,-0.2208225,0.96962196,-0.10521748,-0.22016591,0.9696188,-0.10661294,-0.21962014,0.96948045,-0.108970925,-0.21938288,0.9693236,-0.1108286,-0.21944156,0.96921265,-0.11167919,-0.21972497,0.969095,-0.11214184,-0.22058609,0.9687776,-0.11318884,-0.22105403,0.9686575,-0.11330382,-0.22151189,0.9685897,-0.11298867,-0.22292674,0.96851957,-0.11078611,-0.22335406,0.9686122,-0.10910275,-0.22488926,0.9680731,-0.11072139,-0.22360015,0.9680624,-0.11339358,-0.22318949,0.9680295,-0.11447841,-0.22318493,0.9679705,-0.11498532,-0.2232862,0.96789515,-0.11542209,-0.22349359,0.9678036,-0.1157877,-0.22420885,0.96751875,-0.116781056,-0.22471984,0.96733,-0.117361255,-0.22499971,0.9672347,-0.11761067,-0.22530478,0.96714216,-0.11778696,-0.22594981,0.96697193,-0.11794917,-0.22652142,0.96684057,-0.117929414,-0.228254,0.96662736,-0.11632545,-0.22865473,0.96660686,-0.11570734,-0.22908103,0.96669745,-0.11409619,-0.23171297,0.96611327,-0.11372885,-0.23364359,0.9657816,-0.11259002,-0.23364139,0.96580905,-0.112359434,-0.23324847,0.965969,-0.11179892,-0.23349173,0.96614605,-0.10974265,-0.23417962,0.9659686,-0.10983891,-0.23464692,0.96585935,-0.10980205,-0.23489529,0.9658181,-0.10963387,-0.23484166,0.9659247,-0.108806565,-0.23425655,0.9663217,-0.10651875,-0.23361845,0.96655965,-0.10575828,-0.23314942,0.96669525,-0.1055541,-0.23154764,0.9670815,-0.10554165,-0.23132989,0.9671842,-0.10507712,-0.23207338,0.9670457,-0.10471181,-0.23244672,0.96699923,-0.10431191,-0.23172976,0.96722883,-0.10377745,-0.23026001,0.9676756,-0.10287927,-0.22984111,0.9678413,-0.10225558,-0.23060869,0.96765715,-0.10227049,-0.230873,0.967601,-0.10220527,-0.23120888,0.9676946,-0.10054699,-0.23191617,0.9673639,-0.10208802,-0.23221537,0.96725154,-0.10247191,-0.23271014,0.96708757,-0.102896184,-0.23339882,0.9668721,-0.10336007,-0.2338019,0.96676874,-0.103416115,-0.23471081,0.96650827,-0.10379088,-0.23499638,0.96643084,-0.10386615,-0.2355253,0.9663035,-0.10385265,-0.23591053,0.966235,-0.103615284,-0.23619659,0.96634585,-0.10191614,-0.23665586,0.9664111,-0.10021746,-0.23662469,0.96646845,-0.099736825,-0.23644824,0.9665472,-0.0993918,-0.23585297,0.9667661,-0.098674566,-0.23603854,0.9668234,-0.09766456,-0.23745151,0.9665271,-0.09717067,-0.23753384,0.9665236,-0.09700426,-0.23774505,0.9665662,-0.09605757,-0.23773965,0.96667236,-0.09499697,-0.23797873,0.9666796,-0.09432264,-0.23785338,0.96678376,-0.09356792,-0.2400416,0.96592754,-0.09676758,-0.23949279,0.9659699,-0.09770021,-0.23892148,0.96590066,-0.09976195,-0.238912,0.9658154,-0.10060599,-0.23959799,0.9653602,-0.103307754,-0.23958296,0.9650739,-0.105982974,-0.2397954,0.9648612,-0.10742878,-0.2402392,0.96462685,-0.10853626,-0.24079567,0.96442306,-0.109113,-0.24202257,0.96411556,-0.10911602,-0.24267027,0.9639735,-0.10893184,-0.24461278,0.96357894,-0.10807491,-0.24547689,0.96341103,-0.10761163,-0.24612565,0.9633036,-0.10709032,-0.24748155,0.9631715,-0.10513581,-0.24815324,0.9632416,-0.10288656,-0.24821982,0.96363956,-0.09892278,-0.24767005,0.9640266,-0.09650053,-0.24740753,0.96427464,-0.094678015,-0.24695183,0.9645007,-0.09355832,-0.24546877,0.96519923,-0.09019712,-0.24583142,0.9653942,-0.08706854,-0.24455026,0.96597236,-0.084217526,-0.2450915,0.9659563,-0.082817145,-0.24521023,0.9658894,-0.083243944,-0.24595486,0.96574295,-0.08274519,-0.24632433,0.965687,-0.08229831,-0.24657004,0.9656662,-0.08180524,-0.24660335,0.96570826,-0.08120598,-0.24633539,0.9658647,-0.08015158,-0.24640077,0.96592605,-0.07920585,-0.2476613,0.9657093,-0.077906355,-0.24847977,0.96559596,-0.076696,-0.24859382,0.9656006,-0.07626668,-0.24852711,0.9656547,-0.07579805,-0.24779809,0.9659955,-0.07381639,-0.24722795,0.96632874,-0.071324214,-0.24669588,0.96651727,-0.0706083,-0.24585554,0.9667857,-0.06986031,-0.24245875,0.96776414,-0.06816411,-0.24104205,0.9681536,-0.067655884,-0.23909526,0.9687235,-0.066394545,-0.23800057,0.9690254,-0.06592041,-0.23729356,0.96921223,-0.065722175,-0.23499815,0.96978974,-0.06545034,-0.23414783,0.96999913,-0.065394826,-0.23386404,0.9700646,-0.06543976,-0.2334214,0.9701562,-0.06566161,-0.23251446,0.97033364,-0.066254705,-0.23110656,0.970549,-0.06800338,-0.23106416,0.9705192,-0.06856987,-0.23136123,0.9703958,-0.06931048,-0.23200236,0.9701886,-0.07006375,-0.23232584,0.97009087,-0.07034535,-0.23265374,0.9699998,-0.07051736,-0.23363976,0.9697546,-0.0706293,-0.23421374,0.9696232,-0.07053213,-0.23480795,0.96948797,-0.07041501,-0.23500834,0.96937007,-0.071363814,-0.23565455,0.969195,-0.071609825,-0.23664457,0.96892786,-0.07195914,-0.2350604,0.96933,-0.07173486,-0.23379081,0.9696395,-0.07170191,-0.2334657,0.9697153,-0.071736105,-0.2331476,0.9697808,-0.07188457,-0.23283641,0.96983606,-0.07214711,-0.23233764,0.9699,-0.07289153,-0.23226848,0.969877,-0.07341638,-0.23244071,0.96977663,-0.07419287,-0.23270294,0.9696146,-0.075476915,-0.23136176,0.97004306,-0.07408252,-0.23114465,0.97010803,-0.07390921,-0.23086135,0.97018594,-0.07377179,-0.23051359,0.97027636,-0.07367041,-0.22980146,0.9704446,-0.073678784,-0.22934294,0.9705389,-0.07386493,-0.22900625,0.9705705,-0.07449151,-0.22898965,0.97052455,-0.0751388,-0.21982135,0.9727221,-0.07409611,-0.23363604,0.9690113,-0.08019553,-0.23318149,0.9683524,-0.08899484,-0.21596526,0.97118205,-0.10081901,-0.21977489,0.96985,-0.1053091,-0.22354567,0.96904075,-0.104820505,-0.23081896,0.9677624,-0.100789376,-0.23723726,0.96709234,-0.09192871,-0.24554594,0.9650804,-0.09125292,-0.24488047,0.96603096,-0.082569845,-0.23650056,0.9689694,-0.07187331,-0.22771782,0.97078234,-0.07567169,-0.21946055,0.9728104,-0.07400658,-0.22747219,0.970475,-0.08021608,-0.2329018,0.9683594,-0.08964843,-0.23154359,0.9686374,-0.09016189,-0.22657162,0.969648,-0.091913275,-0.21810304,0.97116274,-0.0963017,-0.21570852,0.97167796,-0.09649771,-0.21681207,0.970993,-0.10082212,-0.23261246,0.9661777,-0.111319795,-0.2324845,0.9663831,-0.109793834,-0.23126104,0.9671591,-0.105459094,-0.23116583,0.967203,-0.10526461,-0.22971848,0.9678598,-0.10235656,-0.23566735,0.96684426,-0.09835179,-0.23565333,0.9668754,-0.09807887,-0.24024768,0.9659514,-0.096015505,-0.24392971,0.96621835,-0.08318917,-0.22817874,0.9706538,-0.07593219,-0.2270156,0.9705982,-0.080018766,-0.22724022,0.9695546,-0.09124585,-0.21699423,0.9710201,-0.100167125,-0.2209826,0.9697315,-0.10386282,-0.22499882,0.9681169,-0.11011455,-0.23230572,0.96628946,-0.11098988,-0.22992064,0.96778345,-0.1026242,-0.23097081,0.96778,-0.10027126,-0.24613062,0.96479964,-0.09263581,-0.24456106,0.9661078,-0.08261771,-0.2333755,0.9694545,-0.07545709,-0.23319681,0.96946585,-0.07586341,-0.22234856,0.97212046,-0.074450724,-0.22640033,0.97075474,-0.07986307,-0.23238662,0.96845376,-0.089965545,-0.22681722,0.96959174,-0.091901265,-0.21625207,0.97155213,-0.09654784,-0.23206416,0.9663945,-0.110579945,-0.23218356,0.9664361,-0.109964035,-0.24022108,0.96601355,-0.09545522,-0.24582526,0.9649266,-0.09212263,-0.234667,0.9695268,-0.0703503,-0.2334256,0.96942943,-0.07562426,-0.22877829,0.9705365,-0.07562744,-0.22575377,0.9709035,-0.07988516,-0.21758918,0.97125554,-0.096528105,-0.22086166,0.96985644,-0.10294963,-0.22449452,0.96866155,-0.10628759,-0.23202336,0.9664433,-0.110238254,-0.23993194,0.96617657,-0.09452751,-0.2285018,0.97057605,-0.07595404,-0.22433779,0.96875036,-0.10580785,-0.2237194,0.96899426,-0.10487991,-0.22392696,0.96892303,-0.10509453,-0.23744306,0.9670739,-0.0915905,-0.23920086,0.96650046,-0.09305839,-0.21647398,0.9711129,-0.10039285,-0.2384283,0.966802,-0.091901,-0.23800415,0.9669426,-0.091520905,-0.23406065,0.96890676,-0.08022,-0.23489755,0.96868753,-0.08042117,-0.23547265,0.96852654,-0.08067816,-0.23614599,0.96833,-0.08106809,-0.23649237,0.9682131,-0.081454076,-0.271728,0.95437527,-0.123821266,-0.2704771,0.9549633,-0.12201326,-0.2696913,0.95530456,-0.12107783,-0.26898482,0.9555926,-0.120374426,-0.26835892,0.9558281,-0.11990085,-0.26762235,0.95609045,-0.11945414,-0.26677647,0.95637923,-0.11903406,-0.26590514,0.9566663,-0.11867625,-0.26414838,0.9572199,-0.11813418,-0.263314,0.9574743,-0.117935285,-0.2626416,0.957671,-0.11783731,-0.26212776,0.9578114,-0.11784007,-0.26142943,0.9579764,-0.118050374,-0.26009443,0.95818615,-0.11929056,-0.26055932,0.95738745,-0.12457192,-0.26066643,0.95658463,-0.1303798,-0.26117566,0.95609695,-0.13291304,-0.26117814,0.95586693,-0.13455273,-0.2617131,0.95543873,-0.13653955,-0.26322857,0.9544114,-0.14074649,-0.26408276,0.9538946,-0.14263724,-0.26477638,0.9535725,-0.14350219,-0.26537004,0.95333666,-0.14397204,-0.2658685,0.9531865,-0.14404637,-0.2664491,0.9530297,-0.14401129,-0.26890403,0.9521586,-0.1452058,-0.26889575,0.95195574,-0.14654487,-0.27062693,0.9509785,-0.14966924,-0.27078086,0.9509066,-0.14984813,-0.27157542,0.9505867,-0.15043868,-0.27314696,0.94998854,-0.15136889,-0.27372512,0.949777,-0.15165152,-0.27429095,0.94959927,-0.15174234,-0.2751649,0.9493529,-0.15170127,-0.27646625,0.94914573,-0.15062797,-0.27715275,0.9490958,-0.14967804,-0.27958858,0.9486601,-0.14789976,-0.27940124,0.94846606,-0.14948943,-0.2800523,0.9481412,-0.1503293,-0.28032708,0.9480412,-0.15044788,-0.28060704,0.94796824,-0.1503857,-0.28190804,0.94772434,-0.14948724,-0.28248072,0.9477165,-0.14845249,-0.28282923,0.947961,-0.14621107,-0.28409544,0.9480141,-0.14338422,-0.28549498,0.9485802,-0.13670467,-0.28697225,0.9481342,-0.13670588,-0.2860569,0.9482411,-0.13787745,-0.28569633,0.94815344,-0.13922167,-0.28576437,0.9480702,-0.139648,-0.2862248,0.9478969,-0.13988148,-0.28714556,0.9475548,-0.14031143,-0.2867252,0.94754094,-0.14126176,-0.2865608,0.9474226,-0.14238428,-0.28615707,0.9467174,-0.147785,-0.2856404,0.9464153,-0.15069066,-0.28567177,0.94628114,-0.15147154,-0.28623396,0.94571567,-0.15392202,-0.2865131,0.94551885,-0.15461044,-0.28691772,0.945335,-0.15498382,-0.2883748,0.9448822,-0.15504056,-0.29396614,0.94339377,-0.15359728,-0.29592365,0.9432439,-0.15073207,-0.2977259,0.9433177,-0.14666633,-0.29846326,0.9431686,-0.14612578,-0.29877055,0.94314307,-0.14566147,-0.30025586,0.94322944,-0.14200228,-0.30110976,0.94334656,-0.13939203,-0.3013984,0.94346726,-0.13794404,-0.30152887,0.94365805,-0.13634448,-0.3017792,0.9436524,-0.1358287,-0.30207685,0.943779,-0.13427894,-0.31343728,0.941311,-0.12526248,-0.31250107,0.9413268,-0.12746347,-0.31264868,0.94120365,-0.12800968,-0.31225753,0.9410299,-0.13022263,-0.3103577,0.9412575,-0.13308835,-0.30920336,0.941292,-0.13550897,-0.3084284,0.94136184,-0.13678357,-0.307439,0.94151443,-0.13795575,-0.3063319,0.94154376,-0.14020014,-0.30481908,0.941218,-0.14558132,-0.30337262,0.94073313,-0.15161188,-0.30291218,0.94028896,-0.15524456,-0.30295008,0.9402434,-0.15544626,-0.30342224,0.94001484,-0.15590708,-0.30437222,0.9396393,-0.15631892,-0.30597034,0.9390231,-0.1569008,-0.30695128,0.9386489,-0.15722343,-0.30731598,0.9385186,-0.15728864,-0.30885902,0.9380063,-0.15732242,-0.31293797,0.9367456,-0.15677238,-0.31377017,0.936444,-0.15691076,-0.31428394,0.93626535,-0.15694839,-0.3144785,0.9362106,-0.15688556,-0.31688112,0.93567306,-0.15524918,-0.31802437,0.935466,-0.15415516,-0.3189777,0.93533885,-0.15295249,-0.3204621,0.9352263,-0.15051827,-0.3215413,0.93527585,-0.14788613,-0.329013,0.93332916,-0.14369115,-0.33076298,0.9325664,-0.14462261,-0.33197686,0.932119,-0.14472558,-0.335042,0.93104804,-0.14455596,-0.33625674,0.93064386,-0.14433797,-0.3371336,0.93038005,-0.14399257,-0.3375961,0.9302982,-0.14343686,-0.33804715,0.93027097,-0.14254826,-0.33841565,0.9303232,-0.1413279,-0.338835,0.9305212,-0.13900046,-0.34045735,0.9306289,-0.13423376,-0.3408045,0.93068624,-0.13294907,-0.34082755,0.93101877,-0.13053961,-0.34131506,0.9309183,-0.12998138,-0.34168974,0.9311195,-0.12753256,-0.34249982,0.9312485,-0.12437919,-0.3428317,0.93154347,-0.121215366,-0.3426522,0.9320699,-0.1176228,-0.34205005,0.93249685,-0.11597997,-0.34112448,0.93317175,-0.11324553,-0.34179923,0.93329453,-0.11015694,-0.34186107,0.93359387,-0.107394226,-0.34156337,0.93377846,-0.10673426,-0.34011143,0.93452966,-0.10477821,-0.33982998,0.93470633,-0.10411343,-0.33754933,0.9357356,-0.10227101,-0.3385691,0.9356884,-0.099288344,-0.33947408,0.9353244,-0.09962758,-0.33993757,0.93514276,-0.099752285,-0.34038043,0.9349766,-0.09979969,-0.34097037,0.93479204,-0.09951404,-0.3417044,0.93459,-0.098891996,-0.34215796,0.9345005,-0.098166525,-0.34318167,0.93441314,-0.09538563,-0.34425053,0.9341671,-0.09393322,-0.34484616,0.9340877,-0.09252759,-0.3452957,0.93390834,-0.09266144,-0.3462596,0.93344355,-0.09374147,-0.34658313,0.933301,-0.093965076,-0.3472366,0.93308175,-0.09372972,-0.34885684,0.93277824,-0.09068468,-0.34831625,0.93313044,-0.0891259,-0.3497445,0.93273705,-0.08763782,-0.35039678,0.9326264,-0.08619777,-0.3515444,0.93237776,-0.084192105,-0.35166946,0.9325049,-0.08223895,-0.35212967,0.9324729,-0.080616534,-0.35206157,0.9325335,-0.080211736,-0.35169223,0.9327334,-0.07950455,-0.35165536,0.93288386,-0.07788562,-0.35129094,0.933097,-0.07697146,-0.35074496,0.93350863,-0.0744288,-0.3503392,0.93373024,-0.07355431,-0.3486995,0.93440527,-0.07276961,-0.34790948,0.9347118,-0.072614,-0.3473012,0.9349315,-0.072697386,-0.34687218,0.935073,-0.0729258,-0.34674984,0.9351074,-0.07306609,-0.34678096,0.9350488,-0.07366608,-0.34471726,0.9358164,-0.073604524,-0.34407192,0.9361027,-0.07298122,-0.34377977,0.93621355,-0.07293608,-0.34305814,0.9364571,-0.07320686,-0.34255758,0.93659693,-0.07375956,-0.34235442,0.9365273,-0.075564586,-0.3428899,0.9362711,-0.07630879,-0.34348595,0.9359218,-0.077895895,-0.34391794,0.9356986,-0.07866717,-0.3452759,0.9350485,-0.08042887,-0.3432849,0.9358603,-0.07950476,-0.34224677,0.93626505,-0.0792142,-0.34161362,0.9364996,-0.079175055,-0.34138536,0.93657994,-0.07920891,-0.34107828,0.93665546,-0.079637736,-0.33973348,0.9370899,-0.0802723,-0.33887532,0.93735147,-0.08084412,-0.3380351,0.9377333,-0.0799282,-0.33964187,0.9372496,-0.07878211,-0.34031123,0.93706673,-0.07806531,-0.3408192,0.93696374,-0.07707953,-0.3409232,0.9369867,-0.07633715,-0.34064794,0.93712115,-0.07591372,-0.34038192,0.9372338,-0.075715944,-0.3399314,0.93740845,-0.075578,-0.33929497,0.9376454,-0.07549903,-0.33875102,0.9378416,-0.07550404,-0.33829948,0.9379974,-0.07559346,-0.3372353,0.9386412,-0.07228435,-0.33891898,0.93811935,-0.07117594,-0.33961955,0.9379141,-0.070539504,-0.33981493,0.93788004,-0.07004858,-0.33950523,0.9380177,-0.06970581,-0.33899924,0.9382255,-0.06937133,-0.33782405,0.9386926,-0.06878266,-0.33787405,0.9386971,-0.06847561,-0.33930022,0.9381869,-0.068415545,-0.34000134,0.937951,-0.06816891,-0.34063622,0.93776554,-0.06754795,-0.34101373,0.93769926,-0.06655633,-0.3409051,0.937767,-0.06615641,-0.34038985,0.9379817,-0.06576509,-0.3388736,0.9385636,-0.0652918,-0.3379452,0.9389093,-0.065133564,-0.33529174,0.9398685,-0.065012194,-0.33390355,0.9403522,-0.06516242,-0.33344764,0.94049996,-0.06536407,-0.3331897,0.9405706,-0.06566239,-0.3330312,0.94059056,-0.06617854,-0.3329093,0.9404959,-0.06810881,-0.33224106,0.9407176,-0.06831083,-0.3310098,0.9411662,-0.06810798,-0.33071536,0.94126785,-0.068133764,-0.33046928,0.9413426,-0.06829448,-0.33027208,0.94139034,-0.06858981,-0.32998154,0.9413826,-0.07007863,-0.327453,0.9421349,-0.07180801,-0.32628173,0.9424598,-0.07286781,-0.32522434,0.9427689,-0.07359368,-0.32269973,0.9435415,-0.074795194,-0.32273486,0.9435105,-0.075034894,-0.32323337,0.94333327,-0.07511656,-0.3245931,0.9428799,-0.0749455,-0.324949,0.9427012,-0.07564776,-0.3242331,0.9429168,-0.0760313,-0.32370055,0.94306284,-0.076487824,-0.3223749,0.9434014,-0.07789882,-0.32035977,0.94399565,-0.07900494,-0.3197599,0.9441618,-0.0794493,-0.31683135,0.9451041,-0.07997562,-0.31415024,0.9458831,-0.081331335,-0.31048444,0.94721186,-0.07993154,-0.30996007,0.9474202,-0.07949696,-0.30928686,0.9476686,-0.07915716,-0.3084637,0.9479574,-0.07891063,-0.30785143,0.94816667,-0.078787275,-0.30745128,0.9482966,-0.078786485,-0.3061213,0.94874895,-0.07851852,-0.30397844,0.94942117,-0.078717805,-0.29150262,0.95327026,-0.07938574,-0.29070637,0.95352554,-0.079238884,-0.28908077,0.9540337,-0.0790703,-0.28785083,0.9544218,-0.078872316,-0.28724676,0.95460355,-0.07887579,-0.28600758,0.9549701,-0.07894116,-0.28564295,0.9550957,-0.078741774,-0.28525764,0.9552181,-0.07865414,-0.28417194,0.95553076,-0.0787862,-0.28273368,0.9559339,-0.07906924,-0.28113675,0.956359,-0.07962097,-0.27977693,0.956671,-0.08065636,-0.277216,0.9573003,-0.08202108,-0.27560005,0.9576514,-0.08335747,-0.2752597,0.95770216,-0.08389685,-0.2756306,0.9575477,-0.08443983,-0.27636018,0.9572798,-0.08509066,-0.2742515,0.9577642,-0.086451635,-0.2732641,0.95796806,-0.08731492,-0.27247632,0.9580665,-0.088685684,-0.27309832,0.9578411,-0.08920639,-0.27347147,0.9577291,-0.08926536,-0.27437964,0.95748633,-0.089082845,-0.27480978,0.9573535,-0.089184694,-0.27466798,0.95732987,-0.089872494,-0.2748345,0.95723397,-0.09038305,-0.27530804,0.9570664,-0.09071586,-0.2760062,0.956843,-0.090950355,-0.2835746,0.9545149,-0.092123486,-0.28470457,0.95417637,-0.09214572,-0.28521457,0.95401376,-0.092252,-0.2857743,0.953824,-0.09248173,-0.28628033,0.9536685,-0.0925202,-0.28717944,0.9534161,-0.09233444,-0.2887128,0.952913,-0.092745736,-0.28944683,0.95267546,-0.092898026,-0.2920332,0.9518586,-0.093176365,-0.29424444,0.9511931,-0.09301565,-0.2966963,0.9504869,-0.09244473,-0.29671788,0.9504402,-0.09285414,-0.29688302,0.95038086,-0.09293387,-0.29715884,0.95029306,-0.092949875,-0.29759967,0.950164,-0.09285894,-0.29782447,0.9500769,-0.09302962,-0.29889542,0.94951373,-0.09531644,-0.29961595,0.9492227,-0.09595089,-0.29971755,0.9490888,-0.09695255,-0.2989441,0.949302,-0.09725283,-0.29830098,0.94945246,-0.097757325,-0.2974607,0.94970554,-0.09785994,-0.29499814,0.95051783,-0.0974266,-0.2909145,0.95180213,-0.09716691,-0.2879367,0.9527534,-0.0967132,-0.28634056,0.95325404,-0.09651856,-0.28484607,0.9537131,-0.096405625,-0.2839339,0.9539846,-0.09641008,-0.2836023,0.9540707,-0.09653423,-0.28310212,0.95415086,-0.09720792,-0.28219363,0.95443225,-0.09708663,-0.28195047,0.95452225,-0.09690812,-0.28165483,0.9546091,-0.09691227,-0.2813076,0.9546926,-0.0970983,-0.28055096,0.95489776,-0.09726972,-0.27938443,0.9551495,-0.09815187,-0.27866706,0.95532197,-0.09851205,-0.2773678,0.95566815,-0.09882057,-0.27498132,0.9562212,-0.10013092,-0.2746972,0.9562646,-0.10049572,-0.27385673,0.95629925,-0.102441385,-0.27343982,0.95634663,-0.10311078,-0.27438253,0.95602125,-0.10362253,-0.27592543,0.95559484,-0.10345867,-0.27750316,0.95523727,-0.102536485,-0.27816835,0.9550659,-0.102330394,-0.27936625,0.9546624,-0.10283083,-0.27968052,0.9545596,-0.10293083,-0.27969345,0.95441425,-0.104235545,-0.28008488,0.9542388,-0.10478938,-0.28061455,0.9538946,-0.10649204,-0.2818672,0.9533593,-0.10796724,-0.2813739,0.95332175,-0.10957383,-0.28104365,0.9534493,-0.10931121,-0.2808675,0.9535017,-0.10930688,-0.28084403,0.9534796,-0.10955966,-0.2813125,0.9532314,-0.11051351,-0.28253362,0.9526622,-0.11229155,-0.28182152,0.9528484,-0.11250165,-0.28123686,0.9529587,-0.11302893,-0.2809259,0.9531185,-0.11245344,-0.28056467,0.9533783,-0.11114511,-0.27894077,0.9540947,-0.10906594,-0.27764335,0.9545974,-0.10797176,-0.27690554,0.95483196,-0.10779242,-0.27574506,0.95510226,-0.10837111,-0.2727219,0.9557316,-0.1104532,-0.271184,0.9559807,-0.11207175,-0.2698333,0.95623344,-0.11317052,-0.26905552,0.9562806,-0.114615045,-0.26900443,0.95620775,-0.11533996,-0.26931262,0.9560482,-0.11594189,-0.27031776,0.95560414,-0.1172563,-0.27086225,0.9553922,-0.11772596,-0.271899,0.95503885,-0.11820192,-0.272399,0.9548763,-0.11836408,-0.27326888,0.9544844,-0.11951418,-0.27272585,0.9546195,-0.119675316,-0.27249348,0.95450854,-0.12108158,-0.27245006,0.95436585,-0.12229796,-0.27259558,0.95419216,-0.12332476,-0.26845533,0.95246434,-0.14402576,-0.28647614,0.9470812,-0.1448054,-0.31246823,0.9410495,-0.129574,-0.31171897,0.93713725,-0.15686014,-0.34052673,0.93098146,-0.13158675,-0.34132862,0.93293726,-0.11455509,-0.34241697,0.93453515,-0.09692637,-0.300935,0.9503398,-0.07932503,-0.27633393,0.95730644,-0.084876366,-0.2747124,0.9574059,-0.0889213,-0.28673127,0.9535479,-0.092366435,-0.30009505,0.94903946,-0.0962659,-0.28282115,0.9542194,-0.097352386,-0.2817224,0.9531966,-0.10976679,-0.28200516,0.95293134,-0.11133249,-0.27809823,0.9492117,-0.1471684,-0.28718516,0.9481707,-0.13600343,-0.29735765,0.94336015,-0.14713964,-0.3225589,0.9352535,-0.1457965,-0.32792312,0.933769,-0.14332433,-0.3378905,0.9359431,-0.099199146,-0.34506342,0.9340055,-0.092547074,-0.34507203,0.93567276,-0.073768534,-0.34568834,0.9349001,-0.08038271,-0.34576434,0.9348541,-0.080590494,-0.33778098,0.9378002,-0.08021714,-0.33678702,0.9387696,-0.072705984,-0.33757985,0.93879515,-0.068582244,-0.33021453,0.9413208,-0.069811106,-0.31125262,0.94691837,-0.080420405,-0.28654206,0.95480615,-0.07898646,-0.28255907,0.9530075,-0.10925657,-0.27250376,0.9541378,-0.123946555,-0.26766858,0.95272,-0.14379884,-0.2784955,0.9492023,-0.14647602,-0.28685215,0.9477744,-0.13942574,-0.32547554,0.93471396,-0.1427428,-0.3455378,0.935491,-0.07389334,-0.34135613,0.93657035,-0.07944772,-0.31299216,0.9462685,-0.08131305,-0.30030406,0.950533,-0.07940154,-0.28208795,0.95307434,-0.10988928,-0.27217627,0.95420337,-0.12416144,-0.26811844,0.952592,-0.14380889,-0.28721368,0.94766694,-0.13941172,-0.3372762,0.93614405,-0.09939352,-0.34839717,0.93303144,-0.08984319,-0.34596923,0.93532765,-0.07394214,-0.33775085,0.9382409,-0.07502285,-0.32482895,0.9427925,-0.07502358,-0.29792982,0.9495557,-0.097886525,-0.2823367,0.9529998,-0.10989724,-0.3252472,0.9347948,-0.14273387,-0.33678442,0.9361033,-0.10142446,-0.3463672,0.9351826,-0.0739139,-0.3371024,0.9385713,-0.0737967,-0.31343645,0.9461082,-0.08146641,-0.29897782,0.9509485,-0.07943072,-0.28260854,0.95296156,-0.10952937,-0.33165962,0.9354506,-0.12220481,-0.33660868,0.9363237,-0.099962406,-0.33828306,0.93755233,-0.080995396,-0.33678004,0.9387473,-0.073025644,-0.32497004,0.94273365,-0.07515185,-0.2727956,0.9547319,-0.11861517,-0.2869558,0.94828874,-0.13566431,-0.3134133,0.9413866,-0.12475323,-0.3308226,0.9356242,-0.123141594,-0.32345647,0.93514335,-0.14450912,-0.32500836,0.94269294,-0.07549549,-0.27328026,0.9545118,-0.11926869,-0.3026466,0.9437474,-0.1332136,-0.31321764,0.94152254,-0.12421765,-0.33041736,0.9356791,-0.12381055,-0.3379564,0.93769306,-0.080729306,-0.3040576,0.94352597,-0.1315587,-0.28661647,0.9483839,-0.13571648,-0.3123554,0.94177634,-0.12446445,-0.30517778,0.9433174,-0.13045593,-0.31006023,0.94233155,-0.12599169,-0.33645418,0.9363024,-0.100679226,-0.29328057,0.94883484,-0.11704271,-0.31201872,0.94249713,-0.11976405,-0.31706798,0.94343936,-0.096902244,-0.29349136,0.9488004,-0.11679298,-0.30010447,0.9490201,-0.0964272,-0.3171791,0.94339305,-0.09698955,-0.29401743,0.94870245,-0.11626428,-0.2371508,0.96199745,-0.13535279,-0.23635463,0.96237373,-0.1340644,-0.23515381,0.9624728,-0.13545765,-0.23049554,0.9632599,-0.13784847,-0.22889885,0.9635849,-0.13823709,-0.22787651,0.96377015,-0.13863412,-0.22720112,0.96384054,-0.13925165,-0.22667083,0.9638197,-0.1402567,-0.22558501,0.9634631,-0.14439611,-0.22382382,0.96333194,-0.14796776,-0.22181685,0.962919,-0.15357171,-0.22207457,0.96281916,-0.1538252,-0.22256024,0.9627122,-0.15379229,-0.22307749,0.96255004,-0.1540581,-0.2235245,0.96244645,-0.1540573,-0.22845782,0.96103656,-0.1556141,-0.2293569,0.96078885,-0.15582106,-0.23026446,0.9605702,-0.15583064,-0.2312553,0.9604279,-0.15523925,-0.23228805,0.9601385,-0.15548721,-0.2333746,0.95953166,-0.15759201,-0.23476303,0.9589554,-0.15903111,-0.23539911,0.95841575,-0.16132733,-0.23733409,0.9575377,-0.16368908,-0.23771703,0.9573419,-0.16427748,-0.23834594,0.9569438,-0.16567977,-0.23892966,0.9566931,-0.16628578,-0.23922533,0.95660424,-0.16637178,-0.23995435,0.95642054,-0.16637807,-0.24172994,0.955926,-0.1666498,-0.24157064,0.95560384,-0.16871548,-0.24172781,0.9555016,-0.16906905,-0.24204673,0.9553471,-0.16948536,-0.2425109,0.9551548,-0.16990526,-0.24312216,0.95492387,-0.17032921,-0.24425864,0.95447373,-0.17122382,-0.24467255,0.95432895,-0.17143966,-0.24540906,0.9539874,-0.17228587,-0.24550843,0.9538355,-0.17298388,-0.24606827,0.953458,-0.17426479,-0.2461996,0.95331633,-0.1748535,-0.24659649,0.95309603,-0.17549385,-0.24775463,0.9524771,-0.17721464,-0.24773549,0.95242155,-0.1775398,-0.24792248,0.95232403,-0.1778014,-0.24831696,0.9521843,-0.17799908,-0.24862227,0.95208955,-0.17808004,-0.24884039,0.95203894,-0.17804576,-0.24889773,0.95179534,-0.1792638,-0.24899153,0.95175064,-0.17937101,-0.25032854,0.95119125,-0.18047392,-0.2507766,0.9509414,-0.1811674,-0.25100327,0.95087093,-0.18122315,-0.25126433,0.95084506,-0.18099697,-0.25257584,0.95091105,-0.17881167,-0.25307924,0.95081234,-0.17862467,-0.25377768,0.9506438,-0.1785309,-0.2561192,0.9501635,-0.17774217,-0.26110762,0.94916475,-0.17580968,-0.26342633,0.94847876,-0.1760529,-0.26413363,0.9482855,-0.17603424,-0.2653633,0.94789743,-0.17627472,-0.26880342,0.94675523,-0.17719853,-0.26973185,0.9464758,-0.17728013,-0.27068594,0.9462178,-0.17720348,-0.2714509,0.9460503,-0.17692725,-0.2720218,0.9460174,-0.17622486,-0.27218702,0.94607097,-0.17568123,-0.2721282,0.94624454,-0.17483583,-0.2717362,0.946613,-0.17344534,-0.2719067,0.9470194,-0.17094153,-0.27059975,0.94801736,-0.16744806,-0.27093086,0.9480331,-0.16682233,-0.2717256,0.9478062,-0.16681924,-0.27219346,0.94770724,-0.16661856,-0.27273008,0.94785184,-0.16490985,-0.27294496,0.94802547,-0.16355038,-0.27298087,0.94835556,-0.16156481,-0.27252483,0.9486412,-0.16065544,-0.27200907,0.948904,-0.15997587,-0.27169132,0.9490456,-0.15967558,-0.2670048,0.9509706,-0.15608759,-0.2652715,0.9517378,-0.1543572,-0.2640771,0.95219684,-0.15357244,-0.26408103,0.95228475,-0.15301932,-0.2647255,0.952363,-0.15141022,-0.26454446,0.95267576,-0.14975037,-0.26398253,0.9529815,-0.14879361,-0.26108488,0.95428646,-0.14550631,-0.2604179,0.9546784,-0.14412375,-0.25963038,0.9558043,-0.13795027,-0.25886154,0.95649713,-0.13455077,-0.2587585,0.95685047,-0.13221644,-0.25790775,0.9575876,-0.12848985,-0.25783232,0.9577953,-0.12708516,-0.25794566,0.95793897,-0.12576549,-0.25755283,0.95840603,-0.12298143,-0.25738496,0.9585162,-0.12247352,-0.25706854,0.95864505,-0.122128785,-0.25654685,0.9588294,-0.12177801,-0.25591177,0.9590272,-0.121557005,-0.25516304,0.95923835,-0.12146423,-0.25453123,0.9594063,-0.121463515,-0.25356227,0.9596363,-0.1216735,-0.25163004,0.96003985,-0.12249839,-0.24579139,0.96139216,-0.1237404,-0.24418585,0.96174806,-0.12415271,-0.2426041,0.9620807,-0.124675326,-0.24101022,0.96236867,-0.12554133,-0.24028035,0.96246636,-0.12618993,-0.23950523,0.9625313,-0.1271642,-0.23897421,0.96253455,-0.12813504,-0.23852631,0.96242976,-0.12974648,-0.23852052,0.96237236,-0.13018222,-0.23884529,0.9621804,-0.13100322,-0.24036106,0.9613957,-0.13395852,-0.23888332,0.9618731,-0.13317254,-0.23826745,0.96206516,-0.13288827,-0.2379483,0.9621523,-0.13282916,-0.23769504,0.96220845,-0.13287568,-0.23732126,0.96224767,-0.1332593,-0.23703048,0.96222377,-0.13394754,-0.2374458,0.9618843,-0.13563955,-0.24494588,0.9542632,-0.17141525,-0.24964012,0.9515027,-0.17978466,-0.25000358,0.95134866,-0.1800943,-0.26059765,0.9493018,-0.17582674,-0.26822647,0.95045084,-0.15715532,-0.24036175,0.96147656,-0.13337556,-0.23777884,0.9617817,-0.13578378,-0.2376992,0.96180177,-0.13578105,-0.23226064,0.9629413,-0.13710967,-0.23204793,0.96022207,-0.15532969,-0.24516243,0.9541776,-0.17158237,-0.24737541,0.9527024,-0.17653197,-0.2706519,0.9480529,-0.16716246,-0.26076233,0.9544506,-0.14500724,-0.24057464,0.9613364,-0.13400096,-0.24027608,0.95640135,-0.16602361,-0.24057446,0.96136355,-0.1338059,-0.24062261,0.9563319,-0.16592179,-0.24090311,0.95624715,-0.16600318,-0.24125576,0.95612615,-0.16618791,-0.24153101,0.9560192,-0.16640307,-0.113798976,0.992599,0.042390693,-0.11285615,0.99274164,0.041562945,-0.11264007,0.99277747,0.041292477,-0.11260783,0.99279106,0.041052863,-0.11353338,0.99275345,0.03937981,-0.113933526,0.99272096,0.039041914,-0.115172766,0.992591,0.03870726,-0.11548471,0.9925488,0.038859524,-0.115865275,0.9924813,0.039447498,-0.11592089,0.99249256,0.038998265,-0.11422275,0.9927603,0.037150253,-0.11420195,0.99277,0.036953945,-0.115082614,0.99271786,0.03559834,-0.11676853,0.9925435,0.03496305,-0.11717188,0.99249744,0.034921966,-0.11771397,0.9924305,0.035000984,-0.11839563,0.99234235,0.03520102,-0.11927239,0.99221116,0.035931725,-0.118693724,0.992341,0.034222145,-0.11792438,0.9924509,0.03368988,-0.11744677,0.9925228,0.033239067,-0.11716894,0.99257404,0.032682944,-0.117324896,0.99264616,0.029807802,-0.11866105,0.9925643,0.027122729,-0.1193137,0.99247694,0.027455369,-0.120061226,0.9923738,0.027920458,-0.121557936,0.99214923,0.029385589,-0.12241674,0.99202234,0.030096086,-0.122939706,0.99194676,0.030454192,-0.12404369,0.99176866,0.031750098,-0.1258918,0.9915581,0.031046692,-0.12503245,0.9916804,0.030609027,-0.124402836,0.99177074,0.03024439,-0.124002576,0.99182975,0.029951278,-0.12160279,0.9921959,0.027569715,-0.1209469,0.99229556,0.026858488,-0.120796785,0.992323,0.026518973,-0.12077896,0.99234563,0.025741436,-0.12128172,0.9923127,0.02462005,-0.1208395,0.9924034,0.02309385,-0.121024065,0.99241483,0.021587463,-0.12159134,0.99235594,0.021100976,-0.12187461,0.99231946,0.021180307,-0.122413576,0.9922432,0.0216414,-0.12308428,0.9921507,0.022071421,-0.123546965,0.99208176,0.022581525,-0.12425982,0.99196696,0.02368759,-0.12474479,0.9918809,0.02471869,-0.1250576,0.9919082,0.021880526,-0.124198735,0.99204695,0.020433754,-0.12415196,0.9920688,0.019641183,-0.12448871,0.99203074,0.019431703,-0.12479715,0.9919932,0.01936852,-0.12528424,0.99192894,0.019514542,-0.12737505,0.9916405,0.020608198,-0.1273701,0.99165875,0.019743279,-0.1266708,0.9917676,0.018750997,-0.12663102,0.9917814,0.01828085,-0.12708704,0.99173546,0.017596707,-0.12755008,0.99167514,0.017647956,-0.12815933,0.9915883,0.018106071,-0.12883353,0.99148726,0.018838063,-0.12905794,0.9914591,0.018786626,-0.12935957,0.9914321,0.018126793,-0.12994589,0.9913641,0.017641207,-0.1306455,0.991278,0.017312635,-0.13119456,0.991204,0.01739426,-0.13214098,0.99106795,0.017975,-0.1330537,0.9909323,0.018705139,-0.13434397,0.9907298,0.020153925,-0.13663019,0.99033684,0.023772484,-0.13886419,0.9899889,0.025272083,-0.13810505,0.99011254,0.024578761,-0.13750379,0.9902137,0.02386629,-0.13561307,0.9905587,0.02006315,-0.13416818,0.9907915,0.018196143,-0.13375549,0.99085945,0.017521583,-0.13381232,0.9908559,0.017288053,-0.13412572,0.9908157,0.017161459,-0.13469094,0.9907394,0.017140916,-0.13531768,0.9906488,0.017437639,-0.1349737,0.99071753,0.016152749,-0.13269393,0.991045,0.014905876,-0.13233693,0.9911013,0.014321164,-0.13168795,0.9912117,0.0125563145,-0.13105702,0.99130154,0.012054616,-0.13088068,0.99132925,0.011688096,-0.13171713,0.99122757,0.01088472,-0.13242626,0.9911376,0.01046668,-0.13377032,0.9909635,0.009836538,-0.13393895,0.99094355,0.009553833,-0.13458794,0.99086106,0.008968588,-0.13515867,0.99079174,0.0079929205,-0.13569479,0.99071753,0.0081078205,-0.13894889,0.99022627,0.012046927,-0.13903165,0.99022484,0.011178465,-0.13953288,0.99015754,0.010888389,-0.13923174,0.9902089,0.010041792,-0.13842002,0.99033,0.009294921,-0.13811676,0.99037737,0.008743936,-0.13805155,0.9903916,0.0081369635,-0.13838515,0.99034894,0.0076544792,-0.139118,0.990249,0.007292764,-0.13969685,0.99016756,0.007276669,-0.1390075,0.9902683,0.006754432,-0.13809453,0.99039924,0.0062602237,-0.13758603,0.99047357,0.005672953,-0.13742682,0.99050105,0.004647316,-0.13807416,0.9904159,0.0034544084,-0.13883497,0.9903118,0.0027257844,-0.13992845,0.99015945,0.002060535,-0.14099292,0.9900102,0.0009022585,-0.14100364,0.990009,-0.0004012367,-0.14128923,0.98996764,-0.0012088065,-0.1421357,0.98984444,-0.0023369153,-0.14280833,0.9897457,-0.0030399957,-0.14354788,0.98963696,-0.0035679752,-0.14457558,0.989485,-0.004158468,-0.14540395,0.98936313,-0.004275055,-0.14641517,0.98921674,-0.003585418,-0.14654231,0.98919886,-0.00330602,-0.14619426,0.9892519,-0.0028140584,-0.14510736,0.98941463,-0.0015862748,-0.14541274,0.98937035,-0.0012191738,-0.14553596,0.9893526,-0.00084041286,-0.14588104,0.98930204,0.0003940953,-0.14842036,0.9889233,-0.001434518,-0.14901713,0.98883337,-0.0015840488,-0.14943875,0.98877037,-0.0010858366,-0.14951392,0.9887593,-0.00079203455,-0.14752075,0.9890399,0.006139887,-0.1474061,0.9890643,0.004821672,-0.14774224,0.9890195,0.003554179,-0.1482284,0.988949,0.002866104,-0.1497445,0.9887236,0.001497594,-0.15076476,0.9885693,0.00085865974,-0.15122244,0.9884993,0.00096153683,-0.15229948,0.98833245,0.0019603523,-0.15252493,0.98829895,0.0011623432,-0.15345737,0.98815525,0.00014110973,-0.15428442,0.9880265,0.000051270534,-0.15531558,0.98786473,0.00056307565,-0.15587139,0.9877768,0.0010255108,-0.1559891,0.98775744,0.0016379689,-0.15539667,0.98784757,0.003019533,-0.15486594,0.987908,0.00737075,-0.15405175,0.98802096,0.0090909675,-0.15647215,0.9876566,0.007136362,-0.15637876,0.98768765,0.0043323184,-0.15742956,0.98752755,0.0022892486,-0.15789849,0.9874533,0.0020303878,-0.15845448,0.9873639,0.002180044,-0.15893891,0.98728555,0.00237311,-0.15935095,0.98721856,0.0026099125,-0.15975612,0.9871519,0.00300769,-0.16035074,0.9870526,0.003848603,-0.16146138,0.9868665,0.0049839183,-0.16192943,0.9867862,0.0056443405,-0.1622279,0.986732,0.006482648,-0.16194846,0.98677033,0.007552643,-0.16094214,0.9869297,0.00820853,-0.15695493,0.9875517,0.01033291,-0.15361245,0.9879688,0.017911542,-0.15503317,0.98780376,0.014436757,-0.15610446,0.9876552,0.012981468,-0.1572774,0.98748165,0.011993299,-0.15971887,0.9871071,0.010462648,-0.16081028,0.98693466,0.010003275,-0.16193862,0.986754,0.009612201,-0.16252497,0.9866576,0.009611834,-0.16294543,0.9865857,0.009875993,-0.16356449,0.9864744,0.0107195955,-0.16359814,0.9864639,0.011161118,-0.16319549,0.9865184,0.01219562,-0.16404872,0.9863603,0.013465862,-0.16409305,0.9863464,0.013935472,-0.16380654,0.9863626,0.016009921,-0.16356118,0.9863942,0.0165569,-0.16320316,0.98644716,0.01693373,-0.1623667,0.98657715,0.017393984,-0.16029441,0.9868951,0.018542675,-0.15970676,0.98695713,0.020232351,-0.15914837,0.98703223,0.020956688,-0.15967128,0.98693645,0.021484071,-0.16150299,0.9866594,0.020493336,-0.16245186,0.9865081,0.020279584,-0.16267252,0.9864547,0.021089835,-0.16253918,0.9864617,0.021779139,-0.16116577,0.98663706,0.023934903,-0.16098419,0.9866496,0.02463123,-0.16038485,0.98672813,0.02538228,-0.15812907,0.9870354,0.027502557,-0.15662412,0.987253,0.028290272,-0.1558718,0.98736346,0.028589156,-0.15537445,0.9874395,0.028669603,-0.15446487,0.9875816,0.028691817,-0.15314135,0.9877888,0.028653674,-0.1514373,0.98803437,0.029237727,-0.15150698,0.9880118,0.029637875,-0.15086623,0.98809725,0.030053271,-0.14596142,0.988719,0.033615455,-0.14734061,0.9885495,0.03256742,-0.15034686,0.9881418,0.03117142,-0.15134259,0.9879986,0.030890137,-0.15262952,0.9878067,0.030694308,-0.1533742,0.9876913,0.03069748,-0.15422775,0.987556,0.030772377,-0.15464893,0.9874729,0.031320408,-0.15462267,0.9874271,0.03285533,-0.15516798,0.98725575,0.03534119,-0.15551095,0.9872331,0.03445565,-0.15687159,0.9870926,0.032240547,-0.15984727,0.9867082,0.02925285,-0.16025324,0.986644,0.029197013,-0.16393694,0.9861275,0.026024785,-0.16577318,0.9859247,0.0217181,-0.16623761,0.9858611,0.021045452,-0.16684282,0.98576987,0.020524118,-0.16759716,0.9856384,0.020693766,-0.1692509,0.98533326,0.021737695,-0.17096508,0.9850082,0.023017036,-0.1736712,0.9844733,0.02550854,-0.17528191,0.98415786,0.02663817,-0.17611982,0.98398924,0.027330726,-0.1767226,0.98386353,0.027958002,-0.17688361,0.9838068,0.028921386,-0.17567556,0.9841423,0.024537083,-0.17367636,0.9845284,0.02324434,-0.17235526,0.98478585,0.022148037,-0.17142405,0.9849728,0.021035176,-0.16996807,0.98524994,0.019835092,-0.16869435,0.9854938,0.018553603,-0.16823454,0.9855914,0.017514324,-0.16812368,0.98564136,0.015669053,-0.1683723,0.9856203,0.01425813,-0.16780761,0.9857603,0.010830519,-0.1688917,0.98558044,0.010334198,-0.17122515,0.98517984,0.010129154,-0.17301162,0.98486274,0.010599021,-0.1759642,0.984335,0.011006749,-0.17766434,0.9840184,0.0119666895,-0.17799789,0.98395336,0.012348517,-0.17841429,0.98385334,0.014176445,-0.17964873,0.98360974,0.0154335685,-0.18158613,0.9832381,0.016409235,-0.18351077,0.98286015,0.01759764,-0.18475288,0.9826169,0.018176869,-0.1859931,0.98236924,0.018901149,-0.18697585,0.98216647,0.01972413,-0.1881094,0.9819258,0.020893725,-0.18869951,0.9818226,0.020417323,-0.18810034,0.98195434,0.019594157,-0.18776822,0.9820318,0.018885285,-0.18787123,0.9820199,0.018475253,-0.18821284,0.98196286,0.018022481,-0.18873604,0.98186386,0.017947912,-0.18944207,0.9817222,0.018255055,-0.18996057,0.9816158,0.018585585,-0.19029213,0.9815448,0.018939642,-0.19049875,0.9814931,0.01953224,-0.19061741,0.9814445,0.020779664,-0.19043924,0.98142517,0.023185505,-0.19080977,0.98131794,0.024632556,-0.1907858,0.98130494,0.025324872,-0.19034927,0.9813734,0.025948022,-0.18961221,0.98149997,0.0265527,-0.1918606,0.981092,0.025457231,-0.19203228,0.9811045,0.023613311,-0.1927132,0.98098177,0.023159077,-0.19329399,0.9808851,0.02240344,-0.19292745,0.9809704,0.021820923,-0.19247077,0.9810877,0.020542314,-0.1919889,0.9812408,0.017515413,-0.1915814,0.9813338,0.01674853,-0.19182092,0.9812994,0.01600756,-0.19293922,0.981103,0.014537605,-0.19341294,0.9810352,0.012704429,-0.19437116,0.98086816,0.010840129,-0.1981395,0.9801247,0.009814374,-0.19952032,0.97985053,0.009195275,-0.20059162,0.97963554,0.008788507,-0.20285888,0.97916764,0.008888545,-0.20470865,0.97878385,0.008752514,-0.20542465,0.9786264,0.0095461635,-0.20544793,0.97860533,0.0110790655,-0.20499094,0.97869223,0.011842664,-0.20414943,0.97885674,0.012747238,-0.20257302,0.9791683,0.013913233,-0.20423558,0.97882086,0.014057338,-0.20607547,0.97844124,0.013623319,-0.20542961,0.9785434,0.015857665,-0.20482308,0.9786614,0.016411332,-0.20380801,0.9788656,0.016862918,-0.201812,0.97926664,0.017569952,-0.19807227,0.9800206,0.018084526,-0.20301425,0.9790088,0.018081574,-0.20269798,0.97905034,0.019339072,-0.20340803,0.97889006,0.01998686,-0.20386493,0.9787817,0.020626219,-0.20361266,0.9788569,0.019518977,-0.20366684,0.97885203,0.019196847,-0.20607567,0.97837204,0.017915137,-0.207022,0.978186,0.017146433,-0.20851496,0.9778844,0.016236342,-0.21122608,0.9772824,0.017395481,-0.21470597,0.97651845,0.017692195,-0.2153836,0.97635406,0.018510757,-0.21557774,0.97629416,0.019389445,-0.21438703,0.9765295,0.020696597,-0.21493448,0.97638166,0.021954218,-0.21491519,0.9763651,0.02286092,-0.2146127,0.97641903,0.023392497,-0.21296388,0.976752,0.024534473,-0.21202208,0.9769478,0.024892764,-0.20686476,0.97801095,0.026486907,-0.21350409,0.9766153,0.025268767,-0.21480799,0.97634745,0.024560332,-0.21536472,0.9762301,0.024348093,-0.21569231,0.9763287,0.016099863,-0.21395093,0.9767244,0.015311261,-0.21177019,0.97721684,0.014166,-0.21075808,0.97744757,0.013314784,-0.20990063,0.9776503,0.011900369,-0.20946708,0.97775483,0.010911833,-0.20951454,0.9777532,0.010114883,-0.20989726,0.9776804,0.009176134,-0.21054536,0.9775493,0.0082461005,-0.21145888,0.9773595,0.0073215133,-0.21258554,0.9771169,0.007071948,-0.2145996,0.9766716,0.0077267154,-0.21639949,0.9762689,0.008388209,-0.21734558,0.976055,0.008799994,-0.21803823,0.9758971,0.009179844,-0.21881194,0.9757176,0.00982259,-0.2188642,0.9756993,0.01045392,-0.21943368,0.9755641,0.011112649,-0.22121379,0.97515047,0.012082054,-0.22146207,0.975091,0.012334126,-0.22164902,0.97505033,0.012189544,-0.22183786,0.9750172,0.0113758,-0.22239777,0.97490215,0.010247925,-0.22259949,0.97486573,0.009288837,-0.22246969,0.9749031,0.008435917,-0.22272502,0.9748547,0.0072019584,-0.22309563,0.9747766,0.006238851,-0.22365178,0.9746528,0.005636997,-0.2250122,0.974344,0.004827681,-0.22788668,0.9736856,0.0019897209,-0.2307275,0.9730167,0.0018349879,-0.23357555,0.97233707,0.0017527147,-0.23386458,0.9722658,0.0025730866,-0.2341268,0.9721938,0.004889097,-0.23471205,0.9720467,0.0059584044,-0.23257084,0.97256196,0.005836024,-0.22873339,0.97347057,0.0060061677,-0.23200463,0.97269523,0.00614966,-0.23496056,0.97198266,0.006579483,-0.23479743,0.97201324,0.007771208,-0.23515041,0.97190464,0.01027693,-0.23176576,0.97271854,0.010160483,-0.23407722,0.97215784,0.010816894,-0.23459923,0.97201324,0.012386449,-0.23514368,0.97186494,0.013639734,-0.23274562,0.97243714,0.013982915,-0.23215243,0.97256774,0.014740659,-0.23309587,0.9723367,0.015089204,-0.23401111,0.9721041,0.015888374,-0.2353365,0.9717514,0.017775327,-0.23583044,0.97160435,0.019208118,-0.23590954,0.9715681,0.020053465,-0.23470291,0.9717824,0.023528486,-0.2292984,0.97307974,0.023195136,-0.23224482,0.9723496,0.024465946,-0.23290828,0.97217864,0.024949541,-0.23291704,0.9721219,0.026994875,-0.23187856,0.9722305,0.031626724,-0.23105867,0.972426,0.031616803,-0.23006317,0.9726735,0.03126129,-0.22908269,0.97292143,0.03074124,-0.22811516,0.97317004,0.03005864,-0.22819565,0.9731383,0.030474313,-0.22873262,0.9729994,0.030880595,-0.22894408,0.97293663,0.031288505,-0.2290175,0.9728946,0.03204701,-0.23072177,0.9724548,0.033153195,-0.23109494,0.9723494,0.033641513,-0.2311978,0.97230643,0.03417334,-0.23107311,0.97231954,0.0346394,-0.23265699,0.9718342,0.037537135,-0.23349757,0.971638,0.037395153,-0.23439279,0.97142565,0.037312154,-0.2353437,0.97119665,0.037288763,-0.23584144,0.97106737,0.03751001,-0.23590687,0.97102416,0.0382098,-0.23578526,0.9710362,0.03865237,-0.23437227,0.9713013,0.040538654,-0.23402025,0.97134733,0.041459665,-0.23270555,0.9715925,0.043083057,-0.23179647,0.9717751,0.043857533,-0.23085776,0.97197723,0.044327874,-0.22991824,0.97217065,0.04496534,-0.22739805,0.9726594,0.04715674,-0.22605118,0.97295374,0.047559388,-0.22409517,0.97339916,0.047701165,-0.2224963,0.9737855,0.047298197,-0.22125249,0.9741139,0.046362773,-0.22063503,0.9742835,0.045736037,-0.2206451,0.9742964,0.045412265,-0.22094645,0.97424126,0.04512896,-0.22138163,0.97429293,0.04175468,-0.22058998,0.97447115,0.04178529,-0.21960296,0.9747033,0.041569415,-0.21842146,0.9749882,0.041109815,-0.2179021,0.97513425,0.04039651,-0.21823853,0.9751246,0.038780946,-0.2192238,0.9749424,0.037792843,-0.21918745,0.97495925,0.037567925,-0.21787539,0.97532034,0.035785615,-0.21769819,0.9753788,0.035266455,-0.21772033,0.97541785,0.034027196,-0.21802577,0.9753696,0.03345049,-0.21779539,0.9755212,0.030389054,-0.217649,0.975519,0.031490363,-0.21726182,0.9755761,0.032381024,-0.21657611,0.97570324,0.033135515,-0.21620658,0.975784,0.03317025,-0.21429405,0.9762285,0.03249748,-0.21607868,0.97575885,0.034708414,-0.2166287,0.9755913,0.035967372,-0.21666677,0.97554016,0.037106805,-0.21645102,0.9755328,0.038530864,-0.21538869,0.97565335,0.041330762,-0.21516763,0.9756592,0.042333044,-0.21488719,0.97569597,0.042905558,-0.2142698,0.97580004,0.04362013,-0.21338011,0.9759665,0.044252045,-0.21253954,0.97613746,0.044525836,-0.21145211,0.9763679,0.0446518,-0.20982146,0.9767302,0.044418436,-0.20764738,0.9772213,0.043829877,-0.20382904,0.97795546,0.04535222,-0.20377165,0.9778828,0.0471417,-0.20337391,0.9779216,0.048045177,-0.2021932,0.97811496,0.0490817,-0.2020141,0.9781015,0.050077498,-0.20182316,0.9781226,0.050433826,-0.20145512,0.9781832,0.05072927,-0.19767861,0.97894263,0.050936647,-0.19559532,0.9793208,0.051702414,-0.19517232,0.9794195,0.051431198,-0.19460475,0.97958755,0.050370324,-0.19369808,0.97989583,0.04780442,-0.19292206,0.9800284,0.048223127,-0.19254898,0.98000413,0.050167523,-0.19172475,0.98008037,0.051808096,-0.19017658,0.9803412,0.052574158,-0.18952337,0.9804751,0.05243461,-0.18836078,0.98069704,0.05247397,-0.1879809,0.9807856,0.052180033,-0.18797502,0.98081154,0.05171197,-0.18673755,0.9811523,0.049692124,-0.18661508,0.9812298,0.048610102,-0.18680578,0.98125815,0.047286246,-0.1857838,0.9814905,0.046484087,-0.1854502,0.9815777,0.045972113,-0.18523176,0.98164994,0.045305848,-0.18515223,0.98170775,0.044368684,-0.18548837,0.98168665,0.043421187,-0.18665376,0.9815554,0.041344598,-0.18726967,0.9815068,0.03967964,-0.18653777,0.98167753,0.03889513,-0.18611418,0.981788,0.03813003,-0.18534386,0.9818801,0.039484706,-0.18549664,0.9818163,0.04034563,-0.1852546,0.9818174,0.04141595,-0.18429188,0.9819163,0.04332321,-0.1841196,0.9819142,0.044096354,-0.18370907,0.9819724,0.04451052,-0.1835971,0.98196,0.04523998,-0.18311241,0.98201734,0.045954514,-0.18339011,0.9819182,0.04695367,-0.18372774,0.98183054,0.04746512,-0.18391787,0.98174536,0.04847936,-0.18340693,0.98174536,0.050377805,-0.18302733,0.98180234,0.050646797,-0.18006274,0.98238355,0.049999457,-0.18017888,0.9824027,0.049199272,-0.18101078,0.9823,0.048184875,-0.18082258,0.98237973,0.047256958,-0.18083982,0.98241633,0.04642257,-0.17992184,0.9826495,0.04503467,-0.17980745,0.98269737,0.04444337,-0.17848743,0.98297906,0.043524716,-0.17769259,0.9831851,0.04210007,-0.17732024,0.98316956,0.043991067,-0.17779212,0.9830352,0.045074757,-0.1778597,0.9829808,0.045986325,-0.17754804,0.98300284,0.046713118,-0.17654267,0.98312324,0.04797237,-0.17629515,0.98310685,0.049202576,-0.17592266,0.98314255,0.049818657,-0.17503476,0.9832594,0.050633833,-0.17477992,0.98323953,0.051884804,-0.17453964,0.9832676,0.052160174,-0.17418866,0.98332345,0.052280452,-0.17363192,0.98342144,0.05228987,-0.17287177,0.9835607,0.05218936,-0.17211813,0.9837098,0.051869184,-0.17082591,0.9839853,0.050906233,-0.17048538,0.9840607,0.05058921,-0.17039463,0.9841058,0.050013885,-0.1706279,0.98412824,0.048762355,-0.16902862,0.9844412,0.048008002,-0.1692941,0.98433834,0.049168218,-0.1693006,0.9842792,0.05031583,-0.17055896,0.9838675,0.05398484,-0.17047332,0.98384386,0.05468203,-0.16999929,0.9838884,0.05535242,-0.16844572,0.9840772,0.056728054,-0.16801879,0.98414165,0.056875855,-0.16677056,0.984343,0.057065297,-0.16631588,0.9844282,0.05692207,-0.16598393,0.9845226,0.05625469,-0.16598025,0.98453766,0.05600106,-0.1639754,0.9848024,0.057238623,-0.16259685,0.9850222,0.05738993,-0.16223808,0.98509043,0.057233613,-0.16202204,0.98516524,0.056553666,-0.16207924,0.9851762,0.056197684,-0.16362709,0.9850223,0.054380395,-0.16261585,0.98523915,0.05347828,-0.16261041,0.985217,0.05390157,-0.16226768,0.9852467,0.05438828,-0.16124353,0.98536944,0.05520507,-0.15966818,0.98550755,0.057279877,-0.15890163,0.9856379,0.05716803,-0.15526634,0.98636484,0.05456015,-0.156152,0.9861672,0.05559512,-0.15689169,0.9859892,0.05665928,-0.15708475,0.9859196,0.057331573,-0.15697832,0.9858996,0.057962835,-0.15652932,0.98594725,0.058366146,-0.15573744,0.98606247,0.058537554,-0.14705443,0.9873015,0.060088575,-0.14305769,0.9877998,0.061530896,-0.1409478,0.98808414,0.06183408,-0.13786316,0.9884536,0.062874414,-0.13473682,0.988857,0.063308254,-0.1338314,0.98899746,0.063033134,-0.1340698,0.9890408,0.061835423,-0.13484256,0.989001,0.06078265,-0.14118013,0.9883913,0.056131948,-0.14102498,0.9884762,0.055015873,-0.13620904,0.9889774,0.058058564,-0.13593982,0.9890125,0.058092274,-0.1354322,0.9890849,0.05804467,-0.13482136,0.9891779,0.057881914,-0.13383447,0.9893141,0.05784401,-0.132994,0.9893473,0.059199575,-0.13242482,0.98938817,0.05978911,-0.1318556,0.98944515,0.06010282,-0.13101153,0.9895645,0.059984062,-0.13038872,0.9896351,0.0601758,-0.12984774,0.9896106,0.061728403,-0.12955998,0.9896329,0.061975256,-0.128432,0.9897604,0.062285885,-0.12704176,0.9898892,0.0630854,-0.12334006,0.99028456,0.0642164,-0.12242001,0.9903732,0.064608365,-0.12116459,0.990534,0.06450941,-0.11963636,0.9907109,0.06464563,-0.117801644,0.990936,0.06456525,-0.11679868,0.991079,0.06419144,-0.116014674,0.991215,0.06350962,-0.11547429,0.99131197,0.06297829,-0.11517889,0.9913705,0.06259678,-0.11509564,0.9914189,0.061979957,-0.11545162,0.9914894,0.06016385,-0.117070355,0.9913691,0.059006188,-0.11588337,0.99151945,0.058823895,-0.115381286,0.9915928,0.058573373,-0.114321105,0.9917909,0.057284188,-0.11389844,0.9918812,0.056557827,-0.11302237,0.9920021,0.056193177,-0.11258433,0.99205166,0.056198627,-0.11227888,0.99209845,0.055983286,-0.11210694,0.9921422,0.055550367,-0.11218017,0.9921782,0.0547537,-0.1124158,0.9921653,0.054503217,-0.113408975,0.9920659,0.054255225,-0.11295947,0.9921553,0.053553134,-0.1121854,0.9922811,0.052846044,-0.11192118,0.9923337,0.05241608,-0.111970305,0.99233687,0.05225095,-0.112298146,0.992308,0.05209566,-0.11263828,0.9922673,0.05213591,-0.11352648,0.99215513,0.05234463,-0.1139199,0.9921199,0.05215661,-0.113668546,0.99217355,0.05168292,-0.11358409,0.9922072,0.051219698,-0.114491664,0.9921303,0.05068682,-0.11595575,0.9919875,0.05015003,-0.116546854,0.9919362,0.04979388,-0.11670566,0.99193,0.049544126,-0.11781445,0.99182355,0.049048495,-0.11848031,0.9918429,0.047011197,-0.114944205,0.9921538,0.0491789,-0.11405239,0.99224806,0.049353957,-0.113187544,0.9923452,0.049392078,-0.11285698,0.99238974,0.049253095,-0.11272869,0.99242663,0.04880156,-0.113252886,0.9924478,0.047129497,-0.11326389,0.99247026,0.04662745,-0.113641344,0.99245226,0.046088107,-0.11370429,0.99246335,0.04569296,-0.11323341,0.99255735,0.044811636,-0.11354366,0.9925435,0.04432992,-0.13720617,0.9902792,0.022837607,-0.13634291,0.9904914,0.0183678,-0.1357075,0.9906092,0.016638365,-0.14536873,0.9893753,-0.0021154918,-0.14548036,0.98936105,0.00045277597,-0.1521072,0.9883618,0.0021008784,-0.15188053,0.9883382,0.010953422,-0.15620224,0.98768955,0.008380303,-0.16105537,0.9867825,0.017931148,-0.14883973,0.9883852,0.03068198,-0.17262737,0.9846777,0.024690703,-0.19168015,0.9811144,0.025947947,-0.1962858,0.98049104,0.010448599,-0.20154254,0.9793743,0.014375786,-0.21607225,0.9760773,0.024205612,-0.23081653,0.9729813,0.0055841613,-0.2316406,0.97269344,0.014494718,-0.22882937,0.9729504,0.03169684,-0.18718876,0.9814755,0.04081976,-0.18610078,0.98180854,0.037663154,-0.17765728,0.9832175,0.041489005,-0.17534582,0.98322475,0.050228674,-0.15565103,0.9863016,0.05460637,-0.15264745,0.9865347,0.058720093,-0.11337917,0.9919593,0.056231104,-0.11346507,0.9920674,0.054110326,-0.113870844,0.99258184,0.04259978,-0.11663581,0.99235624,0.040313527,-0.11658225,0.9923816,0.039842233,-0.1204458,0.9920174,0.037339672,-0.11943559,0.99222773,0.034918346,-0.12764762,0.99160707,0.020531531,-0.13935672,0.9899031,0.025914732,-0.13206692,0.99115527,0.01302348,-0.1379494,0.9903746,0.01131583,-0.13957663,0.9901542,0.010627967,-0.14706963,0.9891227,0.0026226477,-0.15888304,0.9870589,0.021701094,-0.15221033,0.9879303,0.028735187,-0.15167145,0.9880073,0.028937437,-0.1546098,0.9873164,0.03608413,-0.17661552,0.9839553,0.025275407,-0.19340135,0.9808544,0.022817204,-0.23156069,0.9727146,0.014350634,-0.22770503,0.97327226,0.029857336,-0.23072378,0.9723882,0.035038725,-0.21889134,0.9752052,0.032578893,-0.21592729,0.97586036,0.03274008,-0.21391176,0.9763321,0.031895727,-0.20600179,0.97758555,0.043470982,-0.20427883,0.97795135,0.043373868,-0.1934056,0.979998,0.04688448,-0.18543744,0.98189986,0.03854434,-0.1772008,0.9832372,0.04294771,-0.16280694,0.98522663,0.053126607,-0.15514073,0.9863994,0.054291215,-0.11732335,0.99133104,0.059144102,-0.11387155,0.9921138,0.052377407,-0.116788805,0.9923368,0.040349595,-0.12093164,0.99194235,0.03776168,-0.12050072,0.9920524,0.036216095,-0.124586865,0.99169034,0.032068152,-0.12517561,0.99183816,0.0242522,-0.13644017,0.9904973,0.017298786,-0.138276,0.9903248,0.011686133,-0.14060369,0.9900648,0.0015190762,-0.1510269,0.98845506,0.012144724,-0.15552385,0.9877857,0.00957557,-0.14742032,0.9885751,0.031409495,-0.14512624,0.9888353,0.033811692,-0.16208135,0.98636776,0.028430365,-0.17659555,0.9838193,0.030225832,-0.17880711,0.9837728,0.014799578,-0.18869726,0.98180544,0.021246223,-0.18932684,0.98154336,0.026981907,-0.21645865,0.97614896,0.016699368,-0.21903412,0.97565764,0.010779924,-0.23046541,0.9724218,0.035798594,-0.2319938,0.9719964,0.037440293,-0.22205028,0.9741183,0.042275,-0.21524741,0.97603,0.03215526,-0.20488502,0.9778261,0.043338913,-0.18752287,0.9814348,0.040260434,-0.1772866,0.983294,0.041259713,-0.16369256,0.98506784,0.053349085,-0.15083496,0.9867956,0.05901906,-0.11365371,0.9919232,0.05631308,-0.11894913,0.9917907,0.046928868,-0.12606384,0.99152476,0.03140933,-0.124972515,0.99184865,0.02486134,-0.13874875,0.99025476,0.01201146,-0.14664172,0.989182,0.0038935894,-0.15425162,0.9874288,0.03450914,-0.17666909,0.9837897,0.030755967,-0.17716567,0.98384064,0.025882376,-0.2310567,0.97224784,0.036701173,-0.22209202,0.9740076,0.044545505,-0.21416709,0.9762916,0.031419944,-0.21372132,0.97639203,0.031334452,-0.19359954,0.9799648,0.046779018,-0.16318597,0.985179,0.052846197,-0.14161187,0.9883562,0.055660862,-0.13805008,0.990103,0.02526348,-0.1368055,0.99042773,0.018360686,-0.13669944,0.9904549,0.017672427,-0.14671656,0.9891666,0.0048635853,-0.14723404,0.9890824,0.006178608,-0.15389124,0.98802346,0.011275218,-0.15282917,0.98808897,0.017983546,-0.15423775,0.9874039,0.035272602,-0.21772179,0.9758213,0.019236282,-0.23064387,0.97236377,0.036223594,-0.22259039,0.97394776,0.04335106,-0.16933128,0.9844237,0.04729572,-0.118353546,0.9917886,0.04845375,-0.12529238,0.99160904,0.031833384,-0.15081993,0.9884803,0.012648014,-0.15161736,0.9883532,0.013042717,-0.15437733,0.9873535,0.03606579,-0.17759973,0.98374164,0.0266596,-0.20631093,0.9781191,0.026812276,-0.21788502,0.9757682,0.020064255,-0.22260207,0.97391105,0.044109512,-0.21919188,0.97516483,0.03175652,-0.18577285,0.9818761,0.03752033,-0.17042,0.9842437,0.047131233,-0.16348161,0.985126,0.052919764,-0.15090826,0.9884575,0.013358807,-0.15584227,0.98772085,0.010988311,-0.1780745,0.9836162,0.028082907,-0.18924506,0.98154646,0.0274389,-0.19132726,0.98117185,0.02637503,-0.17019351,0.9843041,0.046686757,-0.14157194,0.9883913,0.055136282,-0.11882401,0.99177414,0.04759154,-0.15540782,0.98778385,0.011464639,-0.1781126,0.9835747,0.029269788,-0.19066522,0.9812876,0.026860386,-0.21767724,0.9757947,0.02100975,-0.13928187,0.9899113,0.02600336,-0.15406552,0.98795474,0.014467313,-0.17792511,0.98359114,0.029851314,-0.1896911,0.9814614,0.02739975,-0.21709813,0.9758807,0.022919139,-0.14792237,0.9879034,0.04653804,-0.17732708,0.9836822,0.030404722,-0.15220124,0.98730445,0.045438997,-0.20727019,0.97791594,0.026822876,-0.21659419,0.9759708,0.023830762,-0.2080923,0.9777423,0.026787557,-0.13660541,0.99001616,0.034742013,-0.18141502,0.9828608,0.032759916,-0.21906783,0.9752039,0.03141114,-0.20877889,0.97759813,0.026706848,-0.18175992,0.9827975,0.03274743,-0.2108445,0.97716707,0.02625186,-0.18280067,0.98260874,0.03261818,-0.21856853,0.97533405,0.030842986,-0.21801761,0.97547174,0.030384267,-0.18418191,0.98227125,0.034931265,-0.1862306,0.98189485,0.034650683,-0.21122868,0.9772452,-0.01934619,-0.21049337,0.97738636,-0.020210283,-0.2105867,0.9773505,-0.020959716,-0.21156378,0.97709894,-0.02277012,-0.21177745,0.97704756,-0.022986127,-0.21223383,0.97694343,-0.023202756,-0.21293028,0.9767867,-0.023419745,-0.2135461,0.9766517,-0.023439405,-0.21517296,0.9763091,-0.022828642,-0.215528,0.97623605,-0.02260369,-0.21623708,0.9761985,-0.016672648,-0.21676648,0.9761153,-0.014535096,-0.2165814,0.9761619,-0.014158242,-0.21659285,0.9761699,-0.013414153,-0.21646659,0.97619927,-0.01331391,-0.21386553,0.9767834,-0.012478068,-0.21339123,0.9768972,-0.011664114,-0.2125223,0.9770835,-0.01192182,-0.21199949,0.9771933,-0.012227446,-0.2115449,0.9772841,-0.012831508,-0.21140972,0.9773079,-0.013237281,-0.21148835,0.9772678,-0.014843406,-0.21102858,0.97732806,-0.017226597,-0.21097414,0.97732013,-0.018309124,-0.25663874,0.9663776,-0.015839389,-0.2560333,0.9665413,-0.015648713,-0.25443515,0.966958,-0.015968531,-0.25368434,0.96715045,-0.01625762,-0.25238854,0.9674845,-0.016546082,-0.25110367,0.9678081,-0.017158525,-0.24894632,0.96834004,-0.018529145,-0.24805982,0.9685543,-0.01920584,-0.24748346,0.9686831,-0.0201235,-0.24728328,0.96871334,-0.021104755,-0.24735722,0.9686778,-0.021856366,-0.24867272,0.96827275,-0.024692854,-0.24959505,0.9680122,-0.025586993,-0.24997352,0.9679016,-0.026073191,-0.25133067,0.9675255,-0.026969977,-0.25358334,0.9669093,-0.027961737,-0.25367153,0.96687406,-0.028376993,-0.25546768,0.96637034,-0.029403983,-0.25613627,0.9661867,-0.029622056,-0.25657168,0.9660693,-0.029684592,-0.25707734,0.9659342,-0.029704679,-0.25728568,0.96588236,-0.029586352,-0.2575373,0.96584415,-0.028628785,-0.25812298,0.9656892,-0.02858166,-0.2584787,0.96559614,-0.028509798,-0.25860602,0.9655649,-0.028413853,-0.25813898,0.9657031,-0.027959635,-0.2584875,0.9656203,-0.027598055,-0.2603069,0.96515554,-0.026741363,-0.26104772,0.9650044,-0.024911731,-0.26117328,0.9649894,-0.024164336,-0.26288635,0.9645572,-0.022808827,-0.2636153,0.96437347,-0.022154277,-0.2639567,0.9642907,-0.021688515,-0.26410893,0.9642654,-0.020945959,-0.26404524,0.9643148,-0.01941832,-0.26417246,0.9642999,-0.018401252,-0.26400188,0.96437705,-0.016730657,-0.26388347,0.9644138,-0.01647773,-0.26351774,0.9645162,-0.016335184,-0.2625421,0.9647842,-0.016221704,-0.2624289,0.9648171,-0.016093057,-0.2621739,0.9648881,-0.015993314,-0.2607604,0.9652746,-0.015781945,-0.259669,0.96556956,-0.01573012,-0.25915068,0.96570843,-0.015751682,-0.25785458,0.9660519,-0.015963396,-0.25746083,0.9661566,-0.015980644,-0.25328854,0.96700186,-0.027428161,-0.2522969,0.96727186,-0.027044758,-0.25722194,0.9659234,-0.028789902,-0.26290444,0.9646841,-0.016302358,-0.27656668,0.95995986,-0.04458581,-0.27234206,0.961001,-0.048030596,-0.27250817,0.96091866,-0.048729923,-0.27308843,0.96072644,-0.04926947,-0.27336422,0.960646,-0.049308162,-0.2738941,0.9605081,-0.0490534,-0.2739958,0.9605067,-0.048510533,-0.2745762,0.96029985,-0.04931662,-0.27361688,0.96050525,-0.05063108,-0.27385545,0.9603198,-0.052811284,-0.2740411,0.9602518,-0.053084504,-0.27444947,0.9601247,-0.053273533,-0.27508003,0.9599384,-0.053378172,-0.27569562,0.95976317,-0.053353075,-0.27629465,0.95959955,-0.053197183,-0.2771436,0.9593777,-0.052781314,-0.2791924,0.95879143,-0.052636888,-0.2777625,0.95917237,-0.0532579,-0.27718085,0.95931274,-0.053756922,-0.27711368,0.9592935,-0.054442585,-0.277306,0.9591757,-0.055527702,-0.27779517,0.9589873,-0.056331445,-0.278213,0.95884466,-0.0566964,-0.27851418,0.95875216,-0.056781773,-0.2792193,0.9585509,-0.05671689,-0.2794944,0.9584768,-0.05661427,-0.28259107,0.9576987,-0.054364,-0.28266612,0.95771444,-0.05369305,-0.28247604,0.9578203,-0.05279769,-0.28229052,0.9579018,-0.052309245,-0.2816994,0.958118,-0.051529307,-0.28210548,0.958024,-0.05105343,-0.28398556,0.9575185,-0.050104514,-0.2845643,0.9573894,-0.049281422,-0.28439957,0.9573754,-0.050490253,-0.28354138,0.95759493,-0.051149383,-0.28326565,0.9576477,-0.051686108,-0.28335088,0.95759445,-0.05220309,-0.2836442,0.9574905,-0.0525156,-0.28419375,0.95730865,-0.052858844,-0.28474155,0.9571363,-0.05303178,-0.28517675,0.9570076,-0.05301604,-0.28554642,0.9569178,-0.052645557,-0.2893855,0.9557875,-0.05221432,-0.2879639,0.95619106,-0.05268257,-0.28795004,0.9561873,-0.05282639,-0.29080227,0.9550007,-0.058375087,-0.2894948,0.9553869,-0.058554452,-0.28836963,0.955706,-0.05889804,-0.28785756,0.95584285,-0.05918173,-0.28717473,0.9560125,-0.059756164,-0.2866347,0.95616734,-0.059870917,-0.2858619,0.95639664,-0.05990402,-0.28513405,0.95659506,-0.060203914,-0.2848202,0.95666087,-0.060642377,-0.28450328,0.9566983,-0.061532613,-0.28457567,0.9566313,-0.062235538,-0.28534082,0.9563349,-0.06327845,-0.28573883,0.9561938,-0.06361407,-0.2867513,0.9558484,-0.064246126,-0.28779107,0.95549905,-0.06479056,-0.28873584,0.9551901,-0.06514182,-0.2890408,0.955095,-0.065184474,-0.2898324,0.9548616,-0.06508846,-0.29214814,0.9542128,-0.06424495,-0.29438916,0.95364416,-0.062433016,-0.29535598,0.9533544,-0.062291473,-0.29579338,0.9532396,-0.06197179,-0.29621854,0.95311177,-0.061907236,-0.29696962,0.95287836,-0.061902322,-0.2974479,0.9527405,-0.061728045,-0.29829168,0.95254403,-0.060679123,-0.29791042,0.9527296,-0.05962949,-0.2986943,0.95255023,-0.05856423,-0.29958612,0.95228165,-0.058375947,-0.2999314,0.952183,-0.058211904,-0.30126253,0.9518748,-0.05634971,-0.30394948,0.9510773,-0.055377748,-0.30565083,0.9505782,-0.054577462,-0.30853656,0.9497386,-0.052931543,-0.31040367,0.9491597,-0.05239747,-0.31210682,0.9486398,-0.05168945,-0.3143929,0.9479031,-0.051349558,-0.31504577,0.9476966,-0.051159646,-0.31542137,0.9475856,-0.05090149,-0.31554303,0.94759834,-0.04989937,-0.31589884,0.9475028,-0.04946152,-0.31662938,0.9472867,-0.048925363,-0.31692106,0.947222,-0.04828567,-0.31677344,0.94730884,-0.047545243,-0.31636494,0.9474831,-0.046786122,-0.31503028,0.94799566,-0.045388885,-0.3146835,0.9481155,-0.04529129,-0.3142084,0.9482749,-0.045251895,-0.31307018,0.9486495,-0.045289505,-0.308551,0.9501415,-0.04502749,-0.30900252,0.9499888,-0.0451523,-0.3096402,0.9497784,-0.04521072,-0.31046185,0.9495105,-0.04520233,-0.3110529,0.949324,-0.04505587,-0.31141263,0.9492195,-0.04477176,-0.31240174,0.94903946,-0.041584942,-0.3124143,0.94906443,-0.04091509,-0.31193715,0.9492801,-0.03952972,-0.31139523,0.9494848,-0.03887849,-0.31063643,0.9497578,-0.03827708,-0.31017572,0.9499278,-0.03779073,-0.3096993,0.95015633,-0.03590699,-0.3074885,0.9508815,-0.03571014,-0.30648124,0.951192,-0.03609699,-0.30634743,0.95122725,-0.036303632,-0.30610725,0.951304,-0.036318533,-0.30455115,0.95184034,-0.03533535,-0.30411714,0.95198447,-0.03519072,-0.3035997,0.9521533,-0.035089396,-0.30304483,0.95232797,-0.03514696,-0.30245095,0.95250875,-0.03536261,-0.30166966,0.9527345,-0.03595002,-0.3015234,0.9527803,-0.0359623,-0.3015552,0.9527813,-0.035667453,-0.30130032,0.9528843,-0.03506567,-0.30052817,0.9531543,-0.034346472,-0.2998742,0.9533719,-0.03402241,-0.2990183,0.9536503,-0.033752415,-0.2979375,0.9539918,-0.033659194,-0.2966304,0.9543961,-0.03374017,-0.29545954,0.9547542,-0.033883233,-0.29523912,0.95481396,-0.034119032,-0.2951432,0.95482916,-0.03452142,-0.2954553,0.9546933,-0.035592053,-0.2961702,0.95443225,-0.03663698,-0.29551902,0.9546193,-0.03702089,-0.29482132,0.954852,-0.03658035,-0.2940662,0.95508635,-0.03653934,-0.29273245,0.95547146,-0.037175886,-0.29218602,0.9556129,-0.03783263,-0.29197237,0.95568067,-0.03777032,-0.29168123,0.9557835,-0.03741651,-0.2913615,0.9558854,-0.037302803,-0.29101205,0.955987,-0.037427995,-0.29001433,0.9562654,-0.03805591,-0.2893216,0.9564457,-0.038790453,-0.289112,0.95649165,-0.039216924,-0.2889808,0.9564862,-0.040302005,-0.28914398,0.95640934,-0.04095067,-0.28951114,0.9562693,-0.04162024,-0.29034755,0.955968,-0.042702124,-0.2885156,0.9565324,-0.04247865,-0.28748688,0.95689356,-0.041303694,-0.2849481,0.9577487,-0.039012253,-0.28426257,0.9580189,-0.037343528,-0.28360885,0.9582568,-0.036192823,-0.2830634,0.9584286,-0.03591168,-0.2824111,0.95861346,-0.036113124,-0.28199753,0.9587253,-0.036376324,-0.28180015,0.9587614,-0.036950193,-0.28091487,0.95900106,-0.03746696,-0.28115064,0.95895153,-0.036963254,-0.2805874,0.95913744,-0.036415923,-0.28054854,0.95916975,-0.03586037,-0.2802718,0.9592755,-0.035189874,-0.27993473,0.9593866,-0.034840833,-0.27913052,0.95964104,-0.03428138,-0.27899405,0.9596822,-0.034239266,-0.27846572,0.9598354,-0.034246944,-0.27700558,0.96024656,-0.0345604,-0.27639592,0.9604146,-0.03477238,-0.27604777,0.9605067,-0.034994137,-0.27568445,0.96059436,-0.03544831,-0.27509716,0.96071887,-0.036617026,-0.27503732,0.9607198,-0.037039727,-0.2750708,0.9606791,-0.03783742,-0.2752328,0.9606133,-0.03832751,-0.27587,0.9603823,-0.03951687,-0.27604392,0.96025515,-0.041350294,-0.27637196,0.9601013,-0.042708185,-0.27636567,0.9600463,-0.043968085,-0.27483994,0.9602701,-0.048417754,-0.27758002,0.95928127,-0.052238137,-0.29069817,0.9553136,-0.05357642,-0.30029,0.95212626,-0.057284452,-0.28200322,0.9586887,-0.03728585,-0.27386037,0.9605714,-0.047990855,-0.28007376,0.9585681,-0.052018214,-0.28464684,0.95732665,-0.050018866,-0.28551868,0.9569579,-0.052064497,-0.28956336,0.95574313,-0.052039783,-0.29795688,0.9527516,-0.05904325,-0.31033692,0.9495159,-0.045941688,-0.30827856,0.95023096,-0.045004923,-0.29600275,0.9544633,-0.03717833,-0.28934848,0.9558273,-0.05168738,-0.2978353,0.95277697,-0.05924682,-0.30060294,0.9520543,-0.05683667,-0.30937693,0.9498258,-0.04600948,-0.2740504,0.9605223,-0.04788793,-0.27792194,0.95919263,-0.05204747,-0.2798194,0.95864844,-0.05190661,-0.29113388,0.9551689,-0.05379041,-0.29128313,0.95487326,-0.058062416,-0.30818668,0.950257,-0.045084305,-0.29627368,0.9543842,-0.03705053,-0.2820084,0.9586766,-0.037557036,-0.28146538,0.9588311,-0.037684914,-0.27906674,0.9588679,-0.051905,-0.28569955,0.9569166,-0.051831134,-0.29019272,0.95600325,-0.042964634,-0.28885102,0.9564195,-0.042740587,-0.28615078,0.95679027,-0.051673222,-0.29160708,0.9548297,-0.05714549,-0.28182024,0.9587272,-0.037675936,-0.28685609,0.9565866,-0.05153329,-0.29158947,0.95489526,-0.056130417,-0.30859476,0.95010424,-0.045510452,-0.2884496,0.95611644,-0.05136371,-0.29121423,0.9551386,-0.053893287,-0.28920367,0.956306,-0.04289652,-0.2887518,0.9560235,-0.05139494,-0.28990456,0.95609045,-0.042969193,-0.41684002,0.9082241,0.037058067,-0.4141407,0.90950763,0.0358244,-0.41309988,0.91003585,0.034398977,-0.41253054,0.9102921,0.03445036,-0.4117386,0.9106266,0.035078947,-0.41123846,0.91084725,0.035216723,-0.4101413,0.9113524,0.03494252,-0.4093137,0.91173965,0.034542102,-0.4085812,0.9120879,0.03401427,-0.4079038,0.9124457,0.03251516,-0.4070739,0.9128321,0.032069534,-0.40685353,0.9129378,0.03185541,-0.4068058,0.912967,0.031625632,-0.4074483,0.91271406,0.030642817,-0.40832248,0.9123484,0.029885279,-0.41042528,0.91143376,0.028975679,-0.4114679,0.91097385,0.028649334,-0.41318423,0.91020596,0.028352024,-0.41505018,0.9093616,0.028191853,-0.42152086,0.90638375,0.028083997,-0.42333812,0.90554166,0.027913012,-0.4270809,0.9038015,0.027289875,-0.42861438,0.9030792,0.027159417,-0.42960286,0.9026077,0.027217273,-0.43158036,0.9016553,0.0274969,-0.4367091,0.89918816,0.027309148,-0.43891814,0.8982097,0.023878234,-0.43928272,0.8980403,0.023544403,-0.44043782,0.89749265,0.022836199,-0.44229215,0.89660156,0.021984592,-0.4429714,0.8962718,0.021750823,-0.44358957,0.89596623,0.021742905,-0.44417188,0.8956739,0.021901222,-0.44431007,0.8956003,0.022104278,-0.44448778,0.8954926,0.02288287,-0.44447488,0.895471,0.023953358,-0.44434774,0.8955199,0.02447826,-0.44286886,0.8961947,0.026499907,-0.44282302,0.896152,0.02862394,-0.44178197,0.896537,0.032406095,-0.4424881,0.8961611,0.033160865,-0.44842666,0.893143,0.03477137,-0.4504303,0.8921061,0.035485182,-0.4506674,0.8919528,0.036318183,-0.45026332,0.89210767,0.037507858,-0.4491785,0.89256394,0.039602004,-0.44829065,0.89295477,0.04083271,-0.4472059,0.8934437,0.042014267,-0.44651508,0.8937631,0.042565152,-0.44585714,0.89407635,0.042882454,-0.44360644,0.89516085,0.04359371,-0.44239858,0.89571553,0.04446568,-0.44209963,0.8958182,0.045362167,-0.44128636,0.8961758,0.046208836,-0.4386552,0.8973614,0.048208922,-0.4376766,0.89781713,0.048616715,-0.4369522,0.8981644,0.04871871,-0.43544444,0.89889675,0.04871142,-0.43314016,0.8997635,0.05305891,-0.4341829,0.89926344,0.0530135,-0.4347732,0.8989718,0.053122446,-0.43503094,0.8987974,0.0539571,-0.43530327,0.89849305,0.056756355,-0.4357236,0.89823437,0.05761874,-0.43862447,0.8967687,0.058433708,-0.43905142,0.8965389,0.05875258,-0.44055972,0.89523077,0.06685074,-0.44118044,0.89480346,0.068458505,-0.44135365,0.89463484,0.06953729,-0.44129902,0.8946425,0.06978544,-0.44095185,0.8947807,0.07020671,-0.43886125,0.8956837,0.07177376,-0.4374046,0.8962835,0.07316463,-0.43577984,0.89696693,0.07447317,-0.43511346,0.89727336,0.07467761,-0.43441567,0.8977428,0.07308146,-0.4340944,0.8980388,0.0713326,-0.43386298,0.8980984,0.071987405,-0.4334988,0.89827263,0.07200742,-0.43292645,0.89858025,0.07161174,-0.43221873,0.89898336,0.07082279,-0.4313741,0.89948106,0.06964364,-0.43132213,0.89956146,0.06892336,-0.4325227,0.8990778,0.06769993,-0.43219283,0.89937305,0.06585968,-0.43345773,0.89896137,0.06311018,-0.4335153,0.89903295,0.06167802,-0.43195602,0.8997018,0.06285431,-0.43149775,0.8999048,0.06309557,-0.43109506,0.9000946,0.06314062,-0.43044963,0.90041476,0.062979,-0.42724973,0.9020283,0.06166502,-0.42531964,0.9030313,0.060313053,-0.4241211,0.90366656,0.05922898,-0.42350796,0.904013,0.058323022,-0.4231455,0.9042402,0.057424523,-0.4228158,0.9045438,0.055020813,-0.4226057,0.9046807,0.054379776,-0.42096466,0.9055992,0.05175825,-0.42027962,0.90601003,0.050108023,-0.4201679,0.90607136,0.04993642,-0.4181901,0.9070727,0.048333526,-0.4178216,0.90727746,0.04767294,-0.4174254,0.90755033,0.045917835,-0.41737252,0.90764016,0.04460354,-0.41653877,0.90810996,0.042798977,-0.4154559,0.90862703,0.042347156,-0.41471547,0.9089979,0.041639697,-0.41344163,0.9096603,0.039801747,-0.4134531,0.9096762,0.03931641,-0.4136942,0.9095796,0.03901456,-0.41604498,0.9085466,0.038073286,-0.43905202,0.89641804,0.060564302,-0.43246406,0.8990487,0.068456635,-0.43252105,0.8990315,0.068322115,-0.41284966,0.91015095,0.034357578,-0.435995,0.8995094,0.028128874,-0.44266367,0.89560145,0.044124246,-0.43268594,0.9000073,0.052627925,-0.43927035,0.8962113,0.062022153,-0.43372914,0.8989195,0.061828353,-0.41693792,0.9079079,0.043197688,-0.44209403,0.8963637,0.032940757,-0.4337147,0.9006075,0.028243432,-0.43529004,0.8998386,0.02851439,-0.44185844,0.896489,0.032688837,-0.43471923,0.8992381,0.04888763,-0.41687125,0.9081863,0.037629504,-0.41700882,0.90813565,0.037326314,-0.43459433,0.9001763,0.028468091,-0.43281922,0.8999958,0.05172128,-0.43313923,0.8998914,0.05085183,-0.43400124,0.8995518,0.04949166,-0.23266062,0.9720505,-0.031414542,-0.23190331,0.97223324,-0.03135837,-0.23139195,0.972354,-0.031391863,-0.23096476,0.97244644,-0.031672727,-0.23063883,0.97250384,-0.0322801,-0.22977202,0.97267604,-0.033258766,-0.22934856,0.9727707,-0.033412017,-0.2280543,0.97304773,-0.03419522,-0.22749956,0.9731541,-0.03485636,-0.22820802,0.97295016,-0.03590322,-0.22863576,0.9728347,-0.03630902,-0.22997662,0.97251874,-0.0363054,-0.23123848,0.9721808,-0.037326675,-0.23000099,0.9724566,-0.037785687,-0.22805208,0.97287333,-0.038854852,-0.22781734,0.97290605,-0.03940847,-0.2275976,0.9729163,-0.040413033,-0.22772273,0.9728308,-0.041745406,-0.22806951,0.9727136,-0.042573825,-0.22888972,0.9724671,-0.04378619,-0.2296493,0.97226995,-0.04418513,-0.22997744,0.97219276,-0.04417691,-0.23034514,0.97211266,-0.044023506,-0.23115876,0.97194433,-0.043471877,-0.23212421,0.9717936,-0.041659743,-0.23335528,0.971513,-0.041326273,-0.23346014,0.9714297,-0.042669456,-0.23365876,0.9713698,-0.04294492,-0.23389506,0.97131103,-0.042987745,-0.23482278,0.9711227,-0.04217836,-0.23498066,0.97111696,-0.041423324,-0.23558201,0.9709991,-0.040765077,-0.23613156,0.97091025,-0.039688878,-0.23618509,0.97085303,-0.04075458,-0.235923,0.9708806,-0.041607045,-0.23595619,0.97085696,-0.041969817,-0.23620844,0.97078866,-0.042129755,-0.23709841,0.9705763,-0.042024378,-0.23777056,0.9704201,-0.041832607,-0.23914361,0.9701254,-0.040829938,-0.23882808,0.9701285,-0.042566326,-0.23794784,0.9703281,-0.04294505,-0.23411217,0.97116375,-0.045083307,-0.23287936,0.9714329,-0.045664594,-0.23228635,0.9715816,-0.045521796,-0.23162496,0.9717355,-0.04560703,-0.23037715,0.97200406,-0.046200126,-0.2300767,0.97206306,-0.046455074,-0.22942773,0.97217,-0.047417197,-0.22933194,0.972171,-0.047857933,-0.22947596,0.9721209,-0.04818458,-0.23005038,0.97195697,-0.048748527,-0.23105499,0.97167796,-0.049553677,-0.23179452,0.9714865,-0.049852192,-0.23261695,0.9713135,-0.049391005,-0.23282856,0.97127724,-0.04910634,-0.23343378,0.9712062,-0.047615495,-0.2343449,0.97092617,-0.048835088,-0.2350776,0.9707218,-0.049373142,-0.23536956,0.9706456,-0.049480546,-0.23610371,0.9704701,-0.049425226,-0.23674995,0.9703291,-0.04910094,-0.23725577,0.97026193,-0.047974262,-0.23799443,0.97005713,-0.048454516,-0.23841974,0.96994877,-0.048532642,-0.23904924,0.96979517,-0.048506152,-0.23969461,0.9696413,-0.048396174,-0.24074277,0.9693987,-0.048052885,-0.240858,0.96937525,-0.047948264,-0.24074946,0.9693679,-0.04863649,-0.2397559,0.96958506,-0.049213327,-0.23860955,0.9698033,-0.050469194,-0.23857567,0.96976584,-0.05134103,-0.23949178,0.96950006,-0.052089177,-0.24101506,0.9690711,-0.053037766,-0.24194044,0.968751,-0.05464715,-0.2425179,0.9685817,-0.05508763,-0.24353513,0.9683379,-0.054884758,-0.24413665,0.96820736,-0.05451463,-0.24418114,0.9682071,-0.05431881,-0.24359971,0.9686175,-0.049389716,-0.24410664,0.96854156,-0.048364673,-0.24386296,0.9686717,-0.046968356,-0.2443393,0.96888024,-0.039615586,-0.24429063,0.968823,-0.041279897,-0.24453701,0.96872795,-0.042045534,-0.2448788,0.96863633,-0.042166814,-0.24546228,0.9684463,-0.04312828,-0.24700963,0.9679769,-0.04479857,-0.24757153,0.9677371,-0.046832435,-0.2477772,0.9676842,-0.04683701,-0.24854825,0.9674735,-0.047103655,-0.24905989,0.9673626,-0.046677306,-0.25085428,0.9669821,-0.044919126,-0.25088438,0.96690845,-0.04631515,-0.2513737,0.9667718,-0.046514474,-0.2534952,0.9662267,-0.046326797,-0.25419438,0.966051,-0.046159584,-0.25457305,0.9659607,-0.0459626,-0.25488177,0.9659386,-0.04469777,-0.25544453,0.9658523,-0.043328583,-0.25460076,0.96612316,-0.042242944,-0.25457585,0.9661487,-0.041807573,-0.25502816,0.96604216,-0.041510776,-0.25525987,0.9659968,-0.041141067,-0.2554456,0.9660078,-0.039704002,-0.25574183,0.96595204,-0.039150055,-0.25577462,0.96596795,-0.03853915,-0.25557452,0.966071,-0.037262265,-0.25567764,0.96607345,-0.03648369,-0.25554067,0.9661324,-0.035876583,-0.25532496,0.966197,-0.035671484,-0.25445804,0.96642405,-0.035716422,-0.25291783,0.96682703,-0.035749264,-0.25375873,0.9666147,-0.035531808,-0.25436297,0.96647394,-0.035036653,-0.25447592,0.96645075,-0.034856007,-0.2543735,0.96649843,-0.034276534,-0.2539829,0.9666053,-0.03415889,-0.25329307,0.96678245,-0.03426856,-0.24895057,0.9679667,-0.032621305,-0.2497019,0.96778494,-0.03226878,-0.24967396,0.9677963,-0.032143593,-0.2474162,0.9683749,-0.032175984,-0.24539864,0.9688971,-0.03190447,-0.24517861,0.96894914,-0.03201527,-0.24364938,0.96927536,-0.033768103,-0.24305548,0.96945643,-0.032837503,-0.24229491,0.9696636,-0.032336194,-0.24181989,0.96978414,-0.032278668,-0.24077132,0.97004265,-0.03234883,-0.23890555,0.9705176,-0.031934004,-0.23799753,0.970756,-0.031464223,-0.23750919,0.9708786,-0.031371027,-0.23678619,0.9710574,-0.031302415,-0.23604588,0.97123504,-0.03138265,-0.23362112,0.9718095,-0.031740915,-0.23323269,0.9719093,-0.03154198,-0.231218,0.9722295,-0.036167808,-0.23334858,0.9713236,-0.045594305,-0.24075255,0.9694556,-0.04684078,-0.24362223,0.96893483,-0.042585205,-0.2552742,0.96602106,-0.040477406,-0.2520422,0.9670917,-0.03476184,-0.24403882,0.9691797,-0.033701673,-0.23325388,0.9715487,-0.04105803,-0.24127787,0.9692661,-0.04804318,-0.24008837,0.9693499,-0.052137293,-0.24979128,0.96722144,-0.045683563,-0.24801967,0.96818155,-0.03332783,-0.24011876,0.97020763,-0.032251973,-0.23408876,0.97169465,-0.031811357,-0.2506848,0.9670288,-0.0448601,-0.25293088,0.96681964,-0.035856664,-0.23463653,0.9715645,-0.031752598,-0.23304807,0.9716006,-0.040999286,-0.23943947,0.970048,-0.040933594,-0.23310223,0.97128326,-0.047666863,-0.24084865,0.9694386,-0.046697605,-0.2536974,0.9666134,-0.03600149,-0.24942067,0.96778,-0.034513358,-0.23246692,0.97172564,-0.041332852,-0.24131845,0.96928626,-0.0474296,-0.2532999,0.96671724,-0.03601248,-0.23923977,0.97003996,-0.042271037,-0.2438524,0.96900874,-0.03947179,-0.23960873,0.9699749,-0.041669674,-0.23962136,0.96998835,-0.041281488,-0.18033181,0.9826634,-0.043047663,-0.17951204,0.98278105,-0.04378155,-0.17937796,0.9827685,-0.04460624,-0.17928542,0.9826484,-0.047527846,-0.17862098,0.98268914,-0.049159147,-0.1789325,0.98262006,-0.04940616,-0.17985183,0.9824259,-0.049926523,-0.18109521,0.98217,-0.050464053,-0.18191266,0.9820056,-0.05072309,-0.18279974,0.9818297,-0.05093802,-0.1833008,0.98173535,-0.05095663,-0.18348981,0.9817376,-0.0502274,-0.18621676,0.98125964,-0.049525507,-0.18670823,0.9811462,-0.049921915,-0.18715991,0.9810538,-0.050045077,-0.18757242,0.9809828,-0.049893405,-0.1876581,0.98097914,-0.04964248,-0.18741629,0.9810429,-0.049293745,-0.18554628,0.9814809,-0.047622323,-0.1852893,0.9815792,-0.04658527,-0.1860021,0.9814531,-0.046400446,-0.18658209,0.9813558,-0.046130016,-0.18685926,0.98130167,-0.046158668,-0.18810523,0.98100245,-0.047440708,-0.18837711,0.9809402,-0.047647767,-0.18862247,0.9808917,-0.04767631,-0.1890554,0.98083293,-0.04716744,-0.19060382,0.9805896,-0.045980573,-0.19079307,0.9804892,-0.04731729,-0.1911892,0.98039144,-0.047742732,-0.19260545,0.9800628,-0.048786636,-0.19150487,0.9802,-0.050337017,-0.19153029,0.9801776,-0.050676446,-0.19178575,0.9801074,-0.051064733,-0.19227289,0.97998905,-0.051503394,-0.19311613,0.9798133,-0.051692586,-0.1943146,0.9795797,-0.05162811,-0.19523858,0.9794052,-0.051451486,-0.19640574,0.97920376,-0.050840225,-0.19698828,0.97911465,-0.05030038,-0.19747265,0.97908103,-0.049039945,-0.19661711,0.9794735,-0.044422626,-0.1972573,0.97932947,-0.044759016,-0.19765511,0.97924715,-0.04480481,-0.19822104,0.9791351,-0.04475359,-0.19858633,0.97906643,-0.044635646,-0.19874988,0.97904164,-0.044451293,-0.19856165,0.9791342,-0.04323708,-0.19908082,0.9790956,-0.041697115,-0.20054385,0.97886515,-0.040065322,-0.20079139,0.9788454,-0.039299536,-0.2019379,0.9786176,-0.03909776,-0.20273972,0.97846484,-0.03877066,-0.2030212,0.9784067,-0.03876351,-0.20431013,0.97813326,-0.038893778,-0.2046318,0.97806656,-0.03887984,-0.2054731,0.97789526,-0.03875128,-0.2061885,0.9777532,-0.038535126,-0.20738682,0.9775364,-0.037593815,-0.20824672,0.97739303,-0.036554288,-0.20792416,0.97750455,-0.035388507,-0.20785497,0.9775619,-0.03419146,-0.2076673,0.97762537,-0.03350981,-0.2073489,0.9776995,-0.03331721,-0.20589662,0.9780227,-0.032836244,-0.20540492,0.97813624,-0.03253151,-0.2050802,0.9782055,-0.032498352,-0.20410164,0.9784094,-0.032520544,-0.20329534,0.978572,-0.032677434,-0.20031776,0.97914964,-0.033746194,-0.19980735,0.9792333,-0.034338094,-0.1994186,0.9793115,-0.034367528,-0.19875976,0.97945064,-0.034219805,-0.19827768,0.97955054,-0.034156278,-0.19719999,0.9797691,-0.034127254,-0.19663884,0.9799021,-0.033542074,-0.19580458,0.9800798,-0.033227205,-0.19551907,0.9801443,-0.033006854,-0.1951698,0.9802127,-0.03304352,-0.19445282,0.9803388,-0.03352436,-0.1924783,0.98071235,-0.0339902,-0.19067958,0.98102397,-0.03511839,-0.18961091,0.9811523,-0.037254885,-0.18871619,0.981342,-0.036797877,-0.18830507,0.98142356,-0.036729548,-0.18789376,0.98149884,-0.036824062,-0.18766637,0.9815368,-0.03697035,-0.18741022,0.9815678,-0.037444923,-0.18551816,0.981889,-0.038431328,-0.18524516,0.9819203,-0.038944785,-0.1853301,0.98188996,-0.03930399,-0.18586501,0.9817548,-0.040146653,-0.18619037,0.9816615,-0.040913314,-0.18712054,0.98147404,-0.041166186,-0.1878753,0.98129576,-0.04197023,-0.18739599,0.98139375,-0.0418219,-0.18717037,0.9814368,-0.041822452,-0.18663086,0.98152494,-0.04216355,-0.18630353,0.98159724,-0.041926768,-0.18572484,0.98171747,-0.04167848,-0.18526717,0.9818098,-0.041539796,-0.18488815,0.98188466,-0.041459445,-0.18458703,0.98194224,-0.041437015,-0.18212183,0.9823888,-0.041759487,-0.18084557,0.9825976,-0.042389147,-0.18468088,0.98159754,-0.0485716,-0.19174254,0.98035043,-0.046344854,-0.19671176,0.97929204,-0.047870398,-0.1974711,0.9797092,-0.034278877,-0.19100651,0.9808972,-0.036840815,-0.1874576,0.98140407,-0.04130032,-0.18354566,0.98179704,-0.048842408,-0.18936677,0.9808504,-0.045527127,-0.19002925,0.9807387,-0.045171753,-0.19331813,0.9799926,-0.04735599,-0.19016698,0.98103637,-0.037472885,-0.18824731,0.98122334,-0.04199606,-0.18407485,0.9817173,-0.048451792,-0.1923108,0.9802503,-0.04610787,-0.19865584,0.97915035,-0.042432133,-0.18795095,0.98129493,-0.04164906,-0.18518598,0.9815935,-0.04669407,-0.18974575,0.98079073,-0.04523322,-0.1931395,0.9800631,-0.046620145,-0.19055451,0.9809608,-0.037482448,-0.15551127,0.98782265,-0.004764825,-0.15406033,0.98804843,-0.0050717965,-0.15314282,0.98818964,-0.0053421203,-0.15212034,0.9883445,-0.005875164,-0.15150127,0.98843646,-0.00638315,-0.15025121,0.98861575,-0.0079655005,-0.14989571,0.98866326,-0.008728942,-0.15009052,0.988627,-0.009455731,-0.1500326,0.9886237,-0.010648448,-0.15018304,0.9885973,-0.010974328,-0.1503214,0.988575,-0.011091978,-0.15058781,0.9885338,-0.011145569,-0.15102583,0.9884667,-0.011174115,-0.15145421,0.9884011,-0.011171682,-0.1518722,0.9883374,-0.011137967,-0.1521623,0.988295,-0.010934754,-0.15240411,0.9882638,-0.010374994,-0.15255915,0.98825264,-0.009081174,-0.15471932,0.9879146,-0.009310584,-0.1542674,0.9879753,-0.010316675,-0.15502813,0.98784393,-0.011428912,-0.15541193,0.98777336,-0.012284232,-0.15499096,0.98782355,-0.01350684,-0.15575984,0.98769045,-0.01436653,-0.15805823,0.9873121,-0.015245098,-0.15848717,0.98724246,-0.015301744,-0.16015975,0.9869999,-0.013416554,-0.16210352,0.9866877,-0.013031973,-0.1627201,0.98659986,-0.011955546,-0.16354571,0.98645234,-0.0128294,-0.16324301,0.98649323,-0.013519899,-0.16323015,0.98648906,-0.013972455,-0.16190158,0.9867042,-0.01423782,-0.16117589,0.9868156,-0.014741415,-0.16102,0.9868291,-0.015519414,-0.16036502,0.9869274,-0.016045058,-0.16038619,0.9869139,-0.01665056,-0.16082619,0.9868314,-0.017280532,-0.16318204,0.98643917,-0.017588368,-0.16467215,0.9862015,-0.017020332,-0.1660332,0.9859851,-0.016321981,-0.16652487,0.9858948,-0.016760426,-0.1661416,0.98594666,-0.017496977,-0.16615582,0.98593897,-0.017792605,-0.16655818,0.98585826,-0.018489346,-0.16688235,0.9857999,-0.018675642,-0.16718417,0.98574764,-0.01873525,-0.16756825,0.9856831,-0.018702244,-0.16803366,0.98560625,-0.01857574,-0.16842434,0.9855439,-0.018341608,-0.16889751,0.9854724,-0.017828396,-0.1690653,0.9854498,-0.01748314,-0.16885392,0.9854997,-0.016693866,-0.17056538,0.9852142,-0.016138433,-0.170635,0.98521227,-0.015506123,-0.17004432,0.9853533,-0.012798955,-0.17066988,0.9852333,-0.013679654,-0.17093517,0.985186,-0.013774093,-0.17132127,0.98511827,-0.013822389,-0.17182723,0.9850301,-0.013824308,-0.17162904,0.98500836,-0.017378917,-0.17011812,0.9852165,-0.020204784,-0.17207105,0.9848809,-0.02002863,-0.17287609,0.98474,-0.02002304,-0.17392422,0.9845541,-0.020090083,-0.17514853,0.9843421,-0.019840289,-0.17774281,0.98389965,-0.018680459,-0.17831655,0.9838031,-0.01829361,-0.17858669,0.9837605,-0.017949222,-0.17876276,0.9837387,-0.017378194,-0.17884092,0.9837383,-0.016581036,-0.17851928,0.98381376,-0.015533803,-0.1802926,0.9834707,-0.016732687,-0.18052718,0.9834128,-0.017584674,-0.18087925,0.98334175,-0.017935842,-0.18272035,0.9829938,-0.018344244,-0.18321969,0.98290443,-0.018148994,-0.18393315,0.9827897,-0.017116716,-0.1851034,0.98258,-0.016530367,-0.18505779,0.9825919,-0.016332697,-0.1837616,0.98288935,-0.012655524,-0.18422951,0.9827971,-0.013012754,-0.18493125,0.98266166,-0.013286443,-0.1851463,0.9826216,-0.013249893,-0.18528715,0.9825973,-0.013086015,-0.18538809,0.9825827,-0.012746266,-0.18438664,0.9827872,-0.011440501,-0.18417642,0.98283297,-0.010880346,-0.18319348,0.9830291,-0.00969094,-0.18310553,0.98306113,-0.007945164,-0.18426515,0.98284996,-0.0072331866,-0.18447559,0.982822,-0.005451344,-0.18526927,0.98266923,-0.006041073,-0.18578103,0.9825564,-0.00826478,-0.18741918,0.98224074,-0.008784848,-0.18789756,0.98214436,-0.00932648,-0.1878767,0.98214096,-0.010071311,-0.18810713,0.98208886,-0.010826081,-0.18971637,0.98175156,-0.01310055,-0.19040492,0.9816078,-0.01385815,-0.19076863,0.9815365,-0.013907667,-0.19114468,0.98146373,-0.013881206,-0.19153194,0.98138964,-0.013778228,-0.19255038,0.9811992,-0.013134354,-0.19445658,0.9808506,-0.010900229,-0.19424637,0.9808783,-0.012089662,-0.19439681,0.98084575,-0.012309926,-0.19468217,0.9807884,-0.01236579,-0.19543627,0.98064137,-0.012131608,-0.19658272,0.9804181,-0.01164284,-0.19719447,0.9802998,-0.011254838,-0.19733967,0.9802766,-0.010719928,-0.1971704,0.98031574,-0.010238397,-0.19853264,0.9800729,-0.006471158,-0.1988523,0.97999704,-0.007975361,-0.1993702,0.97987825,-0.009491279,-0.19980313,0.9797856,-0.009940634,-0.20032877,0.97967947,-0.0098244175,-0.20104429,0.979537,-0.009404591,-0.20239644,0.97926843,-0.008310482,-0.20375423,0.9789988,-0.0067562712,-0.20463935,0.9788245,-0.0050356467,-0.20518039,0.97871864,-0.003288124,-0.20534088,0.97868806,-0.002202036,-0.20511875,0.9787361,-0.0013853371,-0.20475303,0.978813,-0.0011677225,-0.20417173,0.9789342,-0.0012755926,-0.2036934,0.97903365,-0.0014413482,-0.20331796,0.9791114,-0.0016649852,-0.20264232,0.9792501,-0.0023074741,-0.20293665,0.97919184,-0.00009009964,-0.20342898,0.9790897,0.0001236208,-0.20385323,0.97900134,0.00045167818,-0.2046116,0.97884244,0.0012459052,-0.20506108,0.978748,0.0015050104,-0.20517893,0.978723,0.0016985771,-0.2049676,0.97876704,0.0018250667,-0.20443268,0.97887903,0.0017596658,-0.20314316,0.9791481,0.0013768442,-0.2015854,0.97947055,0.0008539807,-0.19811831,0.98017806,0.00025510817,-0.20040974,0.9797114,0.0012057935,-0.20157859,0.97947055,0.0018646313,-0.20431294,0.9789003,0.0032249202,-0.20472908,0.97881174,0.0036821205,-0.20469397,0.978817,0.004207633,-0.20457989,0.97884035,0.004317423,-0.20373376,0.97901595,0.004506102,-0.20215441,0.97934204,0.0047697164,-0.20115533,0.97954714,0.004893487,-0.19995816,0.97979265,0.004806382,-0.19756414,0.9802777,0.0048950845,-0.19933784,0.97991264,0.005969928,-0.19965526,0.9798449,0.006457341,-0.19934653,0.9799053,0.0068211723,-0.19861096,0.9800534,0.006995124,-0.19813658,0.9801493,0.007010366,-0.19762495,0.980253,0.0069634393,-0.1972719,0.9803247,0.0068781017,-0.19708052,0.980364,0.0067547373,-0.19633469,0.9805187,0.0059856633,-0.19591019,0.9806023,0.006191996,-0.1950673,0.98077,0.0062440564,-0.19004858,0.9817479,0.0072453017,-0.19152959,0.98146224,0.006947398,-0.19214182,0.98134315,0.006866973,-0.19251789,0.98126954,0.0068549523,-0.19322771,0.9811297,0.00689538,-0.19493878,0.9807899,0.0070720613,-0.19569276,0.980638,0.0073074824,-0.19618168,0.9805336,0.008162837,-0.19544595,0.9806767,0.008605944,-0.19377963,0.9810008,0.00932016,-0.19285174,0.98117864,0.009835691,-0.19228356,0.98128825,0.010021788,-0.19082628,0.9815699,0.010289774,-0.19091584,0.98154545,0.010938596,-0.19062762,0.9815982,0.011227073,-0.18865575,0.9819587,0.012888875,-0.18660584,0.9823145,0.015375097,-0.18614265,0.98239744,0.01569187,-0.18523563,0.9825627,0.01606875,-0.18449664,0.982704,0.015934467,-0.18351755,0.9828944,0.015489146,-0.1811554,0.9833512,0.014252891,-0.17980304,0.9836075,0.013684038,-0.17974442,0.9836196,0.013582534,-0.18011665,0.98355424,0.013382046,-0.18049668,0.9834864,0.013242636,-0.18214513,0.98318946,0.012714363,-0.18093342,0.9834174,0.01238066,-0.18002543,0.9835885,0.012018906,-0.1797451,0.983642,0.011837122,-0.17955148,0.98368144,0.011494754,-0.17941798,0.98371685,0.010505969,-0.18028766,0.98356426,0.009887013,-0.17979354,0.98366565,0.008729626,-0.17922078,0.9837683,0.008940204,-0.17675708,0.98421234,0.009110292,-0.17522162,0.9844855,0.0092528965,-0.17398952,0.9847074,0.0088864835,-0.17269932,0.98493844,0.008440212,-0.17266051,0.98494846,0.008056337,-0.1721378,0.9850476,0.007060121,-0.17202409,0.9850718,0.0064260177,-0.17122795,0.98521084,0.0063709924,-0.17028323,0.98536986,0.0070611024,-0.16993414,0.98543006,0.0070678117,-0.16831763,0.9857082,0.006965505,-0.16751447,0.98584557,0.0068876613,-0.16711088,0.98591477,0.0067849024,-0.16639431,0.9860415,0.0059268996,-0.16617222,0.9860817,0.0054392028,-0.1662228,0.9860776,0.004572278,-0.16640352,0.9860484,0.004285341,-0.166948,0.9859578,0.0039528613,-0.16761298,0.9858451,0.0039107087,-0.16861872,0.9856733,0.0039847963,-0.16920753,0.9855719,0.0040984135,-0.1697084,0.98548263,0.0047974098,-0.17164713,0.9851437,0.00539453,-0.171277,0.98521024,0.00499587,-0.1713377,0.98520267,0.0043742717,-0.16865854,0.9856719,0.0023030387,-0.16743252,0.9858804,0.0024920816,-0.16712035,0.9859334,0.002465795,-0.16663341,0.9860162,0.0023140088,-0.16605733,0.9861129,0.0025095504,-0.16576178,0.98616266,0.0024932248,-0.16538061,0.98622686,0.0024048684,-0.16484976,0.98631626,0.0021994542,-0.16448994,0.9863769,0.0019263052,-0.16437376,0.9863972,0.0013632985,-0.16451538,0.9863741,0.0009365626,-0.16502473,0.98628926,0.0005822416,-0.16507407,0.9862811,0.00039798842,-0.16421595,0.9864242,-0.0006237428,-0.16373332,0.9865034,-0.0015353604,-0.16342422,0.9865542,-0.0018341485,-0.16259801,0.98669076,-0.0017949444,-0.16236335,0.9867294,-0.0018043943,-0.16180429,0.986821,-0.0019286474,-0.16023861,0.9870739,-0.0029477866,-0.15469904,0.9879203,-0.009042111,-0.16315971,0.98653275,-0.011491391,-0.16963765,0.9854124,-0.013619326,-0.17196764,0.9849688,-0.016237106,-0.17779227,0.9839649,-0.014245051,-0.18440382,0.9827262,-0.015634062,-0.18437216,0.98284763,-0.0041836794,-0.18457153,0.98280954,-0.0043292055,-0.19943982,0.9799101,-0.00000357498,-0.19852367,0.98008597,0.0044567147,-0.1929835,0.98118305,0.0060976753,-0.1909694,0.9815435,0.010151398,-0.18978174,0.98175573,0.011772005,-0.18041418,0.983543,0.009691168,-0.18065803,0.98350894,0.008534894,-0.16685486,0.98597866,0.0023398434,-0.15897886,0.98727566,-0.0035312807,-0.15908182,0.98715943,-0.014465962,-0.1665593,0.9858987,-0.016181828,-0.1698267,0.98539263,-0.012657859,-0.17224276,0.9849551,-0.013997203,-0.17880869,0.98378235,-0.014134334,-0.18289098,0.9830969,-0.008448101,-0.19435564,0.98087245,-0.010729609,-0.1973495,0.9802885,-0.009360373,-0.19788286,0.980216,0.0043468387,-0.18202017,0.98321027,0.012890988,-0.17185557,0.9851024,0.0062346403,-0.17213497,0.9849756,-0.013882421,-0.18358909,0.9829209,-0.012709832,-0.20256315,0.9792691,-0.00048112273,-0.1976457,0.98027354,0.000016012978,-0.19767405,0.9802577,0.0044538383,-0.18080498,0.9834804,0.008707226,-0.15309164,0.9881729,-0.008789511,-0.16364355,0.98645556,-0.011236238,-0.17849356,0.9838419,-0.013971073,-0.1834515,0.9829404,-0.013183119,-0.19376749,0.9809824,-0.011296332,-0.19819926,0.9801389,-0.0066960203,-0.19665591,0.98045367,0.0060843667,-0.18989627,0.9817778,0.00719751,-0.16910619,0.985595,0.0023662122,-0.17765287,0.9839982,-0.013675427,-0.18342993,0.98293674,-0.01374107,-0.202404,0.97929966,-0.0021959033,-0.20230556,0.9793219,-0.0010494565,-0.19754036,0.98029476,-0.00012794844,-0.17070642,0.98530823,0.0051995264,-0.15351473,0.9881083,-0.0086779585,-0.15445091,0.98796064,-0.008869657,-0.18357009,0.9829049,-0.014140677,-0.18287322,0.98309517,-0.0090141315,-0.20225254,0.9793321,-0.0016204057,-0.19002445,0.9817541,0.007039721,-0.17021069,0.98540336,0.0029138792,-0.15396698,0.98803765,-0.008704186,-0.19852678,0.98009545,-0.0002644317,-0.17141102,0.98518485,0.0053963144,-0.1918497,0.981405,0.0061504026,-0.19117022,0.9815365,0.006328237,-0.1907777,0.98161155,0.0065281503,-0.17075668,0.98530734,0.0034059258,-0.22580378,0.9740252,-0.016958332,-0.22492735,0.97420627,-0.018160881,-0.22375764,0.9744381,-0.020073822,-0.22278348,0.9746198,-0.021994218,-0.22265948,0.97462934,-0.022811342,-0.22284713,0.97456616,-0.023662977,-0.2234815,0.97438806,-0.0249778,-0.2236865,0.9743227,-0.025684007,-0.22367485,0.9743112,-0.026216805,-0.22386457,0.97425914,-0.026529018,-0.22425666,0.97416645,-0.026621215,-0.22482316,0.97402924,-0.026862372,-0.22525758,0.9739321,-0.02674529,-0.2258782,0.97379833,-0.02637887,-0.22673243,0.9736215,-0.02556516,-0.22737858,0.9734423,-0.026627947,-0.22666055,0.97359,-0.027340759,-0.22714548,0.97347313,-0.0274778,-0.22747384,0.9733953,-0.027519282,-0.2277465,0.9733325,-0.027482579,-0.22796418,0.97328484,-0.027367331,-0.22845739,0.9731906,-0.026593843,-0.23100327,0.9726529,-0.024162587,-0.23109877,0.9726398,-0.023772461,-0.23162663,0.9725213,-0.023482306,-0.23193602,0.9724242,-0.024431031,-0.23237374,0.9723158,-0.024586264,-0.23309527,0.97214943,-0.024331799,-0.23364829,0.9720273,-0.023904745,-0.23470433,0.9718091,-0.022382064,-0.23643659,0.97140175,-0.021824842,-0.23665236,0.97137403,-0.02069039,-0.23612803,0.9715374,-0.018937664,-0.23644449,0.971476,-0.018121043,-0.23681605,0.9714236,-0.015946627,-0.23680818,0.971438,-0.015169206,-0.23655339,0.97150165,-0.015066866,-0.235579,0.9717719,-0.012724479,-0.23799516,0.97119236,-0.011986764,-0.23971502,0.97077703,-0.01134195,-0.24192531,0.97023857,-0.010451568,-0.24316168,0.9699363,-0.009794401,-0.24834141,0.96862936,-0.009151617,-0.25051996,0.96805775,-0.010196204,-0.25174075,0.96773666,-0.010599861,-0.25213477,0.96763307,-0.010690915,-0.2527479,0.96747285,-0.0107130185,-0.2535799,0.96725565,-0.010665157,-0.25415587,0.96710515,-0.010604551,-0.25472918,0.966956,-0.0104423445,-0.25557247,0.9667397,-0.009848645,-0.25695014,0.9663805,-0.009244557,-0.25742075,0.9662504,-0.009732683,-0.25777224,0.9661561,-0.009786222,-0.25951424,0.9656923,-0.009527474,-0.2621498,0.96498543,-0.008978437,-0.2630003,0.9647575,-0.008591562,-0.26377556,0.9645536,-0.0076709515,-0.26452434,0.9643525,-0.0071537686,-0.26461154,0.9643299,-0.006967674,-0.26435232,0.9644064,-0.0061811064,-0.2647354,0.964306,-0.005396229,-0.26466528,0.9643261,-0.0052415915,-0.26214033,0.96502143,-0.0040156757,-0.26307595,0.96476513,-0.004396902,-0.2635815,0.96462685,-0.004448034,-0.26391745,0.9645385,-0.003611881,-0.2653293,0.9641544,-0.0025621932,-0.265375,0.9641438,-0.0016749259,-0.26621422,0.96391386,-0.000071225455,-0.26642022,0.9638567,0.00072360464,-0.26630977,0.9638853,0.00205124,-0.26608366,0.9639466,0.0025542912,-0.26537964,0.9641379,0.0034190495,-0.26489818,0.9642692,0.0037183277,-0.26440477,0.9644045,0.0037425174,-0.26387677,0.9645493,0.0036992708,-0.26309147,0.96476376,0.0037106907,-0.26320872,0.9647303,0.004064596,-0.2630417,0.9647748,0.0043257023,-0.26275083,0.9648507,0.0050092256,-0.26363647,0.96460843,0.005138506,-0.26398852,0.9645113,0.0052943416,-0.26355746,0.9646273,0.005622773,-0.2620861,0.96502566,0.0060298136,-0.26161116,0.9651486,0.0069045317,-0.26202846,0.9650335,0.0071752123,-0.262334,0.96494716,0.0076046553,-0.2630241,0.9647604,0.007463143,-0.26433685,0.9644048,0.007029887,-0.26532188,0.9641361,0.0067732553,-0.2659813,0.9639549,0.0066961753,-0.26645648,0.96382356,0.006718372,-0.2669836,0.96367574,0.006987784,-0.26723573,0.96360314,0.0073569855,-0.26725554,0.9635808,0.0093054,-0.2675006,0.96349204,0.011246304,-0.26691872,0.9636407,0.012289852,-0.26720136,0.9635386,0.014028092,-0.26717296,0.96353066,0.015076857,-0.2669689,0.96357965,0.015551761,-0.26584572,0.963896,0.015185376,-0.2658526,0.96388847,0.0155365,-0.2664673,0.96369326,0.017042167,-0.2660569,0.96379626,0.017620482,-0.2659557,0.96381557,0.018085053,-0.2665934,0.9636248,0.018849565,-0.26654065,0.96362567,0.019536069,-0.26584744,0.96379244,0.02071953,-0.26566237,0.96384054,0.020853398,-0.26528707,0.9639422,0.020931331,-0.26472244,0.96409696,0.020953055,-0.26470664,0.9640981,0.021100957,-0.26562864,0.9638322,0.02165542,-0.26599407,0.9637174,0.022269256,-0.26598287,0.9637117,0.022646382,-0.26579255,0.9637595,0.022848297,-0.26447994,0.96411484,0.023085386,-0.2650533,0.9639454,0.023579344,-0.26544282,0.96382606,0.024071902,-0.26575384,0.9637217,0.02480719,-0.26583898,0.9636682,0.02594612,-0.26563746,0.96370125,0.026770929,-0.2646323,0.96393025,0.028430233,-0.26448235,0.9639373,0.0295642,-0.26410502,0.9640291,0.02994211,-0.26288363,0.96434975,0.030359905,-0.26261985,0.9644199,0.030415416,-0.26101285,0.9648543,0.030471213,-0.26040092,0.9650252,0.030294277,-0.25903597,0.96540356,0.029939266,-0.2598805,0.9651464,0.030895423,-0.26004216,0.9650931,0.03120013,-0.2604776,0.96496326,0.031579815,-0.2614317,0.9647052,0.03157975,-0.26208636,0.9645257,0.031637058,-0.26311168,0.9642333,0.032037523,-0.26384097,0.96401864,0.032496486,-0.26411235,0.9639357,0.03275156,-0.26458836,0.9637715,0.03372658,-0.2646195,0.96374786,0.03415482,-0.264313,0.96379447,0.035197668,-0.26498044,0.9635468,0.03691754,-0.26505315,0.96350306,0.03753299,-0.2649015,0.96352124,0.038131185,-0.26433745,0.96364135,0.03900013,-0.26300326,0.9639407,0.040591817,-0.26204744,0.96401006,0.04489741,-0.261988,0.96402335,0.044957798,-0.26075152,0.9643593,0.044943035,-0.25997066,0.96457404,0.04485683,-0.25868627,0.9649257,0.04471899,-0.25839478,0.9649968,0.044869784,-0.2578958,0.9651431,0.04459387,-0.25679103,0.9654491,0.04434423,-0.25760376,0.96517026,0.045679912,-0.2564782,0.9653822,0.047498576,-0.25576836,0.9655527,0.047859218,-0.25513542,0.9657394,0.047468975,-0.2546763,0.96587926,0.047087416,-0.25427333,0.9660199,0.04637407,-0.25431916,0.9660226,0.046066303,-0.2550663,0.9658848,0.0448079,-0.2543055,0.96615833,0.04320629,-0.25289956,0.9664595,0.044697013,-0.25128818,0.96682036,0.04596396,-0.25018317,0.96708953,0.04632768,-0.24959207,0.9672472,0.04622395,-0.24816833,0.96764255,0.045611262,-0.24715316,0.9679266,0.045092706,-0.2470151,0.9679791,0.044722382,-0.24719355,0.9680051,0.04314392,-0.24695085,0.96810555,0.04227144,-0.24596949,0.9683315,0.042814713,-0.24563286,0.96841824,0.04278502,-0.2453441,0.96850127,0.04256198,-0.24466561,0.96870935,0.041724894,-0.24459644,0.9687658,0.040809713,-0.2449087,0.96877,0.038786292,-0.24434775,0.9689483,0.037859,-0.24346483,0.9691688,0.037904527,-0.2432002,0.9692567,0.03735147,-0.24279037,0.9694236,0.03564711,-0.24249022,0.96957815,0.03341686,-0.24256703,0.969588,0.032564197,-0.24293217,0.9695235,0.031752042,-0.2444267,0.96923447,0.028985562,-0.24363093,0.9695003,0.026705246,-0.24361423,0.9695264,0.02589733,-0.2443077,0.96935934,0.02561631,-0.24464883,0.9692852,0.02516273,-0.24668822,0.9688148,0.023297686,-0.24672604,0.9688201,0.022670086,-0.24698204,0.96877784,0.02166561,-0.24834074,0.96846414,0.020101791,-0.2482914,0.96849537,0.019186707,-0.2492779,0.968273,0.017549265,-0.24975312,0.9681574,0.017163314,-0.25071898,0.9678934,0.017951798,-0.25097045,0.96786857,0.01562912,-0.25054252,0.9679874,0.015127538,-0.250139,0.96810985,0.0139216585,-0.24810562,0.96866006,0.011887289,-0.24857369,0.96854544,0.011441353,-0.25026253,0.96811986,0.0106098335,-0.24937358,0.968353,0.010261516,-0.2489063,0.9684773,0.009867722,-0.25005385,0.9682001,0.007852492,-0.24784984,0.96877867,0.006191312,-0.24763244,0.96883637,0.005857542,-0.24763618,0.96883714,0.0055552386,-0.2478317,0.9687888,0.005260853,-0.24821915,0.9686911,0.0049734362,-0.24883333,0.96853375,0.0049339887,-0.25111315,0.9679461,0.0047483984,-0.24927694,0.9684272,0.0031308369,-0.24914047,0.96846306,0.0028817463,-0.24895947,0.96851254,0.0016275395,-0.2479002,0.96878165,0.0027638664,-0.24700384,0.9690092,0.003204832,-0.24634516,0.9691761,0.003420335,-0.24592651,0.96928245,0.0034130563,-0.24537139,0.9694242,0.003093925,-0.24433509,0.9696886,0.002084398,-0.2443967,0.96967447,0.0012996561,-0.24319273,0.9699776,0.0008768789,-0.24249221,0.9701533,0.00037011906,-0.24241473,0.9701727,-0.00013863473,-0.24140814,0.9704234,-0.0007416531,-0.24101408,0.97052103,-0.0010573799,-0.2406132,0.97061646,-0.0029906596,-0.24010362,0.97074145,-0.0033627253,-0.23948604,0.97089046,-0.0042629344,-0.23796774,0.97125894,-0.005235681,-0.23875274,0.9710743,-0.0034477967,-0.23924161,0.9709592,-0.001303037,-0.2387044,0.9710891,0.0024723446,-0.23821485,0.97120804,0.0029433905,-0.23785104,0.9712965,0.0031695934,-0.23752484,0.97137606,0.0032375196,-0.23679236,0.97155577,0.0029570952,-0.23448321,0.97211385,-0.003498479,-0.23320213,0.97241306,-0.0054386486,-0.23338456,0.9723709,-0.0051455875,-0.2336973,0.97230303,-0.003524594,-0.2340307,0.9722259,-0.00253922,-0.2335071,0.97235256,-0.0022115244,-0.23316677,0.97243416,-0.0022571983,-0.23270321,0.97254467,-0.0024564012,-0.2320454,0.97270036,-0.0029907662,-0.23065221,0.97302574,-0.004526469,-0.23031673,0.97310156,-0.0052468325,-0.23021862,0.973119,-0.006223262,-0.23034877,0.9730815,-0.007196548,-0.23129004,0.9728406,-0.009277528,-0.2314371,0.9727879,-0.010980121,-0.2310852,0.97285837,-0.012091903,-0.23346753,0.9722644,-0.01395997,-0.2325682,0.9724804,-0.0139241135,-0.23180583,0.9726693,-0.01343383,-0.23092346,0.9728828,-0.013168065,-0.23021507,0.97305465,-0.012873391,-0.2299243,0.97312415,-0.012814461,-0.22955765,0.973211,-0.012791088,-0.22876088,0.973398,-0.01283724,-0.22849265,0.97346026,-0.012894844,-0.22824354,0.9735164,-0.0130667575,-0.22773702,0.9736275,-0.0136128515,-0.22664602,0.9738723,-0.014292712,-0.22591001,0.9740319,-0.015048255,-0.22582367,0.9740435,-0.015585386,-0.22600536,0.9739908,-0.016231818,-0.2308807,0.9727138,-0.022845445,-0.23614319,0.97152126,-0.01956687,-0.26364607,0.9646046,-0.0053556,-0.2633135,0.9647036,0.0035888057,-0.2625883,0.9648975,0.004493498,-0.25992614,0.96517247,0.029673168,-0.26001492,0.9650922,0.031453114,-0.25921196,0.96478486,0.044714525,-0.25663403,0.96551037,0.04391701,-0.24425893,0.96925855,0.02958708,-0.25141877,0.9677371,0.016539104,-0.25040472,0.9680814,0.010761648,-0.24967523,0.96831596,0.005144374,-0.24927613,0.96843123,0.0015399825,-0.24455673,0.9696338,0.0014937132,-0.2391532,0.9709672,-0.005341286,-0.23314865,0.9723375,-0.014196949,-0.22746596,0.97343135,-0.02627961,-0.2312216,0.97262776,-0.023061477,-0.23618774,0.97159636,-0.014693966,-0.24794349,0.9687326,-0.009008089,-0.25656727,0.9664816,-0.00930171,-0.2618589,0.9650978,-0.004023198,-0.26234835,0.96496195,0.004669212,-0.2623212,0.96496844,0.0048530074,-0.26445407,0.96412754,0.022851063,-0.26330212,0.96387964,0.040100537,-0.2571871,0.9653642,0.04389459,-0.24458802,0.968883,0.03797992,-0.22734274,0.97347546,-0.02570619,-0.23543407,0.971795,-0.013610475,-0.2632111,0.9647243,-0.005191228,-0.25970232,0.96523666,0.029544504,-0.2567673,0.96548617,0.0436698,-0.2546129,0.96608,0.04314691,-0.24711363,0.96805775,0.042415503,-0.24474056,0.96883506,0.038218528,-0.25152424,0.96768725,0.017802417,-0.25028348,0.9681585,0.005224753,-0.23812148,0.97121775,-0.0058500124,-0.23321024,0.97240967,-0.0056917747,-0.23388706,0.97215647,-0.0144468,-0.22697407,0.9735678,-0.025465492,-0.23535284,0.97182137,-0.013126468,-0.24754937,0.968834,-0.008942445,-0.2615691,0.96516156,0.0066897157,-0.23429006,0.97215146,-0.0054554134,-0.2333962,0.97236395,-0.0058804196,-0.25519028,0.965872,0.04437604,-0.234123,0.9721898,-0.0057835327,-0.24637191,0.9691333,-0.009030485,-0.25898147,0.96543753,0.029307805,-0.25881678,0.9654793,0.029387446,-0.25505313,0.9659355,0.04377736,-0.25094566,0.96798784,0.005086035,-0.24518965,0.96943176,-0.009170023,-0.24434222,0.96964425,-0.0093230875,-0.2511429,0.96793735,0.004958789,-0.19731131,0.9801022,-0.021631744,-0.19694126,0.9801786,-0.021542922,-0.19655569,0.9802552,-0.0215794,-0.19528812,0.9804954,-0.022165142,-0.1948718,0.98057055,-0.022502828,-0.19416794,0.9806839,-0.023619987,-0.19343485,0.98081136,-0.02433134,-0.19291447,0.9808972,-0.024994697,-0.19260125,0.98094094,-0.025684454,-0.19223523,0.9809729,-0.027163595,-0.19216573,0.98097056,-0.027732965,-0.19263226,0.9808653,-0.028214004,-0.19300616,0.9807894,-0.028296994,-0.19402775,0.9805886,-0.02827063,-0.19641021,0.9801272,-0.02781465,-0.19697613,0.9799855,-0.02879058,-0.19729927,0.97991824,-0.028866304,-0.19766264,0.9798441,-0.02889694,-0.198343,0.979708,-0.028849157,-0.19849975,0.97967774,-0.02879855,-0.19901368,0.9795858,-0.028374547,-0.19931847,0.97952724,-0.028258232,-0.20035063,0.97931445,-0.028334012,-0.20152783,0.9790894,-0.027758997,-0.2020766,0.9789765,-0.027749486,-0.2027735,0.97887886,-0.026058782,-0.20368175,0.9787152,-0.025107656,-0.20381217,0.9786952,-0.024825258,-0.20451166,0.9785206,-0.025932333,-0.20452373,0.9784752,-0.027500603,-0.20484988,0.9784067,-0.027508909,-0.20522504,0.97832954,-0.02745887,-0.20646758,0.97808325,-0.026913147,-0.20791027,0.9778129,-0.025598507,-0.20835537,0.9777135,-0.025774622,-0.20872049,0.9776333,-0.025863674,-0.20926674,0.977517,-0.025844814,-0.20965263,0.97743803,-0.025703663,-0.20962162,0.9774598,-0.02512197,-0.2090873,0.9775974,-0.024203418,-0.20875263,0.9776813,-0.02369893,-0.2086797,0.9777371,-0.021975739,-0.20817733,0.9778726,-0.020671718,-0.2074953,0.9780415,-0.019506317,-0.20759754,0.97803193,-0.018889649,-0.20721821,0.9781208,-0.018446384,-0.20585462,0.9784212,-0.01777202,-0.20533067,0.978532,-0.01773315,-0.20480612,0.97863936,-0.017874256,-0.20405866,0.9787891,-0.018221566,-0.20256655,0.9790904,-0.018676957,-0.20179687,0.97926736,-0.017704152,-0.2012801,0.9793825,-0.017210355,-0.20101957,0.9794364,-0.017190155,-0.20049986,0.97954196,-0.017243128,-0.19978756,0.9796814,-0.017588783,-0.19852047,0.9799162,-0.018810948,-0.19814698,0.97998244,-0.019292792,-0.19820003,0.97994256,-0.020721339,-0.20436205,0.9785699,-0.02524066,-0.20744696,0.97790563,-0.025814291,-0.20759608,0.978014,-0.01981213,-0.203186,0.9789567,-0.018953625,-0.19766793,0.98003346,-0.021489289,-0.19591326,0.98022515,-0.02786862,-0.20402394,0.9786492,-0.024900444,-0.27340728,0.9618069,-0.013266736,-0.2725176,0.9620324,-0.01509702,-0.2721542,0.96211696,-0.016218048,-0.2723088,0.96206164,-0.016889941,-0.27305433,0.961829,-0.018062616,-0.27278304,0.96189225,-0.018782148,-0.27290148,0.9618041,-0.021394266,-0.273261,0.9616743,-0.022605168,-0.2739074,0.96146065,-0.02383631,-0.27417272,0.9613765,-0.024179127,-0.27478674,0.9611898,-0.0246265,-0.27519023,0.9610705,-0.024776852,-0.2756469,0.96093756,-0.024855863,-0.2760888,0.9608101,-0.024878392,-0.27651528,0.96068835,-0.024844378,-0.27781934,0.9603184,-0.024596648,-0.2793749,0.9598837,-0.023935784,-0.27991587,0.95973706,-0.023491248,-0.2802034,0.95966524,-0.02299269,-0.27983832,0.9597354,-0.024463696,-0.27850807,0.9600749,-0.02625805,-0.2785376,0.9600579,-0.026562126,-0.27887198,0.9599432,-0.027193446,-0.27938715,0.959783,-0.027556164,-0.27979222,0.95966214,-0.027657043,-0.2803289,0.9595036,-0.02772359,-0.2816812,0.9591041,-0.027838679,-0.28552562,0.9579615,-0.02801668,-0.28906497,0.95689106,-0.028300274,-0.29098564,0.9563,-0.028593976,-0.29193974,0.9560062,-0.028692752,-0.29289377,0.9557133,-0.028729588,-0.29378968,0.955439,-0.028704463,-0.2946294,0.955183,-0.02861667,-0.2994115,0.9537272,-0.027517453,-0.30478367,0.9520228,-0.0275594,-0.30729505,0.95120436,-0.027928013,-0.30762583,0.9511255,-0.026956314,-0.30734396,0.9512914,-0.024173219,-0.30819553,0.95106095,-0.022328276,-0.3077739,0.95121145,-0.021724327,-0.30412522,0.9524098,-0.020576416,-0.3014369,0.9533022,-0.018728068,-0.30117786,0.9533858,-0.018640323,-0.30014303,0.9537141,-0.018535977,-0.2996099,0.9538811,-0.018568913,-0.29914716,0.9540242,-0.018675376,-0.29725972,0.9545957,-0.019590529,-0.2966232,0.95477825,-0.020325864,-0.29600203,0.9549456,-0.0214862,-0.29517478,0.95528793,-0.01722968,-0.2968085,0.9548565,-0.012398144,-0.29670227,0.95489985,-0.011579195,-0.2962756,0.9550396,-0.010956729,-0.2947227,0.9555325,-0.00980438,-0.2936406,0.95587194,-0.009168164,-0.291823,0.9564367,-0.008258386,-0.2898505,0.9570434,-0.007385594,-0.28902793,0.9572936,-0.0071945605,-0.28869984,0.95739114,-0.0073885084,-0.28832287,0.9575013,-0.007820488,-0.287539,0.95774674,-0.0065141264,-0.2872254,0.9578425,-0.0062638656,-0.28537917,0.95839995,-0.005318271,-0.28452253,0.95865643,-0.004976047,-0.2835144,0.95895684,-0.004620547,-0.28264084,0.9592184,-0.0037717763,-0.28088048,0.95973873,-0.0027727087,-0.27975515,0.9600687,-0.00227616,-0.27857006,0.9604141,-0.0018543487,-0.277835,0.96062726,-0.0017194855,-0.27716503,0.9608198,-0.002215633,-0.27643093,0.961029,-0.0030273069,-0.27543202,0.96130633,-0.0052308105,-0.27505985,0.9613952,-0.007829286,-0.27527547,0.9613232,-0.009007605,-0.27554038,0.96122503,-0.011133634,-0.2743361,0.9615597,-0.011943346,-0.2739699,0.9616586,-0.0123777175,-0.30204383,0.9528988,-0.027449204,-0.3061214,0.9517551,-0.021258758,-0.27589333,0.9611286,-0.010708237,-0.28030056,0.9596216,-0.023620477,-0.28808713,0.9571891,-0.028192649,-0.30731627,0.9512846,-0.02478669,-0.29512256,0.9552811,-0.018457185,-0.28393582,0.9588311,-0.0048346207,-0.29562572,0.9550558,-0.021768155,-0.280332,0.9596267,-0.023035705,-0.34427956,0.9377842,-0.045081705,-0.34405333,0.9378904,-0.044597358,-0.3438584,0.93796396,-0.044553038,-0.34341258,0.9381217,-0.04467086,-0.34222585,0.93850625,-0.045689095,-0.34152204,0.93874145,-0.04612225,-0.34111086,0.9388638,-0.046670098,-0.341085,0.9388436,-0.047262512,-0.3413336,0.9386921,-0.048462022,-0.34181663,0.9384748,-0.049259525,-0.34205842,0.93837255,-0.049527064,-0.34244752,0.9382181,-0.049763676,-0.34343523,0.9378386,-0.050109267,-0.3437953,0.93770283,-0.05018185,-0.34446132,0.93745834,-0.050182823,-0.34646162,0.9367468,-0.049697444,-0.34746578,0.93640685,-0.049088906,-0.34685796,0.9365775,-0.050120898,-0.3454079,0.9370691,-0.050939817,-0.34510386,0.9371545,-0.051427297,-0.34514022,0.937117,-0.051864848,-0.34558985,0.93694675,-0.051946275,-0.34588593,0.93683976,-0.051905148,-0.34637555,0.93666834,-0.051734485,-0.346738,0.93654704,-0.051501058,-0.3466826,0.9365378,-0.05203924,-0.34693113,0.9364362,-0.052211665,-0.3475196,0.93622106,-0.052156366,-0.34841117,0.93590593,-0.05186279,-0.3514611,0.9345139,-0.05620343,-0.35138914,0.9343986,-0.058523174,-0.3518382,0.934202,-0.05896137,-0.35252118,0.9339196,-0.059354734,-0.3528384,0.9337937,-0.05945054,-0.35410833,0.9333273,-0.05922359,-0.35483694,0.9330645,-0.059002936,-0.35562795,0.93280435,-0.058350857,-0.35590315,0.932722,-0.057988063,-0.35606465,0.9327229,-0.05697255,-0.35586908,0.9328062,-0.056831487,-0.35579744,0.93291456,-0.055485617,-0.35627544,0.9327294,-0.055530924,-0.35671794,0.93256736,-0.055411834,-0.35712218,0.9324295,-0.05512745,-0.35741532,0.93234134,-0.054716542,-0.35764372,0.93231267,-0.053703275,-0.35742033,0.93243957,-0.052982192,-0.3577394,0.93236905,-0.05206211,-0.3583142,0.9321462,-0.052100267,-0.35869187,0.9320032,-0.052058734,-0.3588722,0.9319405,-0.051938448,-0.36026004,0.9315165,-0.049896352,-0.36116514,0.9312208,-0.048862148,-0.36268538,0.93069685,-0.04756829,-0.36311328,0.93059486,-0.046281878,-0.36313945,0.9306647,-0.04464195,-0.3647049,0.93016684,-0.042190224,-0.3646889,0.93023,-0.040916488,-0.36418292,0.93046814,-0.03999792,-0.3627444,0.93110216,-0.03827976,-0.36250705,0.93122923,-0.037427098,-0.36160916,0.9316054,-0.0367446,-0.36078015,0.9319764,-0.03546512,-0.36083454,0.93199056,-0.034525614,-0.36039406,0.9321872,-0.033810098,-0.35999987,0.9323555,-0.03336556,-0.35967472,0.93248826,-0.033161975,-0.3588809,0.932785,-0.033415772,-0.35854188,0.9329041,-0.03372913,-0.35869113,0.93283165,-0.034143485,-0.35933906,0.9325452,-0.035141688,-0.35433134,0.93436277,-0.037623107,-0.35208863,0.93518895,-0.03814798,-0.3506199,0.9357175,-0.038708493,-0.34828886,0.93649536,-0.040880833,-0.34752673,0.93673337,-0.04190271,-0.34673506,0.93699944,-0.042506523,-0.34565866,0.9373731,-0.043031618,-0.344603,0.9377283,-0.04375398,-0.34447074,0.93776554,-0.043996125,-0.34454954,0.9377283,-0.044173047,-0.35134232,0.93462455,-0.05509541,-0.35709628,0.9325867,-0.052575905,-0.36088422,0.93191826,-0.03592971,-0.3560518,0.93372875,-0.037117008,-0.34453058,0.9376877,-0.045171354,-0.3471695,0.93648165,-0.04975429,-0.34876427,0.93577707,-0.05181447,-0.35549003,0.93294644,-0.056901116,-0.35541818,0.9330569,-0.05552265,-0.35734513,0.93251777,-0.052105833,-0.35069025,0.9349442,-0.05381122,-0.3552239,0.9330645,-0.056626625,-0.35713008,0.93259317,-0.05223053,-0.35725108,0.9332897,-0.036634002,-0.34504426,0.93753034,-0.044511475,-0.34494552,0.93754137,-0.045042146,-0.34945506,0.9354952,-0.05224831,-0.35507134,0.9331599,-0.056009173,-0.35513645,0.9331571,-0.055641416,-0.35822266,0.93293875,-0.036079776,-0.34516308,0.93746895,-0.044881787,-0.34907237,0.93565774,-0.051894903,-0.6057503,0.7202378,0.33811843,-0.60504013,0.72046244,0.3389105,-0.6031727,0.72142386,0.34019148,-0.6024558,0.721936,0.34037545,-0.60160744,0.72260845,0.34044898,-0.59996134,0.7243346,0.33968478,-0.59717786,0.72673446,0.3394637,-0.59550995,0.7282156,0.33921966,-0.59516263,0.72858405,0.33903798,-0.59399575,0.73043877,0.3370878,-0.5935897,0.7309124,0.33677644,-0.59300333,0.7313955,0.33676052,-0.5934091,0.73146933,0.33588427,-0.5940102,0.73133975,0.33510312,-0.594533,0.73106533,0.33477452,-0.5966171,0.72972536,0.33398938,-0.59800065,0.7289301,0.33325085,-0.59910816,0.72812504,0.33302146,-0.60663885,0.7222897,0.33209482,-0.6080677,0.72140205,0.33141032,-0.60970587,0.720064,0.33131042,-0.6110962,0.7186296,0.3318629,-0.61330926,0.7158903,0.3336958,-0.6135844,0.7153159,0.33442104,-0.61386096,0.7144542,0.33575276,-0.61389697,0.7141536,0.33632588,-0.6136337,0.7141369,0.3368415,-0.6132036,0.7142896,0.33730072,-0.61262655,0.71425736,0.3384156,-0.6117456,0.7145478,0.33939472,-0.6110611,0.7146032,0.3405093,-0.6106352,0.71436054,0.34178013,-0.610093,0.71436054,0.3427471,-0.60767716,0.7151395,0.3454039,-0.6056249,0.71621686,0.3467734,-0.6029862,0.717889,0.3479123,-0.60126704,0.7186308,0.3493533,-0.60092485,0.71891695,0.34935325,-0.60098034,0.71957535,0.34789932,-0.60019904,0.72008646,0.34819043,-0.59944576,0.72070765,0.34820285,-0.59914345,0.721052,0.34801024,-0.5990376,0.72127104,0.3477385,-0.5992789,0.7216511,0.34653205,-0.59990585,0.72183275,0.3450659,-0.60082537,0.7217065,0.3437275,-0.6001138,0.72260666,0.3430788,-0.5999869,0.7231025,0.34225497,-0.60074806,0.72278106,0.34159818,-0.6013894,0.7224317,0.3412085,-0.6023978,0.72180676,0.34075186,-0.60383415,0.7207526,0.340441,-0.60436434,0.7200841,0.34091446,-0.60646296,0.7188133,0.33986786,-0.6065534,0.7185259,0.3403139,-0.60928303,0.7161568,0.34043163,-0.6095979,0.71627873,0.33961028,-0.6099148,0.71627396,0.33905092,-0.6101152,0.71685,0.33746952,-0.6091706,0.71737266,0.33806455,-0.60897005,0.7175893,0.3379661,-0.6084493,0.7182562,0.3374872,-0.60734993,0.7187167,0.33848542,-0.6069491,0.71913964,0.33830604,-0.6073473,0.7191645,0.3375376,-0.6086714,0.71857685,0.3364021,-0.6065559,0.71988004,0.33743542,-0.6013223,0.72300774,0.34010488,-0.6002785,0.7271798,0.3329793,-0.6056321,0.7229977,0.33239144,-0.6047063,0.71896017,0.34267557,-0.6111595,0.71573377,0.3379485,-0.60907495,0.71791035,0.33709413,-0.6042529,0.7171405,0.34725797,-0.6108619,0.7162823,0.33732393,-0.6087864,0.7186693,0.33599642,-0.6050187,0.71869123,0.3426884,-0.6082616,0.7165861,0.34135348,-0.60873187,0.7163192,0.34107527,-0.64966166,0.70888096,0.27464056,-0.64899445,0.70904386,0.2757952,-0.6488474,0.7089014,0.27650654,-0.6493421,0.7083109,0.276858,-0.64951456,0.70793664,0.27741045,-0.6485287,0.70813525,0.27920425,-0.6468885,0.7088738,0.28112835,-0.64707726,0.70828927,0.28216538,-0.6462211,0.70874876,0.2829726,-0.64509207,0.7094356,0.2838263,-0.6441199,0.7099099,0.28484643,-0.6436062,0.7102705,0.28510857,-0.64309245,0.7112315,0.28386933,-0.64217204,0.7117274,0.28470904,-0.64176244,0.7120362,0.2848605,-0.6422407,0.7115292,0.28504923,-0.64294165,0.71100324,0.28478146,-0.6432391,0.70984685,0.2869858,-0.64287734,0.7098523,0.28778198,-0.6398696,0.7112572,0.29099837,-0.6369957,0.7129212,0.29322335,-0.6350358,0.7137914,0.29534954,-0.63328904,0.7147898,0.29668254,-0.63252896,0.71494174,0.29793525,-0.6295862,0.7170769,0.299035,-0.62868834,0.7177205,0.29937983,-0.6290862,0.7169878,0.3002983,-0.62844384,0.7172379,0.30104518,-0.6286585,0.71670616,0.3018623,-0.6292087,0.71637326,0.3015058,-0.63153416,0.71478385,0.30041414,-0.6346199,0.71295106,0.2982589,-0.6361984,0.7117172,0.29784262,-0.63621897,0.7114693,0.29839048,-0.63605297,0.711416,0.29887098,-0.6358982,0.7110985,0.29995406,-0.63489676,0.71181715,0.30037048,-0.6341678,0.71214926,0.30112234,-0.6330045,0.71189797,0.30414897,-0.6314368,0.71215945,0.30678415,-0.6308311,0.7117585,0.30895296,-0.6290707,0.71195424,0.31207561,-0.62904006,0.7110584,0.31417286,-0.6307254,0.7109331,0.31106204,-0.6336321,0.7097808,0.30776864,-0.63489324,0.70891887,0.3071557,-0.6360187,0.70739114,0.30834728,-0.63553774,0.70851606,0.30675197,-0.63590795,0.7088107,0.30530062,-0.6348162,0.71004075,0.3047139,-0.6343833,0.7104091,0.30475694,-0.6338722,0.71091396,0.304643,-0.6341801,0.71125907,0.30319327,-0.6343168,0.7108696,0.30381995,-0.63509464,0.71025974,0.3036212,-0.6375382,0.70932746,0.30066523,-0.6389977,0.708596,0.29928854,-0.6469291,0.7041424,0.29268795,-0.6473559,0.7038694,0.29240066,-0.6480012,0.70335895,0.2921996,-0.64692885,0.70374835,0.29363477,-0.648281,0.7027856,0.2929575,-0.64882314,0.70272684,0.29189646,-0.64987934,0.70234054,0.2904731,-0.6510062,0.70167714,0.28955153,-0.65198964,0.70097065,0.28904966,-0.65255815,0.70053226,0.28882936,-0.65304214,0.7001113,0.28875613,-0.6501482,0.7017652,0.29126102,-0.65357023,0.6992577,0.28962848,-0.6565341,0.69646215,0.289661,-0.6572445,0.69565815,0.28998172,-0.6598508,0.6923172,0.29205114,-0.66019136,0.69141454,0.29341647,-0.65961313,0.69186753,0.2936491,-0.6592371,0.691316,0.29578477,-0.66064143,0.6891232,0.2977619,-0.66053736,0.6887853,0.2987728,-0.65981764,0.6890287,0.29980025,-0.65976894,0.6885832,0.30092874,-0.65953743,0.6886611,0.3012578,-0.6587498,0.6891806,0.30179274,-0.65870076,0.68898237,0.3023518,-0.6573268,0.69047993,0.30192533,-0.6558017,0.69127846,0.30341092,-0.6553955,0.6912255,0.30440775,-0.6526596,0.69299763,0.3062512,-0.65178984,0.69377077,0.30635294,-0.65006363,0.6949262,0.30740023,-0.64813167,0.6964395,0.30805406,-0.6470677,0.69697934,0.30906817,-0.6452782,0.6984598,0.30946717,-0.64516944,0.6983152,0.3100198,-0.64438814,0.69884086,0.3104599,-0.6436989,0.69984716,0.3096218,-0.643509,0.7002227,0.30916727,-0.6410188,0.7019873,0.31033635,-0.6417529,0.700753,0.3116063,-0.64080894,0.7014743,0.31192577,-0.639506,0.70220095,0.3129631,-0.6399618,0.7014858,0.3136344,-0.6399665,0.70104176,0.31461608,-0.6399051,0.7007402,0.31541172,-0.6391402,0.70066,0.3171362,-0.6385295,0.70108914,0.31741792,-0.6380818,0.7014537,0.3175128,-0.63742304,0.7022847,0.31699866,-0.63687825,0.7031863,0.31609362,-0.6368577,0.70283717,0.31691045,-0.636539,0.7026492,0.31796563,-0.63598543,0.7027978,0.31874424,-0.6356725,0.70268196,0.31962246,-0.6340776,0.7035352,0.32091105,-0.6337351,0.7035006,0.32166228,-0.63334423,0.70357823,0.3222619,-0.6310859,0.7044497,0.32477885,-0.62900066,0.70517457,0.32724148,-0.62656045,0.7063223,0.32944015,-0.6245536,0.70703864,0.33170635,-0.62222123,0.7081479,0.33371747,-0.62167627,0.70827186,0.33446902,-0.62086445,0.7087157,0.33503652,-0.62015045,0.70900244,0.33575132,-0.6196998,0.7090421,0.3364989,-0.61874425,0.70938694,0.3375289,-0.61666125,0.71026033,0.3394984,-0.61652595,0.7099819,0.34032547,-0.6161172,0.71022016,0.34056863,-0.61548007,0.7106981,0.34072334,-0.61529607,0.7111698,0.34007096,-0.61530864,0.7113962,0.33957422,-0.6171993,0.7116178,0.33565626,-0.61622274,0.7121558,0.33630878,-0.6153371,0.71252906,0.33713877,-0.6149267,0.7129571,0.33698276,-0.6142908,0.7141512,0.3356112,-0.6139249,0.7150621,0.33433872,-0.613877,0.7155344,0.33341506,-0.61532485,0.7149876,0.33191583,-0.6150644,0.7168999,0.3282535,-0.614558,0.71753293,0.32781845,-0.6145528,0.71773946,0.32737577,-0.6175645,0.71606874,0.32536075,-0.61945295,0.71526164,0.32354107,-0.61986315,0.71496737,0.32340583,-0.62027204,0.7147391,0.32312638,-0.620419,0.71521336,0.32179192,-0.62147826,0.7150615,0.32008103,-0.6208821,0.7155219,0.32020918,-0.6201772,0.7161871,0.3200879,-0.6209483,0.71662295,0.31760776,-0.62196976,0.7166967,0.31543532,-0.6233247,0.7163257,0.31359816,-0.6231392,0.71666574,0.31318954,-0.623018,0.7170478,0.3125555,-0.62313,0.717819,0.31055585,-0.6234103,0.71785814,0.30990204,-0.6243636,0.717616,0.30854067,-0.6241469,0.7188453,0.30610812,-0.6244134,0.7195984,0.3037863,-0.62225014,0.720638,0.30575433,-0.6220266,0.72110987,0.30509585,-0.6220349,0.72134715,0.30451748,-0.62294096,0.7216741,0.30187926,-0.6229823,0.72200435,0.30100292,-0.62447506,0.72224724,0.29730424,-0.6237449,0.7231049,0.2967519,-0.62370735,0.7236415,0.29551995,-0.62287873,0.7244797,0.29521385,-0.6221346,0.72552216,0.2942212,-0.62049675,0.7274307,0.2929647,-0.62064725,0.727757,0.29183352,-0.61891973,0.73001844,0.28984725,-0.6179114,0.73085135,0.28989983,-0.616547,0.7320769,0.28971243,-0.6168133,0.73237866,0.28837967,-0.6172849,0.73241,0.28728896,-0.6185201,0.73255736,0.28424037,-0.6158214,0.73413044,0.28603593,-0.6133836,0.7357266,0.28717053,-0.6091009,0.73931956,0.28705874,-0.60818493,0.73992294,0.28744584,-0.6081923,0.74077195,0.28523505,-0.60909706,0.7407227,0.28342652,-0.6082449,0.74135333,0.28360778,-0.60977894,0.7409368,0.2813936,-0.61085564,0.7404283,0.28039473,-0.6124875,0.73947847,0.27933973,-0.613269,0.73958576,0.2773339,-0.61177194,0.74150485,0.27550977,-0.611616,0.7421049,0.27423733,-0.6124112,0.74301136,0.26997522,-0.6122565,0.7438526,0.26800233,-0.6125047,0.7439261,0.26723006,-0.61197144,0.7445403,0.266741,-0.6116479,0.7442871,0.26818576,-0.6110623,0.7445135,0.26889122,-0.6104569,0.7443428,0.27073264,-0.60960066,0.74485534,0.27125174,-0.6086927,0.7453464,0.27194098,-0.6087886,0.7444475,0.27417934,-0.6083944,0.7435125,0.27757064,-0.608072,0.74327475,0.27891058,-0.6074623,0.74339277,0.27992278,-0.60536593,0.74438435,0.28182274,-0.6043594,0.7450088,0.28233233,-0.6032473,0.74543506,0.2835829,-0.6025902,0.74580246,0.28401357,-0.6003784,0.74734014,0.28465503,-0.59822094,0.7480668,0.28727663,-0.5962461,0.7495382,0.28754675,-0.59454775,0.75116175,0.2868258,-0.5940571,0.7524564,0.28443897,-0.59342074,0.75286263,0.2846922,-0.5930011,0.75248617,0.2865557,-0.59224045,0.7532608,0.28609353,-0.5918964,0.7538143,0.2853465,-0.5912352,0.75590813,0.2811474,-0.5915077,0.7569009,0.27788442,-0.5933495,0.75770235,0.2717049,-0.59390205,0.757749,0.27036402,-0.5960748,0.75728786,0.2668518,-0.59759426,0.7571448,0.26384243,-0.6005635,0.75615466,0.25991076,-0.6048647,0.75429904,0.2552874,-0.6081378,0.75305784,0.25114205,-0.6110873,0.75162,0.24827336,-0.61386096,0.75041586,0.24505243,-0.61571544,0.74943775,0.24338758,-0.6190547,0.74752474,0.24078639,-0.6194734,0.7474041,0.24008298,-0.6212963,0.7463478,0.23865429,-0.62538975,0.74369365,0.23623593,-0.62703484,0.7427626,0.2348,-0.62922716,0.74108213,0.23424435,-0.6325537,0.7387311,0.23270631,-0.6352616,0.73694044,0.23100117,-0.6366043,0.73583454,0.23082991,-0.6382612,0.7347943,0.22956455,-0.6410266,0.73274416,0.22840954,-0.6465976,0.72959197,0.22272651,-0.6476111,0.72919667,0.22107038,-0.64878815,0.7284457,0.22009271,-0.6498966,0.7280211,0.21821937,-0.6515828,0.72721905,0.21585263,-0.6527059,0.7269575,0.21332546,-0.6544513,0.7259894,0.21126498,-0.65521675,0.72551274,0.21052851,-0.65624774,0.7246782,0.2101911,-0.6571581,0.72422945,0.20889007,-0.6582582,0.7236021,0.2075961,-0.6611697,0.72154075,0.20550808,-0.6630244,0.7205948,0.20283417,-0.6647473,0.71946174,0.20121098,-0.6668327,0.71768486,0.20065543,-0.66850626,0.71639705,0.19968623,-0.670344,0.71486723,0.19900684,-0.67095435,0.71431106,0.19894724,-0.6726004,0.71274847,0.19899331,-0.67314094,0.7123335,0.1986511,-0.6742064,0.7119704,0.19632623,-0.6770132,0.7100797,0.19349371,-0.6783821,0.7094266,0.19108014,-0.6811128,0.70761997,0.18804069,-0.64138144,0.7122414,0.28520516,-0.62828463,0.7186924,0.29789197,-0.6461364,0.7041436,0.29443076,-0.65908635,0.6923301,0.29374167,-0.6588329,0.6920828,0.2948908,-0.65901524,0.6891318,0.30132413,-0.6561849,0.6912199,0.30271494,-0.6403427,0.7020025,0.3116948,-0.6175858,0.71000713,0.33834547,-0.6158036,0.7158659,0.32912287,-0.6107395,0.73810065,0.28671354,-0.61411196,0.7432742,0.26534867,-0.6013269,0.7467612,0.28417194,-0.5941038,0.7528873,0.2831984,-0.6172526,0.74846196,0.24249536,-0.62871045,0.7182882,0.2979685,-0.62787414,0.71734476,0.30197778,-0.6354221,0.70941395,0.3049108,-0.6504481,0.7018489,0.29038823,-0.63946825,0.70271105,0.31189355,-0.62284184,0.71639884,0.31438953,-0.6195526,0.72924155,0.29045013,-0.64653784,0.70379984,0.29437152,-0.6420634,0.70153564,0.30919635,-0.6158688,0.7151514,0.3305511,-0.61328894,0.73927885,0.27810696,-0.64761317,0.7031517,0.2935555,-0.61848885,0.7319433,0.28588557,-0.61431324,0.7434071,0.26450926,-0.6091805,0.7479013,0.26370966,-0.61859995,0.73217726,0.2850449,-0.64256597,0.73174065,0.22729866,-0.65779036,0.7223126,0.21348615,-0.62804854,0.71159446,0.3149419,-0.61966825,0.7329158,0.2807948,-0.62155885,0.7354922,0.26965863,-0.62974185,0.7255512,0.27749,-0.62932724,0.7267034,0.27540764,-0.6292468,0.7271295,0.2744652,-0.6273184,0.72888666,0.27421868,-0.6275124,0.7265984,0.27979094,-0.5139396,0.78192276,0.3527929,-0.5123655,0.7830048,0.3526826,-0.51204133,0.7832846,0.35253212,-0.5119968,0.7835833,0.35193256,-0.5120777,0.7836543,0.35165668,-0.5131621,0.7834647,0.3504965,-0.5135914,0.7832534,0.35033998,-0.5151776,0.78269833,0.3492498,-0.51476926,0.78330207,0.34849745,-0.5154688,0.7833503,0.34735328,-0.5174737,0.78248453,0.34632206,-0.5203601,0.781513,0.34418422,-0.52138627,0.7811114,0.3435423,-0.5221041,0.7807878,0.3431876,-0.5231688,0.78015643,0.34300196,-0.52733284,0.7774531,0.3427633,-0.52788407,0.777265,0.34234133,-0.5280651,0.7770982,0.34244084,-0.530997,0.7748055,0.34310156,-0.5321407,0.7743365,0.3423876,-0.5325595,0.77411973,0.34222662,-0.53299934,0.7738262,0.34220576,-0.533266,0.7735459,0.34242383,-0.53335774,0.77328014,0.3428809,-0.5332425,0.77289796,0.34392023,-0.5336967,0.77279305,0.3434512,-0.53425664,0.77279085,0.34258437,-0.5346765,0.7725556,0.3424602,-0.5359947,0.77168906,0.3423532,-0.5366696,0.7712211,0.34235033,-0.5431173,0.76632375,0.34317863,-0.5480574,0.76267767,0.343447,-0.54844034,0.7623116,0.34364855,-0.54901695,0.7615427,0.3444316,-0.5494555,0.76050276,0.34602624,-0.55019087,0.76010925,0.34572244,-0.55017525,0.76076335,0.34430552,-0.5503799,0.76088727,0.34370428,-0.5514108,0.7604026,0.34312385,-0.5525861,0.75967324,0.34284875,-0.55331856,0.75911987,0.34289315,-0.5542693,0.75819266,0.34340855,-0.55462307,0.7576645,0.3440026,-0.55437934,0.7573379,0.34511277,-0.5539696,0.7571031,0.346284,-0.5546529,0.7567667,0.34592536,-0.5561026,0.75559556,0.34615782,-0.5563654,0.7552215,0.3465517,-0.5565066,0.75482136,0.3471961,-0.5568099,0.75456697,0.3472628,-0.5568028,0.75541806,0.3454189,-0.55738276,0.75564027,0.34399468,-0.55745184,0.75581384,0.3435009,-0.55785847,0.7556743,0.34314767,-0.55930865,0.75474644,0.34282875,-0.5608129,0.75352746,0.3430528,-0.56304103,0.751833,0.34312087,-0.564741,0.75036573,0.34353867,-0.56515586,0.75116676,0.34109727,-0.5641309,0.7518032,0.34139162,-0.56426996,0.75179875,0.34117162,-0.5669207,0.7504305,0.3397867,-0.5683157,0.7496318,0.33921888,-0.5687229,0.7492075,0.33947375,-0.5673974,0.7492075,0.34168464,-0.5652502,0.7493356,0.34494692,-0.5647843,0.74910647,0.3462055,-0.563702,0.74921143,0.3477388,-0.5656381,0.748285,0.34658763,-0.5665986,0.74792933,0.34578565,-0.56819683,0.74692893,0.34532514,-0.57154787,0.74500316,0.34395245,-0.57523644,0.7430929,0.34192982,-0.57633704,0.74236935,0.3416481,-0.5769612,0.7418467,0.3417298,-0.5772227,0.74157405,0.34188,-0.5784053,0.7400645,0.34314993,-0.5791799,0.73885745,0.34444216,-0.57928675,0.7384852,0.34506002,-0.5790216,0.7381104,0.3463048,-0.5778487,0.7382254,0.34801462,-0.5753434,0.7387638,0.3510101,-0.57441384,0.7390739,0.35187867,-0.5735779,0.73943603,0.35248086,-0.5725545,0.7398644,0.3532449,-0.57306564,0.73935914,0.35347396,-0.5725734,0.739265,0.354467,-0.57055753,0.7393362,0.35755578,-0.5704614,0.73916113,0.3580706,-0.5694327,0.73875403,0.36053967,-0.5681948,0.73882127,0.3623504,-0.5654887,0.7381547,0.36789966,-0.56444275,0.7380431,0.36972523,-0.56381416,0.7383645,0.37004244,-0.56184644,0.7386547,0.37244844,-0.5605722,0.7390963,0.3734909,-0.56012017,0.7391428,0.3740767,-0.55970895,0.7392949,0.3743914,-0.55779284,0.7406775,0.3745184,-0.5577704,0.74047476,0.3749524,-0.5574023,0.7403791,0.37568793,-0.5564333,0.74070954,0.37647226,-0.55574304,0.7410295,0.37686205,-0.55822766,0.7383651,0.37841633,-0.56037915,0.73756623,0.37679076,-0.56089705,0.7373107,0.37652013,-0.56062603,0.73727673,0.37699002,-0.5588581,0.73763186,0.37891528,-0.5586688,0.73747015,0.37950873,-0.55861807,0.7372571,0.37999707,-0.5576484,0.73686725,0.38217133,-0.557027,0.73698306,0.3828536,-0.5566701,0.7370977,0.383152,-0.55632144,0.7372923,0.38328385,-0.5556538,0.73787117,0.3831382,-0.55416954,0.73917377,0.3827771,-0.55315006,0.7390441,0.38449827,-0.5522504,0.73913246,0.38561985,-0.5522344,0.738854,0.38617602,-0.5517711,0.7387006,0.3871305,-0.5513085,0.7388023,0.38759527,-0.5502163,0.7392168,0.38835615,-0.55307597,0.7374678,0.38761857,-0.5552375,0.7366754,0.38603204,-0.5583917,0.7344243,0.38577148,-0.5615324,0.73277605,0.3843445,-0.5629065,0.7324489,0.3829556,-0.5635672,0.73220575,0.38244832,-0.5646855,0.73155475,0.38204443,-0.5653821,0.7310351,0.3820088,-0.56558496,0.7308344,0.38209248,-0.565833,0.7304923,0.38237944,-0.56579727,0.7300097,0.38335276,-0.565698,0.72985005,0.38380277,-0.56539077,0.7297714,0.38440472,-0.5643261,0.72994095,0.38564536,-0.56278247,0.7303684,0.38708913,-0.5624438,0.7301535,0.3879856,-0.5617963,0.7302304,0.38877818,-0.561006,0.7306599,0.3891122,-0.5591307,0.73190033,0.38948005,-0.5582518,0.7325852,0.3894532,-0.55745393,0.73342055,0.3890237,-0.5531304,0.73608094,0.3901687,-0.5527764,0.7360434,0.39074075,-0.55200446,0.73619395,0.39154765,-0.55096096,0.7367791,0.39191657,-0.5493368,0.73783207,0.39221543,-0.54937714,0.7377044,0.39239907,-0.55108315,0.73639345,0.39246908,-0.5517436,0.73580396,0.3926468,-0.5509335,0.73614264,0.3931492,-0.55046415,0.7364229,0.39328176,-0.54995394,0.7368327,0.39322805,-0.54876983,0.7379362,0.39281273,-0.5453377,0.74047244,0.3928198,-0.5444442,0.74135214,0.3923997,-0.54463935,0.7389809,0.3965794,-0.5457789,0.7373873,0.3979767,-0.5460949,0.73684764,0.39854226,-0.5468285,0.7359436,0.39920622,-0.54883194,0.73446417,0.39918151,-0.55150384,0.73237926,0.39932966,-0.55316865,0.7309665,0.39961532,-0.55381465,0.7303672,0.39981633,-0.5541982,0.7299281,0.4000867,-0.5543436,0.7294293,0.4007942,-0.55427176,0.72926605,0.40119055,-0.5541379,0.72920716,0.40148243,-0.5534697,0.7294415,0.40197805,-0.551391,0.7306326,0.40267107,-0.55004334,0.7314943,0.40294966,-0.5486525,0.7324588,0.40309376,-0.54777044,0.7325359,0.40415177,-0.54891574,0.73147684,0.40451583,-0.5492432,0.7308449,0.40521306,-0.5500468,0.7300248,0.40560114,-0.5523289,0.72753656,0.4069686,-0.552563,0.7270406,0.40753657,-0.55251455,0.7269136,0.40782878,-0.5522459,0.7269645,0.40810177,-0.5503402,0.72790945,0.40899086,-0.54957294,0.7277453,0.4103126,-0.549656,0.72729975,0.4109907,-0.5494634,0.72713184,0.41154504,-0.5489939,0.72724354,0.41197392,-0.5484115,0.72754824,0.4122116,-0.5477179,0.728045,0.41225666,-0.54623085,0.7292007,0.41218698,-0.5441368,0.73104554,0.4116886,-0.5437094,0.7314856,0.41147158,-0.54339886,0.7318992,0.41114625,-0.54298806,0.73258114,0.41047394,-0.53805083,0.7364079,0.4101277,-0.53749764,0.7369214,0.40993056,-0.53657717,0.73785967,0.40944844,-0.53596795,0.73871154,0.40870973,-0.5354586,0.73954904,0.40786183,-0.53497934,0.7401631,0.40737653,-0.53497446,0.74044037,0.40687883,-0.5352356,0.74044615,0.40652484,-0.53590816,0.73995847,0.40652665,-0.5337716,0.7434868,0.4028837,-0.5325185,0.74424094,0.4031495,-0.53227895,0.7444629,0.40305594,-0.5322124,0.7446745,0.40275297,-0.5323121,0.7448599,0.40227795,-0.53428066,0.7439443,0.4013615,-0.5363943,0.7431197,0.40006778,-0.5405768,0.7401459,0.3999509,-0.54248625,0.74079597,0.39614394,-0.54006016,0.74222374,0.39678586,-0.53930557,0.7427786,0.39677384,-0.5386909,0.7433159,0.3966026,-0.53867745,0.7434453,0.39637828,-0.54023516,0.7433746,0.3943858,-0.5392299,0.7436396,0.39526108,-0.5387471,0.7438082,0.39560205,-0.53859055,0.7439375,0.39557195,-0.53744733,0.74417263,0.3966831,-0.5370435,0.74441,0.39678463,-0.53648686,0.7451714,0.39610767,-0.5364745,0.7455657,0.395382,-0.53567886,0.7458468,0.39593026,-0.534156,0.7465724,0.39661944,-0.532661,0.7474291,0.39701638,-0.53217685,0.7473809,0.3977557,-0.5317703,0.7475009,0.39807373,-0.53116083,0.74781954,0.39828894,-0.5298162,0.74872804,0.398373,-0.52928567,0.7491392,0.39830536,-0.52858794,0.7497835,0.3980195,-0.5279755,0.7505116,0.39745966,-0.5278506,0.7507644,0.39714792,-0.52792674,0.750792,0.3969946,-0.5286892,0.75048685,0.3965567,-0.53043896,0.7496877,0.39573085,-0.53093255,0.7497948,0.39486507,-0.5313884,0.7496741,0.39448082,-0.533201,0.748745,0.3937989,-0.53352535,0.74908555,0.39271054,-0.5343345,0.74890715,0.39194995,-0.53523886,0.74836814,0.39174542,-0.53560805,0.74836355,0.3912493,-0.5363118,0.7482223,0.39055488,-0.53738964,0.7480164,0.38946605,-0.53545475,0.7487772,0.39066723,-0.53439325,0.74926054,0.3911937,-0.5337294,0.74983764,0.3909942,-0.53242725,0.7507515,0.3910159,-0.5321138,0.75103176,0.39090437,-0.53253543,0.7512112,0.38998428,-0.53334296,0.7510874,0.38911813,-0.5332797,0.75171167,0.38799784,-0.5324664,0.75204486,0.3884689,-0.5318956,0.7523767,0.38860837,-0.531775,0.7525451,0.38844728,-0.53248554,0.7524929,0.38757405,-0.53410965,0.75227344,0.38576102,-0.5312896,0.75343895,0.38737723,-0.53051174,0.75385517,0.38763338,-0.5300989,0.7541524,0.38762006,-0.52954674,0.7546341,0.38743728,-0.52875364,0.75511473,0.38758388,-0.52771753,0.7555967,0.38805646,-0.5263791,0.7563242,0.38845694,-0.525752,0.75690037,0.38818383,-0.52504593,0.75772625,0.3875277,-0.52477074,0.7583804,0.3866197,-0.5250039,0.7591043,0.38487858,-0.5252859,0.7595701,0.3835726,-0.5257565,0.7597464,0.38257757,-0.52808195,0.7594903,0.37987357,-0.5283344,0.75954515,0.37941262,-0.52869296,0.7594421,0.37911934,-0.5291574,0.759182,0.37899232,-0.53022414,0.7584693,0.37892833,-0.5301923,0.75860924,0.37869266,-0.5295715,0.7592774,0.37822196,-0.5289293,0.7600582,0.37755167,-0.5282011,0.76074344,0.3771909,-0.5284447,0.7607158,0.37690538,-0.5293449,0.7603019,0.3764772,-0.53031725,0.75977683,0.37616855,-0.53214014,0.7587653,0.37563562,-0.53265375,0.7586509,0.37513843,-0.5334071,0.7583193,0.3747381,-0.53470135,0.75768286,0.37418056,-0.53431135,0.75805485,0.3739843,-0.5342803,0.7581954,0.3737435,-0.5346085,0.75810426,0.373459,-0.53591824,0.75750154,0.3728042,-0.5368476,0.7569928,0.37250036,-0.53712684,0.7567628,0.37256524,-0.53886,0.7556185,0.37238494,-0.5382213,0.7561457,0.3722385,-0.53782797,0.75663126,0.3718201,-0.536214,0.7577585,0.3718556,-0.53525555,0.7585287,0.37166604,-0.5342922,0.75936776,0.3713387,-0.53353506,0.7602022,0.37071943,-0.53339595,0.76049834,0.3703121,-0.53346175,0.7606771,0.36985,-0.5336795,0.76056254,0.3697714,-0.53476316,0.759416,0.37056136,-0.5355966,0.7590538,0.3700994,-0.53497124,0.7596993,0.3696794,-0.534746,0.7600987,0.3691838,-0.5345413,0.7602897,0.36908692,-0.53557134,0.7599807,0.36822912,-0.5370845,0.75966436,0.36667475,-0.53707516,0.7605791,0.3647872,-0.539153,0.7599165,0.36309934,-0.5394986,0.75986105,0.3627016,-0.536849,0.7613151,0.36358285,-0.53606457,0.7620578,0.3631842,-0.53571856,0.7623314,0.36312038,-0.5358036,0.7624522,0.36274105,-0.5363187,0.7624213,0.36204422,-0.53699785,0.7621985,0.36150625,-0.5364136,0.7627212,0.36127108,-0.53300387,0.7641226,0.36335036,-0.5314554,0.7648357,0.36411738,-0.5306063,0.76533455,0.36430752,-0.5299424,0.7658554,0.36417943,-0.5299601,0.76601267,0.36382267,-0.53121346,0.76566905,0.36271632,-0.53185177,0.7656005,0.3619247,-0.5319539,0.7661917,0.3605209,-0.53223985,0.76624376,0.35998777,-0.533558,0.76584935,0.3588741,-0.53456926,0.7653724,0.35838637,-0.5343971,0.76556486,0.358232,-0.5335252,0.7662142,0.35814333,-0.53296244,0.76674896,0.3578367,-0.53270924,0.76716894,0.3573131,-0.5327396,0.7673329,0.3569156,-0.53343797,0.76705414,0.35647133,-0.5347524,0.7661989,0.3563413,-0.53670466,0.7648923,0.35621336,-0.5374694,0.76457983,0.35573074,-0.53906196,0.76365733,0.3553022,-0.542311,0.7616907,0.35457876,-0.5415501,0.76236725,0.3542875,-0.5411518,0.7627857,0.35399535,-0.5404723,0.7636579,0.3531518,-0.53965485,0.76417595,0.35328147,-0.53888774,0.7647292,0.35325515,-0.53855944,0.76501685,0.35313305,-0.5379256,0.76566905,0.3526854,-0.5365426,0.7667134,0.35252315,-0.5339456,0.76835877,0.35288367,-0.5328869,0.76907444,0.35292506,-0.53181577,0.7699621,0.35260504,-0.53148216,0.770291,0.35238972,-0.53062546,0.77070224,0.3527814,-0.52759576,0.77256477,0.35325122,-0.52648324,0.77329797,0.3533068,-0.52546555,0.77421355,0.3528162,-0.5246712,0.7747344,0.35285524,-0.523319,0.7753601,0.3534882,-0.5219783,0.7761275,0.35378617,-0.52012503,0.7775116,0.3534766,-0.51942724,0.77810127,0.35320497,-0.5189325,0.77858764,0.35286018,-0.5186048,0.77896774,0.3525029,-0.51844406,0.77924126,0.35213467,-0.51844734,0.7793935,0.35179284,-0.5186144,0.7794244,0.3514778,-0.5193354,0.77924395,0.3508128,-0.5175048,0.7808996,0.34983516,-0.5160398,0.7810705,0.35161328,-0.5152657,0.78122526,0.35240364,-0.5147979,0.78139603,0.35270864,-0.51388615,0.782728,0.35108098,-0.52823585,0.77679133,0.34287336,-0.540524,0.76826984,0.34292164,-0.56586194,0.7494265,0.3437444,-0.5638283,0.7491138,0.3477444,-0.5724948,0.7399934,0.35307136,-0.5517808,0.73811275,0.38823652,-0.56316394,0.73032933,0.38660753,-0.5461388,0.73657334,0.3989889,-0.54741395,0.7329378,0.40390605,-0.5374227,0.738684,0.406845,-0.53301847,0.74728745,0.39680317,-0.52990514,0.7498557,0.39612746,-0.53795964,0.7476634,0.38935703,-0.53136057,0.7591415,0.37597892,-0.53439975,0.7577713,0.37443238,-0.5375304,0.7562941,0.37293476,-0.5378413,0.761784,0.3611257,-0.53598285,0.76530004,0.35642424,-0.5414819,0.7621218,0.35491934,-0.5411168,0.76294607,0.35370317,-0.514523,0.78229666,0.35110974,-0.5249841,0.77873045,0.34346846,-0.5253154,0.77852505,0.34342757,-0.55367965,0.757333,0.3462452,-0.5657351,0.7506901,0.3411864,-0.5581406,0.7405057,0.37434003,-0.55598944,0.74066204,0.37722075,-0.5590546,0.73398453,0.38564837,-0.5603035,0.73326296,0.38520828,-0.55364865,0.73591995,0.38973704,-0.54777616,0.73299056,0.40331882,-0.5496367,0.7279767,0.40981632,-0.53462845,0.7428636,0.40289712,-0.5421214,0.73918813,0.3996315,-0.5398157,0.7432583,0.39517865,-0.53348243,0.7515509,0.3880306,-0.5356089,0.7589634,0.37026706,-0.5407826,0.7634053,0.353223,-0.5373594,0.766131,0.35254535,-0.52508944,0.77449507,0.3527584,-0.5182189,0.78073984,0.34913388,-0.52851266,0.77648264,0.34314588,-0.5297333,0.7755764,0.34331304,-0.54961836,0.7602925,0.34622964,-0.5564468,0.75457144,0.3478345,-0.55661285,0.75449485,0.34773514,-0.5658694,0.75037307,0.34166077,-0.5371177,0.74094427,0.40312052,-0.53797364,0.74772394,0.38922125,-0.53372467,0.7522397,0.38635918,-0.53505284,0.7591798,0.37062716,-0.5379896,0.76175475,0.36096656,-0.5658623,0.7501725,0.34211266,-0.5498502,0.7279925,0.40950176,-0.5386172,0.73789996,0.40668806,-0.542628,0.74065226,0.39621842,-0.5336514,0.75134116,0.38820428,-0.5651843,0.7500885,0.3434152,-0.55452627,0.73895967,0.38267386,-0.55054647,0.73892975,0.3884346,-0.5401271,0.7370781,0.40617558,-0.53822017,0.740037,0.4033166,-0.53775454,0.7560922,0.373021,-0.51904845,0.78001404,0.34952363,-0.5438156,0.7402909,0.3952645,-0.547416,0.7330891,0.40362877,-0.54087985,0.736748,0.4057726,-0.5392158,0.7390785,0.40374413,-0.519362,0.7796321,0.34990984,-0.54092485,0.7666817,0.34583166,-0.5406283,0.7374201,0.40488598,-0.5194858,0.77932996,0.35039887,-0.55733645,0.744235,0.3680902,-0.5407929,0.7371333,0.4051883,-0.5387573,0.75560063,0.37256983,-0.55371875,0.7469439,0.36806297,-0.5441249,0.74150544,0.392553,-0.5507513,0.74807465,0.3702125,-0.5427457,0.7390228,0.39908955,-0.5433718,0.7390446,0.39819604,-0.54307216,0.739951,0.39691958,-0.5433188,0.73942,0.39757106,-0.54370016,0.74087036,0.39433643,-0.5432698,0.75066197,0.37598473,-0.5435743,0.75168604,0.3734904,-0.54339534,0.75137407,0.37437758,-0.32424942,0.94576055,0.01998395,-0.3232652,0.94606215,0.021587763,-0.32207468,0.94643897,0.022830036,-0.32148236,0.94661516,0.023849232,-0.32078943,0.94679964,0.02577985,-0.31940287,0.9472294,0.027171366,-0.31852767,0.9475077,0.027736535,-0.31780842,0.94776,0.027364768,-0.31637973,0.9482801,0.025859965,-0.31542802,0.9486301,0.024618907,-0.304042,0.95246094,0.019405516,-0.30171213,0.953202,0.019383827,-0.30073705,0.9535112,0.019328885,-0.29969636,0.9538463,0.018958628,-0.29749635,0.95455885,0.017702535,-0.2933394,0.95584714,0.01755779,-0.29248273,0.95610166,0.017984334,-0.2873533,0.9576229,0.019657932,-0.2826755,0.95895684,0.022278812,-0.28129354,0.9593315,0.023599647,-0.27967498,0.9597797,0.024593754,-0.2792149,0.95991117,0.024689516,-0.27852818,0.9601168,0.024448441,-0.27829057,0.96018946,0.024301624,-0.27783975,0.96033335,0.023768,-0.27745628,0.9605375,0.019641165,-0.277526,0.96056,0.017429363,-0.2779789,0.960459,0.01569353,-0.27939904,0.9600959,0.012333863,-0.28006113,0.9599174,0.011151588,-0.2809293,0.95967454,0.010171505,-0.2822759,0.95929086,0.00901874,-0.28556076,0.95833886,0.0064544687,-0.2858155,0.95826364,0.006350563,-0.28619978,0.95814925,0.0062968736,-0.28708607,0.95788467,0.0062094093,-0.28810877,0.95758384,0.0051456233,-0.28929508,0.95722955,0.0044701244,-0.29054114,0.95685446,0.0039284476,-0.2911959,0.9566561,0.0037447128,-0.2920664,0.95639116,0.0036311722,-0.29330227,0.95601326,0.003525298,-0.29562038,0.95529974,0.003314055,-0.2975344,0.95470804,0.0024073822,-0.2995685,0.9540735,0.0015606228,-0.30124146,0.9535474,0.00096297363,-0.30217078,0.9532535,0.00073032547,-0.30291504,0.95301735,0.000666006,-0.30382207,0.95272857,0.0006729259,-0.304891,0.952387,0.0007519473,-0.3055641,0.952171,0.00094448146,-0.30602166,0.95202327,0.0015460121,-0.3061045,0.95199615,0.001831029,-0.30638865,0.95190483,0.0017977369,-0.30820298,0.9513205,0.0003684955,-0.30986705,0.9507799,-0.0001362447,-0.3106465,0.9505255,-0.000105887935,-0.31153825,0.9502336,0.00012317397,-0.31328428,0.94965935,0.00036258262,-0.31588456,0.9487974,0.0006145766,-0.3174312,0.94828093,0.0008545837,-0.31792673,0.9481147,0.0010799835,-0.31856626,0.94789904,0.0017052032,-0.31973344,0.94750196,0.0032497232,-0.32077095,0.9471428,0.0051547242,-0.3215027,0.9468756,0.00791631,-0.32163116,0.9468024,0.01089077,-0.32237422,0.9465283,0.012608336,-0.32350186,0.94612813,0.013715341,-0.3243538,0.94581836,0.014906927,-0.32568496,0.94542944,0.009614447,-0.3249548,0.9456921,0.00841475,-0.32473132,0.9457774,0.0073938235,-0.3247846,0.9457719,0.005526568,-0.3244393,0.9458997,0.0035928788,-0.32453486,0.94586873,0.0030819303,-0.32561228,0.9454966,0.0035717064,-0.3286628,0.94443774,0.0042592883,-0.32949913,0.9441449,0.0045532244,-0.33336282,0.94277483,0.0067010024,-0.3338223,0.94260937,0.0070933467,-0.33419538,0.94247156,0.0077999635,-0.3346229,0.94230586,0.009334588,-0.335798,0.9418735,0.010680049,-0.33765873,0.9411872,0.012377356,-0.33773234,0.94115585,0.012749273,-0.3375299,0.94122463,0.013028816,-0.33665547,0.94152826,0.013696757,-0.33635342,0.94162154,0.014671148,-0.33654425,0.94152766,0.016236689,-0.33624074,0.9416181,0.017249268,-0.33592018,0.94173396,0.01716967,-0.33540878,0.9419253,0.016663546,-0.3348322,0.94212747,0.016830254,-0.33512396,0.9419888,0.018681893,-0.3350491,0.9420031,0.019294465,-0.3348488,0.9420649,0.019751066,-0.33371618,0.9424393,0.02101393,-0.3340702,0.94231784,0.020836437,-0.3347109,0.942094,0.020674804,-0.33563992,0.9417666,0.020529771,-0.3366478,0.94140327,0.020689912,-0.3384968,0.94072133,0.021525227,-0.33893478,0.9405576,0.021787122,-0.33954656,0.9403186,0.022563392,-0.34049305,0.9399113,0.025123557,-0.33911237,0.9403557,0.027091486,-0.33946744,0.94015867,0.029385325,-0.33939272,0.94015867,0.03023578,-0.33959368,0.9400701,0.030730946,-0.34004408,0.9398933,0.031155089,-0.3403728,0.9397238,0.03264301,-0.3406651,0.93947,0.03665268,-0.34041598,0.9394823,0.038600374,-0.33993435,0.9395024,0.042188108,-0.3412631,0.9388899,0.04500241,-0.3415805,0.9387153,0.046220843,-0.3413844,0.93874115,0.047135867,-0.340787,0.93890667,0.04815099,-0.33924934,0.93935025,0.050309584,-0.34209016,0.93807596,0.054660894,-0.3413578,0.93832046,0.055041637,-0.34103265,0.9384427,0.0549734,-0.34015745,0.93879753,0.054333363,-0.33945096,0.93909425,0.053619623,-0.33826968,0.93959,0.05238611,-0.33771643,0.93983793,0.051499974,-0.3377949,0.9398394,0.050955646,-0.3364231,0.9402356,0.052692726,-0.33672786,0.9400303,0.054382525,-0.33665258,0.9400032,0.055308104,-0.3370484,0.93975496,0.05708724,-0.33714268,0.93967336,0.057868715,-0.3370555,0.9396687,0.058449157,-0.33811617,0.9390626,0.06195885,-0.3381219,0.9390198,0.06257301,-0.33777156,0.9390632,0.06380234,-0.33704376,0.9392461,0.06494787,-0.33597225,0.93955815,0.06597818,-0.3353601,0.93975496,0.06628875,-0.334714,0.93997675,0.06640975,-0.3338099,0.9403096,0.0662484,-0.33264336,0.94075394,0.06580593,-0.33168358,0.9411282,0.065297164,-0.33092904,0.9414334,0.06472275,-0.3305151,0.9416187,0.06414069,-0.3263375,0.94311446,0.06355307,-0.32742414,0.94269127,0.06423865,-0.32807866,0.9424268,0.06477771,-0.32830095,0.94232243,0.06516819,-0.329609,0.94178444,0.066332534,-0.32967135,0.941742,0.06662429,-0.33006635,0.9415621,0.06720841,-0.33121052,0.941053,0.068694025,-0.33131528,0.9409918,0.069025636,-0.33121955,0.94099385,0.069456115,-0.3303852,0.9411587,0.071175136,-0.333472,0.93994015,0.07286259,-0.33467126,0.9394878,0.07319664,-0.33568126,0.93909687,0.07358751,-0.3365028,0.93876755,0.07403633,-0.33652636,0.93871117,0.074641295,-0.3382437,0.9378227,0.077973425,-0.33865297,0.9377117,0.07753031,-0.3389725,0.9376024,0.07745569,-0.33920097,0.9374954,0.07775007,-0.3393965,0.9373844,0.07823338,-0.33934408,0.93735,0.07887062,-0.3397136,0.937117,0.08003992,-0.33934322,0.9372288,0.08030163,-0.33770567,0.9376069,0.08275409,-0.3385712,0.9374034,0.08151329,-0.33910835,0.9372267,0.08131184,-0.33979267,0.9369694,0.0814205,-0.3402963,0.9367736,0.08157,-0.3409669,0.9364852,0.08207958,-0.34133497,0.9363117,0.08252742,-0.3415116,0.9361923,0.0831492,-0.3414963,0.93612695,0.08394402,-0.34744352,0.933744,0.08605303,-0.34746101,0.93390805,0.08418225,-0.3479772,0.93377054,0.08357297,-0.34839955,0.93363965,0.08327538,-0.34899867,0.9334206,0.083222404,-0.35149485,0.9324267,0.08385626,-0.3519187,0.93227047,0.08381512,-0.35243875,0.93207026,0.08385706,-0.35305223,0.9318268,0.08398235,-0.35336018,0.9316832,0.08427964,-0.35319236,0.9316426,0.085423924,-0.3523755,0.9318688,0.08632535,-0.35000646,0.9325772,0.08829077,-0.34891617,0.93287647,0.08943686,-0.34773418,0.93328446,0.089783475,-0.34755218,0.9332566,0.09077194,-0.34792706,0.9330124,0.09184004,-0.34726062,0.9332082,0.09237134,-0.34545597,0.9337095,0.09405687,-0.34629226,0.93347317,0.09332475,-0.34669456,0.9333368,0.093194894,-0.34696785,0.9332091,0.093456075,-0.3468616,0.93318033,0.094135456,-0.34744862,0.9329038,0.09470979,-0.34879214,0.9324698,0.09404342,-0.34899902,0.93237525,0.094213106,-0.34905195,0.9322979,0.09478069,-0.3489356,0.93230313,0.095156945,-0.3489277,0.9322625,0.095583364,-0.349498,0.9320431,0.095639355,-0.35017163,0.93173885,0.09613813,-0.3517881,0.930928,0.09807269,-0.35203746,0.9307757,0.09862188,-0.35213175,0.93068093,0.099177964,-0.3520702,0.93064415,0.0997399,-0.35152546,0.9307283,0.10086962,-0.35101417,0.9309205,0.100876726,-0.3520559,0.9303988,0.102052346,-0.35263842,0.9301881,0.101961635,-0.3531913,0.9299652,0.10208135,-0.35412198,0.9295382,0.10274452,-0.35458517,0.9292938,0.103355736,-0.35486934,0.92909724,0.10414445,-0.3547021,0.92911804,0.1045279,-0.3532378,0.9294998,0.10608076,-0.35407054,0.9291905,0.106014475,-0.35472056,0.9289178,0.106230855,-0.35670233,0.9278817,0.1086232,-0.35890806,0.92682236,0.11038739,-0.36061785,0.9259472,0.11214534,-0.36268285,0.9249356,0.11382155,-0.36710307,0.92282003,0.1167843,-0.3675285,0.92258704,0.1172857,-0.37111297,0.9211725,0.117117174,-0.37190846,0.9209846,0.11606648,-0.3727646,0.9207135,0.11546962,-0.37534416,0.91970676,0.115135595,-0.3762405,0.91933125,0.11520884,-0.3778971,0.91864073,0.11529497,-0.37867847,0.91844064,0.114321664,-0.3792088,0.9182734,0.113906525,-0.3799544,0.9180059,0.1135772,-0.38091567,0.9176378,0.11333185,-0.3853568,0.9160694,0.11098211,-0.3885068,0.91501707,0.10865653,-0.389217,0.9147277,0.108551204,-0.38968188,0.9145296,0.108552404,-0.39026585,0.9142325,0.10895631,-0.3913206,0.9136359,0.11017089,-0.3929289,0.91267055,0.11242491,-0.39821362,0.9098478,0.116631486,-0.39809674,0.91009766,0.115070865,-0.39834863,0.9100842,0.11430286,-0.39885092,0.9099864,0.113326125,-0.3993442,0.9098446,0.112725526,-0.4019663,0.9089958,0.11022591,-0.40198022,0.9091566,0.10884014,-0.40234643,0.90910125,0.10794583,-0.40273845,0.9089741,0.10755374,-0.40335226,0.90873736,0.107253835,-0.4046066,0.90832436,0.10602087,-0.40469375,0.90862274,0.10309048,-0.4051352,0.90849,0.10252491,-0.40571117,0.90819454,0.10286453,-0.40709457,0.90730214,0.10524628,-0.40937603,0.9060793,0.10691841,-0.4099379,0.9058538,0.10667639,-0.41055533,0.90557456,0.10667268,-0.41043183,0.90577364,0.10545069,-0.41008064,0.9059166,0.1055889,-0.40895933,0.90640426,0.10575219,-0.4083357,0.90672046,0.10545134,-0.40726995,0.90734375,0.10420446,-0.40627116,0.9079754,0.10258874,-0.40579653,0.908402,0.10067263,-0.40521494,0.909016,0.09742045,-0.40503293,0.9093368,0.09515694,-0.40528744,0.9094602,0.09286683,-0.40504456,0.90969247,0.0916435,-0.4053163,0.90962166,0.09114345,-0.4056397,0.9094935,0.09098344,-0.40673113,0.9090334,0.09070884,-0.40703386,0.90891546,0.0905324,-0.407465,0.9087135,0.090620294,-0.41002014,0.907496,0.09129383,-0.41206375,0.9068451,0.08851808,-0.4130249,0.9064745,0.087832004,-0.41373208,0.9061817,0.0875244,-0.414469,0.90585923,0.08737554,-0.41657788,0.9048844,0.087447874,-0.41751066,0.9044686,0.08730088,-0.41810027,0.9041925,0.087339014,-0.418869,0.90381867,0.08752492,-0.41955817,0.9034679,0.08784469,-0.42118526,0.9025797,0.08917833,-0.4216793,0.90229267,0.089747116,-0.42281967,0.90158415,0.09148511,-0.42287725,0.9015318,0.09173454,-0.42275155,0.9014079,0.09351464,-0.4232215,0.90107626,0.09457888,-0.42332143,0.9009284,0.09553533,-0.42303118,0.90085626,0.097481415,-0.42325285,0.90060455,0.09883556,-0.4229563,0.90063787,0.099796906,-0.42176086,0.9010892,0.10077697,-0.4217753,0.90102375,0.10130037,-0.42146343,0.901101,0.10190953,-0.41949102,0.90174264,0.10434332,-0.41914567,0.9017169,0.10594157,-0.41894478,0.9017717,0.10626844,-0.41615346,0.9028914,0.10771921,-0.4166195,0.9025133,0.10907729,-0.41672337,0.9023551,0.109986044,-0.41663173,0.9022595,0.11111113,-0.41615608,0.90232754,0.112334706,-0.4152942,0.9025596,0.11365275,-0.41426626,0.9030137,0.11379653,-0.41307095,0.90368956,0.112772256,-0.41219512,0.90420854,0.1118129,-0.41123185,0.9047675,0.110833675,-0.4109675,0.9047991,0.111554004,-0.41067055,0.9048814,0.111978956,-0.41068763,0.9047243,0.11317945,-0.41166338,0.90421176,0.11372926,-0.41229352,0.90385985,0.11424262,-0.41257852,0.9036695,0.11471883,-0.4126575,0.90358585,0.115092866,-0.41449162,0.9023591,0.11808746,-0.41489047,0.90216184,0.11819461,-0.41510868,0.90201837,0.118522614,-0.41505775,0.9020033,0.118815355,-0.41473708,0.90211695,0.119071975,-0.41424838,0.90232825,0.119172074,-0.41246477,0.9031715,0.11897111,-0.41226703,0.9032256,0.119245216,-0.41240016,0.90308213,0.1198697,-0.41223416,0.90309757,0.120323814,-0.41150203,0.9033543,0.12090132,-0.41147643,0.90314186,0.12256413,-0.41104585,0.9032044,0.123544194,-0.41139683,0.9030375,0.12359579,-0.41381714,0.90200955,0.12302104,-0.41420597,0.901827,0.123050965,-0.41536683,0.9009398,0.12560983,-0.41726378,0.8996887,0.128262,-0.41815042,0.899027,0.1300025,-0.418565,0.89871037,0.13085504,-0.41976416,0.89803356,0.13165767,-0.4207172,0.89743924,0.13266426,-0.42068508,0.89739794,0.13304521,-0.41907012,0.8979612,0.1343352,-0.41923687,0.89781,0.13482451,-0.41982505,0.8975565,0.13468213,-0.42122096,0.8969266,0.13451974,-0.4216566,0.8967027,0.13464779,-0.42178288,0.8965551,0.13523337,-0.42142254,0.89591926,0.1404695,-0.42177853,0.89570266,0.14078228,-0.4218903,0.89560753,0.1410522,-0.42465752,0.8943903,0.14047058,-0.42487976,0.8944311,0.13953573,-0.4253356,0.8943876,0.13842113,-0.4255856,0.8942805,0.1383449,-0.42615706,0.8938044,0.13965629,-0.4280586,0.8924851,0.14225395,-0.42866775,0.89200604,0.14341967,-0.42917004,0.8915298,0.14487153,-0.42928034,0.89134324,0.14569005,-0.42734194,0.8919609,0.14759594,-0.42921454,0.89116234,0.14698486,-0.42949554,0.8910243,0.14700097,-0.4295815,0.8908343,0.14789878,-0.43005556,0.8902962,0.14974931,-0.430056,0.8899677,0.15168847,-0.43058673,0.88934857,0.15379904,-0.43070716,0.88912404,0.15475737,-0.43034893,0.88907486,0.15603103,-0.42977554,0.8892262,0.15674743,-0.42908278,0.88897383,0.16004209,-0.43108612,0.88758934,0.16232651,-0.4325405,0.88639736,0.16494988,-0.43268743,0.8862454,0.16538025,-0.4328875,0.88554764,0.16856375,-0.43316254,0.8852418,0.16946122,-0.43324202,0.88503325,0.17034519,-0.43306664,0.88486695,0.17165022,-0.43139297,0.884184,0.17921712,-0.43141496,0.8840438,0.17985468,-0.43168086,0.8838067,0.18038112,-0.4316932,0.8835438,0.18163507,-0.43133953,0.8830508,0.18484454,-0.4317528,0.8823371,0.1872718,-0.43182936,0.8820506,0.18844163,-0.43178558,0.8818823,0.18932736,-0.43159193,0.8818658,0.18984488,-0.43080166,0.8820698,0.1906903,-0.4302923,0.88224083,0.19104882,-0.42952955,0.88268095,0.19073205,-0.42851093,0.8833889,0.18974312,-0.42788258,0.8837852,0.1893153,-0.42704016,0.8840693,0.18988986,-0.42666787,0.8842413,0.189926,-0.42587444,0.8846533,0.18978813,-0.4256901,0.88482726,0.18939038,-0.42509016,0.8858143,0.18609494,-0.4238417,0.8867135,0.18465467,-0.42340782,0.88709104,0.18383487,-0.42246434,0.88783187,0.18242393,-0.42226085,0.8880706,0.1817318,-0.42211333,0.88862383,0.1793544,-0.42079827,0.8897632,0.1767776,-0.4207688,0.8898752,0.17628324,-0.42025864,0.89032537,0.17522389,-0.4200794,0.89059603,0.1742757,-0.41962302,0.8912733,0.17189653,-0.41888535,0.8915815,0.17209731,-0.41861784,0.8917466,0.17189279,-0.41844434,0.89270145,0.16729754,-0.4169342,0.89378035,0.16529547,-0.4159044,0.8946143,0.16336702,-0.41242465,0.8959992,0.16459453,-0.41396725,0.8945385,0.16861767,-0.41416022,0.8943083,0.16936326,-0.41400933,0.89433193,0.16960719,-0.41310742,0.8948507,0.16906962,-0.41123062,0.8959832,0.16764067,-0.41000944,0.8967472,0.16654372,-0.41091704,0.89597493,0.16845204,-0.41248596,0.8947898,0.17089927,-0.41380993,0.89369047,0.17343202,-0.41407698,0.8934108,0.17423384,-0.41341835,0.89350075,0.17533311,-0.4135272,0.8934116,0.17553063,-0.41416034,0.8930226,0.17601646,-0.41440198,0.89280355,0.17655833,-0.4148748,0.89228857,0.17804496,-0.41553,0.89188504,0.17853835,-0.415893,0.89164096,0.17891183,-0.41596466,0.8915568,0.17916454,-0.4156221,0.89164054,0.17954212,-0.4150487,0.8919478,0.17934227,-0.41348228,0.89286035,0.17841752,-0.4135263,0.89273447,0.1789446,-0.41493747,0.8917759,0.18045108,-0.4156782,0.8912219,0.1814805,-0.41572642,0.8909802,0.18255371,-0.41560316,0.89093494,0.18305454,-0.41529757,0.891056,0.18315874,-0.41437986,0.89161044,0.18253809,-0.41493073,0.8907568,0.18543138,-0.4154204,0.89038086,0.18613935,-0.41550034,0.89028066,0.18643965,-0.4153661,0.8903048,0.18662359,-0.4150171,0.8904534,0.18669122,-0.41635993,0.888738,0.1918052,-0.41699687,0.8882123,0.19285342,-0.41707823,0.8880278,0.19352607,-0.41660455,0.8881857,0.19382173,-0.41581455,0.88862896,0.1934861,-0.41257152,0.8906286,0.19122094,-0.4127582,0.8901266,0.19314593,-0.41270465,0.8900528,0.19359994,-0.41220674,0.8901107,0.19439301,-0.411761,0.89023185,0.19478239,-0.4114477,0.8903874,0.1947333,-0.41126817,0.89057666,0.19424653,-0.41078824,0.8909415,0.19358797,-0.4100062,0.8914815,0.19275802,-0.40933213,0.89199984,0.19179028,-0.4076558,0.89323694,0.18959038,-0.4073781,0.8933151,0.189819,-0.4067651,0.8936331,0.18963636,-0.40534312,0.89446765,0.1887447,-0.40318456,0.895758,0.1872427,-0.40215048,0.8964018,0.18638344,-0.40152127,0.89683276,0.18566549,-0.40332818,0.8953135,0.18905053,-0.40664583,0.89312696,0.19225876,-0.40687278,0.8929425,0.19263515,-0.4066419,0.89292526,0.19320163,-0.4061043,0.8930886,0.19357695,-0.404732,0.8938224,0.19306377,-0.4032515,0.8946444,0.19235292,-0.40040135,0.8963292,0.19045377,-0.40003306,0.8963863,0.19095834,-0.399523,0.8965355,0.19132558,-0.39862835,0.89718384,0.19014889,-0.3973719,0.8980073,0.18888737,-0.39727345,0.89816844,0.18832742,-0.39783636,0.89815015,0.18722335,-0.39683238,0.89849496,0.18769893,-0.39608902,0.89886725,0.18748653,-0.3958566,0.899008,0.18730257,-0.39614528,0.8990446,0.1865149,-0.39664173,0.8989942,0.18570082,-0.3972078,0.89886165,0.18513162,-0.39736173,0.8990845,0.18371375,-0.3968234,0.89931005,0.18377322,-0.3965405,0.89945984,0.1836508,-0.3960705,0.8997851,0.18307088,-0.39561588,0.90017927,0.1821137,-0.39510095,0.90056413,0.18132694,-0.3949528,0.9010304,0.17932214,-0.39389324,0.9011912,0.1808385,-0.39366046,0.90110177,0.1817884,-0.3913167,0.90210885,0.18185401,-0.39069575,0.9024693,0.18140027,-0.39060196,0.9026583,0.18066043,-0.39157936,0.90265757,0.17853561,-0.39177123,0.9026212,0.17829815,-0.39141583,0.90278035,0.17827296,-0.39000973,0.9032493,0.17897788,-0.38916042,0.9035713,0.17920116,-0.38828918,0.9042795,0.17751095,-0.38882667,0.90413094,0.17709045,-0.38859567,0.904398,0.17623171,-0.38825306,0.90460956,0.1759008,-0.38749304,0.9052247,0.17440592,-0.38754585,0.9054632,0.17304501,-0.38838762,0.9051729,0.17267627,-0.38942,0.9047617,0.17250603,-0.39036816,0.9043428,0.17255966,-0.39019668,0.9046615,0.17127208,-0.38919356,0.9050359,0.171576,-0.38886002,0.9052287,0.17131534,-0.3884188,0.90563995,0.17013848,-0.38802522,0.9061009,0.1685751,-0.38795882,0.9063103,0.16759948,-0.3884351,0.90611464,0.1675543,-0.39028025,0.90527284,0.1678167,-0.38815618,0.9064529,0.16636707,-0.38745424,0.9068541,0.16581576,-0.38728654,0.90698224,0.16550621,-0.38732928,0.9069998,0.1653098,-0.38745382,0.9070795,0.16457896,-0.38696787,0.9073233,0.16437837,-0.38649744,0.90757966,0.16406971,-0.38565424,0.90809995,0.1631725,-0.3850973,0.9085359,0.16205727,-0.38488004,0.9088138,0.16101192,-0.3849193,0.90884763,0.16072696,-0.38474283,0.90892076,0.1607357,-0.3832707,0.909385,0.16162436,-0.3829321,0.90952927,0.16161536,-0.3825205,0.9100277,0.15977398,-0.38197613,0.9103182,0.15942082,-0.38155195,0.9105998,0.15882705,-0.3812465,0.9108726,0.15799436,-0.3812106,0.9109974,0.15736014,-0.38144433,0.9109749,0.15692346,-0.38188246,0.91086626,0.15648797,-0.38256004,0.9108501,0.154919,-0.38010314,0.9119317,0.15460318,-0.37988925,0.9120719,0.1543019,-0.37788934,0.9135069,0.15068081,-0.3770679,0.9138219,0.15082908,-0.37652665,0.91410434,0.15046889,-0.3757788,0.9147708,0.1482726,-0.37581807,0.91488016,0.14749584,-0.37558767,0.9144648,0.1506255,-0.3768042,0.91364354,0.15255861,-0.3771746,0.91329813,0.15370692,-0.377068,0.91298825,0.15579528,-0.37665194,0.91298896,0.1567945,-0.3764017,0.913046,0.15706304,-0.37580848,0.9132297,0.15741487,-0.3744033,0.9137897,0.15751384,-0.37389266,0.9141852,0.15642779,-0.37002736,0.9163658,0.15281835,-0.37074038,0.9157852,0.1545609,-0.3707871,0.91568893,0.15501824,-0.37045875,0.9157345,0.15553336,-0.37019286,0.91581494,0.15569271,-0.36856163,0.91659147,0.15499151,-0.367608,0.9172017,0.15364054,-0.36685097,0.91754466,0.15340197,-0.36707714,0.9172896,0.15438305,-0.36688334,0.91723734,0.15515228,-0.3662712,0.917388,0.15570688,-0.3657634,0.917629,0.15548036,-0.36565083,0.91744703,0.15681334,-0.36626905,0.91711915,0.15728767,-0.36684486,0.9167846,0.157895,-0.3688427,0.91552037,0.1605538,-0.36905026,0.91534305,0.16108692,-0.3691587,0.9150047,0.16275221,-0.36982116,0.9144851,0.16416243,-0.3695428,0.91444784,0.16499466,-0.3690848,0.91455233,0.16544019,-0.3683827,0.91475666,0.16587482,-0.36759698,0.914993,0.16631368,-0.36990106,0.9141579,0.16579664,-0.37096307,0.9136889,0.16600922,-0.37111232,0.91352355,0.16658421,-0.3704288,0.9134546,0.16847302,-0.3699443,0.9135069,0.16925208,-0.36941722,0.9136054,0.16987097,-0.36751842,0.9140964,0.17134155,-0.36630487,0.91451824,0.17168911,-0.36237985,0.9157828,0.1732707,-0.36338675,0.91546726,0.17282885,-0.36486202,0.9149084,0.1726799,-0.3679588,0.9136584,0.17272714,-0.36889106,0.91346395,0.1717642,-0.37005028,0.9131186,0.17110585,-0.37103793,0.91276765,0.17083925,-0.3723323,0.91227794,0.17063901,-0.3732425,0.91186243,0.17087108,-0.3738352,0.9114734,0.17164938,-0.37414747,0.9112356,0.17223078,-0.37517735,0.910609,0.1733008,-0.3753926,0.910454,0.17364907,-0.37669283,0.90969884,0.17478707,-0.37757403,0.9090551,0.17622903,-0.37824938,0.90850496,0.17761242,-0.37893328,0.9080268,0.17859693,-0.37955546,0.90755,0.17969608,-0.37995753,0.90716594,0.18078233,-0.37774208,0.90816313,0.18041803,-0.3749943,0.9092418,0.18071707,-0.37621036,0.9086872,0.18097888,-0.37849754,0.9075754,0.18178688,-0.37902367,0.9071491,0.18281572,-0.37939435,0.9067952,0.18379986,-0.37843397,0.9066863,0.18629993,-0.37914735,0.90622747,0.18708043,-0.37958458,0.90577656,0.18837297,-0.3778683,0.9064644,0.18851483,-0.37621564,0.9071796,0.18837994,-0.3745136,0.90799505,0.18784195,-0.37007028,0.91027373,0.18560623,-0.36893907,0.91080433,0.18525498,-0.3692184,0.91094327,0.18401125,-0.3691301,0.9112187,0.18282077,-0.36790228,0.9114649,0.18406396,-0.3671947,0.91180366,0.18379912,-0.36596704,0.9124991,0.18279359,-0.3675066,0.91137135,0.18531361,-0.36781695,0.9110965,0.18604802,-0.36766028,0.9108448,0.18758377,-0.36680415,0.9110273,0.18837188,-0.36687654,0.9109141,0.18877785,-0.36639166,0.9109714,0.18944192,-0.36349532,0.91215223,0.18933944,-0.36274582,0.91235816,0.1897842,-0.3622723,0.91260815,0.1894865,-0.3618166,0.9128752,0.18907034,-0.36138064,0.91315824,0.1885368,-0.3611385,0.91336095,0.1880179,-0.36095563,0.9136608,0.1869089,-0.36058813,0.9137897,0.18698835,-0.360427,0.91366947,0.18788414,-0.35985547,0.91358703,0.18937457,-0.35942793,0.9136262,0.18999681,-0.3586022,0.9137959,0.19073959,-0.35825568,0.91402423,0.1902961,-0.3578421,0.9145927,0.18833289,-0.35693154,0.9154583,0.18583848,-0.3564338,0.9155824,0.18618211,-0.3560005,0.9157742,0.18606777,-0.3545118,0.91630334,0.18630517,-0.35488245,0.91592884,0.18743734,-0.3546234,0.915728,0.18890333,-0.3542646,0.91575265,0.1894562,-0.3524505,0.9161733,0.19080146,-0.3519123,0.91645,0.19046551,-0.3508891,0.91708183,0.18930866,-0.34922582,0.9180164,0.18784913,-0.34970227,0.91746396,0.18965293,-0.34933496,0.91752297,0.19004402,-0.34825665,0.91781586,0.19060788,-0.34767097,0.9180921,0.19034663,-0.34728,0.91837186,0.18970965,-0.34655476,0.9189872,0.18804878,-0.34539697,0.92003864,0.18501306,-0.34462434,0.9206347,0.18348268,-0.3447263,0.9208232,0.18234155,-0.34792414,0.9200173,0.18032457,-0.3478983,0.9201915,0.17948338,-0.3483948,0.9200403,0.17929542,-0.34858814,0.9200453,0.17889355,-0.34875306,0.9201585,0.1779877,-0.3496723,0.9199879,0.17706367,-0.35156178,0.91956383,0.17551833,-0.35267016,0.91927826,0.17478912,-0.35284674,0.919289,0.17437574,-0.34916803,0.9204672,0.17556137,-0.34858665,0.9206729,0.17563806,-0.34788743,0.92097133,0.17545977,-0.34706575,0.92130107,0.17535597,-0.34614187,0.9216896,0.17513995,-0.34489998,0.92209977,0.17543109,-0.34428263,0.9227826,0.17303704,-0.3445829,0.9229306,0.17164432,-0.3445169,0.9230595,0.17108263,-0.34523806,0.92284167,0.17080376,-0.34610268,0.9226436,0.17012267,-0.3468837,0.92229617,0.17041555,-0.34753004,0.9223083,0.1690272,-0.34802532,0.92225003,0.16832472,-0.3485321,0.9222425,0.16731448,-0.34793702,0.9225453,0.16688327,-0.34834567,0.92264265,0.16548671,-0.3477436,0.92290926,0.1652661,-0.34761596,0.9228197,0.16603307,-0.34696478,0.92289776,0.16695847,-0.34618872,0.9228564,0.16878803,-0.34424388,0.9238502,0.16732302,-0.3425574,0.92432016,0.16818656,-0.3417642,0.9249106,0.16654609,-0.34161398,0.92547405,0.1637001,-0.34092653,0.9259542,0.16241254,-0.34083623,0.92613566,0.1615655,-0.3402808,0.92678523,0.15899093,-0.3396388,0.9269557,0.15936925,-0.3391994,0.92711836,0.15935887,-0.3388301,0.9273906,0.15855874,-0.33880842,0.9274674,0.15815529,-0.33930188,0.9273552,0.15775499,-0.3412234,0.9267878,0.15694274,-0.34242377,0.92639226,0.15666303,-0.34318724,0.92608356,0.15681748,-0.34469894,0.925369,0.1577174,-0.3452693,0.92507905,0.1581706,-0.34397188,0.9258664,0.15638015,-0.3418001,0.9267628,0.15583134,-0.34136945,0.9269762,0.15550567,-0.34132573,0.92706823,0.15505251,-0.34161887,0.92709666,0.15423459,-0.3427826,0.9269052,0.15279661,-0.34160993,0.9273877,0.15249483,-0.3410181,0.927647,0.15224215,-0.34116897,0.9276314,0.15199924,-0.3434273,0.92691386,0.15128915,-0.34568757,0.9262677,0.15009418,-0.34473068,0.9265568,0.15050974,-0.34234262,0.9274502,0.1504582,-0.3411062,0.92798394,0.14997444,-0.33862627,0.92900616,0.14926444,-0.33989763,0.9288118,0.14757474,-0.3407458,0.92855483,0.14723536,-0.34217668,0.9279014,0.14803427,-0.34358147,0.92737496,0.14807925,-0.3422696,0.92797,0.14738798,-0.3422124,0.92802495,0.14717464,-0.34311783,0.9278264,0.14631587,-0.3417246,0.9283554,0.1462211,-0.3411835,0.9285871,0.14601329,-0.34064603,0.92889696,0.1452951,-0.3400474,0.9293007,0.14411075,-0.33923945,0.92961043,0.14401771,-0.33789337,0.9299348,0.14508383,-0.33745673,0.9300698,0.14523469,-0.33734983,0.9301471,0.14498767,-0.33742428,0.930236,0.14424255,-0.33838105,0.9301991,0.14222498,-0.3383453,0.93033946,0.1413893,-0.33852553,0.9304041,0.1405299,-0.33825654,0.93063474,0.13964766,-0.33822146,0.93074167,0.13901857,-0.33854365,0.930718,0.1383914,-0.33916855,0.9305643,0.13789417,-0.33841762,0.93115836,0.13571145,-0.33744758,0.93157107,0.1352941,-0.33725315,0.9317101,0.13482063,-0.3370941,0.9318975,0.13391982,-0.3373225,0.93200386,0.13259864,-0.3369904,0.93278253,0.12788382,-0.33682567,0.9323882,0.13115156,-0.33667436,0.9323953,0.13148932,-0.33538756,0.9326015,0.13330273,-0.33540976,0.9322902,0.13540795,-0.33525702,0.93222266,0.13624828,-0.3338516,0.9327229,0.1362755,-0.332684,0.93316597,0.1360977,-0.33110487,0.9338221,0.13544706,-0.3308838,0.9339924,0.13481149,-0.33055028,0.9344074,0.13273773,-0.33045974,0.93461734,0.13147949,-0.33062923,0.93465245,0.13080175,-0.33334342,0.9340758,0.12800224,-0.32969558,0.9350252,0.1304938,-0.329667,0.9348423,0.13186944,-0.3283783,0.93512374,0.13308378,-0.32869747,0.9348272,0.13437298,-0.32873422,0.9346594,0.13544595,-0.32853514,0.9346209,0.13619259,-0.3279055,0.9347309,0.1369531,-0.3278206,0.9346437,0.13774917,-0.32710716,0.9345324,0.14017881,-0.32664126,0.9346285,0.14062378,-0.32622984,0.9347703,0.14063652,-0.32521272,0.9351874,0.1402184,-0.32482556,0.935356,0.13999109,-0.32451063,0.9355172,0.13964392,-0.3242701,0.9356701,0.13917767,-0.32367948,0.9361896,0.13704267,-0.32353207,0.9364281,0.13575482,-0.32363796,0.93650407,0.13497643,-0.32438606,0.93654525,0.13287835,-0.32468694,0.9365175,0.13233803,-0.32510036,0.9364281,0.13195503,-0.32520542,0.9365246,0.1310077,-0.3246923,0.93714374,0.12781434,-0.3254954,0.93706405,0.12634775,-0.32402974,0.93754727,0.12652992,-0.32335648,0.93755174,0.12820823,-0.3228632,0.937675,0.12854949,-0.3200585,0.9383567,0.13057302,-0.31983,0.938016,0.13354702,-0.31964475,0.9380177,0.13397732,-0.31941438,0.93807477,0.13412759,-0.31895244,0.9382326,0.13412261,-0.3182619,0.9384898,0.13396375,-0.31739157,0.9388583,0.13344586,-0.3155927,0.93968326,0.13189618,-0.315152,0.93989795,0.13141963,-0.31313837,0.9409979,0.12832513,-0.31250665,0.94136333,0.12717976,-0.31241667,0.9415719,0.12584992,-0.31259194,0.9415564,0.12553029,-0.31327826,0.9413616,0.12528005,-0.3142642,0.9410478,0.12516825,-0.31509444,0.9407635,0.12521808,-0.3153743,0.9406476,0.12538406,-0.31689066,0.94011945,0.12552182,-0.31720865,0.9400791,0.12501991,-0.31792635,0.93987435,0.1247359,-0.31773505,0.94016886,0.12299182,-0.31727877,0.9402942,0.123211175,-0.31648064,0.940559,0.12324245,-0.31598207,0.94076145,0.122976385,-0.31572545,0.9408758,0.122760326,-0.3157123,0.9409018,0.1225948,-0.31595927,0.940922,0.121801,-0.31698653,0.9407927,0.12011955,-0.31786546,0.9406444,0.11895248,-0.31866065,0.94045883,0.118290015,-0.3202527,0.9399724,0.117856376,-0.31568763,0.941334,0.1192964,-0.3150391,0.9414067,0.120431274,-0.31415167,0.94155556,0.12158076,-0.31389445,0.9416141,0.121791646,-0.3126728,0.941959,0.122265644,-0.3121548,0.94209063,0.12257523,-0.31184557,0.94214433,0.12294884,-0.31131935,0.9422914,0.12315539,-0.31057426,0.9425322,0.12319381,-0.309926,0.94277483,0.122969665,-0.3093732,0.9430195,0.12248435,-0.30902565,0.94318837,0.12206078,-0.30888247,0.94328207,0.1216985,-0.30853343,0.94372654,0.11911054,-0.30826548,0.9439628,0.117926486,-0.30792123,0.9441705,0.117160805,-0.30786934,0.94428134,0.116401285,-0.3079952,0.94431466,0.11579622,-0.3085139,0.9442451,0.11497986,-0.3086496,0.94429535,0.11420046,-0.30809575,0.94457465,0.1133834,-0.30823782,0.94463444,0.1124953,-0.30874175,0.9445458,0.11185612,-0.30987903,0.94430655,0.11072549,-0.31107908,0.9440216,0.10978669,-0.31310323,0.9434751,0.10872452,-0.31432116,0.9431128,0.108353525,-0.31541002,0.94275236,0.10832573,-0.3222245,0.94045305,0.10825621,-0.31731254,0.94220483,0.10753038,-0.31613573,0.94264317,0.1071544,-0.3157462,0.9428228,0.106721565,-0.31557006,0.9429233,0.10635379,-0.31560853,0.9429446,0.106050536,-0.31582662,0.9428978,0.105817184,-0.3165885,0.94267446,0.10552989,-0.31818196,0.9421603,0.10532911,-0.31834117,0.94224197,0.104110286,-0.317779,0.94239086,0.10447954,-0.31717074,0.9425698,0.104713686,-0.31468275,0.9432572,0.10602187,-0.31396064,0.9433952,0.10693107,-0.31295153,0.94365156,0.10762483,-0.31062245,0.94433177,0.10840295,-0.30919683,0.94478256,0.10855052,-0.30867556,0.9449628,0.10846503,-0.30704945,0.945556,0.10790951,-0.3064072,0.9458148,0.10746646,-0.3058342,0.9461041,0.10654776,-0.30581218,0.94613475,0.10633902,-0.30607855,0.94607985,0.10606076,-0.30713415,0.9458023,0.10548286,-0.3085169,0.9453936,0.105110444,-0.30889902,0.94537723,0.10413097,-0.30844378,0.9457846,0.10175409,-0.3094391,0.94559485,0.100488044,-0.31082782,0.94518095,0.1000952,-0.31206408,0.9447784,0.1000491,-0.3130403,0.9446585,0.09811261,-0.31223613,0.94485795,0.098752595,-0.311114,0.94517034,0.09930289,-0.3077365,0.9461124,0.100844525,-0.3075586,0.94600827,0.10235246,-0.30708942,0.9461143,0.102780364,-0.30625886,0.94635004,0.10308784,-0.30450046,0.94686735,0.10354546,-0.30381685,0.9470911,0.10350743,-0.3029541,0.947427,0.102960594,-0.3026411,0.9475556,0.10269713,-0.30212602,0.9477877,0.10207035,-0.30140623,0.94812256,0.10108367,-0.3008984,0.94841367,0.099858396,-0.30059707,0.9486622,0.098394334,-0.30051175,0.94883615,0.096967064,-0.3006413,0.9489365,0.09557353,-0.30082497,0.94896203,0.094738424,-0.30106586,0.9489134,0.09446019,-0.30073956,0.9490969,0.09365252,-0.30046687,0.9493036,0.092424445,-0.30271253,0.9486824,0.09147031,-0.30328465,0.94853383,0.091115415,-0.3041875,0.9482365,0.091200165,-0.30716896,0.9471143,0.092853196,-0.30667424,0.9473359,0.09222606,-0.30608353,0.9476204,0.09126027,-0.3045383,0.94820863,0.09031479,-0.30402318,0.948465,0.08935389,-0.3031787,0.94880766,0.0885819,-0.30447984,0.9484296,0.08816644,-0.30540264,0.9481732,0.087731384,-0.30627942,0.9479156,0.08745797,-0.3068382,0.9477915,0.08684227,-0.30323118,0.9488725,0.0877032,-0.30107638,0.94953436,0.08796347,-0.3006457,0.9496791,0.08787379,-0.30040947,0.9498162,0.08719708,-0.30049548,0.9498141,0.08692334,-0.30102676,0.94969696,0.086363025,-0.3023214,0.949328,0.08589573,-0.30287063,0.9492747,0.084539644,-0.30337918,0.9491423,0.08420245,-0.30455685,0.9487926,0.08389146,-0.3065397,0.9481542,0.083886735,-0.31084898,0.9468208,0.08308621,-0.30936426,0.94728893,0.0832916,-0.3077551,0.9478051,0.08338036,-0.30704352,0.94804966,0.083223514,-0.3062275,0.9483499,0.08280824,-0.30511352,0.9487155,0.08273195,-0.30372274,0.9491342,0.08304712,-0.30325508,0.9492916,0.08295675,-0.30343568,0.94947547,0.08014403,-0.30273256,0.94956535,0.08172337,-0.3023207,0.94965535,0.08220068,-0.30137113,0.9498972,0.08288988,-0.30002415,0.95020443,0.08424416,-0.29911104,0.9504813,0.084367946,-0.29833964,0.9507252,0.08435074,-0.29769623,0.9509414,0.08418719,-0.2968366,0.9512596,0.08362513,-0.29666945,0.95132893,0.08342929,-0.29653677,0.9514148,0.082920425,-0.29643616,0.95151734,0.08209939,-0.29650524,0.9515779,0.08114291,-0.29674104,0.95159703,0.08004924,-0.29768184,0.95139563,0.078941956,-0.29932818,0.9509722,0.077810906,-0.30061927,0.95061576,0.077186465,-0.30202872,0.95018214,0.07702344,-0.30404457,0.9495968,0.07630707,-0.3027254,0.9499888,0.07667213,-0.3003739,0.950717,0.076894045,-0.29910386,0.9510994,0.07711534,-0.29839137,0.9512709,0.07775771,-0.29492828,0.95227,0.078735195,-0.29421666,0.9524999,0.07861585,-0.29340422,0.95278263,0.07822522,-0.2925883,0.9530731,0.07774201,-0.29176858,0.9533711,0.077165976,-0.29116353,0.95361644,0.07641663,-0.29024023,0.9540916,0.07395814,-0.2903255,0.95411766,0.07328467,-0.2907205,0.95404565,0.0726532,-0.29020557,0.95441425,0.069815546,-0.28947648,0.9547352,0.06844028,-0.28929314,0.9548679,0.06735519,-0.2894652,0.9549469,0.06547077,-0.28980085,0.95495194,0.06389293,-0.29020444,0.9548892,0.062992476,-0.29107982,0.9546964,0.061865475,-0.29287747,0.95424134,0.060384188,-0.29342094,0.9540916,0.06011105,-0.29393545,0.95393884,0.06002177,-0.29450503,0.9537628,0.06002749,-0.29513195,0.95356256,0.060129624,-0.29567638,0.9533763,0.06040826,-0.29672834,0.9529784,0.061518595,-0.29740754,0.95262885,0.06361656,-0.298048,0.9523342,0.06501505,-0.29818606,0.9522294,0.06591114,-0.29903296,0.9520225,0.06505747,-0.2978372,0.95255697,0.06267536,-0.29812878,0.9525295,0.06169897,-0.29818326,0.95255417,0.061052002,-0.29753816,0.9528171,0.060088936,-0.29730013,0.9529339,0.05941037,-0.29882738,0.9524779,0.05906039,-0.30155477,0.9515988,0.059366353,-0.30262926,0.9512196,0.059972588,-0.3034874,0.9509076,0.06058144,-0.30028906,0.9520666,0.058272567,-0.29890403,0.95251286,0.058099747,-0.2977322,0.9529566,0.056825705,-0.29728553,0.95314217,0.05604728,-0.29826185,0.9528592,0.05567034,-0.29856345,0.95283204,0.054506592,-0.2978849,0.95306355,0.054170806,-0.29693648,0.9533948,0.05354566,-0.29686233,0.9534346,0.053246565,-0.29724732,0.9533392,0.05280486,-0.29790884,0.9531602,0.052305307,-0.2981927,0.9530762,0.05221998,-0.2989869,0.95283204,0.05213354,-0.29948318,0.9526661,0.052317083,-0.3013943,0.9519956,0.05353281,-0.30092794,0.95220435,0.05243314,-0.3010743,0.9521763,0.05210234,-0.3022412,0.9518557,0.051195502,-0.30515426,0.9509925,0.049941286,-0.30653605,0.9506054,0.04883632,-0.3061652,0.95072204,0.04889281,-0.30562925,0.95089835,0.048816826,-0.30350238,0.95157397,0.048921525,-0.30352554,0.95153546,0.04952335,-0.30325243,0.951613,0.04970621,-0.30171588,0.95218354,0.048104495,-0.30079266,0.95245034,0.048602033,-0.2994107,0.9528644,0.049017284,-0.2978906,0.95332664,0.04929043,-0.29748526,0.95345855,0.049187142,-0.2975081,0.9534919,0.04839475,-0.30084968,0.9525443,0.046355836,-0.29821536,0.9533289,0.047239456,-0.29576874,0.9540242,0.048565976,-0.29357806,0.95465124,0.049526863,-0.29285616,0.95485145,0.04993964,-0.292353,0.95499694,0.050105646,-0.29195088,0.95512426,0.050023403,-0.2913262,0.9553622,0.049113005,-0.28850842,0.9562903,0.047663238,-0.28736192,0.95663553,0.04766128,-0.28645244,0.95692104,0.04740409,-0.28578085,0.9571469,0.046894945,-0.28521296,0.9573557,0.046083413,-0.28370926,0.9578927,0.044165142,-0.2810394,0.95871824,0.04331469,-0.2791628,0.9593029,0.042498086,-0.27859995,0.9594839,0.042103697,-0.277726,0.9597857,0.040984396,-0.27740356,0.9599513,0.039252464,-0.2774664,0.95998377,0.037994444,-0.27787495,0.9599501,0.035795674,-0.2782236,0.9598808,0.03493417,-0.2785553,0.95980096,0.034482557,-0.27898547,0.95968777,0.034153998,-0.27994916,0.95947,0.032339964,-0.28105396,0.959195,0.030880526,-0.2819382,0.95896,0.030110333,-0.28227535,0.95886135,0.030091856,-0.2837267,0.95840675,0.030913338,-0.28318146,0.9586181,0.029319078,-0.2833922,0.9586038,0.027706636,-0.28460205,0.95827043,0.026822306,-0.2856839,0.9580003,0.024901604,-0.28969693,0.9568413,0.023029935,-0.29066783,0.9565362,0.02346885,-0.29125673,0.9563182,0.02500002,-0.29427794,0.95526147,0.029597782,-0.29258654,0.95589495,0.02565176,-0.29213774,0.9560697,0.024212593,-0.29233944,0.95602375,0.023584772,-0.29269746,0.95592195,0.02326822,-0.2938888,0.95556897,0.022744538,-0.29452524,0.95537734,0.022561999,-0.2952786,0.95514643,0.022489594,-0.2961499,0.95487577,0.022528047,-0.2976232,0.9544134,0.02270289,-0.29808873,0.9542645,0.02285517,-0.29866216,0.9540763,0.02322352,-0.29960215,0.95377254,0.023591021,-0.3006627,0.95342255,0.024236633,-0.3010138,0.95330423,0.024530414,-0.30157343,0.95310044,0.02555498,-0.30150425,0.9531082,0.026076846,-0.30110976,0.95322025,0.026533501,-0.30185473,0.9529339,0.028296215,-0.30229795,0.9528181,0.02745258,-0.30266693,0.9527047,0.02732119,-0.30345324,0.9524425,0.027736366,-0.304533,0.95207363,0.028556433,-0.3066471,0.95133996,0.030328225,-0.30550912,0.9517525,0.028833402,-0.30424002,0.9522262,0.02651722,-0.30412772,0.95230615,0.024886949,-0.30446726,0.9522086,0.024465255,-0.3070934,0.9513946,0.02328025,-0.30784768,0.951175,0.022271434,-0.30845374,0.9509838,0.02204735,-0.31110346,0.9500622,0.02442142,-0.31253275,0.94957364,0.025164012,-0.31299925,0.9494105,0.025518408,-0.31332225,0.94929,0.02603239,-0.3134994,0.9492128,0.02670601,-0.31357142,0.94917333,0.027256222,-0.31340253,0.94919854,0.02830052,-0.3169438,0.94798404,0.029545272,-0.3182805,0.9475382,0.029477842,-0.32268983,0.94604725,0.029426139,-0.32306883,0.9459644,0.027891198,-0.32284403,0.9460378,0.028002344,-0.3220695,0.9462969,0.028168589,-0.32187632,0.94637865,0.027623538,-0.3221181,0.94638145,0.0245377,-0.32263395,0.9462307,0.023553729,-0.32401827,0.9457965,0.02193511,-0.29499492,0.95549256,0.003464679,-0.3249712,0.94558454,0.016234394,-0.32496184,0.9457212,0.0033477275,-0.3394731,0.9397159,0.04113388,-0.33817324,0.93762374,0.08062635,-0.34749627,0.933338,0.09014707,-0.35311082,0.9295696,0.105892085,-0.36774153,0.92243314,0.11782727,-0.3936194,0.9121571,0.11416279,-0.41122746,0.90524167,0.1069087,-0.40898684,0.9079222,0.09169024,-0.4230539,0.9009639,0.09638205,-0.41982737,0.9016538,0.10375629,-0.41682792,0.90276825,0.106131606,-0.41034308,0.9050138,0.11210945,-0.41246867,0.90339375,0.117257684,-0.41433603,0.9016785,0.123699285,-0.41818988,0.8989471,0.13042721,-0.42165527,0.895559,0.1420595,-0.41891593,0.89178246,0.17097807,-0.4154364,0.89504075,0.16221786,-0.4144989,0.89259464,0.17738523,-0.41399872,0.89186263,0.18217051,-0.40830863,0.8928581,0.18996975,-0.40187642,0.8954987,0.19125237,-0.3978879,0.8980692,0.18750194,-0.39437434,0.90121555,0.17966464,-0.39079,0.9049286,0.16848558,-0.3828303,0.9098375,0.16011453,-0.38330734,0.9104201,0.15559778,-0.38002872,0.91210055,0.153788,-0.36902186,0.9151645,0.16216299,-0.36756846,0.91505176,0.16605327,-0.36680973,0.9141023,0.17282258,-0.37387672,0.91141415,0.17187335,-0.37812284,0.90692127,0.18578738,-0.3693173,0.91112286,0.18292055,-0.3662368,0.9123729,0.1828835,-0.3650489,0.91157293,0.1891405,-0.35767564,0.91514975,0.1859277,-0.3551882,0.91641045,0.18448088,-0.350584,0.91793424,0.18570843,-0.3475499,0.9198583,0.18185124,-0.34262407,0.9246989,0.16595384,-0.34363145,0.92759573,0.14657263,-0.33591285,0.9325935,0.13203,-0.32683393,0.93678284,0.124969795,-0.322221,0.9378937,0.12856555,-0.31646097,0.94021326,0.12590261,-0.31632474,0.94283676,0.104868986,-0.30864996,0.9458892,0.100144245,-0.30612734,0.9474889,0.09247086,-0.30375624,0.9492471,0.08162156,-0.3036907,0.9496767,0.07672109,-0.29084417,0.9540952,0.07149862,-0.30400276,0.9507051,0.06117315,-0.30165696,0.9516177,0.05853906,-0.2987831,0.9527392,0.054924875,-0.30492872,0.9511339,0.048608765,-0.30200753,0.95208275,0.048269246,-0.30891338,0.95082134,0.022612931,-0.3052197,0.952083,0.019465012,-0.28385204,0.95862854,0.021433212,-0.28671348,0.9579957,0.0062935064,-0.32618028,0.9452416,0.011170587,-0.3364961,0.9415808,0.013998786,-0.33145848,0.94070804,0.07213678,-0.33714378,0.9381621,0.0786506,-0.34716573,0.933773,0.086856104,-0.35100347,0.9326181,0.08378552,-0.34569576,0.93373424,0.09292358,-0.34497866,0.9338648,0.09426744,-0.3470991,0.9330376,0.09467395,-0.34867653,0.9323765,0.095387444,-0.34937045,0.9316971,0.099402346,-0.35070062,0.93091583,0.102004,-0.3703255,0.92141205,0.117723644,-0.38238814,0.9171083,0.11265732,-0.39404768,0.9118817,0.11488359,-0.4009653,0.9092184,0.11202149,-0.4018416,0.90897197,0.110875025,-0.40418705,0.908391,0.10704514,-0.41077545,0.905606,0.10555244,-0.40526527,0.9093669,0.09387138,-0.42261264,0.90155685,0.0927026,-0.4221453,0.9009554,0.1003628,-0.41019508,0.90500474,0.11272259,-0.41479927,0.90133035,0.124680035,-0.41893443,0.89794993,0.13483284,-0.42104024,0.89619696,0.13984309,-0.42424998,0.8944985,0.14101192,-0.42748275,0.8919498,0.14725523,-0.42912066,0.88934034,0.1578898,-0.42572454,0.88495827,0.18869944,-0.42225608,0.8884417,0.17991997,-0.4200098,0.8910823,0.17194214,-0.41185248,0.8966834,0.1622849,-0.41014484,0.89659894,0.16700774,-0.41304034,0.8930947,0.1782681,-0.41466314,0.8910119,0.1848033,-0.4157653,0.88932204,0.19038263,-0.4079658,0.89308476,0.18964027,-0.40276775,0.89570606,0.18838479,-0.39474696,0.90116125,0.17911787,-0.39046267,0.90449476,0.1715464,-0.38758266,0.9069069,0.16522588,-0.38770014,0.9069331,0.16480571,-0.38318676,0.91055334,0.15511462,-0.37870762,0.91310924,0.15103668,-0.37463012,0.9153063,0.14787358,-0.37314326,0.9148695,0.15420087,-0.36965317,0.91676897,0.1512986,-0.365289,0.91790855,0.15494466,-0.37573946,0.9089755,0.18050872,-0.37831002,0.90720505,0.18401234,-0.35455462,0.9164384,0.18555757,-0.34924528,0.91829526,0.18644443,-0.34815505,0.9228781,0.1645725,-0.34116387,0.92647636,0.15889873,-0.34443775,0.92564374,0.1566727,-0.34299752,0.9266786,0.15368637,-0.34365177,0.92761296,0.1464162,-0.33821976,0.9301709,0.14279182,-0.33914074,0.93074167,0.1367606,-0.33557764,0.9326442,0.13252328,-0.3247046,0.9374251,0.12570271,-0.3190451,0.9395042,0.12466806,-0.31964332,0.9395669,0.12264643,-0.3207358,0.94093585,0.10848146,-0.3156871,0.9430246,0.10510119,-0.3080449,0.946053,0.100458905,-0.3087282,0.94742346,0.08411725,-0.30369735,0.9493794,0.08029097,-0.30264807,0.95128775,0.05878601,-0.30131644,0.95200765,0.053757407,-0.304372,0.95131636,0.048526898,-0.3036705,0.9515315,0.0487033,-0.28962958,0.95593494,0.04798996,-0.28353134,0.9584644,0.03091897,-0.30142757,0.9530669,0.028370976,-0.30640253,0.95160276,0.023867954,-0.3103149,0.95033336,0.023898186,-0.32338765,0.94585156,0.028021725,-0.30634582,0.95171875,0.019588457,-0.3350455,0.9420566,0.016550768,-0.3394308,0.9397468,0.040775422,-0.33750957,0.9399791,0.050265007,-0.33011782,0.94189525,0.062093515,-0.33588842,0.93882155,0.07611181,-0.34167546,0.93597585,0.08489487,-0.3448854,0.9339915,0.09334862,-0.35005352,0.93117857,0.10182841,-0.37723014,0.9188971,0.115436286,-0.397945,0.9098545,0.117493115,-0.40752944,0.90704185,0.10580568,-0.4093414,0.9077521,0.091792084,-0.41231278,0.90354574,0.116633266,-0.42062494,0.8966792,0.13798907,-0.42063308,0.89653397,0.13890514,-0.42891243,0.8891587,0.15947074,-0.42553934,0.8854154,0.18696484,-0.41904205,0.8919054,0.17002474,-0.41393384,0.89185417,0.18235928,-0.41520655,0.88996536,0.18858717,-0.39744562,0.89900947,0.18389931,-0.39082766,0.90493983,0.16833791,-0.3799711,0.91231877,0.15263157,-0.37952292,0.91262734,0.15190038,-0.36951604,0.9169914,0.15028195,-0.3651342,0.9179451,0.1550931,-0.37804243,0.90720177,0.18457745,-0.37795573,0.9071122,0.18519452,-0.34228972,0.9260276,0.15909305,-0.34220928,0.926903,0.15408984,-0.34529987,0.9262215,0.1512673,-0.34344804,0.9274087,0.14817727,-0.33930272,0.93057203,0.13751118,-0.33792168,0.93207085,0.13058673,-0.32731083,0.936745,0.12400187,-0.3216358,0.9380742,0.12871383,-0.3206556,0.9383125,0.12942041,-0.31562755,0.94045687,0.12617524,-0.3159192,0.9403606,0.12616256,-0.31633615,0.9411944,0.11867806,-0.31861106,0.9420294,0.10520249,-0.31280982,0.94456285,0.099754855,-0.29089308,0.95403826,0.072057165,-0.2988286,0.9520108,0.06615839,-0.30620372,0.95067394,0.049581874,-0.3039601,0.95144576,0.04857174,-0.30028534,0.9527236,0.046329167,-0.28474692,0.95754725,0.044971377,-0.2936284,0.95546615,0.029441198,-0.3059541,0.95156455,0.03028234,-0.30674565,0.9512961,0.030705197,-0.32380173,0.9456988,0.028394619,-0.32481375,0.9455799,0.019358058,-0.3079449,0.9511954,0.019929199,-0.28645155,0.9578854,0.020027943,-0.32190245,0.9466973,0.011958565,-0.32625496,0.9452021,0.012277293,-0.33043703,0.9411083,0.07159983,-0.33664808,0.9383446,0.07859696,-0.33757263,0.93765926,0.0827029,-0.3490732,0.9317859,0.099613994,-0.40156376,0.9090302,0.11140292,-0.40808406,0.9067319,0.10632317,-0.41110918,0.90541476,0.10589329,-0.41164148,0.9045707,0.1109196,-0.4228493,0.8950298,0.1418457,-0.41886175,0.89236784,0.16803108,-0.41201752,0.8968041,0.16119535,-0.41486406,0.8904669,0.18696643,-0.4129493,0.890472,0.19113487,-0.40127078,0.8969827,0.18548243,-0.40232813,0.896048,0.1876968,-0.39073566,0.90424967,0.17221564,-0.3761315,0.91490495,0.14654009,-0.37236214,0.9154422,0.15268275,-0.36527324,0.9177221,0.15608191,-0.36457556,0.9151772,0.17185839,-0.37505338,0.9092375,0.18061598,-0.35490173,0.9164828,0.18467288,-0.34966332,0.9182652,0.18580768,-0.34219435,0.9257669,0.1608065,-0.34574622,0.926081,0.15110755,-0.34581363,0.92620766,0.15017414,-0.33719203,0.93280125,0.12721395,-0.32110617,0.9382173,0.12899294,-0.31980562,0.93941015,0.12342183,-0.3221649,0.94045824,0.10838838,-0.3187098,0.9420234,0.10495681,-0.31099012,0.9467511,0.083351694,-0.30424008,0.95068026,0.060374018,-0.30654335,0.9505777,0.049328316,-0.2907227,0.9555699,0.04864544,-0.3065141,0.95137125,0.030689698,-0.3137807,0.9490491,0.029111793,-0.3242346,0.9455288,0.029106516,-0.31409806,0.9491036,0.023340996,-0.29646903,0.95488536,0.017321194,-0.33686024,0.94025624,0.04943112,-0.33651066,0.9403548,0.04993423,-0.33589318,0.9387106,0.07744844,-0.3360004,0.9386427,0.077804975,-0.34235987,0.93555903,0.086712025,-0.3465549,0.93395704,0.08731487,-0.3494709,0.93142873,0.10154101,-0.40875795,0.90637225,0.10680014,-0.41891694,0.89797693,0.1347071,-0.42204618,0.89536244,0.14213756,-0.4284529,0.8877134,0.16850244,-0.41249347,0.89688706,0.15950774,-0.3833699,0.9104303,0.15538384,-0.37481448,0.91530186,0.14743342,-0.3504515,0.91805285,0.18537182,-0.3426812,0.92578846,0.15964131,-0.34538797,0.92504305,0.15812172,-0.33745456,0.932683,0.12738496,-0.33057594,0.93486285,0.12942556,-0.3260803,0.9371268,0.12435814,-0.32076845,0.93986595,0.117301516,-0.3178612,0.94081753,0.1175869,-0.30428585,0.9495199,0.07630258,-0.3045758,0.9505022,0.06147484,-0.3010455,0.95322365,0.027135538,-0.31206834,0.94981354,0.021624207,-0.30172473,0.95332736,0.011362552,-0.32598233,0.9452717,0.014036454,-0.32972103,0.9420617,0.061674494,-0.33762434,0.9377916,0.08097366,-0.34260428,0.9354413,0.08701631,-0.34573573,0.9342227,0.087719746,-0.34889433,0.93176085,0.10047128,-0.3490858,0.93160236,0.10127268,-0.36817434,0.92222995,0.11806594,-0.41149196,0.9051359,0.10678614,-0.37610394,0.91496,0.14626692,-0.3711566,0.91613436,0.1514618,-0.33731797,0.932761,0.12717481,-0.33316472,0.934192,0.12761898,-0.3204265,0.9401148,0.11623684,-0.31339,0.9445528,0.09801398,-0.30430776,0.9495006,0.076454766,-0.3048464,0.95041054,0.061550267,-0.30487156,0.9504127,0.061392862,-0.31450778,0.94879955,0.029397683,-0.32462075,0.945614,0.020871159,-0.3100146,0.9505109,0.020490855,-0.29401788,0.95564306,0.017316766,-0.3030456,0.95288664,0.013055049,-0.32537958,0.9454478,0.0160185,-0.3291222,0.94227535,0.061609507,-0.34470582,0.9345703,0.088069655,-0.34889758,0.9316999,0.10102371,-0.39557332,0.91106695,0.11609798,-0.36989182,0.9168333,0.15032236,-0.36344707,0.91557145,0.17214862,-0.34585384,0.9260936,0.15078406,-0.32671812,0.93696165,0.12392798,-0.315686,0.9484045,0.02951814,-0.32516298,0.9454547,0.019604968,-0.29583135,0.95508486,0.01722449,-0.33204016,0.9423574,0.041374907,-0.33745167,0.93780905,0.08148962,-0.34382582,0.9349034,0.08797407,-0.39708686,0.91027164,0.11716473,-0.36243775,0.9158413,0.17283982,-0.32085425,0.93994683,0.11641551,-0.30666223,0.9505573,0.04898129,-0.3283462,0.9425359,0.06176494,-0.33165774,0.9424876,0.041476224,-0.41556498,0.8978541,0.1454777,-0.3196481,0.9393423,0.1243426,-0.3029863,0.95288444,0.014511676,-0.327391,0.94284356,0.06213835,-0.33119258,0.9426416,0.041692436,-0.41533625,0.89801687,0.1451259,-0.3237702,0.94568104,0.029330194,-0.3269902,0.9442222,0.039010733,-0.41018495,0.9050548,0.112357065,-0.41370234,0.89916164,0.142684,-0.34594184,0.92613196,0.15034565,-0.31441844,0.94554245,0.08420535,-0.32663414,0.94307905,0.06254653,-0.32662654,0.9443387,0.039237376,-0.34482935,0.9339817,0.09365273,-0.41458496,0.8956739,0.16089633,-0.41334867,0.8965113,0.15940613,-0.31585556,0.9456192,0.077714324,-0.32660693,0.94427305,0.04094321,-0.35157007,0.9254892,0.14095472,-0.32540557,0.9430962,0.06841603,-0.32442817,0.94178194,0.08827886,-0.38967445,0.9129653,0.12102955,-0.39743644,0.90691334,0.1398304,-0.3536774,0.92503446,0.138649,-0.32553518,0.94428045,0.048592906,-0.32564932,0.9430184,0.06832906,-0.32455248,0.94174254,0.08824188,-0.3260741,0.9432433,0.06299027,-0.3761495,0.91648924,0.13623163,-0.3569177,0.9240699,0.13676488,-0.32493976,0.9418563,0.0855621,-0.37593964,0.9165944,0.1361033,-0.35685247,0.92411125,0.13665563,-0.33326063,0.9381096,0.09427472,-0.37352505,0.91789514,0.13396837,-0.33336428,0.9380424,0.09457627,-0.3725444,0.9184241,0.13307077,-0.33504078,0.9370015,0.098872565,-0.3690617,0.92029643,0.12979959,-0.33817983,0.9352325,0.104759276,-0.3671685,0.92141587,0.12720114,-0.3633207,0.9234985,0.1230796,-0.3632349,0.92355,0.12294648,-0.5795192,0.7556146,0.30529338,-0.57710236,0.7557837,0.30942503,-0.5766639,0.7559193,0.3099109,-0.5760103,0.7562991,0.31019962,-0.575472,0.75703794,0.30939555,-0.5749807,0.75794697,0.30808052,-0.5749485,0.75915533,0.3051514,-0.5752243,0.75935173,0.30414143,-0.5753024,0.7618089,0.29778248,-0.57550246,0.76273006,0.2950251,-0.575885,0.7634884,0.29230446,-0.5763923,0.76398575,0.28999612,-0.5780439,0.764643,0.2849323,-0.5790803,0.7653894,0.2807936,-0.57959664,0.76542014,0.2796422,-0.5804481,0.7652128,0.27844116,-0.5814619,0.7647748,0.27752748,-0.5819559,0.76410836,0.27832666,-0.5812654,0.76219076,0.28494883,-0.58169353,0.7607949,0.28779128,-0.58232516,0.75995135,0.288741,-0.5827418,0.7592635,0.28970838,-0.5821229,0.7572795,0.29607546,-0.5815052,0.7566608,0.2988581,-0.58056116,0.75632024,0.30154347,-0.5813903,0.7615609,0.28637436,-0.61804724,0.7249982,0.3039658,-0.61787933,0.725301,0.30358446,-0.61809087,0.72547996,0.30272517,-0.6175929,0.7258388,0.30288133,-0.6171466,0.72624314,0.30282167,-0.616812,0.72668236,0.30244946,-0.616594,0.72704345,0.3020259,-0.61600745,0.7286751,0.29927805,-0.61387694,0.7303171,0.29965323,-0.6131713,0.73113626,0.2990998,-0.6122357,0.7320861,0.2986926,-0.6143108,0.7308164,0.29753926,-0.61527026,0.7301774,0.29712537,-0.61631614,0.72939545,0.2968782,-0.617465,0.728601,0.2964416,-0.6186057,0.72767216,0.29634473,-0.6191084,0.72706455,0.296786,-0.61842453,0.72695166,0.29848355,-0.61854136,0.7261201,0.30026025,-0.6201203,0.72447795,0.30096927,-0.6198751,0.72423,0.30206913,-0.61890733,0.723815,0.30503368,-0.61914015,0.72377855,0.30464754,-0.6196602,0.72283524,0.30582753,-0.619837,0.72212815,0.30713683,-0.6196896,0.7218717,0.30803597,-0.61873955,0.72119546,0.31151006,-0.6183218,0.72127515,0.3121543,-0.61767095,0.72161925,0.31264722,-0.61818236,0.7217602,0.31130815,-0.6173555,0.7222036,0.31192002,-0.61675054,0.7223981,0.31266546,-0.6159441,0.7229112,0.31306925,-0.61564237,0.7228723,0.31375158,-0.61620957,0.72260314,0.31325772,-0.61674404,0.7220492,0.31348318,-0.6168995,0.7216387,0.31412208,-0.6164984,0.7217018,0.3147638,-0.616981,0.72083646,0.31579942,-0.61832106,0.7201468,0.3147503,-0.6182615,0.720048,0.31509295,-0.6176498,0.72016686,0.31601956,-0.618259,0.71935636,0.31667373,-0.61816686,0.7190147,0.31762806,-0.6178947,0.71893823,0.31833,-0.6165978,0.7190644,0.3205519,-0.61604995,0.7193362,0.32099497,-0.61592835,0.71961796,0.32059664,-0.61609215,0.71968716,0.32012624,-0.6152968,0.7205263,0.31976828,-0.61460924,0.72134835,0.3192367,-0.6140517,0.72179496,0.3193,-0.61205703,0.7227056,0.32106504,-0.6103645,0.7236344,0.32219306,-0.60879105,0.7244316,0.32337657,-0.6086183,0.72472167,0.32305145,-0.6085828,0.7249624,0.322578,-0.60884434,0.7252206,0.32150206,-0.6103946,0.7251133,0.3187934,-0.61204046,0.7248867,0.31614202,-0.61533105,0.7248961,0.3096666,-0.61523306,0.72547346,0.3085069,-0.6154299,0.72551864,0.30800787,-0.61575454,0.72542125,0.3075879,-0.61575574,0.72586226,0.3065434,-0.6162988,0.7261178,0.30484217,-0.6180633,0.72482914,0.3043362,-0.61826694,0.72657114,0.2997339,-0.6189958,0.72427,0.30377162,-0.618681,0.72398376,0.30509245,-0.6175186,0.7251402,0.30470055,-0.615279,0.7231643,0.3137916,-0.61857414,0.724143,0.304931,-0.6149105,0.7244392,0.31156534,-0.6139465,0.72450554,0.31330717,-0.612309,0.72477686,0.3158737,-0.45066443,0.89042115,0.06365322,-0.45027798,0.89064336,0.063278556,-0.45007816,0.89077306,0.06287305,-0.45005745,0.8908296,0.062216483,-0.45017505,0.89082766,0.061388038,-0.45104837,0.8905003,0.05970427,-0.4511726,0.8905666,0.057744946,-0.45251814,0.8900054,0.055836696,-0.4525008,0.8900866,0.05467097,-0.45209104,0.8903843,0.05319288,-0.45242825,0.890252,0.05253649,-0.45793474,0.887565,0.050240483,-0.45949584,0.8868211,0.049111854,-0.45984885,0.886641,0.049058437,-0.4602907,0.88641,0.04909009,-0.4606372,0.88622373,0.049202524,-0.4627179,0.88504595,0.05085066,-0.4639883,0.88436586,0.051106714,-0.46417895,0.8842572,0.051255018,-0.46265075,0.88484913,0.054738753,-0.46297485,0.88461435,0.05578274,-0.46297482,0.8845841,0.056260742,-0.4627741,0.8846616,0.056691818,-0.4593548,0.88622963,0.05991851,-0.4586085,0.88657993,0.060450505,-0.457386,0.887165,0.061125524,-0.4550453,0.8882346,0.06303168,-0.45375276,0.88885784,0.06356219,-0.45300263,0.88922733,0.06374451,-0.45218503,0.88963675,0.063836984,-0.4513001,0.8900858,0.063839145,-0.45260552,0.8899906,0.055362333,-0.46268922,0.88489115,0.053724762,-0.46203482,0.8854221,0.050511777,-0.45572358,0.88607836,0.08474139,-0.45542648,0.8862983,0.084035814,-0.4554801,0.8863105,0.08361548,-0.45592394,0.8861633,0.08275228,-0.45600495,0.8862387,0.0814891,-0.45626295,0.8861459,0.08105299,-0.4571564,0.88574195,0.08043147,-0.45935678,0.88468504,0.07952167,-0.46034878,0.8841955,0.079229206,-0.46104765,0.88383937,0.07913916,-0.46189526,0.8833949,0.07915984,-0.4628914,0.8828615,0.079291135,-0.46487328,0.8817862,0.07966126,-0.46547037,0.8814536,0.07985543,-0.46600708,0.8811157,0.0804521,-0.4663083,0.8808645,0.08145098,-0.46685326,0.88049835,0.08228396,-0.46779278,0.87989855,0.08335745,-0.46821207,0.879604,0.0841087,-0.46811447,0.87961495,0.0845364,-0.46779117,0.8797527,0.084891826,-0.4672419,0.8800171,0.08517555,-0.46617118,0.8805569,0.08546317,-0.46315736,0.8820783,0.08615757,-0.46190643,0.88268334,0.08667491,-0.46095023,0.8831611,0.08689812,-0.45975035,0.8837943,0.08681715,-0.45844778,0.8844668,0.086856484,-0.45753402,0.8849685,0.08656381,-0.45690963,0.8853425,0.08603638,-0.45578298,0.88618976,0.08324435,-0.46457955,0.8813695,0.08575379,-0.35843736,0.9287062,0.095012456,-0.35789824,0.9292778,0.091387585,-0.35797533,0.9293699,0.09013971,-0.35822815,0.929341,0.0894308,-0.35868362,0.9292217,0.08884309,-0.35889348,0.92918926,0.088333346,-0.35903072,0.92925316,0.0870945,-0.36000642,0.9289967,0.08579349,-0.36053187,0.92883795,0.08530432,-0.36097437,0.9286882,0.085063115,-0.3634895,0.9277774,0.08428761,-0.36602458,0.9268374,0.08365683,-0.36770332,0.92620057,0.08334737,-0.3700851,0.9252501,0.083362155,-0.37041366,0.925111,0.083446465,-0.37308034,0.9239343,0.08459597,-0.37455025,0.92326623,0.08539083,-0.37582198,0.92267025,0.08624094,-0.37654135,0.92231524,0.086897604,-0.3767101,0.92220294,0.087356955,-0.37673336,0.92213666,0.08795398,-0.37655133,0.9221054,0.089054964,-0.3756343,0.92225564,0.091342226,-0.37511626,0.922282,0.09318651,-0.37433872,0.9224272,0.09486074,-0.37240544,0.9229867,0.097003676,-0.37173438,0.9232131,0.09742214,-0.37062693,0.92360663,0.09791034,-0.3692815,0.9241285,0.09806988,-0.36769897,0.9247771,0.09790223,-0.3658718,0.9255498,0.097444095,-0.36228168,0.92708737,0.09623405,-0.36119848,0.927504,0.0962908,-0.36076844,0.92767596,0.09624695,-0.35974038,0.9281043,0.095965095,-0.35926506,0.92831165,0.09573995,-0.35885644,0.92849815,0.09546334,-0.36260054,0.92695636,0.09629529,-0.27674976,0.95958203,0.051106174,-0.27628323,0.9598127,0.0492665,-0.27638766,0.95983994,0.04813665,-0.27566543,0.96012515,0.04656444,-0.27580202,0.96013445,0.04555296,-0.27607185,0.9600878,0.044898115,-0.2763555,0.96001786,0.044646725,-0.27674326,0.95990926,0.044580407,-0.27759066,0.95966095,0.04465791,-0.2788975,0.9592716,0.044879366,-0.27981043,0.9589914,0.045184076,-0.28058994,0.95873594,0.045768157,-0.2806412,0.95873034,0.04556982,-0.28083053,0.9586785,0.0454947,-0.28155357,0.9584668,0.045486014,-0.28235188,0.9582261,0.045608807,-0.2830811,0.95799375,0.045968704,-0.2835149,0.9578499,0.046290915,-0.2839982,0.95767593,0.04692435,-0.28414237,0.9575492,0.048606474,-0.28540474,0.9571242,0.049572777,-0.28674436,0.956703,0.049970377,-0.28835368,0.9561873,0.050576746,-0.28967467,0.9557544,0.05120627,-0.2901142,0.95560616,0.051484637,-0.29062158,0.95541406,0.05218266,-0.29147896,0.95505077,0.054019585,-0.29127777,0.9550599,0.05493571,-0.29087096,0.9551318,0.05583297,-0.2874904,0.9557767,0.061968915,-0.28743002,0.95550513,0.066286735,-0.28708264,0.9553849,0.06944976,-0.28645447,0.95550036,0.07044799,-0.28572193,0.95569646,0.070762016,-0.28527218,0.9558566,0.0704125,-0.28466034,0.9560965,0.06962819,-0.28409913,0.956294,0.06920563,-0.28272703,0.9567172,0.06897604,-0.28246096,0.9568161,0.06869386,-0.28178957,0.9571138,0.06728885,-0.2807764,0.95744723,0.06677862,-0.28034872,0.9575925,0.0664924,-0.27955785,0.9578727,0.06578239,-0.27908835,0.9581032,0.064405315,-0.27885202,0.95818806,0.06416535,-0.27767664,0.95857394,0.063495584,-0.27697173,0.95881754,0.06289315,-0.27655712,0.9590013,0.06190841,-0.27545524,0.9595485,0.058233615,-0.27538243,0.9596377,0.05709652,-0.27681267,0.95951754,0.051970124,-0.28226644,0.95692426,0.06798271,-0.28439397,0.9574438,0.04920874,-0.28888386,0.95557576,0.05849032,-0.28824255,0.95569974,0.059617605,-0.59773123,0.79583275,0.09678621,-0.59742934,0.7959731,0.09749356,-0.59684116,0.796397,0.09763462,-0.59623647,0.79686314,0.09752584,-0.5950706,0.79782856,0.09674993,-0.5937296,0.7990256,0.095095955,-0.59178853,0.8007921,0.09229495,-0.59185165,0.800985,0.09019232,-0.59315944,0.8005879,0.08497568,-0.5935257,0.8003713,0.084456794,-0.59406006,0.8000222,0.08400654,-0.5953264,0.79915935,0.08325173,-0.59582067,0.79874575,0.083683826,-0.59630126,0.79819316,0.085513406,-0.5970108,0.7970783,0.09079843,-0.5975904,0.7963176,0.09361666,-0.5977121,0.7961144,0.09456284,-0.5468216,0.8303182,0.10750721,-0.54652894,0.8304531,0.10795281,-0.54599065,0.8307369,0.108491585,-0.5453476,0.8311096,0.10887067,-0.5445993,0.83157134,0.10909053,-0.5437597,0.8321224,0.10907662,-0.54205406,0.83329403,0.10862054,-0.5421511,0.8332997,0.10809127,-0.5424854,0.8331211,0.107790306,-0.54308933,0.8327599,0.10754036,-0.54375315,0.83233786,0.10745316,-0.5453515,0.8312958,0.10741996,-0.5463807,0.83065766,0.107126005,-0.5468705,0.83033156,0.10715475,-0.5444756,0.8318557,0.10752849,-0.54660654,0.83064437,0.10607167,-0.54501456,0.83162534,0.10657603,-0.5441863,0.8321517,0.1066996,-0.5439034,0.8323889,0.10629137,-0.5435214,0.83264524,0.10623736,-0.5428462,0.833131,0.10588067,-0.54269505,0.8332729,0.10553868,-0.54260147,0.8334387,0.10470723,-0.5423524,0.83363456,0.10443822,-0.5417367,0.83407813,0.1040913,-0.54154205,0.8342478,0.1037438,-0.5412667,0.83454275,0.10280426,-0.5409022,0.8348061,0.102584586,-0.5408539,0.83485204,0.10246516,-0.54719025,0.8309067,0.10088042,-0.5463368,0.83143646,0.101141006,-0.54532826,0.8320784,0.10130423,-0.5433266,0.8333793,0.10136643,-0.54239434,0.8340114,0.10116046,-0.54207927,0.83423793,0.1009808,-0.54205364,0.83426845,0.10086604,-0.5423166,0.8341035,0.10081653,-0.54320556,0.83350366,0.10099184,-0.5465154,0.8314161,0.100340426,-0.54871124,0.83015007,0.098827235,-0.5516663,0.8283741,0.097265884,-0.55197865,0.8281683,0.09724679,-0.55221224,0.8279834,0.09749416,-0.55237067,0.8277769,0.09834658,-0.55116844,0.8284572,0.09935853,-0.5484985,0.8299457,0.10168335,-0.55304223,0.8271471,0.09985936,-0.5517842,0.8278223,0.101214506,-0.5517157,0.82777303,0.10198794,-0.551601,0.8278132,0.10228184,-0.5512253,0.828023,0.10260822,-0.5505899,0.8284013,0.102966264,-0.54724205,0.8303667,0.104963444,-0.5505241,0.82828003,0.10428502,-0.55106455,0.82785004,0.10484379,-0.55087566,0.82791406,0.105329394,-0.54810995,0.8296994,0.10570923,-0.5441249,0.8322244,0.10644535,-0.5414799,0.8343568,0.10319048,-0.5428777,0.83353007,0.1025256,-0.54822135,0.8302161,0.10096808,-0.54682404,0.8307511,0.104096375,-0.5440395,0.832958,0.1010049,-0.54818267,0.8301582,0.1016523,-0.54689145,0.83059835,0.104957566,-0.54808056,0.83028835,0.10113827,-0.54661155,0.83079714,0.10484251,-0.54417837,0.83269244,0.10243649,-0.54520184,0.8322108,0.100896746,-0.54623634,0.8311025,0.104376726,-0.54569894,0.83172613,0.10219744,-0.54674846,0.83109206,0.10174546,-0.54732865,0.830791,0.101082444,-0.5479008,0.83097875,0.096327566,-0.54770607,0.8310527,0.096796274,-0.54549927,0.83221364,0.099252634,-0.5445496,0.83279103,0.09962363,-0.54331565,0.8335616,0.09991573,-0.54346883,0.83348906,0.09968772,-0.54438436,0.8329594,0.09911783,-0.54489434,0.8326943,0.09854107,-0.5449993,0.8326943,0.09795874,-0.545204,0.83260417,0.09758545,-0.5455102,0.83242285,0.097421005,-0.54616743,0.8321276,0.096254125,-0.5466924,0.83183163,0.095831275,-0.5477953,0.83111906,0.09571529,-0.22137126,0.9751895,-0.00036597974,-0.22039644,0.97541016,0.00064142863,-0.21997045,0.97550607,0.00097256375,-0.21966642,0.97557443,0.001104118,-0.21917969,0.9756838,0.0011683786,-0.21851271,0.9758334,0.0011663081,-0.21742286,0.9760769,0.001064511,-0.21658525,0.9762635,0.00060872606,-0.21482512,0.9766523,-0.0006446192,-0.21424587,0.9767785,-0.0015808424,-0.2138915,0.97685415,-0.002519416,-0.21377493,0.97687787,-0.0031439625,-0.21395318,0.9768365,-0.0038057112,-0.21425653,0.9767686,-0.004148088,-0.21455482,0.97670245,-0.0043049534,-0.21541932,0.97651154,-0.0044471817,-0.21670778,0.9762262,-0.0044828523,-0.21764997,0.97601664,-0.004470234,-0.21831572,0.9758684,-0.004372031,-0.21931116,0.97564757,-0.0038021097,-0.22133482,0.9751975,-0.00088183297,-0.21553688,0.9748545,-0.056590788,-0.21539477,0.9749236,-0.05593818,-0.21511841,0.97500354,-0.05560679,-0.21419045,0.97522974,-0.055221893,-0.21372683,0.97533894,-0.055089355,-0.21270198,0.97556734,-0.055011567,-0.21218084,0.97567916,-0.05504059,-0.210717,0.9759671,-0.055556647,-0.21044648,0.9759879,-0.056213126,-0.20989873,0.97610545,-0.056219775,-0.20894666,0.97632146,-0.05601534,-0.20819768,0.97647804,-0.056074213,-0.20644276,0.97682977,-0.05643625,-0.2053109,0.977049,-0.0567684,-0.20460388,0.97717917,-0.057079803,-0.20402546,0.97724736,-0.057975713,-0.20408836,0.9771935,-0.058658626,-0.20429409,0.9771399,-0.05883557,-0.20610243,0.97677153,-0.058644325,-0.20717268,0.976535,-0.058812026,-0.20789987,0.97639185,-0.058622923,-0.20900314,0.97614986,-0.058728907,-0.21092919,0.9757361,-0.058719292,-0.21272422,0.97535866,-0.058513846,-0.21407698,0.97508,-0.05822397,-0.21456571,0.9750123,-0.057555247,-0.174151,0.98435247,-0.026863363,-0.17192893,0.98475045,-0.026590208,-0.17095889,0.98492074,-0.0265367,-0.17017089,0.9850546,-0.026631858,-0.16961557,0.9851427,-0.026914857,-0.16932878,0.9851819,-0.02728342,-0.16916022,0.9851885,-0.02807968,-0.16870809,0.98524135,-0.02893236,-0.16873881,0.98522955,-0.029154703,-0.16940174,0.98508936,-0.030032517,-0.16959591,0.9850526,-0.03014402,-0.17043164,0.9848998,-0.030420996,-0.1709219,0.9848116,-0.030525936,-0.17233768,0.9845602,-0.030674538,-0.172702,0.9844978,-0.03062869,-0.17297275,0.9844543,-0.030499468,-0.17312494,0.9844403,-0.030082725,-0.17470522,0.9842045,-0.028628651,-0.17502607,0.98414636,-0.028667133,-0.17544428,0.9840775,-0.028473772,-0.17621922,0.9839601,-0.027737683,-0.17622083,0.9839651,-0.027548827,-0.17604911,0.9840005,-0.027381668,-0.17525288,0.98415047,-0.027098613,-0.17317148,0.9844638,-0.029027514,-0.17407021,0.9843176,-0.028608061,-0.28332585,0.9558694,-0.07771841,-0.28331327,0.9558952,-0.07744683,-0.28299117,0.9560355,-0.07689038,-0.2823587,0.9562895,-0.076052025,-0.2818006,0.9564961,-0.07552189,-0.28102064,0.95675606,-0.07513447,-0.27997723,0.95715606,-0.07392621,-0.2778739,0.9578783,-0.07249327,-0.27723083,0.95809245,-0.07212467,-0.2754613,0.9586489,-0.07150767,-0.27423435,0.95902324,-0.07120317,-0.2735952,0.95920587,-0.071202464,-0.2729304,0.9593849,-0.071341224,-0.27248946,0.9594925,-0.071579106,-0.2721656,0.95954657,-0.07208545,-0.27023897,0.9600226,-0.0729892,-0.2696111,0.9601335,-0.07384815,-0.2693811,0.9601268,-0.0747683,-0.26900092,0.9598963,-0.07897801,-0.26902032,0.95978373,-0.08026985,-0.26931882,0.9596578,-0.08077299,-0.2702617,0.9593094,-0.08175641,-0.27151236,0.958871,-0.08274886,-0.27204162,0.9587197,-0.08276424,-0.27264196,0.9586099,-0.08205795,-0.27674526,0.9576121,-0.07994459,-0.27779427,0.95730126,-0.08002915,-0.2798262,0.9567796,-0.07918362,-0.28181046,0.9562502,-0.078539744,-0.2828256,0.95598775,-0.07808419,-0.27367267,0.9583892,-0.08119926,-0.27591258,0.95784307,-0.08005574,-0.23618749,0.97035855,-0.051183548,-0.23482549,0.97065955,-0.051740084,-0.23462431,0.9706958,-0.051972177,-0.23290567,0.9711194,-0.051788058,-0.23145251,0.97147316,-0.051668245,-0.23090205,0.9715782,-0.052154716,-0.2304868,0.97159654,-0.053628504,-0.23091413,0.97137606,-0.055742178,-0.23105764,0.9712299,-0.057660807,-0.23138078,0.97106063,-0.05919603,-0.23253512,0.97075206,-0.05973106,-0.23371495,0.97049373,-0.0593234,-0.23432915,0.9704518,-0.05756015,-0.23584999,0.9700126,-0.058739528,-0.23673879,0.96983963,-0.05801621,-0.23702058,0.9699521,-0.05490139,-0.23840438,0.9695435,-0.05611363,-0.23930275,0.9692919,-0.056633808,-0.23967747,0.9692886,-0.055085246,-0.23974523,0.9693606,-0.053499755,-0.23934336,0.9694813,-0.053111017,-0.23841998,0.96974087,-0.052522294,-0.23808658,0.96985143,-0.051990118,-0.23779026,0.96998984,-0.05074978,-0.23763195,0.9700393,-0.050544947,-0.23738958,0.9700991,-0.050536104,-0.23621286,0.9701202,-0.055410028,-0.23398685,0.9704919,-0.05827234,-0.22511993,0.9727075,-0.05622408,-0.2246609,0.9728331,-0.05588594,-0.22426513,0.97293246,-0.055745475,-0.22393255,0.9730059,-0.05580143,-0.223702,0.9730426,-0.056084268,-0.22357357,0.9730426,-0.056594104,-0.22386657,0.9728986,-0.057897463,-0.2241725,0.9728021,-0.058332793,-0.22454545,0.9727059,-0.05850239,-0.22527117,0.9725334,-0.05858055,-0.22634883,0.9722841,-0.058564942,-0.22831972,0.97181773,-0.058655098,-0.22887237,0.971692,-0.058583587,-0.22909813,0.9716576,-0.05827142,-0.22984204,0.9716691,-0.055062324,-0.22969021,0.9717454,-0.05434463,-0.22941127,0.9718412,-0.053805873,-0.22895317,0.97198224,-0.053207282,-0.22856389,0.9720901,-0.052909106,-0.228244,0.9721652,-0.052909657,-0.22765937,0.97227794,-0.053355675,-0.22627334,0.97252804,-0.054676995,-0.2258409,0.97262776,-0.054691475,-0.22511493,0.9727802,-0.05497183,-0.22507903,0.9727658,-0.055372592,-0.2252592,0.97268516,-0.05605271,-0.21957146,0.96821505,-0.119783215,-0.21921015,0.96849495,-0.118171334,-0.2189503,0.9686317,-0.117530614,-0.21673088,0.9694688,-0.11470861,-0.21534678,0.9699618,-0.11313612,-0.21485113,0.97015184,-0.11244735,-0.21342933,0.97062075,-0.11110009,-0.21306933,0.97071403,-0.110976435,-0.21259901,0.9707797,-0.111303344,-0.21240732,0.97076863,-0.111764684,-0.21268447,0.97061604,-0.11256003,-0.21341528,0.9702724,-0.11412875,-0.21347477,0.9701179,-0.11532431,-0.21374394,0.9698986,-0.11666317,-0.2149936,0.969315,-0.11918989,-0.21557471,0.9690098,-0.12061306,-0.21590996,0.96885407,-0.12126296,-0.21641839,0.9686583,-0.1219185,-0.21668263,0.96858764,-0.122010946,-0.2170779,0.96851957,-0.121848606,-0.21777946,0.9684499,-0.12114814,-0.21904615,0.9682442,-0.12050697,-0.19413024,0.9771225,-0.08686266,-0.19401307,0.9772483,-0.08570135,-0.19384216,0.97732645,-0.08519502,-0.19341092,0.97746557,-0.08457709,-0.19311692,0.9775353,-0.08444266,-0.19243006,0.9776695,-0.0844576,-0.19206637,0.97774625,-0.084396765,-0.19178405,0.97779626,-0.08445899,-0.19140497,0.9778402,-0.08481003,-0.1901519,0.9780674,-0.0850081,-0.18969621,0.9781412,-0.08517708,-0.18897814,0.9782661,-0.08533834,-0.18851289,0.97837627,-0.085104465,-0.18823972,0.97842807,-0.08511365,-0.18840435,0.9782937,-0.08628564,-0.18860859,0.9782039,-0.08685584,-0.18895738,0.9780637,-0.087672755,-0.1888892,0.9780296,-0.0881983,-0.18977053,0.97783965,-0.08841249,-0.19260697,0.9773026,-0.0882163,-0.1938422,0.9771254,-0.087471,-0.18945464,0.9781632,-0.085461795,-0.1888633,0.9781219,-0.087225094,-0.43883082,0.8138903,-0.38080198,-0.438971,0.81390315,-0.38061282,-0.43908414,0.81455916,-0.37907588,-0.43900573,0.81489223,-0.37845027,-0.4388238,0.8151248,-0.3781603,-0.43864197,0.81526697,-0.3780648,-0.43846104,0.81531876,-0.37816295,-0.43746462,0.815449,-0.37903506,-0.43754742,0.8152783,-0.37930664,-0.43812215,0.81453943,-0.38022953,-0.43854856,0.8141021,-0.38067424,-0.46473,0.7875777,-0.40465713,-0.46483716,0.78759813,-0.40449426,-0.46358126,0.7890333,-0.4031364,-0.4623906,0.78962666,-0.4033419,-0.46247298,0.789476,-0.40354234,-0.46277002,0.78909504,-0.4039467,-0.46377212,0.7881597,-0.4046229,-0.46428046,0.7878003,-0.4047398,-0.44933593,0.8082223,-0.3806231,-0.4491544,0.8085915,-0.38005275,-0.44791135,0.8093825,-0.37983605,-0.44767454,0.8094981,-0.37986887,-0.44671687,0.80989516,-0.38014975,-0.44634473,0.80992913,-0.3805143,-0.4461944,0.8097772,-0.3810137,-0.44606867,0.8089273,-0.3829613,-0.4461705,0.80851674,-0.3837089,-0.44641146,0.80821073,-0.38407314,-0.44675174,0.80791,-0.38431013,-0.44719148,0.8076141,-0.3844206,-0.447495,0.80745023,-0.38441163,-0.44766062,0.80741906,-0.38428426,-0.44753408,0.80757844,-0.3840967,-0.44758636,0.8081736,-0.38278174,-0.44863704,0.8075965,-0.38276967,-0.44912493,0.8075322,-0.382333,-0.4494027,0.80741304,-0.3822584,-0.4494742,0.80764276,-0.38168854,-0.44711375,0.80792856,-0.38384983,-0.4469964,0.8084039,-0.3829848,-0.44685346,0.8082072,-0.38356623,-0.44675186,0.8084154,-0.38324565,-0.4601415,0.8003601,-0.3843092,-0.46023878,0.80039585,-0.3841182,-0.460242,0.800912,-0.38303682,-0.46004087,0.8011992,-0.3826777,-0.45671338,0.80319583,-0.38247788,-0.45562738,0.80366063,-0.38279667,-0.45382434,0.8043721,-0.38344365,-0.45172754,0.8051051,-0.38437995,-0.45122898,0.8052163,-0.38473257,-0.4517163,0.80431587,-0.38604194,-0.45300612,0.80376154,-0.3856849,-0.45460492,0.8028942,-0.3856103,-0.45630172,0.80225205,-0.38494205,-0.4595695,0.8004873,-0.38472852,-0.43864608,0.81662875,-0.37510946,-0.4391468,0.8172912,-0.37307522,-0.4386485,0.8186213,-0.370738,-0.47506952,0.794634,-0.37797588,-0.47129887,0.7980021,-0.37559283,-0.4688908,0.7998156,-0.37474847,-0.46746263,0.8005103,-0.37504935,-0.46615255,0.8010299,-0.3755701,-0.46491632,0.8015081,-0.3760818,-0.46444175,0.80156624,-0.37654406,-0.4646905,0.80115587,-0.37711003,-0.46562892,0.80010045,-0.3781917,-0.46598175,0.7995869,-0.37884274,-0.46632767,0.79882365,-0.38002527,-0.46657804,0.7985375,-0.38031927,-0.46691176,0.79826707,-0.38047737,-0.46823955,0.79749805,-0.38045844,-0.46905628,0.7967668,-0.380984,-0.47018555,0.7960649,-0.3810593,-0.47189036,0.7951966,-0.3807649,-0.47229213,0.7952493,-0.3801563,-0.47193867,0.7961433,-0.37872118,-0.47359124,0.79439753,-0.38032085,-0.474162,0.79394853,-0.3805472,-0.4752083,0.79301023,-0.38119784,-0.4764386,0.7918266,-0.38212153,-0.4775063,0.791113,-0.38226685,-0.47733045,0.7916491,-0.3813756,-0.47643477,0.79284096,-0.38001725,-0.4761545,0.79355097,-0.3788849,-0.4719164,0.79601485,-0.37901878,-0.52751917,0.7577202,-0.3841662,-0.5263643,0.7587486,-0.38372022,-0.5260909,0.75887406,-0.38384703,-0.5253078,0.7590416,-0.38458756,-0.52558905,0.7585787,-0.38511616,-0.52606463,0.75808483,-0.38543922,-0.52653974,0.7578853,-0.3851828,-0.5374155,0.76052326,-0.36440223,-0.53709877,0.76075894,-0.36437723,-0.5346135,0.7622989,-0.36481342,-0.5332328,0.76298183,-0.36540592,-0.53202224,0.7634009,-0.3662941,-0.5314238,0.7635154,-0.36692366,-0.5314372,0.7633266,-0.3672969,-0.5318067,0.76307106,-0.36729303,-0.5330724,0.76251394,-0.36661467,-0.5334318,0.7623011,-0.36653447,-0.5340313,0.76192534,-0.3664428,-0.5351429,0.76140463,-0.36590314,-0.51976454,0.76155376,-0.38714433,-0.519982,0.761604,-0.38675335,-0.5198621,0.7618414,-0.38644674,-0.51932997,0.7623877,-0.38608477,-0.5184288,0.7631851,-0.38572025,-0.51743394,0.7638917,-0.3856574,-0.5167889,0.76428753,-0.38573793,-0.5158896,0.7646106,-0.38630107,-0.5155855,0.7642211,-0.38747612,-0.51652604,0.7633767,-0.38788763,-0.51641905,0.76323795,-0.38830295,-0.5165004,0.76307106,-0.38852262,-0.5167699,0.76287663,-0.38854614,-0.51842564,0.7620142,-0.3880325,-0.5192096,0.7616907,-0.38761917,-0.516366,0.76360345,-0.38765442,-0.5242913,0.7671329,-0.36962935,-0.52402264,0.7678753,-0.36846673,-0.5236457,0.76851416,-0.36766985,-0.52301687,0.7690401,-0.3674652,-0.52221537,0.7696254,-0.3673797,-0.5219183,0.7698419,-0.36734816,-0.5210061,0.7703991,-0.36747494,-0.52028096,0.7707115,-0.36784723,-0.52006376,0.77066964,-0.36824167,-0.5204392,0.7700007,-0.36910972,-0.5208194,0.769528,-0.36955896,-0.5234442,0.76750124,-0.37006494,-0.5247977,0.76654154,-0.370137,-0.47369045,0.7929734,-0.38315865,-0.47341052,0.79345965,-0.38249737,-0.47240958,0.7944223,-0.38173595,-0.47139442,0.7950684,-0.3816459,-0.4687171,0.7964376,-0.38208815,-0.46838894,0.7965706,-0.38221338,-0.46810326,0.7966484,-0.3824012,-0.46809837,0.7965381,-0.3826368,-0.4683758,0.7962382,-0.3829215,-0.46903136,0.7957079,-0.3832213,-0.47095335,0.794471,-0.38343024,-0.47161192,0.7941428,-0.38330072,-0.4914021,0.78214264,-0.38311473,-0.49133322,0.7823242,-0.38283226,-0.49104077,0.7826755,-0.38248926,-0.4901859,0.78353566,-0.3818241,-0.48986223,0.78375274,-0.38179404,-0.48876545,0.7844905,-0.38168433,-0.4883602,0.7848175,-0.3815308,-0.48809054,0.78486717,-0.38177365,-0.48793167,0.78441703,-0.38290027,-0.48801807,0.78419816,-0.3832383,-0.4881892,0.7839829,-0.38346073,-0.48981392,0.7827291,-0.38394994,-0.49052963,0.7823258,-0.38385808,-0.49113405,0.7821432,-0.38345712,-0.47800168,0.79215646,-0.37947667,-0.47836393,0.792299,-0.37872192,-0.4782571,0.7925672,-0.3782954,-0.4780304,0.7929173,-0.3778479,-0.4772294,0.7938656,-0.37686807,-0.47545373,0.7959091,-0.3747965,-0.4749904,0.79636496,-0.3744155,-0.47424784,0.7963387,-0.37541133,-0.4746869,0.79543525,-0.3767693,-0.4761902,0.7939941,-0.37791038,-0.47687927,0.79338235,-0.378326,-0.47758973,0.79272723,-0.3788028,-0.47729433,0.7930648,-0.37846842,-0.46568763,0.7984698,-0.38155082,-0.46570167,0.7985534,-0.38135862,-0.4648499,0.79918957,-0.3810651,-0.46282172,0.80046684,-0.38085285,-0.4625945,0.8005537,-0.38094634,-0.4623401,0.8006093,-0.38113824,-0.46234542,0.8005159,-0.38132802,-0.4629867,0.79998744,-0.38165873,-0.4634713,0.7996611,-0.38175446,-0.46472228,0.7988847,-0.38185927,-0.46526825,0.7986103,-0.3817682,-0.46535328,0.7997972,-0.3791712,-0.4653126,0.79987186,-0.37906352,-0.46372113,0.8013491,-0.3778919,-0.4632315,0.8017048,-0.37773794,-0.4625484,0.8020893,-0.37775892,-0.4626079,0.80194974,-0.3779822,-0.46293333,0.80162436,-0.3782739,-0.46332043,0.8008599,-0.37941733,-0.4636229,0.8004592,-0.37989333,-0.46401566,0.800126,-0.3801155,-0.46436307,0.79990613,-0.38015407,-0.4646647,0.7997992,-0.3800104,-0.5501805,0.7518909,-0.36326507,-0.5503441,0.75190943,-0.36297873,-0.5498343,0.7523385,-0.3628622,-0.54885006,0.75294006,-0.36310446,-0.54873705,0.753189,-0.36275876,-0.5475874,0.75381655,-0.36319238,-0.54737145,0.7538591,-0.36342943,-0.5497062,0.7518415,-0.36408442,-0.5500166,0.75163466,-0.36404273,-0.55019605,0.75159526,-0.36385277,-0.6234853,0.6934509,0.36109814,-0.62226146,0.69389963,0.36234516,-0.6212171,0.69469386,0.36261517,-0.6231981,0.69389963,0.3607318,-0.6241927,0.69407266,0.35867336,-0.6243223,0.6938935,0.3587945,-0.6241832,0.6934853,0.35982427,-0.62267965,0.69399476,0.36144346,-0.61324495,0.713027,0.33988696,-0.6129105,0.7131274,0.34027943,-0.61258125,0.71344036,0.3402162,-0.61177677,0.71407306,0.3403364,-0.6123402,0.7141959,0.3390629,-0.612883,0.7139573,0.33858445,-0.6130737,0.7137066,0.3387676,-0.6131463,0.713202,0.33969766,-0.5967977,0.736003,0.31958115,-0.59590995,0.7364609,0.32018217,-0.5947673,0.7372623,0.3204624,-0.5935028,0.7379845,0.32114372,-0.592859,0.7380311,0.32222402,-0.5915746,0.7388982,0.32259718,-0.5919129,0.73900557,0.3217294,-0.5924978,0.73882926,0.32105708,-0.59337467,0.7383829,0.32046407,-0.5959026,0.7369127,0.31915474,-0.59694284,0.73639405,0.31840706,-0.5995696,0.73413616,0.31868538,-0.59942245,0.733955,0.31937867,-0.5987277,0.7339979,0.32058114,-0.59796494,0.7344387,0.32099482,-0.59811753,0.7345307,0.32049978,-0.59849405,0.7345064,0.31985188,-0.59847665,0.7347313,0.31936735,-0.59764326,0.7354426,0.3192911,-0.60629535,0.74096596,0.288748,-0.60531574,0.7418204,0.28860933,-0.60583794,0.7415809,0.2881287,-0.60589755,0.7416535,0.2878165,-0.6063698,0.7415431,0.2871053,-0.6071682,0.74072903,0.28751937,-0.60775554,0.7402605,0.287485,-0.6077256,0.74019,0.28772953,-0.6074576,0.74024045,0.28816554,-0.60549194,0.74206036,0.28762126,-0.6043082,0.74266446,0.28855,-0.603772,0.74322575,0.28822705,-0.6037872,0.7433056,0.2879892,-0.60398644,0.7432041,0.28783342,-0.60432816,0.74296916,0.28772265,-0.6559304,0.697882,0.287604,-0.65528744,0.6983189,0.28800887,-0.6538547,0.6995641,0.28824317,-0.65420216,0.69940144,0.28784922,-0.65548664,0.6983103,0.28757596,-0.6545967,0.70251215,0.27924868,-0.65334296,0.7031687,0.2805295,-0.6529821,0.7035164,0.28049776,-0.65202206,0.70452774,0.28019267,-0.65214133,0.7047007,0.27947924,-0.6528175,0.70418715,0.27919492,-0.67314976,0.7126277,0.19756281,-0.6726452,0.7128722,0.1983976,-0.67234606,0.7131262,0.19849879,-0.6716259,0.71381825,0.19844921,-0.6695148,0.71575046,0.19862346,-0.669718,0.715707,0.19809401,-0.6719591,0.7140014,0.19665438,-0.67307115,0.71344274,0.19487114,-0.67432475,0.71253324,0.19386213,-0.6741817,0.7125398,0.1943349,-0.6733814,0.71285427,0.19594972,-0.6723568,0.7140438,0.19513518,-0.67169803,0.71429557,0.19647795,-0.6699705,0.7156254,0.1975342,-0.6707648,0.7153492,0.19583201,-0.672395,0.71415,0.1946145,-0.6469234,0.7297429,0.22128133,-0.6464739,0.72983956,0.22227412,-0.64547616,0.73039514,0.22334616,-0.64421993,0.73129845,0.22401612,-0.6444214,0.73130715,0.22340742,-0.6451944,0.7308944,0.22252549,-0.6464212,0.730157,0.22138287,-0.52232486,0.7739363,0.35804945,-0.5219928,0.7740576,0.35827124,-0.52154046,0.77430576,0.3583938,-0.5209698,0.7746788,0.3584175,-0.52072024,0.7749046,0.35829222,-0.5210282,0.7749579,0.35772872,-0.5217391,0.77473164,0.35718217,-0.5223746,0.77428424,0.35722372,-0.5225624,0.7740701,0.35741296,-0.5225154,0.77394,0.35776326,-0.5297637,0.7607534,0.37497297,-0.52812207,0.7614123,0.37594986,-0.52767575,0.76176417,0.3758639,-0.52769184,0.7618944,0.37557718,-0.52818424,0.76178783,0.3751009,-0.52979773,0.76122224,0.37397197,-0.52963006,0.76143885,0.37376845,-0.5297001,0.7615311,0.37348118,-0.5300062,0.76149964,0.37311095,-0.5302821,0.76126754,0.37319237,-0.5306573,0.76056975,0.3740809,-0.5306469,0.7603622,0.37451714,-0.5302419,0.76049393,0.37482333,-0.5295819,0.76111007,0.37450567,-0.52978206,0.7611123,0.374218,-0.5080854,0.7868146,0.35038838,-0.5077845,0.7868235,0.35080436,-0.5069143,0.78725773,0.35108846,-0.5060584,0.7879588,0.3507504,-0.5066405,0.78782654,0.35020673,-0.5074684,0.78734916,0.35008153,-0.50802416,0.7869355,0.35020554,-0.52361697,0.76243675,0.38015187,-0.52340573,0.7631697,0.3789703,-0.5236238,0.76324564,0.37851572,-0.52470744,0.7625388,0.37843978,-0.5247718,0.76288265,0.3776567,-0.52497596,0.76279783,0.37754428,-0.52559644,0.76222605,0.37783566,-0.526286,0.7614858,0.37836802,-0.5262645,0.76139134,0.37858805,-0.5260105,0.76144385,0.37883538,-0.52354497,0.76223874,0.38064772,-0.54944664,0.73617435,0.39516547,-0.548746,0.73658544,0.39537293,-0.5468221,0.73813856,0.39514184,-0.54591817,0.73900616,0.39476988,-0.54661036,0.7385386,0.39468688,-0.5471608,0.73828006,0.394408,-0.5474435,0.73804945,0.3944473,-0.54837584,0.7372497,0.39464784,-0.54941636,0.736552,0.3945032,-0.5497743,0.73619276,0.39467508,-0.547718,0.7377487,0.3946288,-0.41655228,0.8873973,0.19751003,-0.4170612,0.8874837,0.19604228,-0.41736284,0.8873596,0.1959622,-0.41761708,0.88721573,0.19607204,-0.41782585,0.8870509,0.19637258,-0.41802856,0.8869636,0.19633567,-0.4184605,0.88689,0.19574732,-0.41892216,0.88667494,0.19573402,-0.41925588,0.88637364,0.1963829,-0.4192437,0.8862541,0.19694778,-0.41893995,0.88607085,0.19841306,-0.4184459,0.8861341,0.1991719,-0.4178393,0.886348,0.19949324,-0.4166588,0.88690925,0.19946791,-0.4161441,0.88730025,0.19880234,-0.4160965,0.887428,0.1983312,-0.46136877,0.86805075,0.18337595,-0.46096647,0.86812013,0.18405817,-0.4593559,0.86867166,0.18547708,-0.4585687,0.86897624,0.1859974,-0.45758757,0.8694229,0.18632604,-0.45669174,0.8699214,0.18619722,-0.45623213,0.8702596,0.18574324,-0.4557295,0.8706979,0.18492092,-0.4555045,0.8709602,0.18423903,-0.4556102,0.8711096,0.18326873,-0.45614812,0.8708881,0.18298304,-0.45794588,0.86997354,0.18284304,-0.4596151,0.869155,0.18254744,-0.4603557,0.868759,0.1825664,-0.4612025,0.86823386,0.18292677,-0.43435708,0.8873718,0.15461338,-0.43411282,0.8874032,0.15511815,-0.43379408,0.88750654,0.15541835,-0.4334999,0.8876392,0.15548138,-0.43300867,0.88794357,0.15511198,-0.43248427,0.88834345,0.15428321,-0.4316947,0.8888876,0.15335774,-0.4312387,0.8894724,0.1512347,-0.43117532,0.889736,0.14985907,-0.43127084,0.889937,0.14838333,-0.43139786,0.8900376,0.14740731,-0.4316763,0.8900054,0.14678548,-0.43231514,0.8895433,0.14770347,-0.43233773,0.88931894,0.14898285,-0.43320894,0.888652,0.15042482,-0.43399686,0.88820136,0.15081483,-0.43455786,0.88779026,0.15161769,-0.4346933,0.88759995,0.15234183,-0.43461078,0.8874323,0.15354954,-0.43396717,0.87760204,0.20368391,-0.4337199,0.8776993,0.20379157,-0.43290508,0.8780939,0.20382415,-0.43235976,0.87830377,0.20407715,-0.43177345,0.8785795,0.20413171,-0.430813,0.8791446,0.20372745,-0.42999247,0.87959063,0.20353585,-0.42968035,0.8799609,0.20259224,-0.4294567,0.88016444,0.20218174,-0.42971778,0.88035405,0.20079681,-0.4303221,0.88035893,0.199477,-0.43126553,0.8802146,0.19807152,-0.4318742,0.88005924,0.1974346,-0.4323932,0.8797402,0.19772042,-0.43295223,0.87933993,0.19827677,-0.4334282,0.87842524,0.20126879,-0.43358892,0.8782504,0.2016849,-0.4335361,0.8780698,0.20258284,-0.43401217,0.8776241,0.20349294,-0.42728022,0.8819546,0.1989666,-0.42675555,0.8823407,0.19837986,-0.4267272,0.8824738,0.19784816,-0.42688015,0.8824818,0.19748211,-0.4272138,0.8823599,0.19730505,-0.42772785,0.88210803,0.19731787,-0.4281813,0.8818309,0.19757307,-0.42888567,0.8812841,0.19848266,-0.4289641,0.8807463,0.2006883,-0.4288441,0.8807527,0.20091642,-0.42827758,0.88098586,0.20110251,-0.4280165,0.88113743,0.20099421,-0.42783102,0.8812881,0.20072822,-0.4274861,0.8816608,0.1998246,-0.42713964,0.88189393,0.19953665,-0.42708638,0.8819674,0.1993256,-0.42732462,0.8818823,0.19919163,-0.42767894,0.88149905,0.20012525,-0.4819908,0.8568757,0.18289043,-0.4807805,0.85752875,0.18301502,-0.48043844,0.85773826,0.18293169,-0.48015296,0.8580001,0.18245248,-0.4794101,0.8584781,0.18215713,-0.47977048,0.85846686,0.1812593,-0.48018634,0.8582552,0.18116024,-0.4807786,0.857839,0.1815606,-0.4814358,0.8574274,0.18176281,-0.48250645,0.85681415,0.18181573,-0.4824242,0.8568221,0.18199651,-0.482122,0.85695696,0.1821623,-0.48039198,0.85782015,0.18266934,-0.44700673,0.86861295,0.21376757,-0.4459294,0.8692111,0.21358629,-0.44540998,0.8697553,0.21245152,-0.4453779,0.86985165,0.21212411,-0.44479364,0.87048113,0.21076338,-0.44536224,0.8704383,0.20973709,-0.4456773,0.8703645,0.20937386,-0.44639048,0.86991215,0.20973398,-0.44682214,0.86958456,0.21017295,-0.4470383,0.86928475,0.21095197,-0.447092,0.8688324,0.2126947,-0.48855752,0.829421,0.27087334,-0.48785207,0.8298216,0.27091777,-0.48767114,0.8300008,0.27069443,-0.48767298,0.8302969,0.26978174,-0.48770675,0.8304094,0.2693739,-0.4883237,0.83019096,0.26892933,-0.48884043,0.8299048,0.26887363,-0.4891943,0.82966083,0.26898298,-0.48937675,0.8295043,0.26913384,-0.48931527,0.82935524,0.2697043,-0.4888078,0.82918525,0.2711434,-0.47257674,0.84362537,0.25488722,-0.4725659,0.84390295,0.25398678,-0.4727078,0.8441347,0.25295046,-0.4729857,0.8440767,0.25262442,-0.47342902,0.8438984,0.2523895,-0.47346622,0.8440168,0.25192344,-0.4736901,0.84393126,0.25178888,-0.4738264,0.84384584,0.25181884,-0.4743591,0.8433484,0.25248155,-0.47450846,0.8426635,0.25447974,-0.4738887,0.8426034,0.25583,-0.3240415,0.9368851,0.13131431,-0.32389027,0.9369224,0.13142143,-0.32296085,0.9372317,0.13150258,-0.32215205,0.9374731,0.13176577,-0.32166305,0.93773746,0.13107772,-0.32174146,0.9377789,0.13058786,-0.32197073,0.93776023,0.1301558,-0.3225368,0.93762845,0.12970303,-0.32343805,0.93738383,0.12922598,-0.32394692,0.9371628,0.12955415,-0.3471279,0.92070115,0.178358,-0.3463489,0.9208883,0.17890535,-0.3446208,0.9214177,0.17951582,-0.34371537,0.92171645,0.17971802,-0.3436347,0.9217852,0.17951962,-0.34377807,0.9217957,0.17919046,-0.3444503,0.92170715,0.17835319,-0.34498215,0.9215127,0.17833008,-0.34578016,0.9212706,0.1780352,-0.3465699,0.9209959,0.17792088,-0.3468505,0.92093116,0.17770913,-0.23776944,0.970233,0.04597382,-0.23701099,0.9704031,0.046300266,-0.23558499,0.9707429,0.046454135,-0.23517841,0.9708617,0.046029855,-0.23505843,0.9709086,0.045651022,-0.23608266,0.9706845,0.045127768,-0.23759906,0.97034144,0.044543616,-0.23860388,0.9701196,0.044001814,-0.23996717,0.9698008,0.043614913,-0.24059288,0.9696288,0.043988798,-0.24080789,0.96955496,0.044437535,-0.24056831,0.96957856,0.045213833,-0.23974352,0.96974295,0.04606138,-0.23972951,0.9697315,0.046374008,-0.23876007,0.96998197,0.04613749,-0.5396847,0.8363544,0.09618609,-0.539388,0.8365211,0.09640025,-0.5387382,0.83691734,0.09659452,-0.5383345,0.8371761,0.09660307,-0.538098,0.8373709,0.09623219,-0.5381357,0.8373876,0.09587454,-0.5387672,0.8370213,0.09552572,-0.5394849,0.83654207,0.09567287,-0.52858603,0.84346193,0.09575326,-0.5284438,0.843537,0.09587728,-0.5278665,0.84390706,0.09580132,-0.52717,0.84437084,0.095549196,-0.5271476,0.8444023,0.095394306,-0.52732354,0.84431607,0.09518576,-0.5279669,0.8439468,0.0948931,-0.5282368,0.84378135,0.094862625,-0.5285775,0.8435576,0.09495452,-0.52911747,0.84323204,0.09483881,-0.52965575,0.8428511,0.09521952,-0.52953935,0.8429089,0.09535513,-0.5285573,0.84352696,0.09533872,-0.54072785,0.83526886,0.09969614,-0.54048216,0.83539206,0.099995255,-0.5402925,0.83549374,0.100171134,-0.53999573,0.83567816,0.100232705,-0.5395916,0.8359453,0.10018099,-0.53920156,0.83621603,0.10002206,-0.53882396,0.8364912,0.09975589,-0.53850436,0.8367522,0.09929189,-0.5385777,0.8367232,0.09913787,-0.5388127,0.83658224,0.09905057,-0.5390409,0.83642817,0.099110134,-0.53943723,0.8361282,0.09948478,-0.5407541,0.83527917,0.0994675,-0.5887901,0.8015071,0.104462825,-0.58837646,0.8018189,0.1044008,-0.5877795,0.80232024,0.10391049,-0.58774704,0.8024474,0.10310998,-0.5880689,0.80223733,0.102909215,-0.5883365,0.8020266,0.103021175,-0.58865607,0.8017461,0.103379115,-0.58882785,0.8015678,0.103782766,-0.605951,0.787418,0.113120615,-0.6057736,0.7874942,0.11353953,-0.60548764,0.7876701,0.11384437,-0.6051188,0.7879278,0.114021726,-0.6046666,0.78826773,0.11407148,-0.6039362,0.7887741,0.114440165,-0.6037257,0.7889427,0.11438849,-0.6036989,0.78906417,0.11368973,-0.6054957,0.78811884,0.11065142,-0.60583824,0.78777456,0.111226305,-0.6060289,0.7875047,0.11209538,-0.54917663,0.7532787,-0.36190644,-0.5491351,0.75340426,-0.36170802,-0.5488571,0.75365806,-0.36160126,-0.5476877,0.75419044,-0.36226362,-0.54483604,0.7557976,-0.36321297,-0.54573274,0.7551516,-0.3632104,-0.5474122,0.7540903,-0.3628881,-0.52630347,0.76627713,-0.36854303,-0.52635986,0.76637626,-0.36825642,-0.5263472,0.7668436,-0.3673003,-0.5262142,0.7669858,-0.36719403,-0.52563465,0.76751816,-0.36691153,-0.52511966,0.7679026,-0.36684448,-0.5242177,0.76847494,-0.36693606,-0.5246475,0.7680063,-0.36730286,-0.5249042,0.7675466,-0.36789653,-0.524476,0.7682371,-0.3670649,-0.36367324,0.92575526,0.10353272,-0.36275902,0.9257639,0.106616326,-0.36221436,0.9258248,0.107931376,-0.36162642,0.9260678,0.10781792,-0.36087704,0.9263888,0.107571386,-0.35952476,0.9269877,0.10693813,-0.35926116,0.92711776,0.10669614,-0.3591588,0.927188,0.1064303,-0.3590979,0.92728406,0.10579702,-0.3595384,0.9273271,0.10390654,-0.35935172,0.9275795,0.10228689,-0.3593139,0.9277936,0.10046155,-0.36029342,0.92762184,0.09852092,-0.36062217,0.9275024,0.09844239,-0.36112627,0.9273045,0.098459266,-0.3616459,0.9270845,0.09862313,-0.3627661,0.9265651,0.09938715,-0.36378145,0.9260595,0.10038389,-0.36398885,0.9259028,0.101075,-0.36403796,0.925802,0.101818815,-0.43720922,0.8943716,0.09459115,-0.43669632,0.89470494,0.09380526,-0.43666157,0.8947704,0.09334166,-0.4369838,0.89485294,0.09101281,-0.43757087,0.89470035,0.08968283,-0.43799958,0.8945534,0.089053735,-0.43846443,0.89433956,0.088913634,-0.439365,0.89382505,0.089639395,-0.44083142,0.8928991,0.09164526,-0.44199607,0.89210427,0.09375234,-0.44223395,0.8919112,0.09446425,-0.4417525,0.892031,0.09557922,-0.4409955,0.89230704,0.09649395,-0.44052535,0.89249474,0.09690495,-0.43973377,0.8928504,0.097223245,-0.4391874,0.8931277,0.09714605,-0.43893063,0.89326984,0.096999355,-0.43746665,0.89412296,0.09574486,-0.43701664,0.89439523,0.095255405,-0.24537101,0.96922606,-0.019847121,-0.24539705,0.96922797,-0.019427633,-0.24518242,0.96929926,-0.018562501,-0.24501517,0.96934384,-0.018440008,-0.24481912,0.9693943,-0.018392086,-0.2441683,0.96955645,-0.018497229,-0.24314803,0.9698076,-0.018767988,-0.24259444,0.9699446,-0.01885132,-0.24166788,0.97017497,-0.018897835,-0.24130854,0.9702627,-0.018985797,-0.24122377,0.97028065,-0.019145247,-0.24181463,0.9701148,-0.020071259,-0.24182805,0.970103,-0.020476015,-0.24195647,0.970067,-0.020663641,-0.24220543,0.97000265,-0.020769538,-0.24252677,0.9699224,-0.02076669,-0.24344042,0.96969736,-0.020586232,-0.24408448,0.969536,-0.02055961,-0.24459653,0.9694085,-0.020484962,-0.24497564,0.9693154,-0.020362211,-0.24292119,0.9698261,-0.020655315,-0.4985126,0.86269945,0.08505795,-0.4984193,0.8627266,0.08532841,-0.49804392,0.8629101,0.085664354,-0.4973851,0.8632502,0.08606484,-0.4969844,0.8634738,0.086136825,-0.49681497,0.8636121,0.085725926,-0.49755976,0.8632119,0.08543702,-0.49769682,0.86316794,0.08508204,-0.49834317,0.86280674,0.08496265,-0.4961675,0.8639574,0.08599652,-0.49590933,0.8640183,0.08686929,-0.49515378,0.86436176,0.08775804,-0.49443352,0.8647408,0.08808422,-0.49416706,0.86494964,0.08752757,-0.49439773,0.86489016,0.08680947,-0.49473423,0.8647297,0.08649052,-0.49521843,0.86447835,0.08623159,-0.29144135,0.95593,-0.035494346,-0.29137602,0.9559807,-0.03465333,-0.2912484,0.95603377,-0.034261387,-0.29104006,0.9561052,-0.034037977,-0.29053885,0.9562661,-0.033798423,-0.2897431,0.9565165,-0.033542447,-0.28921065,0.9566807,-0.03345506,-0.2887172,0.9568232,-0.03364062,-0.28825483,0.9569468,-0.0340888,-0.28805792,0.95700264,-0.034184497,-0.28757545,0.95714515,-0.034256503,-0.28714672,0.95726305,-0.034557402,-0.28757668,0.95710367,-0.035386343,-0.28799227,0.9569665,-0.03571434,-0.28850588,0.9568059,-0.035872396,-0.28909755,0.9566226,-0.03599699,-0.29018533,0.95628905,-0.036107317,-0.26542827,0.96347016,-0.035680268,-0.26460025,0.9637531,-0.03415669,-0.26407447,0.96390826,-0.033846796,-0.26380315,0.9639858,-0.033753306,-0.2634263,0.9640861,-0.033830814,-0.26289123,0.96421844,-0.034220606,-0.2632329,0.9641069,-0.03473151,-0.26462165,0.9636796,-0.036013424,-0.2649951,0.9635801,-0.03593038,-0.27509877,0.9605242,-0.04139952,-0.27495334,0.96062654,-0.039966125,-0.27470163,0.960725,-0.039325614,-0.27357134,0.96110976,-0.037771795,-0.27302492,0.9612882,-0.037180066,-0.2722874,0.9615164,-0.036685683,-0.27198702,0.96160555,-0.036576554,-0.27167392,0.9616941,-0.03657451,-0.27134553,0.9617829,-0.03667887,-0.27118063,0.9618113,-0.037149247,-0.27117437,0.96176374,-0.038405683,-0.27197626,0.96142757,-0.04105953,-0.27203122,0.9613626,-0.042200983,-0.27220127,0.9612948,-0.042647447,-0.2724647,0.9612048,-0.04299187,-0.27282128,0.9610928,-0.04323351,-0.27302703,0.96101254,-0.043716557,-0.27320802,0.9609036,-0.04496286,-0.27340776,0.9608318,-0.045281027,-0.2736535,0.9607569,-0.045386415,-0.27394524,0.9606789,-0.045278415,-0.27430046,0.96059483,-0.044908825,-0.2753765,0.96035236,-0.04348691,-0.2754107,0.9603771,-0.04271755,-0.2752576,0.9604341,-0.04242216,-0.27485147,0.9605683,-0.042014316,-0.35254112,0.9357957,-0.0010914806,-0.3515276,0.9361767,-0.0012258777,-0.35125008,0.9362806,-0.0014011945,-0.3515455,0.9361695,-0.0015512732,-0.3513671,0.9362357,-0.001975139,-0.35156924,0.936159,-0.0023148397,-0.3519861,0.93600106,-0.0027960376,-0.35232082,0.9358744,-0.0030257218,-0.3529945,0.935621,-0.0028630062,-0.3540783,0.9352131,-0.0022498923,-0.35424933,0.9351488,-0.0020420607,-0.35415888,0.93518347,-0.0018263002,-0.35391346,0.9352767,-0.0016510399,-0.35493538,0.9348841,-0.0035584974,-0.35474974,0.9349563,-0.0030498798,-0.35433337,0.9351143,-0.0030016075,-0.35361707,0.935385,-0.003151691,-0.35305738,0.93559575,-0.003326643,-0.35234797,0.93586177,-0.003688111,-0.3522401,0.9359008,-0.004074851,-0.35250917,0.9357972,-0.004567724,-0.35285574,0.93566585,-0.004715677,-0.35356402,0.9353982,-0.0047616074,-0.35365918,0.9353648,-0.0042338707,-0.35411248,0.9351937,-0.0041252202,-0.35425484,0.9351409,-0.003869325,-0.44234684,0.887893,0.12639347,-0.4420992,0.8879632,0.12676622,-0.44180873,0.88810503,0.12678525,-0.44147542,0.8883184,0.12645096,-0.4414153,0.8884597,0.12566607,-0.44180557,0.8885836,0.12339776,-0.44157445,0.88882935,0.122451715,-0.4416079,0.88888365,0.12193589,-0.44183075,0.8888278,0.12153478,-0.44204763,0.8887192,0.12154058,-0.44243395,0.8883673,0.122701876,-0.44260165,0.8879918,0.12479727,-0.3564184,0.92940485,0.095773265,-0.35618603,0.92944634,0.09623403,-0.35585496,0.9295576,0.09638377,-0.35537004,0.9297385,0.096428335,-0.3550592,0.9298621,0.096381664,-0.3546605,0.93003786,0.096153386,-0.3543355,0.9301484,0.096282504,-0.35379875,0.93038195,0.09599938,-0.35312176,0.93070275,0.0953803,-0.3516696,0.93135864,0.09433722,-0.3512362,0.9315943,0.093622774,-0.35126078,0.93166643,0.092808716,-0.35153374,0.9316135,0.09230578,-0.35247928,0.93128544,0.09200998,-0.35326433,0.9309846,0.09204354,-0.35388395,0.930738,0.09215733,-0.35426643,0.9305805,0.0922779,-0.35492244,0.9302541,0.093044914,-0.3556362,0.92980313,0.09481023,-0.3549209,0.92992914,0.0962441,-0.4795914,0.8722135,0.096102595,-0.47918564,0.87231314,0.097215846,-0.4784986,0.87255055,0.098461375,-0.47792715,0.87278485,0.09915788,-0.47734416,0.87308085,0.099359855,-0.47777355,0.8729911,0.098076634,-0.47866848,0.8726862,0.096412055,-0.4793759,0.8723369,0.09605769,-0.3649135,0.92836773,0.07050866,-0.3646376,0.92843926,0.07099254,-0.36324716,0.92892694,0.07173701,-0.362627,0.929199,0.071350336,-0.36205083,0.92947435,0.07068651,-0.36257958,0.9293599,0.06947101,-0.36373308,0.928903,0.06955191,-0.36420178,0.92871225,0.06964635,-0.43614134,0.8940294,0.102431305,-0.4358014,0.89410686,0.10319909,-0.43409076,0.89496213,0.10299525,-0.43322486,0.8955066,0.10190221,-0.43222076,0.8963474,0.09872434,-0.4340452,0.8956212,0.09730104,-0.4356266,0.8945427,0.10011416,-0.43604887,0.8942038,0.10129625,-0.34051508,0.938073,0.063785456,-0.33963633,0.9384194,0.06337308,-0.33944985,0.93855625,0.06233751,-0.33981904,0.9384671,0.061664645,-0.34063214,0.9382247,0.060862422,-0.34100613,0.93812466,0.0603075,-0.34099588,0.9381642,0.05974779,-0.34119427,0.9381143,0.059396945,-0.34051126,0.93838704,0.059007194,-0.34024215,0.93850476,0.058686405,-0.3404567,0.93845564,0.058226362,-0.34052566,0.9384786,0.05744754,-0.3407803,0.9383888,0.057404183,-0.3415444,0.93811345,0.057363793,-0.34151167,0.9381949,0.056215193,-0.3417482,0.93813354,0.055800434,-0.3422838,0.93795156,0.05557558,-0.3426413,0.9378239,0.05552786,-0.3428233,0.93774956,0.055658985,-0.34293735,0.93758404,0.05770776,-0.34316236,0.9374803,0.05805482,-0.3438324,0.93720144,0.058589615,-0.3438648,0.93717766,0.058779698,-0.3436418,0.9372404,0.059082523,-0.34412,0.937053,0.05927075,-0.34447807,0.9368916,0.059740245,-0.34471333,0.9367569,0.060491525,-0.3447078,0.9367313,0.060918797,-0.34446052,0.9368156,0.0610198,-0.3439491,0.9370161,0.06082616,-0.34277344,0.93749064,0.060147192,-0.34301084,0.93733484,0.061212625,-0.34229708,0.9374696,0.063114606,-0.34125692,0.937799,0.063849464,-0.34077758,0.9379637,0.06399034,-0.34140536,0.93815976,0.057433814,-0.3435565,0.93728197,0.05891868,-0.33988842,0.93767613,0.07238297,-0.3391524,0.9379791,0.07190906,-0.3389078,0.93812615,0.07113982,-0.3389719,0.9381279,0.070810385,-0.33941114,0.9379909,0.07052067,-0.34024853,0.9376898,0.07048988,-0.34018534,0.9377363,0.070175424,-0.34064332,0.93758965,0.06991253,-0.34104687,0.93751794,0.06889988,-0.34315392,0.93681353,0.06801287,-0.34387058,0.93656707,0.06778766,-0.3438571,0.9365483,0.068114795,-0.3433307,0.9366883,0.06884071,-0.34337592,0.93662053,0.06953369,-0.34309977,0.93668765,0.069991104,-0.34211048,0.9369885,0.07080269,-0.34087107,0.93733305,0.07220574,-0.34029242,0.9375188,0.07252295,-0.339893,0.93781114,0.07059057,-0.42833826,0.898732,0.093846485,-0.42774704,0.8989628,0.09433104,-0.42762852,0.89902663,0.09425979,-0.42760316,0.89907855,0.09387942,-0.42777976,0.89906657,0.09318667,-0.42845526,0.8989072,0.09160771,-0.42884618,0.8987398,0.09142034,-0.42909244,0.89861053,0.09153593,-0.42926085,0.8985032,0.0917998,-0.42916355,0.8983782,0.093462445,-0.3993291,0.91554195,0.04815807,-0.3985598,0.9159183,0.047368325,-0.39865094,0.9158837,0.04726923,-0.39910007,0.91568345,0.047359727,-0.39949605,0.9155015,0.047538616,-0.40012023,0.9152006,0.04808048,-0.40060017,0.9149545,0.048762728,-0.4004128,0.9150191,0.04908761,-0.39956954,0.91536295,0.049547005,-0.3993525,0.91546553,0.04940123,-0.39943758,0.9154566,0.04887579,-0.35469398,0.93256795,0.06715007,-0.3545051,0.9326104,0.06755719,-0.35372007,0.93284607,0.06841278,-0.3529545,0.93305194,0.06954967,-0.35230887,0.9332704,0.069891974,-0.351209,0.93366593,0.07014426,-0.3500295,0.934074,0.07060594,-0.3495512,0.9342434,0.07073395,-0.34791583,0.9348205,0.07117032,-0.34671074,0.9352137,0.0718823,-0.34597754,0.93546873,0.072096005,-0.34581465,0.93553406,0.0720298,-0.34511712,0.93582124,0.071643345,-0.34487256,0.9359287,0.0714166,-0.34479538,0.9359737,0.0711993,-0.34489477,0.93599504,0.07043351,-0.34536695,0.9358789,0.06965902,-0.34574226,0.93575966,0.069398716,-0.34620762,0.93559873,0.06924783,-0.34661335,0.9354425,0.06932897,-0.34695938,0.9352909,0.06964302,-0.34717926,0.93521154,0.069612674,-0.3474746,0.9351488,0.0689794,-0.34778702,0.9350431,0.06883782,-0.3497344,0.934347,0.06842202,-0.3505558,0.9341263,0.067221075,-0.35128146,0.9338882,0.06673941,-0.35290632,0.93330437,0.06633323,-0.35320407,0.93320423,0.066156745,-0.35349134,0.93309826,0.0661173,-0.35399976,0.93289185,0.066310145,-0.35448632,0.9326873,0.06658769,-0.34918252,0.9343828,0.07071355,-0.34949797,0.9344247,0.068568766,-0.35226575,0.9335325,0.06652804,-0.3488814,0.9344908,0.070772074,-0.3472537,0.9344044,0.079393744,-0.34689328,0.93447655,0.08011619,-0.3462841,0.93466854,0.0805113,-0.34467876,0.9352387,0.08077831,-0.3435366,0.9356147,0.08128806,-0.34317973,0.9357434,0.08131387,-0.34289867,0.9358516,0.0812547,-0.34269366,0.93593925,0.081109874,-0.34240568,0.9360841,0.08065292,-0.3426285,0.9361318,0.079139225,-0.34237844,0.936289,0.07835739,-0.3424425,0.93630546,0.07787928,-0.34299904,0.9361596,0.07718052,-0.34322736,0.9360832,0.07709211,-0.34364322,0.93592846,0.07711873,-0.34472194,0.9355151,0.077319466,-0.3453481,0.93528366,0.07732484,-0.34655085,0.93478596,0.07795929,-0.34699583,0.9345879,0.07835427,-0.34728795,0.9344414,0.07880605,-0.3454276,0.9349796,0.08057845,-0.33966884,0.9403667,0.018318294,-0.33918068,0.9405651,0.017138982,-0.3395173,0.9404499,0.01679455,-0.33997133,0.9403015,0.015895022,-0.340334,0.94017,0.015911369,-0.3409103,0.93995464,0.016292095,-0.34130517,0.9398033,0.016747419,-0.3415674,0.9396917,0.017638963,-0.3413641,0.939759,0.01798583,-0.34173846,0.9396075,0.018777497,-0.34185252,0.9395512,0.019505618,-0.3414798,0.9396646,0.020540832,-0.34110883,0.9397943,0.02077208,-0.34061322,0.93997675,0.02064837,-0.34014016,0.9401529,0.020426227,-0.33969137,0.94032204,0.020105584,-0.33956572,0.9403774,0.019631486,-0.33976203,0.9403194,0.019002894,-0.40700534,0.91234285,0.044465505,-0.40649784,0.91255414,0.04477085,-0.40601188,0.9127656,0.04486964,-0.40554705,0.91297746,0.044763025,-0.40489018,0.9133023,0.044078372,-0.4040356,0.9137405,0.0428196,-0.4033635,0.91409713,0.041525166,-0.40272057,0.91447306,0.039436165,-0.40314746,0.9142981,0.039128702,-0.40344036,0.91417104,0.039078683,-0.40380803,0.91400206,0.03923383,-0.4045872,0.9136293,0.039883178,-0.40485376,0.91347885,0.040617447,-0.40515026,0.9133308,0.040989734,-0.4055673,0.9131342,0.041244548,-0.40594593,0.91294795,0.04164103,-0.4065469,0.9126733,0.041797884,-0.40821192,0.91191804,0.042053115,-0.40845135,0.91177285,0.042868707,-0.40828934,0.91182256,0.04335271,-0.4077337,0.91203064,0.044196334,-0.4079832,0.91190827,0.044418246,-0.408142,0.91180646,0.045045555,-0.4089477,0.9114752,0.044439003,-0.4094574,0.9112475,0.044414584,-0.4095896,0.9111797,0.044585723,-0.40965694,0.9110997,0.045591973,-0.4095694,0.91113263,0.045718607,-0.40932482,0.9112489,0.045592107,-0.40895793,0.91139346,0.04599338,-0.40938616,0.9111818,0.046375107,-0.4095613,0.9110867,0.046696868,-0.4098779,0.9108997,0.047558997,-0.4098201,0.91090745,0.047907725,-0.40918174,0.91117203,0.048330832,-0.40870234,0.91137874,0.048489314,-0.40841064,0.91151124,0.048456136,-0.40830514,0.9115705,0.04823085,-0.40751964,0.9120967,0.044803593,-0.40911317,0.9113422,0.045626402,-0.40893343,0.9114131,0.045821954,-0.4082878,0.9116559,0.04673918,-0.40803915,0.9118156,0.04578686,-0.37824115,0.92544043,0.022218714,-0.3782072,0.9254475,0.022499086,-0.37792543,0.925555,0.022810077,-0.37739646,0.92576236,0.023151003,-0.37684053,0.92598253,0.023398964,-0.3756585,0.92645615,0.023657894,-0.37503406,0.92670774,0.023710672,-0.37404242,0.9271114,0.023596138,-0.37268132,0.9276664,0.023316385,-0.3716383,0.92808807,0.023184061,-0.37091133,0.9283785,0.023198368,-0.37024376,0.9286509,0.022956744,-0.36928356,0.9290531,0.02213403,-0.3690436,0.92916876,0.021265347,-0.37032062,0.9286781,0.020483807,-0.37097242,0.92842436,0.02018945,-0.37142438,0.92824507,0.020124208,-0.3721568,0.9279579,0.019835,-0.3724589,0.92783785,0.019781686,-0.3729795,0.927625,0.019953446,-0.37387386,0.92725086,0.020594694,-0.37505674,0.9267785,0.020347917,-0.37564528,0.92654145,0.020288678,-0.37620887,0.926312,0.020320062,-0.37669507,0.9261116,0.02045036,-0.37710452,0.9259398,0.02068013,-0.37802067,0.92554146,0.021757085,-0.41193032,0.9104219,0.038017835,-0.4117171,0.9105033,0.0383768,-0.4112247,0.9107129,0.03868196,-0.41077423,0.91091055,0.03881334,-0.41036484,0.9110969,0.038771845,-0.40827346,0.91207117,0.037933674,-0.4072737,0.9125413,0.03737033,-0.40603593,0.9131297,0.036455378,-0.40556324,0.91334707,0.036270827,-0.4051862,0.9135243,0.0360206,-0.40501493,0.9136061,0.0358718,-0.40480343,0.9137263,0.035192214,-0.4050357,0.9136546,0.03437054,-0.40573394,0.9133495,0.034243852,-0.40618834,0.91314566,0.03429298,-0.4070974,0.91272974,0.03458533,-0.40811622,0.91226923,0.0347276,-0.4091173,0.91180646,0.035100076,-0.4094011,0.91167134,0.0352998,-0.41007686,0.9113254,0.036373634,-0.41064888,0.91104764,0.03687379,-0.41144025,0.91067624,0.037224814,-0.4118668,0.9104677,0.037606668,-0.47122544,0.8816471,-0.025395418,-0.47120672,0.88166684,-0.02505731,-0.47086638,0.88185936,-0.024676662,-0.47052783,0.8820421,-0.024601828,-0.46979508,0.88241446,-0.025244024,-0.46999377,0.88227934,-0.026249424,-0.4704001,0.882067,-0.026106404,-0.2275234,0.97267467,-0.04622898,-0.22765778,0.97269225,-0.045185324,-0.2268632,0.97297436,-0.0430573,-0.22579421,0.9733157,-0.040908135,-0.22538057,0.9733806,-0.041638512,-0.22523177,0.9733892,-0.042238794,-0.2251978,0.9733499,-0.04331114,-0.22528212,0.9733159,-0.043636005,-0.22627175,0.97303987,-0.04465955,-0.22662646,0.97288793,-0.04614669,-0.22692761,0.9727944,-0.046635564,-0.22722648,0.9727233,-0.046663474,-0.20038451,0.9786038,-0.04669809,-0.20014374,0.9786758,-0.046219226,-0.19912083,0.97893214,-0.04519632,-0.19856022,0.9790456,-0.045204867,-0.19815478,0.9791209,-0.04535366,-0.19815683,0.97910666,-0.045650825,-0.1984029,0.9790307,-0.046207942,-0.19931848,0.9788084,-0.046970196,-0.19960208,0.97874504,-0.047086786,-0.19985585,0.9786908,-0.047137115,-0.20007908,0.978646,-0.047120634,-0.20871602,0.9769985,-0.043721113,-0.20866615,0.97703284,-0.043188196,-0.20838495,0.9771136,-0.04271681,-0.2083436,0.9771535,-0.042000562,-0.20852731,0.9771759,-0.04054135,-0.20805717,0.97727716,-0.040515997,-0.20778078,0.977334,-0.04056255,-0.20714107,0.9774623,-0.040743053,-0.20680654,0.9775256,-0.040923346,-0.20630643,0.9776152,-0.04130657,-0.20544034,0.9777543,-0.042318106,-0.20510668,0.97778183,-0.043289572,-0.20501314,0.9777443,-0.044562113,-0.20501412,0.9777123,-0.04525427,-0.2051141,0.9776861,-0.045365788,-0.20572463,0.9775509,-0.04551407,-0.20684582,0.9773057,-0.045698345,-0.20761009,0.97715,-0.04556185,-0.20844358,0.9770165,-0.044609703,-0.23354796,0.9723449,0.00092412374,-0.23331681,0.9724001,0.0011138745,-0.23308972,0.9724546,0.0011132072,-0.23073404,0.9730165,0.00085555675,-0.23002687,0.9731836,0.0011697395,-0.22970973,0.97325844,0.0012250862,-0.2293473,0.9733439,0.0012192434,-0.22896962,0.97343296,0.0010978157,-0.22865449,0.9735072,0.00089969084,-0.22773509,0.9737231,0.00020360113,-0.22772212,0.97372603,-0.0005418298,-0.2281725,0.97361934,-0.0016308851,-0.2285479,0.9735304,-0.0020934679,-0.22911637,0.9733964,-0.0022494278,-0.22945169,0.9733175,-0.0022276898,-0.23067483,0.97302926,-0.0017753813,-0.23209305,0.97269285,-0.001188927,-0.23304422,0.97246593,-0.00066928496,-0.23352812,0.97235,-0.00022130027,-0.23365673,0.9723191,0.00010552881,-0.2334303,0.9723735,0.0003091486,-0.2328676,0.972508,0.0009228197,-0.23122697,0.97289956,0.0007178795,-0.23240724,0.9726182,0.0007918601,-0.23170952,0.97278476,0.0007201511,-0.24880253,0.96819174,-0.026495175,-0.24831945,0.9683302,-0.025961861,-0.24811329,0.9683847,-0.025902037,-0.24754833,0.9685214,-0.026192434,-0.24703343,0.9686418,-0.026598303,-0.24623755,0.96881986,-0.027479945,-0.24635467,0.96878606,-0.027621204,-0.24661575,0.9687163,-0.027737522,-0.24701999,0.9686107,-0.027828615,-0.24735472,0.9685121,-0.028282668,-0.24795306,0.9683132,-0.029813105,-0.24835823,0.9681905,-0.030418934,-0.24903828,0.9680079,-0.030669177,-0.24999477,0.96776474,-0.030560996,-0.2505763,0.9676197,-0.03039024,-0.25078374,0.9675733,-0.030157795,-0.25065887,0.9676245,-0.029546991,-0.25045618,0.9676836,-0.029328803,-0.24874651,0.9681737,-0.027657364,-0.2493214,0.9680374,-0.027246218,-0.24931836,0.9680481,-0.026892666,-0.24986263,0.9678467,-0.029007202,-0.24888623,0.9681224,-0.02818814,-0.26606664,0.9636323,-0.024927888,-0.2660023,0.9636557,-0.024707394,-0.26578552,0.9637199,-0.024536714,-0.26544282,0.9638147,-0.0245233,-0.26463792,0.9640291,-0.024794506,-0.26371315,0.9642656,-0.025440086,-0.26364315,0.9642663,-0.026131282,-0.26395476,0.9641693,-0.026558397,-0.2642307,0.9640893,-0.026720373,-0.2644663,0.9640141,-0.027100127,-0.26469877,0.96395177,-0.027047588,-0.2650321,0.96386665,-0.026814407,-0.26593196,0.96365887,-0.025332347,-0.21078816,0.9691906,-0.12742813,-0.2108944,0.96921057,-0.1271003,-0.2107519,0.9692984,-0.12666576,-0.21053177,0.96939725,-0.12627497,-0.2102332,0.96950716,-0.12592788,-0.20984995,0.9696357,-0.12557706,-0.20898677,0.9699004,-0.12497055,-0.20865777,0.96999085,-0.12481872,-0.20846243,0.9700312,-0.12483121,-0.20843591,0.9699886,-0.12520635,-0.20868301,0.96988463,-0.12559913,-0.20952253,0.9696484,-0.12602489,-0.21010607,0.9693489,-0.1273505,-0.21043286,0.9692389,-0.12764814,-0.20901372,0.9698033,-0.12567785,-0.2092561,0.9697338,-0.12581047,-0.2104639,0.9732212,-0.092441745,-0.21019858,0.9733523,-0.091661826,-0.20969221,0.9735121,-0.09112279,-0.20899503,0.97367865,-0.0909452,-0.20853871,0.9737671,-0.09104503,-0.20794527,0.97386885,-0.091314144,-0.20731,0.9739557,-0.091831,-0.2067568,0.9738783,-0.09387554,-0.20675856,0.9737819,-0.09486702,-0.20731488,0.97355765,-0.095947795,-0.20767784,0.97347546,-0.095997125,-0.20800722,0.9734148,-0.0958991,-0.25028428,0.9660655,-0.06383709,-0.25040543,0.9660897,-0.06299008,-0.2500275,0.96628505,-0.061477046,-0.24956116,0.9664433,-0.06088129,-0.24921489,0.9665511,-0.060587376,-0.2488468,0.96665794,-0.06039613,-0.24845785,0.9667635,-0.060308006,-0.24803731,0.966871,-0.06031474,-0.2472693,0.96705675,-0.06049032,-0.2466569,0.9672193,-0.060392644,-0.24568254,0.967469,-0.06036407,-0.24521819,0.96758056,-0.060463622,-0.24480361,0.9676733,-0.06065982,-0.24410065,0.9678169,-0.061199084,-0.24371912,0.96784073,-0.062332526,-0.24385567,0.96776646,-0.06294809,-0.24469651,0.96748775,-0.06396139,-0.24512464,0.96735936,-0.064263254,-0.2467894,0.9668726,-0.06521064,-0.2473557,0.9667031,-0.06557638,-0.24752185,0.966647,-0.065775536,-0.24772303,0.96659005,-0.06585569,-0.24824813,0.9664645,-0.065720364,-0.24942276,0.9662021,-0.06512935,-0.35625425,0.9321662,-0.064413406,-0.35578293,0.932366,-0.06412595,-0.35426867,0.93297803,-0.06360555,-0.3538802,0.93311787,-0.063717015,-0.35328385,0.93331534,-0.06413227,-0.3525985,0.93356514,-0.06426831,-0.35201475,0.93375593,-0.064695485,-0.35178223,0.9337995,-0.06532797,-0.3518628,0.933748,-0.06562993,-0.3521009,0.93363935,-0.06589793,-0.35239646,0.933519,-0.066022895,-0.35319176,0.9332131,-0.06609742,-0.3543807,0.9327352,-0.066478394,-0.3551695,0.9324242,-0.06663111,-0.3557084,0.93221587,-0.066671625,-0.3559949,0.9321116,-0.06660036,-0.35602722,0.9321094,-0.06645755,-0.35569414,0.9322649,-0.06605918,-0.35581252,0.93223655,-0.06582174,-0.35647404,0.9319924,-0.065699086,-0.35690552,0.9318422,-0.06548712,-0.35686195,0.93187374,-0.065275766,-0.3563539,0.9321094,-0.064683005,-0.35274944,0.933387,-0.06600468,-0.3556969,0.93227476,-0.065904774,-0.3536419,0.93329245,-0.062471285,-0.35271236,0.933665,-0.062158935,-0.35216126,0.93387485,-0.062131118,-0.3514957,0.93412083,-0.062201828,-0.3510552,0.93427587,-0.062360547,-0.3506782,0.934388,-0.06280084,-0.35088944,0.9342917,-0.06305256,-0.35151657,0.9340268,-0.06348259,-0.35180515,0.93391013,-0.06360001,-0.35201004,0.93383276,-0.063603,-0.35284603,0.93352693,-0.06345972,-0.35325137,0.93339217,-0.06318646,-0.3286046,0.9425698,-0.059843414,-0.32848683,0.942617,-0.05974563,-0.32828593,0.9426904,-0.05969231,-0.32713687,0.9430972,-0.059575275,-0.32692012,0.9431915,-0.05927074,-0.32586855,0.94350874,-0.060007606,-0.32544833,0.9436197,-0.060541216,-0.32531735,0.94362956,-0.061088983,-0.3256618,0.9434901,-0.061406817,-0.32648218,0.9432008,-0.061494365,-0.3270383,0.9430087,-0.061485726,-0.3273295,0.94291455,-0.06138018,-0.3277732,0.94278705,-0.06096966,-0.32771647,0.94288844,-0.059693497,-0.34855682,0.93671244,-0.03283114,-0.34738868,0.93712145,-0.033533394,-0.3468776,0.937293,-0.034026884,-0.34644872,0.93742985,-0.034620725,-0.34637022,0.9374384,-0.035169285,-0.34664297,0.9373185,-0.03567428,-0.34723914,0.9370813,-0.0361056,-0.3481587,0.9367262,-0.03646306,-0.34878522,0.9364867,-0.036626663,-0.34939682,0.9362602,-0.036587004,-0.35005498,0.93600976,-0.03670541,-0.35047624,0.9358576,-0.036564793,-0.35076585,0.93576294,-0.03620765,-0.350293,0.93595034,-0.035941,-0.34926882,0.93634796,-0.035550214,-0.3484188,0.93667096,-0.0353809,-0.3500876,0.9360718,-0.034759294,-0.3502744,0.93599534,-0.03493669,-0.3509359,0.9357371,-0.035214443,-0.35115674,0.93566406,-0.034953374,-0.35121837,0.93566495,-0.03430432,-0.35103542,0.93575275,-0.03377763,-0.3506087,0.9359272,-0.033373494,-0.3499589,0.9361809,-0.033077262,-0.3490854,0.9365136,-0.032888148,-0.34774366,0.9369199,-0.035431497,-0.3494892,0.9362986,-0.03467312,-0.34848145,0.936674,-0.034677517,-0.34742665,0.9370414,-0.035328314,-0.3478545,0.9369045,-0.034745622,-0.34746712,0.93703604,-0.03507156,-0.3452615,0.9359888,-0.06869882,-0.34522152,0.93604153,-0.06817868,-0.3449921,0.9361498,-0.06785332,-0.3444066,0.93640864,-0.06725265,-0.34438345,0.9364392,-0.06694534,-0.34380957,0.93664443,-0.06702384,-0.34300375,0.9369211,-0.06728436,-0.342305,0.93712085,-0.068056844,-0.34218323,0.93713635,-0.06845503,-0.34240744,0.9370337,-0.06873875,-0.3427143,0.9369146,-0.06883258,-0.34310496,0.93677866,-0.06873642,-0.34411085,0.9364455,-0.06824673,-0.34437257,0.9363127,-0.0687468,-0.34455535,0.9362528,-0.068646535,-0.3447818,0.9361689,-0.06865345,-0.34520996,0.93600166,-0.068782434,-0.3445799,0.9363255,-0.06752188,-0.34361702,0.9366283,-0.06822577,-0.34385246,0.9365488,-0.06813031,-0.35729116,0.93096,-0.07520976,-0.35732356,0.9309687,-0.07494758,-0.356587,0.9312904,-0.07445778,-0.3564244,0.93138754,-0.07401979,-0.35529202,0.93184406,-0.07371734,-0.35481092,0.9320294,-0.07369067,-0.3544394,0.9321634,-0.0737837,-0.35396227,0.9323173,-0.07412948,-0.3533005,0.932484,-0.07518256,-0.35446644,0.9319476,-0.076336116,-0.35483253,0.9317392,-0.07717468,-0.35518822,0.93157697,-0.077496506,-0.35553557,0.93146074,-0.07730065,-0.35693157,0.93107384,-0.0755077,-0.3540377,0.9321597,-0.07573343,-0.3562095,0.9297906,-0.09275903,-0.3562406,0.9298144,-0.092399955,-0.35597825,0.92997646,-0.09177812,-0.3557163,0.93009424,-0.091600336,-0.35537672,0.93023,-0.09153973,-0.3548166,0.93044007,-0.09157765,-0.35369644,0.9308106,-0.092144236,-0.353299,0.9309074,-0.092688836,-0.3528823,0.93093973,-0.093942694,-0.35285848,0.9308915,-0.09450852,-0.3530019,0.93079466,-0.094925866,-0.3534491,0.9306192,-0.09498247,-0.35419995,0.9303648,-0.09467728,-0.354981,0.9301227,-0.094128944,-0.3557892,0.9298938,-0.09333599,-0.3668429,0.9226607,-0.11884239,-0.36566585,0.92322236,-0.118105814,-0.3651413,0.9234596,-0.11787385,-0.36465454,0.9236592,-0.11781656,-0.3644552,0.9237222,-0.11793917,-0.36376742,0.92397016,-0.11812048,-0.36324814,0.9242089,-0.11785059,-0.36209878,0.92469305,-0.11758925,-0.36132285,0.924977,-0.117742464,-0.3617184,0.9247359,-0.11842023,-0.36265847,0.92433417,-0.11868114,-0.3632603,0.92404515,-0.11909061,-0.36471888,0.92340755,-0.11957673,-0.36556312,0.92310995,-0.1192962,-0.36600062,0.92298144,-0.118948765,-0.3666832,0.9227133,-0.118927054,-0.35451275,0.92699987,-0.12244175,-0.3541112,0.9270686,-0.12308182,-0.354187,0.9270203,-0.123227246,-0.3545904,0.9268678,-0.123214506,-0.35515365,0.9266863,-0.12295689,-0.35622153,0.9263894,-0.122101985,-0.35619095,0.9264266,-0.1219087,-0.3559924,0.926519,-0.12178653,-0.3553169,0.92678714,-0.12171882,-0.35457033,0.9270513,-0.12188422,-0.37171984,0.92048615,-0.120538525,-0.37133253,0.9205401,-0.121317975,-0.3722926,0.9201422,-0.12139436,-0.3734396,0.91971785,-0.1210867,-0.3738975,0.91953236,-0.12108238,-0.37378564,0.9196288,-0.12069465,-0.3731597,0.91996753,-0.1200481,-0.3720368,0.92049515,-0.11948749,-0.3536117,0.92710274,-0.12425477,-0.35364345,0.92712414,-0.12400459,-0.35329962,0.92727095,-0.12388673,-0.35276374,0.9274833,-0.12382439,-0.3516914,0.9278232,-0.12432733,-0.35240677,0.92749095,-0.12477961,-0.22873347,0.93714136,-0.26352802,-0.22935045,0.93721926,-0.26271355,-0.22881596,0.937385,-0.2625883,-0.2278393,0.9375716,-0.26277134,-0.22751118,0.93758345,-0.26301318,-0.22736585,0.9372689,-0.26425704,-0.2277305,0.9371515,-0.26435938,-0.22875565,0.9369122,-0.26432258,-0.9598124,0.27978966,0.021862257,-0.95955,0.28050637,0.02408262,-0.9588014,0.28290713,0.025757957,-0.9585044,0.28382492,0.026697466,-0.957744,0.28623623,0.028200475,-0.956053,0.29175472,0.02901273,-0.95489544,0.29557696,0.028440855,-0.9538427,0.29891714,0.028856086,-0.953161,0.3009821,0.029896598,-0.9527051,0.3025339,0.02874619,-0.9519297,0.304887,0.029559122,-0.9514173,0.3064612,0.029775262,-0.94987434,0.31103525,0.03155681,-0.9492992,0.31276792,0.03173608,-0.9486418,0.31483293,0.03096793,-0.94868124,0.31489843,0.029030135,-0.9487086,0.31496724,0.027340522,-0.96129966,0.27489913,0.018261168,-0.9542692,0.29758632,0.028508391,-0.9609977,0.27591664,0.018802773,-0.94876367,0.31472296,0.028230714,-0.9508519,0.30777094,0.03402559,-0.9496266,0.31134623,0.03567541,-0.94955885,0.3115729,0.035500225,-0.9495783,0.3115875,0.03484701,-0.95044404,0.30903476,0.033965506,-0.950647,0.30841953,0.033877894,-0.9509796,0.30746195,0.033240605,-0.95345116,0.29942128,0.035745785,-0.9531198,0.30036598,0.03664603,-0.95287967,0.30110884,0.036795378,-0.9527877,0.3014762,0.036162462,-0.95302904,0.30072367,0.03607002,-0.9532464,0.30008635,0.035630003,-0.9534631,0.29948145,0.034914684,-0.9540216,0.29775727,0.034401156,-0.95422584,0.29709166,0.034489963,-0.9648037,0.15030624,0.21578181,-0.9646978,0.15054137,0.2160913,-0.9652994,0.15452842,0.21051839,-0.96531194,0.1576085,0.20816451,-0.9657612,0.16050617,0.20382127,-0.96676373,0.16343436,0.196614,-0.9673394,0.16392452,0.19334756,-0.9682152,0.16423802,0.18864048,-0.96818995,0.16522746,0.18790428,-0.9684274,0.16568045,0.18627487,-0.96876276,0.16559722,0.1845977,-0.9691169,0.1662393,0.18214504,-0.9697332,0.1667317,0.17837654,-0.9700789,0.16604935,0.17712858,-0.9705213,0.1646912,0.17596951,-0.97120893,0.16294838,0.17378445,-0.9714373,0.16265999,0.17277548,-0.9716756,0.16235639,0.17171775,-0.97249,0.16005199,0.16925272,-0.9740542,0.15784663,0.16218163,-0.9745813,0.15681148,0.16000487,-0.97741807,0.1534515,0.1452808,-0.9773222,0.15676098,0.14236319,-0.9773957,0.15771197,0.14079984,-0.97737145,0.15848026,0.14010352,-0.97743887,0.15885478,0.13920622,-0.9775332,0.1583482,0.13912097,-0.9775441,0.1572206,0.14031784,-0.9778059,0.15547058,0.14044382,-0.977939,0.15567772,0.13928339,-0.9784377,0.15531148,0.13615453,-0.9784472,0.15609102,0.13519123,-0.97856784,0.15697737,0.13327837,-0.9782467,0.15887573,0.13338655,-0.9780928,0.15933178,0.13397013,-0.9779982,0.15973896,0.13417538,-0.9779719,0.16014694,0.13388054,-0.9781977,0.15971966,0.13273627,-0.9780262,0.16224547,0.13092408,-0.97787267,0.16301484,0.13111569,-0.97775817,0.16381773,0.13096793,-0.97778213,0.16544767,0.12872157,-0.9823355,0.14089274,0.12315129,-0.9814052,0.14473559,0.12607709,-0.9811613,0.1441386,0.12863305,-0.9808156,0.1439219,0.13148136,-0.98042583,0.14454675,0.13368368,-0.98060054,0.14315353,0.13390161,-0.98053706,0.14253953,0.13501677,-0.9800423,0.14288948,0.13820182,-0.9798899,0.14203167,0.14015257,-0.9796312,0.14154997,0.14243013,-0.97970915,0.14040673,0.14302386,-0.9797967,0.13944815,0.14336161,-0.9800596,0.1343527,0.14639835,-0.9798192,0.13355884,0.14871587,-0.9796695,0.1326973,0.1504633,-0.9795498,0.13261873,0.15130897,-0.9793786,0.13343975,0.15169531,-0.97901297,0.13584557,0.15191977,-0.97884554,0.13665608,0.15227142,-0.97862345,0.13703515,0.15335424,-0.9784874,0.13744028,0.15385927,-0.9788516,0.1341787,0.15442012,-0.9791464,0.12944461,0.1565771,-0.9794635,0.12666897,0.15686324,-0.9794348,0.12568071,0.15783477,-0.97892517,0.12577792,0.16088942,-0.9781707,0.1266309,0.16476278,-0.9778718,0.12749147,0.1658696,-0.97766566,0.12854797,0.16626836,-0.97739977,0.12923929,0.16729294,-0.9768618,0.1293744,0.17030346,-0.97668874,0.12971672,0.17103425,-0.97641623,0.13052694,0.17197114,-0.97627723,0.13225302,0.1714407,-0.9762288,0.13341612,0.17081468,-0.9763486,0.13660873,0.16757548,-0.97630584,0.1391384,0.16573317,-0.9763581,0.13966677,0.16497855,-0.975606,0.1441622,0.16555971,-0.9750521,0.14459735,0.16841908,-0.9747439,0.14521377,0.16966811,-0.9729894,0.14945775,0.17593749,-0.97307736,0.15021196,0.1748052,-0.97271436,0.15146041,0.17574564,-0.9724634,0.15256041,0.17618217,-0.97213006,0.15386495,0.17688599,-0.9716343,0.1547667,0.17881271,-0.97151333,0.15513213,0.17915352,-0.96957415,0.15527108,0.18925342,-0.9694583,0.15371336,0.19110975,-0.96927696,0.15317702,0.19245516,-0.9692286,0.15217386,0.19349147,-0.96912,0.15198852,0.19418012,-0.968883,0.1500215,0.19687384,-0.9691901,0.14688897,0.19772245,-0.9691833,0.14614028,0.19830963,-0.96921223,0.14531153,0.19877686,-0.9690979,0.14536804,0.1992922,-0.968948,0.14616811,0.19943605,-0.96891594,0.14683238,0.19910334,-0.9687534,0.1476239,0.1993091,-0.9687429,0.14711902,0.19973297,-0.96842957,0.14701031,0.20132607,-0.9684929,0.14645314,0.20142706,-0.96845615,0.14602482,0.20191447,-0.9682905,0.14638227,0.20244923,-0.968097,0.14701031,0.20291941,-0.96776664,0.14775713,0.2039499,-0.9678663,0.1460332,0.20471704,-0.9678845,0.14479469,0.20550948,-0.9676641,0.14178528,0.20862179,-0.96789944,0.14315188,0.20658708,-0.9681109,0.14409307,0.20493516,-0.96811205,0.14573058,0.20376849,-0.96819544,0.14584273,0.20329155,-0.96846914,0.14487903,0.20267601,-0.9690293,0.14345036,0.20100792,-0.9692022,0.1415685,0.20150815,-0.9695872,0.14033,0.20051962,-0.96976084,0.14039244,0.19963433,-0.96997136,0.14022708,0.1987258,-0.970203,0.13744277,0.1995384,-0.97028923,0.13128403,0.20323223,-0.97006017,0.12630878,0.20743541,-0.9700145,0.1258413,0.20793238,-0.9692843,0.12953669,0.20906527,-0.96896094,0.130244,0.21012183,-0.96876585,0.13116574,0.21044774,-0.9682317,0.13285528,0.21184172,-0.9682416,0.13164304,0.21255215,-0.9681707,0.13127127,0.21310404,-0.9679388,0.13167259,0.21390846,-0.96691763,0.1340875,0.21700402,-0.9661923,0.13758552,0.21804276,-0.96587956,0.13800667,0.21915944,-0.96570903,0.13869712,0.21947473,-0.96562594,0.13975872,0.21916679,-0.9655263,0.14240536,0.2178985,-0.9655142,0.14524832,0.21606773,-0.96540695,0.14655337,0.21566525,-0.9654959,0.14778237,0.21442512,-0.96521235,0.14894629,0.21489564,-0.97539145,0.1544898,0.15730344,-0.9803188,0.14302197,0.1360875,-0.97638196,0.14050457,0.16412431,-0.9712519,0.1559184,0.1798867,-0.96902776,0.15149753,0.19502243,-0.96879846,0.14790711,0.19887951,-0.9675764,0.14290895,0.208262,-0.96856123,0.13343385,0.20996332,-0.96556383,0.14382988,0.21679352,-0.968141,0.1638161,0.18938658,-0.97830164,0.16003928,0.13158056,-0.9819993,0.14342937,0.12290427,-0.96744055,0.14147574,0.2098654,-0.96942914,0.1407595,0.20098227,-0.9682792,0.13383411,0.21100669,-0.96659726,0.13634703,0.21702373,-0.9776571,0.15569703,0.14122698,-0.9757834,0.14370766,0.16490883,-0.968466,0.13396582,0.2100637,-0.9683286,0.13417527,0.21056275,-0.96686405,0.13483489,0.21677989,-0.96838117,0.13419133,0.21031061,-0.96770334,0.14934152,0.20309474,-0.9761979,0.15320389,0.15351288,-0.97705144,0.15265067,0.1485539,-0.9816734,0.14441687,0.12434224,-0.9762515,0.14159128,0.16396633,-0.9760508,0.14286847,0.16405322,-0.97819394,0.14923827,0.14444573,-0.9698323,0.15638562,0.1869994,-0.9766403,0.15275669,0.15112633,-0.9702902,0.1567804,0.18427357,-0.970949,0.15653798,0.18098025,-0.97107244,0.14391175,0.19054599,-0.9708525,0.14439836,0.19129695,-0.9706929,0.14518334,0.19151302,-0.9704986,0.14691585,0.19117567,-0.9705587,0.14712326,0.19071063,-0.9706726,0.14708872,0.1901567,-0.97087675,0.14670172,0.18941239,-0.97107935,0.14522968,0.18950768,-0.9711647,0.14480978,0.18939202,-0.97124213,0.14318055,0.19023125,-0.9813397,0.12754126,0.14389484,-0.98118985,0.12763265,0.14483233,-0.98111075,0.12845244,0.14464295,-0.9811189,0.13027602,0.14294706,-0.9809358,0.13093174,0.14360258,-0.98085654,0.13262299,0.14258872,-0.98091406,0.13263054,0.14218563,-0.98112893,0.13212459,0.14117037,-0.98143125,0.13065885,0.14043105,-0.9814973,0.13018313,0.14041148,-0.9815416,0.12971838,0.14053221,-0.98152447,0.12828256,0.14196242,-0.9812153,0.12922817,0.1432361,-0.9777333,0.16219077,0.13316044,-0.9775768,0.16299379,0.13332915,-0.9774969,0.16384713,0.13286774,-0.9775303,0.1638749,0.13258803,-0.9776753,0.16363782,0.13180935,-0.9719292,0.1427984,0.18698196,-0.97167337,0.14356515,0.18772289,-0.9716358,0.1442837,0.18736602,-0.9716727,0.14427686,0.18717995,-0.97188205,0.14352469,0.18667062,-0.05482796,0.9935813,0.09894487,-0.055959515,0.9936993,0.09710907,-0.05697297,0.9937551,0.095942244,-0.060688622,0.99376714,0.09350793,-0.06157605,0.9937236,0.09339086,-0.06323948,0.9936284,0.09329227,-0.063437805,0.99368507,0.09255041,-0.063690156,0.99371165,0.09209089,-0.06415629,0.9937064,0.09182356,-0.064741366,0.99366194,0.09189407,-0.065271504,0.99364793,0.09167012,-0.06712265,0.99364465,0.09035933,-0.06726533,0.9936289,0.09042626,-0.06750631,0.9935914,0.09065871,-0.06784457,0.9935321,0.09105495,-0.06865197,0.9935093,0.09069848,-0.0689025,0.99357015,0.089837976,-0.069287196,0.9935674,0.08957172,-0.06958054,0.99354327,0.08961215,-0.070298985,0.9934481,0.090105474,-0.071034536,0.9933774,0.0903079,-0.07145536,0.9934024,0.089698404,-0.07177151,0.9933748,0.08975153,-0.07225756,0.99331415,0.09003247,-0.07267012,0.9932368,0.0905522,-0.07300529,0.99314266,0.09131178,-0.07314419,0.99308515,0.09182467,-0.07320874,0.99288416,0.093923144,-0.07404348,0.9927465,0.09472057,-0.074598186,0.9926443,0.09535429,-0.07550806,0.99254376,0.09568404,-0.07467192,0.99291444,0.09243919,-0.07497752,0.99297357,0.09155239,-0.07484141,0.99307984,0.09050494,-0.07482903,0.9931685,0.08953792,-0.075188465,0.993236,0.08848112,-0.07634485,0.99312,0.08879213,-0.07928185,0.992759,0.09024417,-0.07933228,0.99281335,0.08959957,-0.079546854,0.99282014,0.08933322,-0.07955432,0.9928571,0.08891487,-0.0792515,0.9929762,0.08784923,-0.07925275,0.99303144,0.08722135,-0.07971949,0.99308646,0.086162984,-0.080001615,0.9930984,0.08576338,-0.08039096,0.99307895,0.085623905,-0.0831856,0.9928552,0.085549645,-0.084085636,0.9928181,0.08509866,-0.08539192,0.99271256,0.0850297,-0.08657787,0.9925837,0.08533388,-0.08676765,0.992676,0.08405761,-0.087116666,0.9926814,0.08363228,-0.08897309,0.9924435,0.08449676,-0.08963029,0.9922429,0.086142294,-0.08928237,0.9922343,0.08660123,-0.08829017,0.99225646,0.08736132,-0.08723627,0.9922964,0.087964155,-0.08675342,0.9922384,0.08908843,-0.083185904,0.9920679,0.09424168,-0.08510974,0.9918704,0.09460173,-0.084999055,0.9919162,0.09422017,-0.08510947,0.99195087,0.09375424,-0.0856035,0.9919861,0.09292782,-0.08891262,0.99208176,0.08870358,-0.08953649,0.992051,0.088419534,-0.09013552,0.9919984,0.08840125,-0.090398416,0.99195033,0.08867179,-0.09109478,0.9915417,0.09244906,-0.093503125,0.9910084,0.09570519,-0.09447525,0.99088955,0.09598085,-0.09651657,0.9905201,0.097746976,-0.097454585,0.9903308,0.09872925,-0.09823079,0.99016255,0.09964327,-0.101011254,0.98984784,0.09999016,-0.09993033,0.9905022,0.09444217,-0.10016698,0.9906853,0.092245735,-0.09953407,0.99122804,0.086947925,-0.10040912,0.9913819,0.08414249,-0.101526506,0.9913857,0.08274539,-0.10195921,0.99135387,0.08259458,-0.10291974,0.99117583,0.08353463,-0.10454193,0.9908361,0.08552656,-0.10561921,0.99055904,0.087391876,-0.106501445,0.9902002,0.090338044,-0.1078184,0.99000645,0.09089758,-0.10838279,0.99004596,0.089789376,-0.10940142,0.9900119,0.08892577,-0.10834765,0.9903302,0.08664195,-0.10823922,0.9904571,0.08531666,-0.106390245,0.9910339,0.08082607,-0.10673765,0.9910339,0.08036673,-0.10783654,0.99086875,0.08093435,-0.10965318,0.99055487,0.08232409,-0.11412888,0.9897756,0.08555025,-0.11496891,0.98966044,0.085757695,-0.11609814,0.98949647,0.08612741,-0.11565601,0.9896214,0.08528297,-0.11113725,0.99041706,0.081991255,-0.10983748,0.9906625,0.08076829,-0.10907676,0.99083495,0.07967663,-0.10867004,0.9909346,0.0789902,-0.10841055,0.99104404,0.07796675,-0.10843315,0.9911012,0.07720514,-0.10866082,0.99110293,0.076862484,-0.11022027,0.9909822,0.076196104,-0.110647604,0.9909431,0.07608514,-0.111259684,0.9908559,0.076327555,-0.11248949,0.9907978,0.075271145,-0.112896085,0.99081206,0.07447135,-0.115199864,0.99067265,0.0727788,-0.11756481,0.9904928,0.07143168,-0.11952234,0.9902842,0.07107495,-0.11989492,0.9902245,0.071278945,-0.12024155,0.9900738,0.072772846,-0.12084182,0.9899206,0.07385422,-0.121939264,0.98966056,0.07551695,-0.122779824,0.9894299,0.07715997,-0.12509495,0.9888344,0.080980636,-0.12408719,0.9891185,0.07903738,-0.12372194,0.98925126,0.07794102,-0.123137966,0.9895007,0.07566678,-0.12182854,0.98983884,0.07332709,-0.1213688,0.98998433,0.0721153,-0.121542566,0.9900301,0.07118808,-0.1214098,0.9901047,0.0703734,-0.12158665,0.9901153,0.06991694,-0.12224913,0.9900732,0.06935584,-0.12372064,0.9899136,0.06902368,-0.124619685,0.98980004,0.06903507,-0.12579444,0.9896436,0.069147706,-0.12662569,0.98951215,0.06951037,-0.12750168,0.9893535,0.07016428,-0.13585204,0.9880612,0.07265908,-0.13555549,0.98815554,0.07192624,-0.13553707,0.98821336,0.07116193,-0.13569525,0.98826605,0.070121765,-0.13591218,0.9882774,0.06953968,-0.13619597,0.98824704,0.06941548,-0.1374438,0.98807603,0.06939023,-0.13839154,0.98791486,0.0697999,-0.14045404,0.9875187,0.071270406,-0.1412146,0.987374,0.071770616,-0.13971373,0.98772615,0.069836296,-0.13942565,0.98780614,0.06927814,-0.13938186,0.98784435,0.06882031,-0.13959856,0.98784196,0.06841416,-0.14121376,0.9876883,0.06730854,-0.14195202,0.9875954,0.06711922,-0.14440727,0.98723745,0.06714759,-0.14584574,0.9870426,0.06690213,-0.14745708,0.98681355,0.06674924,-0.14803605,0.98674184,0.06652701,-0.1483929,0.9867114,0.066182755,-0.14896894,0.9866433,0.06590296,-0.14988387,0.986527,0.06556892,-0.15101722,0.9863707,0.06531951,-0.15330112,0.9860338,0.06508542,-0.15381426,0.98595095,0.06512991,-0.15563235,0.9856448,0.06544368,-0.15656008,0.9854737,0.06580708,-0.15737383,0.98530805,0.06634365,-0.15796612,0.9851787,0.066855416,-0.15833996,0.9850854,0.06734355,-0.15845358,0.98503786,0.06777044,-0.15785538,0.985026,0.069321595,-0.15815026,0.984897,0.070472784,-0.15802354,0.9848806,0.070983954,-0.15732911,0.98495287,0.07152194,-0.15666594,0.98504245,0.071744055,-0.1563208,0.98506707,0.07215713,-0.15607126,0.9850567,0.07283617,-0.15541421,0.9851227,0.073346995,-0.15477513,0.9851071,0.074890725,-0.15557574,0.9850242,0.0743201,-0.15627448,0.98493046,0.07409624,-0.15710181,0.98480964,0.07395233,-0.1576512,0.9847142,0.074054115,-0.15910448,0.98444575,0.07451428,-0.1614605,0.98400015,0.075327136,-0.17279206,0.98201746,0.07605634,-0.1729291,0.9820829,0.07489139,-0.17414795,0.98203564,0.072652966,-0.1744115,0.9820144,0.072307,-0.1752739,0.9818939,0.07185733,-0.17567316,0.98185253,0.0714465,-0.17595303,0.98184574,0.070848525,-0.17677885,0.981753,0.07007361,-0.17825541,0.98155963,0.069033965,-0.17908587,0.98143643,0.06863521,-0.17938063,0.98137003,0.06881479,-0.17993169,0.9812319,0.06934355,-0.1804076,0.9811493,0.06927563,-0.18284883,0.9808794,0.0666472,-0.18420728,0.9806997,0.06554179,-0.18500893,0.9805809,0.06505979,-0.18570927,0.9804632,0.064837664,-0.18616053,0.98040366,0.064442895,-0.18663643,0.98041797,0.062829055,-0.18682796,0.9804054,0.062455107,-0.18723224,0.9803509,0.062097665,-0.18877691,0.98010796,0.061251085,-0.18996027,0.9799398,0.060274974,-0.1904049,0.9798621,0.060134895,-0.19196737,0.9795737,0.059865665,-0.19261216,0.9794427,0.059937447,-0.19300838,0.9793476,0.0602172,-0.19349784,0.9792183,0.060746327,-0.19382879,0.9791488,0.060811743,-0.19546223,0.97884715,0.060438126,-0.19607796,0.97870606,0.06072812,-0.1969948,0.97845566,0.061786063,-0.19816679,0.9781129,0.06344411,-0.19861268,0.97799104,0.06392611,-0.19883464,0.97791773,0.06435621,-0.19919893,0.9776931,0.06660309,-0.19975711,0.9775339,0.06726513,-0.19992326,0.9774643,0.06778064,-0.19994015,0.9773847,0.068869896,-0.19960068,0.97738904,0.06978689,-0.19934294,0.97741586,0.07014683,-0.19840252,0.97757465,0.070599586,-0.19817938,0.97753155,0.07181233,-0.19896767,0.9774094,0.07129315,-0.2006117,0.97710943,0.07079647,-0.20086226,0.9770439,0.07098943,-0.20073925,0.9770098,0.071802676,-0.20134087,0.9768137,0.0727796,-0.2022008,0.97661036,0.07312319,-0.20259362,0.9764757,0.07383114,-0.20305964,0.9761717,0.07652188,-0.20292322,0.97615576,0.07708468,-0.20263349,0.97618985,0.07741502,-0.20214662,0.9762682,0.0776998,-0.20140645,0.9764049,0.07790348,-0.20041414,0.9765994,0.07802449,-0.19995418,0.9766452,0.07862905,-0.20039017,0.97646266,0.079777785,-0.20039123,0.9764109,0.08040524,-0.20034876,0.97636735,0.08103833,-0.1998601,0.9763858,0.08201717,-0.19930956,0.97645783,0.08249702,-0.19733784,0.97680146,0.0831666,-0.19872014,0.9761758,0.087127455,-0.20008747,0.97589034,0.087195426,-0.20075467,0.97572523,0.08750877,-0.20175049,0.9754588,0.08818685,-0.2013309,0.97568023,0.0866828,-0.20127048,0.9757803,0.085691474,-0.20168263,0.97585833,0.08381286,-0.20277433,0.97583896,0.08136865,-0.20400319,0.97569746,0.079982474,-0.20478484,0.97556114,0.07964692,-0.20687781,0.9751312,0.07950279,-0.2072667,0.9752614,0.07684904,-0.20907313,0.97512555,0.07361104,-0.20969987,0.97505426,0.07276742,-0.21015994,0.9749725,0.072535805,-0.21082747,0.974841,0.07236549,-0.21170348,0.97465926,0.07225582,-0.21241434,0.9744825,0.07255403,-0.21295804,0.9743106,0.07326481,-0.21349363,0.9740906,0.07461941,-0.21374187,0.9740412,0.074553125,-0.21408845,0.97396207,0.074592754,-0.21453094,0.9738535,0.07473772,-0.21485324,0.9737547,0.07509873,-0.21505323,0.97366583,0.0756768,-0.21505675,0.97360826,0.07640358,-0.21401095,0.973796,0.07694549,-0.21113949,0.97432864,0.078127004,-0.21216953,0.97410023,0.07818495,-0.21318242,0.9738834,0.07813094,-0.21399502,0.97368664,0.07836151,-0.21460623,0.97351015,0.07888041,-0.21499187,0.9733888,0.07932656,-0.21515298,0.9733228,0.07969923,-0.2153508,0.97312313,0.0815803,-0.21493977,0.9730503,0.08351044,-0.21398479,0.9730892,0.08548652,-0.21497877,0.9728436,0.08578777,-0.21607132,0.97272176,0.08441328,-0.21677059,0.9726194,0.08379701,-0.21953046,0.9721097,0.082517564,-0.22024143,0.97195756,0.08241464,-0.22064397,0.97184485,0.08266713,-0.22114915,0.97168076,0.08324391,-0.2215697,0.97146994,0.08457571,-0.2225462,0.9710785,0.08648497,-0.22281383,0.9709266,0.08749638,-0.2233758,0.9706778,0.08881396,-0.22348674,0.97057813,0.08962037,-0.22288823,0.9701638,0.09540951,-0.2225018,0.9702002,0.095940426,-0.21908724,0.97120863,0.09356607,-0.21954077,0.9709932,0.094731115,-0.21967822,0.9709088,0.095276274,-0.21963803,0.97088045,0.095657386,-0.21922143,0.9709457,0.09594974,-0.2173093,0.9711981,0.097729,-0.21779312,0.9710205,0.098413795,-0.21804377,0.97090167,0.099029616,-0.21806322,0.9708414,0.09957582,-0.21790075,0.9708445,0.09990115,-0.21755826,0.9709106,0.10000475,-0.217084,0.97093207,0.10082394,-0.21645157,0.9710197,0.10133824,-0.21539079,0.9712019,0.10185115,-0.21456216,0.97135484,0.10214143,-0.21322085,0.97156286,0.10296852,-0.2136548,0.97140217,0.10358302,-0.214184,0.97117144,0.10464805,-0.21384452,0.9712056,0.10502496,-0.21251516,0.9714576,0.10539186,-0.2107468,0.97162795,0.10735393,-0.21127242,0.97138983,0.10847005,-0.21126091,0.97135097,0.108839795,-0.21016707,0.97131026,0.11129332,-0.21008098,0.97107446,0.11349161,-0.20967594,0.97105086,0.114438675,-0.20963067,0.9709586,0.11530152,-0.20989478,0.9707046,0.1169478,-0.20997253,0.9702675,0.12038506,-0.21042776,0.9698562,0.1228782,-0.21039124,0.9696957,0.124200545,-0.21057376,0.9695262,0.12521042,-0.2109616,0.969294,0.12634997,-0.21101466,0.9691469,0.12738542,-0.21338442,0.96802545,0.13188565,-0.21537384,0.96764445,0.13144688,-0.21575601,0.9675009,0.13187629,-0.21681641,0.96684533,0.13490993,-0.21790868,0.9663993,0.13633855,-0.21847206,0.96610624,0.13750899,-0.22004125,0.9649559,0.14297539,-0.22066279,0.96471083,0.1436696,-0.22104974,0.9645342,0.1442592,-0.22120185,0.9644269,0.14474316,-0.22129917,0.96416163,0.14635217,-0.22259347,0.96358603,0.14816925,-0.22290115,0.96356547,0.14783983,-0.22384325,0.96343225,0.1472837,-0.2243997,0.9632997,0.14730397,-0.22495455,0.9630598,0.1480245,-0.22566089,0.9628313,0.14843503,-0.22631502,0.9625895,0.14900655,-0.22732101,0.9623091,0.14928594,-0.22826098,0.96219456,0.14858867,-0.22921462,0.96202517,0.14821689,-0.23000316,0.96186215,0.14805332,-0.230001,0.96182835,0.14827603,-0.22920346,0.96189034,0.14910653,-0.22803834,0.96202075,0.1500487,-0.22731732,0.9618803,0.15202986,-0.22830327,0.9614494,0.15327339,-0.22859041,0.9612967,0.15380213,-0.22926252,0.9610012,0.15464579,-0.22946928,0.9609272,0.15479918,-0.22977711,0.9607569,0.15539837,-0.23168562,0.96005774,0.15687878,-0.2317696,0.96009654,0.15651658,-0.2331861,0.9596597,0.15709063,-0.23391712,0.95944935,0.1572888,-0.23450038,0.9592685,0.15752319,-0.23493956,0.9591075,0.15784872,-0.23492648,0.959002,0.15850769,-0.23578312,0.9584617,0.16049138,-0.23633727,0.95824265,0.16098353,-0.23589641,0.95831794,0.16118199,-0.23858654,0.95712715,0.16426834,-0.23928516,0.9570177,0.16388929,-0.23995078,0.9568787,0.16372767,-0.24075547,0.9565804,0.16428876,-0.24132828,0.9563451,0.16481712,-0.24145624,0.95626086,0.16511826,-0.24128915,0.9562277,0.16555384,-0.24132349,0.95612293,0.16610819,-0.24118398,0.95608073,0.16655314,-0.24125578,0.95596325,0.16712248,-0.2409227,0.955989,0.16745539,-0.24042727,0.9561037,0.16751248,-0.23950347,0.956382,0.16724719,-0.24046424,0.9556518,0.17001925,-0.24108751,0.955442,0.17031543,-0.24163213,0.95523226,0.1707199,-0.245117,0.95409393,0.17211168,-0.24599323,0.9538974,0.17195061,-0.24669546,0.9537149,0.17195717,-0.24764618,0.9537341,0.17047764,-0.24876058,0.9534724,0.17031904,-0.24888839,0.9533858,0.17061691,-0.24870324,0.95329547,0.1713897,-0.25004187,0.9527205,0.17263453,-0.25057587,0.9527596,0.17164157,-0.25096315,0.95266384,0.17160758,-0.25210232,0.9522499,0.17223398,-0.25246722,0.95201653,0.17298804,-0.25139272,0.95212704,0.17394201,-0.2474518,0.95316,0.17393567,-0.24939083,0.95249367,0.17481418,-0.25259295,0.95165175,0.1748021,-0.25510237,0.95082796,0.17563893,-0.2579892,0.9497989,0.17698495,-0.2586433,0.94963694,0.17689934,-0.2594102,0.9493789,0.17716114,-0.26029122,0.9490233,0.17777294,-0.2610629,0.9486196,0.17879336,-0.2617203,0.9481672,0.18022601,-0.26198184,0.9479172,0.18115851,-0.2613363,0.94781625,0.18261352,-0.26102877,0.94763076,0.18401065,-0.2607217,0.9475859,0.18467599,-0.25928783,0.9476819,0.18619561,-0.25837564,0.9478646,0.18653357,-0.25811884,0.9478714,0.18685426,-0.25713328,0.9480962,0.18707216,-0.25607154,0.94846714,0.18664804,-0.25531545,0.9488357,0.18580888,-0.2545044,0.9491822,0.1851503,-0.2544602,0.94910705,0.18559575,-0.25360087,0.9493077,0.18574588,-0.25233507,0.949741,0.18525396,-0.25122076,0.9500024,0.18542817,-0.25033426,0.95024395,0.18538919,-0.24970435,0.95048076,0.18502453,-0.24876603,0.95092845,0.18398534,-0.24813628,0.95133394,0.18273498,-0.24798402,0.9514872,0.18214285,-0.24699281,0.95204103,0.18058915,-0.24629878,0.95234174,0.17995036,-0.2457979,0.95258164,0.1793644,-0.24425735,0.9529319,0.17960855,-0.24492088,0.9527984,0.17941272,-0.24547313,0.9526221,0.1795943,-0.246886,0.95191395,0.18140309,-0.24720387,0.9517195,0.18198952,-0.24965915,0.9503578,0.18571582,-0.25035134,0.95007896,0.18620984,-0.25066862,0.9499161,0.18661343,-0.25195456,0.9493481,0.18776873,-0.2531232,0.94909716,0.18746525,-0.25353107,0.9489134,0.187844,-0.2538195,0.9487603,0.18822762,-0.2538245,0.9485446,0.18930466,-0.2534919,0.9485225,0.18986034,-0.25177982,0.9488865,0.19031908,-0.2499928,0.9492734,0.190745,-0.24900517,0.94904107,0.19317745,-0.24853274,0.9490781,0.19360334,-0.24863538,0.94887114,0.19448397,-0.25255325,0.948332,0.19205002,-0.2536086,0.94808894,0.19185944,-0.25513598,0.9476011,0.19224408,-0.2556515,0.94750494,0.19203307,-0.2562761,0.9472824,0.19229837,-0.2576626,0.9465366,0.19410935,-0.25740877,0.9464843,0.19470017,-0.25695103,0.94650304,0.19521323,-0.25578314,0.9466517,0.19602422,-0.25552067,0.94659126,0.19665743,-0.25544044,0.9463539,0.19790015,-0.2551822,0.9462076,0.19893034,-0.25282007,0.946193,0.2019923,-0.2530898,0.9457652,0.20365101,-0.25306484,0.94552606,0.20478934,-0.2542643,0.94538695,0.20394401,-0.25471172,0.9455982,0.20240065,-0.25507593,0.94562674,0.20180778,-0.25562426,0.9455779,0.20134206,-0.2557843,0.94547445,0.20162466,-0.25581658,0.9450568,0.20353271,-0.2556746,0.9449662,0.2041309,-0.2570071,0.94419265,0.20602812,-0.25746575,0.944048,0.20611843,-0.25824752,0.9437291,0.20660022,-0.25945583,0.9431575,0.20769346,-0.25967804,0.9428109,0.20898551,-0.25975895,0.9423723,0.21085458,-0.25920448,0.94227964,0.21194844,-0.2609634,0.9418443,0.21172494,-0.26179656,0.9422434,0.20890181,-0.2621084,0.9422882,0.20830776,-0.2622244,0.9426602,0.20647041,-0.26205423,0.9437246,0.20177086,-0.26228023,0.9439735,0.2003078,-0.26260763,0.94409233,0.19931597,-0.26336312,0.9442005,0.19780111,-0.26484898,0.9441845,0.19588433,-0.26507595,0.94435394,0.1947573,-0.26545092,0.9444332,0.19385998,-0.26634827,0.94449174,0.19233808,-0.26735756,0.9443144,0.19180788,-0.26817727,0.9440983,0.19172727,-0.26918977,0.9437967,0.19179322,-0.26965895,0.94355196,0.19233754,-0.2702743,0.9430555,0.19390218,-0.2709404,0.94245726,0.19587137,-0.2711473,0.9421843,0.19689557,-0.27073935,0.94199026,0.19837986,-0.2697738,0.94178385,0.20066223,-0.26935863,0.9407158,0.20615456,-0.2697314,0.94015807,0.20820127,-0.26968426,0.9400439,0.20877694,-0.26797354,0.93971974,0.21240771,-0.26782915,0.9396159,0.213048,-0.2675043,0.9396282,0.21340185,-0.26518866,0.9399305,0.21495481,-0.26501453,0.93971187,0.21612254,-0.26413843,0.9397818,0.2168896,-0.26336712,0.9396576,0.21836056,-0.2641863,0.93949133,0.21808638,-0.2647236,0.9393087,0.2182213,-0.26666605,0.93831044,0.22014256,-0.26822934,0.9380423,0.21938477,-0.26934043,0.9376649,0.21963659,-0.2701771,0.93727607,0.22026788,-0.2720085,0.9365145,0.22125092,-0.2728662,0.9361318,0.22181375,-0.27524582,0.9352885,0.2224302,-0.27614963,0.93488437,0.22300811,-0.2753091,0.9348644,0.22412828,-0.27424726,0.93503916,0.22470032,-0.27355075,0.9351219,0.22520433,-0.2737796,0.9348599,0.22601272,-0.2733986,0.9347348,0.22698897,-0.276209,0.9343093,0.22533251,-0.2772111,0.93438035,0.22380209,-0.2778263,0.93414545,0.22401969,-0.27989873,0.93319476,0.22539805,-0.28278515,0.9319442,0.22696382,-0.28238645,0.9319442,0.22745968,-0.28170794,0.93204767,0.22787665,-0.2800555,0.932431,0.2283449,-0.28732607,0.9307255,0.22626038,-0.2874093,0.9316983,0.22211283,-0.2884769,0.9317466,0.22052063,-0.29019877,0.931447,0.21952459,-0.29141334,0.9311251,0.21928126,-0.29465115,0.92985994,0.22032073,-0.29591966,0.9294687,0.22027138,-0.2968087,0.92911553,0.220565,-0.29650244,0.92908907,0.22108789,-0.2959261,0.92915016,0.22160253,-0.29430908,0.9291962,0.22355448,-0.2945858,0.92899287,0.22403438,-0.29461372,0.928884,0.22444858,-0.2939071,0.92860633,0.22651458,-0.29316598,0.9286206,0.22741485,-0.29119813,0.9288212,0.2291174,-0.2902407,0.92895854,0.22977467,-0.28843695,0.92955387,0.2296383,-0.28821275,0.92967355,0.22943528,-0.28942895,0.9287568,0.23160674,-0.28998107,0.92860097,0.23154104,-0.29031387,0.9284741,0.23163262,-0.2944657,0.9276766,0.22957806,-0.29507154,0.92813313,0.2269398,-0.29609865,0.92851526,0.22402018,-0.29651523,0.9286019,0.22310804,-0.29707703,0.9285361,0.22263397,-0.3009401,0.92699087,0.22388165,-0.30355674,0.9261132,0.22398147,-0.30462018,0.9256502,0.22445114,-0.30600286,0.92499936,0.22525191,-0.30791715,0.9242066,0.22589646,-0.3075604,0.9241229,0.22672315,-0.30633417,0.9243767,0.2273479,-0.30222094,0.92559177,0.22790864,-0.301698,0.925694,0.22818615,-0.30052003,0.9258374,0.22915679,-0.29971674,0.9259887,0.22959709,-0.29866493,0.9261138,0.23046148,-0.29843664,0.9257301,0.23229145,-0.29795748,0.92564076,0.23326051,-0.2975758,0.9254601,0.23446156,-0.29596072,0.9255702,0.23606585,-0.29446918,0.9255034,0.23818356,-0.29516593,0.92543364,0.23759131,-0.2956849,0.9251673,0.23798288,-0.29604766,0.9239389,0.24226588,-0.29644606,0.9247887,0.23850685,-0.29716927,0.9249958,0.23679785,-0.29910553,0.92496926,0.23445213,-0.29990327,0.92555594,0.23109345,-0.30030587,0.925615,0.2303328,-0.3010744,0.92553854,0.2296359,-0.30308998,0.9251253,0.2286475,-0.3069603,0.92404443,0.22785358,-0.3078364,0.9238674,0.22738893,-0.30986932,0.923332,0.22680186,-0.31108302,0.9227192,0.22763278,-0.31388417,0.92142665,0.22901899,-0.31502455,0.92041254,0.23151727,-0.3150336,0.9201358,0.23260237,-0.31483504,0.91999024,0.23344558,-0.31445378,0.92004,0.23376317,-0.3140179,0.9199542,0.23468506,-0.31286123,0.91986865,0.23655768,-0.3118595,0.9194798,0.23937546,-0.31229407,0.91949755,0.23873985,-0.31443068,0.91931957,0.2366113,-0.31568238,0.91881746,0.23689485,-0.31654438,0.91859424,0.23660986,-0.31829035,0.9180907,0.23622172,-0.31935778,0.91764253,0.23652217,-0.32065856,0.91715246,0.23666306,-0.3222063,0.91645825,0.23724975,-0.32305256,0.9159713,0.2379782,-0.324066,0.91547686,0.23850243,-0.32545745,0.9146389,0.23981911,-0.3253337,0.914532,0.24039376,-0.3245401,0.9146774,0.24091277,-0.32323042,0.9148028,0.24219412,-0.3224192,0.9149696,0.24264467,-0.3214305,0.915249,0.24290271,-0.32026455,0.91564065,0.24296671,-0.31893426,0.9160496,0.24317506,-0.31669113,0.9166886,0.24369805,-0.31096765,0.9184315,0.24450494,-0.30951187,0.9188188,0.24489677,-0.3072079,0.9195046,0.24522369,-0.31051996,0.91833305,0.24544191,-0.31154686,0.9181116,0.2449685,-0.31220025,0.917915,0.24487361,-0.31527165,0.91685194,0.24492094,-0.3162577,0.91662556,0.24449673,-0.3181416,0.91609985,0.24402261,-0.32273254,0.91475457,0.24303864,-0.32541505,0.91406494,0.24205428,-0.3258828,0.9138883,0.24209219,-0.3258614,0.91378933,0.24249412,-0.32615468,0.91345596,0.24335432,-0.3261403,0.91339666,0.24359597,-0.3255795,0.9133831,0.24439563,-0.32875454,0.9119114,0.24563801,-0.3308571,0.91064066,0.24752197,-0.3309058,0.91050017,0.24797344,-0.33032915,0.9104385,0.24896677,-0.32899588,0.9106174,0.2500752,-0.32971093,0.9096815,0.25252765,-0.32881472,0.90968114,0.25369492,-0.32607,0.91046345,0.25442997,-0.3249835,0.9108047,0.25459877,-0.31958315,0.9117694,0.25795966,-0.32037005,0.91173685,0.2570972,-0.32242215,0.9114979,0.2553733,-0.32341623,0.9111871,0.25522545,-0.32626793,0.9101834,0.25517717,-0.32830963,0.9095406,0.25485042,-0.33055642,0.9089649,0.25399864,-0.33093393,0.90886146,0.2538772,-0.33132097,0.9087181,0.2538854,-0.33182883,0.9083261,0.25462392,-0.3322842,0.9079336,0.25542852,-0.33247575,0.907815,0.25560096,-0.33226147,0.9074472,0.25718054,-0.33333692,0.90675384,0.25823244,-0.33614254,0.9047929,0.26145357,-0.33740005,0.9039448,0.2627641,-0.3384887,0.90331334,0.26353455,-0.34072378,0.9019525,0.26530918,-0.34145045,0.9014256,0.26616448,-0.34225732,0.9007497,0.26741344,-0.34237263,0.90046114,0.26823634,-0.34179842,0.9005615,0.26863128,-0.34084564,0.9009251,0.26862288,-0.33926538,0.90165937,0.26815918,-0.33614475,0.9029741,0.2676647,-0.33494133,0.9035081,0.2673713,-0.33282453,0.9041404,0.2678767,-0.33403218,0.90354824,0.26837105,-0.33249912,0.90382016,0.2693576,-0.33166608,0.90404683,0.26962364,-0.330521,0.9044264,0.26975682,-0.32961595,0.90480924,0.26958027,-0.32902485,0.9052913,0.26868245,-0.3274591,0.90648234,0.26657134,-0.32684407,0.90702176,0.26548904,-0.3263598,0.9071466,0.2656584,-0.3269265,0.9066899,0.26651925,-0.3278381,0.90577257,0.26851112,-0.32833973,0.9054592,0.2689547,-0.32858968,0.9052229,0.26944453,-0.3290303,0.904578,0.27106783,-0.32784948,0.9046677,0.27219677,-0.32791203,0.9041106,0.27396673,-0.32921284,0.90322226,0.27533332,-0.32977608,0.902641,0.27656272,-0.33067983,0.90250677,0.27592096,-0.3296952,0.9034456,0.27402022,-0.32928327,0.9039525,0.27284148,-0.32980558,0.9040315,0.27194723,-0.3308991,0.9039197,0.27098897,-0.33208734,0.9036695,0.27036914,-0.33246842,0.903461,0.27059743,-0.3330674,0.90302795,0.27130535,-0.33330113,0.90309244,0.27080327,-0.3341962,0.90313154,0.2695669,-0.3349177,0.90304005,0.2689773,-0.33692414,0.90230846,0.2689268,-0.33936933,0.9011845,0.26961997,-0.3415335,0.9003573,0.26965085,-0.34190908,0.90005076,0.2701977,-0.3422082,0.89958197,0.27137765,-0.34208184,0.89953506,0.27169225,-0.3417433,0.8995827,0.27196044,-0.34102055,0.89974827,0.27231976,-0.34083265,0.8997337,0.27260283,-0.33908424,0.9000073,0.2738771,-0.33661667,0.90049595,0.2753111,-0.33448938,0.9011099,0.27589458,-0.33483773,0.90081817,0.27642417,-0.33544198,0.90054154,0.2765929,-0.33566266,0.9003863,0.2768306,-0.33529323,0.9003429,0.27741867,-0.3345036,0.90042704,0.27809808,-0.3354284,0.90009344,0.27806395,-0.33670235,0.9000326,0.27671802,-0.33741307,0.89993304,0.27617565,-0.3388989,0.8996002,0.27543965,-0.34137428,0.899199,0.2736873,-0.34322402,0.8988407,0.27254835,-0.34400734,0.8980643,0.27411577,-0.34622404,0.8969345,0.2750225,-0.3473074,0.8960396,0.27656925,-0.3484519,0.8944387,0.28028676,-0.34976518,0.8930384,0.283102,-0.35025424,0.8923255,0.28474054,-0.35074455,0.89172465,0.2860165,-0.35091683,0.89141244,0.2867774,-0.35083085,0.8910069,0.28813967,-0.3510196,0.8907777,0.2886179,-0.3509789,0.8905696,0.28930864,-0.35165754,0.88980556,0.29083163,-0.3518862,0.889592,0.29120815,-0.3515425,0.8896457,0.29145917,-0.34619084,0.89135987,0.29262528,-0.3493111,0.8902427,0.2923178,-0.3510952,0.88948643,0.2924825,-0.35261604,0.88879305,0.2927607,-0.35290077,0.88845533,0.2934419,-0.35480452,0.8872586,0.29476413,-0.35568756,0.8867947,0.2950958,-0.35559535,0.88673836,0.2953761,-0.35570255,0.8862936,0.29657954,-0.35569102,0.88591635,0.29771817,-0.35550475,0.885592,0.29890326,-0.35523528,0.88528425,0.30013275,-0.35454127,0.8848471,0.30223516,-0.3561064,0.8841808,0.30234522,-0.3568748,0.883705,0.30282968,-0.3576626,0.8830864,0.30370373,-0.35766348,0.88293594,0.3041396,-0.3560624,0.8830312,0.30573758,-0.35527012,0.8833222,0.30581868,-0.3524677,0.88359964,0.30825025,-0.3540697,0.8832698,0.30735818,-0.35451347,0.8830744,0.30740824,-0.35508832,0.88289356,0.30726418,-0.3567116,0.88244414,0.30667442,-0.35763493,0.88204616,0.30674386,-0.35814527,0.88162094,0.30737022,-0.35860398,0.88107497,0.3083992,-0.358926,0.8808726,0.3086027,-0.35911784,0.8805605,0.30926934,-0.35979235,0.8799151,0.3103205,-0.36064494,0.879565,0.3103234,-0.36066726,0.87922215,0.31126758,-0.3608712,0.87822276,0.31384203,-0.3616334,0.87758166,0.3147567,-0.3622608,0.876957,0.3157746,-0.360809,0.876705,0.31812763,-0.36074498,0.8765923,0.31851077,-0.3605003,0.8765143,0.3190018,-0.3605559,0.87620074,0.31979957,-0.36071774,0.8760684,0.3199794,-0.36083555,0.87578887,0.32061127,-0.3624094,0.8746598,0.3219157,-0.36123258,0.87472916,0.3230479,-0.36111617,0.87461513,0.32348645,-0.3593058,0.8747523,0.32512742,-0.36036515,0.8741603,0.32554686,-0.36308187,0.87339765,0.32457364,-0.36384794,0.8729803,0.3248386,-0.363928,0.87266,0.32560858,-0.3638151,0.8724314,0.32634646,-0.36351323,0.8722569,0.32714838,-0.36241773,0.8722806,0.32829857,-0.3618023,0.87232107,0.3288694,-0.36134338,0.8729233,0.32777414,-0.36106145,0.8731677,0.3274337,-0.3605736,0.8731527,0.3280108,-0.35960835,0.8733259,0.32860872,-0.35900578,0.87328476,0.32937595,-0.35893375,0.872925,0.33040667,-0.35829002,0.8727761,0.33149675,-0.3564532,0.8730954,0.33263433,-0.35588565,0.8730617,0.3333296,-0.3549974,0.8734351,0.33329874,-0.3525688,0.87429845,0.3336127,-0.3502352,0.87480885,0.3347309,-0.34774783,0.87543774,0.33567876,-0.34715006,0.87571067,0.33558556,-0.34666884,0.876103,0.33505863,-0.34804145,0.87486005,0.33687848,-0.34916243,0.8743808,0.33696264,-0.3520334,0.87272197,0.3382733,-0.35323194,0.87134844,0.34055695,-0.35299003,0.8712113,0.34115827,-0.35296014,0.8710376,0.34163234,-0.35194027,0.8707151,0.3435015,-0.35113597,0.87008274,0.34591842,-0.35109624,0.86988187,0.34646347,-0.350404,0.8699647,0.34695587,-0.34862116,0.87041736,0.34761605,-0.34495264,0.87176675,0.3478943,-0.35068795,0.8693459,0.34821793,-0.35179645,0.8692616,0.34730893,-0.35259455,0.86859643,0.34816274,-0.35370046,0.8677908,0.34904882,-0.35186097,0.86646056,0.35417506,-0.35098225,0.8661707,0.35575244,-0.35034826,0.86628264,0.35610455,-0.34687623,0.86759424,0.3563104,-0.3492193,0.8665554,0.35654962,-0.35001087,0.86615235,0.35675275,-0.35073066,0.86534923,0.3579926,-0.3507959,0.8651433,0.35842624,-0.35044047,0.86516637,0.3587181,-0.35014284,0.8650894,0.359194,-0.34921882,0.8652984,0.35958993,-0.34853023,0.8653684,0.36008918,-0.34927577,0.86495644,0.36035642,-0.34982982,0.864555,0.3607822,-0.34867448,0.86441064,0.36224356,-0.34761775,0.8646779,0.36262107,-0.3470529,0.8647074,0.36309147,-0.34664953,0.8647892,0.36328194,-0.34663635,0.8651843,0.3623526,-0.3469965,0.8659751,0.36011192,-0.34567094,0.8656668,0.36212227,-0.34557414,0.8654743,0.36267442,-0.343782,0.8653975,0.36455604,-0.342585,0.8659495,0.36437201,-0.34115002,0.8665592,0.3642689,-0.33932543,0.86831504,0.36178333,-0.33893245,0.86864036,0.36137053,-0.33854964,0.86891556,0.36106777,-0.338305,0.8694145,0.3600946,-0.33825907,0.8698823,0.35900638,-0.33945054,0.8701235,0.35729313,-0.33996102,0.87038124,0.3561783,-0.34078965,0.87054443,0.35498562,-0.3387779,0.8710083,0.35577247,-0.33780918,0.87052554,0.357869,-0.336943,0.8704182,0.35894513,-0.33666018,0.8705013,0.35900906,-0.3358636,0.8705591,0.35961434,-0.3312894,0.872645,0.3588007,-0.32777917,0.8751616,0.35588333,-0.3237461,0.87767196,0.3533843,-0.32148162,0.8791252,0.35183597,-0.32021147,0.8797932,0.35132393,-0.31940088,0.88032615,0.35072625,-0.3186947,0.8810939,0.3494384,-0.31802157,0.88106734,0.35011807,-0.3162827,0.88177496,0.34991166,-0.31555524,0.88256556,0.34857264,-0.3148681,0.88305837,0.3479453,-0.31495982,0.88343203,0.34691235,-0.31450462,0.8841959,0.3453758,-0.31264687,0.88530487,0.34421974,-0.3119473,0.88578033,0.3436307,-0.31122318,0.8861803,0.34325603,-0.31077683,0.88673717,0.34222066,-0.30982634,0.88710916,0.34211832,-0.30917373,0.8875619,0.34153402,-0.31163234,0.88883054,0.3359547,-0.31114224,0.8887215,0.3366965,-0.30916658,0.8888024,0.33829913,-0.30869293,0.88867587,0.33906332,-0.30730528,0.8885691,0.34060004,-0.3063966,0.8888876,0.34058776,-0.30597013,0.8889141,0.3409017,-0.30327064,0.8901433,0.34010562,-0.30254352,0.89033896,0.3402411,-0.30190495,0.8907882,0.33963192,-0.30223235,0.8922678,0.33543068,-0.30213296,0.8915626,0.33738983,-0.30091515,0.89151704,0.33859628,-0.29980376,0.89155215,0.3394886,-0.2995211,0.8914962,0.3398848,-0.2981427,0.89203954,0.33967102,-0.29686674,0.8926584,0.33916235,-0.2956856,0.89316565,0.33885863,-0.29548404,0.8934441,0.3382999,-0.2951777,0.8937547,0.33774638,-0.29396185,0.89425,0.33749586,-0.29287666,0.89504194,0.33633792,-0.29210374,0.89499557,0.33713248,-0.29106537,0.8951962,0.33749777,-0.29009935,0.89591473,0.3364211,-0.28779116,0.89668155,0.3363607,-0.2874773,0.89696807,0.3358646,-0.2863229,0.89824045,0.33344167,-0.28403777,0.8997996,0.33118457,-0.28492132,0.90003407,0.32978553,-0.28581336,0.89997244,0.32918137,-0.28652668,0.8997181,0.32925636,-0.2867731,0.90014696,0.3278668,-0.28782743,0.90106446,0.3244044,-0.28530532,0.90082335,0.32728913,-0.28508797,0.9005845,0.3281346,-0.28406045,0.9004841,0.32929933,-0.28304937,0.90082663,0.32923302,-0.28247505,0.9013019,0.3284245,-0.28105664,0.901413,0.32933524,-0.27910233,0.9020121,0.32935703,-0.2779787,0.9024344,0.32915044,-0.27756432,0.90285766,0.32833835,-0.27734894,0.90330493,0.3272885,-0.2774392,0.9038825,0.3256131,-0.27637917,0.90501636,0.32335728,-0.27621186,0.90568227,0.32163122,-0.2784327,0.905338,0.32068416,-0.2775462,0.9062159,0.3189684,-0.27738824,0.90656835,0.31810305,-0.27668366,0.9070501,0.31734255,-0.27574807,0.90691155,0.31855053,-0.27428603,0.9071082,0.31925213,-0.27258173,0.90666795,0.32195094,-0.27076846,0.90706265,0.32236892,-0.2698604,0.90734947,0.32232326,-0.26773146,0.90817916,0.3217615,-0.2667767,0.90841943,0.32187623,-0.2658225,0.9088053,0.32157633,-0.26597545,0.90901,0.32087052,-0.26738954,0.9101241,0.31650746,-0.26694515,0.91036725,0.3161831,-0.26576966,0.9103676,0.31717083,-0.262423,0.9105847,0.31932697,-0.26036167,0.91076386,0.3205011,-0.25769252,0.9108592,0.32238188,-0.25438765,0.9114874,0.32322997,-0.2534031,0.91219795,0.32199645,-0.25321427,0.9123941,0.32158896,-0.25280303,0.9134237,0.31897926,-0.2521439,0.91285926,0.32110977,-0.2510925,0.9133505,0.32053608,-0.24768841,0.91498166,0.31852633,-0.24646883,0.91539246,0.31829202,-0.247181,0.91582143,0.31650066,-0.24559578,0.9162614,0.31646147,-0.24461296,0.9159979,0.31798157,-0.24329202,0.9158303,0.31947428,-0.24341434,0.9156934,0.3197734,-0.24562828,0.9149218,0.32028866,-0.24943864,0.9133891,0.32171533,-0.25032347,0.912903,0.32240692,-0.25067568,0.91252595,0.32319987,-0.25134876,0.9122189,0.32354352,-0.25326657,0.9114723,0.32415164,-0.25374708,0.91092575,0.3253103,-0.25300112,0.9106336,0.326706,-0.2521181,0.910906,0.32662937,-0.25129598,0.9108905,0.32730526,-0.25042307,0.9110895,0.3274206,-0.2493488,0.9115481,0.32696375,-0.24859402,0.9120502,0.32613713,-0.24814302,0.91203487,0.32652327,-0.24637091,0.9126305,0.3262008,-0.24645153,0.912414,0.3267451,-0.24647827,0.91199535,0.32789165,-0.24595398,0.91191494,0.3285084,-0.24511044,0.9120848,0.32866725,-0.2448748,0.9120492,0.3289417,-0.2445034,0.9122081,0.32877728,-0.2427086,0.91312516,0.3275591,-0.24232087,0.9133547,0.32720602,-0.24168313,0.91325927,0.3279433,-0.24202213,0.9130484,0.3282802,-0.24284533,0.9123404,0.32963789,-0.24200368,0.9125835,0.32958406,-0.23945305,0.9134504,0.32904488,-0.23747414,0.9139654,0.32904908,-0.23656413,0.9142698,0.32885885,-0.23564385,0.9145361,0.32877904,-0.2346495,0.9158276,0.32588252,-0.23464516,0.9160718,0.32519865,-0.23450698,0.9162709,0.324737,-0.23447919,0.91640633,0.32437465,-0.23389412,0.9161808,0.32543254,-0.2339292,0.91596925,0.32600227,-0.23326409,0.91539246,0.3280923,-0.23250659,0.9154419,0.3284918,-0.23208788,0.91531354,0.3291449,-0.23116808,0.91551626,0.32922834,-0.22720838,0.9166055,0.3289541,-0.22655554,0.91685736,0.32870215,-0.22577947,0.9172224,0.32821748,-0.22488055,0.9177001,0.32749853,-0.22355801,0.9180025,0.32755643,-0.22339915,0.9179281,0.32787308,-0.22272418,0.91813594,0.32775036,-0.2215347,0.9186253,0.32718498,-0.21833958,0.9201108,0.3251522,-0.21472365,0.9216887,0.32308468,-0.21352503,0.922256,0.32225913,-0.2128218,0.9226604,0.32156602,-0.21261261,0.9229027,0.3210086,-0.21233621,0.9230559,0.32075098,-0.21199259,0.9231211,0.32079053,-0.21088237,0.9234965,0.32044166,-0.21019243,0.92378426,0.32006523,-0.20818497,0.92472357,0.3186619,-0.20712002,0.9250722,0.31834376,-0.20620507,0.92521423,0.31852484,-0.2021132,0.9263377,0.31788152,-0.20157132,0.9264154,0.31799927,-0.20069915,0.9266786,0.31778395,-0.1994994,0.9271257,0.31723478,-0.19883096,0.9275964,0.31627712,-0.19868778,0.92809063,0.31491414,-0.19869427,0.9285703,0.3134929,-0.1985226,0.9286484,0.31337026,-0.19812623,0.92864937,0.31361827,-0.19771494,0.92871886,0.3136719,-0.19728968,0.9288566,0.31353185,-0.19707526,0.9290787,0.3130082,-0.19595383,0.9296795,0.31192642,-0.19511917,0.92868,0.31540757,-0.19419816,0.92802143,0.31790453,-0.19321111,0.92770493,0.31942615,-0.19230561,0.9275843,0.32032168,-0.1914893,0.92765945,0.32059297,-0.18977866,0.9279528,0.3207609,-0.1893838,0.9282416,0.3201583,-0.18945886,0.92864746,0.31893462,-0.18928713,0.9288171,0.31854227,-0.18752144,0.9284425,0.32067168,-0.18678863,0.92847914,0.32099292,-0.18318321,0.9292025,0.32097766,-0.18174271,0.9290635,0.3221965,-0.18067308,0.92912465,0.32262143,-0.1794998,0.92933846,0.32266054,-0.17796597,0.92951804,0.3229928,-0.17452978,0.93007517,0.32326394,-0.17293647,0.9302832,0.3235215,-0.17127031,0.930376,0.32414034,-0.16727631,0.93095595,0.3245607,-0.16609757,0.9310673,0.32484657,-0.16420346,0.93140143,0.32485157,-0.16315147,0.931519,0.32504454,-0.16215949,0.9315385,0.32548472,-0.16116597,0.9317048,0.32550216,-0.15944682,0.9322048,0.32491687,-0.15815224,0.93243283,0.32489517,-0.15617591,0.93289,0.3245386,-0.15550044,0.9331292,0.32417506,-0.15520228,0.93329513,0.32384008,-0.15420881,0.93386596,0.32266694,-0.1523569,0.9341521,0.3227184,-0.15083456,0.9346097,0.32210806,-0.15057857,0.93477905,0.3217363,-0.1507126,0.9352004,0.3204464,-0.1503188,0.9352719,0.32042274,-0.14868626,0.93540126,0.32080665,-0.1478071,0.93555754,0.32075718,-0.14558508,0.936103,0.32018152,-0.14449877,0.9363007,0.32009548,-0.14381342,0.9365456,0.31968746,-0.14352804,0.93683684,0.31896153,-0.14343077,0.9370527,0.31837046,-0.14321594,0.93722343,0.3179645,-0.14174221,0.93702656,0.3192027,-0.14120156,0.9370724,0.31930774,-0.14040217,0.93721277,0.31924832,-0.13997857,0.93744767,0.31874427,-0.13992923,0.93777597,0.31779882,-0.13997814,0.9379968,0.31712478,-0.13977657,0.9381562,0.31674194,-0.13836685,0.9381341,0.31742567,-0.13628739,0.9384415,0.3174166,-0.13524032,0.93844914,0.31784156,-0.13496853,0.93852216,0.31774157,-0.13445894,0.93909925,0.316249,-0.13314377,0.9392312,0.31641337,-0.13247819,0.939366,0.31629264,-0.13180758,0.9394192,0.31641477,-0.13061671,0.9396075,0.31634957,-0.12950245,0.9398918,0.3159628,-0.12900558,0.94009537,0.31556028,-0.12859648,0.9403351,0.31501245,-0.12891302,0.9404415,0.3145652,-0.1381244,0.94076955,0.3096358,-0.14115588,0.94144154,0.30620724,-0.1449053,0.94178295,0.30339295,-0.14545207,0.9417466,0.30324423,-0.14898963,0.94115007,0.30337864,-0.15054192,0.94100684,0.3030565,-0.1521649,0.9411299,0.3018615,-0.15392077,0.940888,0.30172536,-0.15498774,0.94053036,0.30229363,-0.15644544,0.9399189,0.30344245,-0.15355864,0.9413599,0.30043527,-0.15169472,0.94158167,0.30068707,-0.15039575,0.9418059,0.30063725,-0.1497465,0.9420377,0.30023482,-0.14974438,0.9422771,0.2994838,-0.14984843,0.94242793,0.29895654,-0.15005901,0.9424912,0.2986514,-0.15041284,0.94249886,0.29844907,-0.15534219,0.9420966,0.29719156,-0.1575454,0.94207054,0.2961123,-0.15966989,0.94250685,0.29357517,-0.16013509,0.942512,0.29330516,-0.16232759,0.9424171,0.29240346,-0.15905912,0.9429182,0.29258406,-0.15828033,0.94306916,0.29252002,-0.15625295,0.9435449,0.29207543,-0.15553048,0.9437953,0.2916517,-0.15484919,0.94412804,0.2909364,-0.1539831,0.9446029,0.28985274,-0.15361719,0.94492155,0.28900698,-0.1540122,0.94508934,0.28824705,-0.15133145,0.94548136,0.28838128,-0.14985965,0.94525,0.2899045,-0.1485592,0.94520515,0.2907187,-0.14674224,0.94523686,0.29153726,-0.14588512,0.9453406,0.29163122,-0.14315772,0.94580394,0.29148024,-0.14211975,0.94604474,0.2912066,-0.14008519,0.9465569,0.29052725,-0.13912147,0.9470161,0.28949216,-0.13854398,0.94759184,0.28788063,-0.13832241,0.94799054,0.28667215,-0.13845688,0.9482138,0.2858676,-0.13948004,0.9483128,0.2850406,-0.14312403,0.9490442,0.28076777,-0.1418945,0.94878423,0.28226665,-0.13949095,0.9488206,0.28334036,-0.1365367,0.9481643,0.2869534,-0.1361135,0.9477445,0.2885369,-0.13542886,0.9474,0.2899867,-0.13348414,0.9457815,0.2961068,-0.1341244,0.94508237,0.29804352,-0.1345056,0.9443251,0.3002639,-0.1346197,0.94350904,0.3027676,-0.1342962,0.9429625,0.30460835,-0.13250406,0.9423555,0.30726007,-0.13182291,0.94230586,0.30770493,-0.13043636,0.9423544,0.30814707,-0.1291658,0.94227564,0.30892202,-0.12837474,0.9426025,0.30825388,-0.12664016,0.94392455,0.30490777,-0.12623917,0.94417524,0.30429727,-0.12594076,0.9444212,0.30365694,-0.12514016,0.94472027,0.303057,-0.12638961,0.9435045,0.30630845,-0.12650804,0.9432917,0.30691445,-0.12675609,0.9430561,0.30753556,-0.12703823,0.94271797,0.30845433,-0.12735397,0.9424222,0.30922693,-0.12559429,0.9424775,0.30977768,-0.12508862,0.9423116,0.31048623,-0.12321146,0.94245815,0.31079185,-0.122305185,0.94279414,0.3101301,-0.12219377,0.94316745,0.30903706,-0.121169925,0.944403,0.3056483,-0.121118665,0.94469905,0.30475232,-0.120713905,0.94503945,0.3038561,-0.119759515,0.9460423,0.3011007,-0.11896978,0.94668275,0.29939598,-0.11830602,0.94741964,0.2973209,-0.11772416,0.9482035,0.2950443,-0.118615575,0.948369,0.29415384,-0.12003103,0.9480605,0.29457402,-0.12037727,0.94804615,0.29447895,-0.12082316,0.9479482,0.2946116,-0.121443726,0.9476207,0.29540887,-0.12259055,0.9469227,0.29716817,-0.12206041,0.9476762,0.29497635,-0.121642955,0.9480835,0.29383782,-0.12144094,0.9483261,0.2931377,-0.12109061,0.9484615,0.29284456,-0.12005409,0.9486805,0.29256162,-0.117760845,0.9493642,0.29127318,-0.11714181,0.94967,0.2905248,-0.11862851,0.9497199,0.28975737,-0.11906186,0.9498074,0.28929248,-0.11878737,0.9505906,0.28682232,-0.11902209,0.9506689,0.28646535,-0.12027873,0.9508981,0.28517684,-0.1205267,0.9510533,0.28455377,-0.12165351,0.9514924,0.2825996,-0.12272207,0.9518076,0.28107208,-0.12334579,0.9521333,0.27969268,-0.12475745,0.95272154,0.27705088,-0.12534887,0.9529171,0.27610984,-0.12559831,0.95329726,0.27468047,-0.12593208,0.95338756,0.27421385,-0.1282635,0.9532919,0.27346492,-0.12649392,0.9535769,0.27329537,-0.1256142,0.95375025,0.27309626,-0.1248436,0.95414907,0.27205455,-0.12342003,0.955632,0.2674603,-0.123358436,0.95574033,0.26710123,-0.12338735,0.9558008,0.26687163,-0.12427222,0.9557376,0.26668715,-0.12577738,0.9554988,0.2668371,-0.12656784,0.95533127,0.26706326,-0.12819968,0.95526475,0.26652223,-0.13066521,0.9548745,0.2667232,-0.13061626,0.9552554,0.2653799,-0.1300471,0.95524734,0.26568836,-0.12864304,0.95552,0.26539135,-0.12528394,0.9559167,0.26556957,-0.12448992,0.956204,0.26490784,-0.12158594,0.95649666,0.26520002,-0.12200641,0.9559044,0.26713502,-0.122738406,0.95469487,0.2710959,-0.122647665,0.95371026,0.27458018,-0.12193533,0.953467,0.27573985,-0.12146259,0.95315146,0.27703622,-0.119636394,0.9528023,0.27902493,-0.11784985,0.9522569,0.28163475,-0.117240794,0.95190376,0.28307912,-0.11647165,0.9516991,0.28408304,-0.115570635,0.9522374,0.28264344,-0.114987835,0.9528988,0.2806452,-0.11364058,0.9531865,0.28021643,-0.11183402,0.95442516,0.27670524,-0.11138164,0.9548687,0.2753542,-0.11020677,0.9558877,0.27227417,-0.11066315,0.95612615,0.27124974,-0.11300005,0.9567323,0.26813117,-0.11310084,0.957176,0.26650003,-0.11411058,0.9572855,0.2656751,-0.11465351,0.957617,0.2642428,-0.11543522,0.95790666,0.26284888,-0.115751155,0.95831406,0.26121995,-0.11673982,0.9583693,0.26057646,-0.11870888,0.9584369,0.2594357,-0.12101973,0.958305,0.25885463,-0.12221986,0.9581327,0.25892866,-0.12342828,0.9577009,0.2599508,-0.12684253,0.95731336,0.25973475,-0.12766837,0.9572852,0.2594335,-0.12887427,0.9571755,0.25924212,-0.13070063,0.95692056,0.25926903,-0.1320112,0.95700115,0.25830573,-0.13258636,0.9569779,0.25809714,-0.13165604,0.957213,0.25770128,-0.13085221,0.95715284,0.25833344,-0.13021144,0.957175,0.25857484,-0.12973541,0.9572798,0.2584262,-0.12878853,0.9575662,0.2578381,-0.128838,0.95771956,0.25724304,-0.13064906,0.95819366,0.25455004,-0.13062166,0.9585033,0.25339583,-0.12975155,0.9582205,0.25490788,-0.12904699,0.95806384,0.25585255,-0.12770467,0.95788735,0.25718343,-0.12703186,0.95761675,0.25852087,-0.12659632,0.9575866,0.25884613,-0.124960445,0.95771027,0.25918326,-0.124512255,0.95778644,0.25911734,-0.12024691,0.9587493,0.2575665,-0.11901238,0.9588756,0.25766963,-0.11875344,0.9590173,0.2572616,-0.11905541,0.9592162,0.2563788,-0.11957555,0.959999,0.25318682,-0.119834416,0.9602635,0.25205904,-0.11885838,0.9599701,0.25363362,-0.11852809,0.9595737,0.25528312,-0.11823219,0.9594022,0.25606355,-0.11786395,0.9593248,0.2565229,-0.11734228,0.95934236,0.25669646,-0.1166689,0.95945436,0.25658464,-0.115866914,0.95967007,0.25614113,-0.114420876,0.9601204,0.25510135,-0.11414361,0.95903313,0.259281,-0.112711936,0.95831114,0.26255634,-0.11192109,0.95805407,0.2638296,-0.10945374,0.95766807,0.26625514,-0.10869733,0.9576712,0.26655334,-0.10669371,0.9581134,0.26577276,-0.10355228,0.9586045,0.26524383,-0.100313604,0.95863897,0.2663616,-0.099550985,0.95878434,0.26612428,-0.09833205,0.9595749,0.2637174,-0.09685079,0.96038944,0.26128918,-0.096817724,0.96052825,0.26079074,-0.09923287,0.96097857,0.25821114,-0.10034675,0.96108085,0.2573988,-0.103754684,0.9618607,0.2530986,-0.103185594,0.962054,0.25259626,-0.10282321,0.96224517,0.25201523,-0.10266584,0.96243393,0.25135756,-0.10269722,0.9625613,0.25085646,-0.10275911,0.9627037,0.25028402,-0.101952784,0.9628341,0.25011215,-0.10068299,0.9631158,0.24954136,-0.10014558,0.96334636,0.24886681,-0.09960918,0.96394455,0.24675688,-0.100274816,0.9629618,0.250299,-0.10152128,0.96242815,0.25184417,-0.10037276,0.96204424,0.2537641,-0.09868992,0.9617933,0.2553701,-0.09640684,0.96191967,0.25576594,-0.09412728,0.96224004,0.2554099,-0.093787976,0.96261054,0.25413537,-0.09286394,0.962608,0.25448412,-0.09121653,0.96249294,0.25551304,-0.09035112,0.9625475,0.25561503,-0.08983447,0.96261626,0.25553802,-0.08946622,0.9627238,0.25526202,-0.08907426,0.9628928,0.2547612,-0.0886223,0.96316344,0.25389415,-0.08810992,0.9635347,0.2526608,-0.08801126,0.9638465,0.25150347,-0.08832178,0.9640997,0.2504218,-0.08867133,0.96420914,0.24987616,-0.08851713,0.9652527,0.24586973,-0.08860019,0.9658137,0.24362662,-0.089318134,0.96601266,0.24257329,-0.09043531,0.9658137,0.2429514,-0.09170308,0.9652126,0.24485746,-0.09272225,0.9646873,0.24653812,-0.09491028,0.96441853,0.2467568,-0.09450012,0.9645106,0.2465542,-0.09387913,0.96471936,0.24597411,-0.093049526,0.9650437,0.245015,-0.09249553,0.9654351,0.24367945,-0.0922109,0.9658923,0.24196948,-0.09212613,0.9661667,0.2409039,-0.09224347,0.9662609,0.24048069,-0.09251051,0.9662835,0.24028723,-0.09292814,0.9662348,0.24032204,-0.09469318,0.9659148,0.2409187,-0.097165905,0.9664645,0.23770797,-0.09612287,0.9661056,0.23958382,-0.09533896,0.9660316,0.24019448,-0.09407791,0.9662179,0.23994233,-0.09297606,0.9665258,0.2391304,-0.09224332,0.96659595,0.23913059,-0.091410905,0.9666311,0.23930804,-0.08872131,0.9673309,0.23748593,-0.08689379,0.9668436,0.24013095,-0.0867659,0.9666335,0.24102153,-0.0862976,0.96659726,0.24133475,-0.08549188,0.9667352,0.241069,-0.084790945,0.96695626,0.24042895,-0.08419545,0.9672597,0.23941542,-0.083664484,0.9676494,0.23802288,-0.08319573,0.9681233,0.23625353,-0.082920015,0.9684393,0.23505229,-0.08268124,0.9687772,0.23374034,-0.082450494,0.9689709,0.23301792,-0.08216156,0.9692632,0.23190154,-0.08218017,0.96942383,0.23122264,-0.08256433,0.9698608,0.22924481,-0.082593575,0.9702817,0.22744611,-0.0815035,0.970803,0.2256074,-0.08187725,0.9712137,0.22369637,-0.082484156,0.9712693,0.22323151,-0.08310045,0.9712634,0.22302853,-0.08418789,0.9714463,0.2218209,-0.08441632,0.97156566,0.22121044,-0.0857867,0.97141653,0.22133802,-0.0871612,0.97196317,0.21838151,-0.086521864,0.9726685,0.21547608,-0.08690401,0.97272766,0.21505488,-0.085646674,0.9733519,0.21272218,-0.085305996,0.9731387,0.21383175,-0.08481761,0.9731302,0.21406439,-0.08142506,0.9737487,0.21256393,-0.0810896,0.9739245,0.21188548,-0.07693385,0.97403294,0.21293442,-0.07591147,0.97382176,0.21426292,-0.07472873,0.9737245,0.21511924,-0.0741961,0.97363377,0.21571341,-0.073921144,0.9735172,0.21633305,-0.0735405,0.9734501,0.21676409,-0.07305547,0.97343236,0.21700776,-0.07261347,0.97349185,0.21688916,-0.0717417,0.9738177,0.2157132,-0.071193375,0.97405976,0.21480022,-0.07057846,0.97441757,0.21337539,-0.0698952,0.97488904,0.21143785,-0.069625944,0.9752084,0.21004952,-0.06976823,0.9753784,0.20921122,-0.07016263,0.97546947,0.20865402,-0.071332164,0.9754595,0.20830365,-0.07342575,0.9753269,0.2081973,-0.073734686,0.97551316,0.20721298,-0.07431467,0.9756586,0.20631927,-0.07289302,0.9769203,0.20078182,-0.07192501,0.9765671,0.20283851,-0.07175958,0.976544,0.20300834,-0.07104239,0.976617,0.20290954,-0.070842154,0.976752,0.2023288,-0.07086185,0.97696507,0.20129047,-0.07096995,0.97711575,0.20051938,-0.07151134,0.9772938,0.19945666,-0.07224051,0.9774285,0.1985318,-0.07301338,0.97764385,0.19718401,-0.073706724,0.9777523,0.19638671,-0.074578956,0.9778266,0.19568619,-0.07589555,0.9775897,0.19636248,-0.07630486,0.978118,0.19355297,-0.075394556,0.9784138,0.19241127,-0.074485004,0.97877437,0.19092587,-0.072822265,0.9795044,0.18779781,-0.07096641,0.9801157,0.18530226,-0.07068994,0.980257,0.18465953,-0.06751911,0.9810527,0.1815951,-0.06688921,0.9810578,0.18180051,-0.06634753,0.98109657,0.18178976,-0.0659502,0.9811837,0.18146369,-0.06542642,0.9813294,0.18086463,-0.06497076,0.98149085,0.1801515,-0.06458295,0.98166746,0.17932656,-0.06401698,0.9818431,0.17856613,-0.062250998,0.98203456,0.17813753,-0.061504103,0.98213106,0.1778647,-0.061101336,0.9822164,0.17753176,-0.060851697,0.9823244,0.17701916,-0.060752995,0.98245513,0.17632625,-0.06072613,0.9825786,0.17564636,-0.06077038,0.982695,0.17497869,-0.06089488,0.9827473,0.17464101,-0.06001117,0.98346835,0.17084675,-0.05945366,0.9836816,0.16981104,-0.059143938,0.9838324,0.16904373,-0.059058357,0.9839915,0.16814516,-0.059079114,0.98404175,0.16784367,-0.059420273,0.98405737,0.16763148,-0.060411595,0.98402977,0.16743915,-0.055229302,0.985549,0.16013415,-0.054511473,0.9854289,0.16111591,-0.052947044,0.9853248,0.16227028,-0.05193951,0.9853366,0.16252416,-0.05077434,0.9854102,0.16244599,-0.050288647,0.98541874,0.1625451,-0.04984547,0.98537874,0.16292395,-0.04939925,0.9854027,0.16291496,-0.048056494,0.98556185,0.16235283,-0.046775203,0.9857898,0.16133998,-0.04580221,0.9859818,0.1604432,-0.04566154,0.98607635,0.15990138,-0.045651037,0.98671377,0.15592296,-0.044814024,0.98669076,0.15631072,-0.043531686,0.98671544,0.15651739,-0.04225833,0.9869161,0.15559833,-0.040199134,0.9870336,0.15539864,-0.039948046,0.9870694,0.15523581,-0.039191343,0.98722655,0.15442716,-0.038998924,0.9873321,0.15379977,-0.039031252,0.9874503,0.15303089,-0.039257195,0.9876153,0.15190417,-0.038308714,0.98772633,0.15142386,-0.037249733,0.9877391,0.15160465,-0.036236543,0.9877921,0.15150474,-0.035182074,0.9879269,0.15087314,-0.0328901,0.98831505,0.14883418,-0.032012325,0.98851824,0.14767165,-0.029803373,0.988819,0.14611219,-0.029440816,0.98890424,0.14560795,-0.029346494,0.9889658,0.14520834,-0.029604606,0.9890227,0.14476787,-0.030055588,0.98921496,0.14335404,-0.030674076,0.9893972,0.14195873,-0.03114809,0.9894817,0.1412649,-0.032286804,0.98957664,0.14034106,-0.033835605,0.98974895,0.13875195,-0.03503032,0.9898107,0.13801306,-0.037362985,0.9898304,0.13725832,-0.037827384,0.98986804,0.13685893,-0.038093448,0.9898597,0.13684548,-0.039308365,0.9897401,0.13736595,-0.0397148,0.9897179,0.13740878,-0.040174656,0.9896613,0.13768274,-0.04051728,0.9895989,0.13803065,-0.04169529,0.98933905,0.13953389,-0.042839266,0.9891288,0.14067341,-0.043857366,0.9888889,0.1420397,-0.044868626,0.9887504,0.14268662,-0.045357123,0.9888298,0.14198017,-0.045913827,0.9888635,0.14156558,-0.046142675,0.98893017,0.14102472,-0.046805516,0.9890106,0.14024036,-0.048425883,0.98904735,0.13942853,-0.047873788,0.98937416,0.13728377,-0.04884428,0.9893738,0.13694425,-0.050211657,0.9891813,0.1378377,-0.05353141,0.98852557,0.14125015,-0.05501728,0.9882982,0.14226682,-0.056082346,0.98817,0.14274028,-0.05810437,0.987825,0.14431095,-0.058696594,0.9877435,0.144629,-0.06126953,0.9874487,0.14557175,-0.061780374,0.9873359,0.14611982,-0.05940045,0.9879542,0.1428919,-0.05874971,0.9880599,0.14242965,-0.056670845,0.9884514,0.14054243,-0.0556781,0.9886209,0.13974507,-0.054577157,0.98885405,0.13852449,-0.0528912,0.9892758,0.13614653,-0.052107364,0.98951364,0.13471319,-0.051463004,0.98975116,0.13320723,-0.05095428,0.9899488,0.1319279,-0.050580375,0.99010766,0.13087584,-0.05035541,0.9902288,0.13004352,-0.050208706,0.9904342,0.1285268,-0.050701376,0.9904493,0.12821697,-0.053049754,0.99039644,0.12767379,-0.0540397,0.990342,0.1276806,-0.05453094,0.9902967,0.12782307,-0.054852847,0.9902424,0.12810579,-0.055294774,0.99013954,0.12870963,-0.055857193,0.9899875,0.12963325,-0.059381824,0.98952824,0.1315586,-0.05875382,0.98998135,0.12839364,-0.059136324,0.9902708,0.12596297,-0.062918544,0.9903803,0.123240165,-0.06459883,0.9903864,0.122318104,-0.06733556,0.9902581,0.12188043,-0.069136605,0.99012166,0.12198064,-0.067324534,0.99065566,0.11861192,-0.054293126,0.9909529,0.12273791,-0.05243884,0.9910409,0.1228338,-0.050654877,0.99118024,0.12245756,-0.049124308,0.9913599,0.12162393,-0.0477792,0.9915532,0.1205795,-0.047276113,0.99166083,0.119890645,-0.047158662,0.9917478,0.11921543,-0.047076683,0.9918556,0.11834781,-0.047328025,0.9919308,0.11761543,-0.048085194,0.99209094,0.11594538,-0.049585525,0.9921795,0.11454736,-0.050233506,0.9921565,0.11446427,-0.05037352,0.9921993,0.11403119,-0.050219186,0.9922998,0.113221824,-0.050664727,0.99231684,0.11287303,-0.05107053,0.99258554,0.11029832,-0.050567817,0.9928818,0.10783611,-0.052956976,0.99274987,0.10790397,-0.05480294,0.99268836,0.1075473,-0.056100085,0.99270946,0.106680565,-0.05697764,0.9926811,0.10647934,-0.05854725,0.99276155,0.104865395,-0.059911422,0.9927793,0.10392214,-0.06082324,0.99274415,0.103728615,-0.06378046,0.9925284,0.104016766,-0.0637843,0.99272656,0.10210526,-0.06293253,0.9927341,0.102559954,-0.05973651,0.99287724,0.103084095,-0.054863743,0.99295026,0.10507025,-0.052080456,0.9930096,0.10592211,-0.051458213,0.99304277,0.10591542,-0.051063955,0.993091,0.10565407,-0.05112734,0.9931496,0.10507124,-0.05242391,0.99332637,0.10273508,-0.053323217,0.9933936,0.101615824,-0.054319795,0.9934472,0.100558616,-0.054526016,0.9934426,0.100492224,-0.062746264,0.99363095,0.09359719,-0.073043905,0.9929347,0.093516245,-0.077819936,0.99293417,0.08958665,-0.08761856,0.9923008,0.087533176,-0.092653126,0.9911419,0.09514808,-0.09884468,0.99001586,0.100490645,-0.11051042,0.99036103,0.08350097,-0.11649931,0.9894674,0.08591967,-0.12373276,0.9890987,0.07983691,-0.12366776,0.9893289,0.07703651,-0.1546652,0.9852199,0.07362369,-0.19896281,0.9777825,0.06599372,-0.19651036,0.97693706,0.083532505,-0.19789481,0.97635406,0.08700798,-0.21148892,0.97424835,0.07818296,-0.22166994,0.9705064,0.094761096,-0.21066557,0.97138536,0.109683365,-0.21073085,0.9690864,0.1283124,-0.2160935,0.9671745,0.1337054,-0.21637318,0.96703464,0.13426328,-0.22728227,0.9621332,0.15047385,-0.22905527,0.96108764,0.15441567,-0.23141147,0.9600973,0.15704115,-0.2354141,0.9586237,0.160065,-0.24209794,0.95502245,0.17123283,-0.24831502,0.95279634,0.17469613,-0.25465435,0.9491943,0.18488197,-0.24548966,0.9527612,0.17883219,-0.24981663,0.9500125,0.18726419,-0.25145188,0.9494811,0.18777001,-0.24752991,0.94925785,0.1940065,-0.2543525,0.94783986,0.19210508,-0.25413346,0.94625556,0.20004155,-0.26584828,0.940002,0.21382436,-0.26546317,0.9400349,0.21415807,-0.2655212,0.93864506,0.22009996,-0.26591003,0.93847036,0.22037525,-0.27437243,0.93443716,0.2270397,-0.2910855,0.928116,0.23209894,-0.30528635,0.9253112,0.22494322,-0.29337436,0.925762,0.2385293,-0.2983237,0.9248542,0.23589754,-0.31139666,0.91988367,0.23842444,-0.3186999,0.9179082,0.23637868,-0.31281993,0.91767067,0.24499857,-0.33380035,0.90409416,0.26681647,-0.3317169,0.9047211,0.26728952,-0.32566407,0.9077535,0.2644361,-0.35412994,0.8876392,0.29442927,-0.35424083,0.88376004,0.30574772,-0.35901222,0.8803585,0.30996633,-0.3590058,0.8746007,0.32586572,-0.3573957,0.8730185,0.33182383,-0.3515602,0.8705176,0.34439,-0.34959662,0.8696346,0.34859404,-0.3467794,0.8662477,0.3596651,-0.32062763,0.8806219,0.3488595,-0.31990013,0.88093466,0.3487378,-0.3107308,0.8878008,0.33949384,-0.30234697,0.89250207,0.33470345,-0.285712,0.9009365,0.32662222,-0.27757138,0.9054064,0.32123733,-0.25321665,0.91361403,0.31810486,-0.24885605,0.9145444,0.3188717,-0.23418006,0.91665184,0.32389683,-0.2242329,0.9179636,0.32720384,-0.18538702,0.92895126,0.32043913,-0.16017327,0.93201774,0.32509604,-0.1401251,0.93811107,0.31672168,-0.13487509,0.93899196,0.31639028,-0.1338494,0.9403748,0.3126973,-0.16201593,0.9423336,0.29284513,-0.13448174,0.94713235,0.29129875,-0.12710892,0.9531396,0.27453265,-0.13137819,0.95473164,0.26688436,-0.11173968,0.9562337,0.27042812,-0.13379389,0.95665014,0.25868842,-0.12191786,0.958477,0.2577941,-0.104733095,0.9584804,0.26522866,-0.09918649,0.96355,0.24846216,-0.08716281,0.96706676,0.23913284,-0.08283784,0.96859986,0.23441875,-0.083547786,0.9712999,0.22270219,-0.08790956,0.9727818,0.21440029,-0.08626378,0.9735553,0.21153857,-0.07562465,0.97579634,0.20518883,-0.07729284,0.97777396,0.19489472,-0.07102696,0.9804176,0.18367487,-0.05564442,0.9855904,0.15973508,-0.046757925,0.98624015,0.15856892,-0.047351718,0.9889963,0.14015731,-0.054080576,0.9884314,0.14169912,-0.062180202,0.9872277,0.14668058,-0.05136062,0.9922831,0.11285552,-0.0681736,0.99350417,0.09111464,-0.07074529,0.993397,0.09031861,-0.08504646,0.99185073,0.094864205,-0.09154665,0.99138033,0.09372438,-0.12546426,0.98871124,0.081907555,-0.13589792,0.9880023,0.073370665,-0.14111635,0.9873849,0.071813464,-0.15791763,0.9850501,0.06883599,-0.17256297,0.98201877,0.07655826,-0.19993058,0.9766792,0.07826528,-0.20145053,0.97552574,0.08813181,-0.21783325,0.97121596,0.09637566,-0.21710724,0.9712936,0.097227134,-0.21350448,0.97156566,0.10235237,-0.2131703,0.9716173,0.102558605,-0.21077983,0.97176385,0.10605128,-0.21281432,0.96817684,0.13169526,-0.21873125,0.965679,0.14007391,-0.21950002,0.96520036,0.14215487,-0.23504964,0.9588427,0.15928696,-0.23775397,0.9573343,0.16426861,-0.24920242,0.95294964,0.17258358,-0.2530087,0.94952416,0.1854467,-0.24754532,0.95177704,0.18122308,-0.24403939,0.95299333,0.17957874,-0.2488553,0.95070934,0.18499401,-0.24690315,0.94933176,0.1944429,-0.25384167,0.9453578,0.20460449,-0.25582427,0.94467837,0.2052723,-0.26445326,0.9441525,0.19657205,-0.2692436,0.94108236,0.20462608,-0.2631707,0.93992734,0.21743469,-0.26293617,0.93977886,0.21835814,-0.28687334,0.9306401,0.2271844,-0.28786433,0.92929727,0.2313887,-0.29848766,0.9279465,0.22320485,-0.2951364,0.925782,0.23626721,-0.2951488,0.924272,0.2420919,-0.30542335,0.924446,0.22828984,-0.3092286,0.9186674,0.24582095,-0.3232593,0.91142786,0.25456384,-0.33416313,0.9011742,0.2760799,-0.34852353,0.89082223,0.29149115,-0.36010844,0.87901586,0.3124948,-0.34614617,0.87635344,0.334944,-0.34700397,0.8754151,0.33650658,-0.34850144,0.86998785,0.34880927,-0.34929565,0.86685765,0.3557392,-0.34585586,0.8681502,0.35594806,-0.30283687,0.8914201,0.33713493,-0.24748342,0.91626203,0.31498554,-0.24201852,0.9136002,0.32674417,-0.19707154,0.9293841,0.31210253,-0.18468273,0.9291231,0.3203475,-0.18404458,0.9292072,0.32047087,-0.15459199,0.93371135,0.32293096,-0.13637812,0.9405214,0.3111599,-0.15443504,0.9412097,0.30045652,-0.16263974,0.94232047,0.2925414,-0.15227422,0.94552827,0.28773052,-0.13716653,0.94848984,0.2855738,-0.12881038,0.95315355,0.27369,-0.13330136,0.95484287,0.26552942,-0.13258703,0.9572007,0.25726932,-0.11935781,0.96036,0.25191748,-0.10338288,0.96112204,0.2560399,-0.104141206,0.9616981,0.2535574,-0.0875703,0.967303,0.23802604,-0.08710644,0.97152305,0.22035295,-0.07310023,0.97523576,0.20873809,-0.07348632,0.9770078,0.20013882,-0.07357478,0.9791981,0.18909752,-0.06836561,0.9809684,0.18173374,-0.060595784,0.9832179,0.1720776,-0.0470633,0.98631793,0.15799364,-0.039071713,0.9876695,0.15159917,-0.099434786,0.98989767,0.1010711,-0.10080464,0.98974705,0.10118903,-0.111555934,0.99018806,0.084159605,-0.124344535,0.98891234,0.08118397,-0.12895164,0.9890991,0.07109483,-0.16393243,0.98353684,0.07603599,-0.21453358,0.9729199,0.08603665,-0.22041164,0.9709335,0.09331056,-0.21718782,0.97130764,0.096907,-0.21124332,0.971712,0.105603606,-0.21903747,0.9654442,0.14120942,-0.22183985,0.96375537,0.14819801,-0.2344563,0.9586237,0.16146469,-0.24733716,0.9515839,0.18251672,-0.24815221,0.95105517,0.18415892,-0.2502257,0.94983673,0.18760945,-0.2692728,0.94148177,0.20274188,-0.2735777,0.9346433,0.22714986,-0.29152346,0.9279408,0.23224986,-0.2935848,0.9275543,0.2311946,-0.29342476,0.92591435,0.23787495,-0.31148607,0.9195467,0.23960435,-0.3143664,0.917111,0.24511461,-0.32777393,0.9044838,0.27289793,-0.33047035,0.90218866,0.27720925,-0.35364884,0.8838685,0.30611926,-0.34587067,0.87614816,0.33576465,-0.33978316,0.87116736,0.35442176,-0.31153965,0.88811636,0.33792362,-0.3026232,0.89265496,0.3340454,-0.2536571,0.9129886,0.31954637,-0.20763563,0.92493266,0.31841338,-0.19653347,0.930016,0.3105558,-0.14352131,0.937194,0.3179136,-0.13337715,0.9463473,0.29434228,-0.1234346,0.9563715,0.2647971,-0.13364607,0.95711654,0.25703436,-0.122834414,0.95827603,0.258106,-0.103916846,0.96121585,0.2554709,-0.102918,0.96262735,0.25051242,-0.09944926,0.9639363,0.2468533,-0.094352216,0.9642618,0.24758215,-0.09500612,0.96434593,0.24700348,-0.08670439,0.97140014,0.22105218,-0.08815336,0.9728252,0.2141029,-0.086816385,0.9735538,0.21131952,-0.07242515,0.9752759,0.20878588,-0.078358896,0.9773813,0.19643244,-0.0642652,0.9817846,0.17879887,-0.061206587,0.98292935,0.17350388,-0.04723098,0.9864962,0.15682627,-0.04412873,0.98883563,0.1423263,-0.06292046,0.98707527,0.14738859,-0.06180096,0.98748744,0.14508352,-0.06448838,0.992499,0.10386023,-0.08390132,0.99190545,0.09531055,-0.11299014,0.9899522,0.08501683,-0.116774276,0.9894077,0.086232975,-0.1357322,0.98800516,0.07363803,-0.16652353,0.98305494,0.076635264,-0.19806087,0.97756815,0.07164053,-0.196048,0.97699577,0.08393097,-0.23676172,0.9576332,0.1639589,-0.24376458,0.9544572,0.17201829,-0.2477991,0.9529587,0.1745432,-0.24701916,0.9492704,0.19459498,-0.25329876,0.9454406,0.20489474,-0.2592262,0.9421603,0.21245176,-0.2861427,0.93071896,0.2277818,-0.2880041,0.9297347,0.22944927,-0.32275775,0.91157186,0.25468442,-0.33259964,0.90451545,0.26688817,-0.354757,0.88517725,0.3010128,-0.35399032,0.87381405,0.33337638,-0.34696248,0.87063,0.34874117,-0.34098175,0.8709342,0.3538433,-0.34058264,0.87117404,0.35363713,-0.31219563,0.8884307,0.33648887,-0.3122429,0.888779,0.33552393,-0.19689009,0.92969674,0.3112848,-0.15538055,0.94098204,0.30068204,-0.15470216,0.9452302,0.28741458,-0.1543075,0.9455593,0.28654268,-0.119829595,0.9605446,0.25098795,-0.10434473,0.96156627,0.2539735,-0.08831602,0.9728771,0.21379997,-0.07920202,0.97405815,0.2119852,-0.07462161,0.97690266,0.20023194,-0.06110108,0.9827358,0.17463377,-0.056288596,0.98557884,0.1595805,-0.10062177,0.98972595,0.1015764,-0.12552264,0.9886665,0.08235684,-0.15445392,0.9852346,0.073869586,-0.16821408,0.9827429,0.07694386,-0.18018058,0.9811809,0.06941883,-0.21424781,0.9729803,0.08606514,-0.21160047,0.96863526,0.13027269,-0.2270304,0.9621286,0.15088327,-0.23048204,0.9604564,0.15620998,-0.23584586,0.9579583,0.1633788,-0.25035846,0.94922054,0.19052821,-0.28035173,0.9322686,0.22864412,-0.2954214,0.92406595,0.24254552,-0.31102946,0.91969234,0.23963854,-0.320595,0.91197085,0.25598443,-0.3449656,0.871687,0.3480812,-0.30311435,0.8919297,0.335534,-0.15730453,0.9404334,0.30139735,-0.15489589,0.9454783,0.28649262,-0.13379811,0.9467815,0.29275042,-0.12872493,0.9529104,0.27457535,-0.12227409,0.9565297,0.26476404,-0.13421126,0.9570086,0.2571418,-0.095441714,0.9657991,0.24108708,-0.08693091,0.97143275,0.22081997,-0.08855725,0.97310156,0.21267566,-0.0775976,0.974085,0.21245489,-0.07572192,0.9767434,0.20059541,-0.070902824,0.980473,0.18342727,-0.061435718,0.9827707,0.17432007,-0.06265321,0.9872681,0.14620635,-0.06798139,0.99058425,0.11883321,-0.10697021,0.990068,0.091228686,-0.12500517,0.98874146,0.0822438,-0.13097191,0.98874617,0.07230039,-0.2197799,0.9711127,0.0929349,-0.2270316,0.962044,0.15141992,-0.23500419,0.9583094,0.16253032,-0.24281625,0.9547618,0.17166887,-0.24748385,0.95308185,0.174318,-0.28411576,0.93104583,0.22898002,-0.29286924,0.9275416,0.2321513,-0.3067505,0.9194184,0.24611768,-0.3194061,0.91201735,0.25730157,-0.32578033,0.90778565,0.26418242,-0.35309935,0.8838326,0.30685636,-0.34558466,0.87646055,0.33524337,-0.34734353,0.8678069,0.3553359,-0.3458473,0.86840254,0.35534012,-0.30303985,0.89220244,0.33487564,-0.17542465,0.93195415,0.31731322,-0.15839458,0.93986094,0.30260956,-0.14139062,0.94828767,0.28418165,-0.13238801,0.9546195,0.2667864,-0.1199358,0.9604922,0.2511377,-0.10427123,0.9614053,0.25461218,-0.09589853,0.96576506,0.24104214,-0.075984366,0.9760966,0.20362186,-0.06078329,0.98405886,0.16713321,-0.063066214,0.98710626,0.14711852,-0.06479205,0.9925109,0.103557326,-0.07530651,0.9925432,0.09584801,-0.10000387,0.98980844,0.10138307,-0.10740848,0.99001825,0.091254056,-0.1253957,0.9886593,0.0826357,-0.19593845,0.9769756,0.08442007,-0.21079558,0.9689686,0.12909366,-0.23955724,0.9561354,0.1685748,-0.26067165,0.94185174,0.21205094,-0.28359997,0.9311779,0.22908226,-0.31099996,0.91980475,0.23924516,-0.21508057,0.923474,0.31770447,-0.17359859,0.93263227,0.31632358,-0.14274925,0.94832796,0.2833667,-0.13274528,0.9546447,0.2665188,-0.0962281,0.9657969,0.2407832,-0.077674694,0.9770365,0.1984095,-0.056442197,0.9898438,0.13047415,-0.06887731,0.9904008,0.11984228,-0.08340669,0.99200493,0.09470747,-0.13278234,0.988445,0.07311224,-0.13537088,0.9880504,0.07369634,-0.17219742,0.9820654,0.07678296,-0.23995446,0.95588315,0.16943805,-0.25955942,0.94203913,0.21258217,-0.28230134,0.93158126,0.2290464,-0.3061015,0.919695,0.2458921,-0.3192834,0.9119467,0.2577038,-0.34197253,0.8931967,0.29198366,-0.2467793,0.9163518,0.3152767,-0.15737714,0.9396424,0.30381656,-0.14433481,0.9485044,0.2819696,-0.06092101,0.98411447,0.16675538,-0.056621335,0.9855306,0.15976043,-0.057049997,0.989709,0.13123018,-0.0695712,0.9901596,0.121424176,-0.13438709,0.98819757,0.07352299,-0.15443562,0.98520994,0.07423589,-0.1713594,0.9822012,0.07692018,-0.21935733,0.9711881,0.0931452,-0.2870622,0.9298815,0.230034,-0.3416326,0.8934326,0.29165968,-0.29434085,0.8981083,0.32674906,-0.17666163,0.9349152,0.30777302,-0.14408119,0.9488881,0.28080595,-0.13800547,0.94872123,0.28439853,-0.07865378,0.9768644,0.19887064,-0.060948636,0.984206,0.16620405,-0.058166105,0.98524326,0.16097349,-0.057587422,0.98963094,0.1315837,-0.07505034,0.992575,0.09572012,-0.15461048,0.9851456,0.07472406,-0.29226732,0.9276874,0.23232706,-0.30622387,0.91975963,0.24549788,-0.34134427,0.8933208,0.2923389,-0.17716907,0.93502855,0.30713624,-0.13409,0.9566492,0.25853863,-0.06074946,0.9843742,0.16527821,-0.059040036,0.9850454,0.16186386,-0.16939718,0.98253644,0.07698543,-0.33866012,0.8899173,0.30554292,-0.22129701,0.92333007,0.31383,-0.17928582,0.9363119,0.30195466,-0.13424094,0.9567573,0.25805965,-0.088047974,0.97329617,0.21199562,-0.060323056,0.9846182,0.16397612,-0.1280619,0.98754036,0.09145569,-0.26289493,0.93985456,0.21808177,-0.28668234,0.9299044,0.23041485,-0.31182593,0.91436595,0.2582624,-0.33780926,0.8906976,0.30420834,-0.3106675,0.8922674,0.3276349,-0.22164412,0.923287,0.31371164,-0.17524253,0.9379804,0.2991368,-0.14352927,0.94902223,0.2806353,-0.096530005,0.96594346,0.24007332,-0.08841358,0.9731961,0.21230258,-0.05975208,0.98484176,0.16283849,-0.12813108,0.9875227,0.09154923,-0.17524923,0.9812598,0.080105245,-0.19718891,0.976539,0.08653342,-0.2350445,0.95797503,0.1644322,-0.2869562,0.92968136,0.23097329,-0.3226354,0.9016297,0.28804564,-0.33465368,0.8893822,0.31145835,-0.30955032,0.9131939,0.26505762,-0.19941004,0.9316231,0.30383223,-0.17665908,0.9387404,0.29590213,-0.22305186,0.9241293,0.31021422,-0.0969437,0.9662249,0.23877038,-0.07881557,0.9770773,0.19775745,-0.08465975,0.98845303,0.12567131,-0.17162232,0.9806347,0.09434714,-0.14729342,0.9839801,0.10043778,-0.12346312,0.9870109,0.10279288,-0.23397109,0.9584362,0.16327149,-0.2882351,0.9157634,0.2798177,-0.29999563,0.9043581,0.30354413,-0.28301105,0.91145784,0.2985789,-0.31721833,0.8969989,0.30784014,-0.20851983,0.92896813,0.3058393,-0.22774805,0.92274046,0.31093553,-0.18102224,0.937487,0.29723576,-0.23721988,0.9199266,0.3121888,-0.07095194,0.9825622,0.17186435,-0.08461888,0.98843837,0.12581415,-0.19659857,0.976731,0.085706495,-0.17205352,0.98046637,0.09530647,-0.14754179,0.983878,0.10107154,-0.17176664,0.98057866,0.09466654,-0.12356951,0.9869649,0.10310612,-0.24509637,0.95288277,0.17872384,-0.23377496,0.9584933,0.16321714,-0.2881229,0.91587174,0.27957854,-0.28296125,0.9115133,0.29845676,-0.17239833,0.9402328,0.29366836,-0.20246744,0.9309231,0.3039557,-0.1781309,0.9384089,0.2960711,-0.23406273,0.9209656,0.31150758,-0.1087139,0.9661897,0.23379229,-0.075858206,0.9807554,0.17990094,-0.13202961,0.98227715,0.13304028,-0.11634805,0.9862521,0.11734523,-0.16584998,0.97959733,0.11350265,-0.18173134,0.97818744,0.10061343,-0.09709574,0.98477,0.14422368,-0.10043693,0.98736876,0.12253724,-0.23327759,0.95854527,0.16362314,-0.275687,0.91394836,0.2978172,-0.2832977,0.9174597,0.2793028,-0.2805315,0.9123286,0.29825935,-0.28978208,0.92090106,0.26070598,-0.1642681,0.9466815,0.27714643,-0.19657692,0.935583,0.2933291,-0.16971047,0.94242203,0.288165,-0.23089811,0.9234739,0.3064017,-0.24872443,0.9170444,0.3117141,-0.10863569,0.9662426,0.23360977,-0.15583837,0.97499436,0.15843096,-0.13063987,0.9783811,0.16032343,-0.10650349,0.98152405,0.15895772,-0.08381346,0.9844223,0.15455729,-0.17991893,0.97587043,0.12371796,-0.15574835,0.97919583,0.13006912,-0.1892137,0.9763026,0.105030306,-0.16876926,0.9754343,0.14157985,-0.099617586,0.977551,0.18566205,-0.12502052,0.9741029,0.1883968,-0.1412187,0.9745506,0.17409314,-0.10737099,0.97365147,0.20118237,-0.23516819,0.95683825,0.17075282,-0.27327108,0.9229644,0.27103433,-0.2708752,0.9167798,0.29349846,-0.27416077,0.9289194,0.24888688,-0.13428101,0.95687723,0.25759384,-0.16429792,0.94678104,0.27678835,-0.19659589,0.93565583,0.29308406,-0.16427815,0.94671464,0.27702716,-0.23090686,0.9235135,0.30627587,-0.24872859,0.91706496,0.31165043,-0.18237196,0.96826106,0.17091227,-0.1600479,0.96953326,0.18544507,-0.13672665,0.9707799,0.19721107,-0.14740984,0.9729276,0.17799501,-0.11273898,0.97200084,0.20616564,-0.1940029,0.97265774,0.12767069,-0.17556903,0.9738389,0.14426799,-0.19638717,0.97473484,0.10641441,-0.18935396,0.97049975,0.14924915,-0.13525605,0.96490526,0.22508596,-0.12379209,0.9685515,0.21583214,-0.16125822,0.9635424,0.21349913,-0.17301284,0.96594185,0.19241333,-0.14711618,0.9610628,0.23391269,-0.2684249,0.9257736,0.26625413,-0.2716204,0.93027645,0.24659294,-0.26857677,0.9182442,0.29102254,-0.26652905,0.93295276,0.24199474,-0.16423899,0.9468903,0.2764495,-0.19655223,0.93573564,0.2928584,-0.16427828,0.9468175,0.27667534,-0.23088276,0.92355686,0.3061632,-0.24871594,0.9170875,0.31159407,-0.17355493,0.9657735,0.19276974,-0.18464549,0.9676083,0.17216365,-0.17464042,0.9654357,0.19348043,-0.16228509,0.9631939,0.21429197,-0.14759749,0.9608831,0.23434745,-0.19522141,0.9723551,0.12811738,-0.18994415,0.97034293,0.14951876,-0.19701168,0.9745895,0.10659096,-0.19112554,0.970028,0.15005578,-0.16434494,0.96249205,0.21586986,-0.1485618,0.96052235,0.23521523,-0.17572771,0.9650962,0.19418837,-0.15049696,0.9597961,0.2369433,-0.20466895,0.9730423,0.10629784,-0.26440334,0.92899525,0.25895688,-0.2643103,0.93449426,0.23845449,-0.26680565,0.9199409,0.28726903,-0.25979894,0.9375253,0.23141065,-0.19987972,0.96624994,0.16250896,-0.19889368,0.96835154,0.15078646,-0.18347299,0.9632912,0.19597879,-0.16152933,0.9602106,0.22782408,-0.14852624,0.9586248,0.24285485,-0.26213625,0.9311802,0.25335366,-0.25847524,0.93855584,0.2286996,-0.2658867,0.9211028,0.28438327,-0.25577578,0.94059205,0.22330561,-0.19983476,0.9661577,0.1631116,-0.19984998,0.96618843,0.16291071,-0.18337846,0.96322715,0.19638172,-0.16144945,0.96017736,0.22802097,-0.14847821,0.9586078,0.2429512,-0.25451812,0.93994004,0.22744957,-0.26340246,0.9258628,0.27091926,-0.26585537,0.91829085,0.29336455,-0.25961307,0.9330801,0.24892291,-0.24815258,0.9464399,0.20657144,-0.24055533,0.95257735,0.1863587,-0.23176901,0.9583499,0.16687913,-0.20600526,0.9621216,0.17856063,-0.20403564,0.96349174,0.17335835,-0.18598486,0.9604525,0.20722133,-0.16196476,0.9587481,0.23360106,-0.19062336,0.9548195,0.22799669,-0.21948186,0.9507165,0.21901101,-0.20725694,0.949773,0.23446912,-0.1939485,0.9488208,0.24924493,-0.22432467,0.94446665,0.2401275,-0.16378443,0.9530017,0.2548773,-0.21336299,0.9566022,0.19846515,-0.22785793,0.937855,0.26174167,-0.23005237,0.9308842,0.28377897,-0.21276374,0.93679965,0.27773738,-0.24178939,0.93890184,0.24495156,-0.24776207,0.9247141,0.28899458,-0.19593269,0.9424587,0.27089107,-0.17959474,0.9478599,0.26326287,-0.2729019,0.9393622,0.20766112,-0.2716703,0.94053066,0.2039541,-0.2715096,0.9409125,0.20240112,-0.27157652,0.94100654,0.20187336,-0.2727882,0.9414496,0.19813965,-0.27376443,0.9415722,0.19620118,-0.27572438,0.9412123,0.19518073,-0.2765126,0.9409858,0.19515772,-0.27699322,0.94081813,0.19528447,-0.27742413,0.94065046,0.19548035,-0.2778026,0.94048375,0.19574489,-0.2783711,0.9401996,0.19630133,-0.27868533,0.94000584,0.19678298,-0.27882183,0.9397593,0.1977645,-0.27860165,0.9393453,0.20002894,-0.2789836,0.93923706,0.20000462,-0.27947262,0.9394875,0.19813699,-0.28011024,0.9393929,0.19768472,-0.28093687,0.93910563,0.19787633,-0.28372946,0.9379714,0.19926684,-0.28419405,0.9376771,0.19998866,-0.28444025,0.9374675,0.20062003,-0.28446183,0.93734616,0.2011559,-0.2840709,0.93714315,0.20264846,-0.28259796,0.9369968,0.20536654,-0.28259626,0.9368779,0.20591046,-0.28216136,0.9369185,0.20632191,-0.28245923,0.93671066,0.20685719,-0.2824449,0.93661547,0.20730747,-0.28376278,0.93628454,0.2070023,-0.2843234,0.93628836,0.20621414,-0.28484774,0.93623,0.20575508,-0.28525746,0.9360811,0.20586501,-0.28555334,0.9358407,0.20654634,-0.2856615,0.93567306,0.20715566,-0.28558517,0.9354564,0.20823665,-0.2856867,0.93522304,0.20914342,-0.28559837,0.93519795,0.20937607,-0.28500023,0.93517625,0.21028605,-0.28175327,0.93570673,0.21229224,-0.28061202,0.93583775,0.21322426,-0.27653092,0.9366056,0.21517581,-0.27527955,0.93697745,0.2151615,-0.27424273,0.93731105,0.21503225,-0.2738606,0.9375049,0.21467422,-0.2737854,0.9376705,0.21404554,-0.27359384,0.93780583,0.21369751,-0.27328697,0.9379108,0.2136296,-0.27301443,0.9380246,0.2134784,-0.2727767,0.93814707,0.21324381,-0.272377,0.93838173,0.21272163,-0.2721735,0.9385365,0.21229878,-0.27274644,0.9388747,0.21005636,-0.28293455,0.9370715,0.20456068,-0.28255016,0.9364589,0.2078705,-0.2725983,0.9367769,0.21940653,-0.27154773,0.93699265,0.21978776,-0.27099395,0.93717855,0.2196784,-0.26856256,0.9382317,0.21816368,-0.2674429,0.9384789,0.21847582,-0.26682937,0.93866795,0.21841365,-0.26651043,0.93878514,0.2182994,-0.2667374,0.9391464,0.21646076,-0.26712212,0.93923914,0.21558209,-0.26768267,0.9391777,0.21515404,-0.26896974,0.93882275,0.21509804,-0.26950076,0.93851745,0.21576457,-0.2704968,0.93808275,0.2164077,-0.27114683,0.9377318,0.21711388,-0.27239892,0.9369888,0.21874848,-0.27261925,0.9368249,0.21917541,-0.27058017,0.9373904,0.2192845,-0.26994923,0.9376723,0.21885629,-0.26168945,0.94571316,0.19273108,-0.26128736,0.94575024,0.19309415,-0.2609221,0.94583803,0.19315824,-0.2604601,0.9459887,0.19304378,-0.25996894,0.9461714,0.19281022,-0.25944626,0.94638693,0.19245617,-0.2590473,0.94656956,0.19209522,-0.25843775,0.9469279,0.19114764,-0.25804684,0.94719386,0.19035648,-0.2586207,0.9471151,0.18996903,-0.26016456,0.9466899,0.18998063,-0.26113874,0.94639874,0.19009452,-0.26154417,0.94624203,0.19031736,-0.2618017,0.94610965,0.19062114,-0.2619119,0.9460014,0.19100653,-0.24374673,0.9548816,0.16967222,-0.24240126,0.9552325,0.16962469,-0.24204738,0.95538414,0.16927569,-0.24226722,0.9554931,0.16834368,-0.24258283,0.95540625,0.16838185,-0.24418749,0.955177,0.1673601,-0.24427302,0.95524585,0.1668414,-0.24537946,0.95518684,0.1655507,-0.24602534,0.9550366,0.16545884,-0.24689092,0.9548603,0.16518675,-0.24737951,0.95459694,0.16597612,-0.2472607,0.9545345,0.16651164,-0.24678497,0.9545964,0.16686186,-0.24669182,0.9545121,0.16748077,-0.24686915,0.95443046,0.16768447,-0.24703771,0.95433027,0.16800639,-0.24686114,0.954292,0.16848236,-0.24712585,0.954133,0.16899446,-0.24713372,0.95405406,0.16942766,-0.24695088,0.9540753,0.16957471,-0.24462159,0.95467937,0.16955094,-0.2436461,0.9552196,0.16790496,-0.24401334,0.95517874,0.16760379,-0.24667689,0.9545639,0.16720727,-0.20884757,0.9755976,0.067763865,-0.20827937,0.9756315,0.06901359,-0.20757893,0.97574,0.06958754,-0.20688058,0.97589535,0.0694886,-0.20688052,0.9759292,0.06901195,-0.20663826,0.9760371,0.068207435,-0.20647497,0.9761445,0.06715647,-0.20648362,0.9761715,0.06673593,-0.20672439,0.976158,0.06618582,-0.2072017,0.97609746,0.0655833,-0.20752096,0.9760371,0.06547272,-0.20827594,0.97586167,0.06568944,-0.20862634,0.9757467,0.06628273,-0.09771825,0.99042773,0.0974885,-0.097157456,0.9904702,0.09761791,-0.095073916,0.99084795,0.095819004,-0.093096636,0.99121815,0.09391294,-0.092401,0.9914004,0.09266754,-0.09200065,0.9916206,0.09068893,-0.09211394,0.991877,0.08772147,-0.093039155,0.99181825,0.087408684,-0.09388759,0.99179864,0.08672115,-0.094741784,0.9916694,0.08726851,-0.09551248,0.99152076,0.088113174,-0.09698751,0.99109554,0.09123067,-0.09713131,0.990681,0.095481426,-0.096921176,0.9909309,0.09307068,-0.14060645,0.9447343,0.29615363,-0.14037088,0.9450707,0.29519045,-0.14035416,0.94519156,0.29481122,-0.1409997,0.94550693,0.29348892,-0.14102165,0.9457572,0.29267085,-0.14148028,0.9457663,0.29241985,-0.15070707,0.9448097,0.29089874,-0.15158072,0.94502753,0.28973487,-0.15217194,0.94493246,0.28973505,-0.15317327,0.9443175,0.29120854,-0.15361159,0.9438747,0.29241073,-0.15461966,0.9434661,0.2931969,-0.15551284,0.9433112,0.293223,-0.15581393,0.94319266,0.29344445,-0.15679121,0.94272506,0.2944248,-0.15699613,0.9425646,0.29482898,-0.15698224,0.94244987,0.29520303,-0.15654193,0.9423732,0.29568124,-0.14802133,0.942708,0.29898375,-0.14809622,0.9423752,0.2999942,-0.14780505,0.94237345,0.30014315,-0.14652558,0.94269466,0.29976165,-0.14534156,0.9430663,0.29916856,-0.14457762,0.9432164,0.29906538,-0.14211524,0.9435277,0.29926372,-0.14153673,0.94376236,0.29879758,-0.1414164,0.9438834,0.29847187,-0.14137918,0.94403476,0.29801056,-0.14155775,0.9442597,0.2972121,-0.14120865,0.94434524,0.2971063,-0.1409898,0.9444411,0.29690555,-0.14078449,0.9445752,0.29657623,-0.14090534,0.9453839,0.2939301,-0.15527923,0.9425171,0.29588833,-0.15001276,0.9447636,0.29140684,-0.14909624,0.942952,0.29767746,-0.14870866,0.94473565,0.29216486,-0.14503178,0.9450587,0.2929672,-0.14680605,0.9448097,0.2928868,-0.15185277,0.9428248,0.29668525,-0.04580873,0.98981184,0.1348115,-0.04538856,0.9898916,0.13436691,-0.045161568,0.9901449,0.13256495,-0.04518632,0.99038714,0.13073455,-0.045327716,0.990565,0.12933034,-0.04577167,0.9905495,0.12929302,-0.046256762,0.9904569,0.12982845,-0.0467239,0.99024683,0.13125594,-0.046631616,0.9900661,0.13264455,-0.046356257,0.9898438,0.1343887,-0.055299588,0.98392004,0.16983306,-0.053447433,0.98427546,0.16836022,-0.05223622,0.9846268,0.16667752,-0.051986147,0.98489463,0.16516656,-0.05331815,0.9849745,0.1642631,-0.055174902,0.9848413,0.16444851,-0.056859206,0.9846268,0.16515765,-0.057762302,0.98435694,0.16644783,-0.057899427,0.9841119,0.16784355,-0.057104003,0.98394746,0.16907556,-0.06847745,0.9779239,0.19742237,-0.06782542,0.9780523,0.19701095,-0.066651136,0.97856253,0.19486655,-0.06556977,0.9794099,0.1909368,-0.06511934,0.97965795,0.18981525,-0.06525487,0.97971964,0.1894499,-0.06570348,0.97965795,0.18961385,-0.066823415,0.97937894,0.19066091,-0.067661025,0.97881544,0.19324176,-0.06818647,0.9783082,0.19561107,-0.06635276,0.9789099,0.19321683,-0.07746624,0.97036266,0.22890012,-0.07686521,0.9704742,0.22862977,-0.07522075,0.971977,0.22271627,-0.07419712,0.97294563,0.21879573,-0.074429594,0.9731942,0.21760829,-0.075148284,0.97315866,0.21751997,-0.0758856,0.972696,0.21932587,-0.076717444,0.9720855,0.22173008,-0.078075655,0.9672744,0.24142154,-0.07785775,0.9677414,0.23961388,-0.07900249,0.96758616,0.23986575,-0.080160506,0.96739155,0.24026634,-0.08060396,0.9676636,0.23901919,-0.08190805,0.96735245,0.2398339,-0.08269312,0.966804,0.24176818,-0.083404884,0.966251,0.24372637,-0.08284686,0.9659333,0.24517186,-0.08144042,0.965973,0.24548651,-0.07823578,0.96589315,0.24683917,-0.077176906,0.96609235,0.24639247,-0.07705088,0.96660686,0.24440609,-0.078223534,0.96656775,0.24418819,-0.07843004,0.9668432,0.24302872,-0.066659406,0.97683066,0.20336764,-0.06596941,0.97683066,0.2035925,-0.06483952,0.9770694,0.20280857,-0.06413429,0.9773512,0.2016717,-0.0638809,0.9776315,0.20038934,-0.06425927,0.9776902,0.1999814,-0.06463678,0.9776462,0.20007505,-0.06636872,0.97709894,0.20217048,-0.06677623,0.97692776,0.20286211,-0.25034624,0.910188,0.32997662,-0.24944328,0.9101926,0.33064705,-0.24877055,0.91050756,0.33028656,-0.24773695,0.91113967,0.32931882,-0.24771455,0.9115631,0.32816184,-0.24897595,0.91137064,0.3277416,-0.24988836,0.91075474,0.32875767,-0.35472563,0.87172997,0.3380186,-0.35271537,0.8727636,0.33745456,-0.35198125,0.87327564,0.33689588,-0.35124615,0.8736802,0.3366141,-0.35056928,0.8741412,0.33612248,-0.35205767,0.87384677,0.3353315,-0.35579997,0.8727503,0.33423543,-0.35602683,0.8725676,0.33447075,-0.35523123,0.8726317,0.33514872,-0.3548471,0.8724173,0.3361126,-0.35511115,0.87195534,0.33703104,-0.25779232,0.94467753,0.20279922,-0.2572842,0.94469285,0.20337209,-0.2568658,0.9447709,0.20353873,-0.25665137,0.94490397,0.20319086,-0.25663102,0.9451865,0.20189843,-0.25675157,0.94538474,0.20081416,-0.2573407,0.94533664,0.20028567,-0.25831375,0.944974,0.20074409,-0.2585882,0.94484764,0.20098531,-0.2586524,0.9447812,0.2012149,-0.9118167,0.20868759,0.35360956,-0.91144526,0.20893183,0.35442203,-0.9115794,0.21061747,0.35307702,-0.91246855,0.21185945,0.3500239,-0.91247267,0.21374722,0.34886363,-0.9126174,0.21427916,0.34815794,-0.9128382,0.21439897,0.3475044,-0.9130927,0.21300372,0.34769398,-0.91266626,0.21033254,0.35042906,-0.9170811,0.21512735,0.335682,-0.91699874,0.21562162,0.3355899,-0.9169724,0.21610677,0.33534986,-0.9170209,0.21759169,0.3342552,-0.91721565,0.21838352,0.3332029,-0.9173683,0.21809326,0.33297253,-0.9176357,0.21723995,0.3327934,-0.9174406,0.2164479,0.33384576,-0.9172984,0.21539195,0.33491784,-0.88154536,0.3708044,0.29220188,-0.8812832,0.37116596,0.2925334,-0.8811611,0.3719097,0.29195604,-0.8817456,0.37221187,0.28979826,-0.88200855,0.37207192,0.289177,-0.88224715,0.37121588,0.2895491,-0.8816989,0.37120956,0.29122236,-0.88164866,0.37058508,0.29216847,-0.8823434,0.37185192,0.28843758,-0.88219005,0.3720229,0.28868616,-0.88215286,0.3723804,0.2883386,-0.88175994,0.37382817,0.28766638,-0.8821653,0.3738044,0.28645173,-0.88240683,0.37328345,0.28638715,-0.8823881,0.37288097,0.2869688,-0.8822925,0.37285885,0.2872912,-0.88242173,0.37241125,0.28747463,-0.8841539,0.37130764,0.28355333,-0.88437665,0.37220004,0.28168267,-0.8847703,0.37129182,0.28164518,-0.88496625,0.37068728,0.28182563,-0.88481325,0.3706421,0.28236496,-0.8841788,0.37087792,0.28403756,-0.88407034,0.3710442,0.28415814,-0.88380736,0.37124985,0.28470692,-0.88376194,0.37144056,0.28459924,-0.8908482,0.41034585,0.19495064,-0.89069325,0.41071022,0.19489126,-0.8905749,0.4113162,0.19415294,-0.8908877,0.41103584,0.19330984,-0.89128435,0.41083845,0.19189566,-0.891507,0.41059142,0.19138955,-0.8916507,0.41076782,0.19033888,-0.89204895,0.41023856,0.1896125,-0.8926642,0.40818572,0.19114144,-0.8928091,0.40738034,0.19218016,-0.8937413,0.40487897,0.19313088,-0.8937846,0.40454072,0.19363856,-0.8945256,0.40278718,0.19387257,-0.8939435,0.40257353,0.19697596,-0.8928581,0.40465376,0.1976354,-0.8925813,0.4053145,0.19753182,-0.89228314,0.40612537,0.1972129,-0.89208686,0.4065396,0.19724771,-0.8911516,0.4089169,0.19655985,-0.8907806,0.41018343,0.19560015,-0.89169514,0.40862444,0.19469406,-0.8916252,0.40934145,0.19350483,-0.8924202,0.4057702,0.19732389,-0.8773982,0.43673047,0.19859235,-0.8772611,0.43686762,0.1988961,-0.8767592,0.43767244,0.1993394,-0.874544,0.44213727,0.19921671,-0.8733919,0.4435944,0.2010238,-0.8720007,0.44666904,0.20025378,-0.87182355,0.44771641,0.19867986,-0.8718351,0.4483647,0.19716133,-0.8716918,0.44874254,0.19693528,-0.8714832,0.44914463,0.19694197,-0.8714114,0.4495009,0.19644658,-0.8713851,0.4500611,0.19527674,-0.8709771,0.4514449,0.19389792,-0.870746,0.4524879,0.19249947,-0.87112695,0.45265126,0.19038048,-0.8713409,0.45298937,0.18858878,-0.8715526,0.45305854,0.1874406,-0.87209964,0.45249012,0.18626557,-0.8716341,0.4524544,0.1885177,-0.87111,0.45159394,0.1929514,-0.8722409,0.44804555,0.19608921,-0.8723633,0.44715235,0.19757782,-0.8727994,0.44602537,0.19819818,-0.8733698,0.44502142,0.19794194,-0.87381494,0.4440373,0.1981876,-0.87445587,0.44290003,0.19790523,-0.87545073,0.44082206,0.19814608,-0.87606966,0.43986875,0.19752812,-0.87697446,0.43875864,0.19597602,-0.876952,0.43830216,0.19709492,-0.8923526,0.3603068,0.27181947,-0.89175934,0.3615006,0.27218124,-0.8910392,0.3632433,0.2722196,-0.89117724,0.36346877,0.27146563,-0.89220744,0.3617024,0.27043897,-0.8932729,0.36091086,0.26796815,-0.8935702,0.36165318,0.26596865,-0.8940927,0.36147514,0.2644504,-0.8947703,0.3604189,0.26359883,-0.89534396,0.3600509,0.26214987,-0.8954217,0.35970733,0.26235577,-0.8955381,0.35937095,0.26241967,-0.89594036,0.35851666,0.26221502,-0.89611566,0.3579701,0.2623626,-0.8962522,0.3573478,0.26274425,-0.8950107,0.35745355,0.26680103,-0.8936924,0.35802817,0.2704251,-0.8929726,0.36088398,0.26900327,-0.8886175,0.41606373,0.19300206,-0.88774884,0.41798475,0.19284897,-0.8874505,0.41936308,0.191223,-0.88664734,0.42171353,0.18977404,-0.88638073,0.42269388,0.1888363,-0.88580865,0.4239593,0.18868375,-0.8855767,0.4248807,0.18769728,-0.8855683,0.4258163,0.18560512,-0.88580596,0.42564124,0.18487097,-0.88770133,0.4213063,0.18570785,-0.88924277,0.41872168,0.18417227,-0.8896076,0.4177339,0.18465266,-0.8904753,0.4161257,0.18410075,-0.8901704,0.41694787,0.18371497,-0.89058125,0.41671845,0.18223828,-0.8909549,0.41539487,0.18342967,-0.89104015,0.41441947,0.18521306,-0.8909444,0.4141542,0.18626426,-0.8906014,0.41458926,0.18693575,-0.89114195,0.41330072,0.18721248,-0.8912821,0.41254246,0.1882153,-0.89172345,0.41131467,0.188811,-0.8911856,0.41207036,0.18970047,-0.89060634,0.41261303,0.19123517,-0.8902751,0.4131509,0.19161563,-0.88948447,0.41411307,0.19320379,-0.8892223,0.4146257,0.19331114,-0.88959396,0.4176657,0.18487284,-0.88686186,0.42297193,0.1859323,-0.8897769,0.41713443,0.18519169,-0.8751912,0.44977185,0.17817311,-0.8749831,0.4508455,0.17647335,-0.8756464,0.44972694,0.1760372,-0.87725407,0.44748467,0.17373203,-0.8769704,0.44890475,0.17148589,-0.87699574,0.4491553,0.17069872,-0.8776705,0.44664237,0.17379592,-0.8777139,0.44620845,0.17468923,-0.8774468,0.44629997,0.17579393,-0.87656516,0.44712496,0.17808089,-0.87508047,0.4483419,0.18227373,-0.8738895,0.44874784,0.18692902,-0.8736651,0.44918042,0.18693939,-0.87332743,0.45000863,0.18652466,-0.8740257,0.449542,0.18436661,-0.8745341,0.4496722,0.18161796,-0.8748144,0.44935316,0.18105653,-0.87505156,0.44928694,0.18007231,-0.8757757,0.4493913,0.17625111,-0.87686646,0.44774383,0.17501628,-0.8761622,0.44868234,0.17613624,-0.8847388,0.42250934,0.1967819,-0.8841998,0.42283756,0.19849202,-0.8837114,0.42331174,0.19965321,-0.883648,0.4235001,0.19953436,-0.8836373,0.42393082,0.19866474,-0.8840755,0.42389455,0.19678381,-0.8845025,0.4235301,0.19564661,-0.88481975,0.42309314,0.19515692,-0.8848678,0.4228329,0.19550282,-0.8869186,0.3859956,0.25373754,-0.8869032,0.3862841,0.25335208,-0.8871861,0.38687044,0.25146,-0.8870521,0.38770166,0.25065118,-0.88724256,0.3881526,0.24927522,-0.8875077,0.38757288,0.24923371,-0.8877149,0.38694355,0.24947314,-0.88793343,0.38609388,0.2500114,-0.8877699,0.38614887,0.25050688,-0.88746053,0.3853493,0.25282347,-0.88063264,0.4060942,0.24407722,-0.8795529,0.40782154,0.24508841,-0.8792486,0.40873653,0.24465562,-0.8793324,0.40875512,0.244323,-0.87971437,0.4084113,0.24352157,-0.8807492,0.40624136,0.24341053,-0.8913304,0.37757716,0.25092936,-0.8908316,0.37806323,0.25196674,-0.8897413,0.37955704,0.2535683,-0.8888656,0.38044393,0.25530443,-0.8871131,0.38330296,0.25711706,-0.8863792,0.38559625,0.25621748,-0.88593054,0.38640594,0.25654927,-0.8864964,0.38615602,0.2549658,-0.8868064,0.38562056,0.25469825,-0.88711536,0.3848602,0.2547723,-0.88794774,0.38232437,0.2556889,-0.88839334,0.38186443,0.25482708,-0.8885965,0.38152176,0.25463212,-0.8889591,0.3810806,0.25402623,-0.8897817,0.37983376,0.25301176,-0.89093286,0.37841517,0.2510789,-0.8872721,0.38377988,0.25585386,-0.88749665,0.3831258,0.2560554,-0.8782832,0.43031263,0.20844579,-0.8779411,0.43153304,0.20736113,-0.87809676,0.43132386,0.20713721,-0.87869596,0.4302049,0.20692287,-0.8792027,0.42935845,0.20652822,-0.87876916,0.42960852,0.20784928,-0.8785878,0.4294339,0.20897372,-0.87880075,0.42801338,0.210983,-0.87852764,0.4275566,0.21303675,-0.87886554,0.42612854,0.21449903,-0.8791404,0.42450503,0.21658197,-0.87978107,0.4230291,0.21686786,-0.8806192,0.42160922,0.21623002,-0.88146615,0.41980782,0.21628423,-0.88189954,0.4197321,0.21465826,-0.88198066,0.4193871,0.21499889,-0.88205373,0.4187286,0.21598063,-0.8824299,0.41758293,0.216661,-0.882526,0.4170648,0.21726684,-0.88176376,0.41881445,0.21699548,-0.8807389,0.4208085,0.21729986,-0.87914515,0.424116,0.2173232,-0.87886,0.4248398,0.21706273,-0.8787446,0.42563432,0.21597065,-0.8782917,0.42786318,0.21339332,-0.8785027,0.42853475,0.21116567,-0.8890464,0.3978563,0.22651017,-0.88884115,0.397951,0.22714855,-0.8889273,0.3985888,0.22568859,-0.88878196,0.39942962,0.22477232,-0.888622,0.40110716,0.2224048,-0.8886986,0.40149042,0.22140528,-0.8892673,0.40039352,0.2211076,-0.88902444,0.4002256,0.22238468,-0.8891629,0.39827928,0.2253065,-0.88936144,0.38862067,0.24085306,-0.88916665,0.38903284,0.2409068,-0.8884948,0.39072955,0.2406395,-0.88829595,0.39214662,0.23906359,-0.88841313,0.39314276,0.23698282,-0.88738173,0.3960714,0.23596826,-0.88694614,0.39776725,0.23475043,-0.8863879,0.3994976,0.233919,-0.88597023,0.40144205,0.23216602,-0.8864766,0.4001865,0.23240046,-0.88653475,0.39984125,0.23277265,-0.8869744,0.39834258,0.23366554,-0.8875586,0.39612854,0.23520635,-0.8883689,0.3940163,0.23569427,-0.8887079,0.3938252,0.23473386,-0.88896745,0.39338565,0.23448798,-0.88891286,0.3926114,0.23598774,-0.8885763,0.3918322,0.2385365,-0.8879044,0.39503115,0.23574598,-0.88262296,0.40911368,0.23152287,-0.8822983,0.40992302,0.23132844,-0.88155746,0.413539,0.22768813,-0.8814354,0.41389126,0.22752042,-0.88031155,0.41756353,0.22514933,-0.880414,0.4178275,0.22425728,-0.8805383,0.4176983,0.22401007,-0.88085085,0.4171484,0.22380584,-0.8809827,0.41611955,0.22519778,-0.8813211,0.41516,0.22564438,-0.88140583,0.41455442,0.22642513,-0.882137,0.41199812,0.22823638,-0.8822469,0.41096976,0.22966118,-0.8825717,0.41025648,0.22968864,-0.8831723,0.4095071,0.22871543,-0.88350135,0.40895268,0.22843601,-0.8833556,0.40896127,0.22898385,-0.8828218,0.4092777,0.23047216,-0.88415617,0.38153905,0.26962167,-0.8843941,0.3819628,0.26823768,-0.88503087,0.3807591,0.26784864,-0.88487226,0.3805471,0.26867256,-0.88425386,0.3805739,0.27066326,-0.8838756,0.38042894,0.27209866,-0.88381517,0.3793047,0.27385885,-0.8834073,0.37989837,0.27435148,-0.8833731,0.3801727,0.27408165,-0.883437,0.38083792,0.2729497,-0.88378954,0.3813224,0.27112585,-0.88395554,0.38130587,0.27060744,-0.8902557,0.36581287,0.2713408,-0.88932264,0.36660978,0.2733176,-0.8893604,0.36750168,0.27199343,-0.889966,0.36675018,0.2710254,-0.569158,0.7284048,0.38142562,-0.5689175,0.72851926,0.38156593,-0.56866944,0.7287136,0.38156468,-0.56841487,0.7289873,0.38142127,-0.56841594,0.729101,0.3812021,-0.56867176,0.7290555,0.3809074,-0.5689276,0.7289476,0.38073185,-0.56948245,0.7285764,0.38061288,-0.56992054,0.7289126,0.37931132,-0.56888634,0.7294281,0.37987232,-0.5685709,0.7296968,0.37982845,-0.56797963,0.7308042,0.37858203,-0.5668767,0.7317702,0.37836906,-0.56655353,0.7321982,0.37802494,-0.5667653,0.73253065,0.37706223,-0.566953,0.7324187,0.37699756,-0.56724185,0.7321622,0.37706134,-0.56829876,0.7305872,0.378522,-0.5684985,0.73035264,0.37867466,-0.56951827,0.7295377,0.37871313,-0.56986713,0.7292007,0.3788373,-0.56838596,0.7301611,0.37921262,-0.85647905,0.19369672,0.47846124,-0.8559957,0.19386642,0.47925696,-0.85398287,0.19532512,0.48224604,-0.8536226,0.19638062,0.48245525,-0.85394216,0.19634883,0.48190248,-0.85530657,0.19555661,0.47980028,-0.85630846,0.19437815,0.47849035,-0.8625725,0.17498909,0.47470784,-0.86107475,0.17595649,0.47706357,-0.86091787,0.17653194,0.47713402,-0.86062694,0.17814064,0.477061,-0.8601986,0.17920376,0.4774352,-0.8604251,0.1802852,0.47661933,-0.86033523,0.18193135,0.47615576,-0.85997283,0.18323256,0.47631136,-0.8597782,0.18514992,0.4759212,-0.85933954,0.18594377,0.47640377,-0.85832703,0.18807101,0.47739294,-0.85968804,0.18792875,0.47499397,-0.8605583,0.18743815,0.47360986,-0.8621945,0.1873269,0.47066906,-0.86306506,0.18677182,0.46929199,-0.86415046,0.18648887,0.46740338,-0.86471945,0.18597634,0.46655443,-0.8646436,0.18565562,0.4668227,-0.8639727,0.18505691,0.46830028,-0.8650197,0.17799717,0.4691034,-0.8658951,0.17783025,0.46754894,-0.8662706,0.17694214,0.4671903,-0.86858934,0.1748364,0.4636646,-0.86745626,0.17510998,0.46567816,-0.86608475,0.17475916,0.4683551,-0.86473554,0.17826216,0.46952644,-0.86370087,0.18461804,0.46897426,-0.86370337,0.18290406,0.4696409,-0.863633,0.18400912,0.46933857,-0.861874,0.2080559,0.46247804,-0.86132205,0.20812748,0.4634731,-0.8604739,0.20883262,0.46472967,-0.85976386,0.21172209,0.46473628,-0.8601522,0.21195614,0.4639104,-0.8607619,0.2110716,0.46318212,-0.8612922,0.20976272,0.46279088,-0.86154217,0.20868759,0.46281162,-0.85338676,0.22737007,0.46907762,-0.85309106,0.22763892,0.46948504,-0.8526071,0.22839974,0.46999434,-0.8522017,0.22994848,0.46997446,-0.85209626,0.23104723,0.46962664,-0.8524596,0.23100002,0.46898994,-0.852892,0.23057051,0.46841478,-0.853406,0.2298407,0.467837,-0.8537522,0.22851348,0.4678555,-0.8542489,0.22467366,0.4688076,-0.8540802,0.22485963,0.46902576,-0.8538279,0.22537115,0.46923953,-0.85366386,0.22560191,0.469427,-0.8536865,0.2256601,0.46935794,-0.8536859,0.22571817,0.4693311,-0.85367745,0.2257796,0.46931693,-0.85367554,0.2258444,0.46928933,-0.8538031,0.2256867,0.469133,-0.8540909,0.22538857,0.4687522,-0.854187,0.22525407,0.46864194,-0.85417944,0.22516684,0.46869755,-0.85414994,0.22504233,0.46881106,-0.85437983,0.22482814,0.46849483,-0.8544858,0.2249062,0.46826413,-0.8545115,0.22477913,0.4682782,-0.8542902,0.22467284,0.46873274,-0.8542744,0.22454739,0.4688216,-0.85418737,0.22467366,0.46891972,-0.8544154,0.22478412,0.46845093,-0.8541786,0.22490458,0.46882495,-0.8543397,0.22475009,0.46860543,-0.85606796,0.21975636,0.46781912,-0.85598344,0.21976462,0.46796998,-0.85591805,0.21986534,0.46804222,-0.8558651,0.22001407,0.4680692,-0.85579854,0.22011048,0.4681455,-0.85573167,0.22023025,0.46821138,-0.8557169,0.22038572,0.46816534,-0.85572934,0.22044967,0.46811244,-0.8557882,0.22043885,0.46801007,-0.85588217,0.22033665,0.46788612,-0.85591906,0.22017036,0.4678969,-0.8559333,0.22001989,0.46794164,-0.855999,0.21990767,0.4678743,-0.8561001,0.21986616,0.46770877,-0.85612977,0.21981463,0.46767864,-0.83952343,0.22600883,0.49408546,-0.83920974,0.226345,0.49446428,-0.83840096,0.22754848,0.49528325,-0.8387704,0.2282969,0.49431238,-0.8392467,0.23034987,0.4925484,-0.83977026,0.23010278,0.49177098,-0.8402633,0.22750612,0.4921367,-0.84015787,0.22668695,0.4926944,-0.8492727,0.23713621,0.47170147,-0.84843075,0.23890585,0.4723233,-0.84766734,0.24211031,0.47206208,-0.8475386,0.24350253,0.47157696,-0.8479148,0.24315542,0.47107953,-0.8485721,0.24210708,0.47043553,-0.8494722,0.24049187,0.4696388,-0.84973407,0.23964477,0.46959814,-0.8499325,0.238247,0.46995002,-0.8469598,0.26264888,0.46224955,-0.84611535,0.26301476,0.46358618,-0.845366,0.26510414,0.46376306,-0.8449516,0.26768747,0.4630337,-0.8450574,0.2686686,0.46227175,-0.84597087,0.2694763,0.46012595,-0.8461881,0.26897803,0.460018,-0.84660053,0.2676613,0.4600272,-0.8465865,0.26555365,0.46127266,-0.84196526,0.29298937,0.45304713,-0.8417447,0.29318812,0.4533282,-0.8415834,0.29353687,0.4534022,-0.84145075,0.2940142,0.45333916,-0.841596,0.29412505,0.45299733,-0.8416849,0.29468206,0.45246997,-0.8421674,0.2951902,0.4512392,-0.8430378,0.2940093,0.45038408,-0.84315616,0.29342517,0.4505433,-0.84320486,0.29259416,0.45099247,-0.8423981,0.29232433,0.45267192,-0.83998966,0.301516,0.4511158,-0.83975047,0.3019531,0.45126867,-0.83936816,0.3033899,0.45101616,-0.83944565,0.30387467,0.4505453,-0.83975494,0.3039811,0.44989684,-0.83992976,0.3042668,0.449377,-0.840083,0.30410442,0.4492004,-0.84019154,0.30379108,0.4492096,-0.8404122,0.30230573,0.44979832,-0.8469979,0.2870462,0.44743603,-0.8466901,0.2880347,0.4473833,-0.8465951,0.2891916,0.44681644,-0.84673965,0.2891052,0.44659838,-0.84722203,0.28822237,0.44625413,-0.8474423,0.28735232,0.44639686,-0.84843004,0.2940501,0.44011468,-0.8479472,0.29440522,0.44080737,-0.84774196,0.29520977,0.440664,-0.847912,0.2957251,0.4399908,-0.8482321,0.29569334,0.4393948,-0.8486239,0.29453382,0.43941697,-0.8484319,0.296115,0.43872452,-0.8481625,0.2963747,0.43906996,-0.8481355,0.29674664,0.43887088,-0.84827363,0.29722348,0.43828082,-0.84827566,0.2982624,0.43757054,-0.84866405,0.29908392,0.43625465,-0.84898585,0.29881465,0.43581286,-0.84917766,0.2984633,0.43567997,-0.84927034,0.29815906,0.43570748,-0.84929466,0.298029,0.4357492,-0.8489804,0.297422,0.436775,-0.8484966,0.2971421,0.43790418,-0.8598047,0.3143452,0.40239653,-0.8592339,0.31449077,0.4035005,-0.8593245,0.31522202,0.40273616,-0.85964143,0.31540394,0.4019166,-0.8603009,0.31511194,0.40073296,-0.85840464,0.31445432,0.40529004,-0.8578047,0.3148928,0.4062187,-0.8583726,0.3151848,0.4047901,-0.85877496,0.3146736,0.40433407,-0.85870165,0.3145159,0.40461248,-0.86091447,0.30486748,0.40728632,-0.8612964,0.30560115,0.4059267,-0.8622447,0.3052344,0.4041855,-0.86261547,0.3040615,0.40427852,-0.8611578,0.30413452,0.4073198,-0.8601925,0.30486748,0.40880883,-0.84683794,0.30694464,0.43433917,-0.84671825,0.30696565,0.43455765,-0.8465709,0.30711493,0.4347391,-0.8464282,0.30731767,0.4348737,-0.84632,0.307501,0.43495476,-0.8467726,0.3076599,0.43396035,-0.84682,0.30772635,0.4338206,-0.8468708,0.30758196,0.4338239,-0.8468965,0.30733308,0.43395,-0.8468887,0.3070849,0.43414107,-0.8477715,0.31186038,0.42898318,-0.84633464,0.31269592,0.43120635,-0.84596246,0.31340897,0.43141907,-0.8462877,0.3134907,0.430721,-0.84758097,0.31233966,0.429011,-0.86748415,0.3163928,0.38388377,-0.8675127,0.31681886,0.38346773,-0.86772424,0.31690368,0.38291866,-0.8717599,0.3171809,0.37340462,-0.87320846,0.3176715,0.3695832,-0.87359035,0.31754944,0.36878482,-0.8739631,0.31729168,0.36812288,-0.87437075,0.3162417,0.36805856,-0.8748522,0.31554306,0.36751366,-0.87532413,0.3150626,0.36680123,-0.875386,0.3143346,0.3672781,-0.8758173,0.31154788,0.36862177,-0.8767528,0.30892047,0.3686092,-0.87653834,0.30846408,0.3695004,-0.875698,0.3084836,0.37147135,-0.8754297,0.30824932,0.3722972,-0.8750604,0.30815202,0.37324485,-0.87461776,0.3082712,0.37418255,-0.87403566,0.30879405,0.3751104,-0.87293565,0.30864984,0.37778127,-0.87231165,0.30880132,0.37909657,-0.8718134,0.30819657,0.38073114,-0.8711956,0.30842203,0.3819607,-0.8709995,0.30818602,0.38259798,-0.87073964,0.30814147,0.38322493,-0.86999464,0.30817798,0.38488385,-0.8687623,0.30859143,0.3873285,-0.86742735,0.30996835,0.38921642,-0.866722,0.31115103,0.3898435,-0.8659994,0.31211385,0.39067882,-0.86505634,0.3130367,0.39202744,-0.8644162,0.3153409,0.39159262,-0.8651789,0.31567565,0.38963363,-0.86580205,0.31637505,0.38767725,-0.8669669,0.31679142,0.38472268,-0.8671164,0.31679142,0.38438573,-0.8671603,0.31611314,0.38484478,-0.86737657,0.3160662,0.38439578,-0.8754454,0.31273645,0.36849865,-0.87535083,0.3137173,0.36788902,-0.8649625,0.31066826,0.3941131,-0.8643921,0.31076956,0.39528286,-0.86335135,0.31122965,0.39719084,-0.8633511,0.3114126,0.39704806,-0.86370814,0.31168956,0.3960528,-0.86445385,0.31175515,0.39437073,-0.8652443,0.31129512,0.39299828,-0.86527324,0.31080353,0.39332366,-0.8807727,0.309995,0.35797003,-0.8807095,0.3100104,0.3581122,-0.8806676,0.31005904,0.3581731,-0.88057613,0.31026483,0.3582198,-0.8805275,0.3103377,0.35827613,-0.88037676,0.310627,0.35839584,-0.88030624,0.31074202,0.3584694,-0.8802725,0.3108594,0.3584504,-0.8802938,0.31102708,0.3582527,-0.8803235,0.31105065,0.358159,-0.8806932,0.311023,0.35727328,-0.88079494,0.3109275,0.35710558,-0.88090795,0.31068695,0.3570361,-0.88093525,0.3104593,0.35716686,-0.88083315,0.31020975,0.35763517,-0.8808385,0.31005904,0.3577527,-0.88082606,0.31001133,0.3578246,-0.88061994,0.3101895,0.35817733,-0.8555927,0.31659976,0.40954325,-0.85537153,0.3167187,0.4099132,-0.8546023,0.31759396,0.4108394,-0.8553501,0.31752118,0.40933663,-0.8556746,0.3168641,0.40916753,-0.85570574,0.31662562,0.40928715,-0.8576671,0.31563446,0.40593353,-0.857094,0.31569588,0.40709454,-0.8565734,0.3162805,0.40773603,-0.8567033,0.31641543,0.40735826,-0.857303,0.31635323,0.40614304,-0.85776955,0.31584224,0.40555528,-0.853284,0.3207308,0.4111425,-0.8532178,0.3212837,0.41084808,-0.8534089,0.32148385,0.41029438,-0.854048,0.3214588,0.40898192,-0.8540406,0.32125062,0.40916085,-0.85394174,0.32115218,0.40944457,-0.85363704,0.32112068,0.41010404,-0.8533438,0.32074052,0.41101086,-0.9249581,0.31600478,0.21117184,-0.92521185,0.31659976,0.20915931,-0.92550063,0.31674933,0.20764998,-0.925849,0.31675905,0.20607625,-0.92704237,0.3176723,0.19919021,-0.9273444,0.31731588,0.19835077,-0.9282231,0.31639123,0.19569981,-0.92862064,0.31644538,0.19371654,-0.92885923,0.31608406,0.19316174,-0.92951894,0.31481674,0.19205461,-0.9299002,0.31378046,0.19190454,-0.93011796,0.31263444,0.19271824,-0.92951304,0.31218836,0.19632594,-0.9295054,0.3119009,0.1968184,-0.92989457,0.3098063,0.19828309,-0.9297616,0.30933303,0.19964103,-0.9298166,0.3088095,0.20019418,-0.9301101,0.30698106,0.20163794,-0.9298584,0.30668744,0.20323919,-0.928868,0.30535528,0.2096722,-0.9289282,0.30428147,0.21096238,-0.92808026,0.30644405,0.2115634,-0.9274641,0.30737767,0.21290685,-0.92757887,0.30659416,0.21353577,-0.92726326,0.30650577,0.21502796,-0.9267945,0.30742475,0.2157359,-0.92626774,0.30858088,0.21634664,-0.92591625,0.30843416,0.21805355,-0.92614347,0.30802795,0.21766299,-0.92581016,0.30781552,0.21937463,-0.92578065,0.3073728,0.22011852,-0.9255732,0.30679533,0.2217901,-0.9251389,0.3068286,0.22354928,-0.92463154,0.30702156,0.22537585,-0.92409825,0.3075812,0.22679572,-0.9238886,0.3085242,0.22636865,-0.9233947,0.31153652,0.2242483,-0.9241917,0.31328273,0.21845724,-0.9242922,0.31406364,0.21690542,-0.92426455,0.31549045,0.21494362,-0.9243949,0.3156797,0.21410385,-0.9276995,0.31677195,0.19755802,-0.92888343,0.3062551,0.20828673,-0.92459196,0.31569746,0.21322483,-0.9291376,0.30662662,0.2065997,-0.9277536,0.30702564,0.21215197,-0.9260332,0.30862388,0.21728742,-0.9328349,0.33131942,0.14158544,-0.9326818,0.33191267,0.14120449,-0.932809,0.33174545,0.14075617,-0.93332404,0.33015886,0.1410723,-0.93311095,0.33005106,0.1427242,-0.9330137,0.330142,0.14314952,-0.9327295,0.33058193,0.14398396,-0.93242615,0.33059958,0.14589515,-0.93224806,0.3312848,0.14547828,-0.93254644,0.3315445,0.14295256,-0.9326967,0.33119547,0.14278123,-0.93286586,0.3310001,0.14212784,-0.92706,0.33723003,0.16381603,-0.9270386,0.33725885,0.16387744,-0.92703235,0.33741215,0.16359691,-0.9271079,0.3373952,0.16320366,-0.92730194,0.33725885,0.1623809,-0.92736983,0.33719546,0.16212483,-0.9274767,0.33703104,0.16185513,-0.9275973,0.33681035,0.16162288,-0.92770773,0.3365752,0.16147919,-0.9276324,0.33653513,0.16199465,-0.9271871,0.33720756,0.1631418,-0.9271207,0.33713698,0.16366379,-0.9268136,0.3370407,0.16559026,-0.9265902,0.33729094,0.16632941,-0.92612785,0.3379311,0.16759995,-0.92609155,0.33803377,0.16759337,-0.926112,0.3381749,0.1671953,-0.92616737,0.33817333,0.16689157,-0.92626333,0.3380498,0.16660893,-0.92640597,0.33781958,0.16628256,-0.92688394,0.33713698,0.16499971,-0.76528275,0.53375643,0.35978663,-0.7644325,0.53425574,0.3608515,-0.7632952,0.5355605,0.36132455,-0.7634189,0.53563386,0.36095405,-0.7645696,0.53446615,0.36024883,-0.7654305,0.5339669,0.35915935,-0.7654167,0.5337962,0.3594426,-0.8389574,-0.45665225,-0.2960054,-0.83998275,-0.45617303,-0.29382834,-0.8405709,-0.4555617,-0.29309377,-0.84033525,-0.45548123,-0.29389372,-0.83995515,-0.4550533,-0.29563802,-0.8393967,-0.45579684,-0.29607838,-0.8169288,-0.5543764,0.15904124,-0.8166293,-0.5540672,0.16163552,-0.8165926,-0.55399615,0.1620643,-0.81671137,-0.55378914,0.16217329,-0.81691885,-0.55353916,0.16198148,-0.8173076,-0.5531744,0.16126531,-0.8174319,-0.55307347,0.16098079,-0.81751126,-0.5530309,0.1607236,-0.8175306,-0.553048,0.16056676,-0.81731725,-0.553589,0.1597864,-0.81714195,-0.5540331,0.15914279,-0.81700325,-0.5542885,0.15896545,-0.8941146,-0.31454912,0.31877577,-0.894279,-0.31474814,0.31811732,-0.89369243,-0.3156168,0.3189042,-0.89252216,-0.31888023,0.31893513,-0.8912904,-0.3227207,0.31851646,-0.8886022,-0.32998025,0.31858945,-0.887043,-0.33359158,0.3191732,-0.8862829,-0.3356652,0.31911045,-0.88554186,-0.3371916,0.31955826,-0.88254917,-0.34578606,0.3186517,-0.8810807,-0.35072145,0.3173189,-0.8799774,-0.35388938,0.316863,-0.87483346,-0.3663887,0.31690034,-0.87417424,-0.3687869,0.31593615,-0.87294096,-0.37244686,0.3150514,-0.8724457,-0.37419572,0.31435016,-0.8713323,-0.37773034,0.31320912,-0.86721593,-0.3912802,0.30795506,-0.8676772,-0.39164725,0.3061842,-0.86695594,-0.39351416,0.30583334,-0.8665537,-0.3948316,0.30527467,-0.86579055,-0.39664105,0.30509454,-0.8646355,-0.39847398,0.30598032,-0.8638415,-0.39920554,0.30726674,-0.8629536,-0.4012376,0.3071149,-0.86253494,-0.40325376,0.3056465,-0.86194825,-0.40491405,0.30510625,-0.86146295,-0.40623525,0.30472046,-0.8603152,-0.4088034,0.3045282,-0.8591584,-0.41201764,0.30346057,-0.8571715,-0.41698435,0.30229303,-0.85616666,-0.41911164,0.3021987,-0.85283047,-0.42534745,0.30291867,-0.85131294,-0.4303142,0.30015993,-0.8511878,-0.4312295,0.2991995,-0.8499063,-0.43498248,0.2974045,-0.8492809,-0.4361916,0.29742044,-0.84800035,-0.43825626,0.2980385,-0.846453,-0.4419035,0.2970498,-0.84561354,-0.443531,0.29701507,-0.84514666,-0.44497558,0.2961821,-0.8439693,-0.44771183,0.29541495,-0.8426476,-0.45151487,0.29339263,-0.84188014,-0.45322186,0.29296374,-0.84053665,-0.45690382,0.29109636,-0.83971035,-0.45877224,0.29054186,-0.837512,-0.46357256,0.28926495,-0.83721054,-0.46526468,0.2874147,-0.8367104,-0.46660975,0.28668985,-0.8351181,-0.47045857,0.28503776,-0.8328256,-0.47528386,0.28373715,-0.8322021,-0.47727418,0.28222173,-0.8310935,-0.47980183,0.2812007,-0.8306277,-0.48142803,0.27979404,-0.8305502,-0.48259887,0.27800128,-0.8301051,-0.48368666,0.2774394,-0.8277583,-0.48783296,0.27719155,-0.8258844,-0.49014935,0.27869084,-0.8196084,-0.5021595,0.27582243,-0.8193313,-0.50498515,0.27145213,-0.817016,-0.50946236,0.2700609,-0.81589043,-0.5114322,0.2697405,-0.8137138,-0.514838,0.2698365,-0.8121875,-0.51757216,0.26920363,-0.8089743,-0.52244484,0.26946604,-0.8060439,-0.5270428,0.26929379,-0.80245626,-0.5329932,0.26829508,-0.8004441,-0.53563267,0.26904818,-0.7992906,-0.53785735,0.26803735,-0.798163,-0.5396464,0.2678015,-0.79575497,-0.54496914,0.26416418,-0.7955927,-0.5460306,0.2624554,-0.7936206,-0.54886335,0.26251742,-0.7923406,-0.55090326,0.26211056,-0.7912448,-0.55221707,0.26265576,-0.7901509,-0.55415654,0.2618629,-0.7893719,-0.5565788,0.2590598,-0.7888289,-0.5575937,0.2585309,-0.7879888,-0.5594191,0.25714567,-0.7869363,-0.5615829,0.25564814,-0.7857361,-0.56335986,0.25542992,-0.78467387,-0.56526244,0.25449038,-0.7829481,-0.56807095,0.25355017,-0.7806214,-0.5724354,0.2508943,-0.7791245,-0.574951,0.24979286,-0.77844983,-0.5770087,0.24713743,-0.7777784,-0.57843906,0.24590461,-0.77697015,-0.5799492,0.24490057,-0.77664846,-0.58077943,0.2439518,-0.7761332,-0.5819207,0.2428695,-0.7735513,-0.5860465,0.2411803,-0.77295667,-0.587482,0.23958914,-0.76930135,-0.59328455,0.23704197,-0.7682247,-0.5953529,0.23534177,-0.76733255,-0.5968336,0.23450053,-0.7673393,-0.5974626,0.23287116,-0.76630497,-0.5990223,0.23226918,-0.76559573,-0.60008764,0.23185766,-0.7639016,-0.60256064,0.23103043,-0.76298547,-0.6049372,0.22782472,-0.7642454,-0.6044389,0.22490558,-0.7636922,-0.6053699,0.22427969,-0.7629364,-0.6065578,0.2236418,-0.7613013,-0.608472,0.22401384,-0.760404,-0.6100129,0.22286776,-0.7592873,-0.6115069,0.22258057,-0.7541083,-0.61744905,0.22377978,-0.75189227,-0.6206935,0.22225584,-0.7503608,-0.62264276,0.221979,-0.7490119,-0.62420714,0.22214106,-0.7417149,-0.6323595,0.22356315,-0.73599577,-0.64083755,0.21826021,-0.73554075,-0.6422953,0.21549143,-0.73425174,-0.6438876,0.21513546,-0.7325725,-0.64629704,0.21362975,-0.7304971,-0.6490293,0.2124498,-0.7265944,-0.6543659,0.2094417,-0.72569644,-0.65572065,0.20831504,-0.7240463,-0.6576155,0.20808381,-0.7214982,-0.66025513,0.20857485,-0.72001296,-0.661919,0.20843346,-0.71906245,-0.6628485,0.2087608,-0.7180727,-0.663582,0.20983435,-0.71766853,-0.6636828,0.2108957,-0.71733296,-0.6640817,0.21078184,-0.7172601,-0.6644385,0.20990348,-0.71679103,-0.66513234,0.20930737,-0.71628207,-0.6657837,0.20897853,-0.7155279,-0.6661894,0.21026535,-0.7148883,-0.6664945,0.21147065,-0.71402884,-0.6662834,0.21500975,-0.71415555,-0.6658373,0.21596898,-0.7158021,-0.6631929,0.21863791,-0.714991,-0.66319937,0.22125661,-0.71319366,-0.66470087,0.22254784,-0.7126519,-0.66502285,0.22332017,-0.7123512,-0.66510814,0.22402431,-0.71239626,-0.66452503,0.2256059,-0.71178234,-0.6655179,0.22461481,-0.7122342,-0.6657837,0.22238366,-0.7119136,-0.66654015,0.22114086,-0.7115548,-0.66714084,0.22048303,-0.71101916,-0.66794676,0.21976991,-0.7102889,-0.66860604,0.22012658,-0.7097325,-0.669061,0.22053832,-0.7091141,-0.6692674,0.2218971,-0.7089606,-0.66888237,0.22354244,-0.70628834,-0.6718065,0.22323267,-0.7040693,-0.67415017,0.22317687,-0.70362633,-0.674739,0.22279425,-0.7060819,-0.6724413,0.22197068,-0.7070277,-0.6717182,0.22114824,-0.7070899,-0.67198575,0.2201342,-0.7069255,-0.6724665,0.21919185,-0.70648265,-0.6730289,0.21889345,-0.7049932,-0.67443717,0.21936077,-0.7035636,-0.6758038,0.21974425,-0.7041475,-0.67565686,0.2183213,-0.70257884,-0.67776376,0.21683906,-0.70099556,-0.6795439,0.2163916,-0.6995606,-0.6808259,0.21700495,-0.6980389,-0.6825019,0.21663985,-0.6983923,-0.6826127,0.21514669,-0.6975589,-0.6837018,0.21439084,-0.69676304,-0.68469137,0.21382004,-0.6959833,-0.68611854,0.2117747,-0.6945667,-0.6877869,0.2110126,-0.68975866,-0.6929239,0.20997508,-0.68991023,-0.69337606,0.2079748,-0.68802214,-0.6954831,0.20719269,-0.6869126,-0.6967728,0.20653996,-0.68566173,-0.6976342,0.2077846,-0.68451273,-0.69832027,0.20926313,-0.6826752,-0.69960624,0.21096374,-0.68159163,-0.70011747,0.21276374,-0.67758834,-0.7066258,0.20384786,-0.67776126,-0.706838,0.20253313,-0.6764421,-0.7083687,0.20159337,-0.6749712,-0.71004015,0.20064096,-0.6739992,-0.71024895,0.20315392,-0.6721789,-0.7115327,0.20468672,-0.67147285,-0.71193504,0.20560338,-0.67078567,-0.7126529,0.2053592,-0.6727425,-0.7114597,0.20308295,-0.6730589,-0.71136636,0.20236008,-0.67301863,-0.7118155,0.20090972,-0.6724122,-0.7130522,0.1985407,-0.6730811,-0.71300554,0.19643044,-0.6714807,-0.71481377,0.19533266,-0.6705021,-0.7157272,0.19534986,-0.6698436,-0.7160676,0.19635876,-0.6675814,-0.7181157,0.19658314,-0.66665846,-0.7191764,0.19583602,-0.6646507,-0.72126806,0.19496636,-0.66406834,-0.72190654,0.19458714,-0.66301477,-0.7229366,0.19435577,-0.6614642,-0.7253826,0.19048648,-0.6625479,-0.7238992,0.1923545,-0.6659166,-0.7201918,0.19462475,-0.66716486,-0.718936,0.19499266,-0.6684095,-0.71763504,0.19552156,-0.6691221,-0.7170533,0.19521819,-0.6693074,-0.71713173,0.19429281,-0.6691861,-0.7174807,0.19342001,-0.6664126,-0.7219702,0.18615395,-0.66635174,-0.72191364,0.18659063,-0.6664267,-0.7209364,0.19006878,-0.6671404,-0.7200168,0.19104844,-0.66858727,-0.7187013,0.1909438,-0.6690091,-0.7180694,0.19184142,-0.6696006,-0.7173394,0.19250768,-0.67252934,-0.71409816,0.19434035,-0.6732,-0.7132803,0.1950204,-0.67379874,-0.7126004,0.19543783,-0.67459077,-0.71212065,0.19445162,-0.67475545,-0.71208,0.19402887,-0.6748683,-0.71224266,0.1930368,-0.6745643,-0.7127653,0.19216835,-0.67421496,-0.71320397,0.1917664,-0.6728516,-0.71451443,0.19167614,-0.6711225,-0.71694744,0.18862918,-0.67126566,-0.7170284,0.1878105,-0.67119724,-0.717406,0.18660899,-0.6716928,-0.7174547,0.18462834,-0.67237264,-0.7171982,0.18314424,-0.6727132,-0.7178214,0.17941384,-0.6711671,-0.7193944,0.17890352,-0.66979575,-0.7205229,0.17950061,-0.6688126,-0.7212729,0.18015318,-0.6683715,-0.72217774,0.17815408,-0.6672592,-0.7238028,0.17571183,-0.6669223,-0.7245221,0.17401825,-0.6664468,-0.72517025,0.17313798,-0.6655432,-0.7266988,0.17017949,-0.66452265,-0.72783595,0.16930568,-0.66366893,-0.7286699,0.16906711,-0.66237104,-0.72971845,0.16963361,-0.66100436,-0.7306408,0.17098884,-0.660875,-0.73057437,0.17177105,-0.66114414,-0.7302298,0.17220014,-0.66162926,-0.7297173,0.17250894,-0.66318667,-0.7283803,0.17217878,-0.66348517,-0.7283279,0.17124811,-0.6643709,-0.7273225,0.172085,-0.66413355,-0.72713894,0.17376886,-0.6641246,-0.7265758,0.17614211,-0.6647022,-0.72551984,0.17830314,-0.6634949,-0.7269107,0.17713103,-0.6626046,-0.72771657,0.17715466,-0.6619635,-0.7282647,0.17729887,-0.6606361,-0.7289652,0.17935906,-0.65947074,-0.72973233,0.18052432,-0.6586447,-0.7299853,0.18250664,-0.658534,-0.7299934,0.18287307,-0.65875566,-0.72973704,0.1830979,-0.65638906,-0.7310491,0.18633467,-0.65523565,-0.73234224,0.18531348,-0.6538515,-0.73352253,0.18553422,-0.65370333,-0.7338433,0.18478626,-0.6528481,-0.73524046,0.18223828,-0.6518263,-0.73645693,0.1809798,-0.6500709,-0.737648,0.18243682,-0.64946336,-0.7379805,0.18325426,-0.6491893,-0.738083,0.18381198,-0.64838904,-0.7392398,0.18197851,-0.64946926,-0.73845994,0.1812915,-0.6499518,-0.738192,0.18065207,-0.65028596,-0.7380748,0.1799273,-0.6498323,-0.7386668,0.17913489,-0.6489914,-0.7396574,0.17809278,-0.6481537,-0.74031204,0.1784231,-0.64784396,-0.74048734,0.17882021,-0.64707446,-0.7408001,0.18030511,-0.6465313,-0.7411526,0.1808041,-0.6457743,-0.7418731,0.18055438,-0.6450211,-0.74249434,0.18069294,-0.64432293,-0.74278206,0.18199646,-0.6440468,-0.7426154,0.1836467,-0.6438984,-0.74231976,0.18535428,-0.644369,-0.74158955,0.18663734,-0.64574444,-0.740083,0.18785977,-0.64659894,-0.7391767,0.1884879,-0.6435093,-0.7417461,0.18896669,-0.6427292,-0.74246126,0.18881318,-0.6420143,-0.7430741,0.18883443,-0.6415653,-0.74337065,0.18919313,-0.6402515,-0.744389,0.18963927,-0.6393976,-0.74484634,0.19072127,-0.6391993,-0.7454556,0.18899761,-0.6422111,-0.7436374,0.18592569,-0.6434486,-0.7436693,0.18146594,-0.6443196,-0.7432976,0.17989138,-0.6450703,-0.7431335,0.1778677,-0.64304984,-0.7450328,0.1772375,-0.64159644,-0.7463411,0.17699987,-0.6402516,-0.7473612,0.17756453,-0.6388954,-0.7485389,0.17748863,-0.6381266,-0.74886984,0.17885305,-0.63730896,-0.7490043,0.18118994,-0.6375836,-0.748888,0.18070379,-0.6374582,-0.7491523,0.18004979,-0.63682145,-0.7500616,0.17851065,-0.63445,-0.7523419,0.17735499,-0.6312225,-0.7552573,0.17647824,-0.62729365,-0.7587188,0.17563751,-0.62669295,-0.7592768,0.17537022,-0.6263085,-0.7595697,0.17547506,-0.6256832,-0.75999737,0.17585373,-0.6249687,-0.76041263,0.17659755,-0.6260829,-0.7593212,0.17734574,-0.6271001,-0.75836766,0.1778313,-0.6279038,-0.7575706,0.17839165,-0.6284875,-0.7568625,0.1793392,-0.62943006,-0.7559796,0.17975728,-0.6298644,-0.75523716,0.18134986,-0.6298368,-0.7553957,0.18078403,-0.62954074,-0.7557498,0.18033504,-0.6269192,-0.75819886,0.17918356,-0.62631154,-0.7588374,0.1786046,-0.62548065,-0.75960845,0.17823857,-0.62436795,-0.760303,0.17917572,-0.62365353,-0.7606716,0.18009698,-0.62237036,-0.7618068,0.17973737,-0.6229625,-0.7614599,0.17915514,-0.62390006,-0.76103336,0.17769907,-0.62399083,-0.76130414,0.17621438,-0.62385905,-0.76158476,0.17546673,-0.62245846,-0.76289546,0.17474544,-0.6216627,-0.763609,0.17446142,-0.6196054,-0.76500374,0.17566545,-0.6187746,-0.7654668,0.17657447,-0.6176546,-0.76629966,0.1768829,-0.61923534,-0.76575965,0.17366579,-0.6183717,-0.76677585,0.17225316,-0.6172915,-0.76821697,0.16968746,-0.61602974,-0.7690162,0.1706502,-0.6146629,-0.7699589,0.1713268,-0.6143448,-0.77010125,0.17182729,-0.61368483,-0.77049154,0.17243469,-0.61192304,-0.7712896,0.17510724,-0.611149,-0.7717416,0.17581753,-0.61219215,-0.77146196,0.17339918,-0.61061394,-0.7728418,0.17281833,-0.6101489,-0.77315325,0.17306757,-0.60891664,-0.7740291,0.17349209,-0.60712695,-0.7752428,0.17434287,-0.6074392,-0.77475375,0.17542587,-0.6101521,-0.7720667,0.17784086,-0.6104638,-0.77154326,0.1790391,-0.60958475,-0.77240133,0.17833288,-0.608588,-0.773043,0.17895603,-0.6083002,-0.7733002,0.17882298,-0.60843396,-0.77329475,0.17839086,-0.6080911,-0.7738035,0.17735095,-0.60654366,-0.7753398,0.17593472,-0.60515463,-0.77646875,0.17573872,-0.60773635,-0.7751406,0.17266649,-0.6080509,-0.7749165,0.17256436,-0.6084064,-0.774702,0.17227425,-0.6116689,-0.77228546,0.1715702,-0.6127009,-0.77149016,0.17146602,-0.6146644,-0.77031326,0.16972108,-0.61517525,-0.7700784,0.1689338,-0.6147854,-0.77060777,0.1679362,-0.6141466,-0.7712905,0.1671376,-0.6130807,-0.7720169,0.1676963,-0.6116039,-0.77360696,0.16574943,-0.61231357,-0.77363294,0.16298494,-0.61083984,-0.7747851,0.16304205,-0.6093857,-0.7758378,0.16347699,-0.60652345,-0.7778362,0.16462117,-0.6058544,-0.77809536,0.16585569,-0.60497636,-0.7785792,0.16678745,-0.6044977,-0.77878666,0.1675527,-0.60405475,-0.7789277,0.16849196,-0.60338706,-0.7792835,0.16923717,-0.6029005,-0.77938825,0.17048436,-0.5966403,-0.78388727,0.17187543,-0.5975729,-0.78346264,0.17056616,-0.5966088,-0.7845661,0.16886063,-0.59604496,-0.78490734,0.1692657,-0.5945772,-0.78568935,0.17079279,-0.59469295,-0.7854014,0.17171185,-0.5941592,-0.78574836,0.17197202,-0.5938703,-0.7858696,0.17241563,-0.5926602,-0.7864637,0.17386426,-0.59108204,-0.7875845,0.17416306,-0.5898226,-0.7884514,0.17451006,-0.5890275,-0.7887626,0.17578423,-0.5894729,-0.78791004,0.17809951,-0.5903752,-0.78650254,0.1813032,-0.5901218,-0.7858475,0.18493243,-0.5908765,-0.7851797,0.18535863,-0.5916418,-0.7847225,0.18485291,-0.59204406,-0.7845376,0.18434915,-0.5931486,-0.78384805,0.18373094,-0.595619,-0.782657,0.18079269,-0.58867043,-0.7868373,0.18534897,-0.58827007,-0.7874355,0.18407524,-0.5874774,-0.78808534,0.18382557,-0.58704674,-0.7884082,0.1838166,-0.5850077,-0.7898374,0.18418148,-0.58344257,-0.79154646,0.18179362,-0.5840941,-0.7907345,0.18322928,-0.584766,-0.79015607,0.18358134,-0.58554417,-0.78956753,0.18363327,-0.5863357,-0.789083,0.18318965,-0.5872054,-0.78849113,0.18295231,-0.58798987,-0.7878512,0.18318957,-0.5884405,-0.7875867,0.18288001,-0.58877534,-0.78746796,0.18231246,-0.5887758,-0.787593,0.18177003,-0.5875885,-0.78979033,0.1759859,-0.58825326,-0.7895769,0.17471814,-0.588385,-0.78965324,0.17392766,-0.5897346,-0.7888454,0.1730202,-0.5898411,-0.7888454,0.17265679,-0.5882232,-0.79051846,0.1705109,-0.5898236,-0.7897182,0.16868104,-0.59015584,-0.7896711,0.16773678,-0.59079355,-0.78930074,0.16723424,-0.59120065,-0.78913647,0.16656943,-0.5911176,-0.7892757,0.16620402,-0.59032303,-0.7898478,0.16631074,-0.5881258,-0.79140687,0.16668269,-0.58718234,-0.79210347,0.16670026,-0.58709824,-0.79203695,0.16731133,-0.58501095,-0.79348725,0.16775027,-0.584255,-0.79417336,0.16713695,-0.58336455,-0.7948317,0.16711788,-0.5824217,-0.79534847,0.16794558,-0.5821755,-0.7950665,0.17012046,-0.5814803,-0.7953226,0.17129676,-0.58207273,-0.79436284,0.1737211,-0.58126885,-0.7946692,0.17500688,-0.58188075,-0.79401904,0.17592204,-0.5819237,-0.7937257,0.17709936,-0.5812574,-0.7944354,0.1761029,-0.58015436,-0.7955489,0.174708,-0.57984626,-0.79604745,0.17345552,-0.57964104,-0.79692036,0.17010069,-0.5783433,-0.7976209,0.17123052,-0.57738185,-0.7982661,0.1714683,-0.57581645,-0.7992096,0.172335,-0.57490677,-0.79941136,0.17442387,-0.57508034,-0.7991143,0.17521109,-0.57529485,-0.7988673,0.17563277,-0.57586867,-0.7983985,0.17588364,-0.5782145,-0.79633605,0.17752984,-0.5787291,-0.79560465,0.17912546,-0.57954246,-0.79486567,0.17977512,-0.57980657,-0.7939911,0.1827634,-0.57914233,-0.79445714,0.18284436,-0.5787248,-0.79468787,0.18316336,-0.575889,-0.7952917,0.18937531,-0.5769729,-0.79490304,0.18770036,-0.57737267,-0.7949444,0.18629071,-0.57678336,-0.7967155,0.1804588,-0.57738113,-0.79625374,0.1805853,-0.5778484,-0.7959917,0.18024552,-0.57783467,-0.79613197,0.17966922,-0.57740045,-0.79673594,0.17838325,-0.57688636,-0.7972847,0.17759286,-0.57608646,-0.7979683,0.17711824,-0.5736322,-0.79991484,0.17630213,-0.5731477,-0.8004935,0.17524809,-0.5724288,-0.80118555,0.17443314,-0.5716309,-0.80167896,0.17478265,-0.56906706,-0.8030258,0.17695259,-0.56797034,-0.80344915,0.17854731,-0.5691045,-0.8025227,0.17910156,-0.5719237,-0.7993109,0.1844056,-0.5720048,-0.79865396,0.18698208,-0.57344943,-0.7961526,0.19312362,-0.56896734,-0.79975843,0.19147491,-0.5684282,-0.80107224,0.18754369,-0.56524295,-0.80369663,0.18593583,-0.5654573,-0.8038103,0.18478954,-0.5658375,-0.8034248,0.18530135,-0.5665106,-0.80280024,0.18595004,-0.56808835,-0.8016269,0.1861987,-0.5690637,-0.80108756,0.1855404,-0.56930697,-0.80124974,0.18408798,-0.56988156,-0.8012192,0.18243551,-0.5699706,-0.80129254,0.18183444,-0.5690216,-0.8022989,0.18036334,-0.56807303,-0.80300236,0.18022257,-0.56729174,-0.80355775,0.18020828,-0.5644982,-0.8052284,0.18151867,-0.5638168,-0.80557495,0.18209781,-0.5623245,-0.80616236,0.18410157,-0.56067413,-0.8069926,0.18549258,-0.5593551,-0.80738187,0.18776685,-0.5583072,-0.8078191,0.18900093,-0.5583728,-0.80721796,0.19136092,-0.55869025,-0.80674696,0.19241777,-0.56130517,-0.80458724,0.193845,-0.56586826,-0.8010132,0.19537391,-0.5688989,-0.79824764,0.19787565,-0.5699279,-0.7974739,0.19803433,-0.5717993,-0.79519254,0.20177817,-0.5713557,-0.7950592,0.20355214,-0.57153416,-0.79349756,0.20907009,-0.57111126,-0.79341257,0.21054317,-0.5711138,-0.7929786,0.21216492,-0.57145184,-0.7925195,0.21296856,-0.5729966,-0.79089725,0.2148404,-0.57256216,-0.7902772,0.21825342,-0.57141805,-0.7908253,0.21926416,-0.5680258,-0.79182774,0.22440025,-0.5689456,-0.7911214,0.22456126,-0.56966865,-0.790939,0.22336774,-0.57180405,-0.7902417,0.22035928,-0.57380795,-0.78947127,0.21789812,-0.5748743,-0.78947127,0.21506907,-0.57649595,-0.7888202,0.21310821,-0.57828027,-0.788099,0.2109312,-0.5802573,-0.788035,0.20567526,-0.5819444,-0.7879908,0.20102543,-0.58363384,-0.78794575,0.19624732,-0.58469415,-0.78791744,0.19318114,-0.58539474,-0.7878985,0.19112557,-0.58590126,-0.7876256,0.19069768,-0.5869371,-0.7867237,0.19123457,-0.58799255,-0.78605825,0.19072802,-0.5893266,-0.78525263,0.18992758,-0.5904535,-0.78468025,0.18878987,-0.5928687,-0.7830515,0.18798168,-0.593651,-0.7822856,0.18870033,-0.5956692,-0.78041863,0.1900654,-0.596645,-0.77959317,0.19039242,-0.5975211,-0.77901435,0.19001348,-0.5989488,-0.7778062,0.19046748,-0.5991221,-0.7775128,0.19111928,-0.6006089,-0.7761593,0.19195233,-0.60224664,-0.77482927,0.1921941,-0.60376626,-0.77363944,0.19221933,-0.60455364,-0.7731132,0.19186185,-0.6050696,-0.77286345,0.19124037,-0.6052892,-0.77281684,0.19073299,-0.6051393,-0.77326137,0.18940248,-0.6058704,-0.773151,0.18750633,-0.6058749,-0.7733218,0.18678603,-0.60560673,-0.7738014,0.18566625,-0.6051906,-0.7745069,0.18407433,-0.60570216,-0.7742633,0.18341534,-0.6066539,-0.7735086,0.18345411,-0.60757035,-0.77285254,0.18318608,-0.60834086,-0.77227354,0.18307114,-0.6095213,-0.7713199,0.18316476,-0.61106694,-0.7700894,0.18319264,-0.61298835,-0.7686315,0.18289566,-0.6147138,-0.76744825,0.1820717,-0.61595386,-0.76638395,0.18236366,-0.6175507,-0.76504433,0.182588,-0.6188527,-0.76373446,0.18366021,-0.62019426,-0.7626463,0.18365642,-0.62333757,-0.7599963,0.1839998,-0.6239521,-0.75924474,0.18501683,-0.6249445,-0.75829214,0.18557301,-0.6240445,-0.7581421,0.18917985,-0.6255153,-0.75685817,0.18946339,-0.6276239,-0.75444335,0.19210264,-0.62764543,-0.75406736,0.19350359,-0.6277797,-0.7535209,0.19518948,-0.62820244,-0.752893,0.19624957,-0.6286869,-0.752333,0.19684497,-0.6294002,-0.7516061,0.1973416,-0.6302208,-0.75083196,0.19766912,-0.63297474,-0.74799955,0.19959873,-0.6331144,-0.7474019,0.20138638,-0.63459426,-0.74581456,0.20261008,-0.63619417,-0.74442875,0.20268899,-0.63764006,-0.7433308,0.2021745,-0.6417318,-0.7394613,0.20341401,-0.6428731,-0.7381266,0.20465398,-0.6438631,-0.737191,0.20491418,-0.6442056,-0.7366437,0.20580399,-0.64482296,-0.73542076,0.20822966,-0.6458351,-0.73422074,0.209325,-0.64593935,-0.7338943,0.21014625,-0.6458177,-0.7337497,0.21102363,-0.64649886,-0.7330695,0.21130173,-0.6504438,-0.7293419,0.21209241,-0.65061253,-0.72886825,0.2132005,-0.6511857,-0.7278428,0.21494664,-0.65171826,-0.7271905,0.21553953,-0.6525802,-0.7263158,0.21588077,-0.65452635,-0.72450686,0.21606736,-0.6559385,-0.72320616,0.21614242,-0.65647465,-0.7227257,0.21612182,-0.6575646,-0.7218417,0.21576229,-0.6587147,-0.7205842,0.21645622,-0.6589676,-0.7198477,0.21813081,-0.65981656,-0.7187784,0.21908842,-0.6608945,-0.71786773,0.21882495,-0.66163516,-0.7173857,0.21816647,-0.66502446,-0.71367556,0.22002193,-0.66457033,-0.7134058,0.22225758,-0.6653866,-0.712488,0.22275884,-0.6660811,-0.7111914,0.22481719,-0.6672907,-0.70994544,0.22516786,-0.6698937,-0.70794386,0.22373642,-0.6711856,-0.7068502,0.22332202,-0.6725918,-0.7062505,0.22097622,-0.6754144,-0.7042858,0.21862528,-0.6747766,-0.704529,0.21980779,-0.6743047,-0.7043173,0.22192425,-0.6738416,-0.7042677,0.22348265,-0.6735828,-0.70416355,0.2245884,-0.6733113,-0.7040124,0.22587267,-0.6725161,-0.7044504,0.22687359,-0.67238796,-0.70417696,0.22809927,-0.6737679,-0.7025352,0.22908743,-0.6743382,-0.701659,0.23009263,-0.67506963,-0.70083517,0.23045845,-0.67592907,-0.700177,0.22993919,-0.6765706,-0.69997376,0.22866787,-0.68068624,-0.6976831,0.22339332,-0.681661,-0.6965491,0.22395909,-0.68217826,-0.69598883,0.22412579,-0.6824555,-0.69549525,0.2248131,-0.6832019,-0.69446343,0.22573368,-0.68369067,-0.693774,0.22637287,-0.6846504,-0.69287854,0.2262148,-0.68616796,-0.6915536,0.2256705,-0.6864977,-0.6909417,0.22654036,-0.68714225,-0.6902105,0.22681473,-0.6878606,-0.6894949,0.226814,-0.68890345,-0.68869823,0.22606802,-0.69123775,-0.6864222,0.22586483,-0.69118285,-0.6861099,0.22697912,-0.69128126,-0.68575025,0.22776486,-0.6918799,-0.6850216,0.22813933,-0.69280285,-0.68412465,0.22802994,-0.6962469,-0.68187124,0.22425865,-0.698529,-0.67914367,0.22543535,-0.70004165,-0.67749554,0.22570221,-0.7013584,-0.6758792,0.22645932,-0.70170486,-0.6752458,0.22727399,-0.70308787,-0.67376727,0.22738765,-0.7043992,-0.6723908,0.22740336,-0.704744,-0.67179006,0.22810972,-0.70523137,-0.67104745,0.22878817,-0.7052527,-0.6708703,0.22924156,-0.7046899,-0.67129505,0.22972812,-0.70456946,-0.671046,0.23082262,-0.70468193,-0.6704455,0.2322201,-0.70524496,-0.6697371,0.23255496,-0.7061939,-0.6687227,0.23259425,-0.7086717,-0.66616774,0.23238985,-0.710711,-0.66401285,0.23232897,-0.71111107,-0.66341114,0.23282339,-0.71303344,-0.66122496,0.23316287,-0.7141131,-0.6599018,0.23360686,-0.71734285,-0.6559883,0.2347311,-0.71841645,-0.654648,0.23518877,-0.71982276,-0.6532774,0.23469938,-0.7208403,-0.6519887,0.23515959,-0.72141004,-0.6510472,0.23601912,-0.72226083,-0.6497721,0.23692928,-0.7233025,-0.6481316,0.2382415,-0.7232574,-0.64787716,0.23906876,-0.72369915,-0.64725894,0.23940629,-0.72419447,-0.6467859,0.2391868,-0.72511274,-0.6460485,0.23839669,-0.7265597,-0.6440519,0.23939127,-0.7263084,-0.6440559,0.2401418,-0.7269114,-0.64306575,0.2409694,-0.72783315,-0.6418405,0.24145323,-0.7282447,-0.641273,0.24171996,-0.72895694,-0.64055616,0.24147372,-0.73039955,-0.6388624,0.2416015,-0.7312564,-0.63789797,0.24155787,-0.73141253,-0.63734645,0.24253896,-0.73094887,-0.63757366,0.24333833,-0.73083836,-0.63745683,0.24397558,-0.73120713,-0.63694197,0.24421507,-0.7316162,-0.63638985,0.24442933,-0.7318333,-0.63601387,0.24475774,-0.73262864,-0.63476217,0.2456264,-0.73364156,-0.63320804,0.24661237,-0.734446,-0.63211,0.24703461,-0.7376641,-0.62722135,0.24989015,-0.73765063,-0.62673134,0.25115606,-0.73770267,-0.62602586,0.25275758,-0.7372995,-0.62576663,0.25456932,-0.73764837,-0.6249847,0.255478,-0.7382659,-0.62394094,0.25624442,-0.7388633,-0.62308276,0.25661057,-0.7395453,-0.6224853,0.25609547,-0.7403833,-0.6217754,0.25539753,-0.7431851,-0.6183254,0.25563565,-0.7447859,-0.6162281,0.25604075,-0.7464228,-0.6144224,0.25561312,-0.749648,-0.61057454,0.25539494,-0.75026584,-0.6095805,0.25595447,-0.7512874,-0.60800135,0.25671324,-0.7530331,-0.60599256,0.25634763,-0.7535966,-0.60498047,0.25708142,-0.75452244,-0.6034078,0.25805995,-0.7551186,-0.60260844,0.2581841,-0.75663745,-0.60070235,0.2581792,-0.75872916,-0.5974161,0.2596613,-0.7589475,-0.5968418,0.26034307,-0.7596286,-0.59591687,0.26047543,-0.76008165,-0.5951557,0.26089358,-0.7600853,-0.59464467,0.26204586,-0.7604121,-0.5936986,0.26324007,-0.7602533,-0.5935835,0.26395735,-0.7599631,-0.5935835,0.26479173,-0.7599605,-0.59331465,0.26540104,-0.760392,-0.59258455,0.26579604,-0.7609015,-0.5917769,0.26613712,-0.76112956,-0.5907736,0.26770943,-0.7614926,-0.58985025,0.26871106,-0.7611237,-0.58965766,0.27017492,-0.7615662,-0.5886563,0.2711099,-0.76244265,-0.5873689,0.2714387,-0.76338744,-0.5860686,0.27159396,-0.7642448,-0.58455956,0.27243334,-0.76599354,-0.58225334,0.27246088,-0.7667984,-0.58103037,0.27280748,-0.7676723,-0.58002007,0.27249947,-0.76836294,-0.578931,0.2728685,-0.7689355,-0.5782304,0.27274135,-0.77023476,-0.5766718,0.27237478,-0.77017576,-0.57634175,0.27323887,-0.77026784,-0.5756745,0.27438357,-0.77212775,-0.5724576,0.2758821,-0.7726303,-0.5715013,0.27645746,-0.7732628,-0.5703482,0.2770697,-0.77366865,-0.56975037,0.27716672,-0.77406055,-0.5688871,0.2778446,-0.7746999,-0.56757444,0.27874586,-0.7751841,-0.56630373,0.2799815,-0.7755545,-0.5654282,0.2807244,-0.776126,-0.5642468,0.2815209,-0.7765276,-0.5635373,0.28183427,-0.77651167,-0.56318396,0.28258362,-0.7762913,-0.56309235,0.2833706,-0.7761049,-0.5628683,0.28432456,-0.7762464,-0.56243426,0.2847967,-0.7766747,-0.5618015,0.284878,-0.77758616,-0.5604019,0.28514835,-0.7790952,-0.55817664,0.2853937,-0.7830643,-0.55149627,0.2875102,-0.7834999,-0.5504609,0.28830674,-0.7840476,-0.54966384,0.2883383,-0.7846439,-0.5487864,0.2883876,-0.7853236,-0.54830754,0.2874468,-0.78831816,-0.5450307,0.28547508,-0.7886277,-0.54410726,0.2863803,-0.78923213,-0.5429483,0.2869143,-0.7923017,-0.5391541,0.28560618,-0.79362893,-0.53688276,0.28619933,-0.7942905,-0.53627855,0.28549582,-0.7954917,-0.5344993,0.28548828,-0.79618096,-0.533861,0.2847602,-0.7983197,-0.5305466,0.28496665,-0.7980965,-0.5303788,0.28590262,-0.7985524,-0.52929324,0.28664044,-0.79904634,-0.52868444,0.28638738,-0.7996008,-0.5281577,0.28581122,-0.8005336,-0.52757716,0.284268,-0.8024272,-0.5249727,0.28375036,-0.8035585,-0.5235316,0.28321087,-0.8046824,-0.5214257,0.28390384,-0.80557156,-0.5197783,0.28440282,-0.80625165,-0.5183681,0.28504866,-0.80683845,-0.51725715,0.28540623,-0.80690986,-0.51672447,0.2861683,-0.8065509,-0.51697123,0.28673375,-0.80641526,-0.51684856,0.2873359,-0.8067403,-0.5159423,0.28805152,-0.8068517,-0.51537704,0.2887505,-0.80712014,-0.5149271,0.28880304,-0.8080657,-0.5135765,0.28856364,-0.80849653,-0.51255226,0.28917745,-0.8095614,-0.5102014,0.29035312,-0.81062037,-0.50760883,0.2919381,-0.81099117,-0.50663936,0.29259175,-0.8114875,-0.5058163,0.29263952,-0.8116081,-0.5054456,0.2929456,-0.81111896,-0.5058574,0.29358888,-0.8106193,-0.5054045,0.2957409,-0.81099844,-0.50425094,0.2966689,-0.81146395,-0.5032203,0.29714575,-0.8115522,-0.50264287,0.2978811,-0.8121016,-0.5018174,0.29777563,-0.81294763,-0.50118333,0.29653227,-0.81338084,-0.500248,0.29692352,-0.8144353,-0.4980947,0.29765224,-0.8153086,-0.49650654,0.29791477,-0.81740946,-0.49311325,0.2977936,-0.82016677,-0.4870798,0.3001329,-0.82015014,-0.4863846,0.3013035,-0.820541,-0.4855042,0.30165893,-0.8222342,-0.48150724,0.30344966,-0.82331353,-0.4793217,0.30398273,-0.8236835,-0.4781097,0.30488777,-0.8246773,-0.47583273,0.3057623,-0.82497585,-0.4738677,0.30800042,-0.8254257,-0.47256425,0.3087968,-0.8252086,-0.4724382,0.3095689,-0.82527184,-0.47201744,0.31004196,-0.825884,-0.46906525,0.31287935,-0.82583785,-0.46831083,0.31412846,-0.82631695,-0.4671299,0.31462666,-0.82691026,-0.46551496,0.3154603,-0.8278021,-0.46283236,0.31706434,-0.8284759,-0.46095926,0.31803188,-0.8284857,-0.46027994,0.31898865,-0.8292972,-0.4578225,0.32041338,-0.82942444,-0.45561475,0.32321867,-0.82877505,-0.45629588,0.32392272,-0.8284964,-0.4561669,0.3248161,-0.82859045,-0.45531738,0.32576656,-0.82811266,-0.45473906,0.32778323,-0.8279216,-0.45442477,0.3287004,-0.8281673,-0.4535744,0.32925552,-0.8288702,-0.4520851,0.32953498,-0.8297051,-0.45097807,0.3289501,-0.8313398,-0.44885606,0.32772312,-0.8344435,-0.4427105,0.3281942,-0.8346647,-0.44078094,0.3302228,-0.83536595,-0.43939728,0.3302935,-0.8381512,-0.43430418,0.32997334,-0.83896005,-0.43289718,0.3297667,-0.8421015,-0.42519468,0.33177474,-0.8418153,-0.42497864,0.3327763,-0.8417786,-0.42458993,0.33336508,-0.8419405,-0.42407137,0.33361596,-0.84247667,-0.42342457,0.33308354,-0.84294516,-0.42260125,0.33294395,-0.8435617,-0.4214347,0.33286095,-0.8440919,-0.42102343,0.3320364,-0.84581006,-0.41675332,0.3330494,-0.84568185,-0.41623268,0.33402485,-0.8458885,-0.4154097,0.3345257,-0.8458338,-0.41464984,0.33560494,-0.84573823,-0.41406345,0.33656842,-0.84590703,-0.4129772,0.3374777,-0.8436609,-0.40863237,0.34821817,-0.8429043,-0.40727538,0.3516234,-0.8431643,-0.4063349,0.35208791,-0.84332556,-0.40569478,0.3524397,-0.8446605,-0.40089253,0.35473055,-0.846344,-0.39466566,0.35768822,-0.84737575,-0.39075312,0.3595363,-0.8496645,-0.38786438,0.3572555,-0.8504951,-0.38840315,0.35468444,-0.85299355,-0.38879427,0.34819686,-0.8532887,-0.388444,0.34786445,-0.85386425,-0.3878848,0.34707522,-0.85451496,-0.38637614,0.34715647,-0.85503125,-0.38478786,0.347649,-0.8559311,-0.38257647,0.3478754,-0.8573321,-0.3800001,0.3472485,-0.857615,-0.3791692,0.34745836,-0.8581485,-0.37790552,0.3475178,-0.8592527,-0.375531,0.34736335,-0.8602386,-0.3743285,0.34621918,-0.86112857,-0.3723504,0.3461399,-0.8618385,-0.3706065,0.34624448,-0.86309177,-0.36842564,0.34544927,-0.8641835,-0.36564475,0.34567434,-0.8650424,-0.36325604,0.34604445,-0.8667475,-0.36048022,0.3446778,-0.8685346,-0.35752442,0.3432549,-0.86926526,-0.35712337,0.3418198,-0.8706155,-0.3538033,0.34183604,-0.87061787,-0.3525069,0.34316668,-0.8706699,-0.35230598,0.34324116,-0.8708567,-0.35203797,0.3430422,-0.8727044,-0.3500924,0.34032688,-0.8737334,-0.3482126,0.33961436,-0.87367594,-0.34757343,0.34041592,-0.87369823,-0.34710035,0.34084138,-0.8744496,-0.34571087,0.340326,-0.8748535,-0.3444535,0.34056303,-0.8752118,-0.34391424,0.3401873,-0.87527907,-0.3431619,0.34077337,-0.87465745,-0.34275678,0.3427711,-0.87485355,-0.34148034,0.3435439,-0.87520427,-0.34041807,0.34370485,-0.87557065,-0.3396663,0.34351555,-0.8772187,-0.33305648,0.3457754,-0.87718976,-0.33270127,0.34619066,-0.87735707,-0.3323252,0.34612796,-0.87764,-0.33186373,0.34585333,-0.8781966,-0.3311916,0.34508383,-0.87952447,-0.3295652,0.3432542,-0.8804224,-0.32824367,0.34221688,-0.88137895,-0.32710847,0.34083906,-0.88269985,-0.32503954,0.33939695,-0.8830127,-0.32407707,0.33950347,-0.8835798,-0.32248026,0.33954862,-0.884684,-0.3198897,0.33912355,-0.8853105,-0.31813374,0.3391405,-0.88603866,-0.31619567,0.3390514,-0.88655454,-0.3149309,0.33887994,-0.88700193,-0.3137012,0.3388499,-0.88761157,-0.31237543,0.338478,-0.8880691,-0.3107218,0.3387998,-0.8880676,-0.31019047,0.33929002,-0.8881907,-0.30985498,0.33927456,-0.8900249,-0.3080735,0.3360749,-0.89114535,-0.30522472,0.33570507,-0.89270157,-0.30269486,0.33385593,-0.8933541,-0.30080664,0.33381706,-0.89346194,-0.30192477,0.3325165,-0.8936522,-0.30319837,0.33084214,-0.8942756,-0.30345008,0.3289212,-0.8943459,-0.30409643,0.3281322,-0.893879,-0.30544868,0.32814845,-0.89307874,-0.30735666,0.32854575,-0.8930751,-0.31441003,0.32181233,-0.89362603,-0.31441322,0.32027632,-0.87627244,-0.36249045,0.31740716,-0.8692323,-0.3835871,0.31192327,-0.86730504,-0.39024323,0.30901825,-0.851632,-0.42856413,0.3017544,-0.7960322,-0.544193,0.2649275,-0.77428895,-0.58438665,0.24283521,-0.7565464,-0.6144305,0.22385873,-0.73641926,-0.6399644,0.21939056,-0.7035533,-0.6757147,0.22005102,-0.6921532,-0.6900181,0.21165761,-0.6774332,-0.70612156,0.20609866,-0.66482866,-0.7255011,0.17790718,-0.6383762,-0.74843043,0.17979932,-0.637087,-0.7489975,0.18199684,-0.6304003,-0.75500923,0.1804342,-0.6286589,-0.75651604,0.1801984,-0.627621,-0.75749826,0.17968959,-0.61138535,-0.77342004,0.16741964,-0.6027543,-0.7792879,0.17145753,-0.59377,-0.7858084,0.17303854,-0.5958877,-0.7825604,0.18032475,-0.58906466,-0.7894777,0.17241752,-0.58983094,-0.7901802,0.16647764,-0.5828898,-0.7932247,0.17616476,-0.5770223,-0.7974975,0.17619033,-0.5804382,-0.7941754,0.17993589,-0.57948416,-0.79376304,0.18476562,-0.5762771,-0.79668236,0.18221416,-0.5700671,-0.8016778,0.17982268,-0.56956327,-0.7989893,0.1929088,-0.56305057,-0.8033202,0.1940376,-0.5703861,-0.79074794,0.22221011,-0.62189233,-0.7613451,0.18331283,-0.62648624,-0.7558179,0.19040582,-0.6320866,-0.7491793,0.19798215,-0.6325463,-0.74867105,0.19843578,-0.6385228,-0.74283344,0.20121418,-0.64072835,-0.74061906,0.20236252,-0.66837275,-0.7091804,0.22436805,-0.7008951,-0.6765824,0.2257927,-0.7102842,-0.6645837,0.23200192,-0.72303843,-0.64864016,0.23765808,-0.74187094,-0.6199823,0.25543964,-0.7519426,-0.6072824,0.25649634,-0.7582083,-0.5984871,0.25871518,-0.7694036,-0.57797027,0.27197167,-0.7820956,-0.5534057,0.2864762,-0.7854329,-0.5487222,0.28635484,-0.78960174,-0.5425877,0.28657943,-0.80752164,-0.51443607,0.28855553,-0.8125487,-0.5015697,0.2969722,-0.8198551,-0.48862135,0.29847404,-0.82562625,-0.4705623,0.31130773,-0.829828,-0.45637926,0.32109722,-0.83416617,-0.443884,0.32731295,-0.84045935,-0.43028495,0.32936743,-0.84473526,-0.41061324,0.3432479,-0.8516074,-0.38899055,0.3513562,-0.8695366,-0.35676995,0.3414988,-0.8771767,-0.33479637,0.34419823,-0.8788727,-0.3304597,0.34406278,-0.88802135,-0.31140703,0.33829528,-0.88493955,-0.33882132,0.31950283,-0.83818746,-0.46182883,0.2900965,-0.8376341,-0.46312085,0.2896347,-0.7627437,-0.6047023,0.22925359,-0.75500685,-0.6162161,0.2241479,-0.71588635,-0.66281277,0.21951297,-0.7155752,-0.6628499,0.22041337,-0.6783863,-0.7038186,0.21078776,-0.67061263,-0.7126673,0.2058739,-0.66905844,-0.7166291,0.19698644,-0.66111565,-0.72577196,0.19021344,-0.666909,-0.71994466,0.19212522,-0.64656484,-0.7391078,0.18887442,-0.6384072,-0.748116,0.18099369,-0.61782664,-0.76598525,0.17764226,-0.5891451,-0.78637004,0.18582301,-0.583158,-0.79182875,0.18147703,-0.5882953,-0.7901425,0.17199858,-0.58657974,-0.79232085,0.16778529,-0.58066213,-0.79366255,0.1814697,-0.57549554,-0.7950581,0.19153999,-0.59855103,-0.7781929,0.19013825,-0.6273239,-0.754874,0.19138949,-0.6397521,-0.7416993,0.20149307,-0.6473878,-0.73239434,0.21092075,-0.6582738,-0.72128344,0.21546629,-0.6647048,-0.71421516,0.21923573,-0.6901826,-0.6875963,0.22552004,-0.69351125,-0.68385106,0.22669336,-0.7039449,-0.67299116,0.22703412,-0.72639817,-0.6444534,0.23880011,-0.7314589,-0.6374936,0.24201205,-0.7368144,-0.6291257,0.24759926,-0.7482369,-0.6123871,0.25519314,-0.7575443,-0.59963363,0.25800437,-0.77009207,-0.57710063,0.27186957,-0.7903894,-0.5418172,0.28586486,-0.79800177,-0.5311546,0.2847244,-0.8194235,-0.4897482,0.29781163,-0.84526503,-0.41164646,0.34069672,-0.85416603,-0.38726106,0.34702918,-0.87038034,-0.35460338,0.34160587,-0.8753291,-0.34350923,0.34029463,-0.87703395,-0.33744186,0.34197143,-0.8897335,-0.30843344,0.336516,-0.89262414,-0.3088549,0.32837597,-0.8925875,-0.31371897,0.32383332,-0.87560844,-0.36417526,0.31731105,-0.86776865,-0.38829792,0.31016484,-0.86344934,-0.39980397,0.3075907,-0.85231173,-0.4265981,0.30261987,-0.8210925,-0.49899003,0.27715725,-0.76293206,-0.6041388,0.23011081,-0.71358436,-0.6628014,0.22691791,-0.71209496,-0.6645671,0.2264316,-0.6723001,-0.7150187,0.19173148,-0.6638147,-0.72811645,0.17086987,-0.65919244,-0.72938156,0.18294215,-0.64872795,-0.7383474,0.1843779,-0.6479792,-0.7393878,0.1828349,-0.63898385,-0.74521244,0.19067791,-0.6372942,-0.74866664,0.18263184,-0.6223804,-0.7616444,0.18038976,-0.61184436,-0.772938,0.16796805,-0.6002961,-0.78077346,0.1733131,-0.58437717,-0.7903378,0.18403661,-0.57942617,-0.79357636,0.1857469,-0.5704412,-0.8013008,0.18031596,-0.56504786,-0.80410105,0.18477668,-0.5640378,-0.80254304,0.1943864,-0.57169986,-0.79560566,0.2004269,-0.6630811,-0.71599025,0.21836065,-0.69461834,-0.68329877,0.22496246,-0.73750675,-0.6278118,0.2488696,-0.78096986,-0.5552995,0.2858819,-0.78746647,-0.5465102,0.28499666,-0.7998903,-0.52819824,0.28492486,-0.82968223,-0.45578474,0.32231617,-0.8337825,-0.4449177,0.32688692,-0.84184885,-0.42635918,0.33092046,-0.85240245,-0.3889497,0.34946847,-0.8699022,-0.35591942,0.34145498,-0.8735247,-0.3488372,0.3395101,-0.87691367,-0.33776435,0.3419615,-0.8232647,-0.49469605,0.278408,-0.7397099,-0.635032,0.22262885,-0.6985577,-0.68190855,0.21683611,-0.6798117,-0.7020778,0.21199712,-0.66577804,-0.72120565,0.19131652,-0.67189455,-0.7154284,0.1916245,-0.67107975,-0.7165113,0.1904296,-0.66410965,-0.72775763,0.17125174,-0.65966165,-0.72890925,0.18313353,-0.6483411,-0.738769,0.18404937,-0.63017404,-0.7549489,0.18147393,-0.6188401,-0.76524186,0.17731826,-0.5879664,-0.78851414,0.18039127,-0.58820665,-0.7903263,0.17145644,-0.5714973,-0.80002326,0.1826296,-0.5730464,-0.79021347,0.21721064,-0.64828813,-0.73154444,0.21110468,-0.64922565,-0.73060125,0.21148948,-0.6737811,-0.7059235,0.21838273,-0.6790029,-0.6994527,0.22298193,-0.72591084,-0.6451465,0.23841031,-0.8408705,-0.42925075,0.32966742,-0.8923129,-0.31056795,0.3276055,-0.8922324,-0.31243533,0.32604516,-0.8250022,-0.49155995,0.27881923,-0.81209004,-0.51531124,0.27379557,-0.76741284,-0.5957802,0.23690408,-0.71358454,-0.66260725,0.2274833,-0.6710545,-0.71223783,0.20592012,-0.6653578,-0.7220303,0.18966089,-0.67148024,-0.7158975,0.19132443,-0.65991074,-0.7285719,0.18357767,-0.6105748,-0.77151626,0.1787767,-0.60525846,-0.77648693,0.17530032,-0.60128033,-0.7800627,0.17310165,-0.58748126,-0.7894023,0.1780722,-0.6796751,-0.69879216,0.22300504,-0.69521767,-0.6828356,0.22451714,-0.7372366,-0.62843925,0.24808519,-0.78575754,-0.5486068,0.28568456,-0.7970939,-0.5325287,0.28470063,-0.8731928,-0.34953046,0.33965096,-0.8356557,-0.46771815,0.2879572,-0.7609991,-0.6040472,0.23665883,-0.7289393,-0.6477155,0.22161253,-0.6617702,-0.7243553,0.19331194,-0.6606308,-0.72623384,0.19013493,-0.6591964,-0.7288275,0.1851233,-0.5826724,-0.7921263,0.1817383,-0.5874913,-0.7897036,0.17669795,-0.5827041,-0.7932257,0.17677332,-0.5755925,-0.79488033,0.19198589,-0.57136226,-0.7962001,0.19902402,-0.5915925,-0.7839136,0.18840854,-0.67487985,-0.7048871,0.21833786,-0.7867085,-0.547589,0.28501958,-0.83299327,-0.4464845,0.32676265,-0.84471464,-0.42004916,0.33168632,-0.86371577,-0.36878613,0.34349948,-0.8821752,-0.325984,0.33985472,-0.86429507,-0.39607224,0.31003338,-0.8348296,-0.46931052,0.28776217,-0.7670293,-0.5939599,0.2426471,-0.7546426,-0.613341,0.23308235,-0.7788676,-0.574228,0.25224486,-0.72778565,-0.6476111,0.2256721,-0.6609252,-0.72537196,0.19238855,-0.6655573,-0.72223675,0.18816897,-0.59622335,-0.7823693,0.1800443,-0.58078957,-0.793731,0.18076114,-0.570689,-0.79779977,0.19449824,-0.65956503,-0.72123504,0.21164604,-0.84533,-0.41861805,0.33192793,-0.86405575,-0.39670682,0.3098894,-0.81265324,-0.5131288,0.2762128,-0.824256,-0.49026653,0.28326815,-0.83524483,-0.467062,0.29020518,-0.7341043,-0.6365822,0.23633428,-0.75371975,-0.6098109,0.24502482,-0.7724089,-0.58232486,0.25353953,-0.66599506,-0.7223192,0.18629426,-0.5964497,-0.78210706,0.1804338,-0.6498099,-0.7330434,0.2009838,-0.6625231,-0.7191128,0.20961845,-0.6367461,-0.746673,0.19244175,-0.772611,-0.573901,0.2714955,-0.83340037,-0.44573554,0.32674697,-0.8791427,-0.34515107,0.32860142,-0.8280951,-0.4820494,0.28615898,-0.8370629,-0.46289957,0.29163277,-0.8146933,-0.5090877,0.27767727,-0.8406381,-0.4545439,0.29447833,-0.75825936,-0.6029198,0.24805337,-0.7745633,-0.57879686,0.25504094,-0.73650324,-0.6332346,0.23785912,-0.7788221,-0.5717083,0.2580421,-0.5759561,-0.7944716,0.19258612,-0.57105863,-0.7974585,0.19481267,-0.6789659,-0.7022586,0.21409833,-0.6610444,-0.7220857,0.20399143,-0.6424965,-0.7413368,0.19395348,-0.7927202,-0.54299855,0.27703285,-0.7814348,-0.56217796,0.2707687,-0.7697075,-0.58105963,0.264424,-0.81307983,-0.5121575,0.27675956,-0.8270853,-0.48413357,0.28555998,-0.81415665,-0.51011175,0.27737153,-0.8401666,-0.45560372,0.29418576,-0.65767586,-0.7299805,0.18598609,-0.5827004,-0.7919869,0.18225554,-0.57229537,-0.7966423,0.19452272,-0.5715902,-0.7970109,0.19508536,-0.682568,-0.6984008,0.215261,-0.66352123,-0.71958846,0.20477305,-0.68016887,-0.70097494,0.21448655,-0.6437718,-0.74012643,0.19434686,-0.7423248,-0.6220743,0.24895254,-0.83291364,-0.45320678,0.31758222,-0.85985637,-0.3843433,0.33604655,-0.7913973,-0.55012286,0.26656175,-0.7752663,-0.5768225,0.25736725,-0.75452024,-0.6078919,0.24731876,-0.7345482,-0.6356488,0.23746493,-0.7734773,-0.5793714,0.2570245,-0.80825925,-0.5201832,0.27591014,-0.82404387,-0.48959023,0.28504938,-0.8114807,-0.51483774,0.27648005,-0.83873343,-0.45838198,0.29395932,-0.61343294,-0.76870126,0.18110338,-0.58299595,-0.7915861,0.18304963,-0.68494034,-0.69578403,0.21619736,-0.66515803,-0.7178968,0.2053996,-0.6833599,-0.6975295,0.21557327,-0.644617,-0.7393079,0.19466062,-0.7446513,-0.61894935,0.24979204,-0.83053946,-0.46027467,0.31361023,-0.8576441,-0.3902832,0.3348518,-0.8656249,-0.36999583,0.3373374,-0.84925413,-0.41038278,0.33219483,-0.7266043,-0.6460727,0.23374416,-0.7480473,-0.61709225,0.24417709,-0.7311612,-0.64013076,0.23587275,-0.7523746,-0.610968,0.24627343,-0.76837,-0.58724946,0.25445187,-0.7875457,-0.5565859,0.2645446,-0.7704222,-0.5841047,0.25548255,-0.73342204,-0.6371452,0.23693459,-0.8055497,-0.52514476,0.27443144,-0.8223593,-0.4929693,0.2840887,-0.8073593,-0.5218391,0.2754179,-0.837953,-0.46010533,0.29349262,-0.77144367,-0.5825291,0.25599706,-0.5964996,-0.7819552,0.18092619,-0.61345637,-0.7686233,0.1813547,-0.5835621,-0.7910348,0.18362801,-0.69818425,-0.68052584,0.22231369,-0.6743587,-0.70806605,0.2094821,-0.68939203,-0.6907317,0.2182393,-0.64939773,-0.73456913,0.19669956,-0.7396678,-0.62616396,0.24659741,-0.8490289,-0.42089823,0.319366,-0.8617988,-0.38550273,0.3296824,-0.83489805,-0.45566398,0.3087322,-0.8636878,-0.388404,0.3212252,-0.85823303,-0.4075902,0.31193975,-0.8686748,-0.36904794,0.33046582,-0.66037107,-0.72616714,0.1912887,-0.5770661,-0.7939911,0.19124033,-0.67369604,-0.7087994,0.20913407,-0.64905137,-0.7349215,0.19652648,-0.6978688,-0.68090624,0.2221392,-0.64835817,-0.73562557,0.19618024,-0.7648515,-0.58962727,0.25950307,-0.7848828,-0.5570206,0.2714535,-0.7943919,-0.54038304,0.27735847,-0.7750347,-0.5734376,0.26550028,-0.75433636,-0.6055836,0.25346613,-0.7434935,-0.6213001,0.24739373,-0.73232675,-0.6367705,0.24129018,-0.8440047,-0.43528643,0.31333983,-0.83212864,-0.46273556,0.30567592,-0.8596097,-0.39283568,0.326728,-0.86665547,-0.37128404,0.3332514,-0.8520585,-0.4141737,0.32008836,-0.82640374,-0.47679034,0.2995459,-0.83545184,-0.45616242,0.30648986,-0.81686455,-0.49715894,0.29251555,-0.8047827,-0.521358,0.28374407,-0.8175705,-0.4981927,0.28876036,-0.82976025,-0.47466618,0.29358122,-0.8413433,-0.45079568,0.29820243,-0.7963878,-0.53908986,0.2741325,-0.75828266,-0.600501,0.2537832,-0.7731974,-0.5787533,0.25924984,-0.73211277,-0.6380557,0.2385285,-0.71832156,-0.6562907,0.23086083,-0.74543554,-0.6194556,0.24617192,-0.7825229,-0.5615721,0.26887664,-0.7706473,-0.58120286,0.26135418,-0.79390335,-0.54162,0.27634266,-0.84318465,-0.43744516,0.31254005,-0.8367029,-0.45615542,0.3030685,-0.8250165,-0.47995076,0.29832026,-0.8151555,-0.5007977,0.29107264,-0.8343611,-0.45882922,0.30547878,-0.85148317,-0.41581088,0.31949598,-0.85925287,-0.3939387,0.32633847,-0.8559979,-0.4103342,0.31447312,-0.8664905,-0.37184095,0.33305943,-0.583885,-0.79074794,0.1838368,-0.57785875,-0.7937465,0.18985717,-0.7962201,-0.5371402,0.27841324,-0.78650665,-0.55427736,0.27236706,-0.78542507,-0.55610687,0.2717583,-0.7764348,-0.57118297,0.26626876,-0.7660085,-0.58784944,0.2601231,-0.7552316,-0.60427004,0.25393477,-0.74410844,-0.6204379,0.24770832,-0.732643,-0.63634646,0.24144842,-0.83504826,-0.457146,0.30612418,-0.83518285,-0.45681834,0.306246,-0.8434981,-0.4366131,0.31285775,-0.82611895,-0.4774382,0.2992996,-0.81671435,-0.49747872,0.2923912,-0.8593889,-0.3935135,0.32649332,-0.85194004,-0.41450915,0.31996936,-0.8665532,-0.37162626,0.3331357,-0.85170275,-0.41517982,0.31973138,-0.8255479,-0.47873297,0.29880667,-0.81641364,-0.49811786,0.29214257,-0.8347784,-0.4578015,0.30588022,-0.8158107,-0.4993958,0.29164493,-0.83452827,-0.45841822,0.30563936,-0.83461165,-0.45821267,0.30571967,-0.82537097,-0.479139,0.29864445,-0.8157173,-0.49959612,0.29156306,-0.8516296,-0.4153902,0.31965297,-0.8155302,-0.49999675,0.2913997,-0.7709878,-0.5806381,0.2616051,-0.7708743,-0.5808264,0.26152143,-0.75875574,-0.59976107,0.25411886,-0.78274024,-0.5611893,0.2690433,-0.79400706,-0.5414256,0.27642557,-0.73236823,-0.6376995,0.23869683,-0.7455587,-0.619274,0.24625605,-0.7184539,-0.6561162,0.23094502,-0.74580467,-0.6189108,0.24642418,-0.7831743,-0.56042343,0.26937646,-0.7942145,-0.54103667,0.2765913,-0.77121454,-0.58026147,0.2617724,-0.7946286,-0.54025847,0.27692282,-0.7402448,-0.62622625,0.24470048,-0.65521115,-0.7289582,0.1982885,-0.590228,-0.7854647,0.18621539,-0.700793,-0.6774259,0.22356932,-0.65997505,-0.72380966,0.20132671,-0.66586745,-0.71741164,0.20479508,-0.65156174,-0.73240536,0.19760971,-0.636901,-0.74705225,0.19044697,-0.65977335,-0.7239992,0.20130663,-0.5911516,-0.7848429,0.18590705,-0.5935942,-0.7834032,0.18418829,-0.56109977,-0.798105,0.2195347,-0.5649366,-0.7949723,0.22105584,-0.56532204,-0.79474896,0.22087345,-0.56634015,-0.7942241,0.22015207,-0.56653225,-0.7941682,0.2198595,-0.56679016,-0.7951305,0.21567658,-0.570068,-0.793207,0.21411479,-0.57031536,-0.793262,0.21325044,-0.5698366,-0.7938771,0.21223879,-0.56891394,-0.79490507,0.21086228,-0.56783587,-0.79675454,0.20674773,-0.56886595,-0.79619807,0.20605874,-0.569817,-0.7957234,0.20526306,-0.57020265,-0.7958308,0.2037702,-0.5701257,-0.7960226,0.20323548,-0.5689805,-0.7967091,0.20375402,-0.5683177,-0.79713345,0.20394416,-0.5674265,-0.79757375,0.204703,-0.5663825,-0.79867864,0.20328122,-0.5666529,-0.7986428,0.20266774,-0.5665638,-0.7989135,0.20184824,-0.5659726,-0.7995332,0.20105128,-0.5652703,-0.80013883,0.2006174,-0.5644433,-0.80079675,0.20032065,-0.5629889,-0.8018256,0.20029785,-0.56172585,-0.8025847,0.20080298,-0.5608375,-0.80296284,0.20177194,-0.5603497,-0.8030065,0.20295015,-0.56046987,-0.802302,0.20538996,-0.55651265,-0.80490285,0.20597352,-0.5565079,-0.80563456,0.20310567,-0.5563436,-0.8061533,0.20149115,-0.55602527,-0.80655956,0.20074256,-0.5543511,-0.80786735,0.200113,-0.55248934,-0.8091312,0.20015545,-0.5508476,-0.8101346,0.2006213,-0.54314244,-0.81355786,0.2076531,-0.5431585,-0.81368583,0.20710927,-0.5429667,-0.8139463,0.2065879,-0.54272807,-0.81454784,0.20483677,-0.543462,-0.8139958,0.20508522,-0.5442763,-0.8134826,0.2049618,-0.54487586,-0.8131733,0.20459601,-0.546168,-0.8127355,0.20288284,-0.5473666,-0.8121432,0.2020227,-0.54740447,-0.8122954,0.20130712,-0.54855615,-0.81256866,0.19702357,-0.5495024,-0.81185377,0.19733381,-0.55125296,-0.81086636,0.19650936,-0.55443966,-0.8090742,0.19492461,-0.5538602,-0.80907506,0.1965615,-0.5538342,-0.8088808,0.19743222,-0.55529255,-0.80792254,0.19725955,-0.5591271,-0.805177,0.1976536,-0.55906045,-0.8054639,0.1966706,-0.5583631,-0.8062118,0.19558403,-0.556921,-0.80719584,0.19563697,-0.5568626,-0.8078272,0.1931823,-0.5553377,-0.80897385,0.19277266,-0.5538286,-0.81014854,0.19218007,-0.551733,-0.8114854,0.19256721,-0.55016017,-0.8121185,0.19438992,-0.54898345,-0.81282884,0.194747,-0.5469001,-0.813969,0.19584379,-0.54637057,-0.8144045,0.19551082,-0.5470865,-0.81413823,0.19461596,-0.54758227,-0.8141601,0.19312426,-0.5482668,-0.81396806,0.19198823,-0.5491688,-0.81325054,0.19245021,-0.55008936,-0.8125806,0.19265115,-0.55070853,-0.812361,0.19180645,-0.55090314,-0.8124693,0.19078621,-0.5507056,-0.81269485,0.19039568,-0.55025595,-0.81308097,0.19004652,-0.55025166,-0.8136144,0.18776219,-0.55163413,-0.8130542,0.18612543,-0.55169374,-0.8131028,0.18573613,-0.5514375,-0.8135569,0.18450426,-0.55099106,-0.814068,0.1835814,-0.5510734,-0.81408685,0.18325044,-0.55214447,-0.81354403,0.18243523,-0.55254257,-0.813446,0.18166523,-0.55207103,-0.8138561,0.18126154,-0.5520592,-0.8140631,0.18036631,-0.55166656,-0.81440645,0.18001693,-0.55059963,-0.81514364,0.17994705,-0.5500466,-0.81539226,0.18051066,-0.5488913,-0.8153263,0.18428606,-0.54720247,-0.8160785,0.18597125,-0.5459341,-0.8162824,0.18878303,-0.54481924,-0.81664747,0.1904178,-0.54323083,-0.8172412,0.19239832,-0.54327947,-0.81665933,0.1947176,-0.54314095,-0.8167055,0.19491032,-0.54278415,-0.81691885,0.19501,-0.54188454,-0.81733847,0.19575219,-0.54156595,-0.8173011,0.1967873,-0.5415656,-0.8169622,0.19819058,-0.5416935,-0.81653243,0.19960693,-0.5418863,-0.8162598,0.20019786,-0.5400649,-0.8172736,0.20098191,-0.5390929,-0.8177369,0.20170571,-0.5369751,-0.81824875,0.20524803,-0.53655845,-0.8179164,0.20764825,-0.5367225,-0.81768394,0.20813937,-0.5361734,-0.81768394,0.20954973,-0.5391493,-0.8154091,0.2107747,-0.54314,-0.81232816,0.21241917,-0.54670763,-0.8095596,0.21383168,-0.55017066,-0.80684555,0.21520346,-0.5537443,-0.804017,0.21661921,-0.5573065,-0.80116916,0.2180308,-0.5663743,-0.7952018,0.21650463,-0.5447727,-0.81263715,0.206987,-0.54228383,-0.81469715,0.20541862,-0.5423077,-0.8148394,0.20479052,-0.5523775,-0.8104114,0.19522421,-0.56635183,-0.79853284,0.20393847,-0.5567604,-0.8038508,0.20938405,-0.5435305,-0.81316924,0.20815945,-0.5432463,-0.8133894,0.20804103,-0.5510353,-0.8116995,0.1936596,-0.5500779,-0.81355,0.18854901,-0.56817424,-0.7958049,0.20945765,-0.56762844,-0.7967525,0.2073244,-0.56649107,-0.7983196,0.20438623,-0.56021845,-0.80216354,0.20661312,-0.54698616,-0.81277025,0.20052586,-0.5500349,-0.81329924,0.18975244,-0.5677273,-0.79651964,0.20794745,-0.56707776,-0.7977874,0.20483662,-0.55687845,-0.803649,0.20984454,-0.5472311,-0.8129112,0.1992825,-0.5667388,-0.798034,0.20481415,-0.5577267,-0.80298716,0.21012515,-0.54787785,-0.81289035,0.19758317,-0.5598304,-0.80213106,0.20778753,-0.559274,-0.8022135,0.20896438,-0.5584266,-0.802541,0.20997046,-0.5258741,-0.82107043,0.2220355,-0.52626467,-0.8206889,0.22252019,-0.5267951,-0.820304,0.22268413,-0.5275611,-0.819788,0.22277106,-0.52922916,-0.8189281,0.22197568,-0.5300359,-0.8188411,0.22036612,-0.53226835,-0.81844753,0.21641183,-0.533147,-0.81844467,0.2142488,-0.53319037,-0.81895846,0.21216749,-0.5315155,-0.8198651,0.21286744,-0.53002256,-0.82087684,0.21269058,-0.52943593,-0.82121736,0.2128371,-0.52913684,-0.8213592,0.21303333,-0.5274949,-0.8217422,0.21561289,-0.5274204,-0.82171106,0.21591353,-0.5274275,-0.8215771,0.21640566,-0.52703846,-0.8211609,0.21891819,-0.5265175,-0.8215129,0.21885122,-0.5259293,-0.82186836,0.21893111,-0.52543247,-0.8220703,0.21936555,-0.52525896,-0.82196355,0.22017938,-0.52545124,-0.8215731,0.22117554,-0.52770084,-0.8210695,0.21766199,-0.527373,-0.82096726,0.21883897,-0.52768946,-0.82093513,0.21819586,-0.5275491,-0.8209245,0.21857485,-0.6982791,-0.6866663,0.20222688,-0.6982536,-0.68640107,0.20321319,-0.6987537,-0.6857093,0.20382841,-0.7003141,-0.6840264,0.20412749,-0.70032233,-0.6836197,0.20545736,-0.70054185,-0.682939,0.2069672,-0.701214,-0.68191236,0.20807308,-0.70172894,-0.6811876,0.20871009,-0.70301723,-0.68004507,0.20809978,-0.7041988,-0.6789497,0.20768093,-0.70522785,-0.6782161,0.20658317,-0.7071895,-0.6761655,0.20659912,-0.7071494,-0.67595965,0.2074085,-0.70731056,-0.67569584,0.20771834,-0.7071797,-0.6754948,0.2088149,-0.7071899,-0.67515665,0.20987128,-0.7091302,-0.67319906,0.20961228,-0.7091992,-0.67272645,0.21089244,-0.71009433,-0.6716285,0.2113793,-0.71051353,-0.67127985,0.21107772,-0.7119316,-0.6697422,0.21118408,-0.71281856,-0.66888237,0.21091719,-0.7138046,-0.6677844,0.21106145,-0.7147614,-0.667537,0.20859171,-0.7167791,-0.66647404,0.20503674,-0.7165685,-0.6668286,0.20461975,-0.71564716,-0.66771466,0.20495439,-0.71453327,-0.66916096,0.20412222,-0.71393645,-0.66985995,0.20391758,-0.7134246,-0.6705025,0.2035971,-0.71249014,-0.67193276,0.20214896,-0.7119327,-0.6726116,0.20185511,-0.7106728,-0.6740646,0.20144755,-0.71012425,-0.6747666,0.20103124,-0.70962894,-0.67535025,0.20082039,-0.7031199,-0.6830123,0.19777901,-0.70218736,-0.68436563,0.19640908,-0.7017079,-0.6849495,0.19608735,-0.701229,-0.68535554,0.1963814,-0.7001922,-0.6860577,0.19762534,-0.69931215,-0.6865536,0.19901425,-0.69889283,-0.6865375,0.20053706,-0.6984664,-0.686732,0.20135507,-0.70821923,-0.6742067,0.2094539,-0.7161026,-0.6672348,0.20492643,-0.7112728,-0.6733415,0.20174797,-0.7082404,-0.6767543,0.2009954,-0.7051423,-0.6804486,0.19940925,-0.70650226,-0.677157,0.20570123,-0.7069925,-0.67669284,0.20554405,-0.6283505,-0.75807214,0.17464916,-0.6302469,-0.75640005,0.17506525,-0.6346678,-0.7525597,0.17564327,-0.6352934,-0.7520343,0.17563221,-0.63550955,-0.7518949,0.1754471,-0.63583076,-0.7518388,0.17452149,-0.63663876,-0.7513665,0.17360727,-0.6368285,-0.7513226,0.17310062,-0.6367818,-0.7516465,0.17186174,-0.63626456,-0.75231504,0.17084931,-0.6359488,-0.7526316,0.17063081,-0.6349467,-0.75344235,0.17078437,-0.6335332,-0.7549623,0.16931503,-0.6331819,-0.75566596,0.16748033,-0.6324352,-0.7564024,0.16697665,-0.6306054,-0.7580521,0.16641483,-0.63114077,-0.75771177,0.16593434,-0.6312319,-0.7577774,0.1652867,-0.63085383,-0.75838554,0.16393535,-0.6304801,-0.7588042,0.16343512,-0.62973505,-0.75936663,0.16369502,-0.6288558,-0.7599808,0.16422419,-0.6266488,-0.7618574,0.16396508,-0.6272553,-0.7617836,0.16197689,-0.6264235,-0.76263523,0.16118656,-0.62515074,-0.7636981,0.16109538,-0.6251483,-0.7634572,0.16224283,-0.6237184,-0.7643305,0.16362834,-0.6232268,-0.7644261,0.16504838,-0.62298185,-0.7643854,0.16615842,-0.6230893,-0.76420414,0.16658871,-0.62406623,-0.7632524,0.16729388,-0.6259361,-0.7616024,0.1678266,-0.62712055,-0.75986564,0.17124256,-0.62680906,-0.76028425,0.17052336,-0.6265374,-0.76058745,0.1701697,-0.62541443,-0.76159793,0.16978057,-0.62518346,-0.76192474,0.16916367,-0.6245059,-0.76258016,0.16871247,-0.62406766,-0.7629604,0.16861516,-0.62276363,-0.7639522,0.1689453,-0.62192696,-0.76469076,0.16868584,-0.62123924,-0.7652551,0.16866082,-0.6200442,-0.7661727,0.16889243,-0.6197675,-0.76626015,0.16951,-0.61960727,-0.7661189,0.1707296,-0.6197381,-0.76594037,0.17105551,-0.6205785,-0.7651366,0.17160511,-0.6212066,-0.76446563,0.17232142,-0.6220751,-0.7636409,0.17284447,-0.62325597,-0.762568,0.17332649,-0.62358147,-0.76231325,0.17327614,-0.62432075,-0.7617978,0.17288052,-0.626521,-0.7597469,0.17394283,-0.63406026,-0.7542532,0.17049842,-0.62828344,-0.7603385,0.16475837,-0.6316186,-0.75682795,0.16813506,-0.6305121,-0.75779533,0.16793083,-0.62383235,-0.76221174,0.17281911,-0.6272923,-0.75969154,0.17138596,-0.62747574,-0.7595419,0.1713775,-0.6264408,-0.7611328,0.16807349,-0.62755305,-0.75952643,0.17116302,-0.6267783,-0.76078,0.16841254,-0.6385104,-0.7520084,0.1636702,-0.6382024,-0.75199485,0.1649285,-0.63851917,-0.75150824,0.16591746,-0.63854146,-0.7509345,0.16841078,-0.63896257,-0.75037247,0.16931647,-0.6414495,-0.7480901,0.17001116,-0.6444105,-0.7456908,0.16935262,-0.6464127,-0.74400866,0.16912048,-0.6472508,-0.7433753,0.16869983,-0.6471032,-0.74397236,0.16662112,-0.6468201,-0.7442638,0.16641833,-0.64600235,-0.74497247,0.16642398,-0.64494175,-0.7458326,0.16668482,-0.6437311,-0.7469727,0.16625896,-0.6408549,-0.74995327,0.1639365,-0.5806471,-0.7978193,0.16227539,-0.58158576,-0.79716325,0.16213804,-0.58206075,-0.79690593,0.16169809,-0.583196,-0.7962269,0.16095072,-0.5839728,-0.7958318,0.1600859,-0.5838912,-0.7959887,0.15960301,-0.5836294,-0.7961939,0.15953676,-0.58248085,-0.7968967,0.16022411,-0.5811398,-0.79781413,0.16052766,-0.5797545,-0.79858226,0.16171324,-0.57818294,-0.7994913,0.16284426,-0.5781549,-0.799438,0.16320497,-0.5776868,-0.79958534,0.16413799,-0.5774684,-0.79943085,0.16565192,-0.57392985,-0.80128443,0.16896088,-0.57325685,-0.8017777,0.16890559,-0.5731219,-0.8018469,0.16903463,-0.5727701,-0.80196816,0.16965109,-0.5724705,-0.8019895,0.17055885,-0.5714129,-0.8023844,0.17223972,-0.5712003,-0.8023376,0.1731606,-0.57139903,-0.8022022,0.17313206,-0.5729693,-0.80135274,0.17187187,-0.5731512,-0.80122936,0.1718407,-0.57495403,-0.80014914,0.17084867,-0.57549727,-0.79995376,0.16993193,-0.5765551,-0.7993684,0.16909908,-0.5771152,-0.79922396,0.16786642,-0.5779872,-0.79876375,0.16705477,-0.57915676,-0.7982713,0.16534917,-0.580021,-0.79806274,0.16331391,-0.5803958,-0.79789233,0.1628143,-0.5804788,-0.7979149,0.16240756,-0.5751723,-0.8001041,0.17032419,-0.57430387,-0.8010417,0.16884069,-0.5762831,-0.79990166,0.16749653,-0.576817,-0.7996519,0.16685021,-0.6373272,-0.75029254,0.17571336,-0.63756835,-0.7500187,0.1760073,-0.639827,-0.7480901,0.17601894,-0.6401758,-0.74771786,0.17633204,-0.6404692,-0.74745405,0.17638525,-0.6408507,-0.74713814,0.17633754,-0.64155203,-0.7466303,0.17593783,-0.64284265,-0.74554414,0.17583297,-0.6436392,-0.74484175,0.17589583,-0.6439285,-0.7446131,0.17580503,-0.6456028,-0.7433877,0.17484765,-0.6476767,-0.74139506,0.17563681,-0.648023,-0.7412659,0.17490277,-0.64722097,-0.74224323,0.17372389,-0.6472443,-0.7428483,0.17102994,-0.64673626,-0.74345726,0.17030446,-0.6463618,-0.7437684,0.17036727,-0.6451906,-0.74479735,0.17031145,-0.64397746,-0.7457702,0.17064536,-0.64321864,-0.74639773,0.17076348,-0.6420247,-0.747352,0.17108266,-0.64156795,-0.74769855,0.17128193,-0.63962877,-0.74936897,0.1712344,-0.63821304,-0.7504166,0.17192768,-0.6378876,-0.75012463,0.17439175,-0.6447583,-0.7440577,0.17511384,-0.5676738,-0.8045082,0.17467955,-0.5688445,-0.8036663,0.17474683,-0.56944275,-0.8032593,0.17466937,-0.5697754,-0.8030572,0.17451379,-0.5700448,-0.80296886,0.1740401,-0.5704101,-0.8027596,0.1738084,-0.57044154,-0.8027839,0.17359275,-0.57017106,-0.80307966,0.17311282,-0.5698781,-0.8033171,0.17297564,-0.5703311,-0.8035475,0.17039308,-0.5713803,-0.80292225,0.16982484,-0.5718592,-0.80309683,0.16736932,-0.5707187,-0.804332,0.1653182,-0.56979626,-0.80458623,0.16725178,-0.56847346,-0.80546796,0.1675088,-0.56706107,-0.80630153,0.16828398,-0.56519055,-0.80732965,0.16964199,-0.56411624,-0.80819166,0.16911253,-0.5637658,-0.8084415,0.16908702,-0.5629213,-0.8088717,0.16984183,-0.56233376,-0.80911314,0.170636,-0.5623699,-0.808997,0.1710673,-0.5626105,-0.80879164,0.17124683,-0.5644756,-0.8072984,0.17215256,-0.5639357,-0.807584,0.17258225,-0.5637866,-0.807587,0.17305428,-0.5611844,-0.80944353,0.17283867,-0.561087,-0.8096928,0.17198502,-0.56069607,-0.80996066,0.17199901,-0.5602744,-0.8101916,0.17228504,-0.56000423,-0.81031346,0.17259018,-0.5599317,-0.8102985,0.17289546,-0.5600722,-0.8100736,0.17349318,-0.5600586,-0.8098257,0.17469022,-0.5597807,-0.8097727,0.17582288,-0.56011623,-0.80930144,0.17692101,-0.5602465,-0.8090561,0.17762874,-0.56043434,-0.80881965,0.17811254,-0.561833,-0.80760014,0.1792363,-0.56225055,-0.8070368,0.18046023,-0.56366885,-0.80619055,0.17981716,-0.5643841,-0.8057992,0.17932701,-0.5658423,-0.80488163,0.17885216,-0.566058,-0.8047704,0.17866994,-0.56709266,-0.80445766,0.17678715,-0.5673741,-0.80453455,0.17552991,-0.5689726,-0.8039806,0.17287402,-0.563493,-0.8081536,0.17135757,-0.5637575,-0.80746037,0.17373905,-0.5609617,-0.8084095,0.17831437,-0.565787,-0.8068788,0.16979887,-0.56400365,-0.8077358,0.17164728,-0.56205255,-0.8085529,0.17418118,-0.56742245,-0.8046692,0.17475466,-0.56689787,-0.8061764,0.16942951,-0.56669265,-0.8062299,0.16986118,-0.5668118,-0.80616236,0.16978423,-0.5632096,-0.8076283,0.17473285,-0.59639096,-0.7861235,0.16225797,-0.5990847,-0.7840205,0.16251008,-0.5990678,-0.7842353,0.16153243,-0.59791607,-0.7851903,0.16116011,-0.5983692,-0.78503305,0.16024183,-0.59777755,-0.78573674,0.15899634,-0.59610015,-0.78697705,0.1591595,-0.5942273,-0.78841776,0.15903227,-0.59243,-0.7896439,0.1596533,-0.5906688,-0.7909108,0.1599078,-0.59011436,-0.79100156,0.16149807,-0.5916189,-0.78972757,0.1622264,-0.59346753,-0.78792477,0.16422805,-0.5938377,-0.78763604,0.16427492,-0.5954644,-0.786571,0.16348769,-0.59594476,-0.78641623,0.1624787,-0.5390463,-0.81834084,0.19936748,-0.5401714,-0.8179693,0.19784117,-0.5378927,-0.81976366,0.19661885,-0.5373101,-0.820262,0.19613291,-0.53718626,-0.820459,0.19564739,-0.5369336,-0.82062554,0.19564246,-0.53596264,-0.8210558,0.19649762,-0.5355285,-0.8213466,0.19646633,-0.5352018,-0.8215129,0.19666116,-0.53472865,-0.82143795,0.19825456,-0.5337912,-0.82212853,0.19791836,-0.5334529,-0.8223517,0.1979031,-0.5330735,-0.82254076,0.19813967,-0.5323051,-0.8228479,0.19892868,-0.5314062,-0.82337445,0.19915293,-0.5309817,-0.82357454,0.19945791,-0.5299468,-0.82389635,0.200876,-0.52976257,-0.82387704,0.20144044,-0.5335657,-0.8209838,0.20320722,-0.53238034,-0.82159066,0.20386261,-0.53208995,-0.82170427,0.2041628,-0.53156316,-0.82177913,0.20523076,-0.53059155,-0.8226144,0.20439701,-0.53027743,-0.8228449,0.20428428,-0.52943873,-0.8233724,0.20433432,-0.5289814,-0.8236335,0.2044666,-0.52888286,-0.8234896,0.20529932,-0.52833223,-0.8236539,0.2060566,-0.5280042,-0.8236316,0.20698436,-0.52701986,-0.8240181,0.20795259,-0.52633494,-0.8241783,0.20904946,-0.5259564,-0.82433754,0.20937406,-0.52465147,-0.8251289,0.20953082,-0.52395606,-0.82544553,0.21002293,-0.523457,-0.825612,0.21061237,-0.52342993,-0.82553893,0.21096587,-0.52416325,-0.8249903,0.21129109,-0.52513856,-0.8243038,0.21154843,-0.5257841,-0.8239119,0.21147163,-0.5265678,-0.823502,0.2111177,-0.5289103,-0.8222256,0.21023571,-0.52946985,-0.8216984,0.21088724,-0.5301203,-0.82134277,0.21063818,-0.530681,-0.82106555,0.21030717,-0.53161067,-0.8209274,0.20849064,-0.53231525,-0.82043463,0.20863248,-0.53273886,-0.8195722,0.21092835,-0.53404754,-0.8187481,0.21081915,-0.5347873,-0.8187305,0.2090048,-0.53488576,-0.81933004,0.20638685,-0.5362567,-0.82089144,0.19638251,-0.53494155,-0.8213379,0.19809496,-0.5319786,-0.82153326,0.20513856,-0.5285974,-0.82246894,0.21007064,-0.5338684,-0.82086897,0.20287617,-0.53186256,-0.8215595,0.2053344,-0.5320073,-0.8207063,0.20834915,-0.5315947,-0.82283235,0.20088322,-0.5282006,-0.82270646,0.21013865,-0.53272754,-0.8221509,0.20067193,-0.5330761,-0.82188493,0.20083587,-0.5343184,-0.8208086,0.20193331,-0.5566139,-0.80935353,0.1874243,-0.5581751,-0.808566,0.1861764,-0.559102,-0.80822986,0.1848498,-0.56055087,-0.80783415,0.18217205,-0.560292,-0.80820876,0.1813048,-0.5602994,-0.8083894,0.18047464,-0.559038,-0.80950665,0.17937504,-0.5561432,-0.8111377,0.18099853,-0.55480653,-0.81209254,0.18081866,-0.55472064,-0.81184375,0.18219426,-0.554938,-0.81132305,0.18384415,-0.55430454,-0.81152916,0.18484288,-0.55422443,-0.81138176,0.18572822,-0.5525691,-0.81222177,0.18698442,-0.551229,-0.81283677,0.18826297,-0.551248,-0.8127583,0.18854599,-0.55180484,-0.8122496,0.1891084,-0.5520944,-0.8118916,0.18979934,-0.55247957,-0.8115402,0.19018129,-0.5536766,-0.81067276,0.19039914,-0.55434096,-0.81016254,0.19063766,-0.55481726,-0.8101705,0.18921296,-0.55770975,-0.81023353,0.18022615,-0.55516917,-0.8113678,0.18294667,-0.68561,-0.7001309,0.1993883,-0.68594235,-0.69959515,0.2001243,-0.6866415,-0.69873244,0.20073976,-0.68723977,-0.69809186,0.20092097,-0.688098,-0.69760245,0.19967948,-0.6888408,-0.6969818,0.1992855,-0.6895545,-0.6963496,0.19902714,-0.6898197,-0.69641703,0.19786878,-0.68958235,-0.69699526,0.19665636,-0.68862176,-0.6981139,0.19605376,-0.6872041,-0.6999993,0.19429727,-0.6878715,-0.6996098,0.19333613,-0.68780893,-0.7001052,0.19175921,-0.6876278,-0.70057964,0.19067276,-0.68624735,-0.70196134,0.1905646,-0.6859529,-0.70274866,0.188714,-0.68437433,-0.7039917,0.18980889,-0.6827211,-0.7054417,0.19037834,-0.681951,-0.7060056,0.19104707,-0.67991775,-0.70783436,0.19152649,-0.6786528,-0.70889187,0.19210057,-0.6776908,-0.70951784,0.19318274,-0.6761776,-0.7111111,0.19262613,-0.6756654,-0.7113508,0.19353645,-0.6751486,-0.71129817,0.19552314,-0.6752668,-0.71112555,0.1957426,-0.67576444,-0.7105968,0.19594555,-0.6756451,-0.71051174,0.19666402,-0.6756965,-0.71039176,0.19692066,-0.67645746,-0.70952034,0.19744895,-0.67689013,-0.7090493,0.19765852,-0.677367,-0.7085745,0.19772765,-0.6785854,-0.7075212,0.19732104,-0.67926764,-0.7068427,0.19740519,-0.6796452,-0.7064375,0.19755627,-0.68102175,-0.7051275,0.19749576,-0.6825036,-0.7037521,0.19728628,-0.6835193,-0.7028324,0.19704795,-0.68579054,-0.7002257,0.1984321,-0.6872534,-0.6995306,0.19580536,-0.68455726,-0.7020403,0.19626708,-0.6856238,-0.7008448,0.19681579,-0.6870628,-0.6998619,0.1952897,-0.68515986,-0.70138204,0.19651765,-0.6786812,-0.7053765,0.20453806,-0.6787498,-0.7043875,0.20769429,-0.67922586,-0.7035437,0.20899391,-0.6798987,-0.70263106,0.2098747,-0.6806472,-0.70151937,0.21116346,-0.6811653,-0.70101625,0.21116376,-0.68200284,-0.70038265,0.21056181,-0.683543,-0.6994648,0.20860943,-0.68476635,-0.6988518,0.20664254,-0.6847755,-0.69904333,0.20596358,-0.6843047,-0.6995902,0.20567122,-0.68374544,-0.7001649,0.20557556,-0.6828533,-0.7012995,0.2046717,-0.6824096,-0.70210445,0.20338766,-0.6820284,-0.70266265,0.20273751,-0.6809543,-0.70370245,0.20274162,-0.68028986,-0.7043161,0.20284112,-0.6794291,-0.70504534,0.20319235,-0.6832252,-0.7007792,0.20521162,-0.68434125,-0.7059525,0.18250509,-0.6844568,-0.7057497,0.18285583,-0.6846576,-0.7055069,0.18304081,-0.6852633,-0.70493054,0.18299496,-0.6857048,-0.7045738,0.18271475,-0.6857938,-0.7045738,0.18238047,-0.6856604,-0.7048277,0.18190023,-0.68495756,-0.70549965,0.18194312,-0.6844978,-0.7058933,0.18214703,-0.6117882,-0.7746396,0.16015193,-0.61291593,-0.77361894,0.16077258,-0.61397356,-0.77269894,0.16116078,-0.6139339,-0.77251947,0.1621692,-0.6141546,-0.77222806,0.16272031,-0.6145985,-0.77174056,0.16335592,-0.6148928,-0.77158874,0.16296522,-0.61547697,-0.77144676,0.16142476,-0.6158692,-0.77140886,0.16010474,-0.6144121,-0.7726838,0.15955378,-0.6137423,-0.7733336,0.15898292,-0.6133033,-0.773647,0.15915205,-0.61249804,-0.77429456,0.15910411,-0.61211866,-0.7745511,0.15931521,-0.615198,-0.7719617,0.16002038,-0.6351126,-0.75374717,0.16881132,-0.63609797,-0.75283456,0.1691731,-0.6369399,-0.7521039,0.16925515,-0.63721406,-0.75216895,0.16792881,-0.6369859,-0.75253725,0.16714258,-0.63703907,-0.7529951,0.16486244,-0.63732433,-0.7528537,0.16440497,-0.6371978,-0.7530916,0.16380487,-0.6369563,-0.75340205,0.16331576,-0.6362878,-0.7540517,0.16292305,-0.63562506,-0.75448936,0.16348258,-0.6354239,-0.7545776,0.16385698,-0.63407475,-0.75565267,0.16412875,-0.63359684,-0.7562975,0.16300005,-0.6330674,-0.7569428,0.1620594,-0.63245267,-0.757337,0.16261719,-0.63223255,-0.7573448,0.16343462,-0.63281393,-0.7565293,0.16495433,-0.63359743,-0.7554985,0.16666217,-0.6350817,-0.7548191,0.16407122,-0.64875895,-0.7413986,0.17158103,-0.64870036,-0.7412464,0.17245784,-0.64878154,-0.74109197,0.17281567,-0.6489815,-0.74081033,0.17327178,-0.6491179,-0.740296,0.17495082,-0.64956754,-0.73990285,0.17494494,-0.6501579,-0.7395692,0.17416121,-0.65046936,-0.739521,0.1732,-0.65034366,-0.7399603,0.1717903,-0.6500692,-0.74038094,0.17101505,-0.64919233,-0.7410164,0.17159265,-0.69857734,-0.68994045,0.1896625,-0.69831026,-0.6897183,0.19144554,-0.69839215,-0.6896148,0.19151981,-0.6986759,-0.6893343,0.19149455,-0.69904196,-0.6890256,0.19126953,-0.69939876,-0.6888094,0.19074328,-0.6994836,-0.68898,0.18981381,-0.69932145,-0.68924433,0.18945123,-0.69903123,-0.6895628,0.18936357,-0.680539,-0.70504165,0.19945686,-0.68055993,-0.70490026,0.19988443,-0.6813142,-0.70405114,0.20030722,-0.68220526,-0.70315593,0.20041883,-0.6830734,-0.7022878,0.20050573,-0.68399066,-0.7014852,0.20018819,-0.68414545,-0.7014597,0.19974801,-0.6841631,-0.7016456,0.19903333,-0.6836485,-0.70232666,0.19839846,-0.683204,-0.70280087,0.19825046,-0.68276435,-0.7031973,0.19835947,-0.6817413,-0.7040352,0.1989049,-0.68117267,-0.70459545,0.1988694,-0.68066305,-0.70501995,0.1991097,-0.60188085,-0.78109396,0.16622776,-0.6029748,-0.7801799,0.16655524,-0.6034245,-0.7798344,0.16654499,-0.6040458,-0.779416,0.16625069,-0.60440105,-0.77942127,0.16492976,-0.60381263,-0.7806287,0.16133566,-0.60464877,-0.78019917,0.16027832,-0.6034294,-0.78133863,0.15932018,-0.6025821,-0.7821029,0.15877625,-0.6013923,-0.78322107,0.15777178,-0.6004503,-0.7839687,0.15764712,-0.6009594,-0.7833324,0.15886524,-0.6013912,-0.7828723,0.1594977,-0.6027765,-0.7815024,0.16097951,-0.6020694,-0.7818288,0.16203749,-0.601756,-0.7818925,0.16289228,-0.60189235,-0.78164804,0.1635603,-0.60228544,-0.78116524,0.16441748,-0.6021328,-0.78119606,0.16482972,-0.60159475,-0.78147376,0.1654768,-0.6016224,-0.7813843,0.16579826,-0.6038714,-0.7802066,0.1631468,-0.6167279,-0.77024925,0.16236638,-0.61721075,-0.7693561,0.16474876,-0.6177093,-0.7687002,0.16593789,-0.6178646,-0.768253,0.1674235,-0.61910313,-0.7672767,0.16732536,-0.6197514,-0.7670384,0.16601266,-0.6205251,-0.76666415,0.16484739,-0.62090266,-0.7665536,0.16393751,-0.6216707,-0.766177,0.16278313,-0.6204842,-0.7673073,0.16198431,-0.6197899,-0.76792556,0.16171223,-0.619529,-0.7682017,0.16140002,-0.61873865,-0.7689161,0.1610297,-0.6177154,-0.7698828,0.16033746,-0.61732215,-0.76987946,0.1618609,-0.69217783,-0.69310576,0.20123188,-0.69282293,-0.69248646,0.2011441,-0.6933751,-0.6920042,0.20090082,-0.6934896,-0.69193894,0.20073032,-0.69349474,-0.6923511,0.19928631,-0.69404024,-0.69240767,0.19717959,-0.69345546,-0.69305176,0.19697388,-0.69319046,-0.6932446,0.19722809,-0.6922286,-0.6936782,0.1990732,-0.69225794,-0.69358116,0.19930907,-0.69259095,-0.69309235,0.19985178,-0.6922537,-0.69319063,0.2006776,-0.59308463,-0.78738815,0.16813834,-0.5931428,-0.78726935,0.16848908,-0.5933375,-0.787055,0.16880506,-0.5936266,-0.78681093,0.16892618,-0.5939117,-0.7866215,0.16880599,-0.5951161,-0.7859824,0.16753682,-0.59580475,-0.7855354,0.16718505,-0.5961688,-0.78532434,0.16687842,-0.5967667,-0.78504574,0.16605023,-0.5968277,-0.78505415,0.16579105,-0.59585917,-0.78575575,0.16595094,-0.59510005,-0.78634363,0.16589035,-0.59415513,-0.7869129,0.16657683,-0.5937182,-0.7871369,0.16707553,-0.6725033,-0.71558917,0.18886894,-0.6727306,-0.71512717,0.18980701,-0.67318964,-0.714611,0.19012298,-0.67366743,-0.7141614,0.19012031,-0.6752411,-0.71281075,0.18960552,-0.6773754,-0.71052015,0.19058785,-0.6787066,-0.70923436,0.19064105,-0.6787111,-0.7096104,0.18922022,-0.67821056,-0.71022147,0.18872198,-0.67799765,-0.7106173,0.18799551,-0.6762887,-0.7123431,0.18761908,-0.6753011,-0.7135633,0.1865365,-0.6746925,-0.7144728,0.18525314,-0.6740794,-0.71523666,0.18453568,-0.6731251,-0.7161628,0.18442735,-0.67294395,-0.7159666,0.18584467,-0.67221284,-0.7163899,0.1868567,-0.67215264,-0.71612954,0.18806733,-0.5184902,-0.827979,0.21358526,-0.5183823,-0.827959,0.2139244,-0.51843345,-0.82783955,0.2142625,-0.5187425,-0.82751536,0.21476607,-0.5189244,-0.82740235,0.2147621,-0.5191187,-0.8273354,0.21455036,-0.52006024,-0.82723874,0.21263449,-0.5201744,-0.8273507,0.21191834,-0.520031,-0.8274981,0.21169464,-0.519823,-0.8276416,0.21164457,-0.519666,-0.82771623,0.2117381,-0.5190659,-0.8277974,0.21288963,-0.5226255,-0.8218742,0.2266834,-0.52288526,-0.8214391,0.22765958,-0.52325803,-0.821047,0.22821668,-0.52392346,-0.8208058,0.22755678,-0.5239452,-0.8208447,0.22736616,-0.52385736,-0.82108593,0.22669654,-0.5237007,-0.8212795,0.22635691,-0.5234673,-0.82149154,0.2261274,-0.5231822,-0.8216878,0.2260741,-0.52289885,-0.8218451,0.22615792,-0.54307526,-0.8184643,0.18757786,-0.544083,-0.8178282,0.18743205,-0.5444063,-0.81782323,0.18651272,-0.5450697,-0.81759167,0.18558793,-0.5457744,-0.81749254,0.1839463,-0.5458261,-0.8175406,0.18357891,-0.54523605,-0.818042,0.18309811,-0.5448714,-0.8182879,0.18308473,-0.5445753,-0.81845933,0.18319954,-0.54447126,-0.8184936,0.18335569,-0.544546,-0.8182879,0.18405023,-0.54443413,-0.8180792,0.18530527,-0.5435595,-0.8185288,0.18588622,-0.5424262,-0.8190563,0.18687055,-0.54212797,-0.81922054,0.18701594,-0.5416753,-0.81954885,0.18688922,-0.5412938,-0.81977147,0.18701836,-0.54064375,-0.81995094,0.18810835,-0.54008156,-0.8201938,0.18866377,-0.5399344,-0.82022107,0.1889661,-0.53898543,-0.82050085,0.1904549,-0.5386451,-0.8207638,0.19028457,-0.538207,-0.8209205,0.19084722,-0.5381228,-0.82080674,0.191573,-0.53846556,-0.82028943,0.19282138,-0.53906053,-0.81981146,0.19319147,-0.5416274,-0.81823885,0.19267817,-0.54185355,-0.8183633,0.1915105,-0.5417945,-0.8186071,0.1906335,-0.54214275,-0.8186786,0.18933196,-0.5421243,-0.81882834,0.18873635,-0.54286224,-0.8185807,0.1876866,-0.54000086,-0.82000077,0.18973096,-0.53933764,-0.8202709,0.1904486,-0.544753,-0.8180723,0.184396,-0.5398951,-0.8199724,0.19015396,-0.5447429,-0.8180184,0.18466476,-0.518842,-0.82693106,0.21676727,-0.5188092,-0.8268535,0.21714108,-0.51891464,-0.8267154,0.21741495,-0.51914966,-0.8265284,0.21756487,-0.52006453,-0.82598686,0.2174363,-0.5212348,-0.825233,0.21749675,-0.5216264,-0.8250086,0.21740912,-0.52177066,-0.8249671,0.21722035,-0.52122766,-0.8255139,0.21644516,-0.5211843,-0.8257244,0.21574529,-0.5210209,-0.8259379,0.21532246,-0.5207647,-0.8261751,0.21503215,-0.520525,-0.82634217,0.21497056,-0.51919353,-0.82674706,0.21662733,-0.5195257,-0.82661664,0.21632832,-0.89336073,-0.30078706,0.33381698,-0.849757,-0.38709444,0.35786983,-0.8498534,-0.38511506,0.35977155,-0.8503251,-0.3835258,0.3603542,-0.8503189,-0.38284254,0.36109468,-0.84972566,-0.3812264,0.3641877,-0.8499237,-0.3801515,0.36484885,-0.8503386,-0.3781044,0.36600742,-0.84993964,-0.3779277,0.3671148,-0.8493753,-0.37716845,0.36919585,-0.8487278,-0.37644696,0.37141442,-0.8488152,-0.37546614,0.372207,-0.8491854,-0.37375626,0.37308228,-0.8496573,-0.37186155,0.37390047,-0.8486546,-0.3719359,0.37609708,-0.848128,-0.37265572,0.37657216,-0.8459838,-0.3749259,0.37913314,-0.8449157,-0.376218,0.3802335,-0.8442878,-0.3763902,0.38145575,-0.84326386,-0.37613592,0.38396335,-0.84301466,-0.37619424,0.38445297,-0.8400985,-0.37626848,0.3907129,-0.838383,-0.37693483,0.3937437,-0.83763915,-0.37737688,0.3949018,-0.8371503,-0.37760726,0.39571732,-0.8338137,-0.38244727,0.39810652,-0.8329862,-0.38405934,0.39828697,-0.83142257,-0.38688865,0.3988154,-0.83067757,-0.3879602,0.39932656,-0.83075345,-0.3874402,0.39967337,-0.8319021,-0.3825433,0.40199447,-0.8321113,-0.38051876,0.4034803,-0.83275086,-0.37578046,0.40658945,-0.83202463,-0.37469515,0.4090705,-0.83158904,-0.37504748,0.40963277,-0.83116764,-0.3750522,0.41048285,-0.824911,-0.37459236,0.423323,-0.8244752,-0.37540925,0.42344835,-0.8233098,-0.3771922,0.4241309,-0.8223818,-0.3781312,0.4250941,-0.82218343,-0.37838522,0.42525178,-0.8223079,-0.37758198,0.4257248,-0.8229875,-0.37442335,0.42719877,-0.8239544,-0.36983234,0.4293288,-0.8249293,-0.36506727,0.43152934,-0.82604325,-0.35944346,0.4341117,-0.82739633,-0.35544637,0.43482554,-0.8287722,-0.3477524,0.4384118,-0.8287362,-0.3452822,0.4404277,-0.82876694,-0.3429281,0.44220543,-0.8293142,-0.33889353,0.44428504,-0.8296689,-0.3361965,0.44566962,-0.8279557,-0.3355576,0.4493222,-0.8251102,-0.33415228,0.45556056,-0.8236733,-0.33345345,0.4586622,-0.82060325,-0.3319763,0.46519026,-0.81742847,-0.33047423,0.47180232,-0.8135887,-0.33037925,0.47845897,-0.8098304,-0.33028767,0.48485535,-0.7981244,-0.34200096,0.49601698,-0.7974517,-0.34471917,0.4952166,-0.7969499,-0.3444967,0.49617827,-0.7968085,-0.34292498,0.4974924,-0.7963518,-0.342688,0.4983861,-0.79582286,-0.34235492,0.49945888,-0.795795,-0.34168538,0.49996138,-0.79800826,-0.33927518,0.4980715,-0.7994112,-0.33586743,0.49813136,-0.79953194,-0.33255982,0.50015265,-0.7996352,-0.3293527,0.50210595,-0.7996705,-0.3264512,0.5039411,-0.79914707,-0.3262949,0.5048719,-0.79961956,-0.32502985,0.50493973,-0.7998798,-0.32420123,0.5050602,-0.80035406,-0.32415283,0.5043395,-0.8014571,-0.31310564,0.5095403,-0.80108136,-0.31295347,0.5102243,-0.80109215,-0.31257778,0.5104375,-0.8023247,-0.31104586,0.5094365,-0.8037911,-0.30814326,0.50888854,-0.8060866,-0.30356377,0.5080094,-0.806605,-0.3019215,0.5081652,-0.8072628,-0.30090734,0.5077219,-0.8086603,-0.30092043,0.50548536,-0.8112143,-0.29842597,0.5028651,-0.8128178,-0.29707706,0.5010712,-0.8134505,-0.2962795,0.50051653,-0.8143115,-0.2937162,0.5006272,-0.8154203,-0.29088163,0.50047725,-0.8166337,-0.28652778,0.50101024,-0.816256,-0.2838618,0.50313884,-0.8165984,-0.28251317,0.50334215,-0.8168032,-0.2813358,0.50366926,-0.81707937,-0.28040496,0.50374043,-0.8173443,-0.28039193,0.5033176,-0.81766677,-0.28079924,0.50256616,-0.8222895,-0.28088757,0.4949163,-0.82645375,-0.2805997,0.48809627,-0.8298752,-0.2803608,0.48239505,-0.8346132,-0.273992,0.477859,-0.8354023,-0.27125025,0.47804427,-0.83664143,-0.26689517,0.47832844,-0.8384422,-0.26418054,0.47667953,-0.8403862,-0.26123184,0.47487783,-0.8410007,-0.26047656,0.47420436,-0.8395187,-0.26038274,0.4768743,-0.8384616,-0.2603153,0.47876728,-0.8405023,-0.25238273,0.4794359,-0.8410134,-0.25157127,0.4789659,-0.84187937,-0.24900685,0.47878468,-0.8423997,-0.24755393,0.47862276,-0.8437048,-0.2441638,0.478065,-0.8435334,-0.24361512,0.47864708,-0.8436381,-0.24224769,0.47915623,-0.8440814,-0.2408717,0.47906935,-0.844673,-0.23959103,0.47866866,-0.84532404,-0.23836137,0.47813296,-0.8462246,-0.23760645,0.47691423,-0.84757197,-0.2362337,0.47520033,-0.8495303,-0.2344878,0.4725609,-0.8511232,-0.23327139,0.47029114,-0.8515195,-0.23342058,0.469499,-0.8537596,-0.23389615,0.46517438,-0.8544812,-0.23414476,0.46372205,-0.8550585,-0.23386636,0.46279746,-0.85678035,-0.23387958,0.4595953,-0.86022586,-0.22906443,0.4555666,-0.8607003,-0.2276672,0.4553709,-0.8612528,-0.22722399,0.45454684,-0.86425287,-0.22604376,0.44941205,-0.8657608,-0.22485471,0.44710013,-0.8663617,-0.22490466,0.44590956,-0.86705524,-0.22416387,0.44493347,-0.8683766,-0.22234964,0.4432638,-0.8689626,-0.22164328,0.4424684,-0.8693544,-0.22070415,0.4421681,-0.86983407,-0.21932079,0.44191295,-0.87027377,-0.21902315,0.4411944,-0.8707153,-0.2192709,0.44019887,-0.8711028,-0.2199809,0.43907657,-0.8730994,-0.21823144,0.43597293,-0.8738809,-0.21723503,0.43490347,-0.87430686,-0.21676245,0.43428275,-0.8752242,-0.2160652,0.43277988,-0.8760036,-0.21591876,0.4312735,-0.87692887,-0.2169455,0.42887112,-0.87793154,-0.21652621,0.4270276,-0.87944216,-0.21615505,0.42409736,-0.88163775,-0.21347666,0.42088306,-0.8821297,-0.21219435,0.4205006,-0.88300663,-0.21139152,0.41906202,-0.8837701,-0.21041188,0.4179442,-0.8847387,-0.20892526,0.4166386,-0.8851719,-0.2084285,0.41596657,-0.88653034,-0.20748821,0.41353664,-0.8867738,-0.2065461,0.41348636,-0.8872201,-0.20530525,0.41314694,-0.8873277,-0.20499828,0.41306823,-0.8879957,-0.20349161,0.41237694,-0.8881944,-0.20338646,0.41200092,-0.88833654,-0.20368186,0.41154814,-0.8888106,-0.20295925,0.41088122,-0.8889102,-0.20187928,0.41119754,-0.8893427,-0.20074569,0.41081718,-0.89061886,-0.19832732,0.4092242,-0.8908768,-0.19705416,0.40927753,-0.8911525,-0.19620362,0.40908596,-0.8919924,-0.19269934,0.40892124,-0.8919113,-0.19123402,0.40978497,-0.8923827,-0.18897161,0.4098082,-0.8944215,-0.18136065,0.40880132,-0.89428836,-0.1803867,0.40952286,-0.8940943,-0.1779956,0.41099012,-0.8942886,-0.1761705,0.41135365,-0.8948078,-0.17411155,0.41110107,-0.8950847,-0.1725403,0.41116083,-0.89512134,-0.17145899,0.4115333,-0.8955496,-0.17004162,0.4111895,-0.89617646,-0.16870274,0.41037452,-0.8964724,-0.16866913,0.40974137,-0.8968098,-0.16903536,0.40885115,-0.89710796,-0.1701659,0.4077264,-0.89763373,-0.1703657,0.40648395,-0.89823735,-0.16966698,0.40544158,-0.89972687,-0.16995926,0.40200177,-0.9019782,-0.17065796,0.3966249,-0.9027995,-0.17138171,0.39443803,-0.9032979,-0.1716907,0.39316058,-0.9039205,-0.17192745,0.39162326,-0.90476495,-0.17322683,0.38909227,-0.9069111,-0.17899849,0.3814077,-0.90749216,-0.17909911,0.37997568,-0.9077208,-0.17979655,0.379099,-0.90818447,-0.18034485,0.3777256,-0.9089319,-0.1823378,0.374961,-0.9092073,-0.18393293,0.37351146,-0.90931517,-0.18537691,0.37253368,-0.9097214,-0.18542717,0.37151545,-0.9101104,-0.18502852,0.37076065,-0.91108614,-0.18522792,0.36825624,-0.9115131,-0.18572025,0.36694938,-0.91182154,-0.18712522,0.3654663,-0.91262317,-0.19113024,0.36136994,-0.9131426,-0.19174755,0.35972697,-0.913751,-0.19267923,0.35767832,-0.91408706,-0.19274111,0.3567852,-0.91436225,-0.19290674,0.3559897,-0.9147034,-0.19248189,0.3553426,-0.9149569,-0.19157358,0.35518086,-0.915459,-0.19099976,0.35419482,-0.9164556,-0.19071202,0.35176393,-0.9179615,-0.1900494,0.34817812,-0.91939926,-0.18992054,0.34443453,-0.92008394,-0.18998244,0.34256718,-0.918654,-0.19369939,0.34431866,-0.9175965,-0.19641753,0.34559637,-0.9163808,-0.19951499,0.34704453,-0.915394,-0.20200618,0.34820586,-0.9138809,-0.20578894,0.34996095,-0.91256064,-0.20905198,0.35146865,-0.91114056,-0.21252577,0.3530661,-0.9095082,-0.2164729,0.3548721,-0.90956604,-0.21747449,0.35411078,-0.90961426,-0.21827471,0.35349408,-0.90930766,-0.21962841,0.35344446,-0.9094808,-0.22034998,0.35254866,-0.9097322,-0.22078554,0.35162622,-0.9098959,-0.22192411,0.35048416,-0.9099599,-0.2229112,0.34969065,-0.9096709,-0.22431502,0.34954485,-0.9075316,-0.23504771,0.34805018,-0.9075559,-0.23588757,0.34741828,-0.90753514,-0.23654678,0.3470238,-0.90684843,-0.23819916,0.3476881,-0.90578747,-0.24151504,0.34816602,-0.90541124,-0.24216998,0.3486893,-0.9043322,-0.24528763,0.34930965,-0.9047464,-0.245889,0.34781107,-0.9048219,-0.24640778,0.34724718,-0.9044984,-0.24898711,0.34624872,-0.9046878,-0.24987832,0.34510988,-0.90469867,-0.25090316,0.34433702,-0.9047477,-0.25160587,0.34369463,-0.9048606,-0.2520199,0.3430936,-0.90465975,-0.25327,0.34270254,-0.9044913,-0.25453278,0.34221134,-0.90478295,-0.25536677,0.34081617,-0.90448207,-0.25692195,0.3404458,-0.9041703,-0.258195,0.34031084,-0.9035876,-0.2594759,0.34088382,-0.9018006,-0.26280597,0.343058,-0.9018754,-0.26442704,0.34161264,-0.90187114,-0.2655463,0.34075442,-0.9016719,-0.2689773,0.33858386,-0.9015223,-0.26960266,0.33848476,-0.9009255,-0.27122065,0.3387811,-0.89804304,-0.2781383,0.34081927,-0.8977139,-0.27870312,0.34122494,-0.89721483,-0.2793594,0.34199992,-0.8949484,-0.28158438,0.3460891,-0.8952145,-0.28215832,0.34493148,-0.8954791,-0.2829055,0.3436302,-0.8954437,-0.2836134,0.34313858,-0.89516747,-0.28472948,0.34293485,-0.8946509,-0.28693116,0.34244746,-0.8949345,-0.28757927,0.3411604,-0.8950743,-0.28850475,0.34001037,-0.89504313,-0.29239455,0.3367538,-0.8950905,-0.29303995,0.3360664,-0.8949598,-0.29384643,0.33571008,-0.8952611,-0.29412013,0.33466527,-0.8955085,-0.2957114,0.3325946,-0.89539534,-0.29651722,0.33218175,-0.8950574,-0.2972822,0.3324088,-0.8935788,-0.30004585,0.33390018,-0.8502651,-0.37896094,0.36529157,-0.8310057,-0.37467614,0.4111537,-0.8288049,-0.3512289,0.43556935,-0.7990259,-0.33963904,0.4961885,-0.79970473,-0.3269039,0.50359327,-0.80173934,-0.3120548,0.509741,-0.80781513,-0.30124384,0.50664264,-0.8334893,-0.2778534,0.47759092,-0.8431946,-0.24637473,0.4778309,-0.86191374,-0.22739336,0.4532075,-0.8626554,-0.22720252,0.45189002,-0.8808112,-0.21541287,0.42162645,-0.8858643,-0.20801342,0.4146985,-0.8884439,-0.20390046,0.411208,-0.88865477,-0.20363343,0.41088453,-0.891448,-0.19577402,0.40864778,-0.8919227,-0.19396521,0.40847453,-0.9048174,-0.24351916,0.34929058,-0.9044219,-0.24830529,0.3469372,-0.8950371,-0.29004982,0.33879134,-0.8348163,-0.3806118,0.39776427,-0.8280774,-0.37461612,0.41707388,-0.7969312,-0.3438294,0.49667096,-0.8014913,-0.31364948,0.5091518,-0.8436078,-0.24504967,0.477783,-0.85844684,-0.23185402,0.4575071,-0.8719397,-0.219507,0.4376503,-0.89010805,-0.1995567,0.40973753,-0.89170486,-0.19502684,0.40844458,-0.89339995,-0.1859195,0.4089872,-0.9076986,-0.23338406,0.34873372,-0.89459854,-0.28639394,0.3430334,-0.89450955,-0.29792327,0.3333083,-0.89399207,-0.29885703,0.33386016,-0.8496438,-0.371409,0.37438044,-0.8316285,-0.3843489,0.40083653,-0.82498884,-0.37456238,0.42319775,-0.80116016,-0.31689087,0.5076639,-0.8164839,-0.28737193,0.5007708,-0.8328127,-0.2801531,0.47742772,-0.85765296,-0.2329432,0.45844188,-0.8940458,-0.18371521,0.40857163,-0.89432573,-0.1823629,0.40856498,-0.9065067,-0.17826892,0.38270852,-0.9120564,-0.18966281,0.36356732,-0.9080624,-0.23144779,0.34907687,-0.8967084,-0.2792874,0.3433841,-0.8949349,-0.28130138,0.34635395,-0.8493277,-0.3714597,0.375047,-0.836238,-0.37830633,0.39697635,-0.7993862,-0.33903137,0.4960235,-0.8007043,-0.32116187,0.50569534,-0.8182272,-0.2811133,0.5014774,-0.912209,-0.190384,0.36280674,-0.89570886,-0.2800287,0.3453833,-0.8396121,-0.37638068,0.39164916,-0.80278414,-0.3362093,0.49244377,-0.79933244,-0.33782697,0.4969312,-0.81858236,-0.2811395,0.5008826,-0.84390867,-0.25722182,0.47080263,-0.90205055,-0.2621678,0.34288907,-0.8950863,-0.28088105,0.34630388,-0.83231664,-0.37472355,0.40844986,-0.8058482,-0.3336463,0.48917165,-0.8450805,-0.25709003,0.46876818,-0.9043909,-0.24479516,0.34950322,-0.8640696,-0.35550764,0.3563678,-0.8065787,-0.3171293,0.49885857,-0.8500729,-0.25263187,0.46211824,-0.88645947,-0.30692363,0.3463921,-0.8641578,-0.35532132,0.35633993,-0.83262277,-0.37506956,0.40750715,-0.8076149,-0.31445044,0.49887782,-0.8695122,-0.23169944,0.43619248,-0.8577364,-0.2479213,0.45035902,-0.8454982,-0.26407406,0.46410945,-0.89776564,-0.19096711,0.39692363,-0.90828544,-0.1974084,0.36884618,-0.87381816,-0.3301371,0.35700336,-0.86236656,-0.35423732,0.36171794,-0.8846788,-0.30581996,0.35187736,-0.8128307,-0.31065133,0.49274933,-0.87400174,-0.22577968,0.43028405,-0.8608589,-0.24399202,0.44653088,-0.8710167,-0.22972721,0.43422967,-0.8471222,-0.26211846,0.4622531,-0.89674973,-0.19289996,0.3982834,-0.9061219,-0.21165472,0.36625865,-0.8617731,-0.3491671,0.36800736,-0.86197877,-0.35085833,0.36591125,-0.8733745,-0.32672668,0.3612016,-0.88443315,-0.30410054,0.3539786,-0.83965945,-0.36136562,0.4054466,-0.8167208,-0.31074527,0.4862145,-0.88996214,-0.2039672,0.40787852,-0.89839894,-0.19113444,0.39540738,-0.88120264,-0.2167649,0.42011297,-0.87212735,-0.22952555,0.43210182,-0.8627433,-0.24224688,0.44383606,-0.8530578,-0.2549267,0.4553073,-0.89890575,-0.25579435,0.35572124,-0.90215755,-0.23010786,0.3649139,-0.90469074,-0.20426,0.37391514,-0.8615407,-0.3492054,0.36851507,-0.87322277,-0.32675248,0.3615451,-0.8616956,-0.34917995,0.36817664,-0.884359,-0.30411348,0.3541527,-0.83524776,-0.3450591,0.42813015,-0.8403848,-0.35389104,0.41050518,-0.84507865,-0.36269143,0.39280677,-0.823227,-0.31362844,0.47321728,-0.88488376,-0.25550508,0.3894842,-0.8663564,-0.2807273,0.41306034,-0.8695938,-0.2552159,0.4226954,-0.87884164,-0.24253717,0.4108688,-0.881277,-0.28101435,0.37997594,-0.8902493,-0.2684274,0.3679714,-0.850194,-0.2804402,0.44555977,-0.8600421,-0.267851,0.43426186,-0.8877783,-0.22981678,0.3987907,-0.8963969,-0.21705699,0.38646972,-0.8936808,-0.24282733,0.37731883,-0.8572403,-0.3403571,0.38638845,-0.85249454,-0.33147866,0.4041967,-0.8640824,-0.3088776,0.39743707,-0.8473046,-0.32257074,0.42192772,-0.8799694,-0.29512033,0.3722334,-0.86887574,-0.31782916,0.37952554,-0.8317417,-0.3083086,0.46168333,-0.8485204,-0.3085931,0.42986447,-0.8410934,-0.29440564,0.4537479,-0.9368794,-0.07499922,0.34151438,-0.9369226,-0.07386381,0.34164324,-0.9373167,-0.072576955,0.34083706,-0.9378599,-0.07136144,0.33959728,-0.93833935,-0.07063039,0.33842376,-0.9385849,-0.06967145,0.33794117,-0.9389586,-0.06771438,0.33730033,-0.93934304,-0.06704428,0.3363624,-0.93961674,-0.0665239,0.33570084,-0.93984425,-0.0666005,0.33504802,-0.9406685,-0.067430355,0.33255973,-0.9417737,-0.06608178,0.32969007,-0.94194794,-0.06595248,0.3292177,-0.94148195,-0.06287054,0.33114782,-0.9406173,-0.05735983,0.3345875,-0.9400462,-0.053857643,0.33676782,-0.93939257,-0.049966544,0.3391828,-0.9390509,-0.04798159,0.34041327,-0.93900925,-0.04764283,0.3405756,-0.93903357,-0.04713545,0.34057912,-0.93925166,-0.046377752,0.34008136,-0.94016945,-0.045477122,0.3376585,-0.94050485,-0.044535488,0.336849,-0.9409299,-0.044130217,0.33571345,-0.9412739,-0.04345769,0.3348355,-0.94187534,-0.042802054,0.3332248,-0.94224286,-0.042194158,0.332262,-0.942669,-0.0419762,0.33107877,-0.94304353,-0.0408641,0.33014986,-0.94432354,-0.038711455,0.32673284,-0.9446386,-0.038507044,0.32584518,-0.9449601,-0.03883748,0.3248724,-0.9454345,-0.039179828,0.32344788,-0.94585764,-0.04036002,0.32206273,-0.9469652,-0.040726166,0.31874472,-0.9472728,-0.04002281,0.3179192,-0.9475518,-0.0397691,0.31711826,-0.9479378,-0.038810205,0.31608176,-0.9485807,-0.038076177,0.3142369,-0.9490427,-0.03756347,0.31290075,-0.94930804,-0.03780029,0.31206644,-0.95018774,-0.04059503,0.309023,-0.95056343,-0.04056096,0.30787006,-0.95097023,-0.041538488,0.30648035,-0.9513922,-0.04188425,0.30512056,-0.9518233,-0.04203742,0.30375212,-0.95231116,-0.042379722,0.30217126,-0.9533582,-0.041267756,0.299007,-0.9535687,-0.041032758,0.29836723,-0.9537434,-0.04119617,0.29778576,-0.9551693,-0.041771814,0.29309836,-0.9554547,-0.04082491,0.29230058,-0.9558732,-0.040341318,0.29099676,-0.95644075,-0.037626486,0.2894915,-0.9563168,-0.03631334,0.290068,-0.95645773,-0.03495748,0.28976986,-0.95671064,-0.032812826,0.28918517,-0.95681584,-0.031938884,0.2889349,-0.9569743,-0.031196106,0.28849074,-0.95719606,-0.030926941,0.28778353,-0.95855254,-0.028599817,0.28347683,-0.9584469,-0.026815938,0.28400794,-0.95861876,-0.025299516,0.28356665,-0.95890623,-0.024456132,0.28266728,-0.9591113,-0.022973586,0.2820953,-0.9594023,-0.021794425,0.28119776,-0.95976466,-0.021189578,0.28000498,-0.9601116,-0.021255963,0.27880785,-0.9603912,-0.02088447,0.27787137,-0.9607242,-0.019637201,0.27680925,-0.9610218,-0.0191651,0.2758079,-0.96136796,-0.01795176,0.27468038,-0.9619806,-0.017413257,0.27256203,-0.962748,-0.0148501145,0.26999223,-0.9627309,-0.014108829,0.2700928,-0.96285605,-0.013379337,0.26968357,-0.9629745,-0.012067068,0.26932213,-0.96319693,-0.010134329,0.26860562,-0.96342856,-0.009035031,0.26781288,-0.9636627,-0.008205008,0.26699615,-0.9638598,-0.007502887,0.2663044,-0.9641511,-0.0064580427,0.26527527,-0.96450245,-0.005851279,0.2640091,-0.96479887,-0.0052120886,0.26293725,-0.96491826,-0.0042679617,0.26251572,-0.9650187,-0.003492392,0.26215798,-0.9661704,-0.0020368523,0.25789642,-0.96654767,-0.00088123867,0.2564853,-0.9667521,-0.00072865083,0.25571436,-0.9669328,-0.00072865083,0.25503042,-0.9671973,-0.0018595883,0.25401956,-0.9674438,-0.0024817402,0.25307378,-0.967699,-0.0025481395,0.25209576,-0.9680389,-0.00274245,0.250785,-0.96851027,-0.0021442596,0.24896416,-0.9686948,-0.0021442596,0.24824515,-0.9687184,-0.002751033,0.24814744,-0.96840596,-0.003492392,0.24935448,-0.9680995,-0.004334361,0.25052866,-0.9679834,-0.005616083,0.25095105,-0.96779317,-0.0071364474,0.25164565,-0.9673416,-0.008840728,0.25332183,-0.9670593,-0.0096929185,0.25436664,-0.96703625,-0.010299663,0.2544302,-0.9671104,-0.011412655,0.25410074,-0.96712136,-0.012341469,0.25401554,-0.96734315,-0.01687308,0.25290823,-0.9674914,-0.016409539,0.25237104,-0.96761864,-0.0161317,0.25190052,-0.9676624,-0.016792983,0.25168914,-0.967756,-0.018694786,0.25119486,-0.9679527,-0.022971919,0.25007966,-0.9681094,-0.026722275,0.24909857,-0.9683825,-0.02804941,0.2478882,-0.96876657,-0.03015697,0.24613382,-0.9745915,-0.049018327,0.21856041,-0.97510445,-0.049895108,0.2160595,-0.97563106,-0.05080912,0.2134537,-0.9763154,-0.052016065,0.21000624,-0.97654134,-0.05315472,0.20866649,-0.9768613,-0.05594066,0.20642824,-0.9770035,-0.057283305,0.20538431,-0.977135,-0.058438648,0.20443133,-0.97714496,-0.058966074,0.20423183,-0.9770999,-0.059302963,0.20435017,-0.9769725,-0.05986618,0.20479451,-0.9772138,-0.060570497,0.20343187,-0.97728795,-0.05993591,0.20326318,-0.9774443,-0.0592894,0.20270047,-0.9775924,-0.05910221,0.20203955,-0.97766185,-0.05926048,0.20165691,-0.977634,-0.059850827,0.20161739,-0.9776409,-0.062700406,0.20071563,-0.97756153,-0.06408498,0.20066543,-0.9776021,-0.06463268,0.20029172,-0.97751695,-0.06587088,0.20030378,-0.97762054,-0.06702394,0.19941369,-0.9776304,-0.068051085,0.19901742,-0.97762597,-0.06892331,0.19873884,-0.97772795,-0.06952863,0.19802478,-0.9777132,-0.07048079,0.1977607,-0.9777034,-0.07249539,0.1970798,-0.97774273,-0.07407626,0.19629532,-0.9777507,-0.07542918,0.19573957,-0.97769487,-0.076440364,0.1956261,-0.9775591,-0.07715577,0.19602352,-0.9774868,-0.07773184,0.19615641,-0.97748077,-0.07876673,0.19577304,-0.9774597,-0.079544865,0.19556354,-0.9776125,-0.08007152,0.19458222,-0.9779127,-0.08133042,0.19254096,-0.9779981,-0.08219001,0.19174056,-0.97797924,-0.083168335,0.19141497,-0.9778311,-0.08469346,0.19150276,-0.97799695,-0.08495169,0.19053937,-0.9780122,-0.085556254,0.19019023,-0.97815794,-0.08699284,0.18878372,-0.97856814,-0.08642908,0.18690777,-0.9788337,-0.08641887,0.18551676,-0.9799959,-0.08142725,0.18159777,-0.9802221,-0.07914047,0.18138747,-0.9804685,-0.07846928,0.18034436,-0.98072076,-0.077674076,0.1793144,-0.9809298,-0.077895015,0.17807087,-0.98118496,-0.07804797,0.17659143,-0.9813729,-0.07751779,0.17577918,-0.9818056,-0.07655079,0.1737746,-0.9821914,-0.075458065,0.17206423,-0.9824595,-0.07491078,0.17076786,-0.9826123,-0.075170875,0.16977152,-0.98266566,-0.075831905,0.16916758,-0.98335403,-0.07660855,0.1647603,-0.9833011,-0.07560249,0.16553895,-0.9832003,-0.073386125,0.16712771,-0.98364705,-0.072638184,0.1648094,-0.98371905,-0.07183075,0.16473357,-0.9838276,-0.070967026,0.16445962,-0.98372763,-0.06938414,0.16572809,-0.98346746,-0.06981606,0.16708522,-0.9833058,-0.06984495,0.16802177,-0.9831881,-0.06843369,0.16928685,-0.9831017,-0.06811733,0.16991472,-0.9830904,-0.067627676,0.1701759,-0.983396,-0.06520926,0.16935198,-0.9833932,-0.064719394,0.16955598,-0.98346025,-0.06373973,0.16953819,-0.9835102,-0.06302021,0.16951746,-0.9836179,-0.062385716,0.16912699,-0.98368084,-0.06143482,0.16910838,-0.9837706,-0.06091759,0.16877343,-0.98382294,-0.06036976,0.16866505,-0.98386544,-0.059735164,0.168643,-0.983957,-0.05941875,0.16822018,-0.9840531,-0.059095427,0.16777146,-0.98446065,-0.060980532,0.16467752,-0.98473346,-0.06345564,0.16209058,-0.9850401,-0.06507318,0.15956669,-0.9851265,-0.06769559,0.15793376,-0.9856161,-0.073834926,0.15201722,-0.98563826,-0.075366296,0.15111953,-0.985309,-0.0814086,0.15012908,-0.9850557,-0.08299513,0.15092108,-0.9841813,-0.08763969,0.15396915,-0.9841818,-0.088926636,0.15322603,-0.9841263,-0.09006064,0.15291943,-0.9825027,-0.1021144,0.15575987,-0.9828586,-0.10127169,0.1540549,-0.9829423,-0.10236366,0.15279458,-0.98286635,-0.10352831,0.15249793,-0.9825576,-0.105513304,0.1531259,-0.9822002,-0.10677417,0.15453836,-0.9812407,-0.10942597,0.15872206,-0.97792804,-0.117865756,0.1725236,-0.97738355,-0.120165646,0.17401601,-0.9766028,-0.12302142,0.17638795,-0.975664,-0.12698857,0.17875586,-0.9753027,-0.12912352,0.17919743,-0.9736857,-0.13633023,0.18262054,-0.9732736,-0.13784643,0.18367606,-0.9724993,-0.1399884,0.18614039,-0.9716068,-0.14280438,0.18864554,-0.9708385,-0.1461623,0.1900242,-0.96975535,-0.14982864,0.19268067,-0.96941084,-0.15195833,0.19274712,-0.9684992,-0.15593615,0.19414759,-0.9677118,-0.15913415,0.19547428,-0.9666614,-0.1628198,0.19762455,-0.9655577,-0.16766441,0.19896467,-0.96481854,-0.17038757,0.20023309,-0.9636802,-0.17517886,0.20157607,-0.9628442,-0.17812641,0.20298277,-0.95823467,-0.19412401,0.21000531,-0.9579018,-0.19573732,0.21002655,-0.9558775,-0.19992241,0.21524249,-0.95394945,-0.20660454,0.21747425,-0.95344687,-0.20894194,0.21744505,-0.95293844,-0.2097353,0.21890514,-0.9526087,-0.21086006,0.21925934,-0.9522729,-0.21165298,0.21995294,-0.95117915,-0.21386132,0.22253442,-0.9502376,-0.21690221,0.2236111,-0.94901794,-0.22032347,0.22543857,-0.94833666,-0.22194748,0.22670895,-0.9475163,-0.22468536,0.22744095,-0.9467376,-0.22682068,0.2285617,-0.9433293,-0.23858157,0.23067021,-0.94349587,-0.23889759,0.22965965,-0.94355494,-0.23960261,0.22868024,-0.94288915,-0.24104859,0.22990347,-0.9420973,-0.24417536,0.22984998,-0.94125026,-0.24575853,0.23162621,-0.94070244,-0.24734256,0.2321649,-0.93943304,-0.25030908,0.2341173,-0.93854976,-0.2526367,0.23515743,-0.9370889,-0.25519204,0.23820455,-0.93574005,-0.25711963,0.24141274,-0.9343105,-0.26039597,0.2434292,-0.9334172,-0.2618207,0.24532048,-0.9324263,-0.2642118,0.24652258,-0.9316437,-0.2657566,0.24781728,-0.92792946,-0.27058414,0.25638068,-0.9264942,-0.27285096,0.2591543,-0.9251049,-0.27416915,0.26270157,-0.92250085,-0.27820048,0.26757565,-0.9218173,-0.27901897,0.2690748,-0.9197831,-0.28073874,0.2741984,-0.91873187,-0.2821502,0.27626613,-0.91661763,-0.28436506,0.28097796,-0.9153655,-0.2859318,0.283459,-0.9132902,-0.28749603,0.2885258,-0.91243845,-0.2886141,0.29009995,-0.911475,-0.29030433,0.29143915,-0.9100598,-0.29241416,0.29374346,-0.9090176,-0.29344076,0.29593846,-0.9080827,-0.29489228,0.2973624,-0.90736043,-0.2956885,0.29877314,-0.9042869,-0.2994068,0.30433643,-0.9031152,-0.3027111,0.3045471,-0.9026554,-0.30374244,0.30488312,-0.900179,-0.30695277,0.30896235,-0.8992719,-0.30788863,0.31066805,-0.8979827,-0.309889,0.31240356,-0.89503634,-0.31362355,0.31709662,-0.92064583,-0.1900226,0.34103182,-0.921693,-0.18966784,0.33839032,-0.92241395,-0.18960756,0.3364543,-0.92496336,-0.19123402,0.32843935,-0.92567897,-0.18989877,0.3271956,-0.9259459,-0.19041255,0.32613996,-0.9266258,-0.18808116,0.32556129,-0.92739874,-0.18371181,0.3258551,-0.9280658,-0.17985529,0.32610723,-0.928589,-0.17676775,0.32630613,-0.929188,-0.17316307,0.32653356,-0.92960316,-0.17061767,0.3266919,-0.9295146,-0.16965018,0.32744688,-0.9295377,-0.16856843,0.32793954,-0.9301438,-0.16487283,0.32809988,-0.930119,-0.16397165,0.32862145,-0.93043065,-0.16442226,0.32751203,-0.9305569,-0.1646727,0.32702708,-0.93065155,-0.165357,0.32641184,-0.930994,-0.16628136,0.3249627,-0.93117374,-0.16720405,0.3239727,-0.9314381,-0.16795678,0.32282117,-0.9316536,-0.16961999,0.3213261,-0.9319023,-0.17053205,0.32012036,-0.9322173,-0.17111135,0.31889158,-0.9325748,-0.1730641,0.31678545,-0.93448645,-0.17375232,0.31071717,-0.9359922,-0.17374386,0.30615628,-0.9373494,-0.17373717,0.30197942,-0.9378126,-0.17210372,0.30147603,-0.9379682,-0.170967,0.30163893,-0.93862313,-0.16976778,0.3002758,-0.93889505,-0.16829123,0.3002569,-0.9391818,-0.16727129,0.29992956,-0.9395349,-0.16602263,0.29951748,-0.9399812,-0.1652225,0.29855794,-0.94047606,-0.16491316,0.29716724,-0.94131315,-0.16422224,0.29489097,-0.9424954,-0.1635043,0.2914941,-0.9435127,-0.16345385,0.2882128,-0.9444804,-0.16352277,0.28498596,-0.94427836,-0.1610135,0.28707662,-0.9440659,-0.15850483,0.28916404,-0.94441783,-0.15631671,0.28920582,-0.94518983,-0.15441403,0.28770208,-0.9456274,-0.15322848,0.28689694,-0.9462712,-0.15159447,0.28563976,-0.94741637,-0.14896572,0.28321624,-0.9475227,-0.14805385,0.28333858,-0.9476518,-0.14745209,0.28322062,-0.9478882,-0.14710142,0.28261125,-0.9481526,-0.14655016,0.28201005,-0.94849473,-0.14594814,0.28117058,-0.9489064,-0.1451472,0.2801942,-0.94901913,-0.14434442,0.28022745,-0.9492517,-0.14349103,0.27987754,-0.94957477,-0.14248899,0.279293,-0.9496854,-0.14168589,0.27932552,-0.9500264,-0.1404322,0.27879876,-0.95033234,-0.13952921,0.2782087,-0.9505967,-0.1389267,0.2776064,-0.95105815,-0.13737035,0.27679935,-0.950908,-0.13701917,0.27748805,-0.95092976,-0.13621709,0.27780834,-0.9510637,-0.1354134,0.27774277,-0.95135444,-0.13491176,0.27699015,-0.95165354,-0.13466015,0.27608344,-0.95219153,-0.13320413,0.27493268,-0.95253885,-0.13245068,0.27409223,-0.95292455,-0.13149613,0.27320975,-0.9528724,-0.13114467,0.27356043,-0.9528252,-0.1306412,0.2739653,-0.9528988,-0.12983844,0.27409115,-0.95304894,-0.12908463,0.27392498,-0.9529887,-0.12822944,0.27453563,-0.9527952,-0.12833075,0.2751589,-0.95266366,-0.12792856,0.27580097,-0.95244443,-0.12777804,0.276627,-0.9521901,-0.1276766,0.27754775,-0.95210487,-0.1272253,0.27804682,-0.9522179,-0.1264205,0.27802697,-0.9525764,-0.12486154,0.27750275,-0.9516502,-0.114498645,0.28504732,-0.95124584,-0.11431414,0.2864676,-0.95100486,-0.11364014,0.28753382,-0.9509156,-0.112610504,0.28823325,-0.9509816,-0.1114842,0.28845316,-0.9511319,-0.11050348,0.28833508,-0.95144814,-0.10905164,0.28784403,-0.951831,-0.10724365,0.28725702,-0.95208,-0.10623699,0.28680548,-0.9520045,-0.103372395,0.28810003,-0.9517716,-0.100874856,0.2897499,-0.95158154,-0.098188534,0.29129305,-0.9516061,-0.09740315,0.29147616,-0.9517009,-0.09576267,0.29171023,-0.951796,-0.09241481,0.29247868,-0.9518405,-0.09060212,0.29290074,-0.95196116,-0.089897625,0.29272568,-0.95166975,-0.08878569,0.2940099,-0.95102286,-0.088323906,0.29623374,-0.95063865,-0.087322146,0.29776004,-0.9500673,-0.08543903,0.30012035,-0.94961876,-0.08343503,0.3020975,-0.9491623,-0.08278961,0.30370525,-0.9483791,-0.08093464,0.3066377,-0.94728065,-0.07853559,0.31063086,-0.94634223,-0.07823824,0.3135526,-0.94555724,-0.077932335,0.31598756,-0.9451394,-0.077373266,0.31737176,-0.9444814,-0.077142216,0.3193807,-0.94407034,-0.07651346,0.32074425,-0.94356227,-0.07649647,0.32223982,-0.942645,-0.07585746,0.32506305,-0.94238377,-0.07489723,0.3260418,-0.94218165,-0.07375325,0.32688567,-0.9414398,-0.07252262,0.32928947,-0.94092697,-0.07269252,0.33071467,-0.940327,-0.07267385,0.33242097,-0.9392057,-0.073127784,0.33547723,-0.9389844,-0.074055806,0.33589277,-0.93846154,-0.07499922,0.3371426,-0.93814015,-0.07494644,0.33804747,-0.93782836,-0.0747459,0.33895585,-0.9373237,-0.075554945,0.34017035,-0.9370374,-0.07545295,0.34098047,-0.9400551,-0.06713789,0.33434862,-0.9396739,-0.046057656,0.33895674,-0.94961995,-0.03887155,0.3109839,-0.9528874,-0.041788846,0.3004318,-0.95633316,-0.039752062,0.28956297,-0.95647055,-0.03853432,0.2892736,-0.9651818,-0.0035486585,0.26155585,-0.9659447,-0.002720277,0.25873417,-0.9669107,-0.016612286,0.25457343,-0.96928066,-0.03304111,0.24372815,-0.9780481,-0.08661922,0.18952344,-0.9834972,-0.073328346,0.16539702,-0.98326606,-0.068865515,0.16865756,-0.98463374,-0.08506037,0.15251613,-0.9830267,-0.095418185,0.15669672,-0.97851294,-0.1157972,0.17059746,-0.95889217,-0.1911871,0.20969817,-0.95509154,-0.20216146,0.21663538,-0.9449047,-0.23125885,0.2316776,-0.9056204,-0.2972805,0.30244997,-0.92452055,-0.19181283,0.32934725,-0.9261014,-0.19098467,0.32536292,-0.92995274,-0.16712166,0.32750317,-0.9301242,-0.16579562,0.32769006,-0.9375569,-0.17371204,0.30134895,-0.9469298,-0.15046732,0.28404853,-0.95276356,-0.13199788,0.27352917,-0.9528235,-0.12420874,0.27694678,-0.9479322,-0.07975721,0.3083234,-0.93961436,-0.0723696,0.33449587,-0.9623,-0.016939469,0.27146214,-0.96541595,-0.0034804712,0.26069137,-0.9671703,-0.01689513,0.25356674,-0.97000104,-0.0372211,0.24023432,-0.9738874,-0.04776369,0.22195055,-0.97714657,-0.060859762,0.20366812,-0.9778719,-0.08400226,0.191599,-0.97971433,-0.083090164,0.18236186,-0.9825924,-0.09819185,0.15770364,-0.9823717,-0.101765156,0.15681122,-0.95975345,-0.1880108,0.20862702,-0.9441764,-0.23370399,0.23219265,-0.90475726,-0.2984748,0.3038537,-0.9509781,-0.1380743,0.27672416,-0.95313054,-0.12843055,0.27394846,-0.95231116,-0.116315335,0.2820891,-0.95207196,-0.10502691,0.2872775,-0.9519091,-0.089289844,0.29308084,-0.94186956,-0.0727742,0.3280026,-0.94041044,-0.06748138,0.33327842,-0.9499333,-0.039934307,0.3098903,-0.95400214,-0.04173942,0.29687995,-0.95760614,-0.031129738,0.28639385,-0.9583828,-0.029545343,0.2839534,-0.96567315,-0.003284492,0.25973955,-0.96700776,-0.01687308,0.25418743,-0.9728693,-0.045989662,0.2267382,-0.97692966,-0.060441274,0.20482989,-0.97942847,-0.084374174,0.18330546,-0.9827566,-0.07701136,0.16810288,-0.98330754,-0.06605966,0.16953601,-0.9649682,-0.16895136,0.20072818,-0.92287076,-0.19050781,0.33468848,-0.9544945,-0.041971076,0.2952604,-0.96248937,-0.016193083,0.27083564,-0.9721217,-0.044710908,0.23017433,-0.97908056,-0.085900925,0.18445131,-0.9829575,-0.07782704,0.16654602,-0.9838426,-0.06993165,0.16481286,-0.98238266,-0.10034411,0.15765613,-0.96283776,-0.17605726,0.20481053,-0.9249296,-0.27234182,0.26520777,-0.92356086,-0.1916254,0.33213702,-0.9529597,-0.118989564,0.27876368,-0.9464244,-0.040739864,0.32034516,-0.9548828,-0.04202384,0.29399455,-0.95808256,-0.030318784,0.28488347,-0.97703815,-0.060801934,0.20420511,-0.9518804,-0.21102868,0.22224012,-0.95835173,-0.1907078,0.2125852,-0.96431214,-0.17030486,0.20272727,-0.92992413,-0.25948742,0.26059055,-0.9218099,-0.27352077,0.27468672,-0.93762475,-0.24539915,0.24624991,-0.9239155,-0.19190982,0.33098468,-0.9529941,-0.123253055,0.27678668,-0.9531242,-0.12023678,0.27766407,-0.9817109,-0.09069461,0.16738634,-0.9300519,-0.2535102,0.26596227,-0.9376964,-0.24240047,0.24893266,-0.9218826,-0.27054533,0.27737617,-0.9377898,-0.23639621,0.25429714,-0.9450886,-0.21920855,0.24239436,-0.9519412,-0.20195259,0.2302674,-0.95193756,-0.20497996,0.22759196,-0.9583407,-0.1846336,0.21793002,-0.9642807,-0.16725717,0.20539635,-0.90406865,-0.29580742,0.3084765,-0.915998,-0.21428424,0.33916068,-0.95307493,-0.12141091,0.27732202,-0.9528362,-0.19934396,0.22883423,-0.9525389,-0.2002136,0.22931238,-0.94636357,-0.21574324,0.24052213,-0.95889604,-0.18288867,0.21695645,-0.9645375,-0.1663821,0.20490108,-0.93077284,-0.25179276,0.26507047,-0.9381305,-0.23553376,0.25384048,-0.9222634,-0.2696908,0.2769423,-0.93880916,-0.23380819,0.2529253,-0.9599947,-0.17939712,0.2150045,-0.9534279,-0.19760413,0.22787657,-0.96605647,-0.16112845,0.20192204,-0.9058947,-0.2831026,0.31497258,-0.9148438,-0.2237569,0.33614516,-0.96194947,-0.025028639,0.27207857,-0.9750928,-0.062137287,0.21291539,-0.9830784,-0.077787936,0.16584869,-0.9808594,-0.097258046,0.16868833,-0.94995993,-0.20598736,0.23483053,-0.95594805,-0.19026111,0.2235261,-0.96155506,-0.17448576,0.21205315,-0.96677613,-0.1586655,0.20042261,-0.9328329,-0.24696021,0.26236123,-0.93978214,-0.23138157,0.2515394,-0.9233571,-0.26728725,0.27562502,-0.9417046,-0.2265239,0.24875574,-0.9645768,-0.16465013,0.20611139,-0.9575875,-0.18535982,0.22060809,-0.9709182,-0.1438676,0.19136353,-0.9060546,-0.28282055,0.314766,-0.9147164,-0.22454084,0.33596912,-0.93306977,-0.17345178,0.3151116,-0.94774884,-0.079386815,0.30898204,-0.94864696,-0.053992037,0.311695,-0.9618455,-0.028184064,0.27213758,-0.974826,-0.061002664,0.21445964,-0.9714913,-0.04243939,0.23324573,-0.98327726,-0.07724253,0.16492242,-0.9808142,-0.097574465,0.16876796,-0.91066325,-0.25905162,0.3218457,-0.91222763,-0.27330372,0.3051979,-0.9225229,-0.23986325,0.3023528,-0.9182103,-0.26376006,0.2955004,-0.9295933,-0.244596,0.27573362,-0.93360025,-0.22058068,0.2823734,-0.9438753,-0.2012115,0.26194128,-0.93699074,-0.22295897,0.2689566,-0.92169046,-0.2661119,0.28226054,-0.95332956,-0.18176334,0.24109104,-0.96194565,-0.1622438,0.21985795,-0.9562184,-0.18416119,0.22744457,-0.9697081,-0.14266066,0.19827801,-0.9386117,-0.2241476,0.26223263,-0.9134494,-0.23094037,0.33507723,-0.91886675,-0.21146725,0.33311483,-0.90766674,-0.25032154,0.33686835,-0.9488001,-0.053866096,0.3112504,-0.9624544,-0.033237815,0.26940084,-0.97461694,-0.06012309,0.2156552,-0.97099286,-0.040678523,0.23562278,-0.98070765,-0.09784675,0.16922885,-0.9540376,-0.17984791,0.2397226,-0.9538022,-0.1804865,0.24017906,-0.9449066,-0.19866732,0.26015922,-0.9623733,-0.16096255,0.21892631,-0.9698993,-0.14201806,0.19780354,-0.923125,-0.23860264,0.301511,-0.93388057,-0.21994752,0.28194,-0.91098523,-0.25842464,0.32143846,-0.9344394,-0.21868071,0.28107238,-0.96322095,-0.15839925,0.21706018,-0.9702798,-0.14073268,0.1968538,-0.9545065,-0.17857061,0.23880903,-0.9710331,-0.13816144,0.19495176,-0.92420554,-0.1919517,0.33014947,-0.9190852,-0.21149848,0.3324917,-0.9135956,-0.23096113,0.3346641,-0.91893965,-0.21147762,0.3329071,-0.90774006,-0.2503318,0.336663,-0.9494293,-0.05285688,0.30949986,-0.96348363,-0.038486674,0.264987,-0.9744364,-0.05936175,0.21667913,-0.9705596,-0.039154217,0.23765743,-0.93502814,-0.21692537,0.28047416,-0.92502195,-0.23335926,0.29979652,-0.9353212,-0.21604739,0.2801744,-0.92439294,-0.23510773,0.30036977,-0.9133551,-0.2523382,0.3195432,-0.91301894,-0.2532083,0.31981537,-0.9359048,-0.21429089,0.27957377,-0.9459844,-0.19514048,0.2589086,-0.9552424,-0.17591551,0.2378355,-0.95499796,-0.17680061,0.23816034,-0.96366215,-0.15662308,0.2163896,-0.9712286,-0.13727069,0.19460683,-0.9123443,-0.2549479,0.32035828,-0.9193251,-0.21139479,0.33189413,-0.91375774,-0.23089236,0.3342687,-0.91916525,-0.21146387,0.33229244,-0.90782225,-0.25029752,0.33646688,-0.9532247,-0.0616083,0.2959174,-0.9637959,-0.0394532,0.26370618,-0.9747223,-0.06194002,0.21466233,-0.93602645,-0.21388042,0.279481,-0.92541474,-0.23213348,0.29953572,-0.93608713,-0.21367523,0.2794347,-0.92528397,-0.23254207,0.2996227,-0.91384584,-0.25091505,0.31926072,-0.91377586,-0.2511184,0.3193012,-0.9362085,-0.21326481,0.27934185,-0.94620776,-0.19431627,0.25871232,-0.9553949,-0.17529504,0.23768093,-0.95534414,-0.17550184,0.23773238,-0.9637537,-0.15620816,0.216282,-0.97126913,-0.13706262,0.19455099,-0.9136358,-0.2515251,0.31938192,-0.9205322,-0.21077628,0.32892823,-0.9145764,-0.23048185,0.3323073,-0.9197285,-0.21118866,0.330906,-0.9082383,-0.25009334,0.33549452,-0.93559957,-0.17727096,0.30533338,-0.9544167,-0.06454084,0.29141614,-0.96856964,-0.06223854,0.24083012,-0.97357464,-0.07347066,0.21622819,-0.96282077,-0.050998535,0.2652834,-0.94182295,-0.17278747,0.2882949,-0.93674886,-0.1926508,0.29221088,-0.93418586,-0.18189391,0.30693862,-0.94900644,-0.16366635,0.2694441,-0.95573044,-0.1545311,0.25039864,-0.9511718,-0.17445935,0.25462928,-0.9619896,-0.14538263,0.23117104,-0.96777856,-0.13622181,0.21177413,-0.9730928,-0.12704922,0.1922207,-0.9260523,-0.21160603,0.3124902,-0.93127817,-0.2124355,0.29595965,-0.95444965,-0.06484526,0.29124036,-0.9737914,-0.07491636,0.21475056,-0.9687502,-0.06320307,0.23985098,-0.9736473,-0.073952615,0.2157358,-0.9629289,-0.051481053,0.26479736,-0.95426005,-0.15213731,0.25737533,-0.96310335,-0.14073174,0.22940455,-0.97099686,-0.12930734,0.2011088,-0.95552576,-0.08005963,0.28383255,-0.9561286,-0.05991806,0.28675407,-0.9545244,-0.10016856,0.28080148,-0.9744186,-0.098386526,0.20206101,-0.96964365,-0.07886953,0.23145363,-0.97407883,-0.08274494,0.21053183,-0.96361154,-0.059322122,0.26064098,-0.9601737,-0.12809077,0.24831277,-0.9582747,-0.13611542,0.25136068,-0.96676075,-0.12468389,0.22322075,-0.97268045,-0.12127554,0.19795169,-0.95570976,-0.08417462,0.2820167,-0.9562656,-0.06197869,0.28585774,-0.9546649,-0.10632897,0.27804512,-0.9618473,-0.10521967,0.25254413,-0.9556767,-0.085715055,0.28166476,-0.96299314,-0.08229277,0.2566556,-0.95456284,-0.1086344,0.27750382,-0.9562666,-0.06275014,0.2856865,-0.96846765,-0.1018037,0.22739054,-0.95463145,-0.10709751,0.2778649,-0.7299009,-0.5034265,0.46239206,-0.7298937,-0.5028358,0.46304578,-0.72988373,-0.5021137,0.46384427,-0.72937846,-0.500512,0.46636325,-0.7293567,-0.49908465,0.4679245,-0.7297472,-0.49670336,0.46984562,-0.72911483,-0.49570438,0.47187775,-0.7287495,-0.49386328,0.4743661,-0.728643,-0.4911756,0.477311,-0.7287345,-0.48918936,0.47920752,-0.72895086,-0.48691612,0.4811895,-0.7284772,-0.48622084,0.48260787,-0.7284517,-0.48476785,0.48410565,-0.7288528,-0.48079306,0.48745415,-0.728402,-0.4794849,0.48941267,-0.7283066,-0.47839865,0.4906162,-0.72852176,-0.47698355,0.49167332,-0.7281602,-0.47674236,0.49244243,-0.72813594,-0.47628835,0.49291727,-0.72786856,-0.47500652,0.4945465,-0.7270445,-0.47541893,0.49536166,-0.7266917,-0.47534236,0.4959524,-0.7268109,-0.47477844,0.4963179,-0.7272679,-0.47413182,0.49626654,-0.727559,-0.47133502,0.49849892,-0.72685236,-0.47084796,0.49998784,-0.726617,-0.47005397,0.50107586,-0.7260962,-0.4679118,0.50382817,-0.7250577,-0.46741763,0.5057788,-0.7249315,-0.46694142,0.5063991,-0.7251747,-0.46588904,0.5070198,-0.72456735,-0.46557087,0.50817895,-0.72441816,-0.4649749,0.5089368,-0.7243977,-0.46225214,0.5114401,-0.7238036,-0.4624439,0.5121075,-0.72344273,-0.46215975,0.5128733,-0.7229239,-0.46103796,0.5146116,-0.72226804,-0.46108788,0.51548696,-0.7220134,-0.4609199,0.5159937,-0.7210707,-0.4605644,0.51762676,-0.72073686,-0.45992136,0.5186624,-0.7206294,-0.45793313,0.5205675,-0.7201066,-0.45825717,0.5210056,-0.71963626,-0.4577769,0.52207655,-0.7192131,-0.45649445,0.52377987,-0.7190428,-0.45647025,0.5240347,-0.7185812,-0.4558726,0.5251869,-0.71876395,-0.45365342,0.52685565,-0.7189935,-0.45216718,0.5278193,-0.7195807,-0.45095062,0.52805984,-0.72017723,-0.45007727,0.52799165,-0.7206163,-0.4487966,0.52848256,-0.72177726,-0.4453099,0.5298459,-0.7222815,-0.4438825,0.5303563,-0.7222859,-0.4428864,0.5311823,-0.72270375,-0.4418988,0.53143644,-0.72428185,-0.43968362,0.53112525,-0.7257559,-0.43773693,0.530721,-0.72743064,-0.43442678,0.53114784,-0.7281696,-0.43316904,0.53116244,-0.72888845,-0.4328357,0.5304478,-0.7298463,-0.4317384,0.5300249,-0.7305552,-0.43164313,0.5291251,-0.7310338,-0.43122327,0.5288062,-0.73149514,-0.4308741,0.5284528,-0.73193055,-0.43097717,0.52776545,-0.73208576,-0.4316199,0.5270244,-0.73282826,-0.43164313,0.5259724,-0.7331975,-0.43190742,0.52524024,-0.73415875,-0.4322164,0.52364105,-0.734686,-0.4317154,0.5233147,-0.73540044,-0.43170914,0.5223154,-0.7305487,-0.4485744,0.51485884,-0.731025,-0.4488013,0.51398426,-0.7312042,-0.44935858,0.51324195,-0.73124236,-0.45098105,0.5117624,-0.73166907,-0.45157123,0.5106307,-0.7317637,-0.45221737,0.50992286,-0.7319795,-0.45337084,0.50858724,-0.7331159,-0.4535729,0.5067669,-0.73359466,-0.45413485,0.5055694,-0.73351836,-0.45578325,0.50419486,-0.7338902,-0.45632157,0.5031659,-0.73379534,-0.45721617,0.5024916,-0.7340986,-0.46045414,0.49908045,-0.73506165,-0.45960948,0.49844107,-0.73610544,-0.45904785,0.49741715,-0.7372292,-0.4587693,0.49600783,-0.7379739,-0.45898283,0.49470115,-0.7383416,-0.4596853,0.4934988,-0.7384531,-0.46080035,0.49229065,-0.7387667,-0.4625815,0.4901451,-0.7398373,-0.46156108,0.4894918,-0.74076384,-0.4612512,0.4883813,-0.7423663,-0.46151116,0.4856951,-0.7432268,-0.4608291,0.48502624,-0.74412405,-0.4607536,0.4837205,-0.74766296,-0.4606719,0.47831112,-0.7519302,-0.45890698,0.473292,-0.7551503,-0.45823768,0.46879232,-0.75977415,-0.45604405,0.4634296,-0.7595267,-0.45529616,0.46456918,-0.7595347,-0.45444918,0.46538472,-0.75971615,-0.45277676,0.46671677,-0.7592795,-0.4522797,0.46790782,-0.7592203,-0.451775,0.4684911,-0.75959396,-0.45081377,0.46881112,-0.75938594,-0.4504211,0.46952504,-0.7594367,-0.44980323,0.4700351,-0.7597841,-0.44853923,0.470681,-0.7596644,-0.44822702,0.4711715,-0.7598852,-0.44764337,0.47137028,-0.7617889,-0.442486,0.4731636,-0.7617046,-0.44231173,0.47346213,-0.7617334,-0.44189578,0.47380415,-0.76200277,-0.4405436,0.47462943,-0.7614038,-0.4392013,0.47682962,-0.7612676,-0.43847376,0.4777158,-0.76170015,-0.4369106,0.47845793,-0.7618015,-0.43497497,0.48005754,-0.76195896,-0.4340675,0.4806287,-0.76207,-0.43314302,0.48128632,-0.7616682,-0.4320659,0.4828878,-0.76162195,-0.43104947,0.48386824,-0.76193315,-0.43009725,0.48422545,-0.7625706,-0.42901516,0.48418185,-0.76353383,-0.42780638,0.48373318,-0.7662402,-0.42477512,0.48212245,-0.76794755,-0.4233967,0.4806161,-0.76987743,-0.4222568,0.4785268,-0.77099353,-0.4218874,0.47705343,-0.7713001,-0.4222877,0.476203,-0.7718951,-0.4219741,0.47551623,-0.7727796,-0.420943,0.47499335,-0.77390206,-0.42013118,0.47388327,-0.78330994,-0.4139611,0.46374753,-0.78423053,-0.41289803,0.4631389,-0.7863725,-0.41098613,0.46120352,-0.78971946,-0.4082278,0.45792285,-0.79197496,-0.40688306,0.45521632,-0.8007693,-0.40283722,0.44327262,-0.8017792,-0.4012517,0.44288498,-0.80334234,-0.3996617,0.44148785,-0.8066295,-0.39701962,0.43786347,-0.80687886,-0.39651433,0.43786174,-0.8075707,-0.39585704,0.43718037,-0.8140439,-0.3886325,0.43162182,-0.8166869,-0.38449517,0.4303323,-0.81889945,-0.3817022,0.4286107,-0.82166463,-0.3793017,0.42543796,-0.8218323,-0.37883472,0.42553014,-0.56846863,-0.79129857,0.22514437,-0.57026535,-0.7901289,0.22470817,-0.5734028,-0.7881514,0.22366624,-0.5781032,-0.7849348,0.22287674,-0.5787711,-0.78452915,0.22257127,-0.5795547,-0.78408617,0.2220929,-0.5797915,-0.78436846,0.22047229,-0.58108515,-0.7837051,0.21942267,-0.58133453,-0.78380466,0.21840417,-0.5817993,-0.78325385,0.21914136,-0.5812301,-0.783273,0.2205789,-0.5807922,-0.78312045,0.22226743,-0.5814456,-0.7824883,0.22278509,-0.5819649,-0.78202635,0.22305067,-0.58392626,-0.78046876,0.22338009,-0.58685416,-0.7782101,0.22358735,-0.58838934,-0.77707624,0.22349608,-0.5884915,-0.7772136,0.22274847,-0.58856404,-0.7774549,0.2217122,-0.58906835,-0.7766029,0.22335258,-0.58984554,-0.77565503,0.22459179,-0.5956198,-0.76856506,0.23354852,-0.5954934,-0.7682246,0.23498629,-0.5957735,-0.76781315,0.23562032,-0.5968151,-0.76706904,0.23540786,-0.597745,-0.76644963,0.23506564,-0.59834474,-0.7661508,0.23451348,-0.5992472,-0.7659065,0.23300217,-0.60013324,-0.76569366,0.23141584,-0.59952295,-0.76532304,0.23420693,-0.60033286,-0.76450515,0.23480293,-0.599999,-0.7645503,0.23550813,-0.5982857,-0.7657967,0.23581706,-0.5971373,-0.766523,0.23636746,-0.59575737,-0.7672166,0.23759595,-0.5954574,-0.76706904,0.2388214,-0.59581226,-0.76587033,0.24176514,-0.5962426,-0.7651421,0.24300681,-0.59681296,-0.764459,0.24375543,-0.60264677,-0.7586144,0.24763092,-0.6065585,-0.7541569,0.25166276,-0.6073305,-0.75257885,0.25450873,-0.60826886,-0.7511246,0.25655562,-0.60855556,-0.75043106,0.25790167,-0.6086833,-0.74922115,0.2610982,-0.60907024,-0.7480244,0.26361504,-0.6090552,-0.74713004,0.26617375,-0.61036336,-0.7441283,0.27153194,-0.61078304,-0.74337065,0.27266133,-0.6111384,-0.7428734,0.27321976,-0.61107194,-0.7424568,0.27449766,-0.61236715,-0.7414283,0.27439117,-0.6130173,-0.7411182,0.27377653,-0.6134812,-0.7414283,0.2718912,-0.6143999,-0.7411182,0.27065942,-0.6140381,-0.7406088,0.27286586,-0.6142649,-0.7396494,0.2749499,-0.6146647,-0.7389046,0.27605677,-0.6152977,-0.738083,0.27684346,-0.61773676,-0.73544616,0.27842468,-0.6189189,-0.7344023,0.27855456,-0.620498,-0.7332167,0.27816457,-0.62193537,-0.73246866,0.27692252,-0.6423898,-0.71897745,0.26534283,-0.6438793,-0.7166134,0.26811314,-0.6455278,-0.7141948,0.27059138,-0.6477382,-0.7099105,0.27651805,-0.6468024,-0.70936054,0.28009674,-0.6468348,-0.7090518,0.2808029,-0.64732283,-0.7066717,0.28563654,-0.644672,-0.7071948,0.29029915,-0.6440602,-0.7072032,0.2916334,-0.6445974,-0.7064279,0.2923248,-0.64534295,-0.7055696,0.29275241,-0.6479885,-0.702916,0.2932917,-0.64856404,-0.7006273,0.29746616,-0.6494866,-0.69917375,0.2988699,-0.65025747,-0.69816154,0.2995592,-0.6518249,-0.696642,0.29969022,-0.6526667,-0.69526994,0.3010413,-0.6558869,-0.6919858,0.30160922,-0.65797144,-0.689264,0.3032964,-0.65818334,-0.6886339,0.30426636,-0.6595784,-0.68573654,0.307769,-0.65982646,-0.68372667,0.3116839,-0.6591003,-0.6827535,0.31533223,-0.65916014,-0.6823125,0.3161607,-0.6594449,-0.6816019,0.31709814,-0.659995,-0.68134993,0.31649467,-0.6662611,-0.6777275,0.31109747,-0.6657509,-0.6773024,0.3131088,-0.66595185,-0.67599475,0.31549838,-0.6624992,-0.677468,0.3195809,-0.661176,-0.67887217,0.31934136,-0.659548,-0.6802276,0.31982324,-0.6588002,-0.6804811,0.32082364,-0.65768015,-0.6795088,0.32515323,-0.6580401,-0.67874575,0.32601744,-0.658415,-0.6781057,0.32659188,-0.65976894,-0.676305,0.327592,-0.66135055,-0.6743868,0.32835627,-0.6628496,-0.6727894,0.32861054,-0.66415304,-0.67157406,0.32846466,-0.66478467,-0.6711118,0.32813144,-0.66557306,-0.67060614,0.32756665,-0.66601545,-0.6707453,0.32638043,-0.66648304,-0.6714984,0.32386756,-0.66692775,-0.6719568,0.32199606,-0.66672134,-0.6723769,0.3215462,-0.6673976,-0.6737345,0.31727323,-0.66772294,-0.6730025,0.31814116,-0.66796094,-0.672628,0.31843334,-0.6682711,-0.67242616,0.31820872,-0.6686725,-0.67250943,0.31718788,-0.6695253,-0.67198944,0.31649014,-0.6712441,-0.6712267,0.31446162,-0.6741599,-0.6687404,0.31351998,-0.6762477,-0.66581804,0.3152385,-0.6781835,-0.6634941,0.315979,-0.68513095,-0.6533315,0.3221079,-0.6851051,-0.6536026,0.32161254,-0.6833802,-0.65414035,0.32417879,-0.6789578,-0.6561619,0.32934457,-0.6754693,-0.6580326,0.3327676,-0.6744882,-0.658161,0.33449936,-0.67215866,-0.6580647,0.3393427,-0.6710862,-0.6575025,0.34254014,-0.67075825,-0.6566802,0.34475258,-0.6699025,-0.65461975,0.3502907,-0.67010206,-0.65361416,0.35178372,-0.6711726,-0.6517623,0.35317582,-0.6742488,-0.6489011,0.35258463,-0.67914975,-0.64118814,0.35725808,-0.6789295,-0.6404502,0.3589963,-0.6811556,-0.6369984,0.3609157,-0.68216634,-0.6355599,0.36154208,-0.68279916,-0.6351558,0.36105737,-0.6836067,-0.6344672,0.36073992,-0.6828787,-0.6343776,0.36227304,-0.683965,-0.6335128,0.36173648,-0.6849547,-0.6328651,0.3609969,-0.6856771,-0.6326144,0.36006382,-0.68685275,-0.6313607,0.36002356,-0.6882186,-0.6291589,0.36126748,-0.6899778,-0.6273236,0.3611034,-0.68919086,-0.6267845,0.3635343,-0.68738866,-0.62822294,0.3644623,-0.6855779,-0.6288023,0.366866,-0.68364304,-0.6293045,0.3696052,-0.68239415,-0.6290607,0.3723182,-0.68051136,-0.6292251,0.37547326,-0.67932487,-0.6289667,0.37804592,-0.6733946,-0.62712306,0.3914796,-0.6727453,-0.6265587,0.39349443,-0.66925937,-0.62487954,0.40201673,-0.665575,-0.621638,0.41300863,-0.66413265,-0.6179918,0.4207302,-0.66417104,-0.61683875,0.4223585,-0.6661351,-0.6121432,0.4260807,-0.66650057,-0.60801876,0.43138164,-0.6680842,-0.6012256,0.43839625,-0.6685943,-0.5997399,0.43965185,-0.66957873,-0.59811836,0.44036213,-0.6724922,-0.5937907,0.44177678,-0.6729648,-0.59326535,0.44176307,-0.67358065,-0.59266675,0.44162783,-0.6749712,-0.59275204,0.43938473,-0.68361527,-0.5838291,0.4379655,-0.68395096,-0.5807876,0.44147128,-0.6852614,-0.57874745,0.44211775,-0.687762,-0.57626796,0.4414733,-0.69107306,-0.5738473,0.43945104,-0.6937751,-0.57206756,0.43750978,-0.6995032,-0.5690426,0.43230283,-0.70448804,-0.56299245,0.43212965,-0.7042758,-0.5628415,0.43267208,-0.70444864,-0.561982,0.43350708,-0.70567673,-0.56007147,0.4339819,-0.7064126,-0.5590616,0.43408677,-0.70738673,-0.55772114,0.4342247,-0.709151,-0.5556142,0.43404806,-0.7100171,-0.5543139,0.43429467,-0.7124133,-0.5488177,0.43734026,-0.71360135,-0.54627043,0.43859062,-0.7135516,-0.5456908,0.43939245,-0.71294725,-0.545852,0.44017246,-0.71253467,-0.5457849,0.44092315,-0.7126676,-0.54485357,0.44185916,-0.7128849,-0.5440428,0.44250715,-0.71702695,-0.53688276,0.44455525,-0.7176096,-0.5346752,0.44627225,-0.7181613,-0.53359866,0.44667307,-0.71963346,-0.5316801,0.4465916,-0.72000384,-0.5306822,0.44718108,-0.7205467,-0.52971977,0.44744763,-0.7214949,-0.5280332,0.4479129,-0.72125363,-0.5274279,0.44901335,-0.72132236,-0.52649945,0.4499915,-0.72170067,-0.5252482,0.4508464,-0.72205776,-0.52429235,0.45138693,-0.72239536,-0.52363175,0.45161337,-0.72289014,-0.5230101,0.4515422,-0.72398746,-0.5212571,0.45181102,-0.72421813,-0.51951045,0.4534501,-0.724581,-0.51795703,0.45464587,-0.72507817,-0.51659894,0.45539796,-0.72565055,-0.5155027,0.45572817,-0.72649264,-0.5141013,0.45596954,-0.7262278,-0.5138031,0.45672697,-0.72648704,-0.5129211,0.45730567,-0.72765887,-0.5107231,0.45790222,-0.7290014,-0.5089065,0.4577893,-0.72939044,-0.5074665,0.45876724,-0.72926784,-0.5058,0.4607979,-0.7294365,-0.50445265,0.46200636,-0.7298265,-0.49783006,0.46852797,-0.7288694,-0.48255566,0.4856845,-0.7285707,-0.47753626,0.491064,-0.72845143,-0.47561818,0.4930982,-0.72661424,-0.46879274,0.5022599,-0.7252415,-0.4663295,0.50651914,-0.7247279,-0.46409935,0.50929475,-0.72331566,-0.46139482,0.51374054,-0.7335297,-0.43247932,0.52430516,-0.73108673,-0.4502446,0.51263237,-0.7315273,-0.4529196,0.5096387,-0.7334201,-0.4550533,0.50499654,-0.73323435,-0.45846483,0.50217265,-0.7383063,-0.4623276,0.49107745,-0.7415459,-0.4616518,0.4868134,-0.7450534,-0.4612859,0.48177874,-0.7584208,-0.45887223,0.46285424,-0.75980103,-0.45350003,0.46587566,-0.75953865,-0.4512655,0.46846607,-0.75974727,-0.4489581,0.47034106,-0.76196873,-0.44119543,0.47407833,-0.7615047,-0.43781045,0.4779461,-0.7621248,-0.43361294,0.480776,-0.7759398,-0.41924024,0.47133324,-0.8054527,-0.39806908,0.43907496,-0.8087051,-0.39504462,0.43581632,-0.8206888,-0.38025713,0.4264673,-0.5912069,-0.7744208,0.22527058,-0.5955718,-0.7691894,0.23160695,-0.6013366,-0.7637223,0.23478203,-0.6018236,-0.76326114,0.23503362,-0.6032516,-0.7581799,0.24748895,-0.6137847,-0.7414797,0.27106506,-0.6470958,-0.7085565,0.2814511,-0.6822229,-0.6591986,0.3162739,-0.6854226,-0.6528462,0.32247114,-0.6813274,-0.65503705,0.32667944,-0.67920816,-0.6413868,0.35679018,-0.7045885,-0.56347114,0.43134135,-0.7190188,-0.53265285,0.44642237,-0.7212591,-0.52879715,0.44739118,-0.7235435,-0.5224231,0.45117503,-0.729036,-0.4879058,0.48005664,-0.7285265,-0.47516385,0.4934252,-0.72836244,-0.47492093,0.49390107,-0.7282362,-0.47261384,0.4962945,-0.72483647,-0.46328396,0.50988245,-0.72083986,-0.458489,0.5197862,-0.73288614,-0.43846154,0.5202205,-0.7617158,-0.44318736,0.47262454,-0.7931495,-0.40695938,0.45309812,-0.8118569,-0.3916833,0.43298098,-0.5818795,-0.78352505,0.21795608,-0.5883131,-0.77764887,0.22169784,-0.5931421,-0.7725464,0.22661538,-0.599974,-0.7660785,0.23055367,-0.6039148,-0.75752723,0.24786988,-0.647328,-0.7075212,0.2835139,-0.64673936,-0.704587,0.2920366,-0.6599271,-0.68440545,0.30997643,-0.66371053,-0.6765196,0.31907615,-0.6654796,-0.67257506,0.32369685,-0.6667421,-0.6745088,0.3170061,-0.6837602,-0.65744984,0.31659383,-0.6754855,-0.64753443,0.3527301,-0.6788895,-0.64212805,0.35606268,-0.6654767,-0.614413,0.42383662,-0.68223214,-0.58637667,0.43671703,-0.7164366,-0.53824097,0.44386387,-0.7263005,-0.51466686,0.45563763,-0.7280633,-0.47340366,0.49579513,-0.7247425,-0.4625316,0.5106985,-0.7313994,-0.44320875,0.5182865,-0.73345214,-0.4604298,0.5000524,-0.7607958,-0.44583178,0.47161818,-0.7811288,-0.41568252,0.46588176,-0.5940192,-0.77161485,0.22749013,-0.5950666,-0.7703166,0.22914642,-0.62561387,-0.7318928,0.27007428,-0.65750146,-0.68999845,0.30264497,-0.6603169,-0.6813686,0.31578225,-0.67692435,-0.6454122,0.35385954,-0.69023955,-0.6266052,0.3618498,-0.6765192,-0.59196794,0.43805912,-0.73312044,-0.45953536,0.5013598,-0.79537654,-0.40615582,0.4499039,-0.8101349,-0.39365366,0.4344172,-0.62667143,-0.7314235,0.26889142,-0.6617955,-0.68083566,0.31383044,-0.66456306,-0.6737019,0.32323635,-0.672362,-0.6704533,0.31372222,-0.68600196,-0.6525726,0.32179245,-0.67897,-0.61940056,0.3941354,-0.6792833,-0.58981866,0.43667853,-0.6808356,-0.588163,0.4364941,-0.7306769,-0.4467119,0.51629424,-0.81888646,-0.4855705,0.30601686,-0.63480496,-0.7260206,0.26441777,-0.6643399,-0.67423946,0.3225735,-0.68289995,-0.59913725,0.41795006,-0.6859304,-0.6083753,0.39922294,-0.6883762,-0.6175317,0.3805165,-0.7273211,-0.4552628,0.51355606,-0.7614061,-0.44434518,0.47203612,-0.8161361,-0.38880208,0.42749813,-0.83932996,-0.42340297,0.34096196,-0.82017756,-0.47871435,0.31327513,-0.6084392,-0.7522959,0.25269076,-0.63665533,-0.72468656,0.26362732,-0.6476837,-0.7102755,0.27570745,-0.68631434,-0.65251315,0.32124636,-0.69813365,-0.5837205,0.41458395,-0.6961314,-0.59820986,0.39692056,-0.68800205,-0.59402245,0.4168819,-0.69349897,-0.61250645,0.379335,-0.7275202,-0.45655128,0.5121281,-0.7986409,-0.40447298,0.44561678,-0.785444,-0.4132426,0.4607692,-0.8160448,-0.39541167,0.4215691,-0.8371755,-0.3976398,0.37552613,-0.8389911,-0.42410073,0.34092885,-0.8203162,-0.4782952,0.31355232,-0.7504128,-0.60601157,0.26387617,-0.70801914,-0.66635406,0.2338401,-0.6195215,-0.76075894,0.19349153,-0.6196111,-0.7442842,0.24924518,-0.66557235,-0.6789147,0.30998108,-0.66524476,-0.6757637,0.3174788,-0.6885114,-0.6400044,0.34109604,-0.7018066,-0.5668613,0.43143454,-0.6998656,-0.58210546,0.4139341,-0.6972891,-0.59714746,0.39648807,-0.6987112,-0.5831824,0.4143681,-0.6940794,-0.61198235,0.37911913,-0.72882104,-0.46805403,0.4997452,-0.72754484,-0.45296106,0.5152715,-0.729582,-0.48301208,0.48415846,-0.8150192,-0.39623272,0.4227805,-0.834458,-0.4277081,0.34748465,-0.83372486,-0.41454518,0.3647672,-0.8324647,-0.40129495,0.38205346,-0.8067152,-0.510717,0.29728565,-0.814374,-0.49189898,0.3079452,-0.8215257,-0.4728485,0.31860614,-0.75818664,-0.5931796,0.27072316,-0.71574545,-0.65501654,0.24220195,-0.7039785,-0.67015606,0.23517045,-0.7271761,-0.63960934,0.24922837,-0.620283,-0.759984,0.19409609,-0.61877495,-0.74574226,0.24695359,-0.6569789,-0.69476014,0.29272357,-0.6885944,-0.64049995,0.3399964,-0.6864031,-0.65349036,0.31906286,-0.7027875,-0.5657937,0.43123913,-0.7006082,-0.58131516,0.41378844,-0.6977888,-0.5966277,0.39639142,-0.70011324,-0.58184195,0.41388568,-0.69433147,-0.6117263,0.37907094,-0.7290684,-0.4709081,0.49669382,-0.7277209,-0.4544012,0.5137527,-0.72979575,-0.4872518,0.47956628,-0.76586956,-0.43958938,0.46926,-0.7595261,-0.45703742,0.46285737,-0.8023221,-0.40503722,0.4384337,-0.8167675,-0.39651585,0.4191253,-0.78735864,-0.41352352,0.4572358,-0.8302449,-0.43625316,0.3469532,-0.8310048,-0.4202852,0.3644056,-0.8330616,-0.43056083,0.34731212,-0.831149,-0.4041858,0.38187063,-0.7965886,-0.52556306,0.29871392,-0.80782866,-0.5019413,0.30897844,-0.81835705,-0.47793904,0.3191645,-0.75790596,-0.59362113,0.27054107,-0.69158745,-0.68227464,0.2370825,-0.7076328,-0.6632638,0.24359174,-0.7231956,-0.6438149,0.24998084,-0.62609327,-0.7541262,0.19824441,-0.6025819,-0.7696075,0.21118549,-0.6380543,-0.7235145,0.26346427,-0.6194858,-0.745176,0.24688056,-0.65600765,-0.6967655,0.29012388,-0.6649772,-0.6745818,0.32053807,-0.68874127,-0.6401458,0.3403657,-0.7019845,-0.5795964,0.41386685,-0.6987231,-0.5954981,0.39644417,-0.70106727,-0.58074254,0.413815,-0.69480705,-0.61116976,0.37909728,-0.7319696,-0.48163196,0.48192447,-0.79627746,-0.42280588,0.43264002,-0.78437936,-0.42239013,0.45424178,-0.81378824,-0.40545678,0.41635755,-0.77817863,-0.44000158,0.44814807,-0.8297399,-0.4373802,0.34674218,-0.830683,-0.4210429,0.3642645,-0.83007675,-0.436629,0.34688294,-0.83099556,-0.40456772,0.38180012,-0.7957624,-0.52684134,0.29866415,-0.80729955,-0.50280774,0.30895275,-0.7963134,-0.52598935,0.29869744,-0.8181034,-0.4783792,0.31915557,-0.7288443,-0.63417983,0.2580735,-0.7027294,-0.66817814,0.244355,-0.68908936,-0.6846785,0.23742622,-0.71598303,-0.6513425,0.25123927,-0.74130684,-0.6166989,0.26485193,-0.75336516,-0.5989083,0.27156904,-0.76501346,-0.58081704,0.27821916,-0.62918043,-0.75096375,0.20046303,-0.6028494,-0.7694817,0.21088015,-0.6390438,-0.72259974,0.2635765,-0.6199929,-0.74473435,0.24694033,-0.6563798,-0.69618565,0.29067343,-0.6657179,-0.67473775,0.31866702,-0.6986931,-0.6094637,0.3746758,-0.7024469,-0.58670413,0.4029226,-0.69333935,-0.63173175,0.34669235,-0.73211044,-0.48207322,0.48126888,-0.79575425,-0.42374098,0.4326878,-0.7779096,-0.44046482,0.44816002,-0.81353486,-0.40592837,0.41639313,-0.7773709,-0.4413912,0.44818336,-0.81227225,-0.47121412,0.34376022,-0.8100987,-0.48709062,0.32631707,-0.79917055,-0.5113814,0.31593594,-0.79165435,-0.53106225,0.30208662,-0.8060444,-0.49142852,0.32983404,-0.81785125,-0.45074907,0.35769355,-0.8227791,-0.43004453,0.37161297,-0.82581276,-0.44184747,0.3504342,-0.8270548,-0.40911126,0.38549763,-0.62929416,-0.7507137,0.20104173,-0.60296726,-0.7694584,0.21062817,-0.6403457,-0.7213591,0.26381525,-0.6206623,-0.7441356,0.24706379,-0.70675313,-0.579977,0.40512565,-0.7017194,-0.6050769,0.37612742,-0.7038876,-0.58446616,0.40366033,-0.6949295,-0.6295893,0.34740514,-0.7319421,-0.48412314,0.47946373,-0.8098473,-0.42689544,0.4023775,-0.80550915,-0.44763526,0.38830107,-0.7876185,-0.46505448,0.40420458,-0.7989035,-0.44607633,0.40344653,-0.82044137,-0.4075204,0.40100253,-0.8005207,-0.46813703,0.37418485,-0.8118256,-0.44919285,0.37304828,-0.7920106,-0.44451603,0.41847906,-0.77357996,-0.46196628,0.43377554,-0.7848325,-0.44295418,0.43339318,-0.7885988,-0.5083833,0.34591675,-0.80060756,-0.48990992,0.3449867,-0.7768914,-0.5053788,0.37554237,-0.79488325,-0.48839003,0.36004972,-0.78167015,-0.5281059,0.33180696,-0.78295183,-0.5393308,0.31001413,-0.77965117,-0.51678777,0.35365877,-0.76914304,-0.48229545,0.41929713,-0.78257847,-0.48534557,0.38988537,-0.7733891,-0.4938805,0.3974309,-0.76415336,-0.4706252,0.44111395,-0.788873,-0.48686865,0.37501776,-0.6292809,-0.75062484,0.20141457,-0.60331386,-0.7696265,0.20901524,-0.6416315,-0.71997654,0.26446712,-0.62133116,-0.7434692,0.24738865,-0.7189704,-0.5451418,0.43116355,-0.71608686,-0.5612817,0.4149488,-0.7099138,-0.5737782,0.40841278,-0.71260935,-0.577211,0.39876726,-0.7085399,-0.59292364,0.38263923,-0.7038811,-0.6084136,0.36658475,-0.698636,-0.62367505,0.350624,-0.69280845,-0.6387026,0.3347768,-0.734457,-0.4851838,0.47452036,-0.76870537,-0.5071807,0.38969204,-0.76698864,-0.49524277,0.40799883,-0.7647024,-0.48321038,0.42630738,-0.76184636,-0.47108606,0.44459882,-0.77799076,-0.5289928,0.33896473,-0.7777245,-0.5172349,0.35722914,-0.7812153,-0.53977084,0.31360823,-0.77382165,-0.51812875,0.3643386,-0.75562775,-0.4850387,0.44018656,-0.76264054,-0.49615014,0.41498724,-0.74766856,-0.4738486,0.46525174,-0.62611586,-0.74695396,0.22369353,-0.6148361,-0.75840497,0.21632959,-0.7037681,-0.6088051,0.3661514,-0.70380574,-0.60867465,0.36629587,-0.7084099,-0.5934532,0.38205838,-0.69855034,-0.6239322,0.350337,-0.6927605,-0.6388292,0.33463433,-0.7160428,-0.56155396,0.41465634,-0.7125821,-0.5773453,0.3986214,-0.71895367,-0.54527974,0.431017,-0.7125277,-0.5776138,0.39832994,-0.69837856,-0.6244463,0.34976304,-0.69266456,-0.63908225,0.33434963,-0.70369244,-0.6090661,0.36586255,-0.6924722,-0.63958806,0.33378026,-0.68597823,-0.65448564,0.31793457,-0.74984384,-0.5073235,0.4246848,-0.75947607,-0.50725216,0.4072976,-0.73981345,-0.50739497,0.44184434,-0.761453,-0.5291334,0.3744425,-0.7737335,-0.53984046,0.33152497,-0.7789311,-0.5451616,0.30994388,-0.76790726,-0.5344977,0.3530308,-0.75437194,-0.5237481,0.3957409,-0.7466662,-0.51834166,0.4169072,-0.738338,-0.51291436,0.43792227,-0.6334777,-0.7392491,0.22851,-0.61683154,-0.75282013,0.22974055,-0.6498986,-0.725371,0.22686711,-0.65954626,-0.69264245,0.2919678,-0.72620696,-0.52810085,0.4401511,-0.7226697,-0.5470291,0.42250168,-0.7182819,-0.5567311,0.41727874,-0.7183907,-0.56568164,0.4048692,-0.71337193,-0.58404917,0.38728166,-0.716068,-0.570469,0.40225825,-0.72001255,-0.54283917,0.43232805,-0.7076167,-0.6021222,0.3697669,-0.70112884,-0.61989194,0.35235247,-0.7050079,-0.6067566,0.36716518,-0.693914,-0.63734937,0.33506593,-0.7381267,-0.5136317,0.43743733,-0.7464378,-0.51905626,0.41642678,-0.75424945,-0.52410394,0.39550328,-0.73802066,-0.51399046,0.4371948,-0.7611906,-0.52984273,0.37397274,-0.76776785,-0.53485084,0.3527991,-0.77358574,-0.54019225,0.33129665,-0.77885306,-0.5453369,0.30983153,-0.76769793,-0.5350275,0.3526832,-0.75406504,-0.52463806,0.39514667,-0.7463232,-0.5194137,0.41618645,-0.75418794,-0.52428216,0.39538437,-0.73796767,-0.51416963,0.43707353,-0.6377645,-0.7346972,0.23124965,-0.6190125,-0.7505995,0.23113617,-0.65621215,-0.71838075,0.2308997,-0.6581281,-0.6951113,0.28928843,-0.72603714,-0.59394896,0.34654674,-0.75021106,-0.56737304,0.3395161,-0.7436201,-0.58571404,0.32244104,-0.73630214,-0.6037599,0.30550474,-0.7314698,-0.59886557,0.32605505,-0.73221457,-0.57574093,0.36384636,-0.7200044,-0.5890101,0.36696163,-0.76731974,-0.5589459,0.31432444,-0.7603239,-0.57741797,0.29748303,-0.7555728,-0.57240623,0.3185293,-0.7191298,-0.6118577,0.32936668,-0.71149856,-0.6294581,0.31233364,-0.7066084,-0.62468684,0.33237168,-0.7423608,-0.538464,0.39869407,-0.73765695,-0.557243,0.38123807,-0.7304668,-0.55214626,0.40193638,-0.7560694,-0.5487461,0.35670257,-0.74423903,-0.5623183,0.3604253,-0.63814557,-0.7343052,0.23144351,-0.656399,-0.7181797,0.23099393,-0.6192068,-0.75040853,0.23123589,-0.6567726,-0.71777743,0.23118234,-0.6590449,-0.6942819,0.28919268,-0.73602855,-0.60422105,0.30525228,-0.71135694,-0.62968284,0.3122031,-0.7601921,-0.57765424,0.29736093,-0.7110733,-0.63013244,0.31194207,-0.68539274,-0.65536034,0.31739506,-0.64868987,-0.7200469,0.24644259,-0.62468576,-0.74350315,0.23868544,-0.6719565,-0.6957375,0.25381854,-0.69445676,-0.67060363,0.26080757,-0.6850623,-0.68586737,0.24551104,-0.71616256,-0.64467525,0.26740432,-0.7118371,-0.6525803,0.25966677,-0.73704666,-0.617983,0.2736041,-0.75708306,-0.5905585,0.27940276,-0.6741629,-0.67329353,0.3036119,-0.6640647,-0.68883413,0.29073292,-0.6534716,-0.70406437,0.27797168,-0.7352633,-0.60532385,0.3049114,-0.7106779,-0.6306699,0.311757,-0.75982356,-0.5782193,0.29720476,-0.70988595,-0.6317439,0.31138656,-0.7193196,-0.64053476,0.26887655,-0.71826965,-0.64191693,0.26838645,-0.6988368,-0.6652411,0.2628332,-0.7390635,-0.61514676,0.27455348,-0.7580464,-0.58910394,0.27986106,-0.65105164,-0.7175422,0.24751763,-0.67309755,-0.69444233,0.25434136,-0.62590736,-0.74229723,0.2392379,-0.6753725,-0.69184566,0.2553852,-0.74306744,-0.6094499,0.27644458,-0.75996554,-0.5861889,0.2807757,-0.7214121,-0.6377639,0.269855,-0.763773,-0.58033603,0.28259668,-0.6637194,-0.6893554,0.29028556,-0.6532907,-0.70431966,0.27775016,-0.67399883,-0.6735595,0.3033862,-0.65292805,-0.7048302,0.27730727,-0.6800344,-0.68058103,0.27269518,-0.6848509,-0.67929745,0.26369363,-0.6706488,-0.6931085,0.2642551,-0.66105753,-0.70054567,0.26877263,-0.6562391,-0.70667,0.26451397,-0.6985445,-0.6600977,0.2762365,-0.7165704,-0.6391114,0.27939847,-0.7340952,-0.61763805,0.2821834,-0.72993994,-0.62439305,0.27806666,-0.75110257,-0.5956938,0.28459427,-0.767576,-0.5732958,0.2866341,-0.7004564,-0.64832765,0.29838255,-0.72618085,-0.6223625,0.2921067,-0.69144773,-0.6587748,0.2965059,-0.68232065,-0.66909647,0.29453093,-0.53631026,-0.81748474,0.20997627,-0.5358087,-0.8175093,0.21115774,-0.5354837,-0.8173089,0.21275182,-0.5350515,-0.8173217,0.2137875,-0.5338449,-0.8176319,0.21561007,-0.5327692,-0.81783503,0.21749218,-0.5286948,-0.8183996,0.22517519,-0.52633816,-0.8192849,0.22746502,-0.52562714,-0.81947356,0.22842777,-0.52547604,-0.8192458,0.22958924,-0.52544063,-0.8189291,0.23079707,-0.52500916,-0.8189047,0.23186295,-0.52479994,-0.81871873,0.2329907,-0.52451664,-0.8182497,0.23526521,-0.5238123,-0.8184143,0.23625997,-0.52329576,-0.8184319,0.23734094,-0.52292204,-0.8182967,0.23862748,-0.5228761,-0.81792814,0.23998775,-0.5236372,-0.8170328,0.24137409,-0.52475995,-0.815917,0.2427065,-0.5255864,-0.8155126,0.24227692,-0.5261585,-0.81545246,0.2412354,-0.53315395,-0.8135173,0.2322424,-0.53565395,-0.81222177,0.23102081,-0.5376232,-0.8112941,0.2297025,-0.54407024,-0.8082158,0.22533248,-0.5465165,-0.80682737,0.22438653,-0.548858,-0.80553764,0.2233025,-0.55070937,-0.8045214,0.22240606,-0.55442226,-0.8019743,0.22238085,-0.554652,-0.8018429,0.2222815,-0.5590398,-0.7988416,0.22209595,-0.5578732,-0.79949427,0.22268012,-0.5592887,-0.7984673,0.22281425,-0.5606097,-0.79758495,0.22265443,-0.56416345,-0.79541975,0.22142053,-0.529742,-0.818188,0.22347657,-0.52485234,-0.8183437,0.23418704,-0.5394102,-0.81053317,0.22819445,-0.5497322,-0.80508804,0.22277303,-0.55569744,-0.8017227,0.22009341,-0.55895704,-0.7992158,0.22095525,-0.54158247,-0.8095277,0.22661284,-0.5565055,-0.801368,0.21934208,-0.5583838,-0.79982895,0.22018418,-0.5274613,-0.81566757,0.23763639,-0.55771756,-0.8004935,0.21945693,-0.557136,-0.80096006,0.21923141,-0.5291831,-0.815117,0.23568964,-0.53102976,-0.81445485,0.23381753,-0.520794,-0.81653434,0.24908896,-0.52157044,-0.8163011,0.24822718,-0.5212398,-0.81666905,0.24771081,-0.52115965,-0.8168795,0.2471851,-0.5214219,-0.8168904,0.24659522,-0.52104586,-0.8174121,0.24565975,-0.5204649,-0.81777805,0.24567325,-0.5195504,-0.81817526,0.24628574,-0.5198027,-0.81754655,0.24783638,-0.51955765,-0.8175505,0.24833661,-0.519555,-0.8171095,0.24978918,-0.5183139,-0.81707025,0.25248155,-0.51783055,-0.81725204,0.2528847,-0.5177633,-0.81682247,0.25440565,-0.51823545,-0.81639063,0.25483015,-0.51855826,-0.816369,0.25424188,-0.51897526,-0.8165649,0.2527577,-0.51923484,-0.8164388,0.25263178,-0.5195619,-0.8163562,0.25222608,-0.52006406,-0.8163592,0.2511792,-0.6830431,-0.6325008,0.3652326,-0.6837185,-0.6316489,0.3654431,-0.6842705,-0.6311586,0.36525702,-0.68487746,-0.6308412,0.36466727,-0.6859328,-0.6304893,0.36328977,-0.6856384,-0.6308135,0.36328277,-0.6848217,-0.6315814,0.36348864,-0.6834468,-0.6324005,0.36465052,-0.80802,0.092166044,0.5819013,-0.8070708,0.093395606,0.5830214,-0.8061103,0.09588468,0.58394545,-0.8056125,0.097737275,0.5843252,-0.80536973,0.09967588,0.5843324,-0.8054169,0.10119356,0.58400637,-0.8062446,0.10203462,0.58271646,-0.80833584,0.10296371,0.57964784,-0.81302285,0.10432581,0.57280886,-0.81614804,0.10441484,0.5683308,-0.81849384,0.103706315,0.5650777,-0.82108843,0.10428348,0.561194,-0.8228822,0.10386306,0.5586389,-0.8237814,0.10266454,0.5575341,-0.8237842,0.10097736,0.55783796,-0.8239438,0.099307805,0.557902,-0.8242127,0.10097736,0.55720466,-0.82694805,0.10253813,0.5528498,-0.8290861,0.10344772,0.5494677,-0.83380175,0.10440465,0.54210174,-0.8347047,0.10346384,0.5408911,-0.8353213,0.101566665,0.5402987,-0.8357538,0.099965885,0.53992814,-0.83593476,0.09834362,0.539946,-0.8364878,0.09634792,0.539449,-0.83657926,0.096687146,0.53924656,-0.83716804,0.09558957,0.53852797,-0.83773595,0.09365601,0.5379843,-0.83803904,0.09298494,0.5376284,-0.8377937,0.09144562,0.5382745,-0.83738846,0.09025905,0.53910464,-0.8378159,0.08988566,0.53850263,-0.83826154,0.08899613,0.5379566,-0.83935463,0.08723549,0.5365387,-0.840838,0.08723383,0.5342113,-0.84156865,0.08716756,0.53307027,-0.8421598,0.08700035,0.5321634,-0.84258646,0.08636439,0.5315913,-0.84310186,0.0859221,0.5308452,-0.84348744,0.08581758,0.5302493,-0.84387577,0.08507977,0.5297501,-0.8442831,0.08403282,0.52926797,-0.8442216,0.08331769,0.529479,-0.84418637,0.0798005,0.5300766,-0.84456044,0.078577094,0.52966344,-0.844793,0.07764345,0.5294301,-0.84583,0.073873,0.52831274,-0.8463032,0.0727495,0.5277105,-0.84637654,0.071526274,0.5277601,-0.8462775,0.0697904,0.52815133,-0.845275,0.06726102,0.5300814,-0.8449623,0.06605195,0.5307315,-0.84475523,0.064113796,0.5312984,-0.8437942,0.06258634,0.5330049,-0.8431988,0.061351325,0.53408974,-0.84334433,0.059719726,0.53404486,-0.8432825,0.05921101,0.5341991,-0.8428926,0.058800098,0.5348595,-0.84241194,0.0584845,0.53565073,-0.8418584,0.058510084,0.5365176,-0.84135777,0.058648724,0.5372871,-0.83997494,0.05849818,0.5394626,-0.8400222,0.056149933,0.5396386,-0.84001994,0.055199403,0.53974026,-0.8396281,0.05423359,0.54044735,-0.839642,0.05370519,0.5404786,-0.83964825,0.052389544,0.5405979,-0.839508,0.051697638,0.54088223,-0.8395955,0.050293274,0.5408789,-0.83949965,0.049778342,0.5410753,-0.83919543,0.04942937,0.541579,-0.838835,0.048423257,0.5422278,-0.8386886,0.048296448,0.5424655,-0.83862484,0.047940664,0.5425957,-0.8383366,0.046507936,0.54316556,-0.83817774,0.04607972,0.5434471,-0.8380569,0.046016727,0.54363865,-0.83802426,0.04551955,0.54373103,-0.8378243,0.04418039,0.54414934,-0.8373789,0.042866636,0.54493934,-0.83728653,0.041794714,0.54516464,-0.8368992,0.040584695,0.5458503,-0.83649033,0.039733276,0.54653925,-0.8363217,0.038852762,0.5468604,-0.835823,0.03690342,0.5477574,-0.83532107,0.03553568,0.5486127,-0.8345921,0.035178866,0.5497439,-0.8336058,0.034459997,0.5512839,-0.8332413,0.03389015,0.5518699,-0.83295727,0.033718944,0.55230904,-0.832315,0.033571687,0.5532853,-0.83079803,0.032899596,0.5556009,-0.8288033,0.032147545,0.55861574,-0.82824427,0.032406453,0.5594294,-0.8279008,0.032937128,0.5599066,-0.82777905,0.0344924,0.5599929,-0.8276857,0.035589285,0.56006235,-0.82811224,0.036558542,0.55936897,-0.82864517,0.03765797,0.5585061,-0.8291233,0.039029058,0.5577017,-0.82973367,0.03941726,0.5567659,-0.8292006,0.0408521,0.5574562,-0.82877153,0.041254926,0.5580644,-0.82851326,0.041749574,0.55841094,-0.8276128,0.043908857,0.5595793,-0.8272177,0.043436285,0.5602001,-0.8256702,0.0419829,0.5625888,-0.82495856,0.04220253,0.5636154,-0.82224464,0.042584013,0.56753886,-0.82180506,0.04342354,0.56811166,-0.82122314,0.04361338,0.568938,-0.8202152,0.04444775,0.5703257,-0.8198261,0.044504795,0.57088053,-0.81948733,0.044303052,0.5713823,-0.81904453,0.04446216,0.5720045,-0.8180969,0.0453221,0.5732917,-0.8180259,0.04446216,0.57346034,-0.8176389,0.043573365,0.57408017,-0.8171616,0.042754326,0.57482076,-0.81692326,0.042565312,0.57517356,-0.81545246,0.041839857,0.5773099,-0.8154194,0.041174885,0.57740444,-0.8150798,0.04061197,0.57792354,-0.81461996,0.040598392,0.57857245,-0.8144983,0.040755857,0.57873255,-0.8141274,0.040874254,0.57924604,-0.81379855,0.040887,0.579707,-0.8132454,0.042156555,0.5803919,-0.8123708,0.04294846,0.58155745,-0.8107325,0.04734565,0.58349913,-0.8100374,0.049161237,0.58431387,-0.80992156,0.05015457,0.5843899,-0.8096582,0.052224427,0.5845735,-0.8098794,0.054744236,0.5840363,-0.8096939,0.055451382,0.5842267,-0.8082784,0.058493067,0.58588785,-0.80765,0.060151916,0.586586,-0.80754256,0.061580133,0.58658576,-0.80733234,0.06260847,0.58676624,-0.80746293,0.063145995,0.58652896,-0.8081637,0.06463604,0.58540034,-0.80841994,0.065741494,0.5849234,-0.8092224,0.066873275,0.5836841,-0.81056654,0.07069832,0.58136356,-0.81039226,0.072194375,0.5814226,-0.81063443,0.07273238,0.5810179,-0.8108983,0.07328154,0.5805806,-0.8108358,0.07395883,0.5805819,-0.81093395,0.075633906,0.58022887,-0.81111306,0.078198224,0.57963836,-0.81076497,0.07990328,0.57989275,-0.81078315,0.081799164,0.57960296,-0.810853,0.085672446,0.5789453,-0.81053156,0.08643921,0.5792812,-0.8105179,0.08738998,0.5791577,-0.8090783,0.09041351,0.58070445,-0.8373144,0.09489299,0.53842336,-0.8382989,0.08801734,0.5380594,-0.84394675,0.082361475,0.5300665,-0.8451415,0.07584798,0.5291341,-0.841231,0.0588784,0.53746045,-0.83976483,0.054815654,0.54017615,-0.83766717,0.043850023,0.5444179,-0.83397835,0.034988012,0.55068684,-0.82818675,0.043575864,0.55875564,-0.8183715,0.04524041,0.5729062,-0.8156204,0.042601876,0.5770168,-0.8077447,0.063302435,0.58612394,-0.8110856,0.07720667,0.5798097,-0.81102866,0.08279629,0.57911766,-0.83720565,0.09055277,0.5393393,-0.8438122,0.08138463,0.53043133,-0.8296297,0.040123254,0.55687046,-0.8160617,0.042830072,0.57637566,-0.80974966,0.068033986,0.582818,-0.81101155,0.084313035,0.5789228,-0.8373821,0.09137772,0.538926,-0.83857375,0.08750636,0.5377143,-0.82782066,0.043976024,0.5592665,-0.8400839,0.05890732,0.53924847,-0.83723885,0.09118078,0.53918195,-0.8371572,0.09087948,0.53935957,-0.8280003,0.043897778,0.5590067,-0.83483285,0.08329524,0.54416543,-0.8322366,0.07912387,0.54874563,-0.8196088,0.058596004,0.56991917,-0.82577115,0.06609608,0.5601191,-0.8702965,0.09475818,0.483327,-0.86883557,0.090668164,0.48672792,-0.86803705,0.090999976,0.4880889,-0.8674373,0.09050184,0.48924634,-0.86644334,0.0904255,0.4910184,-0.8659779,0.09080908,0.4917682,-0.86536056,0.090620674,0.49288845,-0.86447364,0.09163995,0.49425444,-0.8639828,0.09130721,0.49517336,-0.8636396,0.09130721,0.49577186,-0.86338854,0.09053235,0.49635094,-0.8632153,0.08965901,0.4968104,-0.8625387,0.08859634,0.4981742,-0.86273783,0.08697909,0.49811465,-0.8629852,0.08554762,0.49793392,-0.86320466,0.08389859,0.49783412,-0.8637535,0.081358366,0.49730343,-0.86432016,0.08015805,0.4965132,-0.86449575,0.0796705,0.49628595,-0.8646063,0.07903759,0.49619457,-0.86430764,0.078653626,0.49677545,-0.8637417,0.07853895,0.49777701,-0.86302596,0.0784888,0.49902466,-0.862561,0.07811669,0.49988645,-0.8619307,0.07804016,0.5009842,-0.8609018,0.07591003,0.5030763,-0.8612204,0.07476364,0.5027024,-0.8613858,0.073703945,0.5025755,-0.86123824,0.07303246,0.5029264,-0.8610432,0.07254881,0.50333023,-0.8605663,0.070159405,0.5044832,-0.86031884,0.06932792,0.5050201,-0.86005086,0.06859938,0.50557554,-0.86031634,0.067727014,0.50524145,-0.8606369,0.066616595,0.50484294,-0.8612824,0.06545065,0.5038936,-0.8614116,0.06452885,0.50379187,-0.86190623,0.06394974,0.503019,-0.86305743,0.06257278,0.50121504,-0.8630715,0.058421545,0.5016916,-0.8634959,0.057269648,0.50109386,-0.8642941,0.05386684,0.5000941,-0.86460465,0.052169904,0.49973696,-0.86498106,0.048247032,0.49947965,-0.8650217,0.04693186,0.4995346,-0.8647998,0.045160383,0.5000818,-0.8643253,0.041229315,0.50124055,-0.86399263,0.040603515,0.5018645,-0.8633443,0.03424364,0.503452,-0.8634147,0.03316624,0.5034034,-0.86329186,0.03270456,0.5036443,-0.8626528,0.031327203,0.50482553,-0.86270046,0.030473715,0.5047963,-0.8620962,0.029980533,0.505857,-0.86156577,0.029666198,0.50677836,-0.8610974,0.02848724,0.5076413,-0.8602379,0.026654024,0.5091957,-0.8598861,0.026319997,0.50980705,-0.8597227,0.02555922,0.5101212,-0.85899085,0.02401379,0.51142746,-0.8566619,0.02276732,0.5153755,-0.85621333,0.021795291,0.5161626,-0.85573995,0.021005472,0.5169795,-0.85537314,0.020963639,0.517588,-0.8550583,0.021090688,0.5181027,-0.85453105,0.021771336,0.5189438,-0.85410583,0.022356749,0.51961863,-0.85338426,0.022323499,0.52080417,-0.85253406,0.022419795,0.52219063,-0.85237736,0.022901159,0.52242553,-0.8522845,0.023520522,0.52254945,-0.8521143,0.025588179,0.5227299,-0.8514038,0.025858337,0.5238731,-0.8512437,0.026704192,0.52409065,-0.850613,0.027781086,0.5250579,-0.8503171,0.027473524,0.52555305,-0.849856,0.027280955,0.52630854,-0.84933513,0.02701176,0.5271624,-0.84906334,0.026473366,0.52762735,-0.84859496,0.026427368,0.52838254,-0.84806997,0.026530446,0.5292197,-0.8478506,0.026873766,0.5295538,-0.84768283,0.027473524,0.52979153,-0.84753823,0.028766673,0.5299542,-0.84719974,0.028804088,0.53049314,-0.8465169,0.029095434,0.53156614,-0.8448108,0.029749729,0.53423756,-0.84390247,0.029737812,0.5356718,-0.8434373,0.030121136,0.5363825,-0.8429914,0.030954141,0.53703564,-0.8421042,0.033311002,0.53828514,-0.8411814,0.034262344,0.53966653,-0.8407887,0.03418824,0.54028285,-0.8399657,0.03457842,0.54153675,-0.839036,0.03500076,0.54294884,-0.8385486,0.033791382,0.5437778,-0.8382947,0.033525698,0.5441857,-0.8379119,0.033441342,0.5447801,-0.83666384,0.03282811,0.546732,-0.8359856,0.03301886,0.547757,-0.83453584,0.03355036,0.54993117,-0.8340354,0.033281215,0.55070615,-0.8336594,0.033630423,0.55125403,-0.836655,0.09696799,0.5390784,-0.8358283,0.1025322,0.5393313,-0.83571965,0.10621746,0.5387862,-0.835943,0.107624836,0.53815997,-0.8368826,0.10925063,0.53636914,-0.838621,0.11028148,0.5334349,-0.8390533,0.11234283,0.5323239,-0.8405219,0.114911735,0.5294509,-0.84194714,0.11815936,0.52646315,-0.84270483,0.11876104,0.52511364,-0.8436144,0.118913375,0.5236167,-0.8446716,0.11977809,0.5217117,-0.84578115,0.11929071,0.52002305,-0.84677887,0.117259786,0.51886,-0.8475716,0.115409434,0.5179798,-0.84890527,0.111308776,0.51669157,-0.8481815,0.113247186,0.51745844,-0.8477977,0.11662415,0.5173372,-0.84731495,0.11916039,0.5175503,-0.8460394,0.12252988,0.5188485,-0.8454747,0.12751086,0.51856863,-0.84564257,0.12876171,0.51798546,-0.8463989,0.13132031,0.5161046,-0.84694946,0.13237119,0.51493156,-0.8476839,0.13460171,0.5131417,-0.85044634,0.14046243,0.5069629,-0.85250133,0.14356174,0.50262463,-0.8539201,0.14543715,0.49966833,-0.85451955,0.1457373,0.4985548,-0.85461557,0.1450248,0.49859813,-0.8553778,0.14563105,0.49711213,-0.8562725,0.14837243,0.49475548,-0.8565536,0.14866054,0.4941821,-0.8557597,0.14346983,0.4970833,-0.8568857,0.14248383,0.4954244,-0.8571729,0.14197266,0.49507412,-0.85776424,0.14009878,0.4945834,-0.8591454,0.13907017,0.49247196,-0.86016643,0.13778046,0.4910501,-0.8612276,0.1361934,0.48963085,-0.8623918,0.13594349,0.48764712,-0.86284,0.13523176,0.4870518,-0.8639872,0.13219808,0.48584953,-0.86469495,0.13114801,0.48487407,-0.8647741,0.13050331,0.48490682,-0.86416745,0.1274255,0.4868033,-0.8645431,0.12631305,0.48642603,-0.86460584,0.12552507,0.48651847,-0.8642844,0.12457474,0.4873331,-0.8637972,0.12435829,0.48825142,-0.8630719,0.1209227,0.49039233,-0.8648637,0.11939309,0.48760238,-0.8656783,0.11850714,0.48637137,-0.86614364,0.11785466,0.48570096,-0.86697847,0.11820423,0.484124,-0.8674245,0.118177116,0.48333108,-0.86781603,0.11767271,0.48275095,-0.86806655,0.117238596,0.48240602,-0.86865866,0.11713193,0.48136505,-0.8695055,0.11686792,0.4798981,-0.8698772,0.11657596,0.47929496,-0.87021923,0.11582008,0.47885722,-0.87054974,0.11473564,0.47851732,-0.8704967,0.11343515,0.4789239,-0.8703563,0.112275906,0.47945172,-0.87047195,0.11121057,0.47949022,-0.87056094,0.1082475,0.48000646,-0.8708843,0.10755539,0.4795752,-0.8715059,0.10677077,0.47862038,-0.8722876,0.1053878,0.47750163,-0.8731946,0.103465505,0.47626266,-0.8731283,0.10291367,0.47650367,-0.8717382,0.09887198,0.4798925,-0.8633392,0.0826434,0.49781066,-0.860082,0.0690601,0.5054598,-0.862987,0.060389306,0.5016041,-0.8631863,0.03702088,0.50352645,-0.862672,0.032149214,0.50474113,-0.8578325,0.023449017,0.5133942,-0.85107136,0.02716596,0.5243467,-0.8457803,0.029666198,0.5327059,-0.83928025,0.035143007,0.5425621,-0.8352436,0.03340465,0.5488645,-0.85548395,0.14445898,0.49727133,-0.8608837,0.13664924,0.49010834,-0.86354893,0.13309264,0.48638412,-0.8630072,0.059281696,0.5017014,-0.8629271,0.032483064,0.5042834,-0.8524266,0.025106847,0.52224374,-0.8508572,0.027704345,0.5246661,-0.84809124,0.11236238,0.51779914,-0.85475993,0.14503838,0.49834654,-0.8642308,0.12816091,0.4864976,-0.8609014,0.07639012,0.50300425,-0.8632011,0.039680388,0.5032986,-0.86325705,0.12475406,0.4891049,-0.8416573,0.03385524,0.53894967,-0.8555186,0.1439961,0.49734604,-0.8626408,0.124719284,0.49019992,-0.8622632,0.12446734,0.4909277,-0.8625983,0.12191925,0.49097842,-0.86123353,0.07700878,0.5023411,-0.8556864,0.048161898,0.5152486,-0.86217505,0.123463534,0.49133587,-0.85570675,0.048392657,0.5151933,-0.86212564,0.124189965,0.4912396,-0.856202,0.05206276,0.51401126,-0.84737885,0.09257425,0.52285665,-0.85719866,0.05817734,0.51168925,-0.8474261,0.091963656,0.5228878,-0.8538719,0.07636088,0.51485133,-0.8473931,0.091097206,0.52309287,-0.85446143,0.07771773,0.51366884,-0.8551615,0.080553494,0.51206446,-0.917749,0.017315194,0.39678335,-0.9194478,0.021344546,0.39263245,-0.9207543,0.02056497,0.3896005,-0.9209369,0.021117028,0.38913924,-0.9208306,0.024442341,0.38919604,-0.9207522,0.02819339,0.38912782,-0.9209088,0.029729234,0.38864276,-0.92142457,0.032192703,0.3872213,-0.92209655,0.035458952,0.38533178,-0.92227614,0.036396645,0.3848142,-0.92258316,0.03693487,0.38402605,-0.9229643,0.03701242,0.38310173,-0.92325205,0.036781672,0.38243,-0.9236486,0.036172677,0.3815295,-0.9240242,0.035511017,0.3806812,-0.9247676,0.033540946,0.37905112,-0.92551816,0.03123784,0.37741262,-0.9271979,0.032459233,0.37316266,-0.9274926,0.034127835,0.37228045,-0.9278874,0.034672894,0.371245,-0.9280628,0.034160122,0.37085375,-0.92823,0.03317899,0.37052435,-0.9283663,0.032204617,0.37026867,-0.9281266,0.03096689,0.37097454,-0.92791575,0.030011991,0.37158012,-0.92832273,0.030044401,0.37055942,-0.92963564,0.030042732,0.36725342,-0.9311342,0.030041065,0.36343727,-0.93261534,0.030039277,0.3596197,-0.93560016,0.030116012,0.3517746,-0.9360489,0.030676514,0.35052997,-0.9364856,0.030943893,0.34933832,-0.9367203,0.030900521,0.3487122,-0.9371541,0.030354442,0.34759295,-0.9376985,0.03027437,0.34612864,-0.93807715,0.02975652,0.34514612,-0.9383681,0.02981872,0.34434915,-0.9384499,0.026942763,0.3443628,-0.93855375,0.022840615,0.34437644,-0.93864644,0.018491006,0.34438503,-0.93803364,0.018789215,0.34603435,-0.9378316,0.018483376,0.3465983,-0.9372446,0.018730454,0.3481691,-0.93692255,0.018600063,0.34904197,-0.9366168,0.018490171,0.34986734,-0.9363308,0.018474795,0.35063285,-0.9361603,0.018129742,0.35110584,-0.9359217,0.01819196,0.351738,-0.93484515,0.016808987,0.35465765,-0.9346726,0.015677482,0.3551637,-0.93449134,0.015080075,0.35566634,-0.93451726,0.013996219,0.35564253,-0.93453383,0.013147527,0.35563147,-0.93460923,0.012441032,0.35545865,-0.9345305,0.011984375,0.35568124,-0.9352831,0.010947203,0.35373107,-0.9354174,0.011386939,0.35336182,-0.9355503,0.0114347385,0.35300842,-0.935947,0.011639169,0.35194868,-0.9361177,0.012188804,0.35147572,-0.9364257,0.01273927,0.35063463,-0.93676424,0.012503254,0.3497378,-0.93699795,0.012220392,0.34912106,-0.93723786,0.011874353,0.3484883,-0.9374552,0.011513054,0.34791544,-0.9376672,0.0116077,0.34734058,-0.937943,0.011340927,0.34660402,-0.939195,0.010286821,0.3432301,-0.93955666,0.0102245975,0.34224087,-0.9399661,0.010098481,0.34111857,-0.94000924,0.007807847,0.34105974,-0.9400792,0.0033047893,0.34094018,-0.94011533,0.00032384793,0.3408563,-0.94011,-0.0024236855,0.3408625,-0.93994975,-0.0034242047,0.34129575,-0.93921626,-0.0055411016,0.3432814,-0.9386404,-0.0066558067,0.34483308,-0.9381467,-0.0078982925,0.34614787,-0.9376586,-0.008419815,0.34745565,-0.93722105,-0.011889817,0.34853303,-0.9373337,-0.012581775,0.34820575,-0.93727136,-0.013312944,0.34834626,-0.9370896,-0.013890698,0.34881237,-0.9370261,-0.014621734,0.3489532,-0.93689555,-0.015313666,0.34927386,-0.93681806,-0.01600726,0.3494505,-0.9366623,-0.016506681,0.34984443,-0.9361803,-0.017968804,0.3510605,-0.9361967,-0.018585728,0.35098478,-0.9361909,-0.01905092,0.35097525,-0.9358575,-0.02085384,0.35176122,-0.93594795,-0.02173996,0.3514666,-0.93598557,-0.024810435,0.35116312,-0.93616617,-0.028305013,0.35041657,-0.93626213,-0.030972935,0.34993407,-0.9364041,-0.035321917,0.34914148,-0.936546,-0.040380508,0.34821108,-0.93668514,-0.046542916,0.34706584,-0.9367863,-0.05262701,0.34592164,-0.9368496,-0.058515288,0.34480238,-0.9368779,-0.063833244,0.34378052,-0.93687654,-0.06969702,0.34264353,-0.93685955,-0.07324845,0.34194863,-0.79688984,-0.3459092,0.49529126,-0.79648757,-0.34682855,0.49529538,-0.7959968,-0.3474792,0.49562815,-0.795438,-0.34834525,0.49591732,-0.7949986,-0.34883085,0.49628046,-0.7945416,-0.34964213,0.49644136,-0.7943072,-0.3505618,0.49616784,-0.7938144,-0.35175076,0.49611494,-0.79334325,-0.35277808,0.49613926,-0.7931137,-0.35304755,0.49631453,-0.7921123,-0.3542496,0.49705666,-0.792109,-0.3547213,0.49672538,-0.7918786,-0.35525993,0.4967078,-0.79156053,-0.35578728,0.49683735,-0.79153144,-0.3562985,0.49651727,-0.7913333,-0.3566902,0.4965518,-0.7895139,-0.36054382,0.49666485,-0.7894125,-0.36172628,0.49596572,-0.7893225,-0.36269543,0.49540076,-0.78918403,-0.3632878,0.49518734,-0.7887287,-0.36414674,0.49528193,-0.7886751,-0.36516884,0.4946142,-0.78860605,-0.36640456,0.4938099,-0.7879064,-0.36806908,0.49368873,-0.7875898,-0.36892796,0.49355298,-0.78723305,-0.36973256,0.49352002,-0.78705776,-0.37058914,0.49315694,-0.7869171,-0.37134093,0.49281582,-0.7866836,-0.37219703,0.49254262,-0.786213,-0.37316176,0.4925642,-0.78615755,-0.37407237,0.4919615,-0.78608,-0.37471414,0.491597,-0.7859163,-0.3753572,0.491368,-0.7853117,-0.37637272,0.49155787,-0.784511,-0.37680066,0.49250764,-0.78396195,-0.37690797,0.49329913,-0.7824941,-0.37669322,0.49578735,-0.78156996,-0.37754887,0.49659374,-0.78072953,-0.37765616,0.49783242,-0.7799553,-0.37781554,0.49892402,-0.7793158,-0.37808385,0.49971935,-0.7786169,-0.37776345,0.5010494,-0.776515,-0.37856507,0.5036992,-0.7755531,-0.3789925,0.50485843,-0.7747731,-0.37888527,0.5061349,-0.77417713,-0.37883165,0.5070861,-0.7736971,-0.37835047,0.5081768,-0.7730624,-0.3784041,0.509102,-0.77288324,-0.37754887,0.5100083,-0.7717195,-0.37610587,0.51282877,-0.7708638,-0.37749523,0.5130949,-0.76990974,-0.37829685,0.5139363,-0.7694428,-0.37888527,0.51420206,-0.76884735,-0.3791518,0.51489586,-0.76772773,-0.37920538,0.5165244,-0.76705945,-0.3791518,0.5175556,-0.76613635,-0.3795792,0.51860857,-0.76562726,-0.3795792,0.5193598,-0.76419413,-0.38123432,0.5202574,-0.7635687,-0.38288814,0.5199611,-0.7627395,-0.38416785,0.5202341,-0.7612218,-0.3865648,0.52068126,-0.7610749,-0.3876822,0.52006495,-0.7606191,-0.38890576,0.51981807,-0.7599597,-0.39002195,0.51994634,-0.75956905,-0.39113745,0.51967907,-0.7589971,-0.3922525,0.5196743,-0.75763625,-0.39474705,0.5197712,-0.75730145,-0.3958601,0.51941246,-0.75683486,-0.39649713,0.51960665,-0.7564238,-0.39739817,0.51951694,-0.7563084,-0.3981394,0.5191171,-0.75600827,-0.39914456,0.5187823,-0.7556548,-0.40004444,0.51860416,-0.75520873,-0.40078473,0.5186824,-0.75356376,-0.40342677,0.5190265,-0.7531412,-0.40458834,0.5187355,-0.7524005,-0.40596116,0.51873785,-0.7517198,-0.40659347,0.5192294,-0.7509221,-0.4068052,0.5202168,-0.75000364,-0.40701535,0.52137613,-0.74909437,-0.40669933,0.5229276,-0.7483222,-0.40633023,0.5243183,-0.74794173,-0.40596116,0.5251463,-0.7473034,-0.40495774,0.52682704,-0.7466301,-0.4043779,0.5282253,-0.7463057,-0.4040085,0.52896595,-0.743744,-0.40516976,0.53167886,-0.7426995,-0.4062773,0.53229326,-0.7410608,-0.40749016,0.5336485,-0.7411873,-0.40778592,0.53324676,-0.7413044,-0.40877858,0.53232306,-0.7408709,-0.40994322,0.5320309,-0.7399239,-0.4116107,0.53206134,-0.738919,-0.4151399,0.53071415,-0.73783207,-0.420521,0.52798295,-0.73702544,-0.42364985,0.52660644,-0.73626506,-0.42609864,0.5256936,-0.73623025,-0.42945078,0.5230077,-0.72889143,-0.50394326,0.46342033,-0.72738177,-0.5042363,0.46546918,-0.72598225,-0.50427747,0.4676045,-0.72589463,-0.50399786,0.46804184,-0.7226428,-0.5028226,0.47429624,-0.7181167,-0.5067481,0.47698507,-0.7148542,-0.5094683,0.47898385,-0.7136351,-0.5107496,0.47943696,-0.7126513,-0.51170754,0.47987863,-0.71182567,-0.51260054,0.48015097,-0.7108387,-0.51491684,0.47913364,-0.7103087,-0.5159304,0.4788292,-0.71007216,-0.5162225,0.47886527,-0.7096191,-0.5162474,0.47950956,-0.7090467,-0.5160795,0.48053586,-0.70873857,-0.5155873,0.48151785,-0.708551,-0.5142388,0.4832328,-0.70836806,-0.5139142,0.48384598,-0.7084864,-0.51342285,0.48419425,-0.7049352,-0.515729,0.48691872,-0.70441395,-0.5164283,0.48693207,-0.70377856,-0.51715636,0.48707807,-0.70317125,-0.5177908,0.48728105,-0.70265675,-0.5184089,0.4873661,-0.70156467,-0.5192148,0.4880809,-0.7006067,-0.5197274,0.48891068,-0.7003957,-0.51920605,0.48976615,-0.69836336,-0.5208788,0.49089095,-0.6950144,-0.5222777,0.49414665,-0.6941026,-0.52312326,0.4945338,-0.6930419,-0.52432424,0.4947494,-0.69119924,-0.52614003,0.49539912,-0.6890835,-0.52777404,0.496607,-0.68769455,-0.5284616,0.49779975,-0.68574995,-0.5292137,0.4996798,-0.6850503,-0.52983826,0.4999775,-0.68409616,-0.5305104,0.50057083,-0.68358195,-0.5307604,0.5010081,-0.683146,-0.531361,0.5009661,-0.68208325,-0.53267443,0.50101936,-0.6808246,-0.53433365,0.5009645,-0.67958647,-0.5358714,0.5010031,-0.6778489,-0.5373471,0.5017758,-0.67615086,-0.53849375,0.5028364,-0.6728917,-0.5407796,0.5047516,-0.67303187,-0.5420176,0.50323457,-0.67306954,-0.5435708,0.50150585,-0.6731786,-0.54479057,0.5000338,-0.67349756,-0.5456422,0.49867383,-0.6734424,-0.54622906,0.4981054,-0.67313445,-0.5471382,0.4975236,-0.67058533,-0.55194134,0.49565718,-0.66969717,-0.5537238,0.49486923,-0.66938925,-0.5541976,0.49475548,-0.66911197,-0.55451393,0.49477625,-0.66838056,-0.5549876,0.49523348,-0.667596,-0.555386,0.49584466,-0.6673248,-0.55545676,0.49613047,-0.66602945,-0.5505093,0.5033333,-0.6656743,-0.54853266,0.50595415,-0.6656732,-0.5466544,0.50798446,-0.6663768,-0.54281235,0.5111719,-0.66838205,-0.5331834,0.51863366,-0.6682025,-0.5324002,0.5196686,-0.6691436,-0.5312283,0.5196569,-0.671579,-0.52539635,0.5224369,-0.67142355,-0.5239715,0.5240651,-0.6719149,-0.5223489,0.52505434,-0.6723726,-0.5200987,0.52669966,-0.6711152,-0.51868004,0.52969366,-0.67014843,-0.51660055,0.53293985,-0.6701172,-0.51582545,0.5337293,-0.67084664,-0.514702,0.5338975,-0.67105776,-0.5137328,0.53456545,-0.67074704,-0.5127455,0.5359016,-0.6717862,-0.5101604,0.5370658,-0.6711898,-0.51058394,0.5374089,-0.67053705,-0.51131666,0.5375271,-0.67169464,-0.50890934,0.5383657,-0.6721629,-0.5070508,0.5395337,-0.67199016,-0.5062132,0.54053444,-0.67203224,-0.5054956,0.5411533,-0.67499,-0.500906,0.5417396,-0.6744171,-0.5018337,0.54159445,-0.6732909,-0.5031865,0.5417404,-0.6716365,-0.50393444,0.5430972,-0.6707504,-0.5055618,0.5426795,-0.6698292,-0.5056472,0.54373676,-0.6662468,-0.50688905,0.5469723,-0.6672132,-0.5062366,0.5463983,-0.66742563,-0.5064247,0.54596436,-0.6652708,-0.5122435,0.5431587,-0.6662577,-0.51359695,0.5406652,-0.66577935,-0.51511997,0.5398048,-0.66529745,-0.51644725,0.5391304,-0.6665708,-0.5162545,0.53774035,-0.66682774,-0.5168149,0.5368828,-0.6653311,-0.5221557,0.5335616,-0.6663752,-0.52335143,0.5310813,-0.6669811,-0.52657914,0.52711546,-0.6679494,-0.5269066,0.5255598,-0.6680401,-0.52743095,0.52491814,-0.6682568,-0.5279607,0.524109,-0.6695709,-0.52717894,0.5232181,-0.67008126,-0.5274062,0.522335,-0.6694438,-0.52863806,0.5219069,-0.66882795,-0.5295867,0.5217347,-0.66843814,-0.53085274,0.520947,-0.66778934,-0.5316181,0.5209987,-0.6671511,-0.52844274,0.52503115,-0.665468,-0.5255079,0.5300885,-0.66418403,-0.52220654,0.5349391,-0.6635935,-0.51889855,0.53887665,-0.66329217,-0.516056,0.5419683,-0.6632616,-0.5135061,0.5444222,-0.66343766,-0.50642186,0.5508061,-0.6622361,-0.4802026,0.57519466,-0.6607593,-0.47831324,0.57845795,-0.6615663,-0.47627932,0.5792133,-0.66133904,-0.47424433,0.5811393,-0.6615232,-0.47266194,0.58221793,-0.66205543,-0.47063592,0.5832534,-0.66343784,-0.4667757,0.5847826,-0.66544175,-0.4626449,0.58578753,-0.6658368,-0.4597776,0.58759326,-0.6667324,-0.4580891,0.5878965,-0.66671413,-0.45703572,0.5887365,-0.6672934,-0.45590907,0.58895355,-0.667941,-0.45489237,0.58900577,-0.66923803,-0.45209426,0.5896874,-0.6709114,-0.44936475,0.5898722,-0.67143124,-0.4479527,0.59035456,-0.6717886,-0.44649687,0.59105057,-0.6723791,-0.444736,0.5917063,-0.67406416,-0.44192788,0.5918929,-0.6737117,-0.4419095,0.5923078,-0.67336375,-0.44118324,0.5932442,-0.67431957,-0.43735832,0.59498817,-0.6750445,-0.43640932,0.59486294,-0.675769,-0.4359277,0.59439325,-0.67467827,-0.4354813,0.5959574,-0.6744157,-0.4320444,0.5987496,-0.67498153,-0.4313018,0.5986474,-0.67594993,-0.43084636,0.59788215,-0.67914927,-0.42844242,0.595981,-0.67785496,-0.42951086,0.5966851,-0.6769614,-0.4296833,0.5975748,-0.6760676,-0.4296125,0.5986365,-0.6757829,-0.4289876,0.5994055,-0.67625296,-0.42691723,0.60035294,-0.6747088,-0.42745808,0.60170394,-0.6737691,-0.42751348,0.60271674,-0.6738419,-0.4289876,0.6015868,-0.67335135,-0.4291954,0.6019877,-0.67247194,-0.42635918,0.60497886,-0.671846,-0.42527798,0.6064336,-0.67217344,-0.42369628,0.6071774,-0.6726107,-0.4226168,0.6074454,-0.67222375,-0.42257813,0.6079004,-0.671985,-0.42187357,0.6086533,-0.670372,-0.4191519,0.6123014,-0.667024,-0.41458467,0.61903024,-0.6654499,-0.4105014,0.6234301,-0.65461254,-0.40298384,0.63959867,-0.6528746,-0.4036218,0.64097136,-0.652183,-0.40358588,0.6416976,-0.6520575,-0.4028824,0.6422668,-0.6523101,-0.40171376,0.6427423,-0.6516372,-0.40034434,0.64427745,-0.6505191,-0.39995858,0.6456455,-0.6484936,-0.3968507,0.64958876,-0.6454856,-0.39610904,0.6530283,-0.6450282,-0.39580855,0.65366215,-0.64466953,-0.39512914,0.6544266,-0.6454767,-0.39439937,0.654071,-0.64365137,-0.39081115,0.6580118,-0.6410922,-0.39090848,0.66044784,-0.6402464,-0.38984302,0.66189647,-0.6368042,-0.39147,0.6642527,-0.6380994,-0.39129752,0.6631105,-0.6388621,-0.39165196,0.6621661,-0.6377854,-0.39236075,0.6627842,-0.63607025,-0.3918009,0.66476065,-0.6337979,-0.39147633,0.6671181,-0.6321202,-0.39069977,0.669162,-0.630453,-0.39058992,0.67079693,-0.63034034,-0.3897441,0.67139447,-0.63080007,-0.38877222,0.6715262,-0.6313546,-0.3879791,0.6714638,-0.6296139,-0.3870442,0.6736343,-0.62966114,-0.38832152,0.67285454,-0.6291887,-0.3891648,0.67280924,-0.6282401,-0.38980845,0.673323,-0.6274455,-0.3902024,0.67383546,-0.62589777,-0.39030284,0.67521524,-0.62311536,-0.3897833,0.67808276,-0.617669,-0.38978022,0.6830494,-0.6166852,-0.3898807,0.6838803,-0.61649305,-0.38824144,0.68498534,-0.61619306,-0.38732702,0.68577254,-0.6169709,-0.3864831,0.6855492,-0.61431193,-0.37854612,0.692332,-0.60941875,-0.37597156,0.698036,-0.60829514,-0.3745908,0.6997562,-0.60848,-0.3733167,0.7002762,-0.61020684,-0.36830053,0.7014288,-0.61028486,-0.36807385,0.7014799,-0.6109641,-0.36659324,0.7016639,-0.61094415,-0.36224112,0.70393795,-0.610247,-0.35887873,0.706261,-0.61027116,-0.35683677,0.707274,-0.6097459,-0.3558606,0.7082184,-0.6083835,-0.35484248,0.7098988,-0.60674995,-0.3513423,0.71303093,-0.6063543,-0.34899384,0.7145192,-0.60663164,-0.3468158,0.7153439,-0.6057682,-0.34539744,0.7167604,-0.60592324,-0.34149963,0.718495,-0.60502386,-0.3377852,0.72100437,-0.60340047,-0.33625916,0.72307515,-0.6029148,-0.33498752,0.7240698,-0.6026985,-0.3330485,0.7251437,-0.60294944,-0.33014926,0.7262599,-0.6040995,-0.30768913,0.7351131,-0.6026152,-0.3065164,0.73681927,-0.6015041,-0.30409804,0.7387268,-0.6038725,-0.29534334,0.74034476,-0.6038059,-0.29309863,0.74129057,-0.6041988,-0.28842312,0.74280274,-0.60421306,-0.2840889,0.7444596,-0.6038628,-0.2787653,0.74675274,-0.60379195,-0.2733592,0.74880576,-0.60391915,-0.27298537,0.7488395,-0.6055007,-0.26832062,0.74924827,-0.6070995,-0.26309535,0.74980736,-0.60823464,-0.25773397,0.7507488,-0.6096285,-0.2529946,0.7512302,-0.60978615,-0.24244118,0.7545748,-0.61017686,-0.24197982,0.75440705,-0.6111432,-0.24266613,0.7534037,-0.61111015,-0.24176976,0.7537186,-0.6118057,-0.23782334,0.7544096,-0.61152387,-0.23623705,0.7551362,-0.611486,-0.23539728,0.75542897,-0.6118425,-0.23482732,0.75531775,-0.6122414,-0.23444295,0.75511384,-0.6119703,-0.22959192,0.7568222,-0.6106474,-0.22745304,0.75853467,-0.61090213,-0.22551072,0.75890934,-0.6102903,-0.22337312,0.760033,-0.6107068,-0.22230478,0.7600116,-0.6117425,-0.22138068,0.7594483,-0.6109148,-0.2212543,0.7601511,-0.6104121,-0.22067253,0.76072377,-0.607467,-0.22090693,0.7630097,-0.60665107,-0.22421372,0.76269436,-0.60593843,-0.22439146,0.76320845,-0.60533357,-0.22437647,0.76369274,-0.6034659,-0.22230141,0.76577467,-0.6011129,-0.21799527,0.7688572,-0.6005516,-0.21602201,0.76985216,-0.5977886,-0.20961863,0.7737628,-0.5957969,-0.20199451,0.77731866,-0.5953489,-0.1993212,0.7783513,-0.59592897,-0.1975505,0.7783589,-0.59465134,-0.19611502,0.77969784,-0.59488297,-0.19681025,0.7793458,-0.5947867,-0.19772427,0.779188,-0.5942891,-0.1972463,0.7796886,-0.59285384,-0.1940204,0.78158844,-0.59311813,-0.19198178,0.7818912,-0.5923022,-0.19226441,0.78244007,-0.5919243,-0.19174755,0.78285277,-0.58366156,-0.18206294,0.7913231,-0.5834892,-0.18196237,0.7914734,-0.5815518,-0.17751592,0.79390526,-0.57948405,-0.17495057,0.795984,-0.57753,-0.17102912,0.7982532,-0.5771357,-0.16973594,0.79881424,-0.57788366,-0.16826597,0.7985844,-0.57698226,-0.16881706,0.79911965,-0.57608753,-0.16853306,0.7998249,-0.5740302,-0.16574696,0.8018835,-0.5709492,-0.16040954,0.805162,-0.56884915,-0.1552375,0.8076584,-0.5669404,-0.14621454,0.81067866,-0.5663147,-0.14076632,0.81207913,-0.5656908,-0.13868031,0.81287247,-0.56585974,-0.1369567,0.8130472,-0.5666144,-0.13384943,0.81303895,-0.5664329,-0.13284945,0.8133295,-0.5665707,-0.13217027,0.8133442,-0.5666081,-0.13110247,0.81349087,-0.5662027,-0.128706,0.8141555,-0.56618005,-0.12686346,0.81446046,-0.56691176,-0.12229228,0.8146506,-0.56753623,-0.12192017,0.8142715,-0.5677063,-0.12027902,0.81439704,-0.5685593,-0.11814512,0.8141143,-0.5698409,-0.11136052,0.81417453,-0.5715934,-0.107745215,0.8134322,-0.5725344,-0.103091024,0.8133736,-0.57421696,-0.0970045,0.81293607,-0.5767451,-0.091516934,0.8117819,-0.57808495,-0.090041876,0.8109934,-0.5790765,-0.08940537,0.8103562,-0.5852167,-0.0881015,0.80607665,-0.5877368,-0.08878569,0.8041658,-0.5908982,-0.088621,0.80186385,-0.59373724,-0.08885195,0.79973835,-0.5959647,-0.08803702,0.7981701,-0.5976253,-0.08657504,0.79708767,-0.5989557,-0.08605544,0.7961447,-0.60202724,-0.08563263,0.7938705,-0.6039596,-0.08216613,0.79276824,-0.60854924,-0.08006141,0.7894669,-0.61103743,-0.07679385,0.787868,-0.61466473,-0.0735238,0.78535444,-0.61792386,-0.068851955,0.78321743,-0.6192068,-0.067605555,0.7823123,-0.6208746,-0.06483681,0.781224,-0.6237846,-0.06372617,0.778994,-0.62673634,-0.061079174,0.7768339,-0.6284134,-0.059136245,0.7756285,-0.63310504,-0.055775575,0.7720538,-0.6352824,-0.054524712,0.7703528,-0.6366439,-0.053316377,0.7693126,-0.6388633,-0.05208916,0.76755476,-0.6415146,-0.049922254,0.7654847,-0.64515036,-0.049079645,0.76247764,-0.64833784,-0.048773166,0.75978893,-0.653598,-0.05006358,0.75518423,-0.6577822,-0.050351225,0.7515233,-0.65937364,-0.051224496,0.75006825,-0.6636115,-0.050220143,0.7463898,-0.66471577,-0.049004752,0.7454874,-0.66675615,-0.047918603,0.7437339,-0.67606336,-0.046427168,0.7353794,-0.677158,-0.0451825,0.7344492,-0.67919207,-0.04413534,0.7326324,-0.6805599,-0.04300976,0.73142904,-0.6843309,-0.041632224,0.72798216,-0.6862443,-0.041458447,0.7261886,-0.6869164,-0.04211412,0.7255151,-0.68713063,-0.04365515,0.7252212,-0.69057584,-0.043936096,0.72192425,-0.6922438,-0.045283012,0.7202416,-0.69311035,-0.045075323,0.7194207,-0.69408584,-0.046098623,0.7184148,-0.6962864,-0.047099724,0.7162171,-0.6953555,-0.045337554,0.71723443,-0.6952354,-0.044666607,0.7173929,-0.6953236,-0.04350533,0.7173788,-0.69625914,-0.043117072,0.7164944,-0.6968743,-0.043118857,0.7158959,-0.6978335,-0.044232402,0.714893,-0.69862956,-0.047775596,0.7138867,-0.6992071,-0.05136748,0.71307135,-0.70182055,-0.04819604,0.7107215,-0.7015208,-0.04670296,0.71111697,-0.70130855,-0.044899903,0.7114424,-0.701,-0.04404173,0.7118001,-0.70050895,-0.043292504,0.71232927,-0.7005418,-0.041971076,0.71237606,-0.69884074,-0.041274544,0.7140854,-0.69900614,-0.039602216,0.7140182,-0.6996041,-0.037830904,0.7135285,-0.7006504,-0.038219243,0.71248037,-0.7013603,-0.0389192,0.71174365,-0.7023252,-0.04140914,0.71065086,-0.7028258,-0.040487826,0.7102089,-0.70354307,-0.039530627,0.70955235,-0.7029499,-0.039104905,0.71016353,-0.7023503,-0.038868096,0.71076953,-0.7018724,-0.037553344,0.71131206,-0.70142716,-0.036885638,0.71178603,-0.7009295,-0.0358193,0.7123306,-0.70108664,-0.033962674,0.7122668,-0.7016866,-0.03213989,0.71176046,-0.7024637,-0.030465342,0.71106726,-0.70331025,-0.031276174,0.71019465,-0.7040209,-0.03139032,0.7094851,-0.70333487,-0.030250626,0.7102147,-0.70418924,-0.030099062,0.7093741,-0.7046854,-0.029172258,0.70891994,-0.7058445,-0.02772743,0.707824,-0.70717806,-0.026412081,0.70654196,-0.7078167,-0.025590887,0.70593244,-0.709105,-0.026299706,0.7046123,-0.71083784,-0.02996787,0.70271724,-0.71118397,-0.02735266,0.70247364,-0.7125441,-0.023668865,0.701228,-0.71375406,-0.02322243,0.7000113,-0.7148214,-0.023522278,0.69891137,-0.716482,-0.021828512,0.697264,-0.718849,-0.020722618,0.69485724,-0.71974725,-0.01925032,0.69396925,-0.72090226,-0.019517895,0.6927619,-0.72180825,-0.019194065,0.6918268,-0.7218745,-0.017997768,0.6917899,-0.7230996,-0.01813579,0.69050574,-0.7243163,-0.017977387,0.6892335,-0.7254605,-0.01739788,0.68804395,-0.72667706,-0.016939469,0.6867704,-0.7270143,-0.015993671,0.68643606,-0.7285315,-0.014599564,0.68485665,-0.7290353,-0.013607722,0.68434083,-0.7300189,-0.013611179,0.6832914,-0.73062927,-0.012973703,0.6826511,-0.73158383,-0.013093022,0.6816258,-0.7328004,-0.013009583,0.68031925,-0.7336845,-0.011876228,0.6793865,-0.7344963,-0.011264368,0.67851925,-0.7360306,-0.010937159,0.67686,-0.7365113,-0.011303585,0.67633075,-0.73675764,-0.011884692,0.6760525,-0.7364273,-0.012598821,0.67639935,-0.7368689,-0.013064057,0.6759094,-0.73790246,-0.011692063,0.6748061,-0.73899794,-0.012544228,0.67359084,-0.739944,-0.0123994,0.67255414,-0.7404449,-0.011811383,0.67201334,-0.7408448,-0.011579656,0.6715764,-0.7417273,-0.01210116,0.6705924,-0.7426214,-0.013432142,0.6695767,-0.74346876,-0.012305708,0.6686575,-0.74389064,-0.012455662,0.66818535,-0.74442565,-0.012871549,0.66758126,-0.74457157,-0.013878658,0.66739833,-0.7454186,-0.014449614,0.66643995,-0.74615747,-0.015622144,0.6655862,-0.74673724,-0.016764019,0.6649078,-0.7465906,-0.018147709,0.66503614,-0.7482254,-0.01999154,0.6631434,-0.74772555,-0.021452017,0.6636613,-0.7484983,-0.023103133,0.6627341,-0.7483648,-0.024324922,0.6628412,-0.7481591,-0.025057597,0.663046,-0.7469662,-0.025865218,0.66435874,-0.74806565,-0.026533037,0.6630941,-0.74823,-0.028165355,0.66284126,-0.7490175,-0.027354328,0.6619854,-0.74985784,-0.02598105,0.66108865,-0.75112617,-0.02596234,0.65964794,-0.75422525,-0.031930428,0.6558389,-0.75607264,-0.03278042,0.6536663,-0.75669736,-0.033443097,0.65290934,-0.7587228,-0.04090495,0.650128,-0.7591983,-0.043699455,0.6493907,-0.7607563,-0.04508211,0.64747,-0.76027465,-0.043966822,0.6481121,-0.7598829,-0.0397878,0.64884114,-0.75939834,-0.038239732,0.64950126,-0.7588063,-0.03440385,0.6504071,-0.7579436,-0.030220004,0.6516197,-0.7609684,-0.032582875,0.6479703,-0.7645472,-0.03264245,0.6437406,-0.7656442,-0.031966172,0.6424696,-0.76694775,-0.032414164,0.64089036,-0.767558,-0.033088766,0.6401249,-0.7685254,-0.03355557,0.6389388,-0.7700724,-0.035170376,0.6369863,-0.7721714,-0.032281317,0.63459384,-0.77277416,-0.03170893,0.6338886,-0.77336437,-0.03074297,0.6332159,-0.77322865,-0.029574297,0.6334373,-0.7732891,-0.028686684,0.6334043,-0.77492654,-0.024018167,0.6315947,-0.77502304,-0.022886707,0.63151836,-0.7752585,-0.021400888,0.63128155,-0.77609605,-0.019463308,0.6303143,-0.7752381,-0.018130664,0.6314089,-0.7752927,-0.017445676,0.6313611,-0.7758866,-0.01636353,0.6306601,-0.7769434,-0.01721385,0.62933505,-0.7773378,-0.018013142,0.62882555,-0.7792102,-0.01983481,0.6264487,-0.7802237,-0.021353096,0.625136,-0.78272843,-0.023631323,0.6219147,-0.7839628,-0.024333384,0.6203307,-0.78714496,-0.027690014,0.61614615,-0.7897958,-0.02862198,0.6127017,-0.79104036,-0.027216336,0.61115825,-0.79480267,-0.02708001,0.6062634,-0.7936434,-0.02642233,0.60780925,-0.79024434,-0.02377791,0.6123305,-0.7879956,-0.024415137,0.6151966,-0.78757995,-0.02387337,0.61574984,-0.7870971,-0.023041757,0.61639863,-0.7870007,-0.02060844,0.6166078,-0.7859138,-0.019507645,0.61802816,-0.7848753,-0.017774524,0.6193989,-0.7831697,-0.009583847,0.62173414,-0.7825369,-0.008891867,0.6225407,-0.7815473,-0.0068534515,0.6238083,-0.7804218,-0.0031208186,0.62524563,-0.780243,-0.0014871791,0.6254747,-0.7782644,-0.00054542616,0.6279365,-0.7767824,0.0022736331,0.62976503,-0.7761552,0.0028097155,0.6305357,-0.7751214,0.0030116553,0.6318052,-0.77444285,0.0038843811,0.63263196,-0.77250826,0.0073391297,0.6349623,-0.7711658,0.011122788,0.63653713,-0.76981556,0.013107477,0.63813186,-0.76925564,0.014585888,0.63877463,-0.76672,0.017715676,0.64173716,-0.7664447,0.018358944,0.6420479,-0.7652012,0.019571442,0.6434937,-0.7647512,0.020296566,0.64400595,-0.764804,0.022147112,0.6438823,-0.7644796,0.02477972,0.6441715,-0.76524204,0.028966026,0.64309067,-0.76630783,0.030202042,0.64176327,-0.76777184,0.031166231,0.63996494,-0.7719963,0.034874715,0.6346695,-0.7723088,0.0367152,0.6341854,-0.7728512,0.03718361,0.63349694,-0.7734626,0.037237216,0.6327472,-0.77302146,0.038029276,0.633239,-0.77302974,0.038568303,0.63319623,-0.7735826,0.04147027,0.6323371,-0.7741064,0.043231912,0.6315776,-0.77434504,0.04489303,0.631169,-0.7744142,0.046267036,0.6309849,-0.7759609,0.053687334,0.6284921,-0.7764457,0.057247512,0.62757856,-0.77638614,0.06403896,0.6269957,-0.77756697,0.071386084,0.6247348,-0.77860457,0.07366911,0.6231755,-0.7799741,0.075218335,0.621275,-0.78090376,0.07516817,0.6201122,-0.78109854,0.073826276,0.6200281,-0.78264797,0.070447534,0.6184653,-0.7835951,0.06962891,0.61735773,-0.78406584,0.06853647,0.61688215,-0.78436124,0.06748558,0.6166223,-0.78495836,0.066771336,0.6159398,-0.7855364,0.06587246,0.61529946,-0.7857397,0.06514375,0.6151174,-0.7862659,0.064567156,0.61450547,-0.7864098,0.063607,0.6144215,-0.7878245,0.060217362,0.6129489,-0.7883934,0.058691207,0.61236525,-0.78918153,0.05707054,0.6115027,-0.78965443,0.056468073,0.6109477,-0.7903009,0.05550328,0.61019987,-0.7906557,0.054387618,0.6098406,-0.79070485,0.05323463,0.6098785,-0.79118544,0.05185169,0.60937434,-0.791468,0.050660092,0.60910743,-0.79189366,0.049968123,0.6086112,-0.7930865,0.0461938,0.6073549,-0.7948034,0.04124206,0.60546404,-0.79570353,0.040431518,0.6043353,-0.7966485,0.039550196,0.6031475,-0.7981585,0.0380693,0.6012434,-0.7989087,0.038417615,0.60022414,-0.7999269,0.038585335,0.5988557,-0.80066866,0.038950678,0.59783983,-0.8009812,0.04004833,0.5973484,-0.80146587,0.040824823,0.59664553,-0.8018035,0.040554084,0.59621006,-0.8025131,0.039773297,0.5953073,-0.80563253,0.040280722,0.59104466,-0.80577654,0.040742278,0.5908166,-0.8059468,0.041088056,0.5905603,-0.8062246,0.040933926,0.5901917,-0.806607,0.04035743,0.5897087,-0.80785346,0.0389558,0.5880946,-0.8093663,0.03752419,0.5861043,-0.8097941,0.037010755,0.5855456,-0.81016684,0.037290107,0.58501214,-0.8107765,0.037573628,0.58414876,-0.8136432,0.039180573,0.58004284,-0.81397456,0.040010814,0.57952094,-0.81438184,0.040371843,0.5789234,-0.8693988,0.08322765,0.48705122,-0.8702335,0.08244642,0.48569152,-0.87090343,0.0817091,0.48461416,-0.87367463,0.0785992,0.4801196,-0.87425536,0.07875298,0.47903606,-0.8750858,0.077293314,0.4777558,-0.8760532,0.07675811,0.47606614,-0.87680745,0.074766256,0.47499332,-0.87911147,0.07318631,0.47096366,-0.88132477,0.07195551,0.46700007,-0.881938,0.071469314,0.4659157,-0.88395816,0.07248508,0.46191314,-0.88447726,0.0721681,0.4609683,-0.88568497,0.0704926,0.45890403,-0.88613254,0.0704467,0.4580463,-0.8865299,0.070068434,0.45733488,-0.8868354,0.06871748,0.4569473,-0.8873075,0.06406109,0.4567073,-0.8890062,0.06268497,0.45358407,-0.8895209,0.06429664,0.45234782,-0.8901669,0.06551536,0.45089984,-0.8912377,0.068402916,0.4483486,-0.8915582,0.06877956,0.4476533,-0.89188015,0.06876172,0.447014,-0.89307684,0.06790554,0.44475013,-0.89359546,0.06827708,0.44365016,-0.89400333,0.06872604,0.44275814,-0.8947377,0.06858238,0.44129455,-0.8960274,0.06854919,0.43867525,-0.89684546,0.06852196,0.4370045,-0.897192,0.06931092,0.43616807,-0.89745766,0.07092282,0.43536156,-0.8976679,0.071499996,0.4348334,-0.8979274,0.0719649,0.43422046,-0.8983905,0.072199486,0.43322256,-0.9004214,0.07219354,0.4289865,-0.90080166,0.07219188,0.42818755,-0.90106004,0.072502084,0.4275913,-0.90135497,0.073884055,0.4267322,-0.90173334,0.07453338,0.4258188,-0.9022245,0.07456143,0.42477244,-0.9024921,0.073800005,0.4243367,-0.9018001,0.07131129,0.42622915,-0.9016364,0.06996212,0.42679864,-0.9010039,0.068011865,0.42844644,-0.8987145,0.06257099,0.43404743,-0.8988529,0.060895372,0.4339991,-0.8990038,0.058330502,0.4340388,-0.8990537,0.0559032,0.4342548,-0.8986523,0.052420974,0.4355182,-0.8981051,0.044945784,0.4374781,-0.89829427,0.044057008,0.43718013,-0.89829266,0.043661017,0.43722293,-0.8981412,0.04330349,0.43756962,-0.8973904,0.042790055,0.4391577,-0.8957745,0.04246908,0.4424752,-0.8947844,0.04246741,0.44447422,-0.8940315,0.037272118,0.44645086,-0.89486766,0.03700134,0.44479516,-0.89577556,0.035739157,0.44306755,-0.8970667,0.034493234,0.44054678,-0.89778334,0.0343237,0.43909782,-0.89808667,0.03408006,0.43849617,-0.8983483,0.033706196,0.43798888,-0.89856845,0.033232603,0.43757316,-0.9015837,0.025249973,0.43186733,-0.9021902,0.025353055,0.4305926,-0.9025011,0.024973137,0.42996305,-0.9041013,0.021872759,0.426758,-0.9047427,0.02193926,0.4253931,-0.9054385,0.021286624,0.42394358,-0.90631837,0.020217309,0.42211175,-0.906902,0.019338788,0.42089757,-0.9081251,0.016263679,0.418383,-0.908847,0.015160174,0.4168542,-0.90920204,0.013795967,0.41612655,-0.910337,0.01304609,0.4136621,-0.910029,0.014719626,0.41428313,-0.91031957,0.016162245,0.41359043,-0.91087484,0.016935091,0.4123351,-0.91113573,0.017163463,0.4117488,-0.9114005,0.017068943,0.4111663,-0.9120791,0.016357483,0.4096878,-0.91291493,0.015063983,0.4078718,-0.91342825,0.014132582,0.40675434,-0.91647273,0.014340461,0.39984012,-0.926947,0.031201975,0.37389255,-0.93831563,0.0188208,0.34526736,-0.9356608,0.01856943,0.3524118,-0.9357448,0.0113716815,0.3524944,-0.9381759,0.010931945,0.34598607,-0.9371752,-0.011158636,0.34868056,-0.9359404,-0.020109177,0.3515838,-0.7909405,-0.35704055,0.4969257,-0.7882334,-0.3672639,0.49376646,-0.7836613,-0.37637272,0.4941846,-0.7833459,-0.3762117,0.49480712,-0.77766734,-0.37808385,0.5022809,-0.7620633,-0.3846478,0.5208699,-0.7583001,-0.3932086,0.5199691,-0.75432587,-0.40173557,0.51923114,-0.73652357,-0.42453596,0.52659494,-0.7262397,-0.50218153,0.46945688,-0.7086749,-0.5148453,0.48240468,-0.66813284,-0.53641236,0.5156163,-0.6683868,-0.53470236,0.51706135,-0.6724705,-0.5207683,0.5259123,-0.674032,-0.50368565,0.5403533,-0.6680461,-0.50357527,0.5478379,-0.6652577,-0.5106059,0.5447145,-0.66535014,-0.51581806,0.53966737,-0.66574943,-0.5190239,0.5360895,-0.6676194,-0.52976465,0.5231002,-0.665065,-0.49698868,0.5573965,-0.66361755,-0.48284215,0.57138,-0.6732241,-0.44382736,0.59142756,-0.6727289,-0.42365307,0.60659206,-0.6732072,-0.4231835,0.6063891,-0.6464953,-0.39162213,0.65473354,-0.61751854,-0.3850143,0.68588257,-0.6019249,-0.3030701,0.73880637,-0.61046886,-0.24363488,0.75363773,-0.61268413,-0.23115599,0.7557679,-0.6100077,-0.21855077,0.76166016,-0.59026295,-0.18773131,0.78507745,-0.5865619,-0.18377884,0.7887778,-0.5666199,-0.1348071,0.81287694,-0.66832644,-0.04895534,0.7422555,-0.7362516,-0.013367417,0.67657584,-0.7611322,-0.04635572,0.6469381,-0.7624576,-0.03361514,0.64616436,-0.7745295,-0.026001547,0.6320031,-0.77585495,-0.020322159,0.6305839,-0.7849217,-0.014930214,0.61941504,-0.77156997,0.033630423,0.635255,-0.7822933,0.07082329,0.61887085,-0.7931843,0.044894695,0.6073246,-0.79702634,0.038588792,0.6027105,-0.8004496,0.038472887,0.5981641,-0.81143904,0.037589826,0.583227,-0.8685936,0.09048569,0.4871936,-0.87154984,0.07975879,0.4837762,-0.8727807,0.07854061,0.4817523,-0.8851111,0.07122449,0.45989716,-0.89904976,0.06388253,0.43316105,-0.90081817,0.025396552,0.43345317,-0.90741056,0.01784011,0.4198664,-0.9159107,0.013389501,0.40115866,-0.9339339,0.03003761,0.3561815,-0.93514353,0.030036775,0.3529934,-0.9344743,0.0114977965,0.35584491,-0.93848324,0.010602113,0.34516203,-0.93881524,0.010445361,0.34426275,-0.93646836,-0.016854247,0.35034683,-0.9362162,-0.017430302,0.35099208,-0.79261696,-0.353317,0.49691594,-0.7728722,-0.37680066,0.5105779,-0.7615178,-0.38544685,0.5210771,-0.70854026,-0.5129137,0.4846547,-0.6660552,-0.5066188,0.5474558,-0.66539127,-0.5201117,0.53547955,-0.66457945,-0.48595998,0.56760645,-0.6741787,-0.44258073,0.59127444,-0.67804664,-0.43037727,0.59584236,-0.67662364,-0.4275275,0.5995004,-0.6566081,-0.4029651,0.63756174,-0.6461844,-0.39404845,0.65358365,-0.6383099,-0.38929352,0.66408664,-0.63563687,-0.39088336,0.6657146,-0.6300773,-0.3862818,0.6736386,-0.6155015,-0.37961227,0.6906898,-0.6050565,-0.32302555,0.7277095,-0.60481066,-0.30885333,0.7340393,-0.61288273,-0.23494169,0.7544383,-0.6094669,-0.21890335,0.7619918,-0.59459335,-0.19537455,0.77992785,-0.58822787,-0.18518093,0.7872077,-0.66149974,-0.05088067,0.74821734,-0.69623554,-0.04901666,0.7161378,-0.6966741,-0.048064943,0.7157757,-0.73942053,-0.012649958,0.6731251,-0.78473544,-0.013304361,0.6196881,-0.7690688,0.03136986,0.6383958,-0.80511457,0.04000831,0.5917683,-0.8687986,0.08414911,0.48796293,-0.87220615,0.07879552,0.4827501,-0.89800847,0.048876073,0.43725502,-0.89788604,0.046616063,0.43775296,-0.898877,0.030896232,0.43711045,-0.9029601,0.023906533,0.42905876,-0.90970236,0.012064478,0.41508564,-0.9103009,0.012007381,0.41377297,-0.9208678,0.02068761,0.3893256,-0.9266831,0.03058274,0.37459725,-0.9374515,-0.008888529,0.3480023,-0.93667716,-0.04726572,0.34698984,-0.7902625,-0.35833457,0.49707294,-0.77281773,-0.37626538,0.5110549,-0.70624936,-0.51450616,0.4863077,-0.68649334,-0.528855,0.49903837,-0.67466193,-0.5391441,0.50413793,-0.67024964,-0.5294393,0.5200572,-0.67561656,-0.5005269,0.5413087,-0.6757298,-0.43641233,0.59408206,-0.6176004,-0.38398382,0.68638635,-0.6035816,-0.29763854,0.73966247,-0.61287063,-0.23311397,0.75501484,-0.59471285,-0.19449353,0.78005695,-0.6220398,-0.067298576,0.78008807,-0.6715637,-0.048710182,0.739344,-0.7097578,-0.028436208,0.70387155,-0.7707748,0.031926885,0.6363072,-0.7768798,0.056238007,0.6271324,-0.8033286,0.039314225,0.5942369,-0.80389357,0.03946753,0.5934622,-0.86829066,0.09001294,0.4878207,-0.871905,0.07907241,0.48324856,-0.903609,0.022579972,0.4277626,-0.937236,-0.010464998,0.34853858,-0.93670917,-0.049043924,0.34665635,-0.7078172,-0.5131814,0.4854273,-0.6735982,-0.5399478,0.50469965,-0.670866,-0.5282241,0.520498,-0.6748631,-0.50213,0.5407636,-0.6671409,-0.5038286,0.54870737,-0.6651399,-0.49034384,0.56316227,-0.6578797,-0.40347365,0.6359271,-0.646749,-0.39244846,0.6539877,-0.6361533,-0.3901898,0.66562825,-0.6078301,-0.33998606,0.7176016,-0.60600114,-0.31320268,0.73120904,-0.5750447,-0.13807005,0.8063871,-0.63433325,-0.06564975,0.7702671,-0.702602,-0.054815743,0.70946854,-0.7598959,-0.045308497,0.64846385,-0.8071108,0.03975281,0.5890601,-0.8993116,0.028258095,0.4363944,-0.9138855,0.013706449,0.40574068,-0.9259306,0.030723343,0.37644202,-0.9263348,0.030512083,0.3754634,-0.93731076,-0.009657158,0.3483609,-0.9473232,-0.08702846,0.30822846,-0.82909447,-0.2664155,0.4915538,-0.7722832,-0.375839,0.5121755,-0.66550416,-0.47990873,0.5716571,-0.63086796,-0.3863117,0.67288095,-0.6057684,-0.3196184,0.7286212,-0.6082109,-0.3382938,0.71807855,-0.606904,-0.2742354,0.74596417,-0.59514546,-0.19513382,0.77956694,-0.59179604,-0.1081689,0.7987972,-0.58739007,-0.1282564,0.79907644,-0.58275115,-0.14829153,0.7990061,-0.63117373,-0.0684388,0.7726162,-0.64539605,-0.059833813,0.761501,-0.6167147,-0.07703858,0.7834079,-0.67905736,-0.049948685,0.73238385,-0.7013814,-0.054739207,0.7106812,-0.71026856,-0.029606707,0.7033079,-0.7269434,-0.02170075,0.68635446,-0.89377534,0.03761282,0.446935,-0.91481656,0.01332132,0.40364978,-0.93510544,0.010915734,0.35420144,-0.94482964,-0.08687729,0.31583118,-0.8307371,-0.26137084,0.49148858,-0.72728264,-0.4898565,0.48072922,-0.670088,-0.47000808,0.5745211,-0.66352516,-0.40849537,0.62679017,-0.63157314,-0.38743713,0.67157114,-0.60838825,-0.3351095,0.7194202,-0.60815805,-0.2832382,0.7415658,-0.5953888,-0.14020261,0.7911103,-0.59588784,-0.114159234,0.79491216,-0.5944661,-0.16614947,0.7867683,-0.64701664,-0.059576064,0.7601448,-0.63227093,-0.06826706,0.7717338,-0.6172715,-0.07695276,0.78297776,-0.6817002,-0.052809976,0.7297232,-0.7291558,-0.027916543,0.68377805,-0.7832739,0.0024245516,0.62167215,-0.86808765,0.08858102,0.4884436,-0.8932782,0.042083304,0.4475299,-0.9000362,0.02669144,0.43499705,-0.91559535,0.013123688,0.40188667,-0.9292846,0.019709101,0.36883837,-0.9348484,0.010994169,0.35487676,-0.9446977,-0.08682634,0.3162396,-0.94164807,-0.1517056,0.3004735,-0.92140514,-0.17719378,0.34585398,-0.83097094,-0.26068637,0.49145687,-0.7968152,-0.33349526,0.5038516,-0.74597293,-0.4037449,0.529636,-0.7241451,-0.50162,0.47327703,-0.66965103,-0.47973907,0.56693727,-0.6721428,-0.46126115,0.579191,-0.6667014,-0.49800664,0.55452555,-0.63164103,-0.3866733,0.6719474,-0.62087053,-0.37162104,0.69023,-0.6111213,-0.30537,0.7302602,-0.61066383,-0.27928615,0.74100536,-0.61099285,-0.3312266,0.71901095,-0.6045288,-0.15362923,0.7816284,-0.5989311,-0.17283832,0.78192616,-0.60062325,-0.12089912,0.79033864,-0.6076628,-0.1861917,0.77206117,-0.6776113,-0.06246864,0.73276234,-0.6531081,-0.070194334,0.7540043,-0.62790275,-0.07791582,0.7743818,-0.7025801,-0.055904955,0.70940524,-0.7256235,-0.032698687,0.68731457,-0.7937365,0.011799018,0.6081473,-0.78242195,0.021864058,0.62236464,-0.8128333,0.03851887,0.5812214,-0.8679441,0.08706151,0.4889717,-0.88812095,0.06267653,0.45531622,-0.9284484,0.019628532,0.37094262,-0.93460745,0.011088696,0.35550812,-0.94450927,-0.094048105,0.31473374,-0.94170284,-0.14033847,0.3057791,-0.92121786,-0.17556062,0.3471831,-0.8830794,-0.19529843,0.42664897,-0.83128095,-0.26004952,0.49127012,-0.7959282,-0.33555514,0.50388587,-0.7448577,-0.4043779,0.53072166,-0.72577274,-0.50166124,0.47073337,-0.7083903,-0.51280403,0.48498997,-0.68819183,-0.52484566,0.50092816,-0.67608595,-0.4507776,0.58284414,-0.6724235,-0.47283402,0.5694512,-0.66815954,-0.49459785,0.5558199,-0.62127167,-0.3718031,0.68977094,-0.61337405,-0.26585314,0.7437031,-0.61310923,-0.29649365,0.732249,-0.61158025,-0.2748144,0.74192095,-0.612078,-0.3268318,0.72009826,-0.60548776,-0.15506238,0.78060246,-0.60812056,-0.18690424,0.7715285,-0.6011243,-0.12161904,0.7898471,-0.6090338,-0.1883289,0.77046096,-0.65023637,-0.07139806,0.75636965,-0.6264283,-0.07851729,0.7755145,-0.67621833,-0.06307077,0.7339965,-0.62347245,-0.07972026,0.7777704,-0.7252049,-0.040889706,0.68731797,-0.79450834,0.0089131165,0.6071879,-0.84087586,0.027283935,0.54053986,-0.86799824,0.08627531,0.48901486,-0.9261097,0.01597952,0.37691587,-0.93449426,0.011213978,0.3558015,-0.935296,-0.12183723,0.33223048,-0.9433725,-0.117225185,0.31033307,-0.93363184,-0.14493643,0.32760498,-0.936431,-0.09867195,0.33669105,-0.92107135,-0.17485668,0.3479264,-0.8833119,-0.19459304,0.42648977,-0.8316215,-0.25943813,0.49101686,-0.78683156,-0.3445391,0.5120438,-0.7649234,-0.38032648,0.51984996,-0.72290117,-0.47892973,0.4980363,-0.689586,-0.5207231,0.5033077,-0.62902164,-0.37429523,0.6813478,-0.61339796,-0.2644937,0.74416804,-0.61314744,-0.2955957,0.73257995,-0.6133822,-0.26539996,0.7438583,-0.61210835,-0.32638752,0.72027385,-0.60637057,-0.1610109,0.7787106,-0.60940343,-0.1912862,0.76943946,-0.6016423,-0.12460819,0.7889863,-0.610122,-0.19719581,0.76737535,-0.6771445,-0.06394471,0.7330664,-0.65087146,-0.07198033,0.75576794,-0.67652726,-0.06336213,0.7336867,-0.6237985,-0.08001127,0.77747905,-0.7258484,-0.042039204,0.68656886,-0.79346097,0.044123344,0.60701966,-0.79463565,0.008527132,0.60702676,-0.7976865,0.03810075,0.6018676,-0.8421873,0.026619464,0.53852755,-0.86827487,0.08528691,0.4886971,-0.8829237,0.06058826,0.46559078,-0.925962,0.015846618,0.37728405,-0.93522954,-0.12161135,0.3325003,-0.93639463,-0.09855866,0.33682534,-0.9336018,-0.14482379,0.32774055,-0.93632185,-0.0983322,0.3370938,-0.91795003,-0.16860121,0.3590839,-0.8836475,-0.19392674,0.42609805,-0.83149236,-0.25944456,0.49123207,-0.78384286,-0.3462994,0.515429,-0.72505265,-0.501527,0.4719844,-0.7225166,-0.4788617,0.49865943,-0.69797367,-0.5149841,0.49761844,-0.66654813,-0.5047822,0.5485513,-0.63837093,-0.38281566,0.66778344,-0.62468255,-0.36986238,0.6877307,-0.6513226,-0.39569426,0.64746034,-0.6562957,-0.10860974,0.74664575,-0.6293451,-0.11661275,0.7683269,-0.64029795,-0.09432024,0.7623138,-0.6607041,-0.14509237,0.7364905,-0.6452861,-0.13086611,0.7526487,-0.6128987,-0.10233544,0.78350663,-0.6824545,-0.10059982,0.723972,-0.66692066,-0.08629891,0.7401144,-0.6927285,-0.07827199,0.7169384,-0.6717742,-0.122876965,0.7304934,-0.6339088,-0.15305659,0.7581116,-0.6374627,-0.1892934,0.74686635,-0.62218153,-0.17517029,0.7630239,-0.64926124,-0.16723496,0.74195176,-0.6253265,-0.21125671,0.7512239,-0.6180302,-0.13884677,0.773796,-0.7460539,-0.047958136,0.6641563,-0.73188287,-0.050607435,0.6795486,-0.71738935,-0.05325638,0.6946339,-0.77432543,-0.037024423,0.63170356,-0.79426557,0.042324368,0.6060947,-0.795013,0.0076267733,0.60654444,-0.8932119,0.040836852,0.44777766,-0.8828984,0.059965573,0.46571922,-0.93535966,0.018333437,0.35322252,-0.9258005,0.015728615,0.3776852,-0.93526053,-0.12074008,0.33273053,-0.9363272,-0.0978955,0.33720586,-0.93362755,-0.1443896,0.32785863,-0.9363376,-0.097021945,0.33742958,-0.917568,-0.16795091,0.3603629,-0.8834374,-0.19407642,0.4264654,-0.7835028,-0.3466783,0.51569134,-0.72204024,-0.4789088,0.49930376,-0.6983497,-0.51355726,0.4985645,-0.673768,-0.46704766,0.57262844,-0.6766876,-0.4478493,0.58440137,-0.6703885,-0.4860283,0.5606743,-0.6394561,-0.38383114,0.66616035,-0.651836,-0.39619902,0.6466345,-0.62525505,-0.3703731,0.6869351,-0.65285903,-0.39720815,0.64498127,-0.6387025,-0.22100295,0.7370324,-0.6508753,-0.19908544,0.73261607,-0.6639076,-0.20885777,0.71805656,-0.6627042,-0.177068,0.72764695,-0.68526036,-0.13277714,0.71609247,-0.69444114,-0.0944115,0.71332884,-0.6986428,-0.07517218,0.71151066,-0.68997896,-0.1136155,0.71485704,-0.68028957,-0.1518894,0.71703255,-0.6750709,-0.17094491,0.7176748,-0.6696087,-0.18993668,0.71801686,-0.65180707,-0.24645919,0.7172206,-0.63263494,-0.23979218,0.7363917,-0.65797216,-0.22770086,0.71779174,-0.6263498,-0.2584921,0.7354371,-0.64541715,-0.26512548,0.7163415,-0.6388075,-0.28369296,0.7151526,-0.63198286,-0.30215478,0.7136527,-0.6249485,-0.32050383,0.7118404,-0.6177095,-0.3387335,0.7097144,-0.61985236,-0.27709556,0.734167,-0.76046264,-0.045911305,0.64775664,-0.7464891,-0.04841013,0.66363424,-0.7321797,-0.050908767,0.6792063,-0.7461991,-0.04810888,0.66398233,-0.71754104,-0.05340697,0.6944657,-0.77568334,-0.037490327,0.6300077,-0.7952673,0.0070852204,0.60621756,-0.8130671,0.035518996,0.5810855,-0.88144165,0.0625077,0.46813822,-0.93504214,0.017720802,0.35409355,-0.9256297,0.015422286,0.37811616,-0.9362402,-0.096633844,0.33781096,-0.93447286,-0.13238096,0.33050826,-0.93674284,-0.060761478,0.3447041,-0.9166846,-0.16731583,0.36289772,-0.8631172,-0.21721338,0.45590243,-0.8746333,-0.20109637,0.4411086,-0.8856575,-0.18492472,0.42592686,-0.7568197,-0.38411987,0.5288438,-0.7720951,-0.3605009,0.5233626,-0.78686094,-0.33664837,0.5172212,-0.6955353,-0.49102566,0.52452314,-0.71031374,-0.49633187,0.49910834,-0.6836662,-0.5083122,0.5236594,-0.70717674,-0.47354332,0.5250312,-0.67067754,-0.48554546,0.560747,-0.67404926,-0.46655935,0.5726954,-0.6768245,-0.44760245,0.5844319,-0.6708219,-0.4853041,0.56078327,-0.6546506,-0.29759666,0.69488764,-0.6535335,-0.272124,0.7062878,-0.66804785,-0.26051545,0.6970249,-0.6614619,-0.27910814,0.69610834,-0.6758859,-0.2675232,0.6867383,-0.6823391,-0.2488691,0.68737006,-0.69639575,-0.23718679,0.67732954,-0.6327563,-0.3273776,0.70174307,-0.63989615,-0.30907258,0.7035673,-0.6662805,-0.23476951,0.7077808,-0.68052435,-0.22304577,0.69795215,-0.6744036,-0.24182574,0.697639,-0.6836468,-0.17809896,0.7077484,-0.6889492,-0.1590666,0.7071399,-0.7025635,-0.14716509,0.69623774,-0.70333517,-0.10164194,0.7035542,-0.7031476,-0.07879418,0.7066647,-0.70314103,-0.12443621,0.7000774,-0.70025325,-0.19237836,0.6874853,-0.6822747,-0.20062517,0.7030297,-0.7016013,-0.16981642,0.692039,-0.6985183,-0.21483916,0.68258065,-0.6697283,-0.3114374,0.67414445,-0.6477953,-0.34107283,0.68119794,-0.6514086,-0.3194188,0.68821394,-0.6840234,-0.32521236,0.65295404,-0.6660796,-0.3331545,0.6673425,-0.62918687,-0.34896713,0.69451123,-0.6909863,-0.28149584,0.6658063,-0.6729972,-0.2895565,0.68061143,-0.69388515,-0.25940958,0.67173654,-0.68769896,-0.30343395,0.65954375,-0.66205144,-0.35469612,0.66021097,-0.6755093,-0.36824444,0.6388139,-0.6576443,-0.3760511,0.6527553,-0.67995995,-0.34681973,0.6460423,-0.6706723,-0.38947535,0.63127464,-0.6438109,-0.36254734,0.6738449,-0.74700356,-0.0487434,0.6630307,-0.7325307,-0.05113092,0.6788111,-0.7466607,-0.04852122,0.6634331,-0.7177204,-0.05351803,0.6942717,-0.77826947,-0.03671957,0.62685597,-0.7963459,0.005757495,0.6048141,-0.8132455,0.035253804,0.5808519,-0.8664233,0.05867681,0.49585044,-0.89343435,0.038780335,0.4475167,-0.881576,0.061480664,0.46802124,-0.9255231,0.014966362,0.3783953,-0.93408453,-0.13111761,0.33210567,-0.9342145,-0.1315388,0.3315732,-0.9359449,-0.09578806,0.3388683,-0.93657726,-0.060337394,0.34522808,-0.90555894,-0.16749518,0.38975433,-0.9141984,-0.16632098,0.3695653,-0.9223865,-0.16514643,0.34918433,-0.8619651,-0.21812917,0.4576415,-0.8738946,-0.20170905,0.44229156,-0.86273366,-0.2175187,0.4564825,-0.88530314,-0.18523201,0.4265295,-0.78089714,-0.3447383,0.52091765,-0.7911208,-0.32870564,0.5158299,-0.7614077,-0.3763301,0.52785796,-0.7994725,-0.31275102,0.51286495,-0.695658,-0.48993984,0.525375,-0.7072308,-0.4729945,0.5254529,-0.6837353,-0.5077756,0.5240896,-0.7073374,-0.47189656,0.52629596,-0.6783875,-0.46487,0.56893426,-0.6729718,-0.4844694,0.5589261,-0.679018,-0.4467488,0.58253765,-0.6772546,-0.4827985,0.5551863,-0.6975202,-0.28860006,0.6558777,-0.6898308,-0.30578715,0.6562224,-0.6953619,-0.2862337,0.65919805,-0.70171785,-0.26775074,0.66022843,-0.7006135,-0.26656038,0.66188085,-0.70558244,-0.24677527,0.66427064,-0.69299126,-0.3093134,0.65122074,-0.6881328,-0.32988098,0.64625984,-0.68294716,-0.3502932,0.6409975,-0.68195647,-0.34913594,0.6426815,-0.6774365,-0.37054032,0.63543665,-0.6716032,-0.39061287,0.62957984,-0.70535505,-0.17346728,0.6873015,-0.7041084,-0.17225063,0.68888396,-0.7076749,-0.15205058,0.6899832,-0.70270115,-0.19480222,0.68429756,-0.69971436,-0.21604541,0.68097293,-0.7060107,-0.104099445,0.70050853,-0.70445365,-0.12566188,0.6985371,-0.704514,-0.080025524,0.7051637,-0.7070657,-0.12811239,0.69544613,-0.7075411,-0.19964628,0.67788416,-0.7078346,-0.17589977,0.68412673,-0.70679134,-0.22327597,0.6712629,-0.69610983,-0.33919376,0.6327548,-0.6812296,-0.37512514,0.6286552,-0.7017774,-0.29332736,0.6492053,-0.70391184,-0.27013022,0.6569153,-0.6991772,-0.31635308,0.641149,-0.68856883,-0.38426724,0.6149891,-0.69257396,-0.3618362,0.62403196,-0.684094,-0.40647367,0.60563564,-0.79667085,0.005513358,0.6043883,-0.81353605,0.035124302,0.5804528,-0.87276226,0.047328148,0.4858457,-0.87887233,0.03597337,0.4756988,-0.92304903,0.014408166,0.38441235,-0.9337052,-0.12990475,0.33364555,-0.9338321,-0.13030909,0.33313236,-0.93565804,-0.09497627,0.33988765,-0.93641704,-0.059930436,0.34573337,-0.9053475,-0.16752031,0.39023423,-0.91406476,-0.16633767,0.36988837,-0.90548843,-0.16750363,0.38991436,-0.92232335,-0.16515477,0.34934732,-0.8605514,-0.21944384,0.45966908,-0.87298983,-0.20258874,0.44367388,-0.8614946,-0.2185674,0.45831794,-0.8848703,-0.1856734,0.4272354,-0.6957946,-0.48921305,0.52587116,-0.70740044,-0.4715291,0.52654046,-0.6838089,-0.50741655,0.5243413,-0.707526,-0.4707939,0.52702945,-0.70557386,-0.3223823,0.63105875,-0.7044271,-0.3127294,0.63716775,-0.712217,-0.28601998,0.64104563,-0.6978441,-0.3582749,0.62020385,-0.6890333,-0.39364547,0.60850334,-0.70913225,-0.26645285,0.65278965,-0.71296793,-0.1721407,0.67973846,-0.7098131,-0.2096107,0.6724795,-0.70912844,-0.11421844,0.69576645,-0.7061874,-0.08509814,0.70289236,-0.71139205,-0.14324091,0.6880432,-0.7140195,-0.22947334,0.6614516,-0.7138466,-0.20089306,0.6708689,-0.7134786,-0.25785708,0.6515044,-0.6998519,-0.39598382,0.594478,-0.6990931,-0.37720752,0.60743994,-0.7075075,-0.3415869,0.61866915,-0.7102284,-0.31393787,0.6300942,-0.70404994,-0.36894336,0.60679036,-0.694911,-0.4226851,0.5817526,-0.6892252,-0.44902435,0.568635,-0.68279374,-0.47497904,0.5551465,-0.8125089,0.00253482,0.5829433,-0.8052807,0.020321,0.59254545,-0.8208363,0.017343085,0.5709002,-0.8038285,-0.012273882,0.5947345,-0.87854195,0.034627385,0.4764085,-0.92285466,0.013543744,0.38491023,-0.9357299,-0.09300616,0.34023428,-0.93641984,-0.05894275,0.3458954,-0.9337753,-0.12892362,0.33382988,-0.93642277,-0.056967203,0.34621847,-0.85893106,-0.22104609,0.46192643,-0.87195474,-0.20366096,0.44521582,-0.8600122,-0.21997799,0.46042228,-0.884376,-0.18621138,0.42802396,-0.6975862,-0.48468068,0.5276914,-0.6847397,-0.505179,0.52528626,-0.7101056,-0.46391264,0.52965564,-0.70411533,-0.37167704,0.6050436,-0.7079248,-0.34987107,0.6135411,-0.7041444,-0.37304264,0.60416865,-0.7077953,-0.34711277,0.6152548,-0.71099603,-0.3237005,0.62426174,-0.7108935,-0.32230783,0.6250984,-0.7134121,-0.2972798,0.6345612,-0.7041954,-0.3757715,0.6024157,-0.6998053,-0.40138164,0.5909021,-0.69475305,-0.42668155,0.5790172,-0.69480824,-0.42535025,0.5799299,-0.68903756,-0.45165208,0.5667783,-0.68265855,-0.47627345,0.5542029,-0.7106813,-0.31952068,0.6267684,-0.714671,-0.20521541,0.66867936,-0.71439844,-0.20377511,0.66941065,-0.7142173,-0.17793567,0.67692876,-0.71449274,-0.23233673,0.65993917,-0.7136766,-0.25927857,0.65072304,-0.709908,-0.117141604,0.69448435,-0.7117456,-0.144697,0.6873725,-0.70661473,-0.086564116,0.7022836,-0.71244633,-0.14760831,0.6860262,-0.715412,-0.23805733,0.65689754,-0.71406555,-0.2621196,0.64915615,-0.71520936,-0.2080948,0.6672121,-0.7148157,-0.26779506,0.6460064,-0.6943706,-0.43464947,0.5735236,-0.69450796,-0.4319973,0.5753582,-0.6995943,-0.41213527,0.5837057,-0.68863255,-0.45689532,0.5630558,-0.68238086,-0.47885898,0.5523137,-0.70815474,-0.35537884,0.61010057,-0.7042365,-0.37849712,0.6006587,-0.7111939,-0.32648355,0.62258476,-0.70428956,-0.38393846,0.59713274,-0.68770283,-0.46733457,0.55557466,-0.69406605,-0.4399427,0.56984454,-0.6805042,-0.49428493,0.5409219,-0.8410654,0.009048175,0.5408577,-0.8263471,-0.0029955301,0.5631532,-0.8109203,-0.015038921,0.5849634,-0.87681895,0.03139798,0.47979432,-0.9228422,0.01175253,0.38499874,-0.9336716,-0.12873484,0.33419266,-0.9337062,-0.12879772,0.3340717,-0.9356549,-0.09287974,0.34047526,-0.93638223,-0.056903884,0.34633827,-0.6978114,-0.48419908,0.52783567,-0.7102143,-0.46366867,0.52972347,-0.6848563,-0.5049415,0.5253627,-0.71043146,-0.46318084,0.5298591,-0.7042825,-0.38456514,0.5967376,-0.70819265,-0.3572815,0.6089442,-0.7042789,-0.3848784,0.59654003,-0.70818055,-0.35664743,0.6093299,-0.7113078,-0.32872817,0.621272,-0.7112919,-0.32840762,0.6214598,-0.71362114,-0.29987106,0.6331052,-0.704271,-0.3855048,0.5961446,-0.69953895,-0.4133719,0.582897,-0.693994,-0.4408569,0.56922543,-0.6940182,-0.44055215,0.56943184,-0.68763447,-0.46793455,0.5551542,-0.6804598,-0.49457982,0.5407081,-0.7112597,-0.3277664,0.621835,-0.71537566,-0.20909058,0.6667224,-0.71532035,-0.20875868,0.66688573,-0.71447635,-0.1792714,0.6763027,-0.7155039,-0.23871666,0.6565581,-0.71485204,-0.26812205,0.6458305,-0.7100742,-0.11781568,0.6942003,-0.7125205,-0.14794397,0.6858769,-0.7067067,-0.08690222,0.7021493,-0.7126685,-0.14861524,0.685578,-0.7156863,-0.24003474,0.6558783,-0.7149244,-0.2687759,0.64547855,-0.715486,-0.2097543,0.6663955,-0.7150677,-0.27008325,0.6447738,-0.6938466,-0.44268376,0.56798595,-0.69389623,-0.442075,0.56839925,-0.6994222,-0.41584265,0.58127743,-0.68749607,-0.46913388,0.55431265,-0.6803705,-0.49516964,0.54028046,-0.7082155,-0.35854912,0.6081721,-0.7042627,-0.38613105,0.59574896,-0.7113393,-0.32936913,0.62089646,-0.7042445,-0.38738295,0.59495723,-0.6872132,-0.47152993,0.55262786,-0.6801903,-0.49634883,0.5394246,-0.69374573,-0.44390064,0.5671588,-0.67982405,-0.49870405,0.53771144,-0.84131086,0.0089529315,0.5404775,-0.82651687,-0.0030590685,0.5629037,-0.84114724,0.009016467,0.54073095,-0.8110081,-0.0150706265,0.58484083,-0.87531114,0.029894026,0.48263523,-0.8845557,0.03433752,0.46516886,-0.8657044,0.025449941,0.49990812,-0.9237245,-0.004423886,0.38303208,-0.93342054,-0.12839507,0.33502373,-0.9335043,-0.12850833,0.3347468,-0.9354761,-0.09265233,0.34102774,-0.93628734,-0.056789868,0.34661344,-0.70767033,-0.467484,0.52977484,-0.6899452,-0.4967166,0.52654356,-0.72472006,-0.43773073,0.5321397,-0.72217965,-0.26893228,0.6372848,-0.7361644,-0.2666291,0.6220699,-0.7250155,-0.28329262,0.62777203,-0.73001146,-0.23771344,0.64076185,-0.7412071,-0.29530665,0.6028316,-0.7275735,-0.29758972,0.6181238,-0.74401283,-0.2353909,0.6253288,-0.73710454,-0.20624715,0.6435363,-0.7434481,-0.17456593,0.6456096,-0.74414736,-0.2050774,0.63575774,-0.7430354,-0.26547697,0.61434555,-0.75743616,-0.17221163,0.6297886,-0.7490317,-0.1427029,0.6469834,-0.7538459,-0.11069127,0.64766026,-0.75605357,-0.14151984,0.63902664,-0.7608458,-0.10950334,0.63962704,-0.75788194,-0.078564346,0.6476438,-0.761378,-0.07796858,0.64360267,-0.7595325,-0.14092812,0.6350194,-0.7508899,-0.23422901,0.6174958,-0.75110704,-0.20390745,0.62790126,-0.75455546,-0.20332238,0.62394404,-0.74644005,-0.26490077,0.61045456,-0.7124985,-0.41366744,0.5667672,-0.710938,-0.3862808,0.5876686,-0.7217504,-0.35631666,0.59339267,-0.71755505,-0.385178,0.58030397,-0.728401,-0.35519964,0.5858884,-0.7318448,-0.3259814,0.59844744,-0.73519313,-0.3254164,0.59463876,-0.72083455,-0.38462654,0.5765934,-0.6935399,-0.4704756,0.5455777,-0.7001992,-0.44282934,0.5600207,-0.70339817,-0.44229335,0.5564239,-0.68293095,-0.49818587,0.5342436,-0.71825284,-0.3282404,0.61349094,-0.7298508,-0.31182036,0.6083468,-0.7436817,-0.080947235,0.66361517,-0.73958933,-0.11306676,0.6634934,-0.7249964,-0.11544149,0.67900914,-0.7344888,-0.09820917,0.6714768,-0.75256586,-0.06366098,0.65543264,-0.7347344,-0.14506842,0.6626617,-0.7444383,-0.12789911,0.65532696,-0.72914094,-0.08332966,0.6792714,-0.7142667,-0.08571149,0.6946054,-0.72355,-0.06843142,0.6868716,-0.7227729,-0.20858555,0.6588561,-0.7332473,-0.19160445,0.65240806,-0.7291258,-0.17691912,0.66111666,-0.72010523,-0.14743322,0.6780206,-0.7247438,-0.16219427,0.6696562,-0.8415986,0.008984282,0.5400288,-0.82671684,-0.003038207,0.56261003,-0.84140676,0.008963421,0.54032797,-0.8111121,-0.015060138,0.58469677,-0.8848168,0.033461716,0.46473598,-0.8754887,0.029310158,0.48234886,-0.88464284,0.03404563,0.46502462,-0.86579496,0.025157971,0.49976608,-0.923448,-0.004395276,0.38369837,-0.91715527,-0.13077381,0.37646303,-0.92552054,-0.12958454,0.3558366,-0.9199777,-0.14798665,0.36296135,-0.9190191,-0.09504071,0.3825848,-0.92250586,-0.11232965,0.36927637,-0.9280593,-0.14680026,0.34228006,-0.9083292,-0.1319629,0.3968927,-0.9114341,-0.14917281,0.38345173,-0.90243304,-0.15035878,0.40374103,-0.91385955,-0.113521464,0.38983786,-0.9274811,-0.09384658,0.36190003,-0.9282069,-0.057987373,0.36751783,-0.93207633,-0.07533123,0.35434285,-0.9238031,-0.07652725,0.37514186,-0.9322264,-0.039427355,0.3597214,-0.93068814,-0.11113768,0.34852245,-0.7269719,-0.41058117,0.55039525,-0.7188732,-0.42573667,0.5495177,-0.7105987,-0.44077387,0.54842305,-0.7431656,-0.35203117,0.5690158,-0.72819585,-0.38306257,0.5683255,-0.74268836,-0.3238144,0.5861384,-0.734891,-0.39531136,0.5510572,-0.74262655,-0.37993142,0.5515052,-0.7660738,-0.23093458,0.5998335,-0.75404173,-0.2632673,0.6017569,-0.7622353,-0.20166373,0.61508465,-0.76726145,-0.13925122,0.62603426,-0.76509625,-0.09290455,0.6371786,-0.7633369,-0.06964909,0.64223504,-0.7664058,-0.11610955,0.63177586,-0.76765954,-0.16231708,0.6199614,-0.76759624,-0.18529469,0.6135649,-0.76706856,-0.2081713,0.60685295,-0.7626726,-0.27607176,0.5849059,-0.76460916,-0.25357226,0.5925149,-0.76026213,-0.29842097,0.577015,-0.75737643,-0.32060784,0.5688511,-0.7495464,-0.30798447,0.5859401,-0.75401413,-0.34262002,0.56042325,-0.75017434,-0.36444572,0.5517407,-0.7458565,-0.38607308,0.54281265,-0.8722138,0.021443825,0.4886545,-0.8832698,0.029529288,0.46793428,-0.86061543,0.01335696,0.5090803,-0.8484831,0.005269102,0.5291962,-0.83582604,-0.0028189821,0.5489871,-0.83777386,0.0011155166,0.54601634,-0.8226536,-0.010906882,0.5684383,-0.8089757,-0.018994067,0.5875351,-0.9208383,-0.0724237,0.38316002,-0.9066717,-0.07864302,0.41444138,-0.9146538,-0.06421286,0.3991056,-0.92218333,-0.04976926,0.38353735,-0.92925346,-0.035315245,0.36775103,-0.90235287,-0.12380052,0.41283503,-0.9109067,-0.10943201,0.39783618,-0.8994961,-0.1462893,0.41171136,-0.90474516,-0.101247855,0.41374514,-0.9091234,-0.033323716,0.4151917,-0.92305344,-0.027089305,0.38371673,-0.9081314,-0.055997793,0.41492358,-0.90964717,-0.0106323585,0.41524574,-0.9165169,-0.018861411,0.39955094,-0.7695691,-0.33270025,0.54504484,-0.7880677,-0.3005731,0.53721976,-0.78472704,-0.32274362,0.5291881,-0.7729245,-0.3106077,0.55327266,-0.80279094,-0.29050523,0.52070475,-0.7657304,-0.35461164,0.53657013,-0.7757971,-0.28834596,0.5612445,-0.7781883,-0.2659275,0.5689513,-0.79328424,-0.25575355,0.55253077,-0.78009933,-0.24336398,0.5763844,-0.805615,-0.26810125,0.52830505,-0.7909198,-0.27823907,0.54500365,-0.78248864,-0.19785199,0.5903948,-0.7829716,-0.17492826,0.5969552,-0.7978997,-0.16454242,0.5798982,-0.7829837,-0.1519093,0.6032082,-0.781608,-0.10563576,0.6147602,-0.77187765,-0.07602934,0.6312088,-0.79029167,-0.13514882,0.5976402,-0.7884524,-0.22690299,0.5717149,-0.7965565,-0.21037702,0.56677973,-0.80978435,-0.22286762,0.54275167,-0.80440533,-0.19379072,0.5615846,-0.81401527,-0.25174755,0.5234522,-0.8342102,-0.004375249,0.55142915,-0.8150203,-0.015728703,0.5792189,-0.86576194,0.01662245,0.50017995,-0.8802198,0.027119128,0.47379062,-0.8504191,0.0061239377,0.5260701,-0.7992755,-0.025371019,0.60042894,-0.8171553,-0.014873954,0.57622564,-0.78059334,-0.03586529,0.6240094,-0.90517217,-0.051004488,0.42197376,-0.9061672,-0.05266903,0.41962725,-0.90285057,-0.071994714,0.42388394,-0.90708923,-0.029991703,0.4198686,-0.9085999,-0.008965654,0.41757146,-0.9006045,-0.1204918,0.41760424,-0.90383893,-0.09958949,0.41612154,-0.8986632,-0.14464025,0.41410577,-0.9020001,-0.09627183,0.42086512,-0.9029187,-0.023326827,0.42917803,-0.90315646,-0.04767486,0.4266563,-0.90213865,0.0010351696,0.43144494,-0.82821035,-0.23062174,0.5107653,-0.8229179,-0.2555981,0.50742066,-0.8237608,-0.20159508,0.5298845,-0.8113575,-0.18310127,0.5551332,-0.835089,-0.2200173,0.5042012,-0.8114378,-0.14303304,0.56666595,-0.7970261,-0.12435648,0.5910033,-0.78823346,-0.09480621,0.60802937,-0.775155,-0.07060173,0.62781376,-0.80033726,-0.11895465,0.5876309,-0.8147786,-0.17774844,0.5518526,-0.8215092,-0.16702694,0.5451831,-0.8305277,-0.19092241,0.5232326,-0.83847225,-0.21470515,0.5008652,-0.88593733,0.01756037,0.4634725,-0.87086487,0.008427834,0.49145025,-0.88269484,0.023022719,0.4693824,-0.867479,0.013890968,0.49727967,-0.8548378,-0.000705405,0.5188949,-0.83787614,-0.009838704,0.5457718,-0.8530823,0.0020262743,0.52177244,-0.88104886,0.025753707,0.4723236,-0.8200014,-0.018971063,0.57204705,-0.80123633,-0.028101841,0.5976877,-0.8181079,-0.016239688,0.57483536,-0.7816049,-0.037230276,0.6226618,-0.8521985,0.0033921693,0.5232075,-0.9029001,-0.04718975,0.4272523,-0.90298563,-0.047351453,0.4270537,-0.90252537,-0.07134871,0.42468494,-0.90273964,-0.023003023,0.4295719,-0.9020452,0.0011970557,0.43163994,-0.900459,-0.120170265,0.41801032,-0.9019232,-0.096110694,0.42106685,-0.8985948,-0.14448006,0.4143101,-0.90176904,-0.0957883,0.42147028,-0.90238076,-0.022355527,0.43035933,-0.901858,0.001520947,0.43203008,-0.9027289,-0.046866216,0.4276495,-0.90148264,0.00216861,0.4328099,-0.8420245,-0.14065868,0.5207782,-0.8284919,-0.15824988,0.537176,-0.8338339,-0.13303483,0.5357451,-0.838635,-0.10773337,0.5339334,-0.8442795,-0.17342924,0.50706446,-0.8253284,-0.12540299,0.55055165,-0.845384,-0.20600872,0.49283496,-0.80225563,-0.07708101,0.5919835,-0.80738765,-0.1101177,0.5796544,-0.7822692,-0.061725616,0.6198749,-0.8210554,-0.092418134,0.5633177,-0.81651175,-0.11776383,0.5651905,-0.8587748,-0.18856739,0.47639078,-0.8574476,-0.15588105,0.49039236,-0.8700129,-0.13828363,0.47323918,-0.8646738,-0.16347866,0.47498846,-0.8523225,-0.21353373,0.47744077,-0.85496354,-0.12302307,0.50388765,-0.8498968,-0.14827432,0.5056581,-0.87157226,-0.17106648,0.45945403,-0.8837579,-0.15351142,0.44204786,-0.8781405,-0.17864417,0.4437966,-0.872845,-0.065104105,0.48363528,-0.8882652,-0.055987436,0.45590603,-0.88056135,-0.07278205,0.46831027,-0.87243736,-0.08955604,0.4804506,-0.8727176,-0.040612895,0.48653316,-0.88795626,-0.080455676,0.45283613,-0.85648865,-0.074215226,0.51080257,-0.8559896,-0.09864882,0.50749415,-0.84776044,-0.09098712,0.52251655,-0.8648106,-0.05742219,0.49880388,-0.88725394,-0.006964671,0.46122873,-0.8880305,-0.031485524,0.45870522,-0.8802014,-0.023792211,0.47400364,-0.8938679,0.009864842,0.44822195,-0.8955409,-0.03917709,0.44325128,-0.88710254,-0.10487564,0.44949982,-0.88570327,-0.12923227,0.44590205,-0.8787618,-0.12159679,0.46151048,-0.8950265,-0.088124655,0.43722022,-0.89231527,-0.13686022,0.4301661,-0.87149364,-0.113954104,0.47698355,-0.8639018,-0.10630455,0.49231392,-0.82085586,-0.043484487,0.5694776,-0.83928454,-0.05885683,0.54049736,-0.8212079,-0.06797175,0.5665664,-0.81174845,-0.060291346,0.58088666,-0.8388366,-0.0343581,0.54329795,-0.8295681,-0.026665311,0.55776846,-0.83921784,-0.083320156,0.5373744,-0.83036566,-0.07564814,0.55205995,-0.8019919,-0.052607246,0.5950138,-0.7919425,-0.04492015,0.60894114,-0.87205696,-0.01609737,0.48913962,-0.85591096,-0.025228847,0.5165075,-0.86360115,-0.008401697,0.50410575,-0.8564619,-0.049736995,0.5138086,-0.8478026,-0.042048734,0.5286423,-0.7618564,-0.004000339,0.6477337,-0.76882064,-0.0020317263,0.6394613,-0.7711949,-0.002747576,0.6365932,-0.7732287,-0.0047621983,0.63410944,-0.77375495,-0.0063608894,0.63345313,-0.773989,-0.008206796,0.6331458,-0.77384126,-0.009224208,0.6333124,-0.7740203,-0.010182129,0.63307893,-0.77457964,-0.011264368,0.6323761,-0.77467823,-0.012039772,0.632241,-0.7748044,-0.01581643,0.63200307,-0.7746398,-0.017633045,0.63215685,-0.7738096,-0.018808968,0.63313895,-0.77251965,-0.018725418,0.63471466,-0.77253324,-0.020025628,0.6346586,-0.7733392,-0.01973088,0.6336854,-0.77401644,-0.019664375,0.6328601,-0.77431905,-0.021644495,0.6324251,-0.77388185,-0.023934625,0.63287765,-0.77327514,-0.026456412,0.6335184,-0.7726082,-0.02857932,0.63423955,-0.77241707,-0.029627085,0.6344242,-0.77133346,-0.031201228,0.635666,-0.77061576,-0.03142273,0.6365249,-0.76946634,-0.030642524,0.6379519,-0.76691204,-0.030501088,0.64102703,-0.7664423,-0.029732777,0.6416247,-0.7658156,-0.029814517,0.64236873,-0.7646866,-0.030765133,0.6436676,-0.76348096,-0.03124043,0.6450743,-0.76286054,-0.030632276,0.645837,-0.7617596,-0.030330699,0.6471494,-0.7610613,-0.029882675,0.64799136,-0.76038903,-0.02845325,0.6488443,-0.7602166,-0.026379786,0.64913386,-0.75906634,-0.027146505,0.6504471,-0.75835025,-0.027838252,0.6512526,-0.7570874,-0.027913207,0.6527171,-0.7567694,-0.027206087,0.6531156,-0.756532,-0.025914554,0.653443,-0.7564537,-0.024652055,0.65358245,-0.7554426,-0.026265625,0.6546881,-0.7548863,-0.02642233,0.65532315,-0.7542884,-0.026258832,0.65601796,-0.75364274,-0.025868554,0.6567752,-0.75257945,-0.024258424,0.6580545,-0.75225973,-0.023157716,0.65845966,-0.75214034,-0.020477219,0.6586847,-0.7514459,-0.019751262,0.659499,-0.7511769,-0.01931337,0.6598184,-0.7502775,-0.0172241,0.6608986,-0.74968463,-0.015582928,0.6616118,-0.74944603,-0.014792185,0.6619002,-0.7493414,-0.013979262,0.66203636,-0.74967253,-0.01194608,0.66170114,-0.749171,-0.012067068,0.6622667,-0.7488759,-0.011605165,0.6626086,-0.7481006,-0.007705656,0.66354066,-0.74754846,-0.006158118,0.66417867,-0.74770314,-0.0051900353,0.66401285,-0.7483049,-0.004745152,0.663338,-0.74912715,-0.004332692,0.6624121,-0.7499668,-0.0040428964,0.6614631,-0.75225514,-0.003761684,0.6588611,-0.75604457,-0.002854983,0.65451396,-0.75716424,-0.002769749,0.65321875,-0.75829333,-0.0029299655,0.6519069,-0.7592987,-0.003746306,0.65073144,-0.75256145,-0.022278417,0.6581451,-0.74850625,-0.00933328,0.66306204,-0.7607986,-0.0040769903,0.6489753,-0.7723649,-0.019885942,0.6348676,-0.7526986,-0.021406014,0.65801716,-0.77233505,-0.01925199,0.63492364,-0.63976216,-0.39344993,0.6602284,-0.64025325,-0.39300966,0.6600145,-0.6411073,-0.3925504,0.6594586,-0.64158386,-0.39206278,0.6592851,-0.64188427,-0.39192164,0.65907663,-0.64204246,-0.39259735,0.65852016,-0.64276266,-0.3934939,0.6572814,-0.6421094,-0.3941393,0.657533,-0.6410689,-0.39379472,0.6587537,-0.64044,-0.3934061,0.65959704,-0.6718349,-0.44485044,0.592238,-0.67171323,-0.44465956,0.59251946,-0.67167115,-0.44431764,0.5928235,-0.67167455,-0.44327757,0.59359777,-0.6718737,-0.44179955,0.5944736,-0.67259043,-0.44104093,0.5942264,-0.6732046,-0.4429093,0.5921377,-0.64952874,-0.40439197,0.6438785,-0.64947397,-0.4039507,0.64421064,-0.6498674,-0.4032677,0.64424175,-0.6502814,-0.40277797,0.6441304,-0.6507414,-0.40238786,0.64390963,-0.6515706,-0.40507144,0.6413836,-0.65094036,-0.40569934,0.64162666,-0.64980555,-0.4053769,0.64297926,-0.64920443,-0.40580067,0.6433191,-0.64945936,-0.40496865,0.6435859,-0.7011387,-0.05299128,0.7110531,-0.6999785,-0.05128414,0.7123202,-0.69984853,-0.0490575,0.7126046,-0.6999207,-0.048671007,0.71256024,-0.6998903,-0.047412895,0.712675,-0.70014024,-0.047564477,0.71241933,-0.70093995,-0.04858766,0.71156335,-0.7010624,-0.049644843,0.7113698,-0.7008085,-0.051010083,0.7115233,-0.6100257,-0.22696847,0.75917983,-0.6095601,-0.22660159,0.7596632,-0.6079234,-0.22482486,0.76150054,-0.6079608,-0.22448276,0.76157147,-0.60826856,-0.22365883,0.7615681,-0.60908705,-0.22291283,0.7611326,-0.60907835,-0.22452423,0.7606658,-0.61023545,-0.22588769,0.75933355,-0.6110298,-0.23399398,0.7562337,-0.61072737,-0.23299457,0.75678635,-0.61095876,-0.23176624,0.7569768,-0.6119295,-0.23172136,0.75620604,-0.61223507,-0.2320116,0.75586957,-0.6123638,-0.23252213,0.7556084,-0.6118834,-0.2331753,0.7557962,-0.6115762,-0.23384482,0.7558381,-0.7062531,-0.023839286,0.7075579,-0.705476,-0.02299921,0.7083605,-0.70555145,-0.022283541,0.7083083,-0.7066705,-0.02211657,0.707197,-0.70685697,-0.023517152,0.70696545,-0.70705056,-0.023467815,0.70677346,-0.7071612,-0.02395,0.7066467,-0.70650196,-0.02427201,0.70729476,-0.762632,0.003769226,0.64682156,-0.76309144,0.004680334,0.6462736,-0.76467454,0.0053151157,0.64439476,-0.76747227,0.003953403,0.64106995,-0.7690883,0.004044597,0.6391297,-0.7699002,0.0023469466,0.63816005,-0.769839,0.0007566968,0.63823766,-0.7692388,0.00049848953,0.6389612,-0.76731205,0.0005760947,0.6412736,-0.7660723,-0.00051133236,0.64275426,-0.7651134,-0.00040487846,0.6438954,-0.7642348,0.00012011925,0.6449381,-0.77007926,0.033030774,0.63709253,-0.7689478,0.033827126,0.638416,-0.76885223,0.03454339,0.63849276,-0.76932967,0.03737183,0.6377579,-0.7695531,0.037593283,0.6374753,-0.77017343,0.03771586,0.63671845,-0.77099246,0.037142746,0.63576025,-0.77124023,0.035414755,0.63555825,-0.7707084,0.033338286,0.6363153,-0.77632385,-0.005713237,0.6303083,-0.77331704,-0.0022975623,0.6340154,-0.77329236,-0.0018476674,0.634047,-0.77347475,-0.001012488,0.6338262,-0.77456117,-0.00071339204,0.63249856,-0.77540934,-0.00087611267,0.6314583,-0.7770905,-0.0018374155,0.6293862,-0.777425,-0.0030084047,0.6289685,-0.7773873,-0.00328783,0.6290136,-0.7775581,-0.003942404,0.6287988,-0.7773463,-0.004591731,0.62905616,-0.7627657,-0.0025089197,0.6466701,-0.75976825,-0.0019618697,0.65019107,-0.7590535,-0.0009681422,0.6510275,-0.7589568,0.000018672146,0.651141,-0.7592765,0.0009986915,0.65076745,-0.7604444,0.0014606272,0.6494013,-0.76156265,0.0010941782,0.64809036,-0.7628072,0.00026412407,0.6466259,-0.763826,-0.0009050805,0.64542156,-0.7641337,-0.0016388131,0.6450557,-0.7708014,0.002430512,0.6370707,-0.76975137,0.004520953,0.63832784,-0.76985645,0.0066598915,0.6381824,-0.76992786,0.010153076,0.63805014,-0.7701691,0.010312331,0.6377564,-0.7704388,0.010147115,0.6374332,-0.7707498,0.009743135,0.6370634,-0.77190846,0.004309597,0.6357191,-0.7728444,0.0035740817,0.63458556,-0.7729982,0.00094933895,0.6344075,-0.77100194,-0.00013379654,0.63683283,-0.7707821,0.0074167326,0.63705575,-0.771074,0.0057055205,0.63671994,-0.7689531,0.006268774,0.6392744,-0.7677393,0.0068593244,0.6407256,-0.76646155,0.009124466,0.64222544,-0.766416,0.010381469,0.6422606,-0.76665664,0.011135543,0.6419608,-0.76710415,0.010908105,0.6414298,-0.7672656,0.010554432,0.6412426,-0.76881474,0.010217803,0.63938993,-0.7691641,0.00901456,0.63898766,-0.7691759,0.006821059,0.6390008,-0.7870951,-0.02535064,0.61631054,-0.78596157,-0.025021726,0.61776876,-0.7838869,-0.023418356,0.6204618,-0.7820545,-0.02113678,0.62285155,-0.78041613,-0.017868208,0.6250052,-0.78004783,-0.01783245,0.6254657,-0.7788557,-0.011635919,0.6270952,-0.7798934,-0.009449266,0.625841,-0.78174865,-0.009876968,0.6235155,-0.78305787,-0.011337677,0.6218456,-0.78445387,-0.01492342,0.6200076,-0.7844193,-0.01895545,0.6199411,-0.7857059,-0.020986728,0.61824405,-0.66299564,-0.46657518,0.5854438,-0.6625686,-0.46587703,0.5864822,-0.663045,-0.46495062,0.5866791,-0.6630032,-0.46277487,0.5884438,-0.66337025,-0.4609971,0.5894248,-0.6640622,-0.4601938,0.58927345,-0.6643537,-0.46076268,0.58849967,-0.664412,-0.4616791,0.58771515,-0.664312,-0.46290633,0.58686215,-0.66746026,-0.5559939,0.49534592,-0.71596867,-0.53827816,0.4445734,-0.71418977,-0.54108053,0.4440324,-0.71272767,-0.54308146,0.44393903,-0.71190137,-0.54652745,0.44102633,-0.71237224,-0.5466572,0.44010428,-0.7125592,-0.54730505,0.4389949,-0.7118486,-0.5484399,0.43873125,-0.7102564,-0.5520664,0.43675917,-0.7087297,-0.5551225,0.4353634,-0.70684236,-0.5579248,0.43484905,-0.70374036,-0.5607703,0.436218,-0.6990706,-0.56482494,0.43848956,-0.69836867,-0.56565315,0.4385404,-0.69778246,-0.5660803,0.4389223,-0.6929002,-0.56572056,0.44704536,-0.68856806,-0.5689446,0.4496399,-0.68465674,-0.57036096,0.453799,-0.6833495,-0.571588,0.45422533,-0.68192047,-0.572164,0.45564553,-0.6814371,-0.57223827,0.45627487,-0.68081355,-0.5722592,0.45717868,-0.67561597,-0.57082283,0.46658802,-0.67381096,-0.57208574,0.46765023,-0.6726491,-0.57207596,0.46933174,-0.67075765,-0.57261556,0.47137624,-0.66793185,-0.569749,0.4788038,-0.667683,-0.5688044,0.48027176,-0.6667831,-0.5688591,0.4814557,-0.6666827,-0.5666507,0.48419112,-0.66586494,-0.5646843,0.48760185,-0.6665423,-0.5627979,0.48885566,-0.6665873,-0.5594458,0.4926274,-0.6673699,-0.5570107,0.4943243,-0.70021695,-0.56362593,0.4382032,-0.71189904,-0.5455851,0.4421953,-0.69582975,-0.5656586,0.44255084,-0.678333,-0.5703651,0.4631934,-0.67957294,-0.5708704,0.46074685,-0.71221393,-0.5441617,0.4434404,-0.68143624,-0.5601302,0.47106138,-0.68525666,-0.5590784,0.466749,-0.71293265,-0.54032344,0.44696486,-0.68539524,-0.55892104,0.466734,-0.70545125,-0.5401507,0.45888522,-0.6953924,-0.545825,0.4674447,-0.96798974,-0.0006707151,0.25098875,-0.96865773,0.0010976352,0.24839674,-0.9693442,0.0015577826,0.24570198,-0.9701804,0.0043240213,0.2423455,-0.97039163,0.005464364,0.24147505,-0.9705642,0.0060310755,0.24076714,-0.97139895,0.0076689725,0.23732959,-0.97156495,0.0078273965,0.2366438,-0.97188824,0.007068174,0.23533663,-0.9719946,0.006612209,0.23491004,-0.9727796,0.004205648,0.23169442,-0.9730819,0.004680334,0.23041207,-0.97328424,0.004749356,0.22955443,-0.97436666,0.0051702787,0.22490656,-0.9747974,0.00619725,0.22300573,-0.9749987,0.0060693407,0.22212777,-0.9759765,0.0074149445,0.21774964,-0.97611356,0.011109199,0.21697696,-0.9761627,0.011364767,0.21674256,-0.9767763,0.012629368,0.21388924,-0.97685474,0.013651976,0.21346761,-0.9769518,0.014622481,0.21295847,-0.97910243,0.01825668,0.2025466,-0.97975034,0.020921925,0.19912729,-0.9800002,0.021582196,0.19782265,-0.98030585,0.022398463,0.19621111,-0.98046565,0.023711322,0.19525607,-0.9807454,0.025037013,0.1936795,-0.9808404,0.02539822,0.19315031,-0.9807958,0.02261656,0.19372167,-0.98219955,0.019277526,0.18684846,-0.9829763,0.018500421,0.18279834,-0.98347163,0.016948799,0.18026693,-0.9838695,0.017099576,0.1780685,-0.9840553,0.016095852,0.17713308,-0.98440295,0.015012848,0.17528658,-0.98481196,0.014565386,0.17301208,-0.98498166,0.013696318,0.17211449,-0.9849395,0.010337125,0.17258982,-0.9848582,0.007158413,0.17321396,-0.98551565,-0.0019737906,0.16957258,-0.9857619,-0.0028942027,0.16812241,-0.9862141,-0.006427407,0.16534925,-0.9861656,-0.007610172,0.1655883,-0.98590046,-0.010192261,0.16702229,-0.98581606,-0.010909862,0.16747466,-0.9861055,-0.01021789,0.16580546,-0.98622996,-0.01193416,0.16494846,-0.9865182,-0.015685197,0.16289811,-0.9871087,-0.017011104,0.15914468,-0.9872454,-0.01882935,0.15808876,-0.9868525,-0.024142586,0.15981016,-0.9868331,-0.028487328,0.15921336,-0.98653364,-0.03181116,0.16043505,-0.9866349,-0.037362505,0.15860508,-0.9868657,-0.038200542,0.15696114,-0.9868043,-0.039006036,0.15714882,-0.9867281,-0.03959364,0.15747996,-0.98641545,-0.04098678,0.15907443,-0.9859497,-0.041821245,0.16172297,-0.98510593,-0.04581592,0.1657323,-0.9848649,-0.046548035,0.1669564,-0.98455876,-0.047223922,0.16856407,-0.984506,-0.046490163,0.16907574,-0.98451346,-0.04589594,0.1691946,-0.9842316,-0.044114973,0.17129539,-0.9841109,-0.04171393,0.17258549,-0.9839969,-0.041070156,0.17338757,-0.9839186,-0.04460873,0.17295718,-0.9837773,-0.04499184,0.17366096,-0.9836076,-0.044465702,0.17475411,-0.98356223,-0.042287774,0.17554772,-0.9836286,-0.036827743,0.17640468,-0.98361367,-0.03782745,0.17627567,-0.9834324,-0.041117918,0.1765503,-0.9829814,-0.04499863,0.17810842,-0.9831099,-0.048447993,0.1764872,-0.9831375,-0.053906925,0.17474145,-0.98332566,-0.05631165,0.17291507,-0.98350245,-0.057111446,0.17164263,-0.9836305,-0.05798773,0.17061214,-0.98400325,-0.05886742,0.16814345,-0.97202104,0.005304149,0.23483402,-0.9733271,0.004377784,0.22937985,-0.9740448,0.0046862946,0.22630687,-0.97632974,0.011524974,0.21598013,-0.97742325,0.014405185,0.21079895,-0.9810741,0.021051478,0.19248511,-0.9852094,-0.000105663144,0.17135485,-0.98559374,-0.010829758,0.16878276,-0.9869434,-0.022440262,0.15949614,-0.9864052,-0.03623662,0.16028647,-0.9831016,-0.04335205,0.17785338,-0.96978265,0.0026349553,0.24395628,-0.9720628,0.004559219,0.2346766,-0.9734415,0.0042175683,0.2288972,-0.9754871,0.006290112,0.21996658,-0.9766065,0.012033724,0.21469732,-0.9849436,0.002711726,0.17285438,-0.9863324,-0.014798979,0.16410163,-0.9837928,-0.03744089,0.175357,-0.9836849,-0.03607484,0.17624608,-0.9723398,0.004109327,0.23353454,-0.9786585,0.016903624,0.20479718,-0.9864635,-0.03375823,0.16046855,-0.9724432,-0.03749795,0.23010464,-0.9758798,0.006874702,0.21820049,-0.98353034,0.005111509,0.18067095,-0.9723633,-0.034409806,0.2309234,-0.9781614,0.01568511,0.20725423,-0.98435026,-0.0015459491,0.17621632,-0.9832014,-0.05508463,0.17401376,-0.97229666,-0.030435435,0.23176067,-0.9841185,-0.010390019,0.17720805,-0.9724369,-0.031005343,0.23109578,-0.9816122,-0.017478455,0.1900843,-0.9726624,-0.030153515,0.23025765,-0.98143476,-0.01777071,0.19097127,-0.9754455,-0.024478657,0.21887639,-0.98079437,-0.018572498,0.19415826,-0.98357224,-0.030198913,0.17797098,-0.9776179,-0.0069435714,0.21027386,-0.97368664,0.0043240213,0.22785,-0.97556436,-0.024425386,0.2183521,-0.980637,-0.018753545,0.19493435,-0.9775339,-0.007034168,0.21066086,-0.983499,-0.030289352,0.17835997,-0.9773655,-0.0072152424,0.21143474,-0.97625595,-0.027482074,0.21486965,-0.9792257,-0.01587865,0.20215096,-0.9801698,-0.03177875,0.19559489,-0.9839002,-0.052540224,0.17082131,-0.98387784,-0.051867966,0.17115515,-0.9838746,-0.04964996,0.17183025,-0.9838182,-0.049438864,0.17221358,-0.98365563,-0.049190257,0.17321075,-0.9834171,-0.04755257,0.1750133,-0.9837273,-0.046650205,0.17350607,-0.9839831,-0.046563398,0.17207296,-0.9841554,-0.047041856,0.17095374,-0.98434067,-0.048032675,0.16960624,-0.9843688,-0.0490575,0.16914895,-0.98431385,-0.0514951,0.16874401,-0.9842768,-0.052264515,0.16872376,-0.9841852,-0.0524807,0.16918999,-0.9812807,0.021733914,0.19135265,-0.9810891,0.021863462,0.1923179,-0.9810157,0.023730153,0.1924711,-0.9810988,0.02354102,0.19207071,-0.9813495,0.022568889,0.19090259,-0.9998861,-0.013496987,-0.0067556826,-0.99989223,-0.013466233,-0.005843954,-0.99989754,-0.013215797,-0.0055047395,-0.99990577,-0.012949863,-0.0045564207,-0.99992824,-0.011497884,-0.0033634242,-0.9999495,-0.009508868,-0.00323404,-0.9999532,-0.008459034,-0.004701473,-0.9999256,-0.009029905,-0.0081978785,-0.99990547,-0.010148037,-0.009279161,-0.99988556,-0.011806257,-0.009461361,-0.9998291,-0.016620869,0.008086266,-0.99982214,-0.015899986,0.010140707,-0.99983335,-0.014417312,0.011197556,-0.99983025,-0.013716788,0.012305298,-0.9998356,-0.012713014,0.012924892,-0.99984264,-0.0122971255,0.012784434,-0.9998503,-0.012039772,0.01242833,-0.9998588,-0.011869315,0.011894852,-0.9998699,-0.012605615,0.010067045,-0.99986297,-0.013846356,0.0090759145,-0.9998641,-0.0144309,0.00796723,-0.9998564,-0.015507954,0.006830489,-0.9998489,-0.015942538,0.0069343774,-0.99983996,-0.01629702,0.007376534,-0.99961036,-0.0083465045,-0.026636023,-0.9996579,-0.008043127,-0.024884589,-0.9996745,-0.0073460117,-0.024430685,-0.9996859,-0.0056280037,-0.024420708,-0.9996653,-0.004462152,-0.025481476,-0.9995747,-0.004964971,-0.028735662,-0.9995686,-0.005426901,-0.028865952,-0.9995638,-0.0068211462,-0.02873368,-0.99957484,-0.0077483314,-0.028108265,-0.99969286,-0.023420025,-0.008103129,-0.9996992,-0.023384271,-0.0073967967,-0.9997238,-0.022552768,-0.0066157393,-0.9997331,-0.022029689,-0.006957379,-0.99973744,-0.021637702,-0.0075377175,-0.9997383,-0.02130888,-0.0083267335,-0.99970186,-0.022672065,-0.009065125,-0.9997534,0.0004388849,-0.022201663,-0.99973905,0.0015953336,-0.022787878,-0.9997153,0.0021961473,-0.02375819,-0.9996598,0.0018356591,-0.026020095,-0.9996525,0.0010865488,-0.02633711,-0.9996117,0.00003655354,-0.027866257,-0.9996149,-0.00025825104,-0.02774876,-0.9996337,-0.0008147199,-0.027049256,-0.99967146,-0.00017981132,-0.02563081,-0.999689,-0.00040821632,-0.024935683,-0.9997019,-0.0050127734,-0.023894282,-0.99974096,-0.0065211034,-0.021805879,-0.9997442,-0.008673722,-0.020889644,-0.999761,-0.009757766,-0.019562015,-0.9997414,-0.010870644,-0.019975938,-0.9996529,-0.0123260915,-0.023280248,-0.99957883,-0.013953754,-0.025446955,-0.9995466,-0.01502569,-0.026093936,-0.9995346,-0.016136823,-0.025886513,-0.9995421,-0.017394543,-0.024760688,-0.999556,-0.017749017,-0.02393169,-0.99964684,-0.017795024,-0.019736217,-0.9997404,-0.016414545,-0.015801428,-0.9998165,-0.013125444,-0.013955054,-0.99981797,-0.011724485,-0.015052666,-0.99980664,-0.010045761,-0.01690107,-0.99982035,-0.009166275,-0.016590254,-0.9998286,-0.007276157,-0.017025076,-0.9997817,-0.0038929326,-0.02052736,-0.9997768,-0.0006860931,-0.021117944,-0.9998059,-0.010390019,-0.016734866,-0.99992114,-0.0063575516,-0.010828585,-0.9999328,-0.0058291066,-0.010016505,-0.9999416,-0.004859353,-0.009657044,-0.9999266,-0.00331346,-0.011650278,-0.9999033,-0.0028003855,-0.013619588,-0.9998919,-0.0033543485,-0.014317464,-0.9998741,-0.004736569,-0.015144716,-0.9998838,-0.0057489993,-0.014119563,-0.9273286,0.205346,0.31288135,-0.9270914,0.20555367,0.31344736,-0.9267046,0.20651686,0.31395745,-0.9254578,0.20870262,0.31618205,-0.9251475,0.21071339,0.31575635,-0.9251358,0.21363229,0.31382325,-0.9260541,0.21528544,0.30996132,-0.92660487,0.21532117,0.30828607,-0.92728424,0.21507566,0.30640876,-0.9287664,0.21318518,0.30322433,-0.92897016,0.21251078,0.30307359,-0.92928565,0.2119777,0.3024791,-0.9297326,0.21198027,0.3011006,-0.9303308,0.21112984,0.2998478,-0.93328434,0.20452516,0.29521155,-0.9349933,0.202995,0.29082736,-0.93933445,0.19587342,0.2815748,-0.9417373,0.19552995,0.27367663,-0.9421703,0.19609821,0.27177298,-0.9427719,0.19664139,0.26928282,-0.94323,0.19630289,0.2679224,-0.9436786,0.19535938,0.26703063,-0.94428945,0.19261305,0.26686636,-0.945157,0.18999067,0.26567248,-0.9458291,0.18761647,0.26496673,-0.94561577,0.19024675,0.26385042,-0.94532806,0.19037478,0.26478723,-0.945155,0.19075207,0.2651332,-0.94575113,0.19062158,0.2630935,-0.947132,0.19268838,0.25653893,-0.9476449,0.1917952,0.2553113,-0.94913715,0.18858825,0.25213712,-0.9499609,0.18709409,0.25014022,-0.95027995,0.18613294,0.2496449,-0.95136034,0.18413813,0.2469954,-0.9518196,0.18270974,0.24628532,-0.95269257,0.17927834,0.24543051,-0.9535884,0.1770218,0.24358247,-0.95390546,0.17611256,0.2429994,-0.95353854,0.17660657,0.24407884,-0.9529881,0.17771035,0.24542342,-0.95299685,0.17717363,0.24577738,-0.95347905,0.1758105,0.24488457,-0.9538582,0.17352307,0.24503917,-0.9545092,0.17079894,0.24441741,-0.95499223,0.16900179,0.24377905,-0.9550068,0.1677635,0.2445761,-0.9561966,0.163595,0.24274409,-0.95678425,0.16385807,0.24023837,-0.95747465,0.16273655,0.23824169,-0.9581978,0.16101164,0.23650007,-0.959522,0.15624669,0.23431695,-0.9625376,0.15023719,0.22572134,-0.96292734,0.14987817,0.22429307,-0.9631716,0.14908198,0.22377457,-0.9631368,0.14802936,0.22462137,-0.9630468,0.14719991,0.22555068,-0.9644659,0.13975033,0.22422166,-0.9642272,0.14025658,0.22493105,-0.96409315,0.14073661,0.22520569,-0.9641567,0.14138465,0.22452658,-0.96428686,0.14171022,0.22376087,-0.9642559,0.1434985,0.22275281,-0.9644188,0.14609312,0.22034772,-0.9646889,0.14770065,0.21808206,-0.9646394,0.15016894,0.21661015,-0.96977454,0.12118327,0.21178271,-0.969831,0.1196105,0.21241769,-0.9697344,0.119050436,0.21317178,-0.96973956,0.11655133,0.21452492,-0.96941787,0.11650314,0.21600018,-0.97022736,0.10924375,0.21615882,-0.9703256,0.109485246,0.21559496,-0.97051334,0.10759604,0.21570091,-0.97084606,0.09889654,0.21835142,-0.97186977,0.09649042,0.21484585,-0.9715663,0.0943891,0.21713948,-0.97172177,0.09089646,0.21793255,-0.97196233,0.08848686,0.21785167,-0.97220874,0.08434784,0.21839333,-0.9721715,0.08231645,0.21933207,-0.9724529,0.080091864,0.21890792,-0.9726688,0.078024,0.21869524,-0.972866,0.07668929,0.21829014,-0.97316265,0.075807214,0.21727335,-0.9733422,0.074996516,0.2167501,-0.9736619,0.07421811,0.21557876,-0.9737361,0.073460825,0.21550304,-0.973312,0.073251694,0.2174809,-0.97350854,0.072036356,0.21700655,-0.97357064,0.0708089,0.21713187,-0.9734457,0.06879407,0.21833661,-0.97300404,0.0707749,0.219668,-0.9729114,0.07046965,0.22017615,-0.9731435,0.0678971,0.21995847,-0.9729751,0.06744811,0.22084004,-0.9728057,0.06735796,0.22161241,-0.97260123,0.06812069,0.22227563,-0.9734056,0.0625353,0.22038826,-0.9738346,0.060608726,0.21902709,-0.9740851,0.058410477,0.21850964,-0.9743223,0.058292303,0.21748082,-0.9746365,0.05641023,0.21656756,-0.97488767,0.05512882,0.21576568,-0.97511196,0.053660076,0.2151215,-0.9754075,0.053227846,0.21388564,-0.9756471,0.053032022,0.21283866,-0.9757034,0.052467875,0.21272033,-0.97570103,0.05022434,0.21327208,-0.9761735,0.048628412,0.21147244,-0.9763226,0.047915064,0.21094649,-0.97636765,0.047391612,0.21085608,-0.97658366,0.047557604,0.20981584,-0.9767015,0.047085945,0.20937276,-0.9771181,0.04482229,0.20792086,-0.97729355,0.044370223,0.20719221,-0.9774508,0.043778565,0.20657544,-0.9776584,0.0434133,0.20566814,-0.97826934,0.043802384,0.20265847,-0.97847134,0.042931426,0.20186825,-0.9787144,0.043331597,0.20060045,-0.97887653,0.04309745,0.1998584,-0.9791686,0.04228852,0.19859631,-0.97941345,0.041119497,0.19763203,-0.97953546,0.04025011,0.19720583,-0.9797385,0.035880566,0.19704084,-0.9797217,0.030953307,0.19795752,-0.9804207,0.032260735,0.19425361,-0.98102695,0.030576782,0.19144472,-0.98131764,0.028334714,0.19029671,-0.9809068,0.026596941,0.19265121,-0.9195577,0.022510968,0.3923098,-0.91945666,0.023703696,0.3924761,-0.91973644,0.02544422,0.39171082,-0.9198777,0.027297162,0.39125428,-0.9200197,0.027935283,0.39087504,-0.9200282,0.029320404,0.39075375,-0.9203378,0.03181536,0.38982838,-0.9205863,0.033858698,0.3890687,-0.9208376,0.034896873,0.38838163,-0.9206893,0.035781804,0.38865265,-0.9207793,0.03666576,0.38835704,-0.9212392,0.03970433,0.38696507,-0.92108303,0.04070309,0.3872329,-0.92113435,0.0417036,0.38700423,-0.9213905,0.042389043,0.3863194,-0.9217623,0.04312556,0.3853498,-0.9222326,0.044664018,0.38404706,-0.92280567,0.04612402,0.38249475,-0.9231046,0.046701204,0.38170263,-0.9233147,0.046931025,0.38116598,-0.9234443,0.04831514,0.38067883,-0.9235715,0.048738193,0.38031605,-0.92388815,0.048853092,0.37953144,-0.9245177,0.049430203,0.37792027,-0.9251589,0.048738193,0.37643793,-0.92254937,0.05559933,0.3818525,-0.9213474,0.057958726,0.3843953,-0.9212123,0.0583067,0.38466626,-0.921088,0.058852933,0.38488078,-0.9209739,0.059582762,0.3850415,-0.9211732,0.06041727,0.38443422,-0.9219543,0.06437754,0.3819108,-0.92225885,0.06512163,0.38104835,-0.92285246,0.067392804,0.3792117,-0.9230708,0.07126278,0.37797076,-0.92327565,0.07320759,0.37709767,-0.9232749,0.07469826,0.37680727,-0.9231355,0.076383345,0.37681085,-0.9231671,0.077677436,0.37646866,-0.9231657,0.081337936,0.37569845,-0.9225381,0.085952625,0.37621215,-0.92218584,0.089459546,0.37625828,-0.9217227,0.093682356,0.3763653,-0.92099565,0.094933696,0.37782875,-0.92047787,0.096867025,0.37859908,-0.91959465,0.10163106,0.3794954,-0.9187621,0.10331291,0.38105464,-0.9183719,0.10497169,0.38154143,-0.9184257,0.1066072,0.38095823,-0.91839033,0.107657075,0.38074812,-0.91885394,0.10872449,0.37932357,-0.9198275,0.10947339,0.37673968,-0.9206845,0.10955895,0.37461555,-0.9265471,0.10724948,0.36056626,-0.9277321,0.107967936,0.35729,-0.92870545,0.10772818,0.354825,-0.92995256,0.10625895,0.3519904,-0.93014854,0.106916554,0.35127276,-0.93041354,0.10709695,0.3505151,-0.93210465,0.11310577,0.34407556,-0.9327054,0.11667494,0.3412442,-0.9333736,0.12079419,0.33796826,-0.93354386,0.12106565,0.33740017,-0.93389356,0.12103867,0.3364408,-0.93543106,0.12199285,0.3317928,-0.93573904,0.12257129,0.33070937,-0.9363414,0.123302884,0.32872653,-0.93679667,0.12342887,0.32737955,-0.9372413,0.12321322,0.3261858,-0.9397223,0.12161303,0.31958142,-0.94096583,0.12232603,0.3156258,-0.94185084,0.12243937,0.31293055,-0.94294035,0.12197001,0.30981737,-0.9434108,0.12170178,0.30848774,-0.9442882,0.12619384,0.3039654,-0.94430363,0.1282809,0.30304247,-0.9447193,0.12870094,0.30156496,-0.9448258,0.13498856,0.29846647,-0.94466025,0.13588609,0.2985832,-0.944233,0.13858731,0.29869333,-0.94376016,0.13999751,0.29952884,-0.9434894,0.14068185,0.30006078,-0.94336975,0.14181313,0.2999041,-0.9431873,0.1441327,0.29937178,-0.9430953,0.14577186,0.29886755,-0.9435291,0.15381867,0.2934153,-0.9432129,0.15831289,0.29203832,-0.94342726,0.1587638,0.29109967,-0.94397455,0.1587638,0.28931996,-0.9439431,0.16056925,0.2884252,-0.9441373,0.1609074,0.28759977,-0.9446281,0.16027403,0.2863389,-0.9449864,0.15978014,0.2854313,-0.9457079,0.1603438,0.2827125,-0.9451515,0.16198303,0.28363717,-0.9444662,0.16407669,0.28471476,-0.9437466,0.16598798,0.28599,-0.9430438,0.16794248,0.28716484,-0.9424139,0.17002296,0.28800723,-0.94152594,0.17415923,0.28843957,-0.93965983,0.18208548,0.2896277,-0.9382754,0.18613294,0.29153696,-0.93768674,0.18799572,0.29223484,-0.93663853,0.19041738,0.29402277,-0.9361156,0.19173236,0.29483253,-0.93555176,0.19276606,0.2959463,-0.93426114,0.19417328,0.2990866,-0.93168986,0.20111123,0.30250323,-0.9311876,0.2022131,0.30331415,-0.9297132,0.20324619,0.30712262,-0.9285662,0.20405301,0.31004384,-0.927661,0.20489809,0.3121889,-0.93093294,0.2089394,0.29951316,-0.9320947,0.20602064,0.29791757,-0.9619527,0.15116982,0.22758466,-0.96985584,0.12424663,0.20962453,-0.97006315,0.10930051,0.21686606,-0.97038054,0.100712046,0.21958771,-0.97216004,0.08341119,0.21896912,-0.97239834,0.06824652,0.22312327,-0.97687167,0.04587287,0.20884767,-0.9795475,0.033567395,0.19839332,-0.92098516,0.037386242,0.38779968,-0.9225635,0.06573043,0.38020536,-0.92337066,0.078578874,0.37578186,-0.9221196,0.09185718,0.37584257,-0.9201669,0.09948253,0.37867668,-0.92947227,0.10653015,0.35317498,-0.9308835,0.10668009,0.34939274,-0.93501765,0.12139472,0.33317474,-0.9385569,0.12177289,0.32292774,-0.9442202,0.12354729,0.30526093,-0.9434,0.14763157,0.29698706,-0.94377947,0.15001136,0.29457942,-0.9411816,0.19545805,0.27563265,-0.9461002,0.18968613,0.26251405,-0.95560586,0.16419439,0.2446584,-0.9646571,0.13870974,0.22404517,-0.9703689,0.10444792,0.2178871,-0.9716052,0.0927872,0.21765509,-0.9732691,0.07406939,0.21739556,-0.9756701,0.05092999,0.21324618,-0.9249196,0.050467815,0.37679812,-0.92487186,0.10724522,0.36484304,-0.93155175,0.11010695,0.34653676,-0.94519126,0.12905665,0.29992986,-0.9437274,0.1585384,0.2902484,-0.94576854,0.15932837,0.28308365,-0.9552075,0.16570984,0.24519134,-0.9694827,0.11328106,0.21741824,-0.9367766,-0.041452494,0.34746426,-0.9309382,0.106869854,0.34918892,-0.9343588,0.12096755,0.3351725,-0.9453582,0.12974544,0.2991052,-0.9409036,0.17701171,0.288734,-0.9464388,0.18845268,0.26218152,-0.96462685,0.13812652,0.22453547,-0.9371207,-0.03993169,0.34671363,-0.9251239,0.04981406,0.37638327,-0.93922055,0.121639185,0.32104313,-0.9452003,0.13248533,0.29840225,-0.9464203,0.18715945,0.2631727,-0.9632453,0.14453825,0.22642258,-0.9693787,0.11451384,0.21723618,-0.9385424,-0.041278835,0.34268665,-0.94621575,0.18678516,0.26417246,-0.96387094,0.13921016,0.22709763,-0.96456045,0.13775519,0.22504784,-0.9760306,0.020091569,0.21670407,-0.94535905,0.13094604,0.298579,-0.9642121,0.13799062,0.22639234,-0.9744581,0.02700747,0.22293946,-0.9212893,0.1087271,0.373369,-0.94755685,0.18081284,0.26352,-0.97413975,0.02842504,0.22415124,-0.9236107,0.07930521,0.37503856,-0.93739706,0.1141942,0.32900828,-0.9477725,0.18005726,0.2632616,-0.9734012,0.032522265,0.22678694,-0.9226921,0.10795609,0.37011442,-0.92430604,0.078918636,0.37340358,-0.9458442,0.15978014,0.28257588,-0.95860255,0.15251376,0.24045928,-0.9525828,0.16700405,0.25435346,-0.9461582,0.18145822,0.26806268,-0.97267693,0.037447114,0.22912297,-0.92433834,0.07838172,0.37343672,-0.9554991,0.14889443,0.25466034,-0.97229755,0.053721737,0.22748962,-0.97242314,0.030175352,0.23126313,-0.9716168,0.0772384,0.22359572,-0.9570091,-0.02201348,0.28922144,-0.9431623,-0.026786981,0.3312511,-0.93194336,0.039280158,0.36047003,-0.92543167,0.078025304,0.3707941,-0.9554854,0.13386919,0.26291957,-0.9702188,0.0724588,0.23113924,-0.971636,0.039556984,0.23314953,-0.96774346,0.105281815,0.22888488,-0.957506,-0.02053097,0.28768182,-0.9447406,-0.020496884,0.32717732,-0.93237805,0.06858356,0.3549189,-0.9288129,0.087931015,0.35996482,-0.9355641,0.04921041,0.34971157,-0.95505595,0.13077243,0.26601994,-0.959845,0.13438247,0.24624988,-0.9498471,0.12716076,0.28569332,-0.9715459,0.039898608,0.23346674,-0.9715759,0.039784733,0.233361,-0.9701518,0.07268613,0.23134866,-0.9677066,0.105395265,0.22898848,-0.9533058,-0.0034582983,0.3019871,-0.94683176,-0.0034412516,0.32171074,-0.95936894,-0.0034753452,0.2821333,-0.9348539,0.068088815,0.3484424,-0.954946,0.13021646,0.26668668,-0.94978434,0.12688266,0.28602538,-0.9597979,0.13410464,0.24658442,-0.9496582,0.1263264,0.28668937,-0.9439369,0.12243429,0.30658275,-0.97128737,0.040467728,0.23444246,-0.9713737,0.040277984,0.23411727,-0.9699689,0.073064804,0.23199537,-0.96761,0.10558399,0.22930963,-0.9541922,-0.0021527235,0.2991865,-0.94730514,-0.0027884645,0.32032034,-0.9606075,-0.0015169813,0.27790463,-0.93606085,0.058246367,0.34698334,-0.9332806,0.08227653,0.34959677,-0.9382903,0.03418228,0.3441555,-0.9547265,0.12985064,0.26764926,-0.9495379,0.12614335,0.28716838,-0.9596991,0.13392176,0.2470679,-0.9492963,0.12577733,0.28812602,-0.97116786,0.040348854,0.23495741,-0.9698926,0.07298574,0.23233886,-0.97124755,0.040428065,0.23461407,-0.9675736,0.105544634,0.2294813,-0.9571018,0.0021223568,0.28974414,-0.94887954,-0.0006509264,0.31563765,-0.96461016,0.004895624,0.2636348,-0.9339816,0.082593024,0.3476446,-0.93652976,0.05845772,0.34568,-0.9335147,0.08238203,0.34894612,-0.9385254,0.034288198,0.34350318,-0.9496595,0.12235052,0.2884044,-0.9574678,0.13017462,0.25750732,-0.94079506,0.114518926,0.3190455,-0.95717347,0.03480621,0.287415,-0.96453106,0.037577678,0.26128086,-0.96107286,0.019853197,0.27558067,-0.9562161,0.06745275,0.28478226,-0.9491006,0.032034475,0.31333974,-0.94477713,0.014307325,0.32740113,-0.9529152,0.049751434,0.29912797,-0.9612618,0.10278632,0.25575522,-0.9634149,0.07021958,0.25865188,-0.9589994,0.08513298,0.27031916,-0.9630002,0.120407455,0.24110729,-0.9674722,0.05529046,0.24686135,-0.9530012,0.098302685,0.2865751,-0.9440147,0.09045067,0.31726146,-0.94706875,0.10641435,0.3028807,-0.95578164,0.07419731,0.28456333,-0.96093154,0.10614859,0.2556229,-0.9628066,0.12208526,0.24103674,-0.958589,0.090184495,0.27013662,-0.9487837,0.042169537,0.31309938,-0.9466785,0.066329576,0.31527805,-0.9525121,0.05819091,0.29888892,-0.9446003,0.02613743,0.32718053,-0.9405005,0.07446384,0.33153266,-0.9529378,0.050001223,0.29901424,-0.949186,0.032784384,0.31300333,-0.952949,0.050126117,0.2989574,-0.9491576,0.032534417,0.31311554,-0.9448971,0.015182703,0.32701504,-0.9448801,0.015057666,0.3270702,-0.9529715,0.05037602,0.29884356,-0.95624936,0.067951925,0.28455183,-0.9590155,0.08550676,0.27014425,-0.9590101,0.08538216,0.27020258,-0.96126646,0.10303521,0.25563753,-0.9629995,0.120531596,0.24104808,-0.94484586,0.014807593,0.32718045,-0.9525673,0.05733332,0.29887882,-0.95254886,0.057619188,0.29888228,-0.95587236,0.07305505,0.284554,-0.94881195,0.04159736,0.3130903,-0.9446102,0.025851186,0.32717475,-0.9609946,0.10557913,0.2556218,-0.9586163,0.08989932,0.27013516,-0.9628425,0.12180105,0.24103685,-0.9586704,0.08932894,0.2701324,-0.94886756,0.040452957,0.31307188,-0.9446297,0.025278693,0.327163,-0.9526036,0.056761574,0.298872,-0.9446679,0.024133679,0.32713926,-0.9529389,0.05106202,0.2988313,-0.9491216,0.03484386,0.31297606,-0.9529224,0.051405013,0.29882514,-0.9491435,0.03415738,0.3129853,-0.9448621,0.017586473,0.32699588,-0.9448675,0.017243084,0.32699874,-0.952889,0.052090976,0.2988127,-0.95616,0.06932245,0.28452125,-0.9589309,0.08653326,0.27011746,-0.9589593,0.08619111,0.27012643,-0.9611983,0.103718415,0.25561744,-0.96295947,0.12087253,0.24103709,-0.94487774,0.016556296,0.3270043,-0.9527774,0.053959332,0.29883718,-0.95272034,0.0548935,0.2988491,-0.94895554,0.03858343,0.31304097,-0.9446982,0.023198387,0.32711947,-0.958758,0.088397205,0.27012774,-0.94475615,0.02132786,0.3270795,-0.9777095,0.04396245,0.20530832,-0.97759557,0.044347238,0.20576726,-0.9775676,0.045425948,0.20566475,-0.9776102,0.04595885,0.20534404,-0.9777464,0.04617082,0.20464623,-0.9778886,0.045523003,0.20411158,-0.9778642,0.044652943,0.20442036,-0.813405,-0.33483174,0.47566798,-0.810307,-0.3401496,0.47717997,-0.8097942,-0.34091,0.47750786,-0.8216863,-0.35769722,0.44371644,-0.8087662,-0.34313393,0.47765717,-0.81404424,-0.36678988,0.45033008,-0.79905164,-0.37634036,0.4689184,-0.8115821,-0.35499036,0.46402192,-0.74143493,-0.4314917,0.51389605,-0.7920961,-0.38067406,0.47714886,-0.74633837,-0.43377814,0.5047926,-0.7881128,-0.39185497,0.47468713,-0.74670255,-0.43396008,0.5040971,-0.78780544,-0.39235908,0.47478104,-0.74713457,-0.43411604,0.5033222,-0.7671494,-0.39180166,0.5079108,-0.78741246,-0.39257148,0.475257,-0.75656605,-0.4180459,0.5028375,-0.76865655,-0.39143005,0.5059146,-0.7764842,-0.400228,0.48671326,-0.7570477,-0.41743806,0.5026173,-0.7683244,-0.39174837,0.5061728,-0.7756388,-0.4009253,0.48748675,-0.7584087,-0.41591507,0.5018274,-0.76384753,-0.4037614,0.5035015,-0.7592412,-0.41570497,0.5007416,-0.75885385,-0.41581047,0.5012409,-0.86310816,0.15825392,0.47958317,-0.86202073,0.15881935,0.48134884,-0.86166763,0.1594883,0.4817597,-0.86114514,0.1599383,0.4825441,-0.86130714,0.1601646,0.4821798,-0.8614935,0.16019742,0.48183572,-0.861854,0.16001327,0.48125184,-0.86208993,0.15973979,0.48092008,-0.86264503,0.15951431,0.47999862,-0.8630271,0.15871507,0.47957665,-0.8809029,0.1908148,0.4331279,-0.8807524,0.19305286,0.43244168,-0.88097245,0.19367333,0.43171525,-0.88213015,0.19198169,0.43010408,-0.8824877,0.19084077,0.42987823,-0.8835351,0.19154505,0.42740643,-0.88362,0.19228445,0.42689848,-0.88390625,0.1921849,0.42635036,-0.8847266,0.19169809,0.4248656,-0.8853359,0.19049357,0.42413735,-0.88510084,0.19014972,0.4247818,-0.8840933,0.18980832,0.42702675,-0.8836089,0.1901028,0.42789754,-0.88333315,0.1891196,0.42890117,-0.8830356,0.18882671,0.42964238,-0.88258594,0.18877321,0.4305889,-0.8819958,0.18888196,0.43174887,-0.8810503,0.19039479,0.433013,-0.8831091,0.19090594,0.4285711,-0.8919248,0.18882087,0.41087332,-0.89147055,0.18920587,0.4116812,-0.89150023,0.18961333,0.41142944,-0.8919122,0.1903605,0.41018954,-0.89249015,0.1903605,0.40893048,-0.8928229,0.18974477,0.40849015,-0.89256483,0.18920587,0.40930343,-0.86471474,0.15379675,0.47813696,-0.86414856,0.15414706,0.4790468,-0.86339116,0.15469767,0.48023355,-0.8628109,0.15556572,0.48099554,-0.8625984,0.15636031,0.48111892,-0.8629376,0.15698408,0.4803069,-0.8628415,0.15735434,0.48035833,-0.8629788,0.1576464,0.48001578,-0.863258,0.15738294,0.47960004,-0.86433446,0.15599246,0.47811317,-0.8645549,0.15552616,0.47786662,-0.85769105,0.14982855,0.49185106,-0.85914344,0.15003164,0.48924747,-0.85973364,0.14971223,0.48830754,-0.8605319,0.14862518,0.48723248,-0.86313343,0.14939964,0.48236963,-0.8637042,0.14916955,0.4814182,-0.86532927,0.14769052,0.47894967,-0.8666572,0.14759526,0.47657198,-0.86774635,0.14626257,0.47499847,-0.868671,0.14795934,0.4727777,-0.86928064,0.14860585,0.4714525,-0.86991745,0.14949146,0.4699957,-0.8668457,0.1495412,0.4756217,-0.8659645,0.15169878,0.4765428,-0.8652436,0.15373361,0.47719958,-0.8648162,0.15542264,0.4774272,-0.8647092,0.15584433,0.4774836,-0.8642146,0.15704212,0.47798634,-0.8640664,0.15807383,0.47791407,-0.8630898,0.16014282,0.47898886,-0.8618815,0.16097799,0.48088083,-0.86123496,0.16264987,0.48147625,-0.86168903,0.1642439,0.48012078,-0.86259377,0.16601913,0.4778803,-0.8648555,0.1673376,0.47331065,-0.86597,0.17102645,0.4699425,-0.8664734,0.17183506,0.46871802,-0.8669772,0.17049249,0.46827647,-0.8681301,0.17044716,0.46615228,-0.86823034,0.16942593,0.46633774,-0.86836004,0.16730563,0.46686143,-0.868429,0.16808526,0.466453,-0.8687332,0.1685842,0.4657058,-0.8688712,0.16905795,0.46527654,-0.8687929,0.16990127,0.4651156,-0.8691405,0.17141192,0.46391025,-0.8697878,0.17286922,0.46215302,-0.8702217,0.17321923,0.46120417,-0.8705376,0.17338794,0.46054417,-0.87083936,0.17329143,0.4600097,-0.87084526,0.17284739,0.46016565,-0.8712252,0.17157646,0.45992196,-0.8712415,0.170584,0.4602601,-0.87148523,0.17093496,0.45966807,-0.8716247,0.17162931,0.45914456,-0.87207806,0.17053442,0.45869154,-0.8729658,0.1722456,0.45635745,-0.8731776,0.1766745,0.45425433,-0.87338996,0.1770922,0.45368317,-0.8737404,0.17738163,0.45289457,-0.8739467,0.17645638,0.45285788,-0.87528515,0.17461315,0.45098364,-0.87480426,0.17536831,0.4516231,-0.87427455,0.17706041,0.45198858,-0.87421393,0.17862695,0.45148915,-0.87425494,0.17936982,0.4511149,-0.8746596,0.18050563,0.44987592,-0.8749064,0.18051736,0.44939107,-0.8750916,0.18082666,0.44890574,-0.8748393,0.18235953,0.44877735,-0.8753229,0.18277596,0.44766366,-0.87350804,0.18331635,0.45097554,-0.8710724,0.18303989,0.45577323,-0.86965245,0.18453427,0.45787746,-0.8680769,0.18472946,0.46077922,-0.8670149,0.18534836,0.46252698,-0.86650604,0.18636988,0.46306977,-0.86953986,0.18565902,0.45763654,-0.87304133,0.1865206,0.45056498,-0.87507886,0.18578799,0.44690022,-0.8757324,0.1860116,0.4455248,-0.8769615,0.18582407,0.44317937,-0.87951344,0.18469337,0.43857098,-0.88231814,0.18504518,0.43275055,-0.88487524,0.18451166,0.42772815,-0.8855851,0.18455443,0.42623776,-0.88547516,0.18296617,0.42714992,-0.88263535,0.18135224,0.43366596,-0.88527626,0.18151145,0.42818177,-0.8911795,0.17533392,0.41839844,-0.8918699,0.1752811,0.4169467,-0.8924967,0.17496562,0.4157364,-0.89328116,0.17485236,0.41409588,-0.89449173,0.1757509,0.41109142,-0.8956179,0.17638762,0.40835756,-0.89660656,0.17757368,0.4056652,-0.89790535,0.17807682,0.4025601,-0.8989571,0.18177122,0.39854163,-0.8988403,0.18252878,0.39845872,-0.8987677,0.18351568,0.3981691,-0.8995779,0.18450417,0.39587596,-0.90469193,0.18413392,0.3842228,-0.9057753,0.1834436,0.38199425,-0.9088725,0.1826427,0.37495643,-0.91091275,0.1817561,0.3704088,-0.912805,0.18753111,0.36279342,-0.91225386,0.18875308,0.36354512,-0.91237533,0.18994059,0.36262074,-0.9121711,0.191714,0.36220115,-0.9121832,0.19356632,0.36118403,-0.9130783,0.19610651,0.3575335,-0.9140009,0.19820023,0.35400417,-0.9152991,0.19870147,0.35035017,-0.9161963,0.19968358,0.34743455,-0.9180239,0.19935954,0.34276518,-0.9185987,0.20512584,0.3377866,-0.91818005,0.20783667,0.3372675,-0.91815346,0.20883682,0.33672148,-0.91826457,0.20986763,0.33577624,-0.91857016,0.21094738,0.3342604,-0.9193996,0.2102435,0.33241838,-0.9199991,0.20959103,0.3311696,-0.9205689,0.2079717,0.3306066,-0.9212071,0.2059657,0.33008432,-0.92134744,0.20330128,0.33134186,-0.921512,0.20246013,0.33139932,-0.9215391,0.20149855,0.3319094,-0.92033696,0.1984158,0.33706227,-0.9210123,0.19988647,0.3343378,-0.92133003,0.19970612,0.33356923,-0.92475265,0.19528502,0.32664388,-0.9264792,0.19437897,0.32226238,-0.92961293,0.19080064,0.31530133,-0.93084747,0.1901949,0.31200778,-0.9312039,0.18799233,0.31227902,-0.93183464,0.18701634,0.31098068,-0.9321716,0.18432571,0.31157693,-0.93231225,0.18280526,0.31205153,-0.93233377,0.18170756,0.31262785,-0.93252885,0.17818005,0.31407303,-0.9321965,0.17611586,0.31621662,-0.93226564,0.1738991,0.31723788,-0.93208474,0.17078051,0.3194559,-0.9322795,0.16858926,0.32005093,-0.9329605,0.16523334,0.31981647,-0.9334417,0.16243462,0.31984624,-0.9344423,0.16026814,0.31801236,-0.93480575,0.15919973,0.31748015,-0.9375186,0.16074257,0.30857867,-0.937178,0.16221936,0.3088402,-0.93728316,0.16309223,0.30806038,-0.9377408,0.16596365,0.30511993,-0.937587,0.16748287,0.30476242,-0.9377324,0.17047733,0.3026472,-0.9360593,0.17550515,0.3049442,-0.9355082,0.17652185,0.3060466,-0.93458104,0.17907639,0.30739203,-0.933507,0.18127006,0.3093635,-0.93247783,0.18493542,0.31029648,-0.9322885,0.18611619,0.31015942,-0.9324466,0.18798988,0.30855,-0.93216485,0.19071779,0.30772632,-0.9318613,0.1907529,0.30862245,-0.9316245,0.19104064,0.3091591,-0.9308437,0.20154537,0.30481043,-0.92849416,0.20310776,0.3108792,-0.92797023,0.20373009,0.31203413,-0.927413,0.2047513,0.3130208,-0.8681419,0.16853215,0.46682605,-0.8713779,0.1706688,0.4599703,-0.8847006,0.18359526,0.42848298,-0.91833323,0.199119,0.34207565,-0.9197393,0.2023107,0.33637768,-0.92199486,0.1981376,0.33266655,-0.9225942,0.19719526,0.33156294,-0.93753314,0.16380174,0.30692124,-0.93204284,0.19312234,0.3065941,-0.8636727,0.15909876,0.4782856,-0.8726815,0.16991806,0.4577716,-0.9187194,0.19902462,0.34109217,-0.9188513,0.20237747,0.3387561,-0.9191887,0.20230988,0.3378799,-0.9376037,0.15874203,0.30935436,-0.86432624,0.16672759,0.4744914,-0.87233776,0.17008851,0.45836318,-0.87401485,0.17565782,0.45303684,-0.8825416,0.18323338,0.4330655,-0.9129861,0.18548402,0.36338976,-0.91892105,0.20046589,0.339702,-0.9320986,0.19406873,0.30582568,-0.874541,0.17486246,0.4523285,-0.88170725,0.18229413,0.4351565,-0.91295046,0.18342182,0.36452433,-0.9197649,0.19892694,0.33832034,-0.87250334,0.17000629,0.45807835,-0.90346795,0.17907263,0.38945946,-0.9319651,0.1979046,0.30376768,-0.9311151,0.20121399,0.30420002,-0.92722493,0.115178406,0.35635364,-0.90236694,0.17830533,0.39235342,-0.9125765,0.18211056,0.36611462,-0.9193573,0.20007429,0.33875138,-0.9317943,0.19907391,0.3035276,-0.93150383,0.20056364,0.30343828,-0.93813854,0.1810472,0.29515767,-0.9273164,0.11531423,0.3560714,-0.9199129,0.08229863,0.38338926,-0.88259035,0.08585927,0.4622363,-0.8821549,0.18175364,0.43447477,-0.90325356,0.17848268,0.39022678,-0.9268081,0.18071188,0.3291958,-0.938044,0.18077226,0.2956262,-0.9269102,0.11527149,0.35714126,-0.91423243,0.030523164,0.40403882,-0.88788253,0.088732526,0.45143235,-0.8763325,0.1656447,0.4523307,-0.9401028,0.14082985,0.31044102,-0.92645395,0.11489729,0.35844338,-0.9202198,0.07337463,0.38446283,-0.9096364,0.042246833,0.41325152,-0.8881429,0.08874654,0.4509171,-0.87657815,0.16544344,0.45192832,-0.92334485,0.17228119,0.34315237,-0.93881816,0.13971399,0.31480217,-0.9099894,0.0425035,0.41244727,-0.888176,0.089022845,0.4507973,-0.8810013,0.16242662,0.4443583,-0.9145944,0.16864683,0.36752594,-0.9243302,0.1655416,0.34381658,-0.9042421,0.1717505,0.3909578,-0.92592627,0.12115203,0.3577467,-0.9323469,0.1335605,0.33599225,-0.93811065,0.14594805,0.3140821,-0.9100604,0.04268239,0.41227207,-0.8869746,0.094667755,0.45201123,-0.88001287,0.16081575,0.4468955,-0.9142456,0.16870359,0.3683667,-0.90405697,0.17177881,0.3913733,-0.9241668,0.16556993,0.34424174,-0.9036861,0.17183541,0.392204,-0.93747586,0.15768419,0.31028154,-0.9328252,0.13469303,0.3342079,-0.9383227,0.1465134,0.3131841,-0.9261935,0.121719174,0.3568615,-0.9387434,0.14764372,0.31138748,-0.9091881,0.0743515,0.4096936,-0.91535383,0.058035366,0.39844593,-0.90395194,0.05901323,0.4235426,-0.9139963,0.08967219,0.3956889,-0.877059,0.12839416,0.4629066,-0.88591635,0.11048385,0.45049486,-0.8943081,0.09253769,0.43777826,-0.8807127,0.16063114,0.44558153,-0.92524475,0.16314515,0.34249938,-0.9150002,0.16708796,0.36722773,-0.92452705,0.16476175,0.3436615,-0.90408105,0.17102821,0.39164636,-0.9371754,0.15726098,0.31140196,-0.9092481,0.07569797,0.40931374,-0.9140141,0.09034465,0.39549482,-0.9039944,0.059687242,0.42335746,-0.9140484,0.091689326,0.39510596,-0.8835995,0.13560098,0.44817883,-0.88984627,0.14280052,0.43333793,-0.89851886,0.12492354,0.4207826,-0.8957967,0.14999263,0.41839024,-0.9006617,0.09977444,0.42291078,-0.93521005,0.15859973,0.31658846,-0.9255676,0.16269551,0.34184027,-0.9152283,0.16678847,0.36679515,-0.92535245,0.16299531,0.34227964,-0.90420145,0.17087847,0.39143366,-0.9108334,0.09074165,0.40267655,-0.8986692,0.1245447,0.42057386,-0.90073276,0.09958454,0.4228042,-0.895876,0.14980392,0.4182882,-0.90087485,0.09920461,0.42259073,-0.93672293,0.15726687,0.31275752,-0.92678535,0.16169646,0.33900332,-0.91609466,0.16612293,0.36492968,-0.92597455,0.16236252,0.34089515,-0.9046615,0.17054594,0.39051464,-0.92891365,0.13303262,0.3455744,-0.924107,0.120887555,0.3625084,-0.93327075,0.14515762,0.3285345,-0.9087807,0.11610508,0.4007958,-0.904926,0.10765874,0.41172627,-0.9061341,0.14139302,0.3986588,-0.8994853,0.15820225,0.40730613,-0.9124377,0.12454304,0.3898032,-0.93303245,0.14516057,0.3292095,-0.9286631,0.13303557,0.34624627,-0.92397565,0.1208891,0.36284265,-0.93291306,0.1451621,0.32954696,-0.91266865,0.12507576,0.38909134,-0.9063637,0.14192452,0.3979475,-0.8995995,0.1584672,0.4069508,-0.91278374,0.12534212,0.3887354,-0.9178867,0.1374815,0.37226722,-0.9114468,0.15403527,0.38149425,-0.92255485,0.14960025,0.35568568,-0.53389794,-0.7807416,0.3246468,-0.5354443,-0.7801021,0.32363582,-0.53579885,-0.7801257,0.3229916,-0.5346239,-0.78106195,0.3226755,-0.5342398,-0.78251487,0.31977856,-0.5331024,-0.7835823,0.319062,-0.5317369,-0.78482074,0.3182958,-0.5321076,-0.78491163,0.3174512,-0.53226787,-0.7851797,0.31651813,-0.5320184,-0.785646,0.31577966,-0.5317419,-0.7872084,0.31233555,-0.53102016,-0.7876948,0.31233716,-0.53036624,-0.7888401,0.31055257,-0.5296849,-0.78945255,0.310159,-0.52784044,-0.79054445,0.310522,-0.5262483,-0.79130894,0.31127626,-0.5269712,-0.7899743,0.3134359,-0.52623796,-0.79017377,0.31416416,-0.52605695,-0.7898666,0.31523758,-0.52835643,-0.7880958,0.31582358,-0.5246274,-0.7890757,0.31957096,-0.52543855,-0.7882583,0.32025477,-0.5258001,-0.78795516,0.32040748,-0.52671415,-0.7873251,0.32045504,-0.52560794,-0.7865447,0.32416627,-0.5254192,-0.7860992,0.3255499,-0.525704,-0.7854837,0.326574,-0.52512014,-0.78524625,0.32808107,-0.5245663,-0.78487575,0.32984897,-0.52481115,-0.78460944,0.33009288,-0.52514535,-0.784085,0.3308067,-0.5259409,-0.7837432,0.33035257,-0.52704376,-0.78297514,0.33041617,-0.52660906,-0.78280336,0.3315144,-0.5285916,-0.7815588,0.33129555,-0.52912503,-0.78135026,0.33093572,-0.53021324,-0.7815716,0.32866353,-0.53037184,-0.78170663,0.32808596,-0.5300748,-0.7821464,0.32751754,-0.5294362,-0.78267395,0.3272901,-0.52871245,-0.78316283,0.32729062,-0.53162193,-0.78164923,0.32619414,-0.5312002,-0.78172034,0.3267104,-0.5315666,-0.7812269,0.32729423,-0.5324025,-0.78069466,0.32720545,-0.5330485,-0.78051883,0.32657254,-0.53220314,-0.7842374,0.31895393,-0.5272835,-0.79011226,0.31256163,-0.5285968,-0.7882007,0.31515887,-0.52673054,-0.7835114,0.3296435,-0.53177583,-0.78178096,0.32562712,-0.5317566,-0.7846189,0.31876028,-0.5310227,-0.78242993,0.32529724,-0.52835464,-0.78346163,0.32715324,-0.530526,-0.7827069,0.32544145,-0.5286116,-0.78341925,0.32683948,-0.5427113,-0.78151417,0.30773365,-0.54362386,-0.78102267,0.3073707,-0.54386485,-0.7810609,0.30684668,-0.5427644,-0.7818235,0.306853,-0.5423685,-0.782208,0.306573,-0.5420131,-0.78245014,0.3065837,-0.54081863,-0.783097,0.3070412,-0.5397946,-0.7834818,0.30786052,-0.5392874,-0.7847457,0.30552137,-0.53962076,-0.7847373,0.30495375,-0.5397157,-0.7849137,0.30433115,-0.53875434,-0.78538764,0.30481136,-0.5383669,-0.7851565,0.30608872,-0.5371734,-0.78555423,0.3071632,-0.53709334,-0.7858706,0.30649337,-0.5368817,-0.7862837,0.30580387,-0.53704697,-0.7866889,0.30446857,-0.5369058,-0.78749,0.30264118,-0.5378697,-0.7874355,0.30106738,-0.5375789,-0.78862643,0.29845816,-0.5357126,-0.7895958,0.2992499,-0.5345658,-0.79003066,0.30015153,-0.5335547,-0.79009867,0.30176744,-0.5337194,-0.7898374,0.30215964,-0.5336709,-0.7897296,0.3025269,-0.5333874,-0.7896628,0.3032005,-0.53339297,-0.7895122,0.30358267,-0.5338394,-0.7888023,0.30464134,-0.53465915,-0.78786486,0.30562818,-0.5344225,-0.78782505,0.30614415,-0.53396106,-0.78794473,0.3066411,-0.53331286,-0.7878397,0.30803564,-0.53311825,-0.7876832,0.30877206,-0.53392076,-0.7859402,0.31181192,-0.53464717,-0.7845692,0.31401202,-0.534964,-0.7839814,0.3149392,-0.53493834,-0.78361404,0.31589547,-0.5351221,-0.78321797,0.31656578,-0.5354424,-0.78272706,0.3172377,-0.5354893,-0.7823747,0.3180268,-0.53594375,-0.78182024,0.3186243,-0.53675246,-0.7813419,0.31843618,-0.53740036,-0.7810844,0.31797472,-0.5372359,-0.7816353,0.31689724,-0.53756714,-0.78147376,0.31673396,-0.5382546,-0.78194773,0.31438783,-0.5385976,-0.78202116,0.31361687,-0.5393919,-0.7815567,0.31340945,-0.5399842,-0.7813907,0.31280276,-0.5402183,-0.7816353,0.31178597,-0.5401063,-0.78240126,0.31005394,-0.5411133,-0.78219426,0.308818,-0.53878003,-0.78430086,0.3075521,-0.53879213,-0.7841146,0.3080054,-0.53829277,-0.784975,0.3066842,-0.53803617,-0.7849559,0.3071828,-0.53762585,-0.7851417,0.3074262,-0.5406019,-0.7858516,0.30031127,-0.5411414,-0.78570294,0.2997281,-0.5409747,-0.7860076,0.29922983,-0.5411553,-0.78628254,0.29817918,-0.54057217,-0.7866689,0.2982177,-0.53932804,-0.78739226,0.298561,-0.5388417,-0.78743327,0.29932988,-0.53926975,-0.7869024,0.29995447,-0.54029095,-0.7857947,0.30101895,-0.5233984,-0.78907365,0.32158506,-0.5244645,-0.7881293,0.3221631,-0.5246976,-0.78802764,0.32203233,-0.52492815,-0.78800446,0.32171327,-0.5248365,-0.78831613,0.32109872,-0.52417547,-0.7887742,0.32105353,-0.54169255,-0.78147686,0.30961755,-0.54095125,-0.78147584,0.3109136,-0.54138994,-0.7808949,0.311609,-0.54176325,-0.78051674,0.3119074,-0.5427224,-0.7801406,0.3111801,-0.543202,-0.78021824,0.31014687,-0.5422273,-0.7811194,0.3095836,-0.52882624,-0.79069895,0.30844462,-0.5287109,-0.79049337,0.3091683,-0.5293157,-0.78994197,0.3095426,-0.5301661,-0.7895277,0.30914378,-0.53046817,-0.78945047,0.3088227,-0.5301668,-0.7896857,0.30873868,-0.52958274,-0.7902052,0.30841184,-0.529026,-0.7906061,0.30833998,0.9907756,0.020658648,-0.13392894,0.9911627,0.025567802,-0.13016428,0.99141175,0.02687031,-0.12798707,0.9914467,0.026664153,-0.12775956,0.9915086,0.025856549,-0.12744468,0.9917114,0.02484443,-0.12606028,0.99206966,0.024876846,-0.123203084,0.9916884,0.020721696,-0.12698328,0.9915724,0.018445833,-0.12823458,0.9915237,0.016526977,-0.12887092,0.99139905,0.016429834,-0.12983781,0.99096197,0.011188349,-0.13367544,0.990967,0.010403521,-0.13370197,0.99065137,0.009851372,-0.13606192,0.9905063,0.010966037,-0.13702947,0.9903866,0.015432059,-0.13746366,0.99028957,0.01699731,-0.13797668,0.99034536,0.017771099,-0.13747852,0.99058187,0.019998366,-0.13545375,0.99110156,0.014553466,-0.13230999,0.9870133,-0.031122947,-0.15759529,0.9867616,-0.031025838,-0.159182,0.9864818,-0.03033749,-0.16103853,0.98654956,-0.028405584,-0.16097534,0.9867419,-0.027211212,-0.16000022,0.98701614,-0.025171764,-0.15863617,0.9869994,-0.024754304,-0.15880607,0.98704576,-0.024156172,-0.1586099,0.9871397,-0.023387728,-0.15813999,0.9872786,-0.021653077,-0.15751855,0.98764366,-0.018434001,-0.1556285,0.9877347,-0.016649831,-0.1552513,0.9879172,-0.015980083,-0.15415691,0.9884152,-0.016937802,-0.15082645,0.9885357,-0.02090497,-0.149533,0.98844635,-0.022012645,-0.14996414,0.9878287,-0.026844896,-0.15321188,0.9877641,-0.028095525,-0.1534036,0.98761266,-0.029032486,-0.15420249,0.88423955,-0.15334804,-0.44114032,0.8837527,-0.14977467,-0.4433382,0.8835528,-0.1458571,-0.44503945,0.88378567,-0.14497854,-0.44486406,0.88410175,-0.1444271,-0.44441518,0.8844641,-0.14405777,-0.44381383,0.8865329,-0.14270149,-0.4401088,0.8872031,-0.14328516,-0.43856585,0.8877199,-0.14427364,-0.4371939,0.88860303,-0.14672881,-0.43457484,0.88807285,-0.14973094,-0.43463466,0.8889602,-0.1522616,-0.4319331,0.88933647,-0.15199874,-0.43125054,0.8893188,-0.15277705,-0.43101186,0.88909817,-0.1534272,-0.4312361,0.88783514,-0.15424737,-0.43353954,0.8861261,-0.15491918,-0.4367844,0.8857553,-0.15481648,-0.43757218,0.8850314,-0.15521052,-0.43889537,0.883526,-0.15447128,-0.4421769,0.8838118,-0.15392393,-0.4417965,0.88776654,-0.15203586,-0.43446034,0.8880577,-0.15238625,-0.43374184,0.89297104,-0.1427724,-0.426871,0.89384544,-0.14185463,-0.4253441,0.89473146,-0.14116794,-0.42370647,0.8959385,-0.1403393,-0.4214251,0.8962145,-0.14030896,-0.42084795,0.8982965,-0.14232863,-0.4156994,0.8999591,-0.14138047,-0.41241378,0.9008152,-0.14118811,-0.41060674,0.90101653,-0.1412371,-0.41014782,0.90096635,-0.14204697,-0.40997845,0.9007756,-0.14288367,-0.41010672,0.90050715,-0.1436799,-0.41041806,0.89981735,-0.14514048,-0.41141582,0.89943755,-0.14570872,-0.41204503,0.89469266,-0.15245023,-0.41986185,0.8948998,-0.15349281,-0.41903985,0.894461,-0.15383135,-0.41985175,0.89413226,-0.1535973,-0.42063695,0.89398,-0.15332271,-0.4210603,0.8939161,-0.15294375,-0.42133385,0.89393145,-0.15225312,-0.4215513,0.8936308,-0.14980672,-0.4230624,0.8921921,-0.14805385,-0.4267004,0.89158803,-0.14691594,-0.42835328,0.891362,-0.14620617,-0.4290658,0.89156204,-0.1454541,-0.4289058,0.8971131,-0.14218692,-0.41829538,0.8948519,-0.15120691,-0.41997197,0.8975196,-0.14240628,-0.41734758,0.8952756,-0.15004434,-0.41948575,0.89380336,-0.15063408,-0.42240375,0.89577913,-0.14907026,-0.41875756,0.8985497,-0.14597857,-0.41388243,0.897668,-0.14657539,-0.41558135,0.89671063,-0.14774708,-0.4172299,0.9606336,-0.029133055,-0.2762867,0.9607585,-0.027802385,-0.27598932,0.9610064,-0.026860269,-0.27521855,0.96136147,-0.026263837,-0.27403352,0.961809,-0.026282664,-0.27245668,0.96225035,-0.026768273,-0.27084622,0.9620307,-0.02894562,-0.2714021,0.96243066,-0.029323827,-0.26993945,0.9625922,-0.028103987,-0.26949295,0.9628889,-0.026643861,-0.26857984,0.9634548,-0.027480405,-0.26645765,0.9636555,-0.028114233,-0.26566464,0.9638164,-0.028921787,-0.26499334,0.9638339,-0.02975482,-0.26483738,0.96397424,-0.032467067,-0.26400667,0.96451753,-0.03344989,-0.26189116,0.96472895,-0.034422554,-0.2609849,0.96470726,-0.03564215,-0.2609014,0.96416277,-0.03628439,-0.26281855,0.96393496,-0.03689243,-0.26356852,0.9636964,-0.037081484,-0.26441267,0.9627499,-0.0362776,-0.26794866,0.9625184,-0.03669825,-0.26872224,0.96200013,-0.037212644,-0.27050152,0.96158797,-0.0380626,-0.27184534,0.96140534,-0.040261276,-0.27217418,0.9610663,-0.04214473,-0.27308518,0.9606439,-0.04350533,-0.27435482,0.9606798,-0.046117317,-0.27380195,0.9604611,-0.047865853,-0.27426893,0.9600997,-0.04928396,-0.2752811,0.9594611,-0.0498151,-0.27740377,0.958825,-0.050489094,-0.27947372,0.9583307,-0.051442362,-0.28099096,0.9580413,-0.051753916,-0.28191894,0.95776415,-0.052235585,-0.2827707,0.95749956,-0.05284152,-0.28355324,0.9572247,-0.053304475,-0.28439316,0.95689344,-0.05358017,-0.2854541,0.95661044,-0.053586952,-0.28639984,0.9567208,-0.05235642,-0.2862588,0.9569721,-0.05122283,-0.28562328,0.95660037,-0.04567635,-0.28780088,0.95626104,-0.044898238,-0.28904834,0.958594,-0.043006428,-0.28151014,0.9595504,-0.038190298,-0.27893472,0.95997,-0.032579422,-0.2782017,0.96017355,-0.03141427,-0.27763283,0.96370775,-0.030552207,-0.26520553,0.96082443,-0.04278169,-0.2738361,0.95675874,-0.046374414,-0.2871622,0.9604333,-0.030334154,-0.2768531,0.96224827,-0.030208088,-0.27049172,0.9637293,-0.031640776,-0.26499942,0.95686215,-0.047176294,-0.28668663,0.9570393,-0.05051469,-0.2855243,0.83384204,-0.083090164,-0.5457138,0.8343184,-0.0793495,-0.54554236,0.8355069,-0.07730362,-0.544015,0.8355056,-0.076491356,-0.5441319,0.8358418,-0.07662733,-0.54359615,0.83665377,-0.07746169,-0.542227,0.8373345,-0.08051841,-0.5407287,0.83723617,-0.08618965,-0.54000634,0.83733195,-0.08715743,-0.5397024,0.8373604,-0.08806754,-0.53951055,0.83744246,-0.09023718,-0.5390245,0.8374089,-0.09080917,-0.53898054,0.83766913,-0.091708764,-0.5384236,0.8381515,-0.09290693,-0.5374665,0.8383408,-0.09378083,-0.5370195,0.83828187,-0.09456483,-0.53697383,0.83871657,-0.09565243,-0.5361018,0.83865154,-0.09662115,-0.5360298,0.83791876,-0.09868381,-0.53679955,0.8375457,-0.098732926,-0.53737235,0.8371336,-0.098190196,-0.5381135,0.83633816,-0.098821186,-0.5392335,0.8360277,-0.098242745,-0.5398204,0.8355742,-0.09618165,-0.54089254,0.83570313,-0.0954539,-0.54082245,0.8350923,-0.09399636,-0.54201984,0.8345113,-0.09444437,-0.54283625,0.8338137,-0.093989596,-0.5439858,0.833263,-0.0929442,-0.5450085,0.83320415,-0.09190724,-0.54527414,0.8337651,-0.09105016,-0.54456013,0.834789,-0.08987554,-0.5431849,0.8350355,-0.08997907,-0.5427886,0.83541715,-0.090384744,-0.54213357,0.8356537,-0.086513996,-0.5424003,0.83545387,-0.08559533,-0.5428538,0.8355201,-0.08422985,-0.5429656,0.8352692,-0.08277772,-0.54357445,0.83499575,-0.08279127,-0.54399234,0.8348175,-0.082633264,-0.54428977,0.83447874,-0.082633264,-0.54480916,0.8338429,-0.08407187,-0.5455621,0.83711433,-0.084221415,-0.54050565,0.8346908,-0.08234624,-0.54452765,0.8355155,-0.0947464,-0.5412365,0.83523625,-0.09420844,-0.5417612,0.8355681,-0.08956316,-0.5420373,0.8386207,-0.09299345,-0.53671926,0.8384694,-0.09183946,-0.5371543,0.83893466,-0.08956661,-0.5368114,0.8378298,-0.08600628,-0.53911424,0.8383374,-0.081503645,-0.5390246,0.8387597,-0.0805234,-0.5385147,0.8391362,-0.08078849,-0.5378882,0.8403186,-0.08206253,-0.5358455,0.8416963,-0.08310716,-0.53351706,0.8419192,-0.08448797,-0.5329483,0.84105927,-0.08836974,-0.5336761,0.84159636,-0.08954963,-0.5326316,0.84177834,-0.09271001,-0.5318027,0.84147155,-0.09377751,-0.5321009,0.84087133,-0.093814775,-0.53304243,0.8407443,-0.09298669,-0.53338766,0.8399212,-0.093772404,-0.53454566,0.8394764,-0.09395565,-0.53521186,0.83906895,-0.09389121,-0.5358617,0.8412097,-0.08713035,-0.5336427,0.94815284,0.06371502,-0.31136256,0.94736993,0.06435196,-0.31360644,0.9467854,0.06690396,-0.31483525,0.94671214,0.067596905,-0.31490776,0.9466197,0.06951582,-0.3147676,0.9471766,0.0723984,-0.31243408,0.9471368,0.07353643,-0.3122885,0.9474097,0.0732467,-0.3115282,0.94867134,0.070497714,-0.30830634,0.948747,0.06945802,-0.30830953,0.9486267,0.06782312,-0.30904278,0.94843066,0.067181095,-0.30978376,0.9478247,0.06578919,-0.3119296,0.947994,0.065716036,-0.3114303,0.9485275,0.06461129,-0.31003377,0.94763654,0.06645411,-0.31236008,0.9477038,0.06600521,-0.31225148,0.9486328,-0.052295107,-0.31202716,0.9483189,-0.049372423,-0.3134544,0.9488374,-0.04705376,-0.3122396,0.949678,-0.04531028,-0.30993325,0.9507804,-0.04465982,-0.3066303,0.95099944,-0.04414725,-0.3060246,0.9518845,-0.044775575,-0.30316845,0.9518881,-0.047656402,-0.3027176,0.95206267,-0.048844725,-0.3019781,0.9519751,-0.04994952,-0.3020736,0.9521453,-0.05094365,-0.3013704,0.95202035,-0.051302835,-0.301704,0.95194894,-0.051927492,-0.30182236,0.9518598,-0.053353876,-0.3018549,0.9515797,-0.05451114,-0.3025302,0.95161957,-0.055984937,-0.3021357,0.95138484,-0.055918522,-0.30288613,0.9505649,-0.055137478,-0.30559158,0.9505438,-0.05402096,-0.3058565,0.94978034,-0.055239484,-0.30800295,0.94967633,-0.05620108,-0.30814987,0.9492506,-0.056289513,-0.3094429,0.94912714,-0.055733085,-0.3099217,0.9487212,-0.05482431,-0.31132355,0.9486239,-0.054131664,-0.3117411,0.949955,-0.054589465,-0.30758005,0.9504378,-0.053840622,-0.30621752,0.69966614,-0.012050023,-0.71436834,0.7023188,-0.011368312,-0.7117718,0.7022528,-0.0123022515,-0.7118214,0.7016966,-0.013418554,-0.71234953,0.70104736,-0.013980931,-0.71297765,0.7005463,-0.013740628,-0.71347463,0.69901043,-0.015392097,-0.7149458,0.69775504,-0.014364388,-0.71619236,0.6967326,-0.017946634,-0.7171064,0.6965468,-0.019536607,-0.71724534,0.69557714,-0.020565892,-0.71815705,0.6944818,-0.02041417,-0.71922064,0.69311523,-0.021235581,-0.72051394,0.6924314,-0.021199828,-0.72117215,0.6906698,-0.02047388,-0.72288036,0.6898061,-0.01909359,-0.72374237,0.6926128,-0.017074157,-0.7211074,0.69371337,-0.015318792,-0.72008824,0.69593775,-0.012667003,-0.7179904,0.6965956,-0.012419902,-0.7173565,0.6977456,-0.012784534,-0.7162315,0.69869906,-0.012012475,-0.7153148,0.700954,-0.013701531,-0.71307486,0.69098246,-0.018580602,-0.7226327,0.6960135,-0.028654274,-0.71745664,0.7009595,-0.027778553,-0.7126599,0.70100707,-0.028204558,-0.7125964,0.7007665,-0.029114347,-0.71279633,0.69601667,-0.030576037,-0.7173743,0.6936885,-0.031831533,-0.71957135,0.69187224,-0.032443117,-0.72129065,0.6914111,-0.033044446,-0.72170556,0.6901847,-0.032674856,-0.7228952,0.68847525,-0.03298833,-0.72450924,0.68644315,-0.032685105,-0.72644854,0.68535644,-0.0320684,-0.72750133,0.68303126,-0.03140569,-0.7297136,0.68401414,-0.03060499,-0.72882646,0.68526864,-0.030259205,-0.7276615,0.6894391,-0.03004282,-0.7237204,0.69183475,-0.028880915,-0.7214781,0.6946744,-0.028541904,-0.71875787,0.75486356,-0.00081305095,-0.6558813,0.7568435,-0.0000716885,-0.6535961,0.7578797,-0.0005207499,-0.6523942,0.75944954,-0.000792547,-0.65056574,0.7598572,-0.0012203889,-0.6500889,0.7604099,-0.0010490853,-0.6494426,0.76118684,-0.0017189216,-0.64853036,0.7619616,-0.0012715297,-0.6476209,0.7627245,-0.0017708968,-0.64672107,0.7628045,-0.0026998925,-0.64662355,0.7633782,-0.0036594032,-0.6459415,0.7622027,-0.0045781415,-0.6473223,0.7604398,-0.0046667126,-0.64939165,0.75981444,-0.0063949823,-0.6501085,0.7595412,-0.0063148756,-0.65042853,0.75825304,-0.0051763263,-0.6519398,0.7581188,-0.006834736,-0.6520806,0.75754,-0.0077465433,-0.65274286,0.755876,-0.0072607794,-0.6546746,0.7558487,-0.0060114935,-0.65471876,0.7564924,-0.005207082,-0.65398186,0.7569667,-0.0052734804,-0.65343225,0.7574262,-0.005085967,-0.652901,0.75822943,-0.0031515744,-0.6519802,0.758834,-0.00249533,-0.65127933,0.75832134,-0.0014079049,-0.6518794,0.7568934,-0.0039525367,-0.65352637,0.7558831,-0.0046854285,-0.6546899,0.75530887,-0.0058921673,-0.6553425,0.754633,-0.00629616,-0.65611684,0.7526572,-0.006038792,-0.658385,0.75219345,-0.006529686,-0.65891,0.75173795,-0.006383062,-0.65943104,0.75079656,-0.005067251,-0.6605142,0.75122595,-0.0042082383,-0.66003174,0.7510648,-0.0035657051,-0.66021883,0.75152814,-0.002614658,-0.6596958,0.7544141,-0.0006971796,-0.6563985,0.7591844,-0.0057354094,-0.6508503,0.75357676,-0.00576092,-0.65733474,0.75901866,-0.0014999345,-0.65106714,0.7843259,0.03550506,-0.61933213,0.78260666,0.035802178,-0.6214861,0.78156734,0.036592614,-0.6227467,0.78067863,0.03881357,-0.6237262,0.7798287,0.043160453,-0.62450325,0.78069407,0.04532127,-0.62326777,0.7810592,0.045294832,-0.6228121,0.78212374,0.04484873,-0.62150717,0.78371924,0.043084707,-0.6196191,0.78503144,0.04008752,-0.61815745,0.78469074,0.036338747,-0.6188214,0.78667647,-0.029686783,-0.6166513,0.7860334,-0.02897803,-0.6175044,0.7861019,-0.027986372,-0.617463,0.78737664,-0.026729066,-0.6158925,0.7887808,-0.025113728,-0.6141613,0.7905419,-0.0237387,-0.6119477,0.79157823,-0.023253057,-0.6106252,0.79215676,-0.023573404,-0.60986227,0.7935572,-0.02536935,-0.6079665,0.79416156,-0.027744472,-0.60707307,0.79417,-0.028703725,-0.6070174,0.7934554,-0.029608376,-0.6079077,0.7923375,-0.030163763,-0.609337,0.7904413,-0.02950614,-0.6118267,0.78859514,-0.029407358,-0.6142091,0.78700083,-0.029882675,-0.61622787,0.8078772,-0.04308646,-0.5877738,0.80771184,-0.04276966,-0.5880241,0.8076533,-0.041279666,-0.588211,0.80868405,-0.037830904,-0.5870255,0.80859345,-0.035105687,-0.5873196,0.8089173,-0.03447712,-0.5869107,0.80932784,-0.034460083,-0.58634543,0.80980384,-0.035526354,-0.5856241,0.8098888,-0.036245197,-0.5854626,0.8093995,-0.038774468,-0.58597696,0.80902535,-0.03948298,-0.5864461,0.8085243,-0.04214473,-0.5869517,0.80519253,-0.03180949,-0.59215975,0.8083739,-0.03123197,-0.5878402,0.8114698,-0.031651024,-0.58353657,0.8135016,-0.031426188,-0.5807129,0.8142693,-0.0315675,-0.57962835,0.81483537,-0.03216205,-0.57879955,0.81442547,-0.032845236,-0.5793379,0.8143318,-0.033819586,-0.5794134,0.8138596,-0.03385366,-0.5800746,0.81021816,-0.033262596,-0.5851838,0.8090107,-0.033444766,-0.58684164,0.8056272,-0.032437995,-0.5915341,0.8181431,-0.030381816,-0.5742115,0.819094,-0.029761732,-0.57288677,0.8221666,-0.028548697,-0.5685306,0.82395464,-0.028695144,-0.5659287,0.82459426,-0.028955866,-0.5649831,0.82494426,-0.02944823,-0.5644464,0.8253716,-0.032437995,-0.5636572,0.8244331,-0.034989767,-0.56487674,0.82341707,-0.035020504,-0.566355,0.8222577,-0.03451965,-0.5680675,0.8203571,-0.033058148,-0.5708952,0.8186136,-0.03390644,-0.5733429,0.8173563,-0.032962713,-0.57518876,0.81555784,-0.03275659,-0.5777478,0.81552655,-0.031586323,-0.5778571,0.8156835,-0.03130513,-0.57765085,0.81616896,-0.030903112,-0.5769863,0.8167741,-0.031066706,-0.5761206,0.81690156,-0.029891135,-0.57600206,0.8173331,-0.029536763,-0.57540786,0.81752145,-0.02965437,-0.5751342,0.8178133,-0.03037836,-0.57468134,0.7438283,-0.13936053,-0.65368044,0.7436618,-0.13916469,-0.6539116,0.7434907,-0.13885245,-0.6541724,0.7433099,-0.13691112,-0.6547868,0.7423708,-0.13531205,-0.65618306,0.74216664,-0.13451652,-0.65657747,0.74131286,-0.13367884,-0.65771216,0.7409034,-0.1327092,-0.65836954,0.74045646,-0.12946834,-0.6595167,0.7412873,-0.12649146,-0.65916085,0.7403392,-0.12528259,-0.660456,0.7408389,-0.12429828,-0.66008157,0.7415434,-0.12382312,-0.6593794,0.7424574,-0.12422057,-0.65827525,0.7427527,-0.12472954,-0.65784574,0.7426116,-0.12569001,-0.65782213,0.743166,-0.12621084,-0.6570959,0.7434765,-0.12733005,-0.6565286,0.7438377,-0.12775949,-0.65603584,0.74440145,-0.12923512,-0.65510666,0.74497813,-0.12945475,-0.6544073,0.7453433,-0.13001585,-0.6538801,0.7458064,-0.13254532,-0.6528435,0.74579346,-0.13349974,-0.6526638,0.7463654,-0.13372444,-0.6519634,0.74620515,-0.1353998,-0.6518011,0.74662447,-0.13684015,-0.6510197,0.74610573,-0.1378228,-0.651407,0.7460781,-0.13912763,-0.6511613,0.74526757,-0.139136,-0.652087,0.7435024,-0.13827513,-0.65428144,0.7933306,-0.13427164,-0.59379935,0.79356134,-0.13343051,-0.5936807,0.7943441,-0.13333257,-0.5926549,0.79571867,-0.13176817,-0.591159,0.7971626,-0.1323916,-0.5890707,0.8008587,-0.13394064,-0.58368254,0.8020425,-0.13335277,-0.58218986,0.8030908,-0.1360044,-0.58012754,0.80331904,-0.13711034,-0.5795509,0.80321866,-0.13890651,-0.5792622,0.8029467,-0.13881525,-0.5796611,0.8018097,-0.13763367,-0.58151376,0.80026716,-0.13716772,-0.5837444,0.79957306,-0.13765727,-0.58457977,0.79811347,-0.1377502,-0.58654904,0.7964174,-0.13831563,-0.58871734,0.7960989,-0.13692458,-0.58947283,0.79451925,-0.13491176,-0.5920625,0.7933087,-0.1346415,-0.5937449,0.7995317,-0.13410282,-0.58546174,0.7980967,-0.1335842,-0.5875346,0.8009594,-0.13719983,-0.5827866,0.79560876,-0.13584732,-0.5903832,0.8147211,-0.14265937,-0.5620301,0.815081,-0.14160658,-0.5617743,0.8157483,-0.14151382,-0.5608285,0.81641275,-0.14233878,-0.55965155,0.8166314,-0.14354494,-0.55902416,0.8162262,-0.14428379,-0.55942553,0.8167248,-0.14584023,-0.5582932,0.81641865,-0.14634438,-0.55860895,0.81573606,-0.14685357,-0.55947185,0.8095031,-0.14526857,-0.5688602,0.80921024,-0.1448133,-0.5693925,0.80953085,-0.14271164,-0.5694675,0.8103202,-0.14227636,-0.56845284,0.8115976,-0.1420419,-0.5666864,0.81330705,-0.1419305,-0.56425834,0.8140315,-0.1420773,-0.5631757,0.7548844,-0.023445647,-0.65543866,0.7544895,-0.02295833,-0.65591055,0.75401825,-0.020736324,-0.6565261,0.75375485,-0.016898587,-0.65693843,0.75423473,-0.016014174,-0.6564096,0.75530607,-0.01597496,-0.6551775,0.7557946,-0.015533581,-0.6546246,0.7583357,-0.016750311,-0.651649,0.7583869,-0.017172966,-0.65157837,0.757957,-0.018328398,-0.65204704,0.7578557,-0.019274158,-0.65213734,0.7575276,-0.020463632,-0.65248233,0.7570149,-0.021910388,-0.65303016,0.7562804,-0.02298896,-0.6538436,0.9901378,0.09325983,-0.10454546,0.99020356,0.09609768,-0.101302564,0.99027705,0.0972232,-0.099494055,0.990413,0.09774059,-0.097615324,0.9905754,0.098010376,-0.09567807,0.99076796,0.09808321,-0.09358695,0.9910173,0.09745906,-0.09157782,0.99114704,0.09697131,-0.09068687,0.99123347,0.09614264,-0.09062496,0.99137247,0.09429582,-0.091043204,0.99151945,0.09317414,-0.09059663,0.9916418,0.09209304,-0.090362385,0.9918402,0.086741336,-0.093429014,0.99192274,0.084808946,-0.09432216,0.9919699,0.08300609,-0.095423676,0.991971,0.081276864,-0.0968898,0.99179184,0.074339606,-0.10403131,0.9915355,0.06951843,-0.10965638,0.9914772,0.06655783,-0.11199582,0.9913755,0.065692246,-0.11339797,0.99047333,0.05563004,-0.12596805,0.9904352,0.053678762,-0.12710927,0.99035394,0.05190526,-0.1284717,0.99004036,0.04669525,-0.13281418,0.99013287,0.04351977,-0.13320282,0.99014187,0.04115273,-0.13388619,0.9899733,0.039832857,-0.13552177,0.9896917,0.03950755,-0.13765776,0.9879018,0.026083209,-0.15287144,0.98770344,0.0180096,-0.15529814,0.9874543,0.011979249,-0.15745002,0.9873498,0.008009781,-0.15835497,0.9872313,0.006139196,-0.15917481,0.98702365,0.0046734205,-0.160507,0.9867515,0.0036406,-0.16219814,0.98564065,-0.0005752285,-0.16885556,0.9852142,-0.005476372,-0.17123972,0.98499316,-0.0069846977,-0.17245215,0.983757,-0.014427443,-0.1789245,0.98340887,-0.01921969,-0.1803819,0.98304504,-0.022672065,-0.18195744,0.98154646,-0.03375144,-0.1882216,0.98144233,-0.037410274,-0.18807317,0.9812371,-0.039234266,-0.18877089,0.98098946,-0.040920317,-0.18969786,0.9802296,-0.045150228,-0.19264306,0.9798739,-0.046478253,-0.19413139,0.9794834,-0.04760699,-0.19582084,0.97921,-0.048997965,-0.19684248,0.97896767,-0.05057255,-0.19764806,0.97815406,-0.055246387,-0.20040575,0.9778334,-0.056589086,-0.20159249,0.97710294,-0.05892359,-0.20444548,0.9754518,-0.06408843,-0.2106809,0.97443426,-0.069220856,-0.21374366,0.97359127,-0.07240527,-0.21651211,0.97172165,-0.07794933,-0.22289212,0.97069114,-0.08013271,-0.22657764,0.9701843,-0.08151553,-0.22824916,0.9696863,-0.08307318,-0.22979835,0.96931803,-0.08396318,-0.23102535,0.9671898,-0.08853954,-0.23812747,0.9657304,-0.09386403,-0.24197987,0.9652468,-0.09526558,-0.24335767,0.96473557,-0.096521005,-0.24488561,0.9639411,-0.09915867,-0.2469517,0.96326923,-0.10111064,-0.24877505,0.9625683,-0.10287225,-0.25075823,0.9624333,-0.10292988,-0.2512522,0.9622271,-0.102665454,-0.25214818,0.9623941,-0.101337865,-0.2520481,0.9630475,-0.0962004,-0.2515651,0.9614941,-0.098992474,-0.25637782,0.9610029,-0.099786155,-0.25790727,0.9607068,-0.100110084,-0.2588831,0.9605332,-0.09971665,-0.25967768,0.95858693,-0.099533506,-0.2668411,0.95840144,-0.100372925,-0.26719257,0.9581458,-0.10104956,-0.26785365,0.95784354,-0.10136159,-0.26881498,0.95750487,-0.10137344,-0.2700144,0.95742,-0.09960467,-0.27097186,0.95742315,-0.09891276,-0.27121425,0.9581285,-0.087322146,-0.2726988,0.95847577,-0.083567485,-0.27265462,0.95860755,-0.081238694,-0.2728952,0.9587694,-0.07939704,-0.27286887,0.95953643,-0.071876645,-0.2722564,0.959403,-0.06769059,-0.27379534,0.95944446,-0.06684874,-0.27385667,0.95967084,-0.06592024,-0.27328807,0.95993423,-0.06506473,-0.27256724,0.96003145,-0.0594817,-0.27349862,0.9595433,-0.056883413,-0.27575538,0.95946574,-0.0561211,-0.27618104,0.9595312,-0.055135693,-0.27615207,0.9596361,-0.05418773,-0.27597502,0.9605242,-0.050380155,-0.27359655,0.9623359,-0.04347984,-0.26836377,0.96278596,-0.042393416,-0.26691934,0.96327764,-0.04153003,-0.26527607,0.9638039,-0.041112795,-0.2634233,0.9649914,-0.04113495,-0.25903586,0.9652306,-0.041368164,-0.2581056,0.9654577,-0.04173942,-0.25719506,0.9656117,-0.042204402,-0.25653994,0.9661358,-0.044855602,-0.2541052,0.9665689,-0.04162365,-0.2530059,0.9661127,-0.039830443,-0.25502905,0.96597224,-0.038983997,-0.25569123,0.9659302,-0.037895586,-0.25601307,0.9659767,-0.036521103,-0.2560377,0.9662502,-0.035611533,-0.25513223,0.96679056,-0.034676436,-0.25320652,0.96759003,-0.031749796,-0.25052258,0.96764106,-0.029644124,-0.25058332,0.96786475,-0.027923336,-0.24991623,0.9681056,-0.02377624,-0.24941173,0.96824086,-0.021826843,-0.24906468,0.9684942,-0.018747587,-0.2483293,0.9685951,-0.018122202,-0.2479821,0.97260755,-0.009312896,-0.23226671,0.97230035,-0.008124902,-0.23359345,0.9723627,-0.0072966604,-0.23336127,0.9727355,-0.00632167,-0.23183118,0.9725849,-0.004741695,-0.23249957,0.97272027,-0.0041963174,-0.23194312,0.9720035,-0.0012000041,-0.23496307,0.9715224,-0.00034181675,-0.23694739,0.9711892,0.00081975845,-0.23830825,0.97136754,0.00304408,-0.23756227,0.9716497,0.0050424878,-0.23637144,0.9720261,0.0067553762,-0.2347756,0.97242165,0.00838051,-0.23307924,0.972688,0.008847554,-0.23194766,0.9729831,0.008965924,-0.23070225,0.9732366,0.0086310785,-0.22964312,0.9739179,0.0069778156,-0.22679356,0.9760998,0.003777809,-0.21728991,0.97518903,0.0051967427,-0.2213128,0.9743149,0.0072487714,-0.22507298,0.9740724,0.0085867345,-0.2260735,0.97419524,0.010103606,-0.22548087,0.9745032,0.011592323,-0.224074,0.97488195,0.012487044,-0.22237204,0.97717524,0.017778728,-0.21168953,0.9772294,0.019925067,-0.21124786,0.9773375,0.02196989,-0.21054424,0.97751576,0.023697736,-0.20952643,0.9777655,0.025167387,-0.20818578,0.9785298,0.028294677,-0.20415397,0.9788669,0.028989859,-0.20243347,0.97979254,0.030667936,-0.19765124,0.97988546,0.03292855,-0.19682536,0.9800075,0.0351056,-0.19583875,0.98020947,0.036682796,-0.19453463,0.9807113,0.039390102,-0.19145167,0.9810525,0.040039755,-0.18955913,0.9812547,0.03984048,-0.1885523,0.98144263,0.039130308,-0.18772125,0.98150885,0.038287297,-0.18754837,0.9815468,0.03734455,-0.18753998,0.98140675,0.035781804,-0.18857463,0.98164034,0.03471209,-0.18755615,0.9819879,0.03699372,-0.18528679,0.98224014,0.03728832,-0.18388534,0.98275346,0.040683556,-0.18038979,0.98284894,0.042075682,-0.17954852,0.9829509,0.04303695,-0.17876057,0.98357236,0.048749268,-0.17380722,0.98364335,0.050504364,-0.17290188,0.98375,0.052129906,-0.1718093,0.98408777,0.05552625,-0.16878468,0.98457724,0.05775879,-0.16514127,0.98534423,0.062463913,-0.15872931,0.98597336,0.06471253,-0.15384673,0.98626554,0.06687934,-0.15102135,0.9862572,0.06776353,-0.15068112,0.98628026,0.06850495,-0.1501945,0.98653656,0.069713935,-0.14793743,0.9869838,0.07137324,-0.14411418,0.9870225,0.073142916,-0.1429569,0.9867783,0.07536704,-0.14348653,0.98671925,0.076972164,-0.14304005,0.9869919,0.081281856,-0.13870928,0.98690826,0.08328633,-0.13811426,0.98689884,0.08506872,-0.13709098,0.98713577,0.08785359,-0.13358419,0.98721117,0.09011742,-0.13150294,0.98724794,0.09073441,-0.1308006,0.98731947,0.09112474,-0.12998645,0.9874182,0.09125889,-0.1291401,0.98823136,0.09115276,-0.122841015,0.9884201,0.09183427,-0.12079842,0.988673,0.09192674,-0.11863907,0.9915837,0.07102306,-0.10824717,0.99001354,0.049661778,-0.13193461,0.9847234,-0.00827665,-0.17392926,0.96751314,-0.08772626,-0.23711254,0.9629424,-0.09830384,-0.25115374,0.95953023,-0.07259229,-0.27208853,0.96730214,-0.03353508,-0.25140002,0.9743425,0.0057940916,-0.22499542,0.97596115,0.013069095,-0.21755236,0.9792465,0.02915251,-0.20056522,0.98246145,0.03819867,-0.18251112,0.9833688,0.046192966,-0.17564718,0.9861606,0.065567225,-0.15227678,0.9869792,0.08081134,-0.13907452,0.9880409,0.090759814,-0.124650925,0.99003434,0.092271216,-0.10638617,0.9912909,0.095225625,-0.09096422,0.9908842,0.06468112,-0.11817296,0.99051905,0.057141114,-0.12492757,0.99000597,0.04859007,-0.13239041,0.9857918,0.0007864991,-0.16797014,0.975754,-0.06277691,-0.20967408,0.9599847,-0.09706216,-0.2626942,0.95880604,-0.09884657,-0.26630884,0.972655,-0.0033475535,-0.23223074,0.9826281,0.039389268,-0.1813572,0.9892221,0.09098395,-0.11472342,0.99075216,0.06372608,-0.11978794,0.9906803,0.06235755,-0.121095255,0.98600125,0.0017878562,-0.16672811,0.9844944,-0.009650363,-0.17515051,0.95980966,-0.09670586,-0.26346412,0.96006835,-0.0601996,-0.27321193,0.9662808,-0.045330644,-0.25346905,0.96663094,-0.042396754,-0.25264025,0.96903473,-0.018384656,-0.24623881,0.97632176,0.01360084,-0.21589543,0.97712564,0.017283607,-0.2119594,0.979578,0.029545255,-0.19888188,0.9898575,0.091796875,-0.10842233,0.99125,0.079485714,-0.10538212,0.9895003,0.039053716,-0.13915466,0.9880511,0.029700277,-0.15123786,0.9838235,-0.013941715,-0.178597,0.980163,-0.038613535,-0.19439523,0.9716571,-0.07566454,-0.22395831,0.963042,-0.09709266,-0.25124285,0.960097,-0.063028656,-0.27247214,0.9666214,-0.04437543,-0.2523368,0.9692875,-0.018399913,-0.24524114,0.97660446,0.014694952,-0.21454065,0.9845863,0.052482758,-0.16683923,0.98933023,0.03830171,-0.14056514,0.9721701,-0.070041284,-0.2235611,0.97659487,-0.051519033,-0.20882595,0.98045874,-0.032978915,-0.19394082,0.9698829,-0.017825658,-0.24291846,0.9845196,0.05188788,-0.16741836,0.9894511,0.09114255,-0.11260383,0.98830456,0.03319257,-0.1488365,0.98626703,0.007881158,-0.16497023,0.97664195,-0.051276404,-0.20866534,0.9804789,-0.032857507,-0.19385955,0.97219706,-0.06992011,-0.22348173,0.980519,-0.03261481,-0.19369733,0.96378255,-0.0768074,-0.25538936,0.97898394,0.019782282,-0.20297544,0.98504573,0.054793514,-0.16334838,0.98969513,0.047780152,-0.13498372,0.9803013,-0.029471226,-0.19529633,0.97440755,-0.059031166,-0.21689929,0.9848539,0.00011463562,-0.17338626,0.96699244,-0.06695079,-0.24585225,0.97040665,-0.017087745,-0.2408711,0.9725705,-0.010045761,-0.23239109,0.98143107,0.03399666,-0.18877873,0.978981,0.018889332,-0.20307487,0.98822826,0.077805676,-0.13172403,0.9867694,0.06461391,-0.14869817,0.9848467,0.051410846,-0.1656318,0.9805237,-0.028052388,-0.19438684,0.98493457,0.0008242884,-0.17292549,0.9745495,-0.058322735,-0.21645236,0.98509383,0.0022435924,-0.17200336,0.9882451,0.03253763,-0.14937529,0.96649307,-0.04527956,-0.2526675,0.967096,-0.06692534,-0.24545136,0.97476566,0.0048626033,-0.2231777,0.9791001,0.019247252,-0.202466,0.98712087,0.050281845,-0.15186873,0.9735048,-0.025832566,-0.22720282,0.97398067,-0.036667395,-0.22364533,0.97947437,-0.00637579,-0.2014678,0.9843908,0.013083398,-0.17550947,0.9707109,-0.05180225,-0.23459928,0.9713455,-0.015475534,-0.23716742,0.9721521,-0.013171455,-0.23398028,0.97958016,0.02099141,-0.19995508,0.97953093,-0.0060482095,-0.2012028,0.9844125,0.013247178,-0.17537566,0.97353965,-0.025668826,-0.22707194,0.98445565,0.0135748545,-0.17510813,0.97195935,-0.0138872415,-0.23473841,0.97521937,0.0042669205,-0.22119905,0.98290473,0.01848719,-0.18318458,0.9769532,-0.0021161262,-0.21344288,0.9813446,0.009655401,-0.19201458,0.9851294,0.02142547,-0.1704727,0.9770792,-0.0015792085,-0.21286994,0.9770374,-0.0017581414,-0.2130609,0.98141617,0.01001325,-0.19163007,0.985159,0.021604363,-0.17027932,0.83248985,-0.150351,-0.5332497,0.8312496,-0.14973766,-0.53535295,0.83093774,-0.14946125,-0.53591394,0.8307608,-0.1488832,-0.5363491,0.83127034,-0.14748415,-0.5359458,0.8305576,-0.14636466,-0.537356,0.83043164,-0.14575425,-0.53771645,0.83019006,-0.14529051,-0.5382148,0.82976854,-0.14485882,-0.5389806,0.83040017,-0.14179893,-0.5388215,0.8310726,-0.14099751,-0.53799456,0.83176666,-0.14078484,-0.5369766,0.83219707,-0.1413603,-0.53615797,0.83238953,-0.14238599,-0.53558743,0.83211684,-0.14527364,-0.5352356,0.8333768,-0.14612527,-0.53303885,0.8337573,-0.14662763,-0.5323054,0.8340657,-0.14728524,-0.5316404,0.8342501,-0.1480437,-0.5311402,0.8360431,-0.14996514,-0.52777106,0.838126,-0.14775215,-0.52508485,0.8386104,-0.14732392,-0.52443135,0.8391371,-0.14703563,-0.5236693,0.8395786,-0.14750102,-0.52282995,0.84102386,-0.14792405,-0.52038187,0.84160334,-0.14791061,-0.51944804,0.8422201,-0.14826122,-0.5183472,0.8443149,-0.14868763,-0.5148052,0.8453312,-0.1474285,-0.5134979,0.84686786,-0.14648943,-0.5112295,0.84796983,-0.14548783,-0.50968665,0.8491425,-0.14481671,-0.5079223,0.85074466,-0.14449115,-0.50532734,0.851765,-0.1433274,-0.5039382,0.85227734,-0.14366303,-0.50297534,0.85280436,-0.14377098,-0.5020504,0.8533725,-0.14347416,-0.50116926,0.8539718,-0.14362764,-0.50010324,0.85497355,-0.1441808,-0.49822897,0.85592663,-0.14569528,-0.4961477,0.8573398,-0.14686206,-0.49335587,0.8577698,-0.1464254,-0.49273777,0.857726,-0.14734586,-0.49253964,0.85777336,-0.14820392,-0.4921995,0.8579194,-0.14902642,-0.49169645,0.8578962,-0.14993142,-0.49146172,0.85771835,-0.15122047,-0.4913772,0.8572795,-0.15235762,-0.49179167,0.856854,-0.15311727,-0.49229702,0.85647756,-0.15397952,-0.49268302,0.85570294,-0.1531611,-0.49428147,0.8548395,-0.15258831,-0.49594975,0.85301507,-0.15333626,-0.49885198,0.85103977,-0.15301783,-0.50231147,0.8489044,-0.15382805,-0.5056662,0.8469426,-0.15519875,-0.50852895,0.84645146,-0.1553217,-0.50930846,0.8460209,-0.15515836,-0.510073,0.8456129,-0.15478785,-0.5108615,0.84515786,-0.15463299,-0.5116607,0.8438782,-0.15500173,-0.51365757,0.8433376,-0.1532419,-0.5150714,0.8413856,-0.15391393,-0.51805484,0.8410105,-0.15468857,-0.51843303,0.840288,-0.15420014,-0.51974845,0.839399,-0.15402676,-0.52123415,0.83732826,-0.15203243,-0.5251357,0.83652,-0.15178312,-0.52649415,0.8352524,-0.15192121,-0.5284632,0.83437574,-0.151859,-0.5298642,0.83390653,-0.15170065,-0.53064764,0.83323044,-0.15093234,-0.53192717,0.839998,-0.14770499,-0.52209824,0.85034615,-0.1447273,-0.50593024,0.8569689,-0.14669685,-0.49404907,0.84179324,-0.15334132,-0.51756215,0.8308103,-0.14300685,-0.53786916,0.8312804,-0.14443217,-0.536761,0.8426756,-0.14910905,-0.5173627,0.83429205,-0.14895557,-0.53081924,0.8436025,-0.14915279,-0.51583755,0.84257895,-0.15319642,-0.5163251,0.8345231,-0.14954883,-0.53028893,0.8431005,-0.14927927,-0.516621,0.8354811,-0.15002406,-0.5286436,0.8543512,-0.16289048,-0.4935085,0.8548146,-0.16197559,-0.49300697,0.8551369,-0.16162914,-0.4925616,0.8562033,-0.16298963,-0.49025524,0.8578117,-0.16250704,-0.48759678,0.85938776,-0.16280639,-0.4847131,0.8604753,-0.16276099,-0.48279512,0.86135983,-0.16305868,-0.48111445,0.86251235,-0.1640188,-0.47871736,0.862744,-0.16456689,-0.47811136,0.8629196,-0.16538051,-0.47751325,0.86262953,-0.16630158,-0.47771758,0.86224926,-0.16712166,-0.47811776,0.86184144,-0.16795678,-0.47856024,0.86138415,-0.16860873,-0.4791539,0.8588895,-0.1697242,-0.4832209,0.85843635,-0.16971232,-0.48402977,0.85800856,-0.16953093,-0.48485112,0.85686624,-0.16975439,-0.4867891,0.854689,-0.17222972,-0.48973835,0.8535516,-0.17307244,-0.491422,0.8527775,-0.17433129,-0.49232018,0.85209745,-0.17575943,-0.49298942,0.85109144,-0.17708641,-0.49425057,0.8500227,-0.17781109,-0.49582723,0.84875995,-0.17817509,-0.49785557,0.84828985,-0.17869999,-0.49846828,0.8473781,-0.17769706,-0.5003741,0.84671044,-0.1775645,-0.5015499,0.8462623,-0.17719881,-0.5024348,0.8455894,-0.17551275,-0.50415653,0.8455254,-0.17429279,-0.5046869,0.8461586,-0.17290959,-0.5041011,0.847037,-0.17198288,-0.5029415,0.8478798,-0.17032038,-0.50208646,0.84877694,-0.16881706,-0.5010773,0.84934413,-0.16804257,-0.5003761,0.84994,-0.16755357,-0.49952763,0.85165846,-0.16682254,-0.49683806,0.85189855,-0.16578563,-0.49677363,0.8522233,-0.16515689,-0.496426,0.85577804,-0.16262984,-0.4911164,0.85385126,-0.16366565,-0.4941169,0.8506041,-0.16770977,-0.49834326,0.8512611,-0.16759224,-0.49725989,0.87212193,-0.14379115,-0.4676831,0.8728048,-0.14176519,-0.46702713,0.8731358,-0.14128596,-0.4665535,0.8748029,-0.14071226,-0.46359465,0.8752035,-0.14091644,-0.4627758,0.87600815,-0.1417568,-0.4609932,0.87602305,-0.14270821,-0.4606712,0.8756328,-0.14399359,-0.46101293,0.87510204,-0.14508316,-0.4616788,0.87351197,-0.14709978,-0.4640459,0.8731785,-0.14724645,-0.4646266,0.87122554,-0.15043527,-0.4672637,0.8720591,-0.1504032,-0.4657165,0.87296957,-0.15174435,-0.4635707,0.8736419,-0.15133666,-0.46243608,0.8743282,-0.15145296,-0.46109897,0.8753816,-0.14923541,-0.4598216,0.875741,-0.1489017,-0.45924506,0.876041,-0.14842297,-0.45882758,0.87638736,-0.14711156,-0.4585884,0.87690014,-0.14653836,-0.45779115,0.8785708,-0.14657539,-0.45456463,0.87974614,-0.14564304,-0.4525868,0.88022655,-0.14551648,-0.45169252,0.88157874,-0.1478684,-0.4482787,0.88209033,-0.14795269,-0.4472434,0.8824338,-0.14836909,-0.4464273,0.8825448,-0.14950003,-0.44583008,0.88253015,-0.15065093,-0.44547153,0.88199866,-0.15317452,-0.4456635,0.8820697,-0.15461272,-0.4450259,0.88195366,-0.15566684,-0.4448882,0.88167065,-0.15654396,-0.44514135,0.88093054,-0.15723069,-0.44636288,0.880177,-0.15775079,-0.44766414,0.87931424,-0.15814124,-0.44921917,0.8786027,-0.157628,-0.4507891,0.8783025,-0.15702195,-0.45158488,0.87788945,-0.15688562,-0.4524345,0.87738645,-0.15701525,-0.45336434,0.8769034,-0.15698498,-0.45430848,0.87600905,-0.15656409,-0.45617524,0.87443197,-0.1550539,-0.45970327,0.8739193,-0.15505731,-0.46067593,0.8733624,-0.15525268,-0.46166512,0.8718611,-0.15385833,-0.4649578,0.8713543,-0.15395091,-0.4658764,0.8709155,-0.15368482,-0.46678382,0.87063354,-0.15312056,-0.4674948,0.8697591,-0.15082274,-0.46986338,0.86951935,-0.15132487,-0.47014558,0.86927986,-0.15321669,-0.46997565,0.8689418,-0.15394254,-0.47036353,0.868515,-0.1539594,-0.4711456,0.8670111,-0.15319137,-0.47415632,0.8665769,-0.15307686,-0.4749863,0.8658324,-0.15364607,-0.4761587,0.8656417,-0.15356185,-0.47653243,0.86566514,-0.15313917,-0.47662598,0.8658624,-0.15282758,-0.4763675,0.8650327,-0.15148667,-0.47829926,0.86469924,-0.15197188,-0.4787482,0.86438906,-0.15211669,-0.479262,0.86382496,-0.15178654,-0.48038244,0.86366034,-0.1514327,-0.48079002,0.8635426,-0.15071163,-0.48122784,0.8638744,-0.15002242,-0.48084742,0.86452234,-0.14886127,-0.48004323,0.8647429,-0.14706263,-0.48020023,0.8654777,-0.14500721,-0.47950113,0.86608136,-0.14431575,-0.47861895,0.8667629,-0.14423648,-0.4774076,0.86716306,-0.14445741,-0.47661343,0.86748856,-0.14489421,-0.47588792,0.867819,-0.14597008,-0.47495568,0.8681506,-0.14476104,-0.47471976,0.86873096,-0.14402226,-0.47388193,0.86924744,-0.14384519,-0.47298783,0.86975247,-0.14386371,-0.47205284,0.870177,-0.1442399,-0.47115475,0.8708256,-0.1452805,-0.46963435,0.8728353,-0.14719245,-0.46528807,0.8779371,-0.14668672,-0.4557516,0.8808473,-0.14685026,-0.4500479,0.8642628,-0.14953198,-0.48030198,0.86758804,-0.14634109,-0.47526345,0.87168694,-0.14466314,-0.46822482,0.8653573,-0.15130801,-0.47776833,0.8711899,-0.14534453,-0.46893814,0.87248987,-0.14738122,-0.46587574,0.866416,-0.15253106,-0.4754551,0.8660196,-0.15146981,-0.47651556,0.86659086,-0.15187244,-0.4753473,0.8717722,-0.14828481,-0.46693134,0.87112856,-0.14939548,-0.46777773,0.8220771,0.014408642,-0.56919384,0.82013935,0.017370617,-0.5719001,0.8193381,0.0188941,-0.5729993,0.81869763,0.020597268,-0.5738554,0.81773734,0.02406408,-0.57508826,0.8174918,0.024578676,-0.5754156,0.8166547,0.025805425,-0.5765495,0.816524,0.026216917,-0.57671577,0.8171621,0.02868314,-0.5756938,0.8176859,0.029416565,-0.57491255,0.8188986,0.029684072,-0.57317007,0.81933254,0.029180631,-0.5725755,0.8202343,0.027503315,-0.5713661,0.8210024,0.025611179,-0.57035,0.82141995,0.025154635,-0.56976885,0.82245123,0.024714174,-0.5682985,0.8228914,0.024300046,-0.5676788,0.82360303,0.021473978,-0.56676006,0.82483006,0.020682486,-0.56500226,0.826226,0.017840944,-0.5630563,0.8304421,0.014628441,-0.5569129,0.8359072,0.016197287,-0.54863167,0.8379247,0.016436627,-0.54553837,0.8384363,0.016387282,-0.54475325,0.83894116,0.016108606,-0.54398364,0.8405672,0.015059693,-0.5414978,0.8417985,0.016415412,-0.53954214,0.84280425,0.017181342,-0.5379459,0.8438521,0.017767644,-0.53628165,0.8469086,0.017996011,-0.5314339,0.8491191,0.018997198,-0.52785957,0.85165405,0.018638441,-0.5237729,0.8527151,0.02016618,-0.5219869,0.85299486,0.021193782,-0.52148885,0.8533125,0.021703284,-0.520948,0.8537392,0.021894092,-0.52024025,0.854421,0.021811381,-0.5191233,0.85508066,0.022032937,-0.51802665,0.85620177,0.023169545,-0.51612186,0.8567166,0.02313713,-0.51526827,0.85725325,0.022893412,-0.5143859,0.85773927,0.02249476,-0.51359254,0.8581466,0.021864297,-0.5129388,0.8587548,0.020057123,-0.51199406,0.8596264,0.017219722,-0.5106328,0.86010176,0.016469048,-0.5098566,0.8604,0.015748998,-0.5093758,0.8627059,0.015489988,-0.50546867,0.86307067,0.017158337,-0.5047917,0.8633236,0.017088491,-0.5043613,0.8635397,0.016942838,-0.50399613,0.8639156,0.015030728,-0.5034123,0.86457723,0.013511322,-0.5023184,0.8650741,0.012917473,-0.5014777,0.8654692,0.01208653,-0.50081635,0.86600673,0.009079288,-0.4999499,0.86675495,0.0077677937,-0.4986737,0.8676774,0.0041655935,-0.49711013,0.86765915,0.0032622318,-0.49714887,0.8671955,0.00069959555,-0.49796745,0.86788195,-0.0009946066,-0.49676952,0.86832106,-0.0008906562,-0.4960017,0.8684412,-0.0015442802,-0.4957897,0.86798,-0.008440199,-0.49652734,0.867444,-0.011978502,-0.4973907,0.86728257,-0.015042735,-0.4975889,0.86780345,-0.013333327,-0.49672875,0.8684722,-0.011881354,-0.49559548,0.868963,-0.012704432,-0.49471393,0.87017626,-0.015824893,-0.49248645,0.87135804,-0.02170075,-0.4901675,0.87172925,-0.024575306,-0.48937127,0.87168384,-0.026102006,-0.48937312,0.87153,-0.027647354,-0.48956224,0.87163264,-0.028962659,-0.48930338,0.8712147,-0.031852026,-0.4898678,0.87138796,-0.033673044,-0.48943767,0.8720262,-0.035439502,-0.4881745,0.8725491,-0.037342135,-0.4870971,0.87276936,-0.039408058,-0.48653933,0.872717,-0.04156743,-0.48645365,0.87447804,-0.045911305,-0.48288745,0.8749212,-0.046238188,-0.4820529,0.8752711,-0.04679834,-0.48136306,0.8754591,-0.047469098,-0.48095545,0.87542355,-0.048235215,-0.48094383,0.8746739,-0.051090088,-0.48201182,0.87488925,-0.053044014,-0.48140955,0.874872,-0.05506594,-0.4812137,0.87459546,-0.05721868,-0.48146522,0.8741973,-0.059272382,-0.48193964,0.873661,-0.060747437,-0.48272794,0.8729985,-0.061703604,-0.48380393,0.8686995,-0.062926695,-0.49132618,0.8687509,-0.063964225,-0.49110126,0.8686831,-0.06505105,-0.49107853,0.86852807,-0.065726355,-0.49126258,0.8672788,-0.06975315,-0.49291164,0.8668381,-0.0788618,-0.4923134,0.8671294,-0.080735855,-0.49149606,0.86724365,-0.08266724,-0.4909731,0.8670369,-0.085022956,-0.49093604,0.8675059,-0.088532776,-0.48948476,0.8677074,-0.09064285,-0.48874098,0.86780715,-0.092616715,-0.48819345,0.8675149,-0.094539315,-0.48834434,0.86663276,-0.09622247,-0.48958033,0.86569387,-0.09777461,-0.49093196,0.86419785,-0.09920446,-0.49327537,0.8637991,-0.09911632,-0.49399105,0.86337274,-0.09865665,-0.49482766,0.8626989,-0.09751847,-0.4962265,0.8623455,-0.097194456,-0.49690387,0.8612583,-0.0971572,-0.49879315,0.8602027,-0.096877314,-0.5006657,0.8592584,-0.096568465,-0.50234395,0.8581433,-0.09742688,-0.5040814,0.85841113,-0.09567272,-0.50396127,0.8587761,-0.09397939,-0.50365806,0.8600969,-0.08969567,-0.5021833,0.8600691,-0.08651566,-0.5027885,0.8595358,-0.082412526,-0.5043871,0.85953724,-0.08050142,-0.50469315,0.8607145,-0.06718546,-0.5046352,0.8603591,-0.065365806,-0.5054796,0.86038584,-0.064659916,-0.50552475,0.8611086,-0.058402948,-0.50505555,0.86147773,-0.056638356,-0.50462687,0.85548615,-0.05591174,-0.5147983,0.856489,-0.059376147,-0.5127388,0.85658175,-0.06035786,-0.51246923,0.856519,-0.061407574,-0.51244944,0.8562855,-0.062019974,-0.51276565,0.85234547,-0.068353765,-0.51849294,0.85134435,-0.06948273,-0.51998556,0.8495794,-0.07342179,-0.52232563,0.84978503,-0.07401503,-0.5219072,0.8498842,-0.07468135,-0.52165085,0.8500387,-0.07986939,-0.52062947,0.8496654,-0.081612356,-0.52096844,0.84889305,-0.082974695,-0.5220113,0.8483409,-0.083428256,-0.52283597,0.847367,-0.08396828,-0.5243268,0.8457783,-0.08451185,-0.52679867,0.84468234,-0.08424173,-0.5285973,0.84440845,-0.08353351,-0.529147,0.8398115,-0.07702158,-0.53738654,0.8392699,-0.07710478,-0.53822017,0.8388146,-0.076906055,-0.53895783,0.8389114,-0.07568748,-0.53897965,0.8379348,-0.07654401,-0.54037607,0.83741635,-0.07657967,-0.541174,0.83722705,-0.075833686,-0.5415719,0.8373352,-0.07374992,-0.5416924,0.83745456,-0.07265174,-0.54165626,0.8376757,-0.07165561,-0.541447,0.83799994,-0.07088034,-0.54104716,0.8384798,-0.07070019,-0.54032683,0.83947074,-0.07122719,-0.53871655,0.83991075,-0.07011359,-0.5381766,0.84035265,-0.06948962,-0.5375674,0.84038454,-0.06842346,-0.5376541,0.8407197,-0.0677076,-0.5372207,0.8412122,-0.06719058,-0.5365141,0.84220713,-0.06522627,-0.535194,0.84269387,-0.06473129,-0.5344876,0.8440075,-0.06152668,-0.5327906,0.84367007,-0.059005223,-0.5336096,0.8437204,-0.057130132,-0.53373414,0.8430198,-0.05583687,-0.53497654,0.84323347,-0.054817528,-0.5347453,0.84418935,-0.052409153,-0.53347695,0.84410906,-0.051503673,-0.53369206,0.84425104,-0.050725777,-0.53354204,0.8470077,-0.046347145,-0.5295563,0.8474731,-0.0443584,-0.5289818,0.8487455,-0.040681858,-0.5272343,0.8495208,-0.039101448,-0.52610415,0.84994125,-0.03852753,-0.525467,0.85135525,-0.037531186,-0.5232454,0.8520794,-0.0356848,-0.5221948,0.852978,-0.034378354,-0.5208135,0.8531616,-0.032000247,-0.5206643,0.8520509,-0.03294234,-0.5224213,0.8515057,-0.033255685,-0.52328974,0.8507946,-0.033075184,-0.52445644,0.85018957,-0.032506146,-0.5254723,0.8489825,-0.029548679,-0.52759415,0.84625953,-0.027816089,-0.5320443,0.84540987,-0.027141381,-0.5334281,0.8446542,-0.026139544,-0.53467375,0.8430958,-0.023522278,-0.5372487,0.8417515,-0.020509636,-0.5394755,0.84113353,-0.01857381,-0.5405084,0.8371108,-0.015830018,-0.54680425,0.83639,-0.017483102,-0.5478559,0.8356771,-0.017907422,-0.54892915,0.8349317,-0.017523985,-0.55007464,0.8347659,-0.01678273,-0.5503491,0.8344423,-0.013582214,-0.5509279,0.8346172,-0.012346594,-0.55069196,0.8349894,-0.011318843,-0.55014956,0.8359406,-0.010323504,-0.54872286,0.8369953,-0.00996053,-0.5471195,0.8384306,-0.010468455,-0.54490787,0.8398302,-0.011182477,-0.54273397,0.84023213,-0.011499553,-0.54210496,0.8401173,-0.011990422,-0.54227227,0.8396901,-0.012602159,-0.54291964,0.8418231,-0.013435599,-0.53958625,0.84303945,-0.013205546,-0.5376896,0.84537476,-0.01321234,-0.5340103,0.8463453,-0.01385315,-0.53245443,0.84667766,-0.014647362,-0.53190446,0.8508817,-0.015496035,-0.5251288,0.851336,-0.014666075,-0.5244158,0.85186106,-0.014459865,-0.5235683,0.8523688,-0.014931883,-0.522728,0.8531511,-0.016380575,-0.52140665,0.85450584,-0.019514438,-0.519075,0.85505885,-0.021160616,-0.51809895,0.85660607,-0.024546348,-0.51538676,0.85767496,-0.024045458,-0.5136297,0.8587436,-0.023798408,-0.5118525,0.8604893,-0.021963185,-0.5089949,0.8613316,-0.018140914,-0.50771916,0.8621682,-0.016765688,-0.50634474,0.85981417,0.00898297,-0.5105281,0.85795647,0.007797595,-0.5136632,0.857025,0.0077090254,-0.51521707,0.8516543,0.008484457,-0.5240353,0.85057604,0.007869238,-0.52579325,0.8494815,0.007619502,-0.5275633,0.84541136,0.008395887,-0.53404975,0.83949894,0.008481953,-0.5432951,0.8386692,0.008613198,-0.544573,0.8369382,0.0072522284,-0.5472494,0.83612484,0.0057003945,-0.54850954,0.8356944,0.005542683,-0.54916674,0.83362395,0.0052419226,-0.5523074,0.8325269,0.0051916167,-0.5539603,0.83142084,0.0053321626,-0.5556176,0.82802933,0.006537228,-0.5606468,0.8268975,0.0066386727,-0.56231344,0.8262944,0.0069539743,-0.5631955,0.8252427,0.007766125,-0.56472486,0.824814,0.008213503,-0.5653444,0.8239482,0.009723586,-0.5665817,0.823191,0.011436407,-0.56764936,0.82316685,0.022758026,-0.56734324,0.85922235,0.018074319,-0.51128286,0.86062384,0.014911413,-0.50902295,0.86567616,0.009888802,-0.50050676,0.87097627,-0.060618214,-0.4875712,0.85973805,-0.0966126,-0.50151414,0.86008996,-0.076982476,-0.50430053,0.8502074,-0.070015006,-0.5217714,0.84476507,-0.081508756,-0.5288934,0.8411482,-0.077103116,-0.5352801,0.8432346,-0.06443199,-0.53367037,0.84406817,-0.062377147,-0.5325956,0.8440023,-0.05323472,-0.53369105,0.8463077,-0.047969684,-0.5305302,0.85352325,-0.033957552,-0.51994705,0.85035414,-0.016155537,-0.5259627,0.85935104,-0.023934625,-0.51082575,0.85989684,-0.02391079,-0.5099075,0.8532845,0.0086362045,-0.52137417,0.84745574,0.008168325,-0.5308031,0.82267195,0.012977073,-0.5683682,0.8395988,0.01483477,-0.5430045,0.840113,0.0147596765,-0.5422105,0.85236055,0.01928003,-0.5225991,0.86227757,0.014811645,-0.5062193,0.8674332,-0.0003860434,-0.49755356,0.87407416,-0.045318738,-0.4836741,0.86872864,-0.061991062,-0.4913935,0.86014986,-0.08876705,-0.50225747,0.8606518,-0.071249306,-0.5041844,0.8553704,-0.055248056,-0.5150622,0.8493818,-0.07247839,-0.5227786,0.8389158,-0.07630617,-0.5388855,0.8509141,-0.03792799,-0.52393377,0.84967345,-0.030834956,-0.5264069,0.8381034,-0.015225104,-0.5452988,0.8396535,-0.013179918,-0.5429626,0.86355484,-0.01569378,-0.50401074,0.86089194,0.009220784,-0.50870425,0.85246456,0.008699263,-0.52271265,0.83785516,0.008479331,-0.5458268,0.8520262,0.01884297,-0.52315974,0.8613944,0.014268109,-0.50773627,0.8730181,-0.04332144,-0.48575976,0.8749798,-0.049723066,-0.48159936,0.867137,-0.07035498,-0.49307558,0.86208314,-0.055025116,-0.50377065,0.83863443,-0.07117785,-0.54002416,0.840377,-0.016859373,-0.54174,0.8470821,-0.015271114,-0.5312427,0.84928787,-0.01651002,-0.5276717,0.8638187,-0.015153468,-0.5035749,0.867294,-0.013495198,-0.4976133,0.86995053,-0.060334064,-0.48943415,0.86680406,-0.07712867,-0.49264783,0.8553529,-0.052512962,-0.51537746,0.8493902,-0.07137,-0.5229175,0.8435227,-0.078396305,-0.53134114,0.8388829,-0.07149746,-0.5395956,0.8436472,-0.06386393,-0.5330862,0.8440128,-0.06314608,-0.5325927,0.84821635,-0.016288439,-0.52939934,0.85548365,-0.0502611,-0.5153848,0.8447925,-0.08054895,-0.5289967,0.8399593,-0.016198209,-0.5424076,0.8499699,0.008916931,-0.5267558,0.869442,-0.06061988,-0.49030173,0.8625736,-0.05325686,-0.5031208,0.8557104,-0.048007075,-0.5152233,0.8443318,-0.07915913,-0.5299412,0.8394892,-0.015724413,-0.5431488,0.85559535,-0.02337581,-0.51711726,0.8296213,0.014842398,-0.5581292,0.8685957,-0.03784115,-0.49407443,0.8458719,0.014769927,-0.5331815,0.868999,-0.061274905,-0.49100512,0.8683793,-0.038168974,-0.49442935,0.8682507,-0.03852753,-0.49462754,0.86259437,-0.0514526,-0.5032729,0.8460135,0.011924656,-0.5330281,0.85632515,-0.04658888,-0.5143314,0.8534967,-0.032775298,-0.5200665,0.86519325,-0.02538508,-0.5007955,0.86194944,0.0089063225,-0.50691605,0.86194855,-0.05006358,-0.504518,0.8648569,-0.02468995,-0.501411,0.8505115,-0.043854397,-0.524125,0.86293703,0.007840271,-0.50525063,0.8602603,-0.0476751,-0.5076212,0.86399424,-0.02349463,-0.50295323,0.86331165,0.007125274,-0.5046208,0.8593331,-0.046541248,-0.5092941,0.8635239,-0.022927226,-0.50378656,0.85733485,-0.046158165,-0.51268554,0.86433303,0.0046862946,-0.50289804,0.8583591,-0.046088383,-0.5109751,0.86490834,0.0029068708,-0.5019214,0.86534095,0.0006936351,-0.5011832,0.86570966,-0.001569791,-0.50054395,0.865118,-0.011342684,-0.5014401,0.8659044,-0.0034242047,-0.5001978,0.8654353,-0.009696376,-0.5009268,0.86590725,-0.005360383,-0.5001758,0.8657237,-0.0075403173,-0.5004654,0.9484103,-0.10664201,-0.29857236,0.9491348,-0.1046607,-0.29696658,0.9494041,-0.10414877,-0.2962852,0.950314,-0.1037843,-0.29348278,0.9509965,-0.102865495,-0.29158917,0.95099217,-0.10467599,-0.2909584,0.9517757,-0.10623367,-0.2878148,0.9526284,-0.10519465,-0.2853652,0.9531893,-0.104908235,-0.28359208,0.95373785,-0.10483367,-0.28176937,0.9543327,-0.10425215,-0.27996534,0.95526004,-0.1039165,-0.2769108,0.9557856,-0.10303838,-0.27542165,0.95597243,-0.10338769,-0.274641,0.95627093,-0.10482347,-0.27305305,0.95641726,-0.106548846,-0.27186993,0.9564789,-0.11316768,-0.26896322,0.95677173,-0.11267494,-0.26812714,0.95670986,-0.11522669,-0.26726237,0.9574709,-0.117550984,-0.26349792,0.9577149,-0.116052955,-0.26327538,0.9578576,-0.11622215,-0.26268074,0.9580336,-0.11718032,-0.26161104,0.9580754,-0.1180232,-0.26107848,0.9579051,-0.1190149,-0.26125315,0.9576768,-0.119114794,-0.26204342,0.95715135,-0.11897939,-0.26401728,0.9568443,-0.119334824,-0.26496834,0.956262,-0.11944986,-0.26701066,0.9514805,-0.123841695,-0.28168786,0.95156103,-0.12493084,-0.28093398,0.95158404,-0.12601465,-0.28037137,0.95145786,-0.1272675,-0.28023368,0.9511209,-0.12825309,-0.28092742,0.9506723,-0.12869595,-0.2822401,0.95015174,-0.12906443,-0.28382042,0.94490176,-0.13168035,-0.29970145,0.9442366,-0.13287131,-0.30126804,0.94354683,-0.13378528,-0.30301955,0.94286734,-0.13440335,-0.30485556,0.9411117,-0.13540997,-0.30979508,0.94046146,-0.13561264,-0.31167537,0.93982077,-0.13566332,-0.31358,0.9378705,-0.13343051,-0.32030493,0.9370587,-0.13405722,-0.32241225,0.935909,-0.13389845,-0.3258,0.9305669,-0.13728084,-0.3394101,0.926563,-0.14175503,-0.3484056,0.9250785,-0.14266267,-0.35196194,0.92360044,-0.14331219,-0.35556147,0.92177993,-0.14369513,-0.36010203,0.9205972,-0.14444397,-0.3628178,0.91666967,-0.14476942,-0.3725031,0.9150553,-0.14528213,-0.3762539,0.9133999,-0.14607634,-0.37995052,0.912761,-0.14624155,-0.3814195,0.9121723,-0.1460156,-0.38291153,0.9114087,-0.14541706,-0.384952,0.9091757,-0.14412689,-0.3906751,0.90570813,-0.14743015,-0.3974381,0.9037675,-0.14898929,-0.40125602,0.9020866,-0.14999212,-0.40465072,0.90128446,-0.14978822,-0.4065092,0.90076387,-0.15035264,-0.40745375,0.900312,-0.15135351,-0.4080814,0.8996854,-0.15195999,-0.40923634,0.8987229,-0.152462,-0.41115987,0.8987144,-0.15173092,-0.41144887,0.8988467,-0.15099798,-0.41142955,0.8998517,-0.14960104,-0.40973967,0.9013363,-0.14372203,-0.40857902,0.90150166,-0.13925251,-0.4097603,0.9017342,-0.13736857,-0.40988457,0.9022078,-0.13558559,-0.40943572,0.9024436,-0.13521579,-0.40903828,0.9049525,-0.13282748,-0.40424964,0.9051899,-0.13281223,-0.40372285,0.914234,-0.12934327,-0.38398775,0.9144198,-0.1271424,-0.38428035,0.9147843,-0.1264594,-0.38363752,0.9158018,-0.124952845,-0.3816987,0.91631615,-0.12274565,-0.38118005,0.9168763,-0.12059547,-0.38051882,0.917622,-0.12018932,-0.3788461,0.9184386,-0.12004044,-0.37690958,0.9199137,-0.12002186,-0.3733008,0.9207161,-0.11850723,-0.3718036,0.9224064,-0.11794365,-0.36777142,0.9227844,-0.11739353,-0.36699829,0.92315096,-0.11664874,-0.3663133,0.92390466,-0.115773514,-0.36468714,0.92425287,-0.11583615,-0.36378357,0.92479604,-0.11654716,-0.36217263,0.9263009,-0.11613418,-0.3584405,0.92763984,-0.11259191,-0.35610026,0.9278696,-0.11208717,-0.35566047,0.9287414,-0.11188899,-0.3534407,0.9290193,-0.11220918,-0.35260782,0.92925537,-0.11272398,-0.3518207,0.92939264,-0.11351661,-0.3512027,0.9294603,-0.11441397,-0.35073227,0.92947644,-0.1164998,-0.350002,0.93089354,-0.12080185,-0.34473762,0.93130636,-0.12035181,-0.34377906,0.9317148,-0.12005227,-0.3427754,0.932491,-0.12011488,-0.34063604,0.93323284,-0.12041098,-0.3384932,0.93542343,-0.1191419,-0.3328486,0.93598723,-0.11858002,-0.3314613,0.9364484,-0.119446434,-0.3298437,0.9370635,-0.119564906,-0.32804912,0.93872994,-0.1187036,-0.3235671,0.93941694,-0.1185496,-0.3216236,0.94121933,-0.11717688,-0.31682137,0.94198805,-0.11348439,-0.31587946,0.94219387,-0.112703726,-0.3155448,0.9428894,-0.11117085,-0.31400737,0.94355273,-0.109492086,-0.3126016,0.9437824,-0.109127834,-0.31203517,0.94400007,-0.10915497,-0.31136653,0.94426876,-0.109544575,-0.31041345,0.9453078,-0.10933449,-0.30730942,0.94605505,-0.108577155,-0.30527183,0.9466531,-0.10832818,-0.30350107,0.95128334,-0.10580314,-0.28959584,0.95627075,-0.112862915,-0.26982993,0.9574363,-0.11885759,-0.26303723,0.95571125,-0.11920285,-0.2690848,0.9478766,-0.12961704,-0.2910833,0.93959403,-0.13460948,-0.31471148,0.9062251,-0.13359271,-0.4011347,0.91390264,-0.1314336,-0.3840666,0.9339382,-0.12017914,-0.336625,0.9400872,-0.11854783,-0.31965998,0.9472359,-0.1082739,-0.30169684,0.9478404,-0.10769947,-0.2999989,0.95617604,-0.112456396,-0.27033466,0.95735556,-0.11784883,-0.26378396,0.95519364,-0.11919776,-0.27091867,0.9514658,-0.12279983,-0.2821933,0.9467315,-0.13003618,-0.29460153,0.9452223,-0.13125116,-0.29887784,0.9393691,-0.13411121,-0.31559443,0.9318034,-0.13620694,-0.33643723,0.90119916,-0.14494823,-0.40844834,0.90706944,-0.13403857,-0.3990722,0.91556275,-0.12570196,-0.38202596,0.92609745,-0.1164406,-0.35886642,0.9295639,-0.11850213,-0.3490963,0.93056375,-0.120964326,-0.34556997,0.9567307,-0.116168045,-0.2667795,0.957064,-0.118177205,-0.26469374,0.9244211,-0.14048955,-0.35455376,0.910706,-0.14457549,-0.38692713,0.9445787,-0.1096767,-0.3094221,0.95152146,-0.10612509,-0.28869408,0.956964,-0.11808416,-0.26509634,0.9385134,-0.13341704,-0.31842178,0.9216087,-0.14039253,-0.36183882,0.90099543,-0.14617245,-0.4084615,0.91956866,-0.12022482,-0.37408483,0.925064,-0.11666235,-0.36145046,0.9451767,-0.12811027,-0.30038092,0.92354095,-0.139325,-0.3572964,0.9353849,-0.1340707,-0.3272307,0.9001923,-0.14883262,-0.40927073,0.9406887,-0.11823983,-0.31799996,0.9461494,-0.12702073,-0.29777014,0.95329094,-0.12061914,-0.27692485,0.9099858,-0.14415379,-0.38877442,0.9232103,-0.13911405,-0.35823178,0.92191863,-0.124970585,-0.366672,0.9546474,-0.11942619,-0.2727373,0.9458492,-0.12702747,-0.2987196,0.92283756,-0.13910058,-0.35919613,0.90875614,-0.13439839,-0.39509422,0.921109,-0.12588196,-0.36839095,0.91220385,-0.13325483,-0.38746265,0.9479385,-0.11883309,-0.29545113,0.9449372,-0.1272616,-0.30149335,0.9226947,-0.13423455,-0.36140782,0.9297667,-0.12008955,-0.34801203,0.9212167,-0.12667498,-0.36784947,0.9476578,-0.11898708,-0.29628804,0.94567555,-0.12666564,-0.299422,0.9229831,-0.13414843,-0.36070272,0.9302416,-0.1209558,-0.34643936,0.92146873,-0.12710775,-0.36706814,0.9462597,-0.11949555,-0.3005219,0.91047823,-0.13430034,-0.3911429,0.9237715,-0.13409941,-0.3586969,0.92163944,-0.12711202,-0.36663762,0.9445127,-0.11991866,-0.30580273,0.9344664,-0.12686689,-0.33268204,0.9229418,-0.13058448,-0.36211336,0.945039,-0.123147406,-0.3028796,0.9230624,-0.12683555,-0.36313698,0.92225385,-0.12735878,-0.3650034,0.94189817,0.03308868,-0.33426476,0.94129837,0.03537985,-0.33571652,0.942816,0.033551194,-0.33162054,0.9432195,0.031778663,-0.33064643,0.94353765,0.029761644,-0.32992575,0.9441958,0.028045151,-0.32818863,0.9447645,0.026105374,-0.32670867,0.9449051,0.025103511,-0.32638055,0.94523895,0.021634158,-0.32566118,0.94492227,0.021765377,-0.32657033,0.9447434,0.021957139,-0.32707456,0.94479907,0.02135992,-0.3269532,0.9451342,0.021020727,-0.32600525,0.9455682,0.019801471,-0.32482105,0.94587034,0.015927909,-0.32415366,0.9459614,0.01385652,-0.323983,0.94591576,0.0092991,-0.32427913,0.9458151,0.006207383,-0.32464635,0.94466734,0.002926421,-0.32801682,0.9444848,0.0020503546,-0.3285489,0.9442595,0.0012884891,-0.32919958,0.9440456,0.00054366986,-0.32981458,0.94440717,-0.00016455253,-0.32877815,0.9445756,-0.002486747,-0.32828453,0.94466025,-0.0032384775,-0.32803428,0.9448143,-0.0046258243,-0.32757357,0.9448064,-0.006822815,-0.3275582,0.9447473,-0.0077738417,-0.3277073,0.9445674,-0.008637961,-0.32820404,0.94400066,-0.010078184,-0.32978976,0.94335383,-0.011647839,-0.33158392,0.9436669,-0.011871103,-0.33068416,0.9438911,-0.012776071,-0.3300097,0.9439447,-0.014091784,-0.32980266,0.94376236,-0.014761551,-0.330295,0.9434974,-0.015277908,-0.33102745,0.9428019,-0.01516205,-0.3330085,0.93916655,-0.02866452,-0.34226385,0.93947387,-0.030414226,-0.34126794,0.9394353,-0.032506146,-0.3411814,0.9385419,-0.03492341,-0.3433941,0.93823415,-0.038978875,-0.34379837,0.93731344,-0.046908963,-0.3453159,0.9370738,-0.05103044,-0.34538177,0.93689793,-0.051745348,-0.3457524,0.93660074,-0.052080706,-0.34650636,0.9363402,-0.051408313,-0.3473101,0.9350271,-0.05044314,-0.35096982,0.934354,-0.052419394,-0.3524697,0.9341249,-0.052700218,-0.35303462,0.9330053,-0.050742805,-0.3562673,0.9332675,-0.051398076,-0.3554856,0.9333648,-0.052250944,-0.35510558,0.93307644,-0.053185314,-0.35572428,0.93267566,-0.05357505,-0.35671535,0.9319758,-0.05330793,-0.35857967,0.9307094,-0.05157689,-0.36210474,0.9300416,-0.05118021,-0.36387238,0.92919743,-0.0518713,-0.3659255,0.9283593,-0.0519088,-0.36804125,0.9266096,-0.059656866,-0.3712624,0.9265788,-0.061615083,-0.37101912,0.926326,-0.061951917,-0.37159404,0.92600507,-0.061963815,-0.37239105,0.92571914,-0.061565705,-0.3731671,0.92375535,-0.057929892,-0.3785765,0.9226542,-0.058802802,-0.3811187,0.92158276,-0.059314866,-0.3836234,0.9205972,-0.057950363,-0.38618976,0.91927516,-0.05559692,-0.38966936,0.919067,-0.051176876,-0.3907643,0.9166747,-0.056631573,-0.39560142,0.91652936,-0.056233335,-0.39599463,0.91623545,-0.05632522,-0.39666113,0.9154638,-0.05554419,-0.39854854,0.9145532,-0.05812221,-0.4002678,0.91449636,-0.05965353,-0.4001723,0.9139625,-0.06026945,-0.40129805,0.91332495,-0.060286466,-0.40274435,0.9122346,-0.059207764,-0.40536708,0.9112702,-0.05730544,-0.40780237,0.9110987,-0.058038786,-0.4080817,0.9107149,-0.05851184,-0.40886995,0.9102915,-0.058629293,-0.40979514,0.9099388,-0.05767295,-0.4107131,0.9096326,-0.05643412,-0.4115625,0.90982026,-0.058692247,-0.4108313,0.90975666,-0.0594817,-0.4108586,0.9094388,-0.060080487,-0.4114748,0.9090333,-0.0605467,-0.41230154,0.9086713,-0.060732204,-0.41307145,0.9081965,-0.05889979,-0.4143789,0.90800816,-0.06095162,-0.41449487,0.9072943,-0.06459021,-0.41550586,0.90671253,-0.071701504,-0.41560957,0.90646887,-0.07240015,-0.41601974,0.9061502,-0.072711304,-0.41665915,0.9022924,-0.06813434,-0.4257066,0.8973599,-0.062703855,-0.43682185,0.8970996,-0.061455168,-0.43753332,0.89682,-0.058404613,-0.4385234,0.8962144,-0.056400083,-0.44002122,0.89612716,-0.055525385,-0.44031012,0.89586484,-0.054924656,-0.44091886,0.8954822,-0.0545384,-0.4417433,0.89622116,-0.052776884,-0.44045684,0.89634085,-0.051195566,-0.44039997,0.89584905,-0.051934276,-0.44131312,0.89537734,-0.051617723,-0.4423065,0.8950997,-0.050630413,-0.44298202,0.8949795,-0.04942005,-0.44336146,0.8949318,-0.04722571,-0.44369686,0.8949953,-0.044979934,-0.4438022,0.8948358,-0.043965153,-0.44422513,0.8944419,-0.044286944,-0.4449858,0.89384735,-0.043803304,-0.44622666,0.89375895,-0.042064693,-0.44657072,0.89370394,-0.040126678,-0.4468593,0.894051,-0.038525864,-0.44630545,0.89491856,-0.03815623,-0.44459522,0.89531934,-0.03765889,-0.44382995,0.8957533,-0.037338678,-0.44298062,0.8949545,-0.035815965,-0.44471762,0.8948039,-0.033558905,-0.44519627,0.8950081,-0.032529976,-0.44486216,0.89508843,-0.031146778,-0.44479936,0.8956427,-0.031037753,-0.44369,0.89583755,-0.029884342,-0.44337565,0.8947427,-0.028494122,-0.4456721,0.8944494,-0.027887587,-0.44629872,0.8942541,-0.027103843,-0.44673818,0.8942137,-0.025722094,-0.44690076,0.89378554,-0.024931513,-0.4478011,0.89299446,-0.024009706,-0.44942686,0.8927124,-0.023164509,-0.450031,0.8925958,-0.022104653,-0.4503155,0.8927079,-0.02106682,-0.4501432,0.8929104,-0.018224467,-0.44986543,0.8927264,-0.019497395,-0.4501771,0.8924184,-0.02065957,-0.45073563,0.891995,-0.021261087,-0.45154512,0.8914839,-0.021354884,-0.45254874,0.8907896,-0.020727742,-0.45394298,0.89028156,-0.01941897,-0.45499635,0.8880577,-0.015134754,-0.45948273,0.88674957,-0.013904287,-0.46204105,0.8864263,-0.013454313,-0.46267402,0.88634366,-0.012697638,-0.4628538,0.8864908,-0.011785874,-0.46259606,0.88657475,-0.0096758725,-0.46248418,0.88729554,-0.005650176,-0.46116662,0.88469183,0.013159447,-0.46599045,0.8840692,0.013764499,-0.4671533,0.8834843,0.014509244,-0.46823606,0.8831339,0.015524912,-0.46886408,0.88300824,0.016821025,-0.46905592,0.88319767,0.018010434,-0.46865502,0.8835083,0.01917443,-0.46802297,0.88266873,0.018135702,-0.46964565,0.8820478,0.016216,-0.4708809,0.88123304,0.015259941,-0.47243568,0.88028574,0.014783635,-0.47421348,0.8784389,0.01419814,-0.47764373,0.87657034,0.01464644,-0.48105082,0.8754239,0.015478068,-0.48310804,0.8746185,0.01714046,-0.48450875,0.8747832,0.018225214,-0.48417163,0.8757043,0.019124968,-0.48246884,0.8774247,0.023018667,-0.47916186,0.87878424,0.0247193,-0.47657865,0.8830645,0.032576,-0.46811956,0.88353246,0.03434836,-0.46710873,0.8837867,0.0349344,-0.46658415,0.88411486,0.035367936,-0.46592915,0.88334864,0.035957288,-0.46733525,0.8832671,0.036417134,-0.4674538,0.8826719,0.037689418,-0.46847612,0.8819468,0.03865681,-0.4697611,0.8817156,0.03948206,-0.4701262,0.8816794,0.040442597,-0.47011256,0.8819075,0.041485634,-0.46959358,0.88358176,0.046564978,-0.46595594,0.8836789,0.047921848,-0.465634,0.88395184,0.04842409,-0.4650637,0.88457847,0.049882997,-0.46371627,0.8842886,0.050371617,-0.46421576,0.8847563,0.05085332,-0.46327126,0.8852947,0.05110357,-0.46221387,0.88472235,0.051478945,-0.46326694,0.88488495,0.052420974,-0.46285057,0.8848505,0.05345759,-0.4627979,0.88517284,0.05405242,-0.46211183,0.885654,0.054158717,-0.46117657,0.88628393,0.05521476,-0.4598392,0.8868175,0.055712525,-0.45874912,0.88701886,0.056580428,-0.45825347,0.8864072,0.05870311,-0.459169,0.8866584,0.059769943,-0.45854595,0.8879365,0.06265094,-0.45567936,0.88833374,0.06301072,-0.45485467,0.886922,0.063475184,-0.4575371,0.88563144,0.06328721,-0.46005633,0.88523704,0.06393273,-0.46072552,0.8850538,0.0650612,-0.46091956,0.8846411,0.06415377,-0.46183804,0.8841781,0.06342331,-0.46282455,0.8834857,0.06357119,-0.46412477,0.88293266,0.06434518,-0.4650695,0.88301164,0.065122455,-0.46481127,0.8832204,0.06575601,-0.46432534,0.88322175,0.06621693,-0.464257,0.88385916,0.06763175,-0.462838,0.88439375,0.06853647,-0.46168205,0.88438493,0.06955328,-0.46154708,0.8850457,0.07108085,-0.46004525,0.884724,0.07207881,-0.4605084,0.8841385,0.07258198,-0.46155283,0.8840631,0.072726436,-0.46167442,0.8850313,0.07311402,-0.45975423,0.88629586,0.0749668,-0.45701158,0.88765895,0.07562368,-0.45424953,0.88968414,0.07567717,-0.45026103,0.89080876,0.07593559,-0.4479883,0.8912897,0.07565934,-0.44707742,0.8916774,0.07564745,-0.44630587,0.8919318,0.076020576,-0.4457338,0.8922171,0.07621087,-0.44512984,0.89340824,0.07545453,-0.44286373,0.8937429,0.075913474,-0.44210947,0.8943802,0.07606729,-0.4407923,0.8951704,0.07593892,-0.43920746,0.8961103,0.07481642,-0.43748012,0.896997,0.07582587,-0.4354847,0.897267,0.07581482,-0.43493,0.8974661,0.075558186,-0.43456367,0.89797187,0.07417389,-0.4337566,0.89882517,0.07311664,-0.43216583,0.8993376,0.071183704,-0.4314219,0.89969194,0.069330536,-0.43098462,0.89993966,0.06869037,-0.43056977,0.90021276,0.06510794,-0.43055537,0.9004366,0.06337739,-0.43034562,0.9003686,0.061088488,-0.4308185,0.900457,0.060103487,-0.4307722,0.9008827,0.05863849,-0.4300835,0.9009429,0.058302417,-0.43000305,0.90124726,0.055972114,-0.42967486,0.90120804,0.055353425,-0.42983732,0.9027729,0.05223038,-0.42693448,0.9032166,0.052787866,-0.42592624,0.9036827,0.051890858,-0.42504695,0.90428317,0.050503533,-0.42393556,0.9045568,0.04956641,-0.42346212,0.90459406,0.048696518,-0.4234835,0.90456694,0.04811427,-0.42360783,0.9047019,0.047514975,-0.42338726,0.90474284,0.04687994,-0.42337066,0.9047541,0.045959685,-0.42344746,0.9044065,0.04557921,-0.4242304,0.90433574,0.043495834,-0.42459974,0.9048432,0.042680245,-0.42360014,0.9057723,0.041018136,-0.42177486,0.9067996,0.03959784,-0.41969812,0.9071766,0.039268244,-0.41891363,0.90733176,0.03861345,-0.41863835,0.907433,0.03773206,-0.4184993,0.90728354,0.035799675,-0.41899294,0.90701175,0.034551136,-0.41968548,0.90716755,0.03374456,-0.41941416,0.9072815,0.03304948,-0.41922298,0.90765226,0.032614242,-0.418454,0.9080086,0.032296598,-0.41770488,0.90815145,0.03174292,-0.41743666,0.90863985,0.02821889,-0.41662616,0.90915465,0.02642391,-0.41561952,0.90933055,0.025603551,-0.4152859,0.9095787,0.02533947,-0.41475853,0.91046447,0.02617771,-0.41275805,0.9112845,0.025669215,-0.41097653,0.9123557,0.025345428,-0.408613,0.9132508,0.025396552,-0.4066055,0.913951,0.02503022,-0.40505207,0.91444594,0.024081124,-0.40399098,0.91499895,0.022885785,-0.40280652,0.9159939,0.021569442,-0.4006119,0.9167292,0.022833822,-0.398856,0.9171138,0.022724774,-0.3979772,0.9193638,0.02457355,-0.39264026,0.9197488,0.024986722,-0.39171147,0.920172,0.025023427,-0.39071387,0.9202871,0.025428968,-0.3904166,0.92020434,0.026111333,-0.39056656,0.920249,0.027006635,-0.39040044,0.9205489,0.027345661,-0.38966894,0.9236965,0.027207669,-0.38215768,0.92461073,0.026434159,-0.37999496,0.9252274,0.025821634,-0.3785334,0.9256726,0.02511364,-0.37749127,0.9258329,0.023353556,-0.3772107,0.9264852,0.01995403,-0.37580195,0.9275104,0.019429132,-0.37329212,0.92828286,0.017655961,-0.37145558,0.92854065,0.017442968,-0.3708208,0.92904305,0.0177003,-0.36954793,0.92958075,0.017846905,-0.36818635,0.93038446,0.017378246,-0.36617312,0.93162096,0.0182065,-0.36297506,0.93278813,0.018334271,-0.35995853,0.93345505,0.017912459,-0.3582468,0.93381995,0.01775489,-0.35730255,0.9358591,0.015325499,-0.35204116,0.9367967,0.015394513,-0.34953526,0.93716204,0.01638895,-0.34850928,0.937655,0.017382538,-0.34713253,0.93880326,0.020770324,-0.3438272,0.9392302,0.021566106,-0.34260988,0.9395067,0.022383088,-0.34179837,0.9397646,0.023350934,-0.34102362,0.94013584,0.02439467,-0.33992577,0.9413668,0.028181473,-0.33620572,0.9413947,0.031003589,-0.33587927,0.94176006,0.031520586,-0.334805,0.9418658,0.032253943,-0.33443758,0.94508356,0.004412712,-0.3267991,0.9441043,0.00097318075,-0.32964543,0.93870217,-0.033964343,-0.34305188,0.9339507,-0.052138563,-0.3535784,0.92818993,-0.051042344,-0.36858937,0.92670625,-0.057698537,-0.37133053,0.9247407,-0.05898309,-0.3759996,0.91468245,-0.05662479,-0.40018693,0.9114663,-0.057196543,-0.40737927,0.8970537,-0.059878077,-0.43784615,0.8955054,-0.045420915,-0.4427268,0.89521205,-0.04399576,-0.44346336,0.89624083,-0.031146778,-0.44247282,0.889705,-0.017609207,-0.45619628,0.88129795,0.02862523,-0.47169334,0.8846002,0.048970614,-0.4637718,0.8848123,0.04929066,-0.46333313,0.88784933,0.06346923,-0.455736,0.884361,0.07274011,-0.4611014,0.8930682,0.075121455,-0.44360563,0.9070982,0.035229858,-0.4194422,0.91779244,0.023160966,-0.39638442,0.92997867,0.017353574,-0.36720386,0.9404772,0.025111971,-0.33892772,0.94454247,0.021882175,-0.32765955,0.9391437,-0.026625153,-0.34249115,0.93352765,-0.051263664,-0.3548214,0.9279853,-0.050409086,-0.36919123,0.9270151,-0.0533334,-0.37121215,0.91518867,-0.055433497,-0.3991953,0.89607406,-0.030439725,-0.4428598,0.88897526,-0.016155537,-0.4576701,0.8849556,0.012734263,-0.46550128,0.8830125,0.044347238,-0.46724978,0.8887832,0.06318513,-0.45395163,0.9012918,0.054568905,-0.429762,0.9022083,0.052488234,-0.42809469,0.9083993,0.029426813,-0.41706693,0.9261224,0.021703284,-0.3765982,0.94332194,-0.011138253,-0.33169198,0.93618995,-0.051181994,-0.3477482,0.9148676,-0.055746652,-0.3998871,0.89546764,-0.044523578,-0.44289437,0.90166175,0.05293417,-0.4291899,0.90406126,0.04478573,-0.42505,0.9155697,0.021999687,-0.40155718,0.94092757,0.026577279,-0.33756328,0.92714584,-0.052475583,-0.3710079,0.892966,-0.02008367,-0.4496759,0.8865651,0.0059518027,-0.4625657,0.9041049,0.044023782,-0.4250368,0.94145006,-0.016479386,-0.33674946,0.9392977,-0.0244118,-0.34223366,0.9275221,-0.05127557,-0.37023443,0.89639485,-0.052053444,-0.44018936,0.89300203,-0.0191651,-0.44964442,0.8872973,-0.0034991868,-0.46118468,0.93653095,0.015043482,-0.35026193,0.94080865,-0.017650088,-0.33847833,0.90806735,-0.051615104,-0.41563156,0.88682455,0.0041169566,-0.46208796,0.88189906,0.02969861,-0.47050193,0.9424477,0.0060574203,-0.33429873,0.93955964,-0.022247788,-0.3416616,0.90780747,-0.04425884,-0.41704527,0.8916341,-0.01316335,-0.45256513,0.89248836,0.04823215,-0.4484843,0.94027215,-0.019216232,-0.3398808,0.9422006,0.005274228,-0.3350077,0.93396664,-0.036332045,-0.35550854,0.9126349,-0.043874882,-0.4064142,0.9043838,-0.04060694,-0.4247836,0.92050326,-0.047142237,-0.38788068,0.8915215,-0.0122459885,-0.45281276,0.89252746,0.047739312,-0.44845918,0.9341343,-0.03551527,-0.3551504,0.93986195,-0.020613566,-0.340932,0.9047587,-0.035963688,-0.4244035,0.91289115,-0.040779885,-0.406161,0.904511,-0.03905928,-0.4246578,0.9206345,-0.045595016,-0.38775405,0.8906514,0.0024654404,-0.45468014,0.89292765,0.044970438,-0.44794858,0.93435746,-0.0348169,-0.3546321,0.9046418,-0.035433546,-0.4246971,0.91281873,-0.040426485,-0.40635902,0.9047197,-0.035787016,-0.4245015,0.9206011,-0.04541841,-0.38785407,0.8995198,0.012075445,-0.4367132,0.8919975,0.02372336,-0.45141736,0.900616,0.033329707,-0.43333596,0.898005,-0.009184156,-0.43988922,0.9346914,-0.0008867223,-0.35545892,0.9196301,-0.02482843,-0.39199993,0.90821177,-0.027634127,-0.41759765,0.9303199,-0.022022419,-0.36608738,0.9008719,0.032102626,-0.43289638,0.9007868,0.03251166,-0.43304294,0.8996761,0.01125701,-0.436413,0.8980761,-0.009593503,-0.43973553,0.9288228,0.0011769093,-0.37052232,0.900758,0.006796741,-0.4342679,0.9259126,0.003062319,-0.37772536,0.93334216,-0.0080774585,-0.35889715,0.9179894,0.014201835,-0.39635068,0.90316224,-0.0024190363,-0.42929256,0.92580205,0.0031945214,-0.37799507,0.91793066,0.01426787,-0.3964841,0.93329036,-0.008011418,-0.35903344,0.91781336,0.014399941,-0.39675078,0.9148454,0.0003877441,-0.4038041,0.91164416,-0.013624528,-0.41075456,0.7916027,0.017694341,-0.6107798,0.7890786,0.020293111,-0.6139569,0.78794336,0.022505842,-0.6153363,0.787672,0.023241052,-0.6156563,0.7874775,0.025446009,-0.61581796,0.7874549,0.027633682,-0.6157525,0.7875459,0.029687528,-0.6155405,0.78820086,0.031230096,-0.6146251,0.7888215,0.031985626,-0.61378956,0.788557,0.033951506,-0.61402386,0.7871357,0.036990263,-0.6156696,0.78699297,0.037639264,-0.6158129,0.7870391,0.03837068,-0.61570865,0.78782684,0.037946604,-0.61472684,0.78853625,0.03729511,-0.6138564,0.79042214,0.034308333,-0.611601,0.7915415,0.032173045,-0.61026794,0.79225254,0.029668702,-0.60947156,0.7924152,0.0285187,-0.609315,0.7926863,0.02743432,-0.6090121,0.79269886,0.02560951,-0.6090752,0.7940097,0.021848923,-0.6075123,0.793955,0.01989527,-0.6076509,0.79303324,0.016126486,-0.6089648,0.7921174,0.014804017,-0.6101891,0.7922059,0.0138931135,-0.6100957,0.7925744,0.012959193,-0.60963744,0.792853,0.011879479,-0.6092971,0.7929139,0.010661714,-0.6092404,0.79273576,0.008545847,-0.6095055,0.7920993,0.0066828984,-0.6103557,0.79154426,0.0058776555,-0.6110835,0.79112077,0.0050279447,-0.6116393,0.79137605,0.0026008617,-0.6113241,0.7914225,0.00060840044,-0.61126924,0.7913571,-0.0013951496,-0.61135256,0.7914892,-0.0028430622,-0.6111765,0.7913061,-0.004221828,-0.6114056,0.7907767,-0.005242844,-0.6120822,0.789567,-0.0066301776,-0.61362857,0.7891808,-0.007392025,-0.6141165,0.78784233,-0.011472256,-0.6157701,0.7874522,-0.012322754,-0.6162525,0.785422,-0.013747541,-0.6188079,0.7849225,-0.01518422,-0.61940795,0.7833219,-0.015579591,-0.621421,0.78920203,0.0008641043,-0.614133,0.7889505,0.002627326,-0.6144511,0.7889219,0.003600546,-0.61448294,0.7868443,0.008043874,-0.6170991,0.78561395,0.007230056,-0.6186747,0.78440243,0.006945391,-0.6202133,0.78317094,0.006833814,-0.6217689,0.7821551,0.005897206,-0.6230559,0.77824193,0.003774352,-0.6279532,0.77863693,0.004683672,-0.6274573,0.7791582,0.005329659,-0.62680477,0.7805067,0.0062892777,-0.6251158,0.7805845,0.0076527605,-0.62500346,0.78088754,0.008870561,-0.6246087,0.7813622,0.009598303,-0.62400407,0.78366697,0.011149251,-0.6210812,0.7841802,0.015831718,-0.62033117,0.7823358,0.01709028,-0.6226223,0.7806353,0.018664068,-0.6247082,0.78025615,0.019308992,-0.62516195,0.7800239,0.023861365,-0.6252947,0.7803057,0.025543967,-0.6248764,0.78009653,0.026660815,-0.6250909,0.7802633,0.027442781,-0.62484884,0.7818918,0.02721029,-0.62282,0.78315705,0.02648278,-0.62125975,0.7853797,0.024443174,-0.61853147,0.7861086,0.022976955,-0.6176611,0.7861791,0.021603528,-0.617621,0.78611994,0.020206224,-0.6177437,0.7865998,0.019669412,-0.6171497,0.78726727,0.019470014,-0.6163045,0.78823173,0.018195415,-0.6151096,0.788667,0.016313143,-0.61460406,0.7887918,0.015302494,-0.6144701,0.7843227,-0.01424686,-0.6201895,0.78920853,0.0052069947,-0.6141033,0.788753,0.033265013,-0.6138096,0.78521484,-0.012769276,-0.61909175,0.77994573,0.0056416253,-0.62582177,0.7851376,0.012806618,-0.61918896,0.7846971,0.015302494,-0.61969054,0.7918228,0.017054403,-0.61051273,0.7870204,-0.008469166,-0.6168688,0.78920394,0.014522833,-0.61395955,0.7851614,0.014049024,-0.61913186,0.7882415,-0.004334361,-0.6153507,0.7918177,0.016337816,-0.61053896,0.7881656,0.008235675,-0.6154082,0.78879917,0.0076459656,-0.61460346,0.79136956,0.015472943,-0.6111423,0.7890528,0.0064971745,-0.61429113,0.7907875,0.014802349,-0.6119117,0.7900155,0.014414602,-0.6129174,0.76518595,-0.051929157,-0.6417117,0.76782805,-0.049997143,-0.63870215,0.7695839,-0.048957005,-0.63666624,0.77023304,-0.048681248,-0.63590187,0.77088803,-0.048601232,-0.6351138,0.7715145,-0.048688035,-0.634346,0.7721172,-0.04920728,-0.6335721,0.7753381,-0.050507907,-0.62952346,0.775559,-0.04952054,-0.62932974,0.7762966,-0.049346946,-0.6284333,0.778473,-0.049837127,-0.6256964,0.7808871,-0.04958519,-0.62270105,0.7848897,-0.049998928,-0.6176149,0.78575915,-0.051195566,-0.61641026,0.7880729,-0.056206197,-0.6130106,0.7878199,-0.05725605,-0.61323845,0.7874436,-0.058285486,-0.61362475,0.7873994,-0.059258815,-0.6135883,0.7875903,-0.060983986,-0.613174,0.7873887,-0.061154015,-0.6134161,0.78690886,-0.060078822,-0.6141376,0.786349,-0.058270253,-0.6150283,0.78622985,-0.057621893,-0.6152417,0.7861537,-0.05649375,-0.6154436,0.7837377,-0.05652779,-0.61851424,0.78209275,-0.059585467,-0.62030673,0.7815677,-0.060000524,-0.62092817,0.7810104,-0.06016224,-0.62161344,0.779694,-0.05988831,-0.6232901,0.77931046,-0.059246916,-0.62383085,0.77857715,-0.05757262,-0.6249024,0.77627325,-0.057070624,-0.627808,0.7763796,-0.05763725,-0.62762463,0.7761933,-0.058018435,-0.6278199,0.7746371,-0.05842163,-0.6297017,0.7734529,-0.059178848,-0.6310851,0.7721089,-0.059457902,-0.63270265,0.7705817,-0.060233634,-0.6344886,0.769999,-0.05989343,-0.63522774,0.77006936,-0.058664996,-0.6352571,0.7701929,-0.05806092,-0.63516283,0.7652275,-0.059160046,-0.64103585,0.76487607,-0.059983626,-0.6413786,0.76441735,-0.06060798,-0.6418666,0.7604311,-0.06322948,-0.64633316,0.757869,-0.065382816,-0.6491222,0.7552221,-0.06727895,-0.652007,0.75484294,-0.0622734,-0.6529428,0.7550368,-0.061628647,-0.65277976,0.75595015,-0.059633065,-0.6519074,0.7565856,-0.059503835,-0.6511816,0.7575302,-0.05777161,-0.65023875,0.7577763,-0.056309983,-0.65008014,0.758479,-0.054616604,-0.6494048,0.760738,-0.052150466,-0.64696056,0.7615972,-0.051961537,-0.6459641,0.7730819,-0.050402302,-0.63230056,0.7748477,-0.051238067,-0.630068,0.7615216,-0.062429976,-0.6451258,0.75713485,-0.059158377,-0.6505745,0.7638396,-0.05221344,-0.64329064,0.77716327,-0.04971461,-0.62733215,0.78427374,-0.05586746,-0.6178944,0.77636534,-0.056538027,-0.62774223,0.78486156,-0.05532804,-0.6171962,0.76649606,-0.05803712,-0.63962144,0.7742109,-0.051176876,-0.6308553,0.7767294,-0.056332123,-0.6273102,0.78591233,-0.05554419,-0.61583817,0.7853959,-0.055079512,-0.6165383,0.7698313,-0.057892524,-0.6356164,0.768926,-0.057863604,-0.6367139,0.77805334,-0.056965057,-0.6256102,0.7774132,-0.05643079,-0.62645376,0.79714906,-0.055229366,-0.60125124,0.7989301,-0.05386776,-0.59900665,0.79949623,-0.053541005,-0.59828013,0.8021355,-0.053472914,-0.5947431,0.804682,-0.054135,-0.59123284,0.80554044,-0.05491787,-0.5899903,0.8069237,-0.05417416,-0.5881661,0.807298,-0.05456899,-0.5876156,0.8075074,-0.055307567,-0.5872587,0.8072815,-0.058537304,-0.58725625,0.8069959,-0.059672214,-0.5875344,0.8059837,-0.061444934,-0.58873993,0.8056091,-0.06243164,-0.58914876,0.8052137,-0.06288077,-0.58964133,0.8030913,-0.06471773,-0.59233093,0.80163187,-0.065780714,-0.59418786,0.8001332,-0.06668555,-0.5961039,0.7995802,-0.06651201,-0.5968648,0.79904205,-0.06608523,-0.59763247,0.79825675,-0.06597627,-0.598693,0.79753107,-0.06565653,-0.5996945,0.7953884,-0.06361387,-0.6027524,0.7946174,-0.06336546,-0.6037946,0.7946025,-0.060545035,-0.6041037,0.7948472,-0.05914993,-0.6039199,0.79556304,-0.05822765,-0.6030664,0.7963594,-0.057172738,-0.6021154,0.7967169,-0.056117646,-0.6017416,0.7961045,-0.06402549,-0.6017628,0.7959929,-0.057752926,-0.60254455,0.8098354,-0.15697828,-0.56526494,0.8099632,-0.15544288,-0.5655061,0.810226,-0.1558907,-0.5650061,0.8118024,-0.15750004,-0.56229055,0.8122889,-0.15844586,-0.56132144,0.81288975,-0.15911226,-0.560262,0.81408894,-0.15971468,-0.55834615,0.8140376,-0.1605458,-0.5581826,0.81410813,-0.16185114,-0.5577026,0.81438804,-0.16246329,-0.55711555,0.8147855,-0.1635631,-0.5562119,0.8151111,-0.16380689,-0.55566275,0.8165746,-0.16356474,-0.5535816,0.8167366,-0.16372445,-0.55329525,0.8174582,-0.16290225,-0.5524717,0.81769294,-0.16232038,-0.55229557,0.81818914,-0.16286026,-0.55140096,0.818964,-0.16424069,-0.549839,0.82017803,-0.16702422,-0.5471845,0.8203733,-0.16858017,-0.5464142,0.8203324,-0.17086457,-0.5457655,0.8204532,-0.17307748,-0.544886,0.8202346,-0.17390846,-0.5449505,0.819082,-0.17586176,-0.54605615,0.8193814,-0.17653121,-0.54539067,0.819585,-0.17734312,-0.54482096,0.81953084,-0.1782891,-0.5445937,0.8190506,-0.17899004,-0.54508597,0.8179739,-0.1796122,-0.5464962,0.8169293,-0.17955016,-0.54807687,0.81596863,-0.17871337,-0.54977894,0.8142835,-0.17679791,-0.5528876,0.8128601,-0.1765664,-0.5550521,0.8119363,-0.1762023,-0.5565178,0.81131,-0.1751285,-0.5577689,0.8106305,-0.17352739,-0.5592553,0.80978465,-0.17217265,-0.560897,0.8088543,-0.16951755,-0.56304395,0.80788773,-0.16789803,-0.56491387,0.80778337,-0.16617216,-0.56557304,0.8072161,-0.16525272,-0.5666513,0.807863,-0.16301328,-0.566378,0.80835474,-0.16205123,-0.56595236,0.80871165,-0.16150467,-0.56559855,0.80884814,-0.15979376,-0.5658893,0.8076436,-0.15970622,-0.5676317,0.80731046,-0.15855356,-0.5684282,0.8074954,-0.15716842,-0.5685501,0.8078005,-0.15670055,-0.5682459,0.80806404,-0.15650357,-0.5679252,0.8091871,-0.15754206,-0.5660359,0.8169977,-0.16360849,-0.55294394,0.8189594,-0.17499928,-0.5465169,0.8095712,-0.15735525,-0.5655385,0.80897677,-0.16011843,-0.56561357,0.80889815,-0.16082336,-0.5655259,0.70675135,-0.100111745,-0.700343,0.7067023,-0.09944193,-0.7004878,0.7073939,-0.09763557,-0.70004374,0.7080951,-0.097259,-0.6993869,0.7079956,-0.09652777,-0.6995889,0.7081947,-0.09571342,-0.69949937,0.7086195,-0.09477856,-0.6991963,0.7091901,-0.09458346,-0.698644,0.70996124,-0.0947769,-0.6978341,0.71005446,-0.0962818,-0.69753313,0.71042913,-0.09684504,-0.6970735,0.7116368,-0.099543706,-0.69545966,0.7128158,-0.099006,-0.694328,0.7132918,-0.09944525,-0.6937762,0.71299356,-0.100091465,-0.6939898,0.7114646,-0.10162949,-0.69533414,0.7118268,-0.10402001,-0.6946096,0.7117356,-0.10469805,-0.6946011,0.71266836,-0.10467599,-0.69364744,0.7135247,-0.10486758,-0.6927375,0.71344626,-0.105620116,-0.6927041,0.71316195,-0.10609628,-0.692924,0.71197534,-0.107507944,-0.69392586,0.7117422,-0.10801294,-0.6940866,0.7107303,-0.10922275,-0.6949337,0.7096109,-0.11033915,-0.69590056,0.7071784,-0.11086768,-0.6982887,0.7069301,-0.11038145,-0.698617,0.70666516,-0.110222206,-0.6989102,0.7063408,-0.10964968,-0.69932795,0.7060964,-0.10804008,-0.6998251,0.70599914,-0.10748934,-0.7000081,0.70606524,-0.10626413,-0.7001284,0.7062035,-0.10539808,-0.70011985,0.70682156,-0.10365554,-0.69975626,0.7063846,-0.102492444,-0.7003685,0.7066707,-0.101347946,-0.70024645,0.70839953,-0.11342339,-0.69663846,0.70829886,-0.11220231,-0.6969386,0.709856,-0.11123861,-0.69550735,0.7111331,-0.11001391,-0.69439656,0.712268,-0.10845687,-0.69347775,0.71313554,-0.10758759,-0.6927212,0.7137615,-0.10784015,-0.6920368,0.7137151,-0.10896016,-0.69190925,0.7133166,-0.111927964,-0.6918464,0.712424,-0.112505555,-0.692672,0.7128819,-0.11288151,-0.69213957,0.71346533,-0.112710476,-0.691566,0.7136122,-0.117872626,-0.6905532,0.713135,-0.118989564,-0.69085443,0.7117051,-0.1202892,-0.69210285,0.71031034,-0.11924854,-0.6937139,0.7099587,-0.118661225,-0.6941745,0.7094712,-0.11631865,-0.6950687,0.7084837,-0.11478819,-0.69632936,0.71251565,-0.11284421,-0.69252264,0.658133,-0.14617245,-0.738576,0.6552662,-0.14390087,-0.7415651,0.6544016,-0.14260025,-0.7425791,0.6523671,-0.14019424,-0.74482393,0.6512562,-0.1371356,-0.74636394,0.6502922,-0.13391866,-0.74778724,0.6508022,-0.1320487,-0.7476762,0.6517416,-0.13072737,-0.74708986,0.6531561,-0.12904917,-0.74614567,0.65361035,-0.12862998,-0.7458202,0.656563,-0.12844236,-0.7432547,0.6596901,-0.1294616,-0.74030316,0.66102624,-0.13044514,-0.7389374,0.66225183,-0.13167185,-0.7376212,0.6630915,-0.13297611,-0.7366322,0.664877,-0.1380017,-0.734094,0.66621685,-0.1437035,-0.73178166,0.6664498,-0.14584365,-0.7311459,0.6659297,-0.14628541,-0.73153144,0.6622037,-0.14577112,-0.7350082,0.6636294,-0.14573231,-0.7337288,0.62902564,-0.04559966,-0.776046,0.62902755,-0.04553333,-0.77604836,0.6320848,-0.045487363,-0.77356297,0.63249743,-0.043760788,-0.77332526,0.63315505,-0.043132436,-0.7728223,0.6338483,-0.042674378,-0.77227926,0.63827,-0.042231556,-0.7686533,0.63885933,-0.04208518,-0.7681716,0.63950586,-0.04145166,-0.7676679,0.64017946,-0.041003812,-0.7671303,0.6522868,-0.03663011,-0.75708663,0.6536823,-0.03557746,-0.7559324,0.65514296,-0.03476162,-0.7547048,0.6581706,-0.03346526,-0.7521247,0.65918577,-0.032204706,-0.75129026,0.6603368,-0.0312558,-0.75031894,0.6687824,-0.027163545,-0.7429618,0.67005765,-0.025894174,-0.7418573,0.67141473,-0.025883926,-0.7406297,0.67383665,-0.027325371,-0.7383749,0.67683256,-0.029415818,-0.7355491,0.6794064,-0.03144823,-0.733088,0.68007,-0.03212464,-0.7324431,0.6800282,-0.032828197,-0.7324506,0.6793483,-0.034431133,-0.7330078,0.6834934,-0.038346943,-0.7289488,0.6864138,-0.03881199,-0.7261747,0.6892038,-0.039666895,-0.723481,0.689652,-0.040571205,-0.72300345,0.69023126,-0.042323504,-0.72235,0.6908953,-0.045068417,-0.7215487,0.6937046,-0.047704034,-0.71867806,0.69396645,-0.04822676,-0.71839035,0.6954727,-0.052254274,-0.71664995,0.69823647,-0.05557823,-0.71370643,0.6990136,-0.05701957,-0.7128315,0.7078795,-0.054211654,-0.7042498,0.7079315,-0.051966656,-0.7043667,0.7081235,-0.050753042,-0.70426214,0.7106318,-0.04720868,-0.70197845,0.71075106,-0.045185953,-0.70199084,0.7109922,-0.04425967,-0.70180553,0.7117478,-0.04380164,-0.7010681,0.7123325,-0.044240974,-0.70044637,0.7127299,-0.045066748,-0.6999894,0.71255773,-0.047355026,-0.7000136,0.71286815,-0.049413264,-0.6995551,0.7141872,-0.045729104,-0.6984594,0.7163913,-0.04029022,-0.69653434,0.71713245,-0.036345623,-0.69598854,0.717151,-0.034354407,-0.6960706,0.7173747,-0.032187667,-0.69594365,0.7172875,-0.028284635,-0.69620305,0.71644866,-0.026684737,-0.6971293,0.7162207,-0.025725432,-0.6973996,0.7159828,-0.02378649,-0.6977126,0.7161491,-0.022871451,-0.69757247,0.71689504,-0.020996979,-0.69686484,0.7177964,-0.01924007,-0.6959871,0.71819943,-0.015661359,-0.695661,0.71790785,-0.014778596,-0.69598126,0.7189728,-0.01343393,-0.6949083,0.719588,-0.012990749,-0.69427973,0.7210937,-0.01276582,-0.69271994,0.7281054,-0.011095578,-0.68537533,0.73040557,-0.0089327535,-0.6829553,0.73304075,-0.00728474,-0.6801457,0.735786,-0.0062637357,-0.6771851,0.7371693,-0.0060643023,-0.67568076,0.73851466,-0.006204132,-0.6742088,0.74162,-0.007925471,-0.6707734,0.74213016,-0.008571444,-0.670201,0.7425748,-0.009372499,-0.6696976,0.74354535,-0.010165083,-0.6686082,0.74436855,-0.011468799,-0.6676706,0.7453698,-0.012283537,-0.666538,0.7493307,-0.013645269,-0.6620553,0.75122625,-0.014548428,-0.6598844,0.7516729,-0.014930214,-0.6593671,0.751724,-0.015657902,-0.659292,0.7527977,-0.021271337,-0.65790814,0.75349355,-0.021767251,-0.65709484,0.753991,-0.022409633,-0.65650237,0.7544783,-0.024152834,-0.6558805,0.7545232,-0.024863347,-0.65580213,0.7538188,-0.025263764,-0.6565965,0.7531165,-0.02539664,-0.6573969,0.75241363,-0.025275681,-0.6582058,0.7517114,-0.024950223,-0.65902007,0.751114,-0.02431801,-0.65972453,0.7460031,-0.026896019,-0.6653992,0.7448545,-0.027163545,-0.6666738,0.7436818,-0.027218005,-0.6679795,0.7435571,-0.029927,-0.6680024,0.74274045,-0.033722486,-0.6687297,0.74242294,-0.03473088,-0.6690306,0.74174386,-0.0354787,-0.66974425,0.74122185,-0.03651086,-0.67026645,0.74018353,-0.037965514,-0.67133224,0.73897535,-0.03912527,-0.6725955,0.73785174,-0.03909299,-0.6738298,0.7366936,-0.038709786,-0.67511773,0.73516446,-0.039201986,-0.67675424,0.73240364,-0.03961234,-0.67971736,0.73122096,-0.039653316,-0.6809872,0.7281268,-0.038639862,-0.6843524,0.72655547,-0.03866202,-0.6860192,0.72497374,-0.038834028,-0.68768096,0.7223148,-0.038198754,-0.6905087,0.71999836,-0.03810167,-0.6929291,0.7206185,-0.038730156,-0.6922492,0.7212904,-0.040021144,-0.6914756,0.72018147,-0.042137943,-0.69250494,0.7206969,-0.04225371,-0.6919613,0.7216632,-0.042759534,-0.6909225,0.7221228,-0.04438734,-0.6903393,0.72220767,-0.045792103,-0.69015884,0.72280586,-0.04537328,-0.68956,0.7233519,-0.044441883,-0.68904793,0.72434187,-0.04434649,-0.6880133,0.7257385,-0.043862972,-0.6865709,0.7275243,-0.04282254,-0.6847442,0.7284162,-0.04253467,-0.68381333,0.72927016,-0.042752746,-0.6828889,0.7302626,-0.043399807,-0.6817866,0.7346145,-0.048260815,-0.67676616,0.7355526,-0.04757984,-0.6757948,0.73854566,-0.04683073,-0.67257506,0.739635,-0.046764284,-0.67138153,0.74150217,-0.04814496,-0.6692209,0.74260074,-0.048650645,-0.667965,0.74214774,-0.049827006,-0.66838163,0.74155444,-0.05084662,-0.668963,0.74098223,-0.051108778,-0.66957694,0.73149526,-0.06193657,-0.6790276,0.7327427,-0.06459532,-0.6774331,0.73220026,-0.06676369,-0.67780924,0.73154867,-0.068867296,-0.6783022,0.731106,-0.069885746,-0.6786753,0.7305359,-0.070747755,-0.6791995,0.7298599,-0.07140912,-0.6798568,0.7284983,-0.07095858,-0.68136275,0.7271534,-0.07097725,-0.6827959,0.72655624,-0.070841216,-0.6834454,0.7248825,-0.067998275,-0.6855083,0.7246748,-0.06701538,-0.6858246,0.7248526,-0.065091975,-0.68582195,0.7238206,-0.063061014,-0.68710047,0.72350144,-0.061334398,-0.68759274,0.72387075,-0.05951395,-0.687364,0.72289217,-0.059587132,-0.6883868,0.7222851,-0.058685344,-0.68910104,0.72089183,-0.05493156,-0.6908672,0.7218398,-0.056660496,-0.68973684,0.72196144,-0.057724006,-0.68952125,0.72189534,-0.060691275,-0.68933576,0.72128063,-0.06240618,-0.68982583,0.7201937,-0.063661456,-0.690846,0.71953905,-0.06419049,-0.6914789,0.71898454,-0.064882725,-0.691991,0.7185861,-0.06584875,-0.6923135,0.71805984,-0.06658682,-0.69278884,0.71729326,-0.06665665,-0.69357574,0.7165477,-0.06626888,-0.694383,0.7155506,-0.066711,-0.69536823,0.715233,-0.06778919,-0.6955906,0.7144071,-0.068812825,-0.69633853,0.7129191,-0.06818881,-0.6979231,0.71195763,-0.068862185,-0.6988379,0.71095866,-0.069396034,-0.6998013,0.7102705,-0.0693399,-0.7005054,0.70903486,-0.06853572,-0.701835,0.70683265,-0.06868534,-0.7040383,0.70902675,-0.06896921,-0.7018008,0.7092185,-0.06995032,-0.70150983,0.70924747,-0.07113373,-0.7013615,0.708231,-0.07315834,-0.7021801,0.70256364,-0.077600986,-0.7073771,0.7016034,-0.077643536,-0.7083249,0.6912149,-0.07993391,-0.71821487,0.68973076,-0.08108067,-0.7195119,0.687378,-0.08196059,-0.72166055,0.68442065,-0.08400404,-0.7242317,0.6813314,-0.08529804,-0.7269882,0.67982125,-0.08554438,-0.7283716,0.67909896,-0.08591625,-0.7290014,0.678345,-0.085841544,-0.7297118,0.67762375,-0.086299986,-0.7303276,0.67691815,-0.08698939,-0.73089993,0.67639744,-0.08673299,-0.7314123,0.6758934,-0.08620664,-0.7319402,0.6754795,-0.08740539,-0.73218024,0.6694227,-0.09160858,-0.73721164,0.6688974,-0.09257933,-0.7375672,0.6682744,-0.09324805,-0.7380475,0.66719687,-0.09358916,-0.7389786,0.6663248,-0.09458856,-0.739638,0.66530293,-0.09524185,-0.7404735,0.66502225,-0.096641436,-0.74054426,0.6650894,-0.09808508,-0.7402941,0.66499865,-0.09890256,-0.74026686,0.66468644,-0.099479176,-0.74046993,0.6641566,-0.099606454,-0.7409281,0.6636565,-0.0995284,-0.7413866,0.662575,-0.09911454,-0.74240875,0.66145486,-0.09889746,-0.7434358,0.6626446,-0.09974381,-0.7422623,0.663117,-0.101178475,-0.741646,0.6620023,-0.10172614,-0.74256635,0.6608057,-0.101814255,-0.7436193,0.6615416,-0.10257557,-0.74286,0.6616958,-0.103643686,-0.7425743,0.6605546,-0.10658607,-0.7431736,0.65935963,-0.11048654,-0.74366504,0.6581406,-0.11240226,-0.74445736,0.65561783,-0.11538252,-0.74622524,0.65510505,-0.117210746,-0.74639064,0.6539581,-0.118238166,-0.7472339,0.65313405,-0.11941601,-0.7477671,0.65545106,-0.11990339,-0.7456588,0.6565048,-0.12032305,-0.7446636,0.65645367,-0.120769665,-0.7446363,0.654723,-0.12307891,-0.745781,0.6529912,-0.12423062,-0.74710727,0.6502441,-0.12534338,-0.74931407,0.6494106,-0.12536372,-0.7500332,0.64858526,-0.12516752,-0.7507798,0.6506138,-0.12578143,-0.7489197,0.651934,-0.1253959,-0.74783546,0.6526482,-0.12535699,-0.7472188,0.6534933,-0.12560546,-0.7464381,0.6540989,-0.12622444,-0.74580294,0.65343463,-0.12704603,-0.74624556,0.65260005,-0.12775096,-0.74685526,0.65212804,-0.12833253,-0.7471678,0.6512982,-0.13004966,-0.74759465,0.6506559,-0.13066815,-0.7480459,0.6492744,-0.13293558,-0.74884635,0.64955986,-0.13383761,-0.748438,0.6498911,-0.13636567,-0.74769384,0.65064746,-0.13767086,-0.74679625,0.65084046,-0.13988534,-0.74621636,0.65102017,-0.1408101,-0.74588555,0.6513147,-0.1416808,-0.7454635,0.6511259,-0.14249572,-0.745473,0.6507144,-0.14328186,-0.7456816,0.6501158,-0.14370692,-0.74612176,0.6483591,-0.14164199,-0.7480428,0.64701605,-0.14066163,-0.74938947,0.64645034,-0.13886932,-0.75021154,0.64622444,-0.13997823,-0.75020003,0.6458555,-0.14102112,-0.75032246,0.64523613,-0.14203848,-0.7506633,0.64432675,-0.14244002,-0.751368,0.6426085,-0.14215825,-0.7528914,0.64096296,-0.14134,-0.75444645,0.6391295,-0.14101097,-0.7560618,0.63723606,-0.14092152,-0.7576749,0.636049,-0.13956639,-0.7589223,0.635905,-0.14062457,-0.75884753,0.6364108,-0.14158121,-0.7582454,0.63649035,-0.14205028,-0.7580909,0.6361842,-0.1425514,-0.75825375,0.634708,-0.14436635,-0.7591469,0.6276322,-0.15174942,-0.7635771,0.62635905,-0.1537926,-0.76421344,0.6244733,-0.1559816,-0.7653123,0.62243474,-0.15790063,-0.7665784,0.62168616,-0.15848117,-0.7670659,0.6217117,-0.158254,-0.7670921,0.6220613,-0.15474911,-0.7675236,0.6224044,-0.15124227,-0.7679443,0.6227396,-0.14773528,-0.76835525,0.62306726,-0.14422469,-0.7687565,0.62338686,-0.14071226,-0.7691482,0.62369734,-0.13719806,-0.7695313,0.624001,-0.13368392,-0.7699034,0.6242971,-0.1301663,-0.77026606,0.62458533,-0.12664707,-0.77061903,0.62486565,-0.12312623,-0.77096224,0.6250892,-0.12022991,-0.7712381,0.6259242,-0.119097866,-0.77073634,0.6268232,-0.11513694,-0.77060765,0.6260881,-0.11237514,-0.7716123,0.62580115,-0.11053393,-0.7721109,0.62590575,-0.1090296,-0.77224,0.6261466,-0.10550311,-0.7725345,0.6263797,-0.10197364,-0.7728194,0.6266049,-0.098442875,-0.7730946,0.62682223,-0.094911,-0.7733601,0.62703025,-0.09137947,-0.77361673,0.6272318,-0.087845124,-0.7738627,0.62742555,-0.084309675,-0.7740988,0.62761134,-0.08077317,-0.7743254,0.627789,-0.07723742,-0.774542,0.62795764,-0.073698916,-0.77475005,0.62812096,-0.07015949,-0.7749462,0.6282738,-0.06661918,-0.7751348,0.62841994,-0.06307969,-0.7753124,0.6285582,-0.05953787,-0.7754804,0.62868875,-0.055995174,-0.7756384,0.62881124,-0.052451774,-0.7757869,0.62892574,-0.04890938,-0.77592546,0.6289914,-0.04677619,-0.7760038,0.644001,-0.041116133,-0.763919,0.656736,-0.034339156,-0.75333834,0.667425,-0.028199434,-0.7441429,0.69469136,-0.050664466,-0.7175214,0.69988126,-0.058350228,-0.7118718,0.70900476,-0.051360693,-0.70333093,0.71773124,-0.030032573,-0.69567233,0.71835685,-0.017484771,-0.6954551,0.7226217,-0.012939612,-0.69112265,0.71998143,-0.040210176,-0.6928274,0.7337484,-0.0486591,-0.67767656,0.73918325,-0.051350456,-0.6715439,0.7223226,-0.055569664,-0.68932,0.72023374,-0.053290904,-0.69168156,0.7006151,-0.077446364,-0.709324,0.6927418,-0.078996085,-0.7168462,0.68056583,-0.08533201,-0.7277009,0.6676772,-0.093219206,-0.7385914,0.6564326,-0.11425149,-0.7456827,0.6497649,-0.13101633,-0.7487592,0.6450549,-0.040973082,-0.76303697,0.64920515,-0.03859388,-0.75963366,0.6806182,-0.03673232,-0.73171693,0.7073908,-0.055993386,-0.70460135,0.70984167,-0.05117854,-0.70249957,0.72564447,-0.012673798,-0.6879531,0.7516325,-0.016625874,-0.65937257,0.7197971,-0.037471503,-0.69317245,0.7198647,-0.041717265,-0.69285965,0.731787,-0.046377752,-0.6799536,0.738068,-0.051902015,-0.67272717,0.7249032,-0.06601541,-0.68568015,0.72222465,-0.054633625,-0.6894974,0.71597934,-0.066217855,-0.6949739,0.7084023,-0.06840134,-0.70248663,0.6500296,-0.12580332,-0.7494231,0.63510007,-0.13785481,-0.7600289,0.6290289,-0.14988758,-0.7627951,0.6905933,-0.04413367,-0.7218956,0.75167644,-0.01757345,-0.6592978,0.75236464,-0.020345997,-0.65843254,0.7198052,-0.036679547,-0.69320637,0.73207575,-0.05953275,-0.67861694,0.6994208,-0.07746847,-0.7104992,0.6239389,-0.1387031,-0.7690655,0.66274554,-0.036549218,-0.74795216,0.7355465,-0.05461327,-0.67526937,0.6960762,-0.07808363,-0.71370924,0.64916563,-0.1320351,-0.7490999,0.62682396,-0.117364764,-0.7702709,0.6243989,-0.13783875,-0.7688475,0.6296452,-0.07022073,-0.77370274,0.6564141,-0.038806867,-0.75340194,0.70698917,-0.056691084,-0.7049485,0.73732275,-0.015256572,-0.6753683,0.73309267,-0.05747051,-0.6776963,0.629862,-0.08147905,-0.77242154,0.65604,-0.0399598,-0.75366753,0.7169233,-0.03830442,-0.6960989,0.73704696,-0.018629113,-0.6755848,0.7066582,-0.06614898,-0.7044562,0.63430274,-0.091769785,-0.7676186,0.6333701,-0.06864704,-0.77079827,0.63488024,-0.11484326,-0.76402754,0.67938656,-0.035344075,-0.7329289,0.65605885,-0.04041624,-0.75362676,0.69844824,-0.069758266,-0.7122526,0.64543104,-0.06611496,-0.7609518,0.6573349,-0.06358234,-0.7509115,0.6582462,-0.08671434,-0.74779177,0.66907823,-0.061049428,-0.7406803,0.6469126,-0.11232171,-0.7542466,0.6484529,-0.11839892,-0.7519911,0.6699947,-0.06208934,-0.7397648,0.66968954,-0.06174263,-0.74007016,0.6588521,-0.087406226,-0.7471774,0.6472129,-0.11266688,-0.75393736,0.6713862,-0.067847826,-0.73799545,0.721913,-0.053860977,-0.68988454,0.6732627,-0.06601541,-0.73645043,0.721135,-0.05310877,-0.69075596,0.6752801,-0.064194776,-0.73476243,0.6784632,-0.061488364,-0.73205656,0.6880273,-0.07228542,-0.7220757,0.7012878,-0.058869086,-0.7104433,0.68873876,-0.07254473,-0.7213711,0.70277905,-0.05875853,-0.7089774,0.6894969,-0.07248945,-0.72065204,0.70544964,-0.058140893,-0.7063713,0.70476276,-0.05840973,-0.70703447,0.69050694,-0.07231514,-0.7197017,0.65102893,-0.14611337,-0.7448572,0.6504056,-0.14588752,-0.7454458,0.650458,-0.1450039,-0.7455725,0.6520478,-0.14217347,-0.7447284,0.6524834,-0.14217006,-0.7443474,0.653558,-0.14261548,-0.74331874,0.6541655,-0.14381145,-0.7425536,0.65484434,-0.1445131,-0.74181867,0.6547595,-0.14487912,-0.7418221,0.65434015,-0.14559068,-0.74205273,0.9784074,0.03483897,-0.20372826,0.97854996,0.03626727,-0.20279236,0.9787575,0.03710951,-0.20163509,0.97913516,0.035958957,-0.20000345,0.97945905,0.036082376,-0.1983885,0.9796276,0.03527763,-0.19769965,0.97971964,0.033178154,-0.197607,0.9795747,0.030702014,-0.19872302,0.97947365,0.030245416,-0.19929013,0.9791265,0.029940497,-0.20103446,0.9786766,0.031221636,-0.20302038,0.97857356,0.032851104,-0.20326,0.9783986,0.033913143,-0.2039265,0.9766069,0.016750224,-0.21437898,0.97642463,0.017280271,-0.21516597,0.97639436,0.018626522,-0.21519066,0.9762901,0.02017893,-0.21552369,0.97628474,0.021539647,-0.2154161,0.9763875,0.022003142,-0.21490295,0.9765578,0.023483934,-0.21397045,0.97684336,0.024349503,-0.21256594,0.97691715,0.024380965,-0.21222281,0.9770398,0.02352219,-0.21175434,0.97705185,0.022058561,-0.21185634,0.977015,0.020020533,-0.21222834,0.9769492,0.018773124,-0.21264483,0.97680056,0.017575031,-0.21342868,0.9760348,0.023226632,-0.21637122,0.9760101,0.02546472,-0.21623133,0.9760719,0.026352411,-0.21584542,0.9776008,0.028364625,-0.20854789,0.97767526,0.028060405,-0.2082398,0.97770643,0.027671099,-0.20814542,0.97771,0.027192416,-0.20819141,0.9775266,0.026152208,-0.20918372,0.9772386,0.02557376,-0.21059608,0.9764981,0.024702257,-0.21410559,0.97630084,0.023811907,-0.21510379,0.9768271,0.025359014,-0.2125224,0.97426116,0.012358426,-0.2250833,0.97417915,0.0130307125,-0.22540018,0.97425085,0.014996638,-0.22496729,0.9744707,0.0155803375,-0.22397381,0.9750896,0.016743429,-0.22117843,0.975625,0.018401613,-0.21867171,0.97591984,0.019724835,-0.21723592,0.97609466,0.01900137,-0.21651363,0.9761836,0.017223177,-0.21626112,0.9762884,0.016585737,-0.21583751,0.97635216,0.015524077,-0.21562809,0.976223,0.014950628,-0.21625239,0.9760358,0.014513416,-0.21712558,0.97540265,0.013689404,-0.22000515,0.97515076,0.013605965,-0.22112408,0.9744014,0.012854417,-0.2244475,0.9752886,0.01726406,-0.22025901,0.9737235,0.014688993,-0.22725925,0.9736003,0.015186636,-0.22775376,0.97395134,0.017709715,-0.22606462,0.97420317,0.018634984,-0.22490208,0.9749857,0.020339949,-0.22133487,0.9752368,0.020224102,-0.2202368,0.9753624,0.018389694,-0.21984057,0.9752719,0.018172411,-0.22026035,0.9750379,0.017992554,-0.22130822,0.9743794,0.016452003,-0.22430788,0.9741233,0.015393678,-0.22549224,0.9739218,0.014802349,-0.22640075,0.9746669,0.017396124,-0.22298378,0.97364706,0.009357987,-0.2278679,0.97319764,0.009458477,-0.22977576,0.9731426,0.010715474,-0.22995357,0.97335416,0.012193096,-0.22898267,0.97355646,0.012212644,-0.22811982,0.97370327,0.011224229,-0.2275433,0.97377455,0.009582926,-0.22731316,0.9725929,0.011359642,-0.23223686,0.9725071,0.0115966145,-0.2325844,0.9723029,0.012613157,-0.2333837,0.9724011,0.013580338,-0.23291999,0.97254103,0.014398391,-0.23228587,0.97271985,0.015176385,-0.23148584,0.972807,0.0148543175,-0.23114033,0.9729105,0.013576166,-0.23078316,0.9697317,0.019843305,-0.24336544,0.96998495,0.020603228,-0.24229051,0.9701054,0.019847477,-0.24187097,0.9702927,0.019850932,-0.2411185,0.97034454,0.01897074,-0.24098046,0.9704115,0.018698037,-0.24073194,0.9703873,0.018263591,-0.24086288,0.97029763,0.017683256,-0.24126723,0.9698713,0.017270021,-0.24300514,0.9695794,0.019064419,-0.24403343,0.96952313,0.019689912,-0.24420731,0.96950173,0.020341737,-0.24423891,0.9675568,0.019913983,-0.25186765,0.9675556,0.021223577,-0.25176525,0.9679418,0.020597268,-0.25032854,0.9682487,0.020873418,-0.24911593,0.9685427,0.020619437,-0.24799156,0.9690506,0.01924344,-0.246111,0.96908426,0.018802922,-0.24601234,0.9690705,0.017712219,-0.24614766,0.9688895,0.017733553,-0.24685775,0.9681655,0.01737479,-0.24970695,0.9683239,0.01669313,-0.24913885,0.96810216,0.016274763,-0.25002676,0.9681504,0.01594245,-0.24986145,0.96811616,0.0154764,-0.25002334,0.96802163,0.014880779,-0.2504249,0.96771616,0.014519376,-0.25162387,0.96760434,0.0149915125,-0.25202623,0.96734023,0.016772393,-0.25292602,0.9672696,0.018316394,-0.25308892,0.9673172,0.019277526,-0.2528354,0.9682498,0.018332602,-0.2493115,0.9669141,-0.0030714662,-0.25508365,0.9672065,-0.0017981956,-0.25398508,0.9674759,-0.0013269619,-0.25295964,0.96745116,-0.0010968882,-0.25305545,0.9675521,-0.0003221472,-0.25267127,0.96796083,0.0003093044,-0.25110105,0.96815807,-0.002205533,-0.2503299,0.9683733,-0.003301539,-0.24948414,0.9682566,-0.0037020796,-0.24993108,0.96784705,-0.0042866776,-0.25150296,0.9672514,-0.0036423563,-0.25379416,0.9662967,-0.0056433817,-0.25736922,0.9662332,-0.0055325185,-0.25760978,0.96613675,-0.004964971,-0.25798267,0.9658898,-0.0049360036,-0.2589064,0.9661436,-0.004315645,-0.25796872,0.9663291,-0.0036951657,-0.2572826,0.9666278,-0.0024544413,-0.25617328,0.96678436,-0.0033594745,-0.25557116,0.96782327,-0.00753698,-0.25151783,0.9682437,-0.0058410275,-0.24994008,0.9687171,-0.007030711,-0.24806796,0.96881837,-0.006677979,-0.24768214,0.9689135,-0.006635303,-0.24731067,0.9689837,-0.006732457,-0.24703306,0.9691686,-0.008085683,-0.24626581,0.9688443,-0.009408379,-0.24749179,0.9686788,-0.011494427,-0.24805114,0.96847266,-0.010187255,-0.24891138,0.9681563,-0.010696847,-0.25011817,0.9680665,-0.01041386,-0.25047702,0.96791536,-0.009084501,-0.25111216,0.9677205,-0.008143736,-0.25189435,0.9719133,-0.006682986,-0.23524453,0.97138005,-0.0060728854,-0.23745306,0.97126794,-0.0055462276,-0.237924,0.9714388,-0.0048285974,-0.2372411,0.9719082,-0.004024181,-0.23532574,0.9721626,-0.0039713713,-0.23427376,0.97244227,-0.0051917043,-0.2330859,0.9725083,-0.0062415632,-0.2327845,0.94234204,-0.022387465,-0.3339015,0.9412103,-0.020605104,-0.33719215,0.9409835,-0.019983077,-0.33786204,0.9409388,-0.019287745,-0.33802706,0.9410603,-0.018139245,-0.33775207,0.9413279,-0.017580243,-0.33703512,0.9418341,-0.017087745,-0.33564335,0.9426419,-0.017196804,-0.33336234,0.9427742,-0.018222678,-0.33293363,0.9428382,-0.021661539,-0.3325461,0.9426186,-0.02229546,-0.33312628,0.9077254,-0.123946495,-0.4008389,0.90762156,-0.12369454,-0.4011518,0.9074463,-0.12271855,-0.40184733,0.90617085,-0.121684946,-0.4050274,0.90629363,-0.1211791,-0.4049043,0.90715873,-0.119669884,-0.40341327,0.91341966,-0.11979001,-0.38899204,0.91472894,-0.12013523,-0.38579592,0.91519886,-0.12189142,-0.384127,0.915345,-0.123129666,-0.383383,0.9149582,-0.12428823,-0.3839323,0.9129488,-0.12553793,-0.3882843,0.91233665,-0.12575093,-0.38965195,0.91210467,-0.12546012,-0.39028832,0.91186136,-0.1256511,-0.39079487,0.9099939,-0.12565288,-0.39512345,0.90952146,-0.12521826,-0.3963471,0.9089251,-0.12380443,-0.3981553,0.9122683,-0.1254652,-0.389904,0.7079869,-0.019795598,-0.70594805,0.7074003,-0.019477013,-0.70654476,0.70703745,-0.01804723,-0.7069458,0.70752597,-0.017985849,-0.70645833,0.70773345,-0.017084407,-0.70627296,0.7083771,-0.016378786,-0.705644,0.7091236,-0.017082619,-0.7048772,0.70934504,-0.018108495,-0.70462877,0.70867735,-0.019444596,-0.70526475,0.7966309,-0.009096421,-0.6043976,0.79597324,-0.008644755,-0.60527,0.7956605,-0.006824484,-0.60570437,0.7959578,-0.005561605,-0.6053266,0.79556894,-0.004963302,-0.6058427,0.79663116,-0.00446394,-0.6044492,0.79729587,-0.004862691,-0.6035691,0.7975168,-0.0072233486,-0.6032535,0.7973495,-0.009084501,-0.6034494,0.79138464,-0.008174372,-0.6112638,0.7926287,-0.005566612,-0.60967916,0.79305136,-0.005351919,-0.60913134,0.7934279,-0.0058632,-0.608636,0.7938093,-0.0070921024,-0.6081253,0.7947065,-0.005788218,-0.60696626,0.7951943,-0.005861531,-0.60632634,0.7951429,-0.006822815,-0.6063837,0.79547876,-0.008032875,-0.60592824,0.7954431,-0.008731656,-0.60596526,0.79457706,-0.010464998,-0.6070731,0.7936363,-0.011221694,-0.608289,0.7939426,-0.012898727,-0.6078559,0.79367095,-0.014066157,-0.6081846,0.7932983,-0.014004889,-0.6086721,0.791965,-0.013369086,-0.61042017,0.7917587,-0.013682697,-0.6106807,0.791486,-0.014521251,-0.6110147,0.7904766,-0.01542273,-0.6122981,0.789616,-0.014795641,-0.613423,0.789218,-0.014113955,-0.6139509,0.78940815,-0.013261807,-0.6137255,0.78968644,-0.012638038,-0.6133805,0.790051,-0.012119874,-0.61292136,0.79160786,-0.012032977,-0.61091095,0.7921917,-0.010649047,-0.6101795,0.7291953,-0.10431997,-0.6763073,0.7283492,-0.102828145,-0.6774465,0.7280342,-0.09994225,-0.6782165,0.7264742,-0.09716562,-0.6802897,0.726118,-0.09320734,-0.68122315,0.72656256,-0.09268117,-0.6808209,0.7268541,-0.09255559,-0.6805267,0.72773236,-0.09795447,-0.67883027,0.7284972,-0.099017866,-0.677855,0.7285555,-0.10080026,-0.67752945,0.73041415,-0.10360977,-0.6751001,0.7298236,-0.10193806,-0.6759927,0.7299374,-0.100862995,-0.6760312,0.73088425,-0.098654985,-0.67533356,0.73115194,-0.098422594,-0.6750776,0.7314211,-0.09773902,-0.67488533,0.73222035,-0.09770509,-0.6740231,0.73145086,-0.0999948,-0.6745226,0.7314644,-0.10202961,-0.67420304,0.73122334,-0.10301134,-0.6743153,0.7309469,-0.10301976,-0.67461365,0.78367126,-0.06472629,-0.6177944,0.78342646,-0.06409009,-0.61817104,0.7834426,-0.06336891,-0.618225,0.78332675,-0.06274978,-0.61843485,0.78311133,-0.062157754,-0.61876744,0.7829849,-0.061325833,-0.6190103,0.783687,-0.06126289,-0.61812747,0.7851871,-0.06257287,-0.6160891,0.7862811,-0.06280582,-0.61466855,0.7871628,-0.06417348,-0.61339754,0.7871723,-0.06452049,-0.61334884,0.78703296,-0.06528242,-0.61344707,0.7865401,-0.06576882,-0.61402696,0.78579473,-0.06478578,-0.61508495,0.7846626,-0.064491466,-0.6165594,0.7848016,-0.065102085,-0.6163182,0.78427595,-0.065146334,-0.6169824,0.7851902,-0.064295895,-0.6159077,0.7848109,-0.064134344,-0.6164078,0.7990159,0.06997579,-0.5972244,0.7985749,0.07033956,-0.5977713,0.7981043,0.07288968,-0.59809417,0.7972226,0.074822366,-0.5990306,0.7974959,0.07624059,-0.59848785,0.79760563,0.07810814,-0.59810066,0.7980917,0.0791064,-0.5973205,0.7986547,0.07929249,-0.59654284,0.79918224,0.07699428,-0.5961373,0.79924256,0.07574778,-0.5962161,0.7988366,0.07467532,-0.59689504,0.798931,0.072580315,-0.59702706,0.7997059,0.0709925,-0.5961799,0.79968596,0.07010922,-0.5963113,0.7983792,0.07425627,-0.59755886,0.8113281,0.05940081,-0.5815653,0.8110494,0.059934158,-0.5818993,0.81116253,0.060639307,-0.5816685,0.81166744,0.062286995,-0.5807894,0.8120059,0.06401684,-0.58012784,0.81270283,0.06511139,-0.579029,0.81288517,0.06425667,-0.5788685,0.81279194,0.063471735,-0.57908607,0.81237584,0.061912686,-0.57983816,0.8125139,0.06037134,-0.5798072,0.8125032,0.06267224,-0.57957804,0.7492504,-0.14521797,-0.6461699,0.748328,-0.14468013,-0.6473584,0.7479479,-0.14341848,-0.64807796,0.7464749,-0.14283647,-0.64990216,0.74512047,-0.14143276,-0.6517609,0.7461431,-0.14132477,-0.6506134,0.7469683,-0.1407511,-0.6497903,0.7487447,-0.1438519,-0.64706105,0.7609432,-0.13997647,-0.63353926,0.760461,-0.13838823,-0.6344666,0.7605295,-0.13726053,-0.6346293,0.7609955,-0.13605672,-0.6343299,0.762782,-0.13562611,-0.6322731,0.7632791,-0.13577469,-0.631641,0.763341,-0.13625772,-0.63146204,0.76325774,-0.13774513,-0.63123995,0.76168674,-0.13987696,-0.6326671,0.78009,-0.14157626,-0.6094389,0.7820262,-0.14088103,-0.6071142,0.7823785,-0.14125219,-0.60657376,0.78187454,-0.14246032,-0.606941,0.779595,-0.14358541,-0.6096022,0.7787417,-0.14212285,-0.6110339,0.77902913,-0.14150368,-0.61081123,0.7615739,-0.030535167,-0.6473583,0.7617343,-0.029501015,-0.6472175,0.762133,-0.029526634,-0.6467469,0.7634514,-0.030228464,-0.64515746,0.76450783,-0.03019784,-0.6439067,0.7657547,-0.030693641,-0.64239985,0.76857096,-0.032577753,-0.63893455,0.76837265,-0.033058148,-0.63914835,0.7668549,-0.034662735,-0.64088386,0.7645168,-0.035393517,-0.6436314,0.7640488,-0.036013488,-0.6441525,0.7627671,-0.03573245,-0.6456854,0.76177233,-0.034582675,-0.64692116,0.76138717,-0.034758165,-0.647365,0.76087457,-0.034398727,-0.6479866,0.7613381,-0.03320124,-0.6475044,0.76107556,-0.03297808,-0.6478244,0.76087785,-0.031490885,-0.64813054,0.7611761,-0.033880945,-0.64765966,0.7623778,-0.035063036,-0.6461816,0.9726264,-0.09555904,-0.21181674,0.9723328,-0.09547598,-0.21319754,0.9723097,-0.09419147,-0.21387346,0.9724967,-0.09352459,-0.21331511,0.9732604,-0.092177175,-0.21039861,0.97342914,-0.092131354,-0.20963636,0.97352815,-0.092762716,-0.20889725,0.9733772,-0.093422756,-0.20930575,0.9819868,-0.054798722,-0.18082875,0.9819137,-0.0543733,-0.18135339,0.98197097,-0.053015087,-0.18144533,0.9820495,-0.05236999,-0.18120718,0.9828936,-0.04855694,-0.17765829,0.9830372,-0.0485979,-0.17685033,0.98306745,-0.049202163,-0.1765151,0.98284537,-0.052106183,-0.17691793,0.98260957,-0.053328283,-0.17786123,0.98223895,-0.055103436,-0.17936097,0.98217887,-0.056330338,-0.1793085,0.98170674,-0.05806092,-0.18133079,0.9823331,-0.054306883,-0.17908753,0.98197514,-0.05552372,-0.18067083,0.9832096,-0.04922264,-0.17571564,0.98305696,-0.04782156,-0.17695248,0.98311335,-0.046752375,-0.17692465,0.98382664,-0.043798186,-0.1736861,0.983888,-0.044062097,-0.1732716,0.98389125,-0.04526086,-0.17294364,0.9838826,-0.04553333,-0.17292142,0.9837646,-0.046222825,-0.17340887,0.98368174,-0.048323803,-0.17330614,0.98357016,-0.04919371,-0.17369437,0.98442274,-0.041347798,-0.17088614,0.9844559,-0.040882915,-0.17080715,0.9845781,-0.039859384,-0.17034441,0.9848892,-0.03799958,-0.1689653,0.9851042,-0.036005028,-0.16814677,0.98532104,-0.03518908,-0.16704506,0.9854607,-0.035349198,-0.1661859,0.98547506,-0.03579214,-0.16600518,0.9854434,-0.036912918,-0.16594802,0.9854759,-0.037716784,-0.16557357,0.98521036,-0.039391022,-0.16676025,0.98496556,-0.039813407,-0.16810063,0.98922294,-0.010067932,-0.14607057,0.9890783,-0.009258301,-0.1471002,0.9889422,-0.0066268397,-0.14815341,0.98889166,-0.004496245,-0.14856976,0.9890519,-0.0029265084,-0.14753906,0.9892329,-0.00030593475,-0.14634943,0.9893372,0.00012357632,-0.14564292,0.98946786,-0.00001363357,-0.14475255,0.9891952,-0.0039525367,-0.14655066,0.9892355,-0.0053928075,-0.1462327,0.98936564,-0.0066199256,-0.14529912,0.9893919,-0.008165789,-0.14504118,0.9894588,-0.009282142,-0.1445169,0.99292976,0.041015636,-0.111392036,0.99280065,0.04117822,-0.11247771,0.99276876,0.042151432,-0.1123987,0.99276394,0.043019917,-0.11211193,0.9927769,0.043884084,-0.11166108,0.9931164,0.0464322,-0.10753584,0.9931616,0.047470797,-0.106660545,0.99319726,0.047824804,-0.10616953,0.9933542,0.04852542,-0.104368076,0.99344605,0.050402213,-0.102589086,0.9935815,0.05087201,-0.101033844,0.9936948,0.049808107,-0.100448176,0.99381566,0.049302567,-0.09949705,0.99383855,0.04826585,-0.0997766,0.9937971,0.04633265,-0.101096824,0.9936825,0.046076387,-0.10233277,0.9936109,0.04533568,-0.10335412,0.9934613,0.04528888,-0.10480225,0.9930858,0.042391542,-0.10946979,0.99303126,0.041388564,-0.110344395,0.8443816,-0.09523331,-0.5272099,0.84383553,-0.09476835,-0.52816725,0.84395933,-0.09100267,-0.5286313,0.8442349,-0.08991626,-0.5283772,0.84463775,-0.089603886,-0.5277861,0.8450384,-0.08846996,-0.5273358,0.84552145,-0.088412255,-0.52657074,0.8459253,-0.08882476,-0.52585226,0.84579283,-0.08967014,-0.52592176,0.8459342,-0.08987221,-0.52565986,0.84620124,-0.090683565,-0.52509034,0.84624106,-0.09160858,-0.52486557,0.8456458,-0.093244605,-0.52553654,0.83624274,-0.021530319,-0.5479367,0.83647186,-0.020441463,-0.5476285,0.8369918,-0.020201188,-0.5468424,0.8387516,-0.020753369,-0.5441187,0.83936524,-0.020632276,-0.54317623,0.8400512,-0.022390923,-0.54204494,0.8402015,-0.024992768,-0.54169804,0.8397065,-0.02701864,-0.542368,0.83938843,-0.027698474,-0.5428258,0.83852756,-0.026362747,-0.5442211,0.8366436,-0.026050882,-0.5471279,0.8371911,-0.027154965,-0.54623586,0.8371118,-0.02752807,-0.54633886,0.83668983,-0.028201103,-0.5469506,0.8362428,-0.02789271,-0.5476495,0.83608985,-0.02751961,-0.54790175,0.83578473,-0.025081431,-0.548484,0.8352681,-0.025183681,-0.54926586,0.834876,-0.026301375,-0.54980934,0.8340939,-0.026156586,-0.55100197,0.8335051,-0.02525864,-0.5519342,0.8332032,-0.023340056,-0.55247414,0.83341706,-0.02244372,-0.55218863,0.83378696,-0.021976773,-0.5516488,0.83431923,-0.021584904,-0.55085886,0.83523744,-0.021884764,-0.54945374,0.8365717,-0.02247268,-0.5473964,0.83744043,-0.023382602,-0.54602826,0.8370212,-0.022765739,-0.5466967,0.83615714,-0.024246506,-0.54795384,0.8488823,-0.00787612,-0.5285233,0.84927887,-0.0071005663,-0.5278968,0.8498943,-0.0072897463,-0.52690274,0.8503371,-0.0071040234,-0.5261904,0.85103476,-0.008356756,-0.52504283,0.8511852,-0.009183321,-0.5247852,0.85095006,-0.009162937,-0.52516675,0.84943026,-0.008549272,-0.52763164,0.8491118,-0.008772543,-0.52814025,0.8505797,-0.008634504,-0.5257753,0.8502653,-0.008566318,-0.5262845,0.85626185,-0.11259356,-0.50412136,0.8561789,-0.109707266,-0.504898,0.85652333,-0.10399452,-0.5055224,0.8567577,-0.10285874,-0.50535756,0.8574553,-0.10062733,-0.50462306,0.8575728,-0.10238062,-0.5040706,0.857185,-0.106175944,-0.5039449,0.85718864,-0.10765538,-0.5036248,0.85684687,-0.10893634,-0.50393087,0.85653096,-0.111575656,-0.50389045,0.8973981,-0.12165797,-0.4241178,0.8968285,-0.12136357,-0.42540523,0.8965363,-0.12084078,-0.4261693,0.8956307,-0.12080694,-0.42807868,0.89586395,-0.12016908,-0.42777014,0.89625955,-0.11962077,-0.4270945,0.89679897,-0.11909278,-0.4261086,0.8972525,-0.11907076,-0.42515886,0.8980478,-0.119465135,-0.4233653,0.8981003,-0.1202266,-0.4230383,0.8980237,-0.121047154,-0.42296693,0.8958314,-0.0706984,-0.4387344,0.8944186,-0.067460924,-0.44211358,0.8945766,-0.06663785,-0.44191864,0.8944096,-0.06562941,-0.44240716,0.8945591,-0.064855486,-0.4422191,0.8949196,-0.06165423,-0.4419476,0.89485675,-0.060961854,-0.4421709,0.8949668,-0.06015712,-0.44205827,0.8952055,-0.059216212,-0.44170183,0.8952773,-0.056711555,-0.44188508,0.8955031,-0.05687318,-0.44140646,0.89636934,-0.058253236,-0.43946406,0.8966716,-0.06031538,-0.43856823,0.89683664,-0.06300665,-0.43785167,0.89678055,-0.0645306,-0.43774483,0.89621156,-0.06657838,-0.43860248,0.89614785,-0.069877185,-0.4382194,0.8248559,-0.18926121,-0.5327222,0.8239905,-0.18925454,-0.534062,0.823556,-0.18869042,-0.5349313,0.82178664,-0.18748683,-0.5380664,0.8211781,-0.1856399,-0.53963363,0.8202922,-0.18483089,-0.5412561,0.820419,-0.1843401,-0.5412314,0.8208478,-0.18339518,-0.5409022,0.8212078,-0.18180482,-0.5408926,0.8213332,-0.18176298,-0.5407161,0.8214745,-0.1819993,-0.540422,0.8220889,-0.18254727,-0.53930175,0.82288647,-0.18463652,-0.5373707,0.8235184,-0.1856399,-0.53605527,0.82535785,-0.1867267,-0.5328391,0.8254761,-0.18757054,-0.53235936,0.8251611,-0.18908036,-0.53231364,0.8179759,-0.14593305,-0.55643415,0.8175143,-0.14486554,-0.5573907,0.8175493,-0.14312659,-0.5577884,0.81776,-0.14277913,-0.55756843,0.8179834,-0.14265937,-0.5572715,0.81823343,-0.14268804,-0.55689704,0.8191503,-0.1454659,-0.55482644,0.8193102,-0.14532602,-0.554627,0.81965244,-0.14466314,-0.5542946,0.8201821,-0.14467835,-0.55350655,0.820516,-0.14529051,-0.5528511,0.82073724,-0.14692773,-0.55208933,0.81988406,-0.14684013,-0.5533788,0.8191856,-0.14870118,-0.55391604,0.8184455,-0.14835224,-0.5551023,0.81815016,-0.14778753,-0.555688,0.82243615,-0.14434949,-0.55023813,0.821137,-0.14388058,-0.5522974,0.8214827,-0.1433071,-0.5519322,0.82202333,-0.14286007,-0.5512427,0.82273924,-0.14246362,-0.5502765,0.8244714,-0.14420946,-0.54722077,0.8249385,-0.14375576,-0.54663587,0.8254755,-0.14378785,-0.545816,0.8262281,-0.14401895,-0.5446151,0.8261505,-0.14436635,-0.54464084,0.82583576,-0.1445873,-0.5450595,0.8253346,-0.14474075,-0.5457774,0.82547086,-0.14528379,-0.5454269,0.8265207,-0.14675747,-0.5434389,0.8272224,-0.1483388,-0.54193974,0.8269855,-0.14847532,-0.54226387,0.8262655,-0.14842474,-0.54337406,0.8253882,-0.14930448,-0.5444653,0.8251921,-0.14912249,-0.5448123,0.82476455,-0.14836745,-0.54566526,0.8240766,-0.14896241,-0.54654187,0.8238649,-0.14858483,-0.54696363,0.82383674,-0.14822079,-0.5471048,0.8239348,-0.1478381,-0.54706067,0.8236591,-0.14647092,-0.547843,0.8229979,-0.14650464,-0.5488268,0.82420963,-0.14420617,-0.5476158,0.8238999,-0.1474285,-0.5472238,0.82686996,-0.14605947,-0.5430955,0.82677144,-0.14530231,-0.5434485,0.82677615,-0.1438216,-0.54383504,0.8279738,-0.14324139,-0.54216367,0.82872534,-0.14355852,-0.54093003,0.8289191,-0.14392115,-0.54053664,0.8294992,-0.14500898,-0.53935474,0.829448,-0.14600557,-0.5391645,0.7066247,-0.11422437,-0.6983082,0.7059642,-0.114060104,-0.69900274,0.7058742,-0.11330483,-0.69921637,0.70654666,-0.112441115,-0.6986764,0.7070705,-0.11280867,-0.698087,0.9725095,0.017336529,-0.23221695,0.97251624,0.018295892,-0.23211525,0.97258574,0.018718537,-0.23179021,0.9726664,0.019784426,-0.2313627,0.9727727,0.019498141,-0.23093963,0.97294676,0.018696368,-0.23027153,0.97277397,0.017571693,-0.23108877,0.9709044,0.013477231,-0.2390877,0.97092015,0.013980009,-0.23899508,0.97100073,0.014770761,-0.23862001,0.97121644,0.015556498,-0.23769024,0.971271,0.015215601,-0.23748957,0.97127175,0.014485286,-0.23753186,0.9694491,0.014047355,-0.24488993,0.96917397,0.014555254,-0.24594718,0.96921515,0.015356251,-0.24573603,0.96945274,0.015650187,-0.24477835,0.9696436,0.016475007,-0.243967,0.96970797,0.016292643,-0.24372312,0.96974313,0.016012298,-0.24360192,0.9697613,0.015641604,-0.24355376,0.9672758,0.0006050626,-0.2537266,0.9673148,0.0010387459,-0.2535765,0.9674437,0.0017989427,-0.25307986,0.96794844,0.0038971365,-0.2511189,0.96814305,0.0040505575,-0.25036472,0.9676924,0.001661733,-0.25212836,0.9676098,0.0013899362,-0.25244683,0.96748435,0.0010941782,-0.25292847,0.9584911,0.053873748,-0.2799863,0.95842063,0.055074424,-0.27999413,0.95843416,0.05610566,-0.27974278,0.95865315,0.056337032,-0.2789451,0.9587871,0.055906534,-0.27857116,0.9587917,0.054576524,-0.2788188,0.96140575,0.049881328,-0.27057496,0.9612049,0.0499486,-0.27127528,0.96093786,0.050661877,-0.27208787,0.9607454,0.051926572,-0.27252868,0.9608077,0.052063596,-0.27228275,0.9610757,0.052563112,-0.27123883,0.96119493,0.05298012,-0.2707349,0.9613537,0.05342521,-0.27008286,0.96139926,0.05253335,-0.27009568,0.96136934,0.05200312,-0.27030477,0.9613873,0.051291674,-0.27037692,0.9614393,0.05039888,-0.2703598,0.96092886,0.05226526,-0.27181634,0.94525737,0.049774054,-0.32250753,0.9449398,0.050687354,-0.32329485,0.9448701,0.052318,-0.3232387,0.9449814,0.052194666,-0.32293314,0.9455246,0.050342686,-0.32163474,0.94603795,-0.028996738,-0.32275587,0.94540673,-0.028264139,-0.32466468,0.9454112,-0.027294746,-0.32473475,0.9458722,-0.026872186,-0.32342482,0.94627404,-0.027359452,-0.32220638,0.95282567,-0.05103389,-0.2991968,0.95263565,-0.050584458,-0.2998776,0.95254296,-0.049634602,-0.30033028,0.952684,-0.049454104,-0.29991242,0.9529691,-0.049513754,-0.29899558,0.9530282,-0.05012144,-0.29870558,0.95296943,-0.05060315,-0.29881203,0.95563334,-0.052776884,-0.2897922,0.9555664,-0.052427962,-0.29007596,0.95550543,-0.05118533,-0.2904986,0.9561102,-0.05057422,-0.2886097,0.95635295,-0.05116497,-0.28769982,0.95629734,-0.051646654,-0.28779858,0.9561483,-0.052106183,-0.28821063,0.95592296,-0.05258796,-0.28886968,0.9035728,-0.12486828,-0.40983424,0.9035444,-0.12418166,-0.4101054,0.90385574,-0.12326666,-0.40969512,0.9041177,-0.1231415,-0.40915453,0.904295,-0.12326157,-0.4087262,0.90442777,-0.12355921,-0.40834254,0.9039553,-0.124697484,-0.4090421,0.9177531,-0.101863466,-0.38386586,0.91766715,-0.101247974,-0.38423422,0.91770864,-0.100235574,-0.38440046,0.9180014,-0.09977429,-0.38382083,0.91827166,-0.09985566,-0.38315254,0.9185713,-0.10111906,-0.38210174,0.9183983,-0.101814255,-0.38233277,0.95854306,-0.11602075,-0.2602585,0.958302,-0.115638174,-0.261314,0.9583426,-0.11426842,-0.26176736,0.95849174,-0.113618106,-0.26150432,0.95864075,-0.113707885,-0.26091844,0.95876104,-0.11399402,-0.26035097,0.95894855,-0.11519626,-0.2591282,0.9587971,-0.11568388,-0.25947133,0.9911947,0.035828624,-0.12747292,0.9911677,0.03621866,-0.1275725,0.9911334,0.037490238,-0.127472,0.9911818,0.03840225,-0.12682222,0.99125683,0.038667053,-0.12615356,0.99145633,0.038949843,-0.12448787,0.99157137,0.03868242,-0.12365267,0.99135584,0.03766392,-0.1256786,0.9905866,0.10078072,-0.092636436,0.9905053,0.1012716,-0.09296949,0.99044555,0.10179721,-0.09303202,0.99039614,0.102388956,-0.09290815,0.99048215,0.10275347,-0.09157946,0.99053013,0.1029145,-0.09087738,0.99059993,0.10261022,-0.09045974,0.9906568,0.10103085,-0.09160751,0.8332384,-0.029855387,-0.55210716,0.83257633,-0.029741237,-0.55311126,0.83242685,-0.02840046,-0.55340683,0.8329889,-0.02708168,-0.55262655,0.8331293,-0.026320083,-0.55245167,0.83332425,-0.026226418,-0.552162,0.8337154,-0.026785312,-0.55154437,0.833695,-0.029342536,-0.5514451,0.8327736,-0.02776318,-0.55291706,0.8350097,-0.07381792,-0.5452611,0.8342051,-0.07172362,-0.54677016,0.8342361,-0.0704689,-0.54688597,0.8346149,-0.069714025,-0.54640454,0.83641076,-0.06942493,-0.5436885,0.8368903,-0.070278525,-0.54284036,0.8368403,-0.07082421,-0.54284644,0.83652365,-0.07233393,-0.5431354,0.83566624,-0.07371081,-0.54426885,0.82983935,-0.034824643,-0.5569146,0.83003217,-0.0341228,-0.5566707,0.83069813,-0.032777086,-0.55575734,0.8307393,-0.03348063,-0.5556539,0.830447,-0.034800697,-0.5560096,0.8374605,-0.033136424,-0.54549235,0.83679676,-0.03169868,-0.54659516,0.8369603,-0.030933853,-0.5463886,0.83725005,-0.031179067,-0.5459306,0.83743334,-0.03166973,-0.5456211,0.8375569,-0.032368176,-0.5453905,0.8608621,-0.15213189,-0.48556393,0.8605519,-0.15196846,-0.48616457,0.86088103,-0.15077396,-0.4859537,0.86065155,-0.15002242,-0.48659235,0.860285,-0.14935164,-0.4874462,0.86020344,-0.14873149,-0.4877796,0.8602663,-0.14813484,-0.48785025,0.860435,-0.14750938,-0.4877423,0.8610113,-0.14734255,-0.48677465,0.86114544,-0.14704412,-0.4866278,0.8614085,-0.1465872,-0.4862999,0.86148936,-0.14703232,-0.48602223,0.8613875,-0.14848368,-0.48576146,0.86162746,-0.14930284,-0.4850843,0.86129683,-0.15034758,-0.4853488,0.8612289,-0.15188257,-0.4849913,0.86081976,-0.14748238,-0.48707107,0.8653392,-0.14332068,-0.48025745,0.86497396,-0.14330038,-0.48092097,0.8647313,-0.14303386,-0.48143646,0.8645523,-0.14257832,-0.4818929,0.8646505,-0.14223424,-0.48181826,0.86498976,-0.14157791,-0.4814026,0.8651474,-0.14159644,-0.48111382,0.8654625,-0.14190018,-0.48045707,0.86550295,-0.14262728,-0.48016885,0.891341,-0.15305836,-0.42671356,0.8912147,-0.15246543,-0.4271892,0.8913255,-0.1514883,-0.4273058,0.8918147,-0.1507419,-0.42654815,0.8919566,-0.1508363,-0.4262181,0.89230824,-0.15152708,-0.42523587,0.89209116,-0.1520004,-0.4255224,0.8826854,0.07266271,-0.46431303,0.88346297,0.0726985,-0.46282622,0.8837093,0.071871445,-0.46248496,0.88293433,0.06982608,-0.46427494,0.8813678,0.07070176,-0.4671103,0.8813687,0.071332455,-0.46701282,0.88153195,0.072996795,-0.46644703,0.8844102,0.056653623,-0.46325907,0.8842795,0.057224542,-0.46343833,0.8839833,0.059437346,-0.46372485,0.8843139,0.05993499,-0.46302995,0.88503474,0.059863593,-0.46165988,0.88516015,0.059068922,-0.4615218,0.8850287,0.058055717,-0.46190235,0.82405454,-0.10490314,-0.55671316,0.8240376,-0.10407253,-0.556894,0.82442,-0.10282992,-0.5565588,0.8249106,-0.10244845,-0.5559019,0.8248564,-0.103475794,-0.5557919,0.82449126,-0.10395041,-0.55624497,0.8290427,-0.093639955,-0.5512892,0.8291409,-0.09187674,-0.5514381,0.8298056,-0.09149829,-0.5505004,0.829949,-0.0918683,-0.5502226,0.8299302,-0.09234181,-0.5501717,0.8297969,-0.0929239,-0.5502747,0.8294363,-0.09354156,-0.5507135,0.8534572,-0.12402942,-0.50618917,0.85256505,-0.12392958,-0.50771487,0.85260355,-0.12296215,-0.5078854,0.8529299,-0.12291139,-0.5073493,0.8539981,-0.12218568,-0.50572515,0.85375226,-0.12387552,-0.5057291,0.8772996,-0.14553006,-0.45734724,0.87711936,-0.14551814,-0.45769647,0.8766121,-0.14244345,-0.4596315,0.8767359,-0.14173485,-0.45961437,0.87768,-0.14179893,-0.4577891,0.8780544,-0.14234221,-0.45690164,0.8779979,-0.1433071,-0.45670864,0.87765676,-0.14447771,-0.45699525,0.87768716,-0.14519781,-0.45670867,0.89400256,-0.06343018,-0.44354928,0.8938878,-0.060429376,-0.44419903,0.8939264,-0.059304748,-0.44427317,0.89414966,-0.059713032,-0.44376865,0.89457166,-0.061729066,-0.44264102,0.79499775,0.013236927,-0.60646784,0.79462856,0.01381051,-0.60693884,0.7948171,0.014790429,-0.60666883,0.79517376,0.015044317,-0.606195,0.7954639,0.014703535,-0.60582256,0.7955372,0.01417001,-0.60573906,0.79533774,0.013428718,-0.60601777,0.7146431,-0.037319977,-0.69849294,0.7142965,-0.037054203,-0.6988615,0.71378225,-0.035802264,-0.699452,0.7141335,-0.03543605,-0.699112,0.7143971,-0.035381604,-0.69884545,0.7146217,-0.03554339,-0.69860756,0.7147871,-0.036560297,-0.69838583,0.7218715,-0.074966885,-0.68795455,0.7225348,-0.07403714,-0.6873587,0.72385347,-0.0732349,-0.68605596,0.72565067,-0.07168961,-0.6843184,0.72545224,-0.07270964,-0.6844211,0.7233376,-0.0742377,-0.68649215,0.7560054,-0.014458196,-0.65440565,0.75572366,-0.013568506,-0.6547501,0.75684744,-0.013352041,-0.6534552,0.75779176,-0.014354257,-0.65233856,0.75879234,-0.014164971,-0.6511786,0.7592633,-0.014427443,-0.6506237,0.7595391,-0.014344006,-0.6503034,0.7597809,-0.014420649,-0.6500193,0.7600193,-0.014613271,-0.6497363,0.7605039,-0.014529714,-0.6491708,0.76080555,-0.01485524,-0.6488099,0.76100504,-0.015487572,-0.6485611,0.7614117,-0.016124904,-0.648068,0.75653934,-0.01505978,-0.65377474,0.756765,-0.014204187,-0.6535327,0.75958914,-0.009249837,-0.65033746,0.75893617,-0.009227665,-0.6510997,0.75828785,-0.008187962,-0.6518685,0.7586023,-0.007618755,-0.6515094,0.7590703,-0.007282952,-0.6509679,0.7592799,-0.0072999983,-0.6507233,0.7596557,-0.0076954043,-0.65027994,0.76008916,-0.007831776,-0.6497716,0.7607703,-0.008491338,-0.64896566,0.7715575,-0.00331346,-0.6361509,0.7710771,-0.0032639883,-0.6367335,0.77115583,-0.0024305994,-0.63664174,0.77374285,0.0007924596,-0.6334994,0.77306396,-0.0011589961,-0.63432705,0.7719639,-0.0022942245,-0.6356622,0.7938986,-0.00063924387,-0.60804987,0.793848,-0.000102325284,-0.60811627,0.7938899,0.001204089,-0.60806036,0.7940798,0.0024884476,-0.6078085,0.79420567,0.0021713518,-0.60764515,0.7944487,0.00028975407,-0.6073312,0.7942251,0.000110701716,-0.60762364,0.79453623,0.011012884,-0.607117,0.7941557,0.011206348,-0.60761106,0.7938714,0.011925491,-0.60796875,0.793898,0.012800658,-0.6079161,0.79408455,0.012991616,-0.60766834,0.7945319,0.012977073,-0.6070837,0.7947526,0.011783164,-0.6068191,0.79464525,0.011080233,-0.6069729,0.79551136,-0.013989513,-0.60577714,0.79539543,-0.013629893,-0.60593766,0.79539037,-0.01323618,-0.6059529,0.7958683,-0.010880895,-0.6053721,0.79638755,-0.010809255,-0.60468996,0.796919,-0.013280522,-0.6039401,0.7966198,-0.013531078,-0.6043293,0.7786805,-0.062601775,-0.62428975,0.7786908,-0.06186518,-0.62435025,0.7790245,-0.061475635,-0.62397236,0.77932554,-0.061339516,-0.6236098,0.7801223,-0.060958404,-0.62265027,0.7802139,-0.06126122,-0.62250566,0.77977586,-0.062591545,-0.62292206,0.7793495,-0.06257798,-0.6234568,0.7787436,-0.062834725,-0.6241876,0.78220516,-0.06345052,-0.6197815,0.780397,-0.06253705,-0.62214917,0.78071964,-0.06176821,-0.62182117,0.7816612,-0.061305486,-0.620683,0.7818912,-0.061752863,-0.6203488,0.7997417,0.06757395,-0.5965291,0.79948926,0.06832382,-0.596782,0.79997164,0.069781125,-0.5959665,0.80043125,0.07048666,-0.5952659,0.8002951,0.06851007,-0.5956796,0.7997559,0.06684021,-0.5965928,0.7986396,0.06552381,-0.5982319,0.7984587,0.065724485,-0.5984513,0.7983793,0.06605112,-0.5985214,0.79836404,0.0664898,-0.59849304,0.79886997,0.06728231,-0.5977289,0.79915065,0.06702552,-0.5973824,0.79919267,0.06650764,-0.59738415,0.79898995,0.06599319,-0.5977123,0.81429714,0.045877993,-0.57863224,0.8141801,0.04626275,-0.5787664,0.81417865,0.047228955,-0.57869035,0.8137106,0.048204526,-0.57926804,0.8138097,0.04856888,-0.5790983,0.8142435,0.048943345,-0.5784565,0.8145944,0.0479228,-0.578048,0.737554,-0.12622266,-0.6633867,0.73748976,-0.1253688,-0.66362,0.73833936,-0.12367928,-0.66299206,0.7403005,-0.12389244,-0.66076165,0.7399479,-0.12436263,-0.66106814,0.7394002,-0.1246264,-0.66163105,0.73867476,-0.12477011,-0.66241384,0.73809105,-0.12576619,-0.6628759,0.77507305,-0.12548211,-0.61928666,0.77462834,-0.12504415,-0.6199314,0.77474016,-0.12425949,-0.6199494,0.7747132,-0.12383318,-0.62006843,0.77491224,-0.12344766,-0.6198965,0.77528054,-0.12306022,-0.619513,0.7758008,-0.12331054,-0.6188115,0.7762273,-0.124200225,-0.6180983,0.77597016,-0.12457743,-0.61834526,0.78782034,-0.13306059,-0.60136014,0.78718954,-0.13265508,-0.6022751,0.7867692,-0.13220242,-0.6029235,0.786697,-0.1318848,-0.6030873,0.78677106,-0.1310636,-0.6031697,0.7879029,-0.13074757,-0.6017592,0.7877492,-0.13177998,-0.6017352,0.82199544,-0.17944615,-0.5404837,0.8212342,-0.17884754,-0.5418375,0.82153535,-0.17755112,-0.54180735,0.8207529,-0.17698082,-0.543178,0.8208235,-0.17668891,-0.5431665,0.8212517,-0.17605303,-0.5427255,0.8217716,-0.17659327,-0.54176223,0.8221904,-0.17818682,-0.54060376,0.8350843,-0.18398823,-0.5184424,0.8346647,-0.18378551,-0.51918954,0.83394027,-0.1827232,-0.52072626,0.83400524,-0.18132548,-0.52111065,0.8344864,-0.18108585,-0.5204232,0.83521944,-0.18118632,-0.519211,0.83567464,-0.1823629,-0.5180653,0.83637094,-0.18319069,-0.51664764,0.83612955,-0.1834907,-0.51693183,0.70514953,-0.11220409,-0.70012456,0.7048626,-0.11206182,-0.70043623,0.70420355,-0.11014259,-0.7014029,0.704618,-0.110161304,-0.7009836,0.7049374,-0.11059494,-0.70059407,0.70521545,-0.11134867,-0.70019466,0.706369,-0.117803134,-0.69797224,0.7061846,-0.11753406,-0.69820416,0.7056725,-0.11612743,-0.6989569,0.7056196,-0.11534179,-0.6991404,0.70608073,-0.11538252,-0.69866794,0.7064514,-0.11593775,-0.6982012,0.70679045,-0.11689252,-0.69769865,0.70673275,-0.117241174,-0.69769853,0.7875845,-0.05268498,-0.6139504,0.78710586,-0.051229615,-0.6146868,0.7876257,-0.051505342,-0.6139975,0.78870267,-0.052412607,-0.6125365,0.78853005,-0.05262022,-0.61274093,0.79061675,-0.05859526,-0.6095012,0.7908973,-0.057827782,-0.6092105,0.79149556,-0.05676773,-0.60853285,0.791745,-0.05689365,-0.60819644,0.79217774,-0.057358164,-0.60758907,0.7916832,-0.058110308,-0.60816187,0.8291868,-0.14772008,-0.5390993,0.82806826,-0.14739136,-0.54090554,0.82825255,-0.14706604,-0.5407118,0.8287461,-0.14677103,-0.5400353,0.82947075,-0.1469176,-0.53888166,0.8300958,-0.14775887,-0.5376878,0.8302978,-0.1483388,-0.53721607,0.8303217,-0.14931627,-0.5369083,0.82974386,-0.14960447,-0.53772074,0.8295734,-0.1485899,-0.5382649,0.9780809,0.11300674,-0.17489193,0.97822875,0.11219725,-0.17458624,0.9783338,0.110154346,-0.1752968,0.97865576,0.10067386,-0.1791583,0.97904605,0.09736913,-0.1788521,0.9795309,0.087925665,-0.18107559,0.9796503,0.08110779,-0.18359414,0.9800266,0.07625676,-0.18366466,0.98006725,0.07368611,-0.18449539,0.97988105,0.07016368,-0.18684264,0.9800322,0.069787905,-0.18618953,0.9802096,0.06916809,-0.1854859,0.98011297,0.06739625,-0.18664458,0.9799863,0.065868296,-0.18785134,0.97958094,0.06322082,-0.19085135,0.9794397,0.060561128,-0.1924324,0.97903466,0.05674979,-0.19562867,0.9790749,0.052529898,-0.19660354,0.979387,0.050334945,-0.19562101,0.9792353,0.049529023,-0.19658364,0.979066,0.04908468,-0.19753589,0.9787814,0.046821237,-0.19948626,0.9779468,0.044902317,-0.20396982,0.9776511,0.042737294,-0.20584415,0.9768634,0.039233346,-0.21023485,0.9754934,0.035638727,-0.21712354,0.9749188,0.032380003,-0.22019295,0.97429645,0.031277042,-0.22308776,0.97244346,0.026139457,-0.23166873,0.97236234,0.024952639,-0.23213978,0.9721885,0.023201844,-0.23304786,0.97190356,0.023259882,-0.23422717,0.9712608,0.025298594,-0.23666964,0.97074187,0.025768006,-0.23873888,0.9703436,0.025246635,-0.24040788,0.9700188,0.025387973,-0.24170004,0.9699778,0.027050132,-0.24168453,0.9699844,0.02833388,-0.24151069,0.96985954,0.027560396,-0.2421011,0.96962756,0.026696565,-0.24312489,0.9695423,0.025973335,-0.24354275,0.96958756,0.025238056,-0.24343997,0.9695139,0.024646008,-0.24379389,0.96927136,0.023819534,-0.24483801,0.96894586,0.024232833,-0.2460827,0.96880454,0.024703925,-0.24659173,0.9687418,0.025839508,-0.24672174,0.9689276,0.030064896,-0.24551034,0.96967596,0.039455615,-0.24118815,0.97006905,0.04376749,-0.23885219,0.97009873,0.04502236,-0.2384983,0.9710778,0.04840968,-0.23380403,0.9713419,0.051170003,-0.23211318,0.971019,0.056877375,-0.23213577,0.97096586,0.058932904,-0.23184496,0.97072357,0.061407488,-0.23221733,0.9708873,0.06402885,-0.23082067,0.97082484,0.065736376,-0.230603,0.9703508,0.06935349,-0.23153716,0.9696397,0.07660169,-0.23223068,0.9693294,0.08140756,-0.23189077,0.96922857,0.084552504,-0.23118563,0.9694877,0.09171283,-0.22733727,0.96965146,0.09425499,-0.22559266,0.9699121,0.09627922,-0.22360848,0.9701747,0.09695352,-0.22217356,0.9710604,0.1021423,-0.21589026,0.9712336,0.107513785,-0.21247604,0.9714204,0.1080586,-0.21134259,0.9719821,0.10873219,-0.208394,0.9722073,0.10773328,-0.20786169,0.9724158,0.10620644,-0.20767233,0.9730559,0.104169905,-0.20569605,0.9732441,0.10299003,-0.20539962,0.97439253,0.10098673,-0.2009003,0.9744216,0.10239571,-0.20004424,0.9744638,0.10282723,-0.19961675,0.9745257,0.102927305,-0.19926257,0.97514874,0.10195327,-0.19669884,0.9757589,0.10087145,-0.19421495,0.97594684,0.099904805,-0.19376993,0.9765009,0.09822154,-0.19182903,0.9765444,0.09888385,-0.19126718,0.9766482,0.099745385,-0.19028696,0.9765456,0.10185828,-0.18969344,0.9760762,0.10377319,-0.19106662,0.97590154,0.105113246,-0.19122596,0.97569585,0.10741044,-0.19099906,0.975629,0.10873812,-0.19058894,0.975704,0.10878552,-0.19017714,0.97581553,0.108999886,-0.1894809,0.9762163,0.10878718,-0.1875289,0.9762418,0.11028314,-0.1865195,0.97613573,0.11192278,-0.1860975,0.97619784,0.11251056,-0.18541622,0.97628355,0.1128678,-0.18474649,0.9766233,0.11230137,-0.18329042,0.977322,0.114068545,-0.17840979,0.97731966,0.11637101,-0.17692946,0.97744995,0.11643874,-0.17616336,0.97760177,0.11618228,-0.17548896,0.97770953,0.115658335,-0.17523474,0.9799062,0.07144898,-0.18622273,0.972596,0.026981968,-0.23093085,0.9735503,0.10149539,-0.2046913,0.9761895,0.09877697,-0.19312474,0.9782764,0.107695945,-0.17713542,0.978389,0.10425384,-0.1785666,0.9790369,0.054819107,-0.19616711,0.97045803,0.09836307,-0.22030872,0.9743223,0.10068833,-0.20138973,0.9712389,0.049487233,-0.23290777,0.9710268,0.07408128,-0.227198,0.9767127,0.100553475,-0.18952897,0.9767949,0.11264003,-0.18216468,0.979027,0.08052462,-0.18714164,0.9741799,0.036619417,-0.22278328,0.9722415,0.079483576,-0.22006546,0.97419167,0.10054588,-0.20209171,0.97868377,0.07461113,-0.19134061,0.97232604,0.078718156,-0.21996702,0.9739248,0.10069758,-0.20329899,0.9755604,0.07689954,-0.20583552,0.9728525,0.076356955,-0.21846654,0.9763774,0.09833092,-0.19240116,0.9755787,0.07773948,-0.20543297,0.9730401,0.07595722,-0.2177693,0.9743344,0.07477137,-0.21232451,0.9744008,0.07471657,-0.21203882,0.88379294,0.07323814,-0.46211058,0.8825257,0.07563212,-0.4641425,0.8813564,0.07433366,-0.4665677,0.8804524,0.07411266,-0.46830642,0.87856793,0.07525744,-0.47165108,0.8774284,0.075600736,-0.4737128,0.8762874,0.07606384,-0.4757465,0.87584966,0.07635791,-0.47650483,0.87549776,0.07688718,-0.47706598,0.8753643,0.0777743,-0.47716728,0.87558603,0.078496404,-0.47664174,0.8764266,0.087477505,-0.47352305,0.87508893,0.08660132,-0.47615075,0.87408924,0.086530894,-0.4779961,0.8719975,0.087553866,-0.48161677,0.87003976,0.0889028,-0.48489907,0.8692183,0.089933984,-0.48618048,0.8689094,0.09061047,-0.48660678,0.86873287,0.09143031,-0.48676863,0.868616,0.09251135,-0.48677304,0.8686252,0.093516074,-0.4865644,0.8688311,0.094327986,-0.48603982,0.8691865,0.09464532,-0.48534223,0.87029463,0.094372965,-0.48340565,0.87105566,0.09461221,-0.48198617,0.87290746,0.09686275,-0.47817367,0.87384754,0.09744542,-0.4763348,0.8739721,0.09905087,-0.47577477,0.8743104,0.09982166,-0.47499168,0.87473613,0.10042123,-0.4740805,0.87552285,0.10116143,-0.47246808,0.87594086,0.101398736,-0.47164172,0.87635636,0.101413205,-0.47086602,0.87897825,0.10083919,-0.46607795,0.8777877,0.101613276,-0.46814907,0.8773838,0.10214147,-0.46879062,0.87763387,0.104241036,-0.46785957,0.87799335,0.105453946,-0.4669123,0.8823271,0.10252627,-0.45933348,0.881306,0.10349942,-0.4610722,0.88098747,0.10456067,-0.46144134,0.88082844,0.105805546,-0.4614613,0.880898,0.10793914,-0.46083388,0.8801289,0.10925394,-0.46199197,0.880012,0.11060161,-0.46189415,0.8800744,0.11193297,-0.46145436,0.8801854,0.11274675,-0.46104422,0.8804071,0.113422476,-0.46045488,0.8811892,0.11444266,-0.45870292,0.88273907,0.11898273,-0.454549,0.88252306,0.12047018,-0.45457673,0.8826631,0.120829694,-0.45420933,0.883411,0.12133047,-0.45261905,0.883908,0.120428644,-0.45188892,0.886446,0.116515815,-0.44792584,0.8860299,0.11791989,-0.4483814,0.885868,0.11886685,-0.44845122,0.8857654,0.12103867,-0.44807297,0.88613725,0.12170012,-0.4471576,0.8863678,0.12147258,-0.44676232,0.88873804,0.11463747,-0.44385016,0.889184,0.11357906,-0.44322854,0.89260036,0.10677669,-0.43802202,0.8930259,0.10458521,-0.43768334,0.893606,0.10248643,-0.43699518,0.8949309,0.09975298,-0.43491146,0.89541703,0.09781783,-0.43434998,0.8974225,0.09669486,-0.43044505,0.89749384,0.09764224,-0.43008217,0.89790606,0.09700441,-0.4293656,0.89916474,0.09433736,-0.427321,0.8992671,0.0929009,-0.42742035,0.8990405,0.09157288,-0.42818275,0.8982642,0.090530686,-0.43002978,0.9001767,0.08598659,-0.42695218,0.90196407,0.08541257,-0.42327964,0.90179837,0.08483781,-0.42374775,0.9013747,0.080790065,-0.42543703,0.90150326,0.07769954,-0.42574006,0.90124214,0.07638417,-0.42653033,0.9030746,0.081788115,-0.42162406,0.9028893,0.08404553,-0.42157713,0.9027992,0.08541174,-0.42149547,0.9034602,0.08465608,-0.4202297,0.90411997,0.083708405,-0.41899875,0.9047687,0.082892284,-0.4177588,0.90509003,0.08225277,-0.41718873,0.90506387,0.07938162,-0.41780135,0.90509576,0.07783122,-0.41802394,0.9049336,0.0772195,-0.41848817,0.9049303,0.07592703,-0.4187318,0.90536547,0.07464381,-0.4180212,0.9051855,0.074395716,-0.41845483,0.907895,0.073300205,-0.4127392,0.9080531,0.07421038,-0.4122285,0.9087176,0.074331164,-0.41073996,0.9089069,0.07505179,-0.4101896,0.9088609,0.07593131,-0.41012958,0.9089786,0.07696705,-0.40967554,0.9091637,0.07807415,-0.40905458,0.90949667,0.07892802,-0.40814972,0.9099728,0.07959409,-0.40695748,0.91015977,0.08007143,-0.40644544,0.9102321,0.08007487,-0.40628245,0.9105459,0.07976818,-0.40563926,0.91078293,0.079255894,-0.4052073,0.91334575,0.069781125,-0.40116102,0.9154804,0.065238915,-0.39703846,0.91653395,0.062119354,-0.39510348,0.91798055,0.058322053,-0.39231396,0.91876006,0.055912483,-0.39083722,0.92520636,0.05084903,-0.37604192,0.9278014,0.04978775,-0.3697374,0.928503,0.049162902,-0.36805606,0.9292716,0.04785636,-0.3662841,0.9297964,0.04596147,-0.3651933,0.9299135,0.04358611,-0.3651863,0.9298992,0.042295426,-0.36537454,0.9309008,0.041854266,-0.36286628,0.9312152,0.042498853,-0.36198357,0.9314656,0.041520532,-0.36145243,0.9316029,0.0400824,-0.3612609,0.93158203,0.038346857,-0.3615031,0.93139774,0.0360134,-0.36221722,0.9317765,0.034639657,-0.36137578,0.931999,0.033195194,-0.3609376,0.9324867,0.029388443,-0.36000663,0.9329094,0.028508572,-0.35898086,0.9330557,0.027185503,-0.35870314,0.932903,0.025944376,-0.359192,0.9325079,0.02528751,-0.36026314,0.93268454,0.024447465,-0.35986376,0.9336281,0.026479324,-0.35726383,0.9339019,0.026743399,-0.35652766,0.93525547,0.027015217,-0.352941,0.9368725,0.029663697,-0.34841064,0.93716824,0.030010322,-0.34758458,0.94099236,0.03295929,-0.33681905,0.8833019,0.0750569,-0.46275717,0.8795163,0.074762814,-0.46995908,0.8773562,0.08139402,-0.47288603,0.8773167,0.10026099,-0.46932194,0.88206637,0.11514963,-0.45683637,0.9015117,0.08281839,-0.42475608,0.90506023,0.08135576,-0.41742936,0.90481645,0.07660086,-0.41885513,0.9075289,0.07173376,-0.41381824,0.9305722,0.041255757,-0.36377636,0.9312432,0.037336923,-0.3624806,0.9321832,0.030342527,-0.36071298,0.9319004,0.024359753,-0.36189535,0.9346077,0.026540695,-0.35468873,0.9374856,0.029686695,-0.3467556,0.9408602,0.0324192,-0.33724037,0.8769457,0.08736457,-0.47258198,0.87906146,0.100521214,-0.46598974,0.8827542,0.1181171,-0.45474535,0.8867527,0.11504294,-0.44769946,0.89698815,0.096455656,-0.43140316,0.89973384,0.086619966,-0.42775708,0.903031,0.079897344,-0.42207998,0.907171,0.0706108,-0.41479495,0.9108185,0.07815996,-0.4053402,0.91157913,0.07399034,-0.4044118,0.92096263,0.053563893,-0.3859518,0.93780565,0.02957421,-0.34589854,0.94005084,0.030790662,-0.3396414,0.88288,0.07572389,-0.46345317,0.8782962,0.084173694,-0.4706491,0.879003,0.104046956,-0.46532562,0.8826376,0.11627037,-0.4554471,0.896571,0.09641911,-0.43227747,0.8989347,0.088006295,-0.42915168,0.90285957,0.07655248,-0.42306548,0.9196715,0.05461402,-0.38887239,0.9302217,0.041315313,-0.3646651,0.8774668,0.08696211,-0.47168806,0.8783093,0.09952998,-0.46761796,0.8796876,0.10349432,-0.46415356,0.88459754,0.11835823,-0.45108593,0.88655925,0.1150742,-0.44807434,0.896143,0.096473455,-0.43315202,0.92997235,0.041553766,-0.3652734,0.9385973,0.029641533,-0.3437391,0.93936247,0.029973742,-0.3416135,0.8706911,0.09441794,-0.48268232,0.8787872,0.09942821,-0.46674094,0.8986128,0.08878216,-0.4296659,0.9024211,0.07609617,-0.42408186,0.91918594,0.055157743,-0.38994208,0.88567597,0.11597152,-0.44958714,0.9018777,0.075800434,-0.4252893,0.910914,0.07707926,-0.4053325,0.93239594,0.024204707,-0.3606273,0.9069344,0.07017379,-0.41538605,0.92575926,0.03976341,-0.37601668,0.9157577,0.032470316,-0.40041664,0.88757104,0.08138973,-0.45342404,0.9015448,0.075893864,-0.4259779,0.91132313,0.07478242,-0.404843,0.9255587,0.04014112,-0.37647018,0.9157107,0.032911155,-0.40048814,0.8920121,0.08946299,-0.44306967,0.90554965,0.07269505,-0.41796562,0.92661065,0.0368404,-0.37421322,0.9156377,0.033238564,-0.40062812,0.8900641,0.08905039,-0.44705245,0.9013167,0.07611483,-0.4264207,0.892052,0.08932846,-0.4430165,0.90600514,0.07143709,-0.41719472,0.9120708,0.049207672,-0.40706947,0.89077663,0.08783103,-0.44587308,0.90658695,0.07041186,-0.41610375,0.91184455,0.050175406,-0.40745795,0.91551316,0.048821185,-0.39931458,0.91304857,0.051676806,-0.40456372,0.968466,0.04747842,-0.24458016,0.96825135,0.04765977,-0.24539338,0.9682097,0.048400275,-0.24541268,0.968293,0.050100043,-0.24474193,0.96836936,0.04984049,-0.24449255,0.9686173,0.04827859,-0.24382296,0.96857333,0.047598448,-0.24413137,0.9798432,0.091796875,-0.17742768,0.97972125,0.092278935,-0.17785062,0.97938126,0.09428301,-0.17867014,0.97942543,0.09476744,-0.17817117,0.9795772,0.09528579,-0.17705704,0.9797396,0.09492278,-0.17635198,0.98004264,0.09207275,-0.17617881,0.9789935,0.11075066,-0.17119014,0.97899795,0.11260876,-0.16994794,0.9791161,0.112249725,-0.16950424,0.9793979,0.111635745,-0.16827753,0.97947717,0.111943156,-0.16761062,0.9796818,0.11178738,-0.16651505,0.9797498,0.11089887,-0.1667087,0.979666,0.11038563,-0.16753991,0.97969174,0.109097295,-0.16823184,0.9795618,0.10924126,-0.16889364,0.97936416,0.109955296,-0.16957474,0.97926754,0.109683484,-0.17030765,0.9791892,0.10992235,-0.17060347,0.88292664,0.12478279,-0.4526255,0.88212097,0.12506938,-0.45411474,0.88183326,0.12569337,-0.45450106,0.8815856,0.12690228,-0.45464557,0.8815975,0.12795885,-0.45432636,0.88255405,0.12770525,-0.45253706,0.8833563,0.12638411,-0.451341,0.88354844,0.12496707,-0.45135948,0.8835098,0.123866096,-0.4517385,0.9794061,0.05182014,-0.19513704,0.97921765,0.052135024,-0.19599679,0.97913057,0.053165704,-0.19615467,0.97917134,0.053510327,-0.19585739,0.9793291,0.05290786,-0.19523108,0.97939175,0.052274663,-0.19508733,0.93050027,0.041913938,-0.36388543,0.930297,0.042142976,-0.3643782,0.9303227,0.04290332,-0.36422372,0.93026567,0.04495007,-0.3641227,0.9301529,0.047268964,-0.36411694,0.93025774,0.048230007,-0.36372298,0.93039167,0.048297282,-0.3633713,0.93062264,0.047823973,-0.36284193,0.93077517,0.04253125,-0.36310977,0.8824588,0.07414928,-0.46450868,0.8828799,0.07432427,-0.46367976,0.88326514,0.074111834,-0.46297973,0.88327986,0.07330781,-0.46307954,0.44199413,0.5756527,0.6879426,0.44176435,0.5760192,0.6877834,0.44097662,0.57618505,0.68815,0.43996388,0.5758012,0.68911886,0.43934432,0.5748623,0.690297,0.43854678,0.57428825,0.69128126,0.43728337,0.57476187,0.6916879,0.43817317,0.5729088,0.6926614,0.44027767,0.5703986,0.6933982,0.4409636,0.5697019,0.6935351,0.4417717,0.5693692,0.693294,0.44434205,0.5685527,0.6923207,0.44504052,0.56853026,0.6918904,0.44638175,0.56872165,0.69086826,0.44708738,0.56835353,0.69071496,0.4477407,0.56749713,0.6909959,0.44857168,0.5674066,0.6905311,0.44860047,0.56784374,0.690153,0.44841275,0.5683739,0.6898384,0.44918522,0.5692157,0.6886407,0.44989914,0.5692515,0.688145,0.45123816,0.5695338,0.6870337,0.4524749,0.57000935,0.68582493,0.4533599,0.5708059,0.6845768,0.4553521,0.5731938,0.6812513,0.45614734,0.573089,0.6808073,0.4574707,0.57316864,0.6798517,0.4587239,0.5734102,0.67880267,0.45808873,0.5742276,0.67854065,0.45775178,0.57450867,0.6785301,0.45733982,0.57438797,0.67890996,0.4564398,0.5747974,0.67916906,0.45595658,0.57491386,0.6793951,0.45495775,0.5741445,0.680714,0.4546011,0.5741096,0.68098164,0.45411,0.57383186,0.6815432,0.45335776,0.57390165,0.681985,0.45221254,0.57412916,0.68255365,0.4518297,0.5735813,0.6832675,0.4516622,0.5736469,0.68332314,0.45103472,0.57502544,0.68257856,0.45043805,0.57558936,0.68249726,0.44983593,0.57590014,0.68263215,0.44919237,0.57577056,0.6831651,0.44825262,0.5758179,0.6837421,0.44747913,0.5760492,0.6840539,0.44627136,0.5756646,0.68516576,0.4453382,0.5752395,0.68612933,0.44469845,0.5748316,0.6868857,0.45569637,0.57453656,0.6798886,0.45533058,0.57426524,0.68036276,0.4429216,0.5752304,0.6876994,0.45466226,0.57314557,0.6817524,0.44408923,0.5748539,0.68726104,0.44865778,0.5689179,0.6892304,0.84907067,0.40515015,0.3390167,0.8489444,0.4044605,0.34015453,0.84994394,0.4024096,0.34009108,0.851057,0.40030056,0.33979625,0.8515692,0.40061843,0.33813432,0.85256207,0.40437707,0.3310849,0.85233706,0.40281293,0.3335615,0.8521372,0.40082058,0.3364596,0.8523006,0.39989284,0.33714893,0.854298,0.3965721,0.3360141,0.8560689,0.3937805,0.33478802,0.85796595,0.39159384,0.33248863,0.8616793,0.38829628,0.3267029,0.864667,0.38685715,0.32045662,0.8649836,0.38711646,0.3192869,0.8650797,0.3884235,0.3174339,0.86655015,0.39026347,0.31110328,0.86722815,0.3897628,0.30983907,0.8671659,0.39030504,0.30933025,0.8677623,0.39077112,0.30706102,0.8675768,0.39025414,0.30824053,0.8679568,0.38776934,0.31029966,0.86828965,0.38354617,0.31458765,0.8678954,0.38345248,0.31578758,0.86746264,0.3819053,0.31883684,0.8668683,0.3821219,0.3201908,0.86684835,0.38112712,0.3214281,0.8662221,0.3812058,0.32301927,0.8654378,0.37922198,0.32742637,0.86465317,0.38003874,0.3285505,0.8637943,0.38133267,0.32930955,0.8632046,0.38167217,0.33046052,0.86313325,0.3808347,0.3316111,0.8636436,0.37929916,0.33204195,0.86444545,0.37778866,0.33167738,0.8667595,0.374469,0.32939473,0.86879486,0.37200862,0.3268104,0.8706605,0.36939907,0.32479948,0.87286663,0.36659393,0.32204455,0.8764146,0.36127973,0.3183935,0.877428,0.3599101,0.317151,0.8808891,0.35576248,0.31219772,0.88274163,0.3541348,0.30879733,0.8837537,0.35371158,0.30637807,0.88438356,0.35410926,0.30409282,0.88556945,0.35624507,0.29808754,0.8858779,0.35788816,0.2951888,0.8870348,0.36090377,0.28795436,0.8869322,0.36201614,0.28687203,0.8859566,0.3670046,0.28352872,0.8851729,0.3691179,0.283233,0.8845322,0.3702044,0.28381595,0.8840528,0.37095153,0.28433365,0.8830865,0.37174127,0.28629833,0.88303125,0.37238836,0.28562692,0.8827724,0.3733111,0.28522238,0.8827039,0.3743608,0.2840559,0.8828459,0.3750538,0.28269735,0.8826064,0.37605843,0.28211004,0.8821407,0.37766635,0.2814177,0.88147473,0.37857053,0.28228822,0.8817595,0.3789751,0.28085235,0.8825015,0.37861785,0.27899763,0.88296294,0.37910283,0.27687076,0.883982,0.37795675,0.27518094,0.88364035,0.37783447,0.27644315,0.88352746,0.37719366,0.27767637,0.8845275,0.37422174,0.2785126,0.88507944,0.37398693,0.2770706,0.8854149,0.3741522,0.27577278,0.8853556,0.3736028,0.27670643,0.8854815,0.37262478,0.2776207,0.8863603,0.36969128,0.27873608,0.88784915,0.36954007,0.27416044,0.8884058,0.36982274,0.27196726,0.8887538,0.37056458,0.26981223,0.8886427,0.36974046,0.2713045,0.88812363,0.36844772,0.27474105,0.8880975,0.3673336,0.27631277,0.8881393,0.365881,0.27809998,0.8884422,0.36578515,0.27725732,0.88867223,0.366027,0.27619913,0.888653,0.3654575,0.27701387,0.88873696,0.3644212,0.2781074,0.89024407,0.3612606,0.27740997,0.89082175,0.36047137,0.2765809,0.8914458,0.3597296,0.27553403,0.8923078,0.3575936,0.275524,0.89322954,0.3555722,0.27515334,0.8948045,0.3512401,0.27560005,0.8967799,0.34329954,0.2791616,0.89798373,0.33924615,0.28024492,0.8982102,0.33870426,0.2801745,0.89854544,0.33803377,0.27990943,0.89969075,0.33509427,0.27976495,0.9003718,0.334133,0.2787217,0.90054774,0.33299288,0.27951643,0.9007916,0.33237806,0.27946252,0.90118605,0.3315518,0.27917236,0.9026241,0.33014277,0.2761802,0.90165514,0.33049664,0.27890852,0.90182966,0.32972515,0.27925724,0.90205276,0.32917568,0.27918482,0.90281695,0.32687634,0.27941626,0.90353495,0.32516515,0.27909186,0.9036446,0.32580742,0.27798554,0.9032328,0.32809708,0.27662757,0.904487,0.32436645,0.276929,0.9049077,0.32191795,0.27840787,0.9052859,0.32033288,0.2790057,0.90552306,0.31966755,0.27899936,0.90608096,0.31856436,0.2784494,0.9073199,0.3150797,0.27838,0.9080178,0.31331748,0.27809304,0.9089653,0.31063834,0.27800363,0.9102084,0.30746853,0.2774595,0.91218567,0.30273452,0.27616873,0.9126283,0.30116248,0.27642494,0.9147024,0.29568353,0.2754829,0.9187501,0.28334352,0.2749812,0.92075115,0.27818814,0.27354825,0.921312,0.27654737,0.2733236,0.92278093,0.27347392,0.27145422,0.9238614,0.27074975,0.2705082,0.92434627,0.2698767,0.2697232,0.9248045,0.2699178,0.26810628,0.92490786,0.2684666,0.26920465,0.9252603,0.2678871,0.26857013,0.9256901,0.26694357,0.26802787,0.9264451,0.26550516,0.26684535,0.92583185,0.26550516,0.26896533,0.9266247,0.26398155,0.2677319,0.92794585,0.26007903,0.26697445,0.9289156,0.25796527,0.26564965,0.9293424,0.25716978,0.2649271,0.9307904,0.25390795,0.26298288,0.9313058,0.2529055,0.26212257,0.93242496,0.25029087,0.26064953,0.93285906,0.24881534,0.26050866,0.93396956,0.24558662,0.25959224,0.93416476,0.24478017,0.25965163,0.934811,0.2427065,0.25927183,0.93749434,0.23486617,0.25679228,0.93780017,0.23356295,0.25686404,0.9398577,0.22626616,0.2558732,0.94038385,0.22455737,0.25544506,0.9411725,0.22230713,0.25450715,0.94255275,0.21753934,0.2535173,0.9454793,0.20889348,0.249865,0.9457438,0.20831007,0.24935037,0.94633967,0.20720218,0.24800894,0.9473143,0.20470451,0.2463569,0.9481264,0.20284069,0.24476948,0.94944066,0.19882752,0.24296094,0.9501264,0.19700313,0.24176344,0.9516348,0.1917952,0.24001211,0.95283747,0.18710838,0.23893745,0.954746,0.1805577,0.23634483,0.95508766,0.1792658,0.23594747,0.9557902,0.1770956,0.23473871,0.95586467,0.17646237,0.2349125,0.9561079,0.17512842,0.23492044,0.9564023,0.1740652,0.23451225,0.95652705,0.17395696,0.23408319,0.95842034,0.16573429,0.23229863,0.95793194,0.16861616,0.23223902,0.95746833,0.17067972,0.2326433,0.9569909,0.17209858,0.23356053,0.9567679,0.17239498,0.23425443,0.9576955,0.16808444,0.23359592,0.9584589,0.16422297,0.23321097,0.9593706,0.16051535,0.2320408,0.9595139,0.16001573,0.23179324,0.95970005,0.15968765,0.23124804,0.959854,0.15920645,0.23094071,0.9600874,0.15799896,0.23079954,0.9608697,0.15475832,0.22973719,0.96127117,0.15379758,0.22870067,0.9637705,0.14620855,0.22309057,0.9643806,0.14463109,0.22147645,0.96569884,0.14168414,0.21760368,0.9666738,0.14052652,0.21399528,0.9668093,0.14141756,0.21279314,0.9673392,0.14245339,0.2096709,0.96790826,0.14581655,0.20467335,0.967826,0.14800495,0.2034878,0.96747255,0.15062892,0.20324308,0.969539,0.16084598,0.18472336,0.97034824,0.15974991,0.18139546,0.9700091,0.1607795,0.18229727,0.9696612,0.16133884,0.18364912,0.96904975,0.16175763,0.18648621,0.96762985,0.16819866,0.18815325,0.9674448,0.17425326,0.1835384,0.96701133,0.17665187,0.18352963,0.9674176,0.17931107,0.17874776,0.9676479,0.17901435,0.1777961,0.9679303,0.17879714,0.17647205,0.9681907,0.17887677,0.17495644,0.9683819,0.17918956,0.17357323,0.967015,0.18684712,0.17311895,0.9656093,0.19418076,0.17289451,0.96532804,0.19541292,0.17307681,0.9649833,0.19660796,0.17364483,0.964749,0.19616087,0.17544349,0.9647231,0.19715436,0.17446902,0.96459967,0.19845587,0.17367433,0.9623837,0.21192947,0.17001046,0.9623283,0.21295875,0.16903506,0.96206254,0.21562162,0.16716166,0.96142024,0.21968159,0.16556324,0.9591435,0.23109119,0.16321929,0.95869434,0.2323712,0.16403906,0.9578169,0.23393258,0.16692019,0.95785105,0.23523985,0.16487464,0.9582844,0.2338066,0.16439436,0.9585471,0.23319179,0.16373478,0.95756173,0.23659801,0.16461141,0.95719916,0.238084,0.16457763,0.9567945,0.23951977,0.16484721,0.95474863,0.24677183,0.16600822,0.95457935,0.24783461,0.16539726,0.9540523,0.25001362,0.16515857,0.95358473,0.25169486,0.16530524,0.95243055,0.255416,0.16624917,0.949475,0.27341083,0.15409032,0.95006967,0.2717077,0.15343565,0.9500969,0.2719817,0.1527805,0.95034355,0.27160287,0.15191808,0.95051074,0.2715806,0.1509082,0.9500671,0.27364773,0.14996462,0.9499527,0.27499586,0.14821292,0.9487797,0.28006294,0.14622481,0.9487017,0.2817593,0.14344625,0.94961315,0.2812441,0.13833523,0.9497582,0.28116068,0.13750675,0.94988716,0.28377014,0.13110653,0.9497871,0.28501692,0.12911195,0.9494237,0.28676456,0.12790911,0.94923997,0.2874698,0.12768987,0.9489067,0.28874457,0.12728944,0.94867307,0.28945267,0.12742274,0.94692814,0.29694027,0.12309944,0.94675976,0.3000701,0.11663574,0.9464351,0.30251935,0.112883314,0.9458671,0.3054737,0.109641485,0.9450587,0.30907694,0.106468506,0.94485426,0.31017655,0.10507578,0.9444431,0.31387103,0.09753037,0.9439846,0.31565866,0.09619042,0.94284743,0.32044345,0.09140383,0.94198936,0.32365856,0.08888865,0.9416618,0.32498544,0.08750748,0.9412679,0.32639477,0.086493574,0.9393222,0.33394423,0.07845471,0.93892246,0.33588824,0.07485779,0.93873906,0.33638662,0.074920416,0.9385231,0.33674863,0.07599161,0.93878496,0.3354732,0.0783615,0.93833077,0.33797362,0.07286349,0.93842477,0.33753726,0.073672146,0.93858236,0.3370446,0.07391958,0.93870574,0.33697885,0.072641455,0.9384659,0.3386024,0.06804505,0.9382634,0.3403106,0.062052697,0.9381911,0.34069842,0.06100737,0.9380661,0.3411126,0.06061384,0.9378193,0.34181985,0.06045026,0.9374066,0.3429016,0.06072361,0.937774,0.3421306,0.059384916,0.9373543,0.34347802,0.058221165,0.9369118,0.34483346,0.057324804,0.9363009,0.34715226,0.053160626,0.93605983,0.34785065,0.052837975,0.93503463,0.35076848,0.051688254,0.93459004,0.35216466,0.050214596,0.93414015,0.35347718,0.049356997,0.9338318,0.3542105,0.049931258,0.9324255,0.3578069,0.050566945,0.9314972,0.36010015,0.051389232,0.92902035,0.3672298,0.045425564,0.9286693,0.3689928,0.03765275,0.928286,0.37019008,0.03527607,0.92772585,0.37178,0.033232816,0.9266404,0.37462386,0.031536717,0.9263665,0.37537292,0.030664392,0.9259079,0.37657553,0.029756531,0.9254663,0.3775614,0.030975657,0.92522925,0.37804502,0.03213601,0.92411995,0.3806558,0.03321726,0.92487,0.37890172,0.032387137,0.9252378,0.37812716,0.03090164,0.9280168,0.37126336,0.030794995,0.928636,0.36965173,0.031506438,0.9290471,0.36870527,0.030461425,0.92920125,0.3684866,0.028329482,0.9287337,0.36969602,0.027901666,0.92834175,0.37069038,0.027755199,0.92857563,0.3701252,0.027470807,0.9293429,0.36835584,0.025212243,0.92910874,0.3690934,0.02295565,0.92876625,0.36996993,0.022701692,0.926124,0.3765795,0.02196116,0.926492,0.37568957,0.021679142,0.92658085,0.375515,0.020892803,0.9269243,0.3746943,0.020383602,0.9286739,0.37028986,0.02121713,0.92913383,0.36913693,0.021170566,0.92940074,0.36848107,0.020880233,0.9296538,0.36787093,0.020366013,0.92918926,0.36912033,0.018906012,0.9286593,0.37047115,0.018520009,0.92926615,0.3689856,0.017722353,0.9293595,0.36879557,0.016756065,0.92930114,0.36900234,0.015382909,0.9286235,0.37069833,0.015528375,0.9281317,0.3719129,0.015882498,0.9274331,0.37360203,0.017009102,0.9274603,0.3735902,0.015736638,0.92644656,0.37611365,0.01533875,0.92583567,0.37761822,0.015257648,0.92525065,0.37904602,0.0153426705,0.92365766,0.38285974,0.01658233,0.9228315,0.3848113,0.017385699,0.9225705,0.38544127,0.017280119,0.92245907,0.38570547,0.017334683,0.92139876,0.38821542,0.017696476,0.92074114,0.38974875,0.018209802,0.92004305,0.39138213,0.018459545,0.9190664,0.39372724,0.017195635,0.91889364,0.39410865,0.017690659,0.918261,0.39543042,0.020774094,0.91727906,0.39773434,0.02016209,0.9168718,0.39863724,0.020844258,0.91450953,0.40396634,0.021989863,0.9132922,0.4067771,0.020728568,0.9128205,0.40784648,0.020495325,0.9119933,0.40970382,0.020273022,0.9116761,0.410415,0.020153975,0.9113573,0.41111505,0.020307036,0.9109608,0.41192752,0.02159073,0.9107553,0.41225597,0.023872258,0.9104047,0.41293368,0.025478076,0.90991175,0.41396028,0.026409497,0.9097012,0.41437128,0.027204188,0.9064395,0.42136198,0.028662287,0.9067677,0.42074978,0.027237097,0.9067844,0.42074826,0.026700852,0.9062259,0.42200947,0.025741378,0.90458465,0.42559648,0.024378594,0.9047311,0.4254708,0.020886041,0.90484154,0.4252888,0.019782303,0.90481097,0.42540368,0.018679975,0.90469897,0.42569065,0.017526891,0.9044983,0.42614233,0.016896853,0.9042347,0.4267151,0.016546657,0.90399784,0.42721218,0.016661014,0.90340173,0.4283915,0.018603154,0.9027142,0.42982176,0.018981518,0.9024486,0.43036103,0.019389873,0.9016964,0.43168294,0.024362285,0.900723,0.4336307,0.02574024,0.89997774,0.43507072,0.027450759,0.8986321,0.43768626,0.029852077,0.8981756,0.43865678,0.029340422,0.89765847,0.4397378,0.028981917,0.89700156,0.4411624,0.027638476,0.8964356,0.4424064,0.026073443,0.89603436,0.4432591,0.025372352,0.8956166,0.444158,0.024384355,0.8953752,0.44465116,0.024261782,0.8950904,0.44521517,0.024428118,0.89480096,0.44575307,0.025209213,0.8958388,0.44389993,0.02063193,0.8963137,0.44294128,0.02060919,0.89640385,0.44278693,0.019995224,0.89643645,0.44274867,0.019373812,0.8966682,0.442323,0.018343763,0.89662534,0.442453,0.017271144,0.8967553,0.44221607,0.016580999,0.8967211,0.44230247,0.01611553,0.896452,0.44285417,0.015936447,0.89604145,0.44366544,0.016450156,0.8963117,0.44320184,0.01404979,0.89713246,0.44154096,0.013963277,0.89789134,0.44003254,0.012750528,0.8984371,0.4389608,0.011145464,0.898693,0.43846682,0.009886337,0.89888096,0.43811303,0.008363862,0.8987259,0.43845385,0.007060293,0.8982164,0.43950665,0.0064055547,0.8977543,0.4404457,0.0066945474,0.8992376,0.43745172,0.0027787425,0.90001225,0.43585315,0.0031477497,0.9021286,0.4314585,0.0027569185,0.9035105,0.42855394,0.0032123309,0.90380746,0.42792782,0.0031409827,0.9040377,0.4274426,0.0029337853,0.90413266,0.42724374,0.002630579,0.904393,0.42670044,-0.000060090846,0.9046766,0.42609468,-0.0018888545,0.9049301,0.4255418,-0.0039546937,0.90511453,0.4251113,-0.006940718,0.9050326,0.42525178,-0.008771309,0.905015,0.42526948,-0.009684382,0.9050545,0.42513913,-0.011534634,0.90487105,0.4253698,-0.01639933,0.9047602,0.4254314,-0.02042385,0.9049175,0.42501494,-0.022063248,0.90495473,0.42486528,-0.023376036,0.906634,0.42022476,-0.037760835,0.9063801,0.4209577,-0.035631847,0.90649503,0.42074046,-0.035272717,0.9079436,0.41764098,-0.034848668,0.9093837,0.41459706,-0.03362336,0.91001284,0.41323245,-0.033399705,0.91027737,0.41269687,-0.032808214,0.9103379,0.41264182,-0.031806834,0.9104669,0.4124166,-0.03102515,0.91070235,0.41192046,-0.030705258,0.91118467,0.410889,-0.030211514,0.9118233,0.4095296,-0.029391011,0.9116076,0.41009244,-0.028209884,0.91166973,0.4100038,-0.027480798,0.9118042,0.40976524,-0.026563935,0.91209656,0.40917197,-0.02565456,0.912576,0.40818343,-0.02431687,0.91256386,0.40833196,-0.022185894,0.9126206,0.40822697,-0.021779498,0.912862,0.40770096,-0.021515884,0.9131635,0.4070363,-0.021303412,0.9138979,0.40546805,-0.01965459,0.9150226,0.40295258,-0.019046819,0.9157506,0.40131867,-0.018549876,0.9163055,0.40004602,-0.018642308,0.9177176,0.39672545,-0.02008567,0.91954917,0.3924076,-0.021112163,0.91972774,0.39196786,-0.021495823,0.9197791,0.391829,-0.021826364,0.9197332,0.39192858,-0.02197425,0.9192355,0.39299938,-0.023611698,0.9199548,0.39127234,-0.024270296,0.92022413,0.39059535,-0.024957035,0.92027557,0.3904047,-0.026019547,0.9200692,0.39080876,-0.02722538,0.9197099,0.39159065,-0.028115364,0.91933894,0.39243498,-0.02847107,0.9175765,0.39652365,-0.028676307,0.916747,0.3982855,-0.030718252,0.916503,0.39882407,-0.031010322,0.9151729,0.40181977,-0.031614985,0.9152357,0.4015927,-0.032665193,0.91488445,0.40228322,-0.033979855,0.9148632,0.40229732,-0.03438348,0.915167,0.4015568,-0.034950994,0.9150741,0.4016855,-0.035890922,0.9163804,0.3986287,-0.036635067,0.91752,0.39592734,-0.03739963,0.9180815,0.39462167,-0.03741628,0.9192601,0.3918526,-0.037583623,0.92020607,0.38959023,-0.037950628,0.92040217,0.38907602,-0.03846628,0.92088634,0.3878667,-0.039087184,0.92145306,0.38646027,-0.039658718,0.92176425,0.38567093,-0.040106636,0.922822,0.3830975,-0.04044573,0.9235751,0.38123655,-0.040838353,0.9259435,0.37538397,-0.04141899,0.9263908,0.3742518,-0.04166053,0.9261329,0.3747899,-0.042547375,0.9258679,0.3754045,-0.04289578,0.9254136,0.37630165,-0.04479702,0.9259673,0.37477088,-0.04616701,0.9260611,0.37442714,-0.047065716,0.9259184,0.37466744,-0.047950897,0.92494017,0.37696323,-0.04882974,0.92447925,0.37799305,-0.049592298,0.9244628,0.3779244,-0.05041484,0.92426896,0.3783354,-0.05088456,0.92385435,0.3793252,-0.051043343,0.92340255,0.38042805,-0.051012084,0.92046314,0.38760749,-0.05008018,0.9197286,0.38925183,-0.050817035,0.9191315,0.39068794,-0.050598532,0.9188138,0.39132565,-0.05143253,0.9189158,0.3909797,-0.052236382,0.9187642,0.39121902,-0.053104427,0.9183531,0.39209563,-0.053746555,0.9180122,0.39285907,-0.05399356,0.9165679,0.3961731,-0.054314625,0.9152434,0.39919758,-0.054505374,0.91416216,0.40166128,-0.054550454,0.9135566,0.4031328,-0.05383619,0.9114532,0.4079181,-0.05344097,0.91197705,0.40653569,-0.05501448,0.91203994,0.40630367,-0.055682838,0.9118771,0.40651476,-0.056796264,0.9116713,0.4068222,-0.057889488,0.911612,0.40684095,-0.058686096,0.91174686,0.40636837,-0.059852734,0.9118749,0.4058419,-0.061453383,0.91199416,0.4051883,-0.06394623,0.9121397,0.40469584,-0.06497983,0.91204846,0.40476593,-0.06581864,0.91132015,0.40630063,-0.06644842,0.910266,0.40854046,-0.06716087,0.9086894,0.41186222,-0.06821406,0.9074966,0.4142759,-0.069465525,0.90717864,0.41491652,-0.06979429,0.9061689,0.41687807,-0.071208306,0.9051126,0.41893286,-0.07257058,0.9038142,0.42152652,-0.07372393,0.9028918,0.42338887,-0.074352026,0.90253484,0.42416543,-0.074260674,0.9022708,0.42480895,-0.073788494,0.8998993,0.4298633,-0.07347565,0.8992936,0.43081564,-0.075292,0.8986096,0.43204194,-0.07642394,0.89772034,0.43366292,-0.07768315,0.89712715,0.43476683,-0.07836208,0.8957648,0.43745023,-0.079010844,0.8953423,0.43817195,-0.079796396,0.89487576,0.4390182,-0.08037603,0.8946576,0.43947527,-0.08030719,0.89452636,0.4398044,-0.07996649,0.8916488,0.44579127,-0.07894646,0.8912082,0.44659588,-0.07937291,0.8905957,0.44771641,-0.079933375,0.8901497,0.44840512,-0.08103291,0.8897611,0.44888645,-0.082620196,0.88887435,0.4501928,-0.085023135,0.88627744,0.45420527,-0.09060787,0.8859105,0.4547154,-0.09163238,0.88516116,0.45598105,-0.09257967,0.88240045,0.4585904,-0.10518631,0.8831869,0.4567538,-0.1065688,0.8834022,0.4560622,-0.10773914,0.88348883,0.4555767,-0.10907502,0.8832609,0.45578456,-0.11004811,0.8828793,0.4565285,-0.11002654,0.88106567,0.46081328,-0.10665118,0.8788777,0.46481556,-0.107333325,0.87821645,0.46576914,-0.108604886,0.87738925,0.46695566,-0.110183805,0.8768271,0.46777612,-0.11117448,0.8765328,0.46803898,-0.11238212,0.8762272,0.4685119,-0.11279379,0.8758489,0.46919906,-0.11287563,0.8754631,0.46994698,-0.112757586,0.874506,0.4718618,-0.112185836,0.87396896,0.4728271,-0.112306304,0.87387925,0.4731169,-0.11178303,0.8733085,0.47470787,-0.109474756,0.87320566,0.4751473,-0.108382635,0.8736404,0.47466737,-0.10697331,0.87371033,0.4750468,-0.10469414,0.87377626,0.47511804,-0.10381696,0.8733148,0.47638783,-0.10186212,0.8733198,0.47654378,-0.10108728,0.87406945,0.47571635,-0.098471075,0.8744498,0.47513157,-0.09791625,0.87413925,0.4760567,-0.09618015,0.8737259,0.47667634,-0.09686422,0.87348574,0.47711003,-0.09689484,0.8724645,0.47879213,-0.097794846,0.87083614,0.48119786,-0.10046442,0.87033945,0.4822062,-0.09993205,0.86937875,0.48418856,-0.09870194,0.868867,0.48514944,-0.09848941,0.8686815,0.48558313,-0.09798699,0.8690283,0.48522833,-0.0966613,0.87032455,0.48343083,-0.09396668,0.87025756,0.48362774,-0.09357387,0.8699073,0.48425198,-0.09360219,0.86893976,0.486062,-0.09320596,0.8685438,0.4866049,-0.09406049,0.8680276,0.48726878,-0.09537888,0.8675008,0.48800915,-0.0963821,0.8671411,0.48860714,-0.09658911,0.8670715,0.48878852,-0.09629558,0.8672109,0.48896322,-0.09412846,0.8663932,0.49062082,-0.093026824,0.86610836,0.49127042,-0.09224821,0.8659828,0.49162072,-0.091558665,0.8666996,0.49076563,-0.089336246,0.8676243,0.48959273,-0.086758785,0.8688264,0.48795632,-0.083900556,0.869292,0.48711553,-0.083963506,0.8694458,0.4868997,-0.08362237,0.8697935,0.48637035,-0.083085835,0.8704919,0.48556593,-0.0804329,0.87021786,0.4863972,-0.07834965,0.8700327,0.487085,-0.07610005,0.870104,0.48749214,-0.07259725,0.86989677,0.4878789,-0.072482854,0.86950666,0.48864573,-0.071996756,0.86919075,0.48933712,-0.07110998,0.86912644,0.4895712,-0.07028018,0.8701315,0.48810655,-0.067992896,0.87094235,0.48701578,-0.06538347,0.8717722,0.4857238,-0.06391889,0.8725723,0.48444137,-0.06272316,0.8728118,0.48419148,-0.06130355,0.87325454,0.48339722,-0.06126727,0.87543404,0.48007387,-0.056073856,0.876022,0.47951996,-0.051439937,0.87632304,0.47914374,-0.04979117,0.8766849,0.4785512,-0.04911474,0.8775432,0.47704718,-0.04841412,0.87995714,0.4729833,-0.044297043,0.88075906,0.47173715,-0.041564114,0.88123626,0.47090963,-0.040826503,0.88150394,0.47041938,-0.040698845,0.8815838,0.47023958,-0.0410444,0.88364077,0.4668532,-0.035029095,0.8835609,0.46702725,-0.034722745,0.8836964,0.46680272,-0.034292124,0.88385415,0.46657583,-0.033299517,0.88392425,0.46650422,-0.032431636,0.88461995,0.46531126,-0.030545902,0.88466126,0.4653007,-0.02949215,0.88456786,0.4655594,-0.028180506,0.88451266,0.46576607,-0.026446367,0.88454777,0.46576828,-0.025201036,0.8847345,0.46541834,-0.025112834,0.8852359,0.46448654,-0.02469068,0.88577455,0.46347275,-0.02442165,0.88620234,0.46264103,-0.024672277,0.886691,0.4616495,-0.025667481,0.8870629,0.46085867,-0.02699478,0.88704175,0.46079814,-0.02867098,0.8881048,0.45850417,-0.0323077,0.88874346,0.45731997,-0.031519394,0.88929254,0.45628065,-0.031094233,0.88967544,0.45554334,-0.030948238,0.8898358,0.45522314,-0.031052478,0.8916102,0.4517338,-0.031109825,0.8915933,0.45182502,-0.030258788,0.89162296,0.4518129,-0.029556856,0.89170754,0.45170262,-0.02867877,0.89192563,0.4513567,-0.027308572,0.8922151,0.4509916,-0.023637343,0.89177084,0.45191935,-0.022664333,0.89178073,0.45192233,-0.022211423,0.89243996,0.4507208,-0.020042276,0.8923842,0.45093074,-0.017662674,0.89266145,0.45053062,-0.0133336885,0.89257014,0.45082423,-0.008722035,0.8921587,0.45166838,-0.0069705965,0.8918576,0.4522842,-0.0053842464,0.8921513,0.45172092,-0.0037742006,0.8922059,0.45161754,-0.0032086978,0.8929408,0.45016992,-0.0019160853,0.89335155,0.44934338,0.0036817547,0.8932509,0.4495359,0.0045066066,0.89319825,0.44962195,0.0060805604,0.89302766,0.44995987,0.0061386987,0.8928623,0.4502886,0.006090408,0.8927281,0.45054957,0.006448576,0.8925873,0.4508189,0.007086557,0.89252144,0.45093074,0.008184448,0.89232516,0.4512912,0.009591173,0.8921422,0.45163497,0.010399815,0.89236,0.4511293,0.013266757,0.8919485,0.45189044,0.014931797,0.8913843,0.45293623,0.016817592,0.8911344,0.45339125,0.017770065,0.89030236,0.4550099,0.018102685,0.8900297,0.45552966,0.018432558,0.88906366,0.45737913,0.019238753,0.8884683,0.45861012,0.017344257,0.88832235,0.45889863,0.017189918,0.88662314,0.46208715,0.019361263,0.8846618,0.46588296,0.018069442,0.8838431,0.4674462,0.017760325,0.8835216,0.46804193,0.018065752,0.88269836,0.46957833,0.018432736,0.88241416,0.47008312,0.019158008,0.88193846,0.47088626,0.021229185,0.8819098,0.47090963,0.021893324,0.8828026,0.46899137,0.026583496,0.88290095,0.46868423,0.028654642,0.88301474,0.46843883,0.029154029,0.8832422,0.4679998,0.029316694,0.8835246,0.46747634,0.029158736,0.8853761,0.46395215,0.02928482,0.88596326,0.4627914,0.029887782,0.8872162,0.46033743,0.030608261,0.8893922,0.45607206,0.03130114,0.8897774,0.45532864,0.031178014,0.8953002,0.4443595,0.031340975,0.8947943,0.44521216,0.033604793,0.89479315,0.44509315,0.03517487,0.8948296,0.44471297,0.038864393,0.8946213,0.44499385,0.04041214,0.89501566,0.44401443,0.042405136,0.8942989,0.4451541,0.045466766,0.89341486,0.44684747,0.046229422,0.8932898,0.4470632,0.04655887,0.8933376,0.44613525,0.053955723,0.89274454,0.44707695,0.05594063,0.89255595,0.44735974,0.056684807,0.89224684,0.44772783,0.058612287,0.8920233,0.44794196,0.06035228,0.89159894,0.44852924,0.0622321,0.8918147,0.44776204,0.06461978,0.89076644,0.44951612,0.06686106,0.8902172,0.4505915,0.06693733,0.889785,0.4513293,0.067708656,0.8896045,0.4514981,0.06894397,0.88980263,0.45083413,0.07070963,0.8895663,0.4505899,0.07510365,0.889026,0.45160383,0.075410485,0.88887876,0.45182726,0.07580698,0.8886002,0.45210025,0.07742804,0.8881065,0.45285344,0.07868012,0.8868524,0.45462814,0.08249952,0.88640606,0.4554159,0.08295022,0.8855197,0.4571547,0.08285204,0.8851321,0.4578716,0.08303495,0.88469887,0.45862907,0.08347044,0.88411343,0.4593968,0.08542851,0.88309443,0.46063098,0.0892377,0.88236713,0.46161473,0.09132364,0.8824988,0.4611551,0.09236813,0.88250333,0.46074367,0.09435653,0.8828476,0.45985618,0.0954588,0.88256574,0.46013698,0.096703894,0.88174844,0.46107268,0.09965727,0.88149345,0.46121177,0.10125697,0.8815452,0.46089423,0.10224793,0.8817952,0.46035862,0.10250396,0.8819649,0.4597502,0.10376712,0.88157713,0.46023533,0.1049053,0.88096285,0.46088967,0.10716893,0.87973475,0.46204263,0.11217544,0.8790684,0.4632446,0.11244225,0.87838614,0.46443143,0.11287693,0.87818277,0.46464202,0.11359036,0.87794703,0.4644066,0.116342135,0.8769297,0.46571556,0.118757345,0.87568694,0.46738887,0.121326044,0.87523943,0.4679388,0.12243037,0.87502706,0.46814212,0.12316872,0.87505287,0.46791846,0.12383401,0.87452424,0.46814287,0.12668735,0.8737138,0.46917054,0.12846498,0.87271273,0.4704299,0.13064526,0.8706872,0.47317928,0.13418321,0.870214,0.47392538,0.13461904,0.8697532,0.47462603,0.13512768,0.86688703,0.47798535,0.14155167,0.8664023,0.4786342,0.14232466,0.86575186,0.47945186,0.14352593,0.86544937,0.47969046,0.1445491,0.8656362,0.4792402,0.14492305,0.8656362,0.47887585,0.14612311,0.8649473,0.4797091,0.14746274,0.864223,0.48058078,0.14886467,0.86083764,0.4863413,0.14976856,0.8607394,0.4867061,0.14914697,0.8603149,0.48777774,0.1480918,0.8593368,0.48965666,0.14756906,0.85844547,0.4912586,0.14743264,0.8548081,0.4993327,0.14131497,0.85465205,0.4999143,0.14019845,0.85390323,0.5018027,0.1379975,0.85372716,0.5027186,0.13573472,0.85396606,0.5024843,0.13509832,0.85327786,0.5035796,0.13536805,0.851635,0.5054375,0.13874677,0.8510037,0.5062571,0.13962977,0.8505276,0.50676936,0.14066838,0.8502326,0.5069897,0.1416545,0.84950423,0.5076808,0.14353694,0.8486758,0.5084604,0.14566237,0.8481002,0.5091213,0.14670226,0.8474661,0.5102989,0.14627422,0.8467702,0.5114315,0.1463488,0.84638596,0.5118906,0.1469659,0.8462806,0.511772,0.14798199,0.84493107,0.5133731,0.15013224,0.8449055,0.5133898,0.15021832,0.84486246,0.5134542,0.15024038,0.84447646,0.51390976,0.15085188,0.8438868,0.51456314,0.15192088,0.84356564,0.5145178,0.1538455,0.8399335,0.5186501,0.15973036,0.8381482,0.52104884,0.16129376,0.83775866,0.52140015,0.16218,0.83777434,0.5212198,0.16267794,0.83843106,0.5199457,0.1633705,0.8382747,0.52007383,0.1637642,0.8381937,0.5199865,0.16445452,0.83781034,0.5198737,0.16674878,0.83684874,0.52155423,0.16632904,0.8364413,0.52207917,0.16673133,0.83582157,0.5232467,0.16617823,0.8353523,0.5242544,0.1653598,0.8347589,0.52500165,0.16598472,0.8333297,0.5270376,0.1667122,0.832683,0.5282552,0.16608837,0.8320922,0.5292968,0.16573311,0.8318295,0.52967924,0.16582967,0.8313347,0.5302603,0.16645306,0.8290498,0.5331091,0.16873385,0.8288344,0.53341126,0.16883716,0.8281581,0.5343573,0.169164,0.8272291,0.5357879,0.16918431,0.8265229,0.53680927,0.16939797,0.82588613,0.53834134,0.16763271,0.8261173,0.5384613,0.16610123,0.8261512,0.538727,0.16506808,0.82661027,0.5381589,0.16462219,0.8272028,0.5372887,0.1644881,0.8275406,0.53682935,0.16428846,0.8282464,0.536003,0.1634281,0.82896984,0.5352107,0.16235283,0.82912856,0.53531295,0.1612015,0.8291116,0.53565264,0.16015711,0.82839525,0.53725857,0.15847556,0.82849604,0.53731537,0.15775435,0.8284354,0.537411,0.15774721,0.827908,0.5382415,0.15768471,0.82667,0.54028547,0.15718903,0.8261371,0.5411034,0.1571768,0.8256093,0.5418407,0.1574103,0.8251014,0.54265916,0.15725373,0.824325,0.543849,0.15721492,0.8236519,0.54466045,0.15793201,0.8233521,0.5449706,0.15842451,0.823057,0.54540783,0.1584536,0.82258916,0.5462204,0.15808299,0.8220284,0.54715306,0.15777464,0.82145596,0.54794675,0.15800157,0.82110226,0.5482989,0.15861729,0.81986946,0.5497014,0.16013235,0.8194017,0.5502879,0.16051218,0.8188386,0.5509338,0.16116868,0.8165527,0.5541231,0.16183078,0.81502914,0.556423,0.1616198,0.81421536,0.5575654,0.1617844,0.812276,0.5604611,0.16152708,0.81180245,0.56192404,0.1588024,0.8115319,0.5624907,0.15817793,0.8112613,0.5629218,0.15803193,0.8108128,0.56356406,0.15804498,0.81024337,0.56427485,0.15842853,0.8096737,0.56482774,0.15936771,0.8087837,0.56572896,0.16068508,0.8078917,0.56666744,0.16186088,0.8070648,0.5672396,0.16396856,0.80545807,0.56861794,0.16706577,0.8041961,0.570281,0.16747606,0.80224365,0.57281107,0.168204,0.80015254,0.57550365,0.16897182,0.79882205,0.57715976,0.16961698,0.7982618,0.5779564,0.16954209,0.7969664,0.5799839,0.1687106,0.7966514,0.58041567,0.16871338,0.79644996,0.58056414,0.169153,0.7964461,0.58029974,0.17007598,0.7958087,0.58060026,0.17202298,0.7957683,0.58064467,0.17205974,0.7959803,0.57989645,0.1735958,0.79652965,0.57789445,0.17770338,0.796782,0.5769391,0.17966533,0.797018,0.5760262,0.18153809,0.7972396,0.57514673,0.18334465,0.797647,0.5744675,0.18370177,0.7984046,0.57269996,0.18591647,0.7984248,0.5721486,0.18752012,0.798559,0.5718285,0.18792503,0.7990664,0.56986576,0.19169194,0.79874074,0.5700843,0.19239861,0.7986292,0.5688163,0.1965692,0.79815495,0.5688478,0.19839562,0.7983501,0.568024,0.1999647,0.796049,0.56786335,0.20937333,0.79540765,0.5684041,0.21034141,0.79517466,0.5683725,0.2113054,0.7944703,0.56850225,0.2135934,0.79355377,0.56895995,0.21577083,0.79245186,0.56950575,0.21836479,0.7919284,0.56973904,0.21965165,0.79084694,0.57021725,0.22229126,0.79077244,0.5695793,0.22418384,0.79070085,0.56900203,0.22589575,0.7905862,0.56861156,0.22727601,0.79145986,0.566824,0.22869597,0.7917434,0.5661948,0.22927225,0.7921881,0.56528896,0.22997032,0.7925355,0.56465334,0.23033485,0.7930976,0.56389135,0.23026665,0.7953151,0.5612859,0.2289804,0.79552346,0.56075466,0.22955734,0.7958281,0.5602875,0.22964227,0.7962076,0.5598159,0.22947687,0.7965456,0.5594649,0.22915967,0.7973348,0.55924654,0.22693723,0.79771817,0.5592423,0.22559634,0.7988401,0.55755055,0.22581367,0.79874504,0.55685633,0.22785388,0.79890776,0.5561242,0.22906841,0.7994332,0.5551535,0.22958918,0.79993504,0.5543771,0.22971709,0.8003702,0.55386275,0.22944188,0.8010112,0.5532709,0.22863168,0.8036202,0.54904133,0.2296697,0.80393857,0.5481792,0.23061316,0.8041139,0.5478726,0.23073027,0.8044617,0.5474092,0.23061782,0.8050666,0.5467364,0.23010236,0.8059989,0.5457428,0.2291954,0.8068859,0.5449363,0.22799009,0.80877113,0.5426004,0.22687879,0.8091332,0.5418615,0.2273537,0.80970776,0.5412489,0.22676644,0.8101946,0.5412826,0.2249397,0.8107668,0.54102176,0.22350082,0.81077784,0.54128116,0.22283185,0.8110182,0.541087,0.2224282,0.8123036,0.53888416,0.22308446,0.813164,0.53757846,0.22310017,0.81350017,0.53720826,0.22276606,0.8142252,0.5366785,0.22139002,0.81874263,0.5314693,0.2172575,0.8186253,0.5312412,0.21825568,0.81860125,0.52916163,0.22333819,0.81872135,0.5282864,0.22496401,0.81903785,0.5272309,0.22628413,0.81939423,0.5264386,0.2268381,0.81979257,0.5256638,0.22719514,0.8223068,0.5219832,0.22659454,0.82385916,0.5189429,0.22793512,0.824451,0.51781195,0.22836657,0.82499963,0.51702136,0.22817643,0.82545257,0.51672524,0.22720711,0.8264339,0.5134424,0.2310497,0.82626694,0.51344466,0.23164089,0.8268369,0.51157796,0.23372772,0.8281207,0.5078343,0.23731925,0.8283822,0.5065658,0.23911099,0.8287006,0.505944,0.23932375,0.82901865,0.5053133,0.23955487,0.8297906,0.5042508,0.23912063,0.8307592,0.50050175,0.24359204,0.83045936,0.4995719,0.24650605,0.8304006,0.49900773,0.24784295,0.8314647,0.49656492,0.24917796,0.83254933,0.4941041,0.25044507,0.8357376,0.48524857,0.25705343,0.83555144,0.48322347,0.26143625,0.83540326,0.48101792,0.2659383,0.83560795,0.48018157,0.2668052,0.8363838,0.47816795,0.26798788,0.8376268,0.47480008,0.27008572,0.8381001,0.47220147,0.2731557,0.8388324,0.47020277,0.2743531,0.83853924,0.46746495,0.27987227,0.83740884,0.46723974,0.283608,0.8370682,0.46687505,0.2852097,0.83433676,0.46693227,0.29301262,0.8334481,0.4685073,0.29302767,0.8327839,0.4692217,0.2937721,0.83206546,0.46982816,0.29483652,0.8316131,0.46985754,0.29606342,0.8315066,0.46918854,0.29742032,0.83148706,0.46845612,0.29862714,0.8315258,0.46785071,0.29946703,0.83161914,0.4671433,0.30031106,0.83346236,0.45884642,0.30789694,0.83348227,0.4580989,0.3089542,0.8335406,0.4575337,0.30963364,0.8336503,0.45670372,0.31056237,0.8338678,0.45590138,0.31115663,0.8348913,0.45327723,0.31224388,0.8358639,0.4509467,0.31301534,0.8361717,0.4504256,0.31294373,0.8365203,0.44998425,0.31264672,0.8373506,0.44930524,0.31139818,0.8386134,0.44818112,0.30961466,0.8398581,0.44754267,0.30715454,0.8437479,0.44173744,0.30488935,0.8444881,0.4394998,0.30607167,0.8450828,0.4382148,0.3062725,0.8457725,0.43695962,0.30616203,0.8481033,0.43376195,0.30425543,0.8485726,0.43343475,0.303412,0.8492551,0.43336567,0.30159572,0.8495282,0.43342787,0.30073598,0.84971446,0.43375272,0.29973975,0.8507441,0.4324915,0.29863954,0.8521567,0.4292961,0.2992219,0.8530685,0.42784777,0.2986979,0.85585976,0.42361435,0.29674056,0.8574318,0.4209028,0.29605997,0.85872,0.41878122,0.29533398,0.85934263,0.41767272,0.2950928,0.8593411,0.41713595,0.29585555,0.8594487,0.41657823,0.29632849,0.85973674,0.41583434,0.29653767,0.8601244,0.4150499,0.29651225,0.860333,0.41449314,0.29668593,0.8607981,0.413809,0.29629153,0.86124474,0.412485,0.29683942,0.8609521,0.41250595,0.29765815,0.8608607,0.41221014,0.29833147,0.8592119,0.4120091,0.3033205,0.85888934,0.4128785,0.30305186,0.8585716,0.41339538,0.30324754,0.8583086,0.41329756,0.3041241,0.85761964,0.41240963,0.30725706,0.85705656,0.41131553,0.31027985,0.8571936,0.41056892,0.31088975,0.85574067,0.40948686,0.31627285,0.85493416,0.4103241,0.31736672,0.85419637,0.41108626,0.31836572,0.8535361,0.41112277,0.32008454,0.85241413,0.41100943,0.32320502,0.85175806,0.4110156,0.32492208,0.85125357,0.41129684,0.32588702,0.8509606,0.41108626,0.32691616,0.8503521,0.41139397,0.32811022,0.8503118,0.41098148,0.3287309,0.8501266,0.4109418,0.32925904,0.8496621,0.41165876,0.3295623,0.8495226,0.41173252,0.32982963,0.8494384,0.41162932,0.33017525,0.84942895,0.4113869,0.3305016,0.84953874,0.41096747,0.33074105,0.8515153,0.40617362,0.33157906,0.85070455,0.40620402,0.33361664,0.85012877,0.40621415,0.33506885,0.8496069,0.40595323,0.3367048,0.8491761,0.4055879,0.33822834,0.85147166,0.40203667,0.33669347,0.8669548,0.39121506,0.30877203,0.8686782,0.38385627,0.3131332,0.86513126,0.37945923,0.3279612,0.88359,0.37127995,0.28534183,0.88102525,0.37896726,0.28315783,0.8842981,0.37837875,0.27358073,0.9361047,0.23937498,0.2576968,0.9371135,0.2362891,0.2568769,0.96874416,0.16106212,0.18866298,0.9640396,0.20065545,0.17425546,0.95572853,0.24291976,0.16605113,0.95499223,0.24551393,0.16647156,0.94087195,0.32763657,0.08610633,0.9373593,0.3428896,0.06151639,0.9356698,0.34888515,0.0529264,0.92580974,0.37686375,0.029154815,0.9265014,0.37513912,0.02942314,0.92672014,0.37519038,0.020540375,0.91873217,0.39441803,0.01912253,0.9164519,0.39954916,0.021825597,0.90980923,0.41406804,0.028194536,0.90463674,0.42558795,0.022522375,0.9023485,0.43043724,0.022156065,0.89976144,0.43541062,0.029101996,0.89469963,0.4459255,0.02574968,0.895747,0.4442458,0.016822033,0.9046906,0.4251577,-0.027853774,0.9071904,0.41923386,-0.035335407,0.9186353,0.39409932,-0.028193768,0.91585547,0.4003209,-0.03085397,0.91524166,0.4017237,-0.03083493,0.92108405,0.38619924,-0.04954088,0.90215474,0.42522007,-0.07283328,0.88693196,0.45321953,-0.08912764,0.87508565,0.47079614,-0.11214346,0.8732535,0.47754812,-0.09682998,0.8702513,0.48563814,-0.082572766,0.87011766,0.48700684,-0.075627856,0.87368965,0.48268315,-0.060690362,0.88367385,0.466707,-0.036125634,0.88683236,0.46110293,-0.03020919,0.8927342,0.45043623,-0.011525247,0.88973397,0.45607665,0.019171339,0.8879293,0.4596239,0.018095309,0.8845312,0.46560246,0.028616987,0.8910882,0.45287767,0.029388575,0.89495456,0.44462147,0.036987156,0.893957,0.4452907,0.050566904,0.89137083,0.44837922,0.066438936,0.8900376,0.44995838,0.073284335,0.8888128,0.4518577,0.07639649,0.88053024,0.46124804,0.10916378,0.86877996,0.4757711,0.13734318,0.8536583,0.5025963,0.13661747,0.848436,0.50856674,0.14668441,0.8414358,0.51661867,0.15840137,0.83830106,0.5195416,0.16531105,0.8259522,0.5375921,0.16969912,0.82567173,0.5381489,0.16929838,0.8284746,0.536943,0.15912904,0.8180126,0.5519327,0.16194338,0.80605024,0.5679356,0.16652952,0.7959156,0.58048296,0.17192404,0.798825,0.571395,0.18811266,0.7993969,0.56979364,0.19052531,0.79858595,0.5672726,0.20115241,0.79735315,0.5669342,0.20691435,0.7950412,0.5619579,0.22828238,0.8016891,0.5525927,0.22789444,0.8031252,0.55024946,0.22850697,0.8081298,0.54358435,0.22680883,0.8188593,0.53199476,0.21552499,0.8263807,0.5144346,0.22902393,0.8394052,0.46889356,0.27484143,0.83641386,0.46506536,0.2900447,0.85445875,0.42587173,0.29754582,0.861098,0.41358086,0.29573828,0.86099213,0.41090912,0.29974356,0.85728407,0.40978852,0.31166857,0.8662603,0.39017949,0.31201458,0.8911939,0.36027664,0.27563426,0.9041161,0.32591617,0.27631992,0.9572065,0.17230937,0.23251927,0.9636941,0.20262028,0.17389287,0.962905,0.20771995,0.17223923,0.9571895,0.23707159,0.1660881,0.95031327,0.27242696,0.15062611,0.9376559,0.33983618,0.072888225,0.9292216,0.36651385,0.047061235,0.92492163,0.37872985,0.032919288,0.927987,0.37188846,0.02321762,0.9162858,0.39991316,0.022131048,0.9155557,0.40153876,0.022897204,0.90958744,0.4144675,0.029450852,0.9064635,0.42126772,0.029281668,0.90365165,0.4278871,0.018064395,0.8995149,0.43587697,0.029735625,0.895214,0.4451145,0.021564012,0.8957721,0.44427407,0.0145911975,0.8973425,0.44128713,0.006488006,0.904131,0.42725,0.0021096661,0.90447456,0.42529732,-0.032370627,0.90659064,0.4202347,-0.038681563,0.9101803,0.4128847,-0.03313717,0.91244394,0.40843546,-0.0250309,0.91935116,0.39282617,-0.021935405,0.9188472,0.39394036,-0.023037473,0.9181036,0.39534193,-0.028117964,0.9252713,0.37674847,-0.043974455,0.9246706,0.3775819,-0.049155306,0.9188833,0.39124566,-0.050797038,0.9118688,0.4070854,-0.05269497,0.8960155,0.43700486,-0.078631245,0.8673708,0.48855722,-0.094762154,0.87832636,0.47565943,-0.047864277,0.87901396,0.4745128,-0.04660505,0.8901234,0.45462516,-0.03156377,0.8921902,0.45090872,-0.02603669,0.8926891,0.45056936,-0.009665088,0.88939553,0.4567189,0.01958113,0.8825188,0.46965137,0.024250532,0.89466166,0.444545,0.044275932,0.89395595,0.44518313,0.051523738,0.87514853,0.46753576,0.12460073,0.8713809,0.4721872,0.13317129,0.8670647,0.47776753,0.14119835,0.8616039,0.48472086,0.15061308,0.8537946,0.5021107,0.13754843,0.85254747,0.5043856,0.13695985,0.83393544,0.52607113,0.16673577,0.8205667,0.5488981,0.15931477,0.81291384,0.55938643,0.16204292,0.7962723,0.58014566,0.17141023,0.7962355,0.57897896,0.17547773,0.79823816,0.5734619,0.18427487,0.7939113,0.56335074,0.2287813,0.81494737,0.53674304,0.21855809,0.825897,0.51606613,0.2270902,0.8262207,0.5155566,0.22707008,0.830894,0.50141037,0.24125262,0.8372694,0.47595847,0.26915315,0.83506364,0.46590784,0.2925725,0.832301,0.46476057,0.3021137,0.83316654,0.4613404,0.30495682,0.8428712,0.4438151,0.30429643,0.8504049,0.4331391,0.298667,0.8596886,0.41118112,0.30309337,0.8659791,0.38987982,0.31316784,0.8772556,0.37056372,0.3051315,0.8942214,0.35302997,0.27520517,0.9586528,0.1653997,0.23157665,0.9670793,0.15455292,0.2021658,0.9673069,0.15824473,0.1981816,0.96704715,0.17890446,0.18114346,0.95107704,0.26006672,0.16678645,0.94917727,0.2737592,0.15530089,0.9485469,0.28128746,0.14538297,0.94420433,0.31232926,0.104540095,0.93875694,0.3353673,0.07914701,0.9374677,0.34017754,0.073712826,0.91607225,0.40038413,0.022452386,0.9019989,0.43109402,0.023581192,0.9073041,0.41899252,-0.035277877,0.9116643,0.40984833,-0.029875893,0.9254798,0.3763214,-0.043235034,0.92220867,0.383443,-0.050026957,0.9003219,0.4290929,-0.0727996,0.89381754,0.4413666,-0.0792828,0.8822407,0.4591379,-0.1041334,0.87943345,0.46397403,-0.10641862,0.87449366,0.47512183,-0.09757105,0.874248,0.4818029,-0.059634697,0.87500817,0.48067936,-0.057515778,0.8817658,0.46986806,-0.041390184,0.8835952,0.46676657,-0.03726292,0.89062244,0.4536047,-0.03216211,0.88736904,0.46066272,0.019132445,0.88235694,0.47000265,0.023319045,0.8841328,0.46636632,0.028490994,0.89171433,0.44782388,0.06556897,0.8897068,0.4503564,0.07483908,0.86800516,0.47667634,0.13909264,0.8417493,0.5162334,0.15799102,0.8125241,0.5599966,0.16189028,0.79651827,0.57997835,0.17083259,0.79923964,0.570526,0.1889869,0.79859436,0.5664504,0.20342293,0.7982285,0.5664455,0.20486762,0.7945854,0.5626119,0.22825854,0.798421,0.5584126,0.22516483,0.80256534,0.55128723,0.22797208,0.8074707,0.54451895,0.22691481,0.8157698,0.53612673,0.216997,0.82174426,0.5228545,0.22662641,0.8329281,0.49319252,0.25098178,0.8420071,0.44575158,0.30385798,0.86033493,0.41065663,0.30196834,0.8516166,0.4027147,0.3355144,0.8668584,0.39196938,0.30808517,0.8762738,0.37179506,0.3064518,0.9194992,0.2841734,0.27160028,0.9318696,0.25165448,0.2613216,0.94230235,0.22114669,0.25131723,0.958767,0.16567115,0.23090905,0.9686973,0.16217819,0.1879462,0.966957,0.1780584,0.18245403,0.95735186,0.23524807,0.16773708,0.9483101,0.29034418,0.12809472,0.9444695,0.31085533,0.106518775,0.94732684,0.2939767,0.12708084,0.9385802,0.33579513,0.07942859,0.9185292,0.39482373,0.02045271,0.8945242,0.44627255,0.025831614,0.89449674,0.44647536,0.023137935,0.89550084,0.4447954,0.015339377,0.9188861,0.39390978,-0.02198536,0.91876584,0.3941643,-0.02244473,0.9253053,0.37672472,-0.0434577,0.92164665,0.384831,-0.04972397,0.90201765,0.4256451,-0.07204388,0.8843083,0.45736313,-0.09390319,0.88229805,0.4592583,-0.10311109,0.8820666,0.4693014,-0.041408837,0.89109653,0.45266572,-0.03226134,0.8837674,0.46705517,0.028541023,0.8920666,0.4509916,0.028700992,0.88989675,0.4501037,0.07409743,0.8751116,0.46742207,0.12528494,0.8434418,0.5142759,0.15532668,0.84194046,0.51599836,0.15774013,0.8021168,0.55203855,0.22773236,0.81669474,0.5354158,0.21526633,0.83033055,0.5033528,0.23913836,0.830641,0.5024468,0.23996392,0.835604,0.46529016,0.29201216,0.85206956,0.40368092,0.3331955,0.8751892,0.37310562,0.30795458,0.9035203,0.32799843,0.27580458,0.92238116,0.2772925,0.26892728,0.94058716,0.22663307,0.2528502,0.967104,0.15626529,0.20072627,0.9683091,0.16321912,0.18904243,0.9614719,0.21508695,0.17119996,0.9489781,0.27387556,0.1563097,0.9479642,0.29130465,0.12847413,0.9434832,0.31496236,0.10314194,0.9373621,0.34031218,0.07443111,0.93069214,0.36222193,0.05106316,0.92996085,0.3643133,0.049484257,0.8940726,0.44719896,0.025443414,0.89403576,0.44731474,0.02468902,0.89711773,0.44175124,0.005965,0.8974684,0.44105542,0.0045446823,0.906429,0.42053714,-0.03917924,0.89264095,0.44381052,-0.07889477,0.8834667,0.458314,-0.097133316,0.87993467,0.46309054,-0.106123164,0.874268,0.47580937,-0.09623356,0.87050265,0.48535737,-0.0815682,0.8824109,0.46868423,-0.041063294,0.8833781,0.46709588,-0.038270462,0.8931833,0.449692,0.0008860524,0.88218725,0.47035542,0.022613373,0.89271706,0.44970563,0.02865491,0.84285104,0.5149437,0.15631723,0.7979899,0.55905086,0.22510928,0.83400995,0.49035498,0.25294137,0.8360607,0.46499065,0.29118067,0.8407026,0.44742754,0.30500448,0.841702,0.44629848,0.3039003,0.8606889,0.41052762,0.30113396,0.85628,0.4093695,0.3149619,0.8670721,0.39216855,0.30722925,0.9143547,0.30277067,0.26885945,0.92344445,0.2773107,0.2652342,0.9046102,0.32801646,0.27218652,0.9416737,0.22373055,0.25138682,0.96803105,0.16423638,0.18958433,0.96125036,0.21574768,0.17161182,0.9477626,0.2920057,0.12836948,0.93789667,0.33804262,0.077955686,0.94318575,0.31609493,0.10239449,0.89546794,0.44482443,0.016381644,0.897137,0.44172224,0.005153155,0.9115508,0.40776014,-0.05297904,0.90104836,0.42767063,-0.07217824,0.883743,0.45804888,-0.09586191,0.8704383,0.4853804,-0.08211603,0.86584884,0.4787666,0.14521809,0.8551316,0.4984847,0.14234793,0.8257298,0.5379577,0.16962264,0.80726933,0.54471403,0.22716263,0.8184504,0.5331019,0.21433929,0.83545434,0.48616484,0.25624174,0.85005164,0.43353155,0.2991029,0.8569436,0.4094675,0.31302395,0.91209245,0.31172037,0.2663037,0.9033822,0.33245486,0.27087706,0.92243326,0.2818255,0.26399106,0.9008612,0.3413096,0.2682478,0.951655,0.19192705,0.23982657,0.9456708,0.21146844,0.24695712,0.939259,0.23092568,0.2539013,0.96778035,0.1661796,0.1891705,0.9584382,0.22823668,0.17118484,0.94873464,0.2721588,0.16072425,0.8954192,0.44494048,0.015889151,0.9018552,0.4260276,-0.071817435,0.88049823,0.46197835,-0.10629623,0.8767044,0.47705388,-0.061717372,0.8830624,0.4676089,-0.039276175,0.88504046,0.45608342,0.09322734,0.8562136,0.49591756,0.14478913,0.8674981,0.39137578,0.30703744,0.9228819,0.28081164,0.263503,0.91241264,0.31105098,0.26598948,0.922583,0.28148752,0.2638283,0.9010315,0.3409786,0.26809663,0.9596168,0.17994092,0.21623355,0.9513315,0.20351277,0.23141056,0.9422625,0.22696733,0.24622604,0.9442441,0.309803,0.11146819,0.94132423,0.3239589,0.0946535,0.94665265,0.2955782,0.12838349,0.93412906,0.35121253,0.063660175,0.9201697,0.3895349,0.03937416,0.90788436,0.41807377,0.030988209,0.90103865,0.4335278,-0.013530157,0.9016478,0.42646542,-0.071822554,0.8744141,0.4754173,-0.09684248,0.87877965,0.47225064,-0.06874328,0.8119106,0.55634695,0.17685919,0.95237434,0.2109878,0.22015288,0.9428088,0.23068638,0.24061477,0.9601598,0.18369767,0.21059072,0.9343299,0.26505646,0.23827045,0.94376,0.23811445,0.22938766,0.9240983,0.29179317,0.24677734,0.92373985,0.28813687,0.25235248,0.91308063,0.31830376,0.25488505,0.90129334,0.3445677,0.26257077,0.9662074,0.17624927,0.18809445,0.9447875,0.30528343,0.119073756,0.9417073,0.32171118,0.09843421,0.9471315,0.28876433,0.13984653,0.92484707,0.37657565,0.053373743,0.9174904,0.3956057,0.041321345,0.93165106,0.3573852,0.065590955,0.9048176,0.42437226,-0.03483368,0.9012409,0.43306732,-0.014752465,0.87886155,0.47205415,-0.06904579,0.8868762,0.46097738,-0.030828105,0.8573446,0.4935179,0.14628847,0.8382179,0.5194244,0.16609931,0.8120254,0.55616665,0.17689939,0.8083077,0.55272233,0.20282197,0.8390335,0.46816245,0.27721253,0.86090624,0.41064575,0.30035058,0.9427652,0.24794386,0.22297454,0.94958234,0.2406011,0.20100869,0.94221526,0.25284895,0.21976742,0.9506532,0.23075332,0.20739178,0.9574988,0.21843761,0.18836433,0.9579841,0.21349055,0.19154157,0.9410105,0.26263982,0.21335337,0.93179464,0.28454232,0.22537601,0.9219475,0.3062972,0.23705465,0.9226994,0.3014703,0.24029486,0.91148204,0.32789347,0.24836744,0.90041256,0.3493195,0.25929347,0.95884967,0.20358023,0.19789486,0.92309844,0.3796586,0.061225597,0.9307663,0.35893983,0.06954378,0.9166454,0.39713442,0.045225546,0.9289388,0.36204615,0.07742935,0.9341595,0.34430346,0.09381473,0.9387544,0.3264369,0.11035947,0.9397581,0.32486257,0.106391214,0.942718,0.308453,0.12704116,0.946046,0.2903581,0.14383708,0.9082303,0.41730332,0.031235673,0.9018925,0.42687005,-0.0661204,0.8812929,0.46821302,-0.064027175,0.83804125,0.5195562,0.166578,0.81819946,0.5474619,0.17559937,0.8082485,0.55309373,0.20204358,0.92053336,0.30930424,0.23864041,0.921006,0.30830216,0.23811254,0.93002194,0.28857931,0.22755475,0.9104842,0.32988316,0.24939057,0.89988667,0.35030648,0.2597871,0.94881755,0.24264556,0.20215915,0.9405987,0.26365614,0.21391454,0.95714766,0.21946551,0.18895334,0.93977123,0.2656879,0.21503483,0.90847313,0.33385804,0.2514267,0.8988313,0.352279,0.26077163,0.9195841,0.311307,0.23969361,0.8967054,0.35621956,0.26273012,0.938862,0.32592937,0.110941775,0.93882626,0.32609853,0.11074758,0.93432933,0.34363118,0.094584726,0.9427766,0.30811253,0.12743197,0.94606864,0.29018688,0.14403345,0.9232095,0.37932742,0.06160284,0.9289879,0.36187923,0.07762001,0.91670734,0.3969702,0.045411758,0.9290859,0.3615456,0.07800138,0.942893,0.30743134,0.12821361,0.94611377,0.28984427,0.14442647,0.9389335,0.32559103,0.11132986,0.9462031,0.28915918,0.14521262,0.94886005,0.27078086,0.16230315,0.908493,0.41672236,0.031353243,0.901394,0.4278427,-0.066629015,0.88909966,0.45435947,-0.055310644,0.8184823,0.54694796,0.17588258,0.8078205,0.5545838,0.19965672,0.84122187,0.44694814,0.30427477,0.8835932,0.37886864,0.27517557,0.9369175,0.29009822,0.19500948,0.9411432,0.27435315,0.19743302,0.9442175,0.2751161,0.18100928,0.92918396,0.30500972,0.20877321,0.92102474,0.3198468,0.22228684,0.9124479,0.33460575,0.23553723,0.9034618,0.3492832,0.24851151,0.89407545,0.36387542,0.26119685,0.9501503,0.25136626,0.18447043,0.90908855,0.41548565,0.030489543,0.9162723,0.39786863,0.046321847,0.9228377,0.3801038,0.06238385,0.91652113,0.39735532,0.045801874,0.9230857,0.37958628,0.06186317,0.928777,0.3621975,0.07865306,0.934083,0.3441566,0.09510675,0.92890066,0.3619368,0.07839242,0.91664535,0.39709854,0.045541894,0.93874925,0.32598776,0.11172191,0.94277054,0.30769756,0.12847534,0.9388721,0.32572323,0.111460604,0.94614214,0.28929293,0.14534365,0.92896247,0.36180633,0.07826213,0.8991448,0.43661702,0.030070093,0.9061664,0.42108834,-0.039333474,0.88753325,0.4596526,-0.031690042,0.88941157,0.4536947,-0.05575155,0.8625476,0.4828287,0.15128863,0.8276421,0.5276668,0.19124936,0.8178444,0.5411946,0.19554785,0.8612953,0.41310596,0.29582742,0.87587065,0.3852844,0.290528,0.9289026,0.30604684,0.20850714,0.9361058,0.29322368,0.19423136,0.9287616,0.30656523,0.20837395,0.9363775,0.29218218,0.19449092,0.943312,0.27877894,0.18012416,0.9434423,0.27825582,0.18025067,0.95009035,0.2642708,0.165799,0.92847854,0.3076017,0.20810759,0.9204376,0.32190982,0.22174004,0.91199076,0.3361449,0.2351159,0.91214335,0.335632,0.23525637,0.9031461,0.3503036,0.24822271,0.89391226,0.36438257,0.26104832,0.94370186,0.27720958,0.18050365,0.91575897,0.39896017,0.047076393,0.92240465,0.3810471,0.06302975,0.9160525,0.39833656,0.04664532,0.92269355,0.38041824,0.06259918,0.9284219,0.36298972,0.079190746,0.9338036,0.34479496,0.09553655,0.928564,0.3626729,0.078975745,0.9161991,0.3980246,0.046429615,0.93854326,0.3264698,0.11204406,0.9426356,0.30802113,0.12868999,0.9386807,0.32614845,0.11182928,0.9460758,0.28945577,0.14545098,0.9286351,0.36251438,0.07886817,0.90587807,0.42173448,-0.03905027,0.88968533,0.45311847,-0.056068655,0.85051805,0.50130534,0.1590974,0.82776135,0.52750903,0.1911684,0.8451536,0.45110682,0.28673673,0.8730206,0.39581317,0.28489837,0.9281445,0.30920845,0.20721471,0.93512434,0.2980643,0.19157271,0.92797613,0.31001154,0.20676823,0.93545496,0.29645166,0.19245882,0.942201,0.28445137,0.17704445,0.9423623,0.28364167,0.1774842,0.9276369,0.31161684,0.20587543,0.9197457,0.32510632,0.2199403,0.9114582,0.33852994,0.23375511,0.91163653,0.3377352,0.2342086,0.9027822,0.35188502,0.24730778,0.89372605,0.36516887,0.26058677,0.9426823,0.28202155,0.17836404,0.90796375,0.41653544,0.04582575,0.9160571,0.3962484,0.061859548,0.92031676,0.3861259,0.062640406,0.923414,0.37576613,0.07814336,0.9300251,0.3550986,0.09464867,0.9254383,0.37066403,0.07856322,0.91466624,0.40148014,0.046897884,0.9358819,0.3342559,0.1113466,0.9409772,0.31324854,0.128208,0.93766326,0.3290677,0.111812145,0.9453048,0.29208675,0.14520338,0.92643994,0.36810857,0.07877284,0.90024376,0.4333039,-0.042530518,0.8956439,0.44052425,-0.06132221,0.8937746,0.44754714,0.029469602,0.850717,0.5010023,0.15898831,0.86293066,0.48221517,0.15106022,0.8174339,0.5346311,0.21440956,0.8281149,0.52711445,0.19072531,0.8436805,0.4593915,0.27778172,0.8729256,0.39605257,0.28485668,0.9291314,0.34763315,0.12596059,0.91604966,0.38155645,0.12356263,0.9219668,0.36094,0.1403553,0.927122,0.3401457,0.15730755,0.9232438,0.36836484,0.1092163,0.914395,0.37417376,0.1545184,0.90844953,0.39467084,0.13767529,0.90045065,0.4077053,0.15154216,0.9386154,0.30566618,0.15990421,0.93425727,0.32673022,0.14286637,0.9166018,0.3889148,0.09266273,0.9092137,0.40927303,0.07632875,0.90195966,0.42221478,0.090572536,0.9010888,0.4294296,0.06024289,0.9017492,0.41497323,0.12101906,0.9093779,0.40198472,0.10695873,0.9077629,0.3593377,0.21643257,0.9116335,0.36676738,0.18548888,0.90329486,0.37996817,0.19920462,0.8945707,0.393092,0.21265441,0.9160759,0.3460222,0.20266631,0.898059,0.40041134,0.18210098,0.9064231,0.38733175,0.16843764,0.88998383,0.3857477,0.24316137,0.89906275,0.3725804,0.22993477,0.92399395,0.33263665,0.18864802,0.9315095,0.31918374,0.17438991,0.9195784,0.35349235,0.17151913,0.8971858,0.4402115,-0.03565646,0.89341515,0.4492288,0.0016910237,0.84116244,0.50865877,0.18360813,0.8295352,0.5217054,0.19923572,0.85229945,0.49549434,0.16754381,0.8416642,0.46815306,0.2691358,0.84632146,0.45073283,0.28386593,0.83643615,0.48539323,0.25449553,0.87208277,0.398117,0.28456026,0.9006544,0.43036878,0.06003698,0.9015999,0.42302293,0.09038387,0.9009028,0.4298321,0.06015462,0.90183985,0.42248428,0.090509675,0.90146023,0.41564915,0.120852284,0.90022844,0.40824795,0.15140136,0.90157586,0.41537884,0.120919,0.9010268,0.42956373,0.0602135,0.89789927,0.40081984,0.18199022,0.8944689,0.39336526,0.21257748,0.8980057,0.40054753,0.18206409,0.8899353,0.38588473,0.24312143,0.9016337,0.4152436,0.12095234,0.9054187,0.42285764,-0.037527822,0.8969423,0.4407678,-0.034902617,0.82987916,0.521262,0.19896366,0.82976454,0.5214098,0.19905438,0.8179074,0.53404546,0.21406299,0.84138405,0.5083605,0.18341903,0.85240626,0.49534386,0.16744553,0.8399719,0.4748688,0.2625773,0.8456063,0.4541285,0.280566,0.8335076,0.49534854,0.24473429,0.8717842,0.39867672,0.28469142,0.89984334,0.43217117,0.05924576,0.9009408,0.42457387,0.08968161,0.90030724,0.43114147,0.059697773,0.9013805,0.42354006,0.09014971,0.90094167,0.41694656,0.12024841,0.89983875,0.40928978,0.15090457,0.9011494,0.4164277,0.12048989,0.90053874,0.4306264,0.059923932,0.8976261,0.40160406,0.18160816,0.89429986,0.39388996,0.212317,0.89780825,0.40108126,0.18186283,0.8898574,0.386148,0.24298868,0.9012531,0.4161682,0.120610595,0.83028007,0.52054775,0.19916087,0.8301465,0.5207859,0.19909514,0.84164685,0.5078801,0.18354401,0.85253537,0.49510163,0.16750488,0.8520418,0.44349226,0.27809966,0.8443941,0.46787062,0.2609516,0.84776527,0.4505901,0.2797545,0.83578414,0.49189806,0.24392876,0.8883484,0.4039901,0.21824093,0.8917986,0.4116669,0.18768491,0.88828915,0.42928836,0.16326001,0.8888293,0.41667956,0.19068469,0.8868397,0.3912223,0.24588707,0.8955092,0.43452045,0.09620407,0.8981771,0.4219459,0.12344827,0.8972174,0.43713096,0.06258965,0.8925329,0.43190628,0.12977688,0.8760118,0.42404193,0.2297647,0.88069695,0.40133503,0.2516011,0.88278055,0.42666703,0.19660537,0.86798894,0.42141333,0.2626901,0.87639767,0.40000635,0.268183,0.84558415,0.4989782,0.18975817,0.83422583,0.5117234,0.20544198,0.8361485,0.50729084,0.20859475,0.85451555,0.49061936,0.1705749,0.89142525,0.45204324,-0.0319036,0.8459444,0.49856904,0.1892273,0.85468787,0.49041358,0.17030333,0.8363364,0.5070874,0.2083358,0.8550319,0.49000213,0.16975987,0.8635862,0.48138762,0.14994957,0.8462952,0.49817,0.18870902,0.8551994,0.48980156,0.16949464,0.8365194,0.5068891,0.20808321,0.8555341,0.4894002,0.16896388,0.84708226,0.49732745,0.18739533,0.8559085,0.48897654,0.1682931,0.8369324,0.50647026,0.20744152,0.8566551,0.48812893,0.16694959,0.85216403,0.49203217,0.17810357,0.83962566,0.50384104,0.20291097,0.8638061,0.480132,0.15268348,0.8940902,0.44785467,-0.0053855735,0.8525083,0.4916772,0.17743489,0.8639659,0.4799532,0.15234086,0.83980995,0.503665,0.20258552,0.8642852,0.47959548,0.15165521,0.8934749,0.44911268,-0.0006997067,0.858348,0.45561126,0.23591736,0.8495549,0.47981808,0.21916023,0.8472512,0.47385526,0.24005537,0.8713915,0.44326487,0.21022148,0.86066437,0.46163946,0.21481572,0.8380708,0.497793,0.2232475,0.8661801,0.43106273,0.25281808,0.8554742,0.4495621,0.25701714,0.8627314,0.42493173,0.274094,0.86906654,0.43717384,0.23152198,0.8624247,0.46764642,0.19372796,0.8743633,0.45538533,0.16766924,0.86363083,0.47363186,0.17266938,0.87315655,0.4493355,0.18893206,0.8750141,0.4614143,0.14644846,0.8513065,0.4857588,0.19828165,0.87428886,0.44053987,0.20382257,0.8752306,0.44729894,0.1841059,0.87567997,0.4540326,0.16443524,0.8756394,0.4607404,0.14482385,0.8677734,0.42969173,0.24966826,0.8698305,0.43649065,0.22993651,0.86356395,0.42424423,0.27253276,0.8713483,0.43512365,0.22675869,0.87827134,0.45132396,0.15794323,0.87659603,0.44594002,0.18087806,0.87931675,0.45669162,0.13503638,0.8814103,0.4345081,0.18525285,0.881434,0.44832858,0.14857817,0.8718368,0.42666078,0.2405436,0.87328136,0.43361318,0.22216944,0.86572,0.422725,0.26801583,0.87706757,0.4305885,0.2129463,0.887429,0.44232267,0.12969369,0.88486403,0.43841958,0.15749232,0.8891059,0.44621742,0.10188571,0.88584256,0.43755937,0.15435293,0.88551766,0.43784618,0.15540001,0.8828383,0.4333588,0.18109831,0.8880192,0.4417505,0.12758693,0.8893698,0.445932,0.10082651,0.8726783,0.4260839,0.23850593,0.87745786,0.43030068,0.21191764,0.86617225,0.42243597,0.26700833,0.87823457,0.42972478,0.20985863,0.8891834,0.44060558,0.12336742,0.88989365,0.44536087,0.0987066,0.8864881,0.4369858,0.15225728,0.89092493,0.44421834,0.09446062,0.8949626,0.44510457,0.030394528,0.8878527,0.43599004,0.14707209,0.8874014,0.43632194,0.14880171,0.88487035,0.4320284,0.17422965,0.8899865,0.43994316,0.11989152,0.891273,0.44388774,0.09271479,0.87391853,0.4254162,0.2351327,0.8788022,0.4293917,0.20815724,0.8668478,0.42210153,0.26533982,0.8799273,0.42872518,0.20475014,0.89155054,0.43861756,0.11292619,0.89195853,0.44322652,0.089220054,0.88874507,0.43532586,0.14360908,0.89328694,0.44190332,0.082218595,0.8952193,0.44455728,0.030840127,0.8894996,0.43488535,0.14023243,0.88924956,0.4350322,0.14135833,0.8860264,0.43144003,0.16975509,0.8919783,0.43832433,0.11066371,0.8934631,0.44175702,0.08108285,0.87465096,0.425121,0.23293297,0.88025653,0.42857784,0.20364061,0.8672521,0.42195368,0.26425147,0.8809106,0.42828313,0.20142025,0.8928163,0.43773794,0.10613437,0.89381105,0.44146428,0.078810625,0.88999546,0.43459162,0.13797922,0.89448917,0.44087887,0.0742624,0.8905629,0.43472174,0.13384597,0.8903759,0.43467838,0.13522398,0.8869761,0.4316138,0.16426466,0.89309794,0.43782452,0.103372,0.8945817,0.4409221,0.07287951,0.8753265,0.42520818,0.23022053,0.88120043,0.42832664,0.20005532,0.86763966,0.42199734,0.26290622,0.8817737,0.4284137,0.1973242,0.89363545,0.43799773,0.097845115,0.8947601,0.44100857,0.070113376,0.89093053,0.4348085,0.13108918,0.89509124,0.44118145,0.06457992,0.89189327,0.43306762,0.13030246,0.89157283,0.4336481,0.13056503,0.8942619,0.4368393,0.09729903,0.8953965,0.44060323,0.06429637,0.8821098,0.42783162,0.19708496,0.8960052,0.43944657,0.06372836,0.9908546,0.11751455,-0.06631291,0.99061364,0.118942134,-0.06736028,0.9902689,0.12140999,-0.06802353,0.9898504,0.1254515,-0.06676938,0.9898275,0.12596726,-0.06613406,0.99010015,0.12504904,-0.063752376,0.9902339,0.12422888,-0.063277975,0.99048984,0.12214761,-0.06332314,0.99046546,0.12188116,-0.06421163,0.9899793,0.12640433,-0.06295172,0.9896637,0.12804255,-0.064581424,0.98958874,0.12897898,-0.063863374,0.9896994,0.12844819,-0.06321503,0.9897925,0.12807046,-0.06251977,0.98989856,0.12738921,-0.062231705,0.98816615,0.1434841,-0.05422157,0.98795605,0.14520869,-0.053453457,0.98802847,0.14483762,-0.053121313,0.9881739,0.14392355,-0.052899353,0.9882676,0.1429486,-0.05378615,0.9882312,0.14283721,-0.054742105,0.9888577,0.13703927,-0.058143474,0.9887751,0.13706124,-0.05948142,0.9887192,0.1374293,-0.059560988,0.98861504,0.13828094,-0.059317917,0.98850656,0.13948274,-0.058303744,0.98857474,0.13929293,-0.057597663,0.9887038,0.13855107,-0.057170574,0.9887786,0.1377788,-0.057739757,0.9883843,0.13950895,-0.060279682,0.98824406,0.1401519,-0.06108269,0.98801756,0.14193384,-0.060630895,0.98786235,0.1428667,-0.060967837,0.98787504,0.14305489,-0.060317885,0.9880455,0.14214306,-0.05967762,0.9881966,0.14104971,-0.05976951,0.9882759,0.14042868,-0.059921402,0.98832256,0.14008355,-0.059959702,0.98838454,0.13959582,-0.060075104,0.9861966,0.15869154,-0.04725919,0.9861442,0.15878993,-0.04801481,0.986024,0.15942264,-0.048384704,0.98585653,0.16057937,-0.04797053,0.98586684,0.16063738,-0.047563445,0.98592323,0.16040947,-0.04716022,0.98601604,0.15996526,-0.04672841,0.9861241,0.15927964,-0.04679079,0.98227346,0.1825916,-0.04241728,0.98214215,0.18317725,-0.04292985,0.98160744,0.18573938,-0.04413358,0.98131216,0.18737794,-0.043771703,0.9810247,0.18905194,-0.04301001,0.98117614,0.18850455,-0.041944414,0.9814678,0.18726999,-0.040633023,0.98161846,0.18654321,-0.040332507,0.98192686,0.18481909,-0.040762603,0.9822632,0.18304904,-0.04064578,0.9793602,0.19699565,-0.04523522,0.9792533,0.1973348,-0.046063364,0.9791545,0.19784945,-0.045956593,0.9789718,0.19874236,-0.045996554,0.9788527,0.19952402,-0.04513822,0.97914326,0.19811505,-0.045042958,0.9793122,0.19742502,-0.044396654,0.9787926,0.19958253,-0.04617208,0.9786929,0.19998504,-0.046543542,0.97829765,0.20174737,-0.047241747,0.97785205,0.20389196,-0.047260307,0.9774338,0.20577136,-0.04776275,0.97728044,0.20650344,-0.047741942,0.9770493,0.20778829,-0.04689101,0.9768655,0.2085035,-0.047541328,0.9766926,0.20926441,-0.047748238,0.97626066,0.2110082,-0.0488947,0.9760788,0.2118012,-0.049095795,0.9753176,0.21534947,-0.04878744,0.97519416,0.2156399,-0.049957838,0.9748212,0.217096,-0.050921567,0.9736486,0.22240767,-0.050431095,0.9733599,0.22396943,-0.049073737,0.9732109,0.22452915,-0.04947041,0.9728321,0.22601372,-0.050156012,0.9726791,0.22647029,-0.051055696,0.9723854,0.22758412,-0.051691815,0.9720993,0.22871749,-0.05207045,0.97197044,0.22923598,-0.05219474,0.97168565,0.23066424,-0.051196255,0.971371,0.23175943,-0.052210744,0.97123533,0.23236714,-0.052034043,0.97079617,0.23421676,-0.05193589,0.9708324,0.2341894,-0.05137865,0.97116107,0.233205,-0.04961507,0.9717355,0.23103656,-0.048500374,0.9722443,0.22887021,-0.048573982,0.97304386,0.22562444,-0.047742758,0.9731707,0.22499587,-0.048121348,0.97367364,0.22289124,-0.04774038,0.97394305,0.22190416,-0.04683503,0.97411305,0.22120191,-0.046620317,0.97452193,0.2193199,-0.04696615,0.9747481,0.21840934,-0.046514098,0.97503954,0.21714255,-0.046334855,0.9757323,0.21400772,-0.046337694,0.97579974,0.21364312,-0.046599258,0.9762171,0.21159044,-0.047219664,0.9762809,0.2115754,-0.045950137,0.9763777,0.21119487,-0.045642894,0.97670037,0.20982683,-0.04504562,0.9770656,0.20814836,-0.04491236,0.97731745,0.20704964,-0.044508312,0.97741765,0.20672528,-0.04381164,0.97764784,0.20574966,-0.043264356,0.97777134,0.20506738,-0.0437107,0.97816914,0.20309854,-0.044000726,0.9787274,0.20003013,-0.045613937,0.97722507,0.20689452,-0.047178164,0.9761637,0.2117645,-0.04754228,0.9758883,0.2130736,-0.047347073,0.977114,0.2061941,-0.05227049,0.97665787,0.20854011,-0.051481582,0.97669554,0.2084543,-0.051114626,0.9768378,0.20795329,-0.050430957,0.97696996,0.20721968,-0.05088854,0.9740784,0.22154763,-0.04569344,0.97380143,0.22265278,-0.046222728,0.97346497,0.22407573,-0.04643298,0.97343034,0.22429751,-0.046087068,0.97346205,0.22421607,-0.045812577,0.9735423,0.22391796,-0.04556524,0.93696135,0.19416744,0.29052103,0.93697774,0.19427688,0.29039484,0.9369724,0.19450678,0.29025838,0.9369143,0.19494572,0.29015118,0.9368682,0.19526912,0.2900827,0.9368444,0.1953084,0.2901331,0.93685275,0.19497578,0.2903299,0.9368995,0.19447836,0.29051235,0.9466611,0.1436081,0.28846034,0.9467022,0.14382233,0.2882189,0.9467069,0.1442364,0.2879964,0.9466827,0.14454675,0.28792036,0.94664896,0.14464124,0.28798404,0.94656926,0.14374895,0.28869155,0.94647926,0.14392945,0.28889683,0.9464885,0.14376748,0.28894725,0.9465438,0.14355324,0.2888725,0.9465997,0.14352635,0.28870258,0.94665176,0.14446583,0.28806248,0.9466311,0.14391683,0.28840527,0.80273765,0.41367856,-0.4295139,0.8021032,0.41463426,-0.42977774,0.8020537,0.41498712,-0.42952952,0.8023383,0.41552436,-0.42847726,0.80249053,0.4153476,-0.42836356,0.80286604,0.41471574,-0.4282721,0.8028564,0.41451636,-0.42848313,0.80311567,0.41383764,-0.42865324,0.72508657,0.5219592,-0.44923058,0.7242203,0.52238375,-0.45013344,0.7241058,0.5228909,-0.44972867,0.72418314,0.52327436,-0.44915777,0.7253305,0.5245403,-0.44581735,0.7253111,0.52508444,-0.44520792,0.725549,0.5253774,-0.44447416,0.7252717,0.52630955,-0.44382334,0.72591853,0.5269167,-0.4420419,0.7268401,0.5270354,-0.44038302,0.7270907,0.52633417,-0.44080767,0.72714216,0.52463615,-0.4427428,0.72645444,0.5232366,-0.4455194,0.73258126,0.4991509,-0.46278846,0.7323209,0.49944714,-0.46288082,0.7316067,0.5004744,-0.4629006,0.73164135,0.50102764,-0.4622469,0.73250926,0.5021107,-0.45969006,0.73361415,0.50216156,-0.45786896,0.73413575,0.50096434,-0.45834413,0.7341401,0.50020146,-0.4591697,0.7331551,0.5000192,-0.46093875,0.73557085,0.49485594,-0.4626588,0.73540527,0.49514025,-0.46261775,0.7353066,0.49547052,-0.46242088,0.73507565,0.49670473,-0.46146306,0.73560655,0.4965612,-0.46077108,0.73603463,0.4960034,-0.4606882,0.7357816,0.4958428,-0.46126482,0.7323892,0.4976718,-0.46468145,0.7319695,0.49837247,-0.4645919,0.7315631,0.4992477,-0.4642921,0.7319361,0.49932298,-0.46362287,0.73224014,0.4990166,-0.46347257,0.7325553,0.49777168,-0.46431246,0.78423107,0.4291037,-0.44816476,0.78334886,0.42983326,-0.4490077,0.7831114,0.43018952,-0.44908074,0.78311026,0.43063414,-0.4486564,0.7825401,0.43145078,-0.44886667,0.78233725,0.4319451,-0.44874483,0.7823062,0.4322017,-0.4485518,0.7824468,0.43245152,-0.44806546,0.78240335,0.43292245,-0.4476864,0.7829298,0.43269658,-0.44698396,0.78345126,0.43194196,-0.44680005,0.78350365,0.43130773,-0.4473205,0.78405297,0.43042797,-0.4472054,0.78445035,0.4294508,-0.44744793,0.8745572,0.35932246,-0.32563353,0.87456506,0.3598854,-0.32498989,0.8750998,0.35958564,-0.3238805,0.87564653,0.3587784,-0.3232974,0.8756955,0.358387,-0.32359877,0.87538195,0.35833135,-0.32450756,0.8748635,0.35848004,-0.32573903,0.8746255,0.35784197,-0.3270771,0.8741287,0.35866866,-0.32749936,0.87400424,0.35900348,-0.3274646,0.8738479,0.3597217,-0.3270935,0.7550883,0.47043443,-0.45665428,0.75422525,0.47080287,-0.45769966,0.75381494,0.47170782,-0.45744374,0.75369334,0.47226304,-0.4570711,0.75376093,0.47261837,-0.45659205,0.75481766,0.47155446,-0.45594588,0.75534827,0.4704359,-0.45622265,0.84525555,0.38683823,-0.368645,0.84502286,0.3875831,-0.36839616,0.8449491,0.38835287,-0.36775404,0.8449787,0.3891969,-0.36679253,0.84537643,0.38916945,-0.3659041,0.84551346,0.3884581,-0.3663433,0.84543777,0.38803634,-0.36696437,0.8453202,0.3879712,-0.36730385,0.857416,0.3678297,-0.3599156,0.8571771,0.3681546,-0.36015216,0.85655934,0.36966357,-0.3600764,0.8563816,0.36994392,-0.3602112,0.8558259,0.37060013,-0.36085683,0.85590327,0.37079245,-0.36047545,0.85621536,0.37091833,-0.35960382,0.85658276,0.3702859,-0.35938042,0.8570929,0.36971343,-0.35875294,0.85712934,0.3692589,-0.35913387,0.85738397,0.36841768,-0.35939002,0.8586081,0.36842477,-0.35644805,0.85787076,0.36876777,-0.357866,0.8574264,0.369913,-0.35774913,0.8581904,0.36933735,-0.3565096,0.8587093,0.36849847,-0.35612813,0.8849701,0.36748183,-0.2859808,0.8849684,0.3666304,-0.2870768,0.88438284,0.36692297,-0.28850374,0.8837494,0.36755943,-0.2896326,0.8832804,0.36744934,-0.2911987,0.8826087,0.3684803,-0.29193166,0.88184685,0.36940935,-0.29305768,0.88197064,0.36824337,-0.29415074,0.881514,0.36866724,-0.2949873,0.88116115,0.36928263,-0.29527164,0.8809152,0.37038565,-0.2946232,0.87948394,0.37248394,-0.29624942,0.8799464,0.3716265,-0.29595268,0.8800891,0.37088898,-0.29645327,0.88006556,0.37014657,-0.29744947,0.88015264,0.36895636,-0.29866788,0.8801348,0.36861882,-0.2991369,0.8797196,0.36868387,-0.30027595,0.87938493,0.36852065,-0.30145425,0.8787982,0.36855477,-0.30311903,0.8787552,0.36720917,-0.30487168,0.8792834,0.36629578,-0.30444732,0.87965566,0.3655313,-0.30429077,0.87938756,0.3652917,-0.3053515,0.8788968,0.365582,-0.30641526,0.8781558,0.3657534,-0.30832916,0.8775227,0.3661681,-0.30963656,0.87658226,0.36711726,-0.3111726,0.87576264,0.36963987,-0.31049338,0.8754974,0.36929214,-0.31165302,0.87588406,0.3669008,-0.31338626,0.87555456,0.36695546,-0.31424168,0.8752732,0.36747628,-0.31441692,0.87534785,0.36623478,-0.3156554,0.87480724,0.36618564,-0.31720713,0.8754848,0.36449423,-0.31728575,0.8764991,0.36386007,-0.31520644,0.87725633,0.36208615,-0.31514275,0.87826383,0.36051196,-0.31413972,0.87860286,0.359227,-0.31466308,0.8796323,0.3570134,-0.31430632,0.8797642,0.35630798,-0.31473726,0.8800455,0.35366216,-0.31692743,0.88063824,0.35219902,-0.31691027,0.8808761,0.35044116,-0.31819537,0.88114524,0.34855366,-0.31952062,0.8813188,0.34878686,-0.31878662,0.88161784,0.3479841,-0.31883702,0.881699,0.34685564,-0.3198405,0.880842,0.3463416,-0.32274595,0.87941086,0.34685084,-0.32608458,0.87846875,0.3478426,-0.32756403,0.8778478,0.3490113,-0.32798538,0.87748283,0.3495535,-0.32838425,0.87718415,0.3505059,-0.32816687,0.877079,0.35379997,-0.32489693,0.87664115,0.35432443,-0.32550642,0.8763158,0.3549524,-0.32569835,0.8761731,0.35572025,-0.3252442,0.87709665,0.3560627,-0.32236758,0.8759738,0.35898122,-0.3221837,0.8746458,0.36050716,-0.32408208,0.8741577,0.3611748,-0.3246554,0.8735823,0.3624006,-0.32483825,0.8729687,0.3638712,-0.32484382,0.8729014,0.36368865,-0.32522875,0.87333995,0.36212182,-0.3257991,0.8732134,0.36174533,-0.3265558,0.8728152,0.36185333,-0.3274993,0.87194365,0.36291128,-0.32864818,0.8706218,0.36465776,-0.33021566,0.86994797,0.36481082,-0.33181858,0.8690542,0.3653686,-0.33354253,0.86819786,0.36667955,-0.33433315,0.8681241,0.36625296,-0.33499148,0.86788344,0.36621258,-0.3356585,0.86736584,0.36640206,-0.33678797,0.8668316,0.36627594,-0.33829716,0.86610657,0.36707124,-0.3392906,0.8647122,0.36746043,-0.34241155,0.863945,0.3682624,-0.34348482,0.8627157,0.37005866,-0.34464216,0.8624797,0.36990502,-0.34539703,0.86214083,0.37002465,-0.34611416,0.8614654,0.37098318,-0.34676918,0.8609181,0.3721724,-0.34685412,0.8601249,0.371473,-0.34956107,0.8599195,0.3707703,-0.35081032,0.85936266,0.37042287,-0.35253763,0.8588908,0.37084237,-0.35324568,0.8584839,0.37138754,-0.35366178,0.85786116,0.37327084,-0.35318983,0.85760546,0.37425092,-0.3527734,0.857419,0.37343052,-0.35409355,0.8578125,0.37267378,-0.35393772,0.85773206,0.37166446,-0.35519177,0.8574112,0.37099272,-0.35666573,0.8568563,0.3716898,-0.357273,0.8550161,0.3737103,-0.35956657,0.85479647,0.37268728,-0.36114708,0.85432523,0.3731064,-0.36182868,0.853951,0.3736068,-0.36219555,0.85270536,0.37653688,-0.36209607,0.85165864,0.37796932,-0.36306587,0.85208046,0.37581992,-0.36430514,0.85124934,0.37604263,-0.36601436,0.8492837,0.37775078,-0.36881098,0.84924173,0.3777689,-0.36888912,0.8490952,0.37812316,-0.3688633,0.84862643,0.3785831,-0.36946985,0.8486314,0.37823042,-0.36981955,0.84860975,0.3782479,-0.36985144,0.84799635,0.37941203,-0.37006575,0.8475929,0.3802713,-0.37010813,0.84750754,0.38113725,-0.36941227,0.8463348,0.38419926,-0.36892864,0.8461677,0.38578334,-0.3676567,0.84618336,0.38632658,-0.36704984,0.8459051,0.38734505,-0.36661744,0.8459947,0.38855466,-0.36512774,0.8458886,0.38894412,-0.36495885,0.84578687,0.38931704,-0.36479694,0.8449014,0.3897762,-0.3663552,0.84443897,0.39066204,-0.36647788,0.8425857,0.3927784,-0.3684759,0.8430849,0.3919671,-0.36819783,0.84347916,0.3910527,-0.36826727,0.84368867,0.3902313,-0.3686584,0.84425336,0.38850367,-0.36918974,0.8443565,0.38754222,-0.36996362,0.8441731,0.38644764,-0.37152404,0.8444716,0.38441166,-0.37295505,0.8442672,0.38318405,-0.3746771,0.843832,0.3828755,-0.37597057,0.8437979,0.38291645,-0.37600532,0.8434128,0.38337618,-0.3764007,0.84305,0.38350996,-0.3770766,0.8428016,0.38373113,-0.3774068,0.8421735,0.3835532,-0.37898645,0.8420025,0.38334394,-0.3795777,0.8411887,0.38418594,-0.38052952,0.8407208,0.38402537,-0.3817238,0.8405556,0.38311952,-0.38299572,0.8401561,0.38314947,-0.38384137,0.8396627,0.38462722,-0.38344294,0.83927387,0.38516602,-0.38375303,0.8388629,0.3858809,-0.38393348,0.8378214,0.38652933,-0.38555196,0.8382441,0.38471934,-0.3864427,0.83760315,0.38456595,-0.387982,0.83717626,0.38493168,-0.38854018,0.8367786,0.38565838,-0.38867623,0.8359665,0.3860499,-0.39003268,0.8349806,0.38722098,-0.3909825,0.8336564,0.38712898,-0.3938886,0.83336717,0.38620946,-0.39540032,0.8325662,0.38620946,-0.397084,0.83203214,0.38695532,-0.39747718,0.83148533,0.38791308,-0.3976877,0.8307588,0.38837484,-0.39875394,0.83013374,0.38790044,-0.40051365,0.8295957,0.38754067,-0.4019742,0.8276417,0.38878796,-0.40478787,0.8269198,0.38892215,-0.40613195,0.8263825,0.38942376,-0.40674445,0.82567656,0.39043137,-0.40721184,0.8252556,0.3897841,-0.40868267,0.8243312,0.3898617,-0.4104703,0.823609,0.39083698,-0.4109923,0.8224165,0.393616,-0.41072813,0.8218339,0.39423487,-0.41130027,0.8211783,0.3943938,-0.41245562,0.8206592,0.39518932,-0.41272745,0.82047194,0.3959845,-0.41233727,0.8206889,0.39640862,-0.41149724,0.8200529,0.396515,-0.4126609,0.8195747,0.3968678,-0.41327134,0.81840557,0.3979978,-0.41449964,0.8168419,0.40109548,-0.41459832,0.81610084,0.40072381,-0.41641313,0.81601727,0.4000093,-0.41726294,0.8154144,0.4003295,-0.41813353,0.81455266,0.40110093,-0.41907272,0.8136513,0.40217716,-0.4197917,0.8133932,0.4020882,-0.4203768,0.8137311,0.4009205,-0.42083785,0.8138693,0.40016705,-0.42128742,0.81330556,0.40068483,-0.42188355,0.8122557,0.4025267,-0.4221528,0.8120552,0.40308982,-0.42200112,0.8121237,0.40341273,-0.4215605,0.8106383,0.40445504,-0.4234167,0.8104024,0.40413153,-0.42417648,0.8094667,0.40576792,-0.42440078,0.8084451,0.4069725,-0.42519397,0.80773413,0.40693274,-0.4265809,0.80666023,0.40843317,-0.42717862,0.8046437,0.41065663,-0.42884684,0.8041711,0.4119461,-0.42849648,0.8040347,0.4127807,-0.42794892,0.80501324,0.4130392,-0.42585483,0.80434465,0.41437292,-0.4258225,0.8040966,0.41428375,-0.42637742,0.80351883,0.4144071,-0.4273457,0.8011885,0.41669062,-0.42949495,0.8007713,0.4158483,-0.4310864,0.7997129,0.41629243,-0.43261984,0.79872006,0.4159692,-0.43475956,0.7977235,0.41662082,-0.4359637,0.7964533,0.4185986,-0.4363913,0.79642934,0.41917196,-0.43588427,0.7965045,0.42001513,-0.43493435,0.79587626,0.420241,-0.4358652,0.7946087,0.42121202,-0.43723845,0.7938293,0.42149332,-0.43838158,0.79298353,0.42269388,-0.4387562,0.79103875,0.42614934,-0.43892422,0.7895309,0.42587337,-0.44189686,0.7889745,0.42628813,-0.44249028,0.7888123,0.42746878,-0.44163963,0.78906643,0.4282367,-0.44044015,0.7876109,0.43000722,-0.44131953,0.7871309,0.4296647,-0.44250783,0.7864404,0.42987484,-0.44353023,0.7861728,0.42907128,-0.44478095,0.7857098,0.42843083,-0.44621423,0.78532803,0.42879573,-0.44653568,0.7850525,0.4295254,-0.4463188,0.78385675,0.43363833,-0.4444394,0.78254014,0.43559092,-0.44485,0.7816625,0.43709537,-0.44491717,0.78132784,0.43842697,-0.44419435,0.78220266,0.43851504,-0.44256482,0.78363293,0.440008,-0.4385344,0.7832924,0.439352,-0.43979856,0.78291404,0.4392188,-0.44060457,0.7821909,0.43922874,-0.44187725,0.7809024,0.44036767,-0.44302124,0.7779602,0.44307348,-0.44549274,0.7770796,0.44360593,-0.44649866,0.77686846,0.44418085,-0.44629452,0.77685887,0.44485646,-0.4456377,0.77668744,0.44541967,-0.44537395,0.7763959,0.44692597,-0.44437212,0.77642566,0.44790617,-0.44333205,0.77702415,0.4480897,-0.4420963,0.7767642,0.44894278,-0.44168738,0.77665144,0.44979402,-0.44101918,0.7762926,0.4506432,-0.44078386,0.7760621,0.4500558,-0.44178897,0.77573454,0.4497658,-0.4426586,0.77498555,0.45048338,-0.44324043,0.7744276,0.4513681,-0.44331563,0.7740506,0.4516,-0.44373763,0.7744543,0.4508402,-0.44380593,0.7748205,0.4498944,-0.44412622,0.774981,0.4491522,-0.4445973,0.7747356,0.449054,-0.44512382,0.77520686,0.44792214,-0.44544372,0.7747038,0.4475464,-0.44669473,0.7737958,0.44828704,-0.4475252,0.77319807,0.44887578,-0.44796783,0.7687927,0.45549932,-0.44886315,0.7675609,0.4564072,-0.45004752,0.7662068,0.4579709,-0.4507658,0.7652181,0.45893422,-0.451465,0.7640349,0.46039194,-0.45198438,0.763382,0.46147186,-0.4519864,0.7630249,0.4629984,-0.45102698,0.76200706,0.4639061,-0.45181447,0.7616971,0.4646549,-0.4515676,0.7611136,0.46553072,-0.45164943,0.7589183,0.46779794,-0.452999,0.7585932,0.46851256,-0.45280495,0.7582199,0.4696777,-0.45222273,0.7576584,0.46953171,-0.4533141,0.75690204,0.47004178,-0.45404848,0.75544524,0.47189346,-0.45455363,0.75400335,0.4739426,-0.4548158,0.752668,0.47479787,-0.45613366,0.75310314,0.47289088,-0.45739463,0.7523904,0.4730103,-0.45844302,0.7504791,0.47446108,-0.4600738,0.7499014,0.47396737,-0.4615222,0.7494399,0.47511134,-0.46109545,0.7488597,0.47748223,-0.4595867,0.7485068,0.47932622,-0.45824003,0.7476392,0.48043275,-0.45849758,0.74691784,0.4807564,-0.45933318,0.7463624,0.48126286,-0.45970556,0.74550444,0.4825398,-0.45975915,0.7459071,0.48376942,-0.45780966,0.74521387,0.48352548,-0.45919427,0.7446364,0.48409384,-0.4595321,0.74434096,0.48497128,-0.45908543,0.7447132,0.48661676,-0.4567345,0.7437535,0.48841897,-0.45637453,0.7427822,0.48841003,-0.4579632,0.7421434,0.4887178,-0.45866996,0.74177784,0.48825085,-0.4597573,0.74197376,0.48677608,-0.46100312,0.7414123,0.4868692,-0.46180758,0.73842645,0.4922811,-0.46085316,0.7378026,0.49403155,-0.45997834,0.7380694,0.4943634,-0.45919314,0.7387684,0.49401227,-0.45844638,0.74123627,0.4929856,-0.4555589,0.74008167,0.4936958,-0.45666575,0.73681176,0.49666622,-0.45872775,0.734723,0.49803925,-0.46058553,0.73512226,0.49830157,-0.4596638,0.7356597,0.4983983,-0.4586981,0.73628527,0.49927652,-0.45673507,0.7371544,0.49968404,-0.4548838,0.7372454,0.503422,-0.45059457,0.7375503,0.504262,-0.44915408,0.7380337,0.5045894,-0.44799086,0.7388214,0.5045541,-0.44673043,0.74416554,0.50201124,-0.4406839,0.7439452,0.50457394,-0.43812165,0.74545145,0.5037349,-0.4365241,0.74603266,0.5039705,-0.43525746,0.74637824,0.5037673,-0.43489993,0.7422414,0.5058962,-0.43948472,0.7410429,0.5053507,-0.4421269,0.7401682,0.50592273,-0.44293702,0.73813576,0.5084141,-0.4434757,0.7346329,0.51053846,-0.4468389,0.7330957,0.5118898,-0.44781634,0.7305225,0.5129986,-0.450743,0.72973,0.5130972,-0.451913,0.72851807,0.51379573,-0.45307317,0.7277574,0.51595956,-0.45183507,0.7273635,0.5174729,-0.4507373,0.727139,0.5198133,-0.44840047,0.72826564,0.52228045,-0.44368038,0.72827953,0.5244031,-0.4411465,0.7287109,0.5257602,-0.4388128,0.72996014,0.52724904,-0.4349329,0.7294136,0.5287768,-0.43399408,0.72920793,0.5296785,-0.43323946,0.7305662,0.53021264,-0.43028778,0.73222846,0.52921003,-0.42869368,0.7346748,0.5289757,-0.42477942,0.73420155,0.5293308,-0.42515534,0.73389167,0.52956355,-0.42540032,0.7333355,0.52941835,-0.42653865,0.7297071,0.53148514,-0.4301756,0.7282499,0.5303889,-0.43398118,0.72815466,0.52798456,-0.43706185,0.7270506,0.5275836,-0.43937793,0.7253355,0.5278275,-0.4419123,0.72393394,0.52565217,-0.4467767,0.7233868,0.5254644,-0.44788238,0.722551,0.52552456,-0.44915918,0.7217482,0.5271998,-0.4484862,0.7212835,0.5284347,-0.44777992,0.7211873,0.5298137,-0.44630292,0.72132725,0.5306742,-0.44505256,0.7221965,0.5317103,-0.44239837,0.7221892,0.5329685,-0.4408938,0.7208934,0.5354129,-0.44005197,0.7209239,0.5361958,-0.43904755,0.72103584,0.5366712,-0.43828216,0.7224643,0.5382861,-0.4339278,0.7219055,0.54118156,-0.4312481,0.72092974,0.542342,-0.43142256,0.71971625,0.5448805,-0.43024838,0.7189356,0.5480979,-0.42745787,0.71772337,0.55179906,-0.4247246,0.7173161,0.55394644,-0.4226121,0.7167001,0.5550833,-0.4221654,0.71599126,0.5572569,-0.4205012,0.7141951,0.5616357,-0.41772088,0.7137124,0.5631514,-0.41650346,0.71374696,0.56389624,-0.41543508,0.71442217,0.5656552,-0.41186798,0.71598727,0.5675883,-0.40645495,0.71595216,0.5694826,-0.40385896,0.71617734,0.5699883,-0.40274468,0.71484274,0.57374465,-0.3997711,0.7129929,0.5752025,-0.40097785,0.71081024,0.57787776,-0.40100628,0.7096297,0.57869196,-0.401922,0.7080757,0.58027476,-0.40238035,0.7062457,0.5819629,-0.4031579,0.70535004,0.58237445,-0.40413025,0.7047285,0.5827423,-0.40468407,0.7039697,0.58344495,-0.40499213,0.7030807,0.58411133,-0.4055755,0.70221317,0.58494866,-0.40587157,0.7014739,0.5858227,-0.40588933,0.6996542,0.5868658,-0.4075199,0.6987481,0.58756524,-0.4080663,0.6986887,0.5878873,-0.40770411,0.6991898,0.588032,-0.40663502,0.69651085,0.5904571,-0.407717,0.69730973,0.58933884,-0.40796927,0.69745594,0.58890295,-0.4083486,0.6973609,0.58854544,-0.4090258,0.6959723,0.5893189,-0.41027534,0.6949338,0.5896183,-0.41160318,0.69428396,0.5901599,-0.41192362,0.6910415,0.59420943,-0.411554,0.6908007,0.5937851,-0.41256946,0.6902889,0.5940388,-0.4130606,0.6898564,0.59461653,-0.41295195,0.68953973,0.5953686,-0.41239688,0.6887099,0.59671736,-0.41183373,0.68823975,0.5961961,-0.4133718,0.68765885,0.5963842,-0.41406655,0.6865685,0.5970715,-0.41488478,0.6839191,0.59816206,-0.41768044,0.6811703,0.5995318,-0.4202007,0.67642254,0.6007997,-0.4260191,0.6767223,0.6001346,-0.4264803,0.67681724,0.59972006,-0.42691252,0.67672086,0.59949636,-0.4273792,0.6762372,0.59947383,-0.4281756,0.6746354,0.6006314,-0.42907915,0.6738853,0.60107356,-0.42963853,0.67336345,0.6018517,-0.42936727,0.67222327,0.6037346,-0.42850947,0.67130154,0.6043364,-0.42910573,0.67018807,0.6062371,-0.42816404,0.6687304,0.6074151,-0.42877334,0.669003,0.607742,-0.4278839,0.671952,0.60815406,-0.4226454,0.67179567,0.6090703,-0.4215731,0.6721255,0.60916156,-0.4209151,0.67276555,0.60870254,-0.42055643,0.6735523,0.6080039,-0.42030773,0.67453676,0.60816085,-0.418498,0.6757868,0.60821223,-0.4164012,0.67627054,0.6089696,-0.41450465,0.67653656,0.6098541,-0.41276667,0.67755497,0.6101472,-0.41065767,0.6776316,0.6118749,-0.4079517,0.6787522,0.6133749,-0.4038151,0.68264043,0.61154115,-0.40002435,0.6833186,0.6114178,-0.39905393,0.68363017,0.61123705,-0.39879695,0.6860283,0.60869247,-0.39857072,0.6892452,0.60669386,-0.39606002,0.6897704,0.6059301,-0.39631498,0.6926283,0.6107169,-0.38378504,0.6921589,0.6109888,-0.384199,0.6914152,0.6115371,-0.38466537,0.69109493,0.6121977,-0.38418972,0.6910474,0.61258304,-0.3836607,0.6907608,0.6130336,-0.383457,0.68992704,0.6143403,-0.38286635,0.6892068,0.61624956,-0.3810912,0.6893448,0.6174019,-0.3789704,0.69022477,0.61739796,-0.37737194,0.6833423,0.63196254,-0.3656045,0.68362397,0.63022995,-0.3680605,0.68200964,0.63091975,-0.36986908,0.6804413,0.6317162,-0.37139505,0.67978054,0.6314948,-0.3729781,0.67918587,0.6316521,-0.3737943,0.67868024,0.63157475,-0.37484187,0.678101,0.6317935,-0.375521,0.6773026,0.6323317,-0.37605557,0.6742963,0.6348391,-0.37723172,0.6670793,0.6414849,-0.37881687,0.6645339,0.6426198,-0.38135874,0.65895647,0.64550906,-0.3861275,0.6579496,0.64587027,-0.38723874,0.652489,0.6506292,-0.38850954,0.651423,0.6514262,-0.38896278,0.650542,0.65187484,-0.38968486,0.64934856,0.6527481,-0.39021325,0.6444252,0.654456,-0.3954787,0.6443387,0.6539939,-0.39638314,0.64340854,0.65403,-0.39783186,0.6428675,0.6544225,-0.39806095,0.64166886,0.65564406,-0.39798483,0.6414303,0.65572,-0.3982442,0.64254713,0.6539765,-0.39930937,0.6420616,0.651942,-0.4033962,0.6426142,0.6508104,-0.40434238,0.64251816,0.6500032,-0.4057909,0.64299643,0.6494506,-0.40591815,0.6444228,0.6480673,-0.40586698,0.6448723,0.6475648,-0.4059551,0.64846987,0.64460194,-0.40493843,0.65012723,0.6434075,-0.40417984,0.6515201,0.642126,-0.40397492,0.6545205,0.64071053,-0.40136388,0.65567964,0.6395045,-0.40139526,0.6564774,0.6379478,-0.40256688,0.65680355,0.63796353,-0.40200946,0.6574253,0.63770956,-0.40139568,0.65912473,0.6366797,-0.4002419,0.6592326,0.63633984,-0.4006044,0.6597761,0.6354342,-0.40114704,0.6605849,0.634525,-0.40125492,0.6600981,0.6344176,-0.40222475,0.65901303,0.63439125,-0.4040414,0.65683615,0.63474166,-0.40702486,0.65673625,0.6345487,-0.40748674,0.65753406,0.63402295,-0.40701833,0.6589373,0.63295865,-0.4064049,0.65965575,0.632302,-0.40626165,0.6603306,0.63079345,-0.40750837,0.6646708,0.6287811,-0.40354308,0.665326,0.6285969,-0.40274972,0.66614145,0.62824553,-0.4019491,0.6670447,0.6267844,-0.40273148,0.66751355,0.6256735,-0.4036809,0.6670937,0.62583506,-0.40412435,0.6666708,0.62615407,-0.40432808,0.6656934,0.62671536,-0.40506813,0.66408575,0.62702215,-0.4072264,0.6628208,0.6274887,-0.40856633,0.6624256,0.6278516,-0.4086499,0.662105,0.6287075,-0.40785262,0.66079444,0.6294515,-0.4088295,0.6605339,0.6292038,-0.40963107,0.6600631,0.62927264,-0.41028363,0.65927184,0.6298156,-0.41072243,0.6586885,0.6300413,-0.4113118,0.6578403,0.6305918,-0.4118254,0.6567713,0.63137853,-0.41232577,0.65494365,0.6329396,-0.41283932,0.64736813,0.6374351,-0.41784084,0.6463068,0.63769186,-0.41909024,0.64528424,0.63841236,-0.41956866,0.6437355,0.6385881,-0.42167503,0.6430478,0.639129,-0.42190474,0.6421281,0.6396126,-0.4225722,0.6410337,0.6396788,-0.42413074,0.6401922,0.6399237,-0.4250313,0.6387825,0.64120305,-0.42522413,0.63852054,0.6404101,-0.42680958,0.6357622,0.6406595,-0.43053672,0.6337755,0.64177316,-0.43180537,0.6323439,0.6429423,-0.43216485,0.63232225,0.64284176,-0.43234602,0.6312085,0.6441803,-0.43198103,0.6297778,0.6452129,-0.43252778,0.6267507,0.6470458,-0.43418345,0.62570024,0.64790374,-0.43441918,0.6241028,0.6489145,-0.43520772,0.6237158,0.64889246,-0.4357949,0.62323916,0.64898,-0.4363461,0.62280625,0.6494195,-0.43631035,0.6224687,0.64976484,-0.43627787,0.6218918,0.6500777,-0.4366344,0.62064046,0.65063375,-0.43758553,0.6191454,0.6513654,-0.43861383,0.6182186,0.65156776,-0.43961942,0.61648715,0.65266156,-0.4404276,0.61575574,0.65314245,-0.4407378,0.61536115,0.65314245,-0.4412886,0.6150958,0.6533664,-0.44132707,0.6139069,0.65430135,-0.44159716,0.61342824,0.6543716,-0.4421578,0.6125387,0.65463835,-0.4429954,0.6115402,0.654802,-0.4441317,0.61029524,0.65571743,-0.44449344,0.6087276,0.65708935,-0.444617,0.60732925,0.65787214,-0.44537115,0.6059313,0.6590266,-0.44556835,0.60380656,0.66068125,-0.4460022,0.60344553,0.66076255,-0.44637027,0.602932,0.6612332,-0.44636726,0.59995425,0.66446066,-0.445586,0.59873533,0.6651247,-0.44623438,0.59831417,0.665446,-0.4463203,0.5980695,0.66555417,-0.44648692,0.59778327,0.6654676,-0.44699883,0.5970413,0.6658556,-0.44741267,0.59592766,0.6650655,-0.45006454,0.596142,0.6644977,-0.45061916,0.59613943,0.66402304,-0.45132157,0.5965624,0.66333264,-0.45177785,0.59643716,0.6630297,-0.45238736,0.5958232,0.6628791,-0.45341587,0.594969,0.6624081,-0.45522237,0.59421873,0.66238123,-0.4562402,0.5940265,0.66202813,-0.4570025,0.59323865,0.66183525,-0.45830345,0.5905472,0.6619489,-0.46160328,0.5905283,0.66151637,-0.46224713,0.5902955,0.6611712,-0.46303773,0.5900005,0.66115135,-0.46344176,0.58917814,0.6617438,-0.46364227,0.58806866,0.66270554,-0.46367732,0.58726597,0.66344047,-0.46364367,0.58687365,0.66402304,-0.46330625,0.5866913,0.66464853,-0.46263984,0.58666706,0.66613084,-0.4605339,0.5863966,0.66706026,-0.45953214,0.58640933,0.66736174,-0.45907786,0.58290476,0.669463,-0.46047947,0.58207995,0.66926986,-0.46180168,0.580376,0.669401,-0.46375212,0.57920444,0.66965795,-0.46484452,0.57849276,0.6696212,-0.46578273,0.5778089,0.6696263,-0.46662349,0.5756084,0.67097527,-0.46740475,0.5749103,0.6713132,-0.46777847,0.57395136,0.67195916,-0.4680285,0.5698407,0.67443514,-0.46948773,0.5697549,0.6741047,-0.47006616,0.56932765,0.67420036,-0.47044644,0.5683585,0.67487293,-0.47065395,0.5677488,0.67492265,-0.47131813,0.56732535,0.6752684,-0.4713327,0.5659366,0.6769248,-0.47062567,0.5647911,0.67822975,-0.47012284,0.5640966,0.6791411,-0.4696407,0.5625135,0.68064713,-0.46935922,0.5617069,0.6815525,-0.4690112,0.56077117,0.6819429,-0.4695632,0.5606678,0.6816773,-0.47007203,0.5604075,0.68152076,-0.47060904,0.5596244,0.68143654,-0.47166172,0.5597522,0.6809505,-0.4722117,0.5592548,0.68061596,-0.47328213,0.55935854,0.68037057,-0.4735123,0.5605331,0.67873436,-0.4744706,0.5606683,0.6779667,-0.47540748,0.560615,0.67727226,-0.47645882,0.5603118,0.6766407,-0.47771132,0.5600122,0.6764969,-0.47826582,0.56008744,0.67604554,-0.47881567,0.5593202,0.67645615,-0.47913253,0.5588847,0.6771745,-0.47862574,0.5588928,0.6778301,-0.47768736,0.5571849,0.6795901,-0.47718155,0.55575603,0.6799001,-0.4784047,0.5548917,0.68016875,-0.47902566,0.5542876,0.68025184,-0.4796068,0.5537689,0.6801038,-0.48041534,0.5529619,0.6805048,-0.48077682,0.5522616,0.68074954,-0.48123506,0.5516517,0.6814403,-0.48095685,0.55089587,0.6824843,-0.48034242,0.5504856,0.6827951,-0.48037115,0.5499472,0.6832432,-0.4803507,0.5492111,0.6838112,-0.48038477,0.5478676,0.68528163,-0.47982302,0.54691875,0.68629634,-0.4794551,0.54640406,0.6868094,-0.4793072,0.54587096,0.68750656,-0.47891507,0.5456955,0.68796253,-0.47846007,0.54579246,0.6882334,-0.47795963,0.5453416,0.68920344,-0.47707567,0.5445532,0.6902623,-0.4764449,0.5441425,0.69094217,-0.47592843,0.5411055,0.6946951,-0.47392356,0.54013187,0.69555646,-0.4737708,0.53755224,0.7005256,-0.46936283,0.5367038,0.702099,-0.46798077,0.5363265,0.70289415,-0.46721914,0.5359221,0.70405465,-0.46593407,0.5357821,0.7046336,-0.4652194,0.5338296,0.70599526,-0.46539938,0.53255105,0.7061208,-0.466672,0.5320746,0.7063181,-0.4669169,0.53017354,0.70690966,-0.46818238,0.5295725,0.70726883,-0.46832016,0.5281747,0.7081383,-0.46858475,0.5273971,0.7087902,-0.46847492,0.5264333,0.70963675,-0.46827736,0.5253683,0.71009475,-0.4687789,0.52435666,0.7108642,-0.46874532,0.5236911,0.71112907,-0.46908745,0.52371126,0.7104769,-0.47005227,0.5234249,0.7101115,-0.47092244,0.5228516,0.7098901,-0.4718922,0.5221203,0.70961094,-0.47312012,0.521014,0.70907813,-0.4751343,0.51980716,0.70862067,-0.47713444,0.5190998,0.7082622,-0.47843507,0.5187384,0.7081004,-0.47906613,0.51766384,0.70767474,-0.48085397,0.51741266,0.707476,-0.4814164,0.5163733,0.7080263,-0.48172334,0.5150101,0.7087181,-0.48216516,0.51433855,0.7098223,-0.4812569,0.5099691,0.7138039,-0.48001614,0.50954145,0.7138994,-0.48032826,0.508983,0.7141333,-0.48057252,0.50800955,0.7145299,-0.48101282,0.50734293,0.71509784,-0.48087233,0.5069932,0.7157546,-0.4802637,0.50629276,0.71639526,-0.48004726,0.5057393,0.7170377,-0.47967154,0.5043893,0.7180996,-0.47950438,0.5037091,0.71837294,-0.4798099,0.5030584,0.7187967,-0.4798579,0.5022535,0.7194481,-0.47972485,0.5014897,0.72018343,-0.47942036,0.5001056,0.7215903,-0.4787503,0.49906638,0.7220533,-0.47913647,0.4986145,0.7223368,-0.47917965,0.49794406,0.72307664,-0.47876078,0.49765316,0.7234015,-0.47857243,0.4971843,0.72377384,-0.47849676,0.49673846,0.72453964,-0.4778004,0.49628082,0.7253638,-0.4770248,0.49447295,0.7267456,-0.476799,0.4930276,0.7279305,-0.4764881,0.48882273,0.7321744,-0.4743132,0.48774084,0.73287636,-0.47434285,0.4872404,0.7336615,-0.4736429,0.4854879,0.7355373,-0.47253194,0.4849695,0.73583394,-0.47260234,0.48438612,0.73625743,-0.47254112,0.4834027,0.73654854,-0.47309414,0.48248437,0.73665637,-0.4738631,0.48165476,0.73710227,-0.4740137,0.4808506,0.7375588,-0.47411996,0.47910085,0.7387477,-0.47404024,0.47828686,0.73944867,-0.47376934,0.4778029,0.73981225,-0.47369,0.4774569,0.7408212,-0.47246054,0.47562835,0.74411225,-0.4691211,0.4749408,0.74454653,-0.46912864,0.47445354,0.7449327,-0.4690086,0.47383094,0.74559754,-0.4685815,0.47355628,0.74610275,-0.46805468,0.47375643,0.74689037,-0.46659365,0.47431776,0.7472801,-0.46539778,0.47517493,0.747437,-0.46427014,0.475469,0.74749017,-0.46388322,0.4763034,0.74733335,-0.4632795,0.48004454,0.74633306,-0.46102518,0.4820353,0.7455657,-0.46018884,0.4835299,0.74469614,-0.4600289,0.48600668,0.74432915,-0.45800826,0.48722154,0.74437755,-0.4566369,0.48859987,0.7438965,-0.45594764,0.49174666,0.7424447,-0.45492983,0.492199,0.7425286,-0.45430318,0.493301,0.7418598,-0.45420054,0.4962424,0.7398071,-0.45434445,0.49686542,0.73997736,-0.4533853,0.49879467,0.7398421,-0.45148373,0.5037883,0.73942,-0.44660437,0.504116,0.73989654,-0.4454438,0.5051904,0.7399579,-0.44412273,0.5078628,0.74033326,-0.44043392,0.5071844,0.74130756,-0.439576,0.50684917,0.74232024,-0.43825185,0.5059426,0.74463356,-0.43536526,0.504121,0.7461107,-0.43494922,0.50313395,0.74711984,-0.43435946,0.5029797,0.747664,-0.43360126,0.50269055,0.7481499,-0.43309805,0.50282735,0.7487637,-0.43187693,0.5023876,0.7498185,-0.43055657,0.50244963,0.7501398,-0.4299241,0.5015759,0.75103515,-0.42938077,0.50026256,0.7521066,-0.4290373,0.4998638,0.7531178,-0.4277262,0.5025769,0.7543919,-0.422267,0.5020779,0.7569822,-0.41820538,0.50215304,0.75788975,-0.41646782,0.502692,0.758401,-0.414884,0.5022811,0.75914425,-0.41402134,0.50268936,0.75915146,-0.41351235,0.50309366,0.75915146,-0.4130204,0.5036204,0.75884354,-0.41294435,0.5039972,0.7587469,-0.41266188,0.504185,0.75902885,-0.41191345,0.5046115,0.75905997,-0.4113335,0.5055413,0.7589834,-0.41033182,0.5054033,0.7594898,-0.40956417,0.50568295,0.7598267,-0.4085928,0.50640494,0.7603462,-0.40672812,0.5057703,0.76088005,-0.40651926,0.5055627,0.7612775,-0.4060332,0.50578266,0.76153994,-0.40526628,0.5070954,0.7614731,-0.40374866,0.51197815,0.76234686,-0.39586064,0.5116469,0.7628573,-0.3953051,0.511557,0.7633475,-0.3944744,0.5091131,0.76684797,-0.39082998,0.5071235,0.76838386,-0.39039987,0.5074934,0.7693837,-0.38794214,0.5073358,0.7699583,-0.38700727,0.5067771,0.77044207,-0.38677648,0.50647837,0.77082545,-0.38640362,0.5059905,0.77156,-0.38557583,0.50512934,0.77218044,-0.38546303,0.50436765,0.7729699,-0.38487762,0.5037051,0.77392817,-0.3838182,0.5031247,0.77526915,-0.38186812,0.5020076,0.77824473,-0.3772579,0.5013108,0.77903503,-0.37655255,0.50083846,0.7796673,-0.3758719,0.50026816,0.78059286,-0.37470865,0.49953017,0.7812391,-0.37434614,0.49924785,0.7816539,-0.37385675,0.49902362,0.78204334,-0.37334114,0.4983695,0.78266966,-0.37290218,0.4981396,0.78309757,-0.37231055,0.4979858,0.7838009,-0.37103406,0.49688542,0.78480905,-0.37037763,0.49632895,0.78565496,-0.36932883,0.49476153,0.78834695,-0.36567774,0.4937874,0.7893677,-0.3647912,0.49365768,0.78986603,-0.36388698,0.49321803,0.7903101,-0.3635188,0.49246866,0.79107964,-0.36286032,0.49234182,0.79156107,-0.36198145,0.49189326,0.7918849,-0.36188298,0.4916547,0.79228705,-0.36132658,0.49140847,0.7931816,-0.35969526,0.4910673,0.79355663,-0.35933375,0.4909968,0.79384845,-0.35878503,0.49075,0.7948704,-0.35685503,0.49025977,0.79519296,-0.3568103,0.4899706,0.79538876,-0.35677105,0.48972806,0.79564124,-0.35654086,0.48951247,0.7958905,-0.35628054,0.4894656,0.79619074,-0.3556737,0.4894853,0.7965371,-0.35487014,0.48911822,0.7972841,-0.3536968,0.4894508,0.79748625,-0.35277987,0.48962495,0.7979082,-0.35158208,0.48924735,0.7981762,-0.35149926,0.48873296,0.79867446,-0.35108286,0.48855728,0.7990794,-0.3504053,0.48870918,0.79923874,-0.34982967,0.48946774,0.79951423,-0.3481355,0.48972496,0.80037385,-0.3457906,0.4901994,0.8007696,-0.34419844,0.4908967,0.8007033,-0.34335804,0.49156392,0.8004454,-0.34300452,0.49257314,0.8000391,-0.3425042,0.49271905,0.8008426,-0.34041008,0.49353123,0.8010411,-0.3387626,0.4936259,0.8014725,-0.33760232,0.49327505,0.8022017,-0.33638108,0.4933556,0.8025064,-0.33553502,0.49425834,0.8028759,-0.33331522,0.49450135,0.8039709,-0.3303018,0.49485174,0.80433965,-0.32887605,0.4955055,0.8041315,-0.32840046,0.49573016,0.8041624,-0.3279854,0.49608898,0.8041761,-0.32740888,0.4964504,0.8044338,-0.3262257,0.49746343,0.80431944,-0.3249621,0.50278,0.80346733,-0.31882992,0.5027489,0.80370116,-0.31828907,0.5045256,0.80335265,-0.3163517,0.50987023,0.8019533,-0.31129286,0.512528,0.80161464,-0.30778077,0.51538837,0.80043674,-0.3060651,0.521964,0.7969507,-0.30401182,0.5232526,0.7963949,-0.30325222,0.52434784,0.79566604,-0.30327356,0.52524936,0.7947633,-0.30407947,0.52505505,0.794441,-0.30525517,0.5235253,0.79328537,-0.31083697,0.5249531,0.7922459,-0.31107983,0.52601236,0.79122245,-0.31189418,0.5322072,0.78638047,-0.31362596,0.53518575,0.78502506,-0.31194854,0.5375587,0.7837008,-0.3111971,0.5402138,0.7817612,-0.3114777,0.5428819,0.7800706,-0.31107733,0.5442228,0.7791136,-0.31113267,0.54637426,0.7774767,-0.31145644,0.54796267,0.776561,-0.3109501,0.54928005,0.7756404,-0.3109234,0.55152863,0.7738715,-0.31135035,0.55289155,0.7731088,-0.3108274,0.5540926,0.7723012,-0.3106964,0.55594903,0.77087486,-0.31092215,0.556548,0.77058005,-0.31058127,0.5567022,0.7702888,-0.31102702,0.56255347,0.76580715,-0.3115653,0.56395245,0.7656274,-0.30947113,0.5669779,0.7642969,-0.3072235,0.57460415,0.76081204,-0.3016539,0.5748976,0.76164484,-0.2989814,0.57591873,0.7618193,-0.29656178,0.57641315,0.7630948,-0.29229143,0.57643473,0.7640638,-0.28970602,0.5785624,0.7624968,-0.28959295,0.5828217,0.7593417,-0.28934243,0.5864198,0.7566569,-0.28910574,0.5884154,0.7551382,-0.28902185,0.58992314,0.7539778,-0.28897792,0.5913803,0.75287503,-0.2888747,0.5921068,0.7522111,-0.2891159,0.59356415,0.7511415,-0.2889085,0.5955566,0.74984837,-0.28816625,0.59713215,0.7484433,-0.2885583,0.5995995,0.7460369,-0.28967112,0.6010638,0.74531573,-0.28849047,0.602288,0.7446711,-0.28760055,0.6043005,0.74250233,-0.28898293,0.60482377,0.7416809,-0.2899959,0.6052249,0.740792,-0.29142764,0.6054215,0.74008,-0.29282492,0.6055746,0.73947734,-0.29402828,0.6047999,0.7397641,-0.29490027,0.60140496,0.741506,-0.29745743,0.60127115,0.7413207,-0.29818887,0.60061765,0.74126804,-0.29963332,0.5984203,0.7414265,-0.30361137,0.59834284,0.74123317,-0.30423534,0.5980622,0.74087954,-0.3056453,0.5981415,0.7401041,-0.3073643,0.5985122,0.73923576,-0.30872908,0.59832466,0.7390693,-0.3094902,0.5978756,0.7393459,-0.3096973,0.596739,0.74011666,-0.31004822,0.5954697,0.7408595,-0.31071368,0.5936232,0.74207294,-0.31135076,0.5916815,0.7431431,-0.3124921,0.59092575,0.7431402,-0.31392562,0.5903605,0.743366,-0.3144542,0.58966833,0.7434823,-0.3154764,0.58949375,0.7431391,-0.31660914,0.58823466,0.7429577,-0.31936467,0.58831143,0.7424818,-0.32032856,0.5889979,0.74106556,-0.32234043,0.5893395,0.7403075,-0.32345596,0.5890268,0.7399258,-0.32489574,0.58886373,0.73966545,-0.325783,0.5886953,0.739459,-0.32655522,0.5886799,0.7390923,-0.32741192,0.5890192,0.7386466,-0.32780713,0.5895225,0.73796666,-0.32843336,0.5896706,0.7375743,-0.32904816,0.589618,0.7371898,-0.33000267,0.5895212,0.7369548,-0.33069974,0.58988893,0.7364598,-0.33114663,0.5900188,0.736217,-0.33145487,0.59005326,0.7358709,-0.3321614,0.5905749,0.73439246,-0.3344981,0.5905196,0.7339961,-0.33546442,0.591069,0.7324245,-0.33792272,0.5917526,0.731675,-0.3383497,0.59211755,0.7311014,-0.33895072,0.5928065,0.72965896,-0.34084928,0.5936202,0.72886646,-0.34112862,0.59419626,0.7281659,-0.34162137,0.595036,0.7274395,-0.3417075,0.59624416,0.7269007,-0.34074658,0.5967202,0.72664666,-0.34045497,0.59725577,0.72662205,-0.3395673,0.59786946,0.72689426,-0.33790058,0.5988483,0.7267403,-0.33649558,0.5997515,0.7276792,-0.33283803,0.59969133,0.7281899,-0.331828,0.6000635,0.728493,-0.33048722,0.60051876,0.7283359,-0.3300061,0.6015213,0.7276757,-0.3296365,0.6018389,0.7277926,-0.32879758,0.60233915,0.7276757,-0.3281397,0.60321873,0.72781074,-0.32621887,0.60360765,0.7279767,-0.32512724,0.6048981,0.7275161,-0.32375702,0.6055148,0.7273728,-0.32292506,0.60694903,0.72680646,-0.32150462,0.6093786,0.72563946,-0.31953892,0.60932463,0.72599876,-0.3188249,0.6093261,0.72643405,-0.31782892,0.60995156,0.7264095,-0.31668335,0.6103037,0.72622555,-0.31642666,0.6107523,0.72582585,-0.31647822,0.6120847,0.7246131,-0.3166832,0.6150018,0.7237115,-0.31307256,0.61535966,0.7240267,-0.31163746,0.6158784,0.72389084,-0.3109274,0.61702716,0.72323203,-0.31018206,0.61750346,0.72312486,-0.30948335,0.6180724,0.72284406,-0.30900317,0.61923033,0.7218699,-0.30896226,0.6201845,0.7212622,-0.3084672,0.62135464,0.7205097,-0.3078704,0.62335813,0.7188915,-0.307603,0.62449104,0.71796733,-0.3074636,0.6272923,0.7155308,-0.3074413,0.6277787,0.71541166,-0.30672467,0.6289116,0.7147922,-0.3058469,0.6307091,0.7136762,-0.30474955,0.63214195,0.7127395,-0.303972,0.63310164,0.71250993,-0.30250928,0.63384795,0.7122707,-0.30150825,0.6352787,0.7119793,-0.2991762,0.6356319,0.7119063,-0.2985991,0.63702923,0.7117597,-0.29595923,0.6374916,0.7122665,-0.29373607,0.6380465,0.7121888,-0.292718,0.63873917,0.71190333,-0.29190046,0.63924485,0.7115921,-0.29155228,0.643307,0.7084739,-0.29020816,0.6445697,0.70772177,-0.28924018,0.6458957,0.7067505,-0.28865623,0.64730924,0.70602363,-0.2872652,0.6477603,0.7058245,-0.28673753,0.64917564,0.7049552,-0.28567317,0.6509003,0.70396143,-0.2841956,0.65110433,0.70416784,-0.2832151,0.6513051,0.7042307,-0.28259647,0.6517922,0.7045308,-0.28071925,0.6522691,0.7045701,-0.27951032,0.65376085,0.70609003,-0.2720912,0.65316004,0.7072417,-0.2705386,0.6530351,0.7078247,-0.2693127,0.6535389,0.7078843,-0.2679304,0.65437484,0.70788306,-0.26588556,0.6545325,0.70811355,-0.2648818,0.6553544,0.7078969,-0.2634248,0.6571118,0.7067306,-0.26217532,0.6582359,0.7058613,-0.26169702,0.65933466,0.7049703,-0.26133248,0.6614337,0.7030584,-0.26117876,0.66353714,0.70105326,-0.26123312,0.664946,0.69990253,-0.26073593,0.66557556,0.6992553,-0.26086628,0.6659611,0.6986946,-0.26138416,0.6662779,0.6980608,-0.26226884,0.6670275,0.6970636,-0.26301447,0.6676043,0.6960021,-0.26435876,0.66797394,0.69517434,-0.26560023,0.6684594,0.69383764,-0.2678644,0.6688828,0.6931365,-0.2686217,0.6693586,0.6923314,-0.26951128,0.6711198,0.6906322,-0.26949084,0.67179644,0.6904356,-0.26830634,0.672523,0.6898867,-0.26789764,0.67472255,0.6883076,-0.2664248,0.67496556,0.68826306,-0.26592383,0.6754085,0.68803674,-0.26538444,0.6775528,0.68698597,-0.2626261,0.6782715,0.6866911,-0.2615399,0.6789387,0.6863441,-0.2607184,0.68031025,0.6852705,-0.25996596,0.68134576,0.6844719,-0.2593573,0.68268675,0.68341124,-0.25862688,0.68327856,0.6829408,-0.25830662,0.6845724,0.68187743,-0.2576894,0.6861117,0.6806603,-0.2568119,0.68694526,0.6800063,-0.25631532,0.6874288,0.6796151,-0.25605667,0.6880025,0.67910415,-0.2558712,0.6888433,0.6787075,-0.25465873,0.6896149,0.67828804,-0.25368616,0.69077694,0.6776541,-0.25221455,0.69225395,0.67695624,-0.25002944,0.6935357,0.6762823,-0.24829511,0.69635856,0.6747969,-0.24440512,0.69721776,0.67482513,-0.24186459,0.69845337,0.6746434,-0.238787,0.6993453,0.67451,-0.23654261,0.69977736,0.6746799,-0.23477373,0.7005598,0.6747761,-0.23214908,0.70109856,0.6749119,-0.23011887,0.7017598,0.6746528,-0.2288596,0.703016,0.67437786,-0.22579436,0.7032958,0.674315,-0.22510953,0.70564723,0.67364824,-0.21968172,0.7067277,0.6732904,-0.21729255,0.70756656,0.6731272,-0.21505679,0.7083019,0.6728669,-0.21344465,0.7096996,0.672074,-0.21128877,0.71009916,0.6718702,-0.2105937,0.71163404,0.6709519,-0.20832811,0.71489567,0.66905266,-0.20320608,0.71728987,0.66750896,-0.19981767,0.7176901,0.6672443,-0.19926368,0.71933156,0.6661537,-0.19698052,0.7201019,0.6657258,-0.19560783,0.7212178,0.66475165,-0.19480789,0.72242844,0.66386753,-0.19333129,0.72229695,0.66449696,-0.1916532,0.7226151,0.6644633,-0.19056746,0.7233259,0.6646918,-0.1870411,0.72086865,0.66753376,-0.18640569,0.72184104,0.66713256,-0.18406445,0.72478217,0.6658988,-0.1768321,0.7243986,0.6672589,-0.1732403,0.7240888,0.6683075,-0.17047161,0.72381717,0.6692078,-0.16807607,0.7240651,0.6698048,-0.16459437,0.724267,0.67032415,-0.16156365,0.72467244,0.6711787,-0.15610576,0.7238773,0.6729135,-0.15227942,0.7223171,0.6751502,-0.149767,0.7220625,0.6755908,-0.14900583,0.7220008,0.67589295,-0.14793102,0.7220402,0.6760889,-0.14683923,0.7235313,0.6770917,-0.13434732,0.7238973,0.6777844,-0.12876752,0.7240497,0.67786896,-0.12745832,0.72714347,0.67737323,-0.1114804,0.72749376,0.6779611,-0.10545877,0.7278298,0.6786248,-0.09865149,0.7280552,0.6793106,-0.09204784,0.72898614,0.67893213,-0.08735227,0.7294911,0.67872185,-0.08473136,0.7301158,0.6784208,-0.08170788,0.729852,0.6787594,-0.08125139,0.7286575,0.68007255,-0.08099143,0.7277806,0.68108785,-0.080341466,0.7269477,0.68218344,-0.07856687,0.72610044,0.6832246,-0.07734489,0.7250136,0.6846297,-0.07508276,0.7242563,0.68551314,-0.07432809,0.72299564,0.68688065,-0.073974624,0.71983945,0.6904288,-0.07168843,0.7176815,0.6928182,-0.07025812,0.7172459,0.6933042,-0.06991189,0.7165527,0.69408,-0.06931913,0.7162293,0.69448483,-0.06860286,0.71385056,0.6971077,-0.06677054,0.7130222,0.6979345,-0.066983566,0.71284074,0.69814134,-0.06675941,0.7126561,0.6990499,-0.058741435,0.71139246,0.70056695,-0.055917036,0.7109442,0.7011517,-0.05426416,0.7095623,0.7027141,-0.052098516,0.70941097,0.7030839,-0.04908322,0.7088836,0.70369506,-0.04793113,0.70765525,0.70502955,-0.0464476,0.70688593,0.7058836,-0.04517273,0.7064592,0.70642126,-0.04340953,0.7061458,0.7068988,-0.040646117,0.7059426,0.7073556,-0.035959344,0.7058292,0.7075477,-0.03437124,0.70625514,0.7072423,-0.03181029,0.7061636,0.7075417,-0.026790595,0.7058177,0.70795166,-0.025015064,0.70588136,0.7079619,-0.0228348,0.7056482,0.7083182,-0.018602053,0.70534235,0.7086447,-0.017743427,0.7054626,0.70856297,-0.01615836,0.7051605,0.70888823,-0.0150391795,0.70457035,0.7094962,-0.013992137,0.7043001,0.70978504,-0.012908426,0.7043395,0.70976645,-0.011723889,0.7046196,0.7094962,-0.011240817,0.7046001,0.70952266,-0.010788839,0.7037769,0.7103437,-0.010481102,0.7024554,0.7116663,-0.009357268,0.7018575,0.71225816,-0.009183027,0.7011732,0.71294034,-0.008498755,0.696428,0.7175614,-0.009674721,0.6960187,0.7179489,-0.010356102,0.6955583,0.7183889,-0.010770153,0.69474846,0.7191586,-0.011638886,0.6941028,0.7197736,-0.012136925,0.6932343,0.72061133,-0.012061476,0.69233453,0.72148585,-0.011450919,0.69048744,0.7232597,-0.011067155,0.68967223,0.7240272,-0.011694967,0.68787533,0.72572273,-0.012413888,0.6874069,0.72616756,-0.012345677,0.68703586,0.7265237,-0.012043832,0.6862085,0.7273067,-0.011952082,0.68509406,0.7283593,-0.011787828,0.6834009,0.72996247,-0.010861571,0.6825004,0.7308117,-0.010363211,0.6821215,0.7311769,-0.009513226,0.68189603,0.7313996,-0.008516158,0.6806742,0.7325464,-0.0076434244,0.6792302,0.733896,-0.006555042,0.6777667,0.7352555,-0.0056363326,0.6767487,0.7361934,-0.005521773,0.6755189,0.73732567,-0.0050131585,0.67432904,0.73841965,-0.0040894104,0.67357975,0.73910433,-0.003887409,0.67331004,0.7393511,-0.0036815722,0.67167413,0.74084634,-0.00078079023,0.6710673,0.7413962,-0.0006313695,0.6707155,0.74171466,-0.00032696745,0.6706035,0.7418158,0.00048346102,0.67114645,0.7413241,0.0010489417,0.671034,0.7414196,0.0032138934,0.67068696,0.7417318,0.003591774,0.6702957,0.74208206,0.0042295037,0.66905963,0.743191,0.0051271627,0.66872615,0.743484,0.0060786637,0.6687625,0.74343497,0.007822001,0.66931236,0.74292177,0.00938935,0.6683748,0.74372786,0.0120038055,0.66785616,0.7441834,0.012616255,0.6676731,0.7443314,0.013539454,0.66606426,0.7457105,0.016557707,0.66479516,0.7468405,0.016632736,0.66390646,0.7476181,0.017186882,0.66362727,0.74783766,0.018374922,0.6626967,0.7486326,0.019553065,0.6621591,0.74906075,0.02129274,0.6617468,0.74939317,0.022384858,0.6614877,0.7495929,0.023334462,0.6603841,0.7505775,0.02293832,0.6599465,0.7509766,0.022466991,0.6595293,0.75134677,0.02233913,0.6591442,0.751674,0.022696137,0.6587202,0.75201565,0.02366849,0.65832746,0.7523189,0.024924085,0.65773886,0.7528257,0.02516226,0.6571066,0.7533527,0.025896301,0.6562955,0.75408524,0.025133913,0.6560551,0.75431466,0.024516635,0.6556048,0.7547112,0.024358856,0.65452534,0.755628,0.024957748,0.6540542,0.75603974,0.024838198,0.65344274,0.756565,0.024939869,0.6533736,0.7566051,0.025528347,0.6535762,0.7563928,0.026611837,0.6537285,0.75622326,0.02766723,0.65383005,0.75610954,0.028365945,0.6542135,0.75569105,0.030590462,0.65389866,0.7559204,0.031638034,0.6537418,0.75596666,0.033705883,0.6538382,0.7558255,0.034975853,0.6538981,0.75574577,0.03557485,0.6543875,0.7552784,0.036490813,0.65488976,0.75481075,0.037151538,0.65578717,0.75401473,0.037483852,0.6568384,0.75311273,0.037208118,0.66130227,0.7490178,0.04064043,0.6614722,0.7487964,0.04193439,0.66180587,0.7484297,0.043195814,0.662045,0.748073,0.045642693,0.66206366,0.7478914,0.048271738,0.6622945,0.74762493,0.049223818,0.66319746,0.7467753,0.049956996,0.66395795,0.7460636,0.05048776,0.6645395,0.74552256,0.050825927,0.66645384,0.7437501,0.0517219,0.66818196,0.7421586,0.05228227,0.67039585,0.74017686,0.05203587,0.6728377,0.73796666,0.051910475,0.67366844,0.73720247,0.051994205,0.674952,0.73606646,0.05143948,0.6767921,0.73437744,0.051403385,0.6775652,0.73359317,0.05240652,0.67864007,0.7325521,0.05305637,0.679164,0.73190963,0.055176713,0.6791769,0.73178655,0.05663227,0.6800095,0.73089206,0.058171246,0.6808553,0.72973704,0.06260979,0.67987454,0.7306314,0.06283634,0.679397,0.7310246,0.06342521,0.6792813,0.73105544,0.06430331,0.67920315,0.73106533,0.06501194,0.67872113,0.73130774,0.06728038,0.67859215,0.7312909,0.06874772,0.67724484,0.7318678,0.07555729,0.6761591,0.7326455,0.07771346,0.67482275,0.7335706,0.0805506,0.67438734,0.733841,0.08172532,0.67459816,0.73356307,0.08247776,0.67514974,0.7330352,0.08265737,0.6764963,0.7317523,0.083014175,0.6773088,0.73094904,0.083464265,0.68136185,0.7268679,0.08607602,0.68418497,0.72401136,0.08774097,0.68682414,0.721261,0.08975054,0.6886617,0.71941024,0.090520754,0.69094086,0.7170555,0.09182684,0.6925486,0.7153456,0.09304377,0.6934423,0.7144106,0.09356934,0.6938228,0.7140295,0.09365799,0.69438714,0.71349406,0.09355582,0.69518125,0.7129075,0.0921191,0.6957525,0.7125476,0.09057833,0.6988998,0.70910877,0.0932944,0.6982473,0.70964277,0.09411592,0.6979912,0.7098055,0.094786435,0.6980482,0.70950764,0.09657968,0.69822586,0.70910156,0.098262765,0.69709295,0.7098907,0.10058117,0.69599813,0.7109325,0.1008047,0.69540673,0.7114052,0.10154813,0.69571954,0.7109325,0.102709465,0.6960254,0.71013856,0.10607466,0.6964139,0.7091911,0.10979867,0.69653845,0.70870066,0.11214951,0.69631827,0.7087776,0.113027394,0.69613963,0.7086664,0.114811204,0.69614893,0.70840114,0.1163807,0.6963207,0.70803297,0.117587104,0.6964344,0.707526,0.11994187,0.6964124,0.7071863,0.12205473,0.69693637,0.7064164,0.12351347,0.6974983,0.7056711,0.12459664,0.69778395,0.70538723,0.12460474,0.69833916,0.70494616,0.12398921,0.6988184,0.7045997,0.123256125,0.6992341,0.70473456,0.120086595,0.6999128,0.7042664,0.11887354,0.7004016,0.70396626,0.11776672,0.7011526,0.7031972,0.11789299,0.70112616,0.70310813,0.11857922,0.7013464,0.7028414,0.11885753,0.70171225,0.7024861,0.11879897,0.70254123,0.7015563,0.1193926,0.70387226,0.7001417,0.1198558,0.70651907,0.6974565,0.119938545,0.70712966,0.6968057,0.12012277,0.70800877,0.6958785,0.120319255,0.7086933,0.69525033,0.11991993,0.7099086,0.6940524,0.1196701,0.7107553,0.69330233,0.11899067,0.71342295,0.69069445,0.11819008,0.71497786,0.68916637,0.1177129,0.716712,0.68743044,0.117317185,0.7175096,0.68649095,0.11794129,0.71802163,0.6859461,0.1179953,0.71857166,0.6854914,0.117287114,0.71945256,0.6846023,0.1170797,0.72001535,0.684058,0.11680092,0.7206407,0.68330544,0.11734862,0.7200604,0.6836339,0.118985884,0.7203305,0.68309265,0.12045113,0.72058487,0.68254846,0.12200416,0.720818,0.68225884,0.12224711,0.72110224,0.6819423,0.12233706,0.72138417,0.6816636,0.122228034,0.72197556,0.6811752,0.121456236,0.7224513,0.68087065,0.12032987,0.72288924,0.6803818,0.12046481,0.7228536,0.68015504,0.121949814,0.7231645,0.6794062,0.12425862,0.7237934,0.6786017,0.1249916,0.72451615,0.6777173,0.12560095,0.72497517,0.67720395,0.1257213,0.7262602,0.6758264,0.12571718,0.72769916,0.67429477,0.12562008,0.72925806,0.67267895,0.1252429,0.72997695,0.6718216,0.12565584,0.73013043,0.67159176,0.12599237,0.730869,0.67081285,0.12585947,0.73196334,0.66955096,0.1262187,0.7314781,0.669325,0.13016875,0.73154145,0.6690755,0.13109222,0.7328619,0.66628593,0.13775523,0.7326952,0.66630876,0.13852952,0.7330687,0.6654797,0.14052418,0.7338643,0.6634047,0.14607348,0.73449063,0.6620914,0.14885764,0.7347047,0.6615413,0.15024039,0.73501176,0.66094035,0.15137891,0.7355003,0.66033196,0.15166123,0.7359871,0.6597583,0.15179566,0.73753005,0.65672636,0.15735292,0.73708475,0.65679127,0.15915826,0.7371678,0.6563792,0.160468,0.737133,0.6559638,0.16231556,0.7360385,0.6562481,0.16608962,0.73578215,0.6562005,0.16740826,0.7348897,0.65657467,0.16984344,0.73482245,0.6563773,0.17089428,0.7350386,0.65582615,0.17207666,0.73651606,0.6536599,0.17399101,0.7367992,0.6531515,0.17469977,0.73714894,0.65265703,0.17507201,0.7387773,0.65048105,0.17630234,0.7393368,0.64959705,0.17721388,0.7398906,0.64877766,0.17790279,0.74045485,0.6474849,0.18024945,0.7394023,0.64852864,0.18081702,0.7394829,0.6482315,0.18155159,0.7396768,0.647807,0.18227564,0.739254,0.64795434,0.1834631,0.73924464,0.6477401,0.18425553,0.73857266,0.647179,0.18886456,0.7363915,0.6496683,0.18883511,0.7353044,0.6508447,0.1890199,0.7349936,0.651108,0.18932198,0.7348528,0.6511391,0.18976127,0.73506373,0.64877766,0.19689794,0.7341032,0.64936185,0.1985488,0.7341167,0.6492173,0.19897142,0.73429364,0.6489009,0.19935001,0.7345901,0.6484988,0.19956627,0.735783,0.6471693,0.19948775,0.73554933,0.6471874,0.20028867,0.73545134,0.64693075,0.20147431,0.7356341,0.6464192,0.2024466,0.7363834,0.6446202,0.2054369,0.7362622,0.64401734,0.20774904,0.7358798,0.64378065,0.209827,0.73580396,0.64358103,0.21070339,0.7358731,0.64336383,0.21112494,0.7363715,0.6425042,0.21200302,0.7376802,0.6404939,0.21353081,0.7379083,0.6401116,0.2138886,0.73832494,0.63961124,0.21394792,0.7410708,0.6355697,0.21648352,0.7408947,0.63538945,0.21761268,0.74146765,0.6346857,0.217715,0.74246675,0.6333518,0.21819401,0.74313396,0.6324241,0.21861301,0.7447691,0.63073725,0.21792075,0.7456054,0.6299242,0.2174124,0.7462491,0.6293495,0.21686748,0.7468864,0.62852395,0.21706784,0.7469214,0.6281627,0.21799093,0.74713284,0.62777597,0.21838012,0.7474276,0.62734205,0.21861842,0.74789584,0.6268382,0.21846206,0.749279,0.625228,0.21833669,0.7504235,0.6239735,0.21799457,0.75113976,0.62337327,0.21724372,0.75182635,0.6229747,0.21600854,0.7519711,0.6230587,0.21526092,0.7514019,0.6239954,0.21453406,0.75109637,0.6247137,0.2135112,0.7513429,0.62466383,0.21278848,0.7516532,0.6246944,0.21159957,0.7563609,0.6212065,0.20498936,0.75748515,0.61943316,0.20620073,0.7583597,0.61829716,0.2063957,0.75933045,0.61708546,0.20645283,0.7602012,0.6161851,0.20593698,0.7615392,0.6146401,0.20560998,0.7625361,0.6133581,0.20574386,0.7628981,0.6129757,0.20554164,0.7632943,0.61252785,0.2054056,0.76407975,0.61135167,0.20598851,0.76489866,0.6101647,0.20646802,0.76527053,0.609769,0.20625913,0.76596004,0.6091818,0.20543288,0.76846445,0.60589886,0.20578867,0.7685839,0.605294,0.20711844,0.7686739,0.6050389,0.20752922,0.7680446,0.6052824,0.20914268,0.7675689,0.605789,0.20942216,0.7674721,0.6058596,0.2095728,0.76750547,0.605526,0.21041293,0.76740664,0.6051081,0.21197012,0.76751316,0.60401106,0.21469548,0.7677349,0.6037278,0.21469967,0.7690023,0.6026123,0.2132928,0.7693775,0.6022423,0.21298467,0.76951903,0.602124,0.21280777,0.77105874,0.60152364,0.2088966,0.77150375,0.6011518,0.20832284,0.77155966,0.60137385,0.20747331,0.77394605,0.60019255,0.20193176,0.7755849,0.59815997,0.20167464,0.7758448,0.5979756,0.20122145,0.7795336,0.5951255,0.19532794,0.78023696,0.5942348,0.19523145,0.7810746,0.5931719,0.19511428,0.7831947,0.5901668,0.19572762,0.7834251,0.5896748,0.19628745,0.7837785,0.5890338,0.19680054,0.7841977,0.5884765,0.19679779,0.78462297,0.5880334,0.19642693,0.7850579,0.5877335,0.19558485,0.7853965,0.5875453,0.1947894,0.78584284,0.58706796,0.1944281,0.78718793,0.58536816,0.19411173,0.7874724,0.5851069,0.1937449,0.7877175,0.58511245,0.1927291,0.78790605,0.58548355,0.19082211,0.7879578,0.5861894,0.18842635,0.7891314,0.58457536,0.18852928,0.78978837,0.58395773,0.18769048,0.7906037,0.58323866,0.18648963,0.79089946,0.58299845,0.185986,0.79174125,0.5823114,0.18455124,0.7930221,0.58144224,0.18177144,0.794101,0.5808188,0.17903374,0.7948942,0.58035594,0.17700294,0.795142,0.5803254,0.17598732,0.79531896,0.58030254,0.17526165,0.79569304,0.58042675,0.1731397,0.85463977,0.5014951,0.1345121,0.855305,0.50055635,0.13377884,0.8554338,0.5006028,0.13277754,0.8551519,0.50140977,0.13154286,0.85339904,0.50509405,0.12880264,0.855678,0.5036996,0.11875145,0.85650206,0.502401,0.11831086,0.8569309,0.50174,0.11800992,0.85750246,0.50096494,0.11714757,0.85909545,0.4991156,0.11330768,0.8603489,0.4974464,0.11111655,0.86202735,0.49520686,0.10806949,0.862885,0.49421602,0.10573552,0.86318994,0.49413374,0.103609644,0.865028,0.49149907,0.100772984,0.8663347,0.489479,0.099370554,0.8675927,0.48760965,0.097569145,0.867707,0.48767066,0.09623886,0.86756825,0.48827758,0.09439466,0.86871153,0.4871936,0.08934617,0.8697982,0.4853648,0.088725336,0.8709282,0.48346213,0.08802476,0.8721078,0.48181337,0.085345834,0.87261516,0.4810336,0.084554665,0.8736631,0.4796044,0.08180732,0.8740172,0.47902173,0.08143773,0.8742864,0.47862372,0.0808857,0.8744855,0.47837377,0.08020962,0.87469614,0.47808188,0.079651706,0.8748314,0.47798082,0.07876799,0.87508655,0.47826082,0.07409591,0.87576383,0.47691756,0.074748635,0.87664807,0.4751983,0.07533131,0.87715733,0.47433347,0.07485252,0.8774657,0.4739749,0.07349612,0.877852,0.47371972,0.070466205,0.87816,0.47374147,0.066363305,0.88079596,0.46931276,0.06280121,0.8813332,0.4683651,0.062338367,0.88152224,0.46809018,0.06172655,0.8813983,0.46846515,0.060641624,0.8809215,0.46938804,0.06043388,0.8802292,0.47088405,0.05886264,0.8808442,0.46981165,0.058228135,0.8814663,0.46884763,0.05655987,0.8817964,0.46837184,0.055343676,0.88178045,0.4685397,0.05416431,0.8816147,0.46890935,0.053660966,0.88065374,0.47078404,0.05302243,0.8809222,0.47056,0.050490897,0.88134724,0.46981165,0.050040506,0.8816139,0.46945876,0.04863567,0.8823368,0.46837184,0.045930717,0.88316846,0.46697822,0.044099554,0.883414,0.46672502,0.041804057,0.8835983,0.46672353,0.037724745,0.8836961,0.46662107,0.036689326,0.88368356,0.4667168,0.035759386,0.8833752,0.46767372,0.030487873,0.887151,0.46119136,0.016297517,0.88673854,0.4620252,0.01508344,0.88615483,0.4631812,0.0138845565,0.88423973,0.46689832,0.011225632,0.8832411,0.4688266,0.009312834,0.8824196,0.47039527,0.007998606,0.88163096,0.47190922,0.005343555,0.8813925,0.47236896,0.0038488111,0.88083416,0.4734165,0.002815013,0.8815493,0.47206098,-0.0054181735,0.8819545,0.47130656,-0.0051380447,0.88216126,0.4709194,-0.0051287333,0.88227266,0.47070736,-0.0054316646,0.8823358,0.47056296,-0.0073511065,0.88261974,0.46988004,-0.013967639,0.88286746,0.46938804,-0.014832489,0.8830525,0.4690102,-0.015734436,0.88300055,0.46907791,-0.016611163,0.8825505,0.46988383,-0.017714746,0.882193,0.47045767,-0.020125074,0.8825188,0.46980482,-0.021068601,0.8827969,0.46919087,-0.0230145,0.88321304,0.4682882,-0.025316643,0.8842162,0.46640015,-0.025152346,0.87360317,0.47338867,-0.112786,0.87263894,0.47491634,-0.11382306,0.8719565,0.47601768,-0.11445056,0.87165457,0.47648907,-0.1147887,0.87113845,0.47731528,-0.11527365,0.871157,0.4766883,-0.11770186,0.87159634,0.47573367,-0.11831036,0.8719347,0.47495085,-0.118960276,0.8718342,0.4749539,-0.11968231,0.8716734,0.47506487,-0.12041103,0.8719358,0.4743005,-0.12151975,0.8725849,0.47272795,-0.122979596,0.8727095,0.47233367,-0.12360858,0.8736507,0.47032237,-0.12462452,0.8743356,0.4689718,-0.12491079,0.8765464,0.46427295,-0.12695284,0.8769862,0.46328166,-0.12753543,0.877323,0.4625239,-0.12796922,0.87730306,0.4623381,-0.12877432,0.87681735,0.4630958,-0.12935805,0.8763608,0.4639061,-0.12954861,0.8788663,0.4578011,-0.13420953,0.87931573,0.4569523,-0.13415855,0.8803636,0.45468888,-0.1349741,0.8816433,0.4520827,-0.13537481,0.8823356,0.45065534,-0.13562281,0.8851554,0.44509912,-0.13559754,0.886249,0.44304827,-0.13517,0.88704973,0.44133914,-0.13550866,0.8874822,0.44055742,-0.13522027,0.8878893,0.4401595,-0.13383639,0.88822395,0.43950665,-0.13376144,0.8886814,0.43842933,-0.13425787,0.88918066,0.4370808,-0.13534415,0.8899355,0.43565068,-0.13499351,0.8901188,0.4355963,-0.13395683,0.8905931,0.43505612,-0.13255233,0.89262664,0.4315953,-0.13016571,0.8927148,0.4319996,-0.12820572,0.8929559,0.43163067,-0.12776822,0.8959346,0.42634982,-0.12460758,0.8960314,0.42659804,-0.123052225,0.89683384,0.4251167,-0.12233087,0.897853,0.42316118,-0.121632904,0.8983296,0.4221493,-0.12163039,0.8992367,0.42011723,-0.12196237,0.89950836,0.41977072,-0.12114995,0.90002084,0.4190528,-0.11982147,0.9011716,0.4167758,-0.11911182,0.90217066,0.41456136,-0.1192768,0.90244716,0.4138012,-0.11982359,0.90247005,0.41346908,-0.12079412,0.9026862,0.41278625,-0.12151222,0.90315694,0.4117171,-0.12164135,0.90367424,0.41038075,-0.122313336,0.9044056,0.40882125,-0.12212975,0.9056684,0.40655288,-0.12033138,0.90622,0.40531766,-0.12034498,0.9062499,0.40493664,-0.121397495,0.9060535,0.40511113,-0.12227837,0.9056674,0.40565023,-0.12334708,0.9051079,0.4065178,-0.124591015,0.9026642,0.40831172,-0.13593759,0.9028227,0.40784964,-0.13627154,0.9020621,0.40858638,-0.13907205,0.90195113,0.40862837,-0.13966715,0.90185374,0.40866798,-0.14017943,0.902072,0.40818027,-0.14019607,0.90328234,0.40616348,-0.1382468,0.9037549,0.40522262,-0.13791882,0.904187,0.40421253,-0.13805094,0.9044648,0.4032755,-0.13896897,0.9053284,0.4007387,-0.14067374,0.9061296,0.39907572,-0.14024152,0.9063366,0.3984692,-0.14062783,0.9073731,0.39566517,-0.14185633,0.90821797,0.39380163,-0.14163484,0.90815145,0.39282772,-0.14473209,0.9079145,0.39239037,-0.14738043,0.90765274,0.3922712,-0.1492979,0.9081364,0.39007434,-0.15208606,0.9084569,0.3895628,-0.15148237,0.90935594,0.38791934,-0.15030083,0.91038746,0.38572362,-0.14970626,0.91105175,0.38407817,-0.14989525,0.91165024,0.38265193,-0.14990442,0.912736,0.38059208,-0.14853509,0.91340816,0.37917465,-0.14802769,0.9140807,0.37771922,-0.14759637,0.9143325,0.37708634,-0.1476546,0.91445976,0.37664422,-0.14799495,0.9144577,0.37638843,-0.14865695,0.9143378,0.37623447,-0.14977974,0.91404736,0.3763987,-0.15113388,0.9138971,0.3730138,-0.16016513,0.9144558,0.37170488,-0.1600189,0.9148096,0.3706991,-0.16032988,0.915068,0.3697728,-0.16099264,0.9150102,0.3694672,-0.16201971,0.9152437,0.36840108,-0.16312465,0.9156645,0.36744148,-0.16292757,0.91588074,0.36668277,-0.16342025,0.9159857,0.36618474,-0.16394806,0.9159033,0.36590007,-0.16504042,0.9150981,0.36624265,-0.1687066,0.915008,0.36582077,-0.1701046,0.91470397,0.36604285,-0.17125802,0.91427803,0.3665813,-0.17237693,0.91285187,0.36901972,-0.17471637,0.9114292,0.3703231,-0.17932518,0.91163063,0.36982983,-0.17931955,0.91235054,0.36782658,-0.17977782,0.91246605,0.3675967,-0.1796616,0.9125698,0.36685956,-0.1806387,0.91335464,0.36499894,-0.18044138,0.9134107,0.36460537,-0.18095236,0.91362023,0.36394113,-0.18123178,0.91404533,0.36289707,-0.1811818,0.9143436,0.3620106,-0.18144985,0.9144329,0.36158082,-0.18185633,0.91440773,0.3613663,-0.1824088,0.91325724,0.36218226,-0.18650787,0.913312,0.36168253,-0.18720837,0.9133066,0.3613711,-0.18783508,0.91324395,0.36113033,-0.18860109,0.91324466,0.36081314,-0.18920349,0.91312903,0.3609149,-0.18956746,0.9126506,0.36169207,-0.19038835,0.91254157,0.36182946,-0.19064966,0.912392,0.36221004,-0.1906427,0.91225564,0.36290818,-0.18996678,0.91216487,0.36349407,-0.18928133,0.9116623,0.36479583,-0.18919812,0.9107307,0.36705062,-0.18932371,0.9102662,0.36821797,-0.18929033,0.9091895,0.37101087,-0.18901147,0.908906,0.37179738,-0.18882966,0.90867144,0.37270388,-0.18817037,0.9083028,0.37443984,-0.18649618,0.9075991,0.37656218,-0.18564731,0.9073265,0.37723306,-0.18561737,0.90709937,0.3780001,-0.1851666,0.90685725,0.37870777,-0.18490627,0.90657,0.37907448,-0.18556236,0.90606964,0.37989923,-0.18631776,0.90455055,0.38252747,-0.18831089,0.90494484,0.3808844,-0.18974185,0.9042686,0.3817061,-0.1913079,0.9039546,0.38126808,-0.19365093,0.9040479,0.38073462,-0.194264,0.90365255,0.38130677,-0.19498003,0.9031099,0.38213533,-0.19587,0.9023643,0.38342497,-0.19678427,0.90145177,0.38504654,-0.19779757,0.9009424,0.38603497,-0.19819131,0.90034044,0.38656625,-0.19988401,0.900323,0.3859122,-0.20122182,0.9002315,0.38507637,-0.20322262,0.9002443,0.3840883,-0.20502749,0.9004893,0.38309276,-0.20581317,0.90065527,0.38213775,-0.20685932,0.9006025,0.38184866,-0.20762135,0.9004868,0.38192502,-0.2079827,0.8999407,0.38264322,-0.20902346,0.89942855,0.3833644,-0.20990482,0.899093,0.38418198,-0.20984754,0.8985906,0.38491595,-0.21065266,0.89783055,0.3861238,-0.21168074,0.8972277,0.38678634,-0.21302271,0.8978277,0.38425362,-0.21506868,0.89780664,0.38410175,-0.21542774,0.8975308,0.38448176,-0.21589875,0.8965563,0.38646027,-0.21641456,0.89607066,0.38703313,-0.21739992,0.89651877,0.38329977,-0.22211568,0.896404,0.38332972,-0.2225268,0.89622027,0.3834974,-0.22297747,0.89591295,0.3840718,-0.22322372,0.89358485,0.38766715,-0.22631915,0.893751,0.38700873,-0.22678928,0.8938821,0.3860994,-0.22782013,0.8936413,0.38597128,-0.22897898,0.8923645,0.38758156,-0.23122749,0.89205533,0.3878376,-0.23198962,0.8918474,0.3878086,-0.23283644,0.8915949,0.38787296,-0.23369443,0.8911286,0.38848874,-0.2344489,0.89056814,0.38930288,-0.2352268,0.8898339,0.39090446,-0.23534924,0.88919455,0.39234027,-0.23537637,0.8884504,0.3933089,-0.236567,0.88787204,0.39385095,-0.23783325,0.8864881,0.39524177,-0.24067172,0.88609046,0.3926898,-0.2462487,0.8863414,0.3918981,-0.24660642,0.8860041,0.39121187,-0.2488978,0.8860048,0.3902383,-0.25041884,0.8860438,0.38949051,-0.25144294,0.88576746,0.389525,-0.25236157,0.8854224,0.38972592,-0.25326052,0.88500714,0.39032546,-0.25378805,0.8843204,0.39001003,-0.2566508,0.88458574,0.38863242,-0.25782338,0.88453037,0.38843998,-0.25830302,0.8842244,0.38853663,-0.2592035,0.88351446,0.38902584,-0.26088524,0.88274574,0.38717613,-0.26618508,0.88338894,0.38608214,-0.26564002,0.8840216,0.3849033,-0.2652455,0.8846704,0.38407025,-0.26428837,0.884986,0.3838641,-0.26353022,0.88559407,0.38270545,-0.26317233,0.88633555,0.3809963,-0.26315594,0.8865981,0.38012937,-0.263525,0.88740575,0.37681395,-0.2655603,0.8881598,0.3749013,-0.26574638,0.88837886,0.3742652,-0.26591092,0.88817495,0.3743829,-0.26642567,0.8879382,0.37461206,-0.2668925,0.8875665,0.3738179,-0.26923206,0.8875223,0.37331352,-0.27007627,0.88728243,0.37337512,-0.27077836,0.8873048,0.37288097,-0.2713854,0.8876052,0.37193272,-0.271704,0.8876589,0.37127367,-0.27242887,0.88757783,0.37002388,-0.27438658,0.8871683,0.36991933,-0.2758478,0.88741237,0.36826873,-0.2772678,0.88680816,0.36881065,-0.27847824,0.88689333,0.3680976,-0.27914953,0.8859676,0.3683503,-0.28174368,0.8849808,0.3688573,-0.2841712,0.8820555,0.36964142,-0.2921357,0.8818826,0.3696968,-0.29258725,0.8804262,0.37183458,-0.29425952,0.87973994,0.3557394,-0.31544766,0.8806305,0.34978825,-0.31959045,0.8808284,0.3486255,-0.3203148,0.8684513,0.3666914,-0.3336611,0.8604653,0.37206483,-0.3480908,0.8572963,0.37392855,-0.35386503,0.8564527,0.37233138,-0.3575726,0.8505153,0.37695837,-0.36677793,0.84975195,0.37749118,-0.36799735,0.84416324,0.39161578,-0.3660949,0.8423707,0.38373113,-0.37836757,0.8340497,0.38779363,-0.39239928,0.8260823,0.38992056,-0.40687832,0.8115729,0.40419313,-0.42187363,0.80296147,0.4156445,-0.42719147,0.79664946,0.41959596,-0.4350734,0.7791998,0.44207624,-0.4443156,0.75886333,0.4691239,-0.45171803,0.75875926,0.46962497,-0.45137218,0.74050426,0.4925904,-0.45717397,0.7392679,0.507083,-0.4431138,0.7318557,0.51265687,-0.4489657,0.7293699,0.5262168,-0.4371675,0.72596383,0.52788544,-0.44081008,0.7153972,0.5663514,-0.4092101,0.71724045,0.5699743,-0.40086827,0.69274485,0.5925858,-0.41103125,0.67813903,0.60124993,-0.42264175,0.6733571,0.602764,-0.42809546,0.6699814,0.6074861,-0.4267146,0.6836295,0.61092603,-0.3992744,0.6901073,0.6053407,-0.39662892,0.69133633,0.6169661,-0.37604114,0.6837148,0.6323911,-0.36416414,0.6725747,0.63689786,-0.37683472,0.6478795,0.65397006,-0.39060897,0.6560611,0.6385697,-0.40225932,0.63945633,0.6406569,-0.4250345,0.61447525,0.6539313,-0.4413547,0.60439813,0.66028136,-0.44579315,0.6017822,0.66256195,-0.44594824,0.5962944,0.66628593,-0.44776782,0.59119374,0.6621118,-0.46054095,0.5868975,0.665231,-0.46153992,0.577228,0.6700224,-0.46677378,0.5701095,0.6747648,-0.46868712,0.55980617,0.6816686,-0.4711104,0.5594693,0.6779742,-0.47680718,0.54587877,0.688425,-0.47758493,0.5179475,0.70786077,-0.48027435,0.5132859,0.71106255,-0.4805493,0.5048805,0.7178688,-0.47933286,0.50093955,0.7210319,-0.47871962,0.49156964,0.729663,-0.4753432,0.49007398,0.7310932,-0.47468957,0.48642632,0.7349406,-0.4724953,0.4838385,0.73644537,-0.4728091,0.47718483,0.74167466,-0.4713951,0.48470917,0.7442785,-0.45946336,0.49505362,0.74043524,-0.4546181,0.5020176,0.7394022,-0.44862306,0.5070115,0.7396035,-0.44263527,0.5068533,0.74336946,-0.43646494,0.5026488,0.75798255,-0.41570026,0.5052768,0.7588402,-0.41092205,0.50637674,0.7599951,-0.40741876,0.51170856,0.76381636,-0.39336878,0.5102784,0.7657644,-0.39143428,0.50644046,0.7711082,-0.3858888,0.50071645,0.78000873,-0.37532577,0.4983311,0.78332806,-0.3715687,0.49565578,0.7872131,-0.36690727,0.49248475,0.7912902,-0.36237895,0.4916263,0.79276675,-0.36031163,0.4913901,0.7941319,-0.35761753,0.493872,0.80238736,-0.33505955,0.4953599,0.80413353,-0.3286151,0.4991269,0.803833,-0.3236121,0.502089,0.80341,-0.32006094,0.5072298,0.8026467,-0.31380916,0.51934433,0.7982999,-0.30495694,0.523761,0.79470074,-0.3067982,0.52670133,0.79021347,-0.31328633,0.54512763,0.77832764,-0.31151563,0.55032504,0.77471554,-0.3113812,0.5551299,0.7714489,-0.31096217,0.5612346,0.7661945,-0.31298834,0.5762661,0.7625889,-0.29389703,0.5996031,0.7415603,-0.30093923,0.5922114,0.74300337,-0.31181988,0.59067464,0.73313665,-0.33706692,0.59247667,0.7302408,-0.340176,0.5995671,0.72703826,-0.33456647,0.6084076,0.72582704,-0.32095993,0.6125908,0.7240672,-0.31695303,0.6415725,0.70960253,-0.29128858,0.6464691,0.7063977,-0.288236,0.66275835,0.70177794,-0.26126447,0.67353964,0.689154,-0.26722845,0.69445986,0.6757259,-0.24722469,0.70887035,0.67254215,-0.21257912,0.7219682,0.6641339,-0.19413412,0.72337496,0.66649306,-0.18032098,0.7232664,0.6767191,-0.13761145,0.7161267,0.6947331,-0.067144744,0.71496737,0.695974,-0.066647515,0.70593065,0.7079571,-0.021417603,0.70589197,0.7080504,-0.019524686,0.69116515,0.72261316,-0.010996757,0.67832464,0.7347389,-0.005874521,0.6748462,0.7379448,-0.0044836197,0.6729817,0.73965573,-0.0022436287,0.6690053,0.74317443,0.011120927,0.6608544,0.75014937,0.023397863,0.65662664,0.75377625,0.025745135,0.6542184,0.7557558,0.028836384,0.65438366,0.7555861,0.029524243,0.679073,0.73210937,0.053625923,0.6786842,0.73109907,0.069870956,0.6995094,0.70863026,0.09235655,0.70525736,0.6987464,0.1198567,0.72971517,0.67217815,0.12526895,0.73248297,0.66781795,0.1322418,0.73276204,0.66680557,0.13575773,0.7379794,0.65160006,0.1755098,0.7395645,0.64683264,0.18615037,0.7372563,0.64115405,0.21301323,0.7411901,0.6359295,0.21501367,0.7695915,0.602326,0.2119724,0.77044296,0.6019926,0.2098155,0.7758952,0.598455,0.19959529,0.87142175,0.4827951,0.086793475,0.8746532,0.47883996,0.07545883,0.879513,0.47155604,0.06396651,0.8801963,0.4707592,0.060334373,0.88069737,0.4709337,0.05092674,0.88194156,0.46898535,0.047242656,0.8835209,0.46675444,0.03912912,0.8832658,0.46778813,0.03187233,0.8852071,0.4650163,0.012971801,0.88203704,0.47112614,0.0071290843,0.88299614,0.46872717,-0.024750197,0.8729844,0.47166273,-0.1242274,0.8774803,0.46053946,-0.13390915,0.88391894,0.44749993,-0.13576135,0.8915716,0.4333127,-0.13168225,0.8942076,0.42918295,-0.12725838,0.9026984,0.40858006,-0.13489975,0.9065316,0.3977899,-0.1412927,0.9068825,0.39683256,-0.14173211,0.9133192,0.37441772,-0.16018584,0.9149966,0.36910835,-0.1629117,0.91527027,0.36651784,-0.16716772,0.90797067,0.37550086,-0.18597965,0.9054769,0.38115776,-0.18662861,0.9040052,0.3817029,-0.19255489,0.8973697,0.38694277,-0.2121389,0.8860054,0.39589998,-0.24136622,0.885857,0.39363486,-0.24557884,0.8865253,0.37985182,-0.26416945,0.88775134,0.37431493,-0.26792887,0.8786397,0.36797002,-0.3042865,0.8798521,0.35479224,-0.31620055,0.87743217,0.35301244,-0.3247999,0.85579145,0.37302575,-0.35843095,0.8501439,0.37727258,-0.36731568,0.84886515,0.37851214,-0.36899385,0.83811957,0.38679582,-0.38463563,0.8047824,0.41428527,-0.42507997,0.8019847,0.41670924,-0.42798817,0.7925092,0.42462298,-0.43774945,0.79149115,0.4259258,-0.43832517,0.7846664,0.43194818,-0.44465652,0.7842245,0.44028044,-0.43720135,0.7452029,0.48681337,-0.45572507,0.7421637,0.49218908,-0.4549099,0.7418653,0.50242615,-0.44407633,0.7466981,0.5036429,-0.43449482,0.74364275,0.50585073,-0.43716186,0.73375684,0.5285323,-0.4269127,0.72884846,0.53111833,-0.4320801,0.722248,0.5321866,-0.44174108,0.72273594,0.5396729,-0.43174744,0.6989069,0.58946276,-0.40504664,0.6962781,0.59100235,-0.40732422,0.69188887,0.5936054,-0.4110017,0.68921685,0.5966845,-0.41103253,0.6764466,0.60123837,-0.4253615,0.67345935,0.6021253,-0.4288329,0.6711618,0.60744894,-0.42490903,0.6837702,0.610459,-0.3997476,0.6466918,0.65475756,-0.39125735,0.6613346,0.62936676,-0.40808588,0.653228,0.63427335,-0.4135101,0.60963166,0.6563709,-0.44443956,0.5733971,0.6726323,-0.46774086,0.568632,0.6747648,-0.4704786,0.49128982,0.7299473,-0.47519594,0.49044916,0.73076755,-0.4748035,0.47673875,0.742855,-0.46998566,0.47650903,0.7434076,-0.4693445,0.49054712,0.74290067,-0.45548007,0.50799125,0.7395307,-0.44163254,0.5081315,0.7397406,-0.44111925,0.50128603,0.7531772,-0.42595348,0.51128215,0.7646227,-0.3923553,0.4891262,0.79913527,-0.34948307,0.5297984,0.78772104,-0.31433934,0.5701743,0.7625867,-0.3055533,0.59839284,0.7471759,-0.28923038,0.5989708,0.7416221,-0.3020443,0.6141061,0.7236309,-0.3150111,0.6398664,0.7109996,-0.29163423,0.6503743,0.7041817,-0.28485334,0.6528069,0.70476234,-0.2777647,0.65362644,0.7056669,-0.27350822,0.6957215,0.67502326,-0.24559155,0.72450686,0.6719257,-0.15364121,0.72291064,0.6762502,-0.14172448,0.7269518,0.67708415,-0.114447,0.71340734,0.6979082,-0.06304002,0.706364,0.70721704,-0.029899666,0.6724251,0.7401642,-0.0012113983,0.666739,0.74513334,0.015341888,0.65517014,0.7550751,0.024772093,0.68056923,0.7302723,0.059395965,0.68132555,0.7293354,0.062171787,0.6786566,0.7310025,0.07113793,0.67763096,0.7316041,0.07464395,0.69776773,0.7093503,0.09971114,0.69901836,0.70468074,0.12164837,0.7317137,0.669906,0.12578149,0.7377055,0.65705466,0.15514381,0.73553336,0.6491862,0.1937731,0.7353794,0.64883864,0.1955136,0.76716876,0.6080864,0.20416427,0.7685558,0.60494727,0.20823258,0.7699389,0.60231304,0.21074425,0.77353764,0.6006083,0.20226038,0.85485023,0.50493073,0.119481765,0.86383003,0.49325255,0.10246793,0.8681311,0.48816377,0.089691654,0.87491566,0.47857288,0.07409794,0.88000494,0.47123286,0.059421644,0.88326323,0.4677151,0.032993857,0.88114965,0.47280452,-0.0055824243,0.88229036,0.47057652,-0.011021921,0.8820869,0.47067878,-0.019602198,0.8709773,0.47715876,-0.117124386,0.8924084,0.43187746,-0.13072583,0.8956676,0.42671588,-0.1252723,0.9029833,0.4086338,-0.13281418,0.9046513,0.40255246,-0.1398485,0.9050234,0.38207552,-0.18695165,0.904588,0.38260698,-0.18796958,0.8972378,0.38702917,-0.21253885,0.89605653,0.38722646,-0.21711354,0.8856969,0.39627007,-0.24189043,0.8857285,0.39450896,-0.24463794,0.8843817,0.39025018,-0.25607374,0.88677,0.3785105,-0.26527122,0.8851322,0.36901727,-0.2834911,0.8793999,0.3730043,-0.295844,0.8755362,0.36959392,-0.31118605,0.88065827,0.34935948,-0.31998277,0.857361,0.37430465,-0.35331026,0.78886056,0.42916065,-0.4399092,0.78320897,0.43765476,-0.44163567,0.7723734,0.45057628,-0.4476834,0.7713333,0.4522188,-0.44782034,0.75337195,0.4744978,-0.455283,0.6895473,0.59632605,-0.4109985,0.69424003,0.6086796,-0.3841093,0.5958475,0.665778,-0.4491163,0.5705519,0.67480755,-0.46808684,0.55950135,0.67815775,-0.4765085,0.5344265,0.7057339,-0.46511075,0.5111047,0.7131871,-0.47972497,0.48686472,0.734426,-0.4728437,0.50221413,0.75346756,-0.42434376,0.5094948,0.76107746,-0.40146756,0.50261545,0.77699095,-0.37902874,0.4911631,0.79452276,-0.35706076,0.5006703,0.80352974,-0.32197684,0.5564098,0.77000016,-0.31226256,0.5739426,0.76055866,-0.3035464,0.6018703,0.74148655,-0.29656342,0.60903096,0.72559255,-0.3203073,0.6135149,0.7235968,-0.31623903,0.62486714,0.71746707,-0.30786702,0.722512,0.6760776,-0.1445527,0.72510594,0.67725414,-0.124692656,0.7264403,0.6764674,-0.12114574,0.71575946,0.6951523,-0.06672135,0.6979768,0.71606815,-0.0086455885,0.67136633,0.74112105,0.0025998591,0.66114366,0.74989235,0.023464449,0.675733,0.73536867,0.0511665,0.6812453,0.72948414,0.06130049,0.69816226,0.7090889,0.0988048,0.7008361,0.7035764,0.117511876,0.7205012,0.68351513,0.11698304,0.7388989,0.6468671,0.18865682,0.735643,0.64738816,0.19929363,0.74090374,0.6365266,0.21423264,0.7466389,0.6288951,0.2168441,0.7717472,0.601636,0.20601097,0.77639514,0.59821254,0.19837427,0.7878836,0.5860644,0.18912426,0.8787209,0.47286838,0.065154165,0.8809245,0.47322655,-0.0053542634,0.88216126,0.47056895,-0.018877257,0.8716839,0.4749561,-0.12076387,0.8947808,0.42813048,-0.12677366,0.8953157,0.42723987,-0.1259996,0.8990041,0.42055878,-0.12215556,0.9135991,0.3621258,-0.18493672,0.895305,0.38536426,-0.22343534,0.88300526,0.38925818,-0.26225895,0.8799637,0.3730629,-0.29408827,0.863484,0.3690205,-0.3438301,0.8050084,0.41362038,-0.4252995,0.7883687,0.42972016,-0.44024473,0.78390634,0.43756664,-0.44048405,0.7202554,0.55491567,-0.4162941,0.69670504,0.5909742,-0.40663436,0.67717564,0.60140723,-0.4239604,0.695767,0.6064208,-0.38491836,0.68517137,0.63191104,-0.3622549,0.5842182,0.6692813,-0.45907685,0.55817956,0.6791736,-0.4766118,0.48978728,0.79748625,-0.3523126,0.55704343,0.76916486,-0.31319016,0.57426405,0.76055926,-0.30293643,0.7096256,0.66948265,-0.21960089,0.7285456,0.6774447,-0.10143963,0.66921043,0.7430011,0.010330281,0.6780784,0.7313281,0.07327237,0.74054927,0.63713497,0.21364877,0.7772334,0.597554,0.19707209,0.853462,0.5058456,0.12539074,0.88056254,0.47105843,0.052092113,0.88224965,0.47068182,-0.009702474,0.8761195,0.4641809,-0.13019508,0.8895854,0.4362297,-0.13543059,0.90763056,0.39184317,-0.15055135,0.9136435,0.37604892,-0.15441109,0.9047471,0.38246688,-0.18748797,0.89458233,0.38674787,-0.22393866,0.8939193,0.38751793,-0.22525139,0.88562936,0.39566833,-0.24311984,0.88655293,0.37927237,-0.26490843,0.87674195,0.35746557,-0.32177937,0.7444406,0.48775548,-0.45596355,0.69846576,0.5899053,-0.40516323,0.697532,0.59064,-0.4057012,0.6918849,0.6039744,-0.39561382,0.6711956,0.63825226,-0.37700203,0.596001,0.66613525,-0.44838214,0.5862761,0.6678129,-0.4585916,0.5853599,0.66896844,-0.4580776,0.57121116,0.6744773,-0.46775866,0.5592156,0.67850655,-0.47634727,0.511057,0.761183,-0.3992758,0.49220243,0.79999614,-0.34313694,0.61304975,0.7237145,-0.3168713,0.64044565,0.7104523,-0.29169655,0.7093292,0.66959655,-0.22021022,0.7130729,0.69845676,-0.06070585,0.69967574,0.71441364,-0.008190721,0.6589562,0.7512315,0.03778786,0.6610454,0.74928653,0.039859086,0.6960241,0.71232337,0.09025418,0.73900205,0.63896316,0.21354629,0.7679167,0.60717744,0.20405778,0.8673637,0.48907024,0.09214426,0.8747867,0.47873226,0.07459013,0.8760777,0.46403295,-0.13100088,0.91326374,0.37541083,-0.1581649,0.9131476,0.37506008,-0.15966009,0.90070474,0.38643432,-0.19849308,0.8887979,0.392921,-0.2359054,0.8847025,0.39033797,-0.25482878,0.8276403,0.39395756,-0.39976126,0.74599093,0.5042797,-0.43497068,0.69393235,0.61818063,-0.3692026,0.66985995,0.63947237,-0.3773099,0.60056674,0.6638523,-0.4456678,0.5729125,0.67317635,-0.46755195,0.55872756,0.6788702,-0.47640184,0.50848204,0.7973777,-0.32501513,0.5586041,0.76777977,-0.31380832,0.6034749,0.74068207,-0.2953103,0.67051095,0.6910265,-0.26999512,0.70957476,0.66946423,-0.21982108,0.70979726,0.7032696,-0.039996963,0.6714165,0.74107754,0.0019763815,0.6597264,0.7505212,0.03845816,0.74028647,0.6479842,0.17914352,0.74027824,0.6375113,0.21346535,0.7785715,0.5962351,0.19578095,0.8677186,0.48867995,0.09086443,0.880655,0.47374597,-0.0033938168,0.87624925,0.46327785,-0.13251719,0.90415686,0.40777954,-0.12734286,0.9076632,0.39147383,-0.15131344,0.9078571,0.39080483,-0.15187861,0.91177136,0.3703365,-0.17754978,0.9113942,0.37049407,-0.17915048,0.9004363,0.38672587,-0.19914211,0.83004236,0.396941,-0.39174926,0.76092833,0.4688266,-0.4485417,0.695961,0.6056704,-0.38574812,0.5722176,0.6737591,-0.46756357,0.5050651,0.72314227,-0.47114176,0.50165564,0.77959365,-0.37493378,0.5230396,0.794574,-0.30835328,0.50809485,0.79731476,-0.32577425,0.61102027,0.7220728,-0.32444587,0.726163,0.6712002,-0.1489212,0.71608686,0.69643277,-0.0469152,0.70054823,0.71355915,-0.008092272,0.69955474,0.70865375,0.09183127,0.76820123,0.6065996,0.20470402,0.84602845,0.5134674,0.14348218,0.88045895,0.47411966,-0.0016057014,0.91145986,0.37065238,-0.17848739,0.8242244,0.40355974,-0.39723244,0.7842568,0.43797585,-0.4394524,0.7594508,0.471547,-0.44819403,0.6942992,0.6199388,-0.36554682,0.6661468,0.643406,-0.3771965,0.62387943,0.65105104,-0.43232733,0.5858217,0.66850275,-0.45816705,0.5053987,0.7230122,-0.4709836,0.5100319,0.7505606,-0.42015022,0.5025779,0.7826476,-0.3672576,0.5228884,0.7940609,-0.3099274,0.5079937,0.7970598,-0.32655495,0.5824921,0.75358015,-0.3046636,0.6253638,0.71686184,-0.3082681,0.61126447,0.7217723,-0.3246544,0.72996414,0.67530835,-0.10540893,0.72902757,0.6721838,-0.12918095,0.7273014,0.6690473,-0.15299757,0.71868294,0.6935482,-0.049856447,0.6861166,0.72748685,-0.0026341372,0.687862,0.7222903,0.07171225,0.777924,0.5969211,0.19626388,0.8429692,0.51781267,0.1458524,0.8745903,0.479634,0.07101451,0.87634075,0.46287003,-0.13333482,0.88284975,0.38871017,-0.263592,0.8596889,0.37662965,-0.34508732,0.8246542,0.40335688,-0.39654595,0.8433921,0.39237073,-0.3670626,0.7618146,0.47736022,-0.4379107,0.7262441,0.5496406,-0.41287374,0.6230723,0.65155154,-0.43273714,0.5611004,0.68197465,-0.46912357,0.51044965,0.720497,-0.46938807,0.5117841,0.7617884,-0.39718443,0.5104399,0.7508691,-0.4191023,0.50281775,0.7822584,-0.36775827,0.50829816,0.79667467,-0.32702067,0.5818841,0.75388426,-0.30507284,0.56000066,0.7667889,-0.31374198,0.62623036,0.7161723,-0.30811167,0.61170125,0.72143006,-0.32459235,0.6700064,0.69154376,-0.2699234,0.71882796,0.69338214,-0.05007514,0.68500423,0.728537,0.0017367763,0.6966608,0.7117124,0.09016169,0.68818337,0.7219893,0.07165984,0.7462962,0.63615906,0.19581501,0.8541415,0.50546765,0.122248575,0.8433506,0.51762533,0.14430442,0.8685234,0.48808646,0.08624769,0.8747508,0.47959507,0.06927951,0.86188745,0.49653193,0.102985464,0.8788959,0.4763369,-0.025402088,0.9033981,0.4085,-0.13038284,0.9070512,0.38974327,-0.15924267,0.8946447,0.3900199,-0.2179341,0.86112654,0.37947696,-0.33831692,0.79977363,0.4284125,-0.42050552,0.8148319,0.4164702,-0.40323886,0.82937825,0.40445557,-0.38541842,0.7659112,0.47226682,-0.4362844,0.73265415,0.53722405,-0.41786143,0.72511756,0.5537063,-0.40940675,0.7398484,0.5205341,-0.42622605,0.62076795,0.6577592,-0.42661464,0.5788114,0.67416835,-0.45877492,0.5213679,0.7228484,-0.4535037,0.51056635,0.7511539,-0.4184374,0.5193011,0.7787657,-0.35192382,0.52183026,0.7860797,-0.33131832,0.51592946,0.77134424,-0.37261894,0.58106744,0.75427777,-0.30565605,0.6122425,0.72111195,-0.3242787,0.6513552,0.7022194,-0.28744432,0.7186938,0.6936437,-0.048350196,0.6853262,0.7282346,0.0015424985,0.69765425,0.71071494,0.09034827,0.6886897,0.72149825,0.07174103,0.709997,0.6964582,0.104164466,0.7453729,0.64101696,0.1830751,0.7722157,0.6014419,0.20481831,0.84165114,0.52148235,0.14028376,0.87630296,0.479484,0.046779495,0.8699147,0.4880129,0.07135726,0.86275893,0.4964954,0.09560001,0.8788847,0.47640702,-0.024454292,0.8803848,0.47426,0.00029109296,0.9038354,0.39541313,-0.16349335,0.8933342,0.39150324,-0.22063361,0.879561,0.3791722,-0.28740358,0.8603473,0.38063177,-0.33900142,0.7724479,0.47649148,-0.41985717,0.77853316,0.45848107,-0.4285805,0.7596912,0.4901266,-0.42737004,0.79720616,0.44887772,-0.4036968,0.7849567,0.46274078,-0.41196355,0.80918527,0.43490574,-0.3950649,0.8208829,0.4208284,-0.38607603,0.83228856,0.40664893,-0.37673897,0.71661663,0.5714131,-0.39993456,0.7246742,0.55480003,-0.4087104,0.7323751,0.5379628,-0.41740006,0.73971695,0.5209081,-0.42599717,0.62057513,0.65872055,-0.4254101,0.5797127,0.673806,-0.4581688,0.5217831,0.72257984,-0.45345417,0.5352573,0.705183,-0.4649909,0.5195399,0.77805203,-0.3531477,0.51602376,0.7709823,-0.37323675,0.5219752,0.7857283,-0.3319231,0.5162101,0.77025783,-0.37447307,0.6147235,0.7197292,-0.322653,0.65160936,0.70196456,-0.2874908,0.7117546,0.70186913,-0.028018411,0.71840084,0.6941337,-0.045592573,0.7245254,0.68631727,-0.06349474,0.6811137,0.73200923,0.01570515,0.6985645,0.70976704,0.09076523,0.68915755,0.7210319,0.07193643,0.7098511,0.6966456,0.10390578,0.69924754,0.7090222,0.09132547,0.7433457,0.64740306,0.16824518,0.7478911,0.63611764,0.1897715,0.73803127,0.65854836,0.14705099,0.84076095,0.5229856,0.14002557,0.8767329,0.4796455,0.03577229,0.8704217,0.48812,0.06407037,0.87646157,0.47953784,0.04311098,0.8631211,0.49654868,0.091985844,0.87871414,0.4767037,-0.024798011,0.8709581,0.47742012,-0.11619849,0.9037015,0.39560768,-0.16376263,0.8796598,0.37944743,-0.28673732,0.8599816,0.3810112,-0.33950272,0.75120324,0.5286183,-0.39529282,0.74927795,0.5161854,-0.4148918,0.7341239,0.55019635,-0.39792728,0.7678307,0.506693,-0.3920435,0.76573294,0.49406907,-0.41176316,0.7586508,0.5114471,-0.40357274,0.783983,0.4844349,-0.38819268,0.799637,0.46185878,-0.38375396,0.7907812,0.46675062,-0.39599118,0.8147708,0.43897933,-0.37874222,0.8293628,0.41581157,-0.3731729,0.6203465,0.66059685,-0.42282617,0.57983685,0.6737525,-0.45809042,0.5218595,0.72268766,-0.4531944,0.52004045,0.7671815,-0.37548688,0.5228208,0.7804035,-0.34297058,0.5151518,0.7536253,-0.40824935,0.5741961,0.7557611,-0.31483966,0.63474876,0.7090628,-0.30712193,0.6529361,0.70010054,-0.28902194,0.6159947,0.717912,-0.3242728,0.6829149,0.73035085,0.014656717,0.69395226,0.72001785,0.0021332202,0.6895125,0.7206657,0.07220456,0.7101002,0.69637865,0.103992924,0.7489578,0.6355138,0.18757498,0.74860305,0.6357151,0.18830764,0.7531482,0.62387955,0.20866738,0.7440209,0.6470055,0.16678369,0.7383511,0.658352,0.1463223,0.8405027,0.5234,0.14002757,0.8759223,0.4813546,0.032524105,0.86994225,0.48925352,0.061898507,0.8764643,0.48021546,0.03468886,0.8629118,0.49711242,0.090897635,0.8755004,0.481934,-0.035195198,0.8930941,0.42818284,-0.13799411,0.90169114,0.39772537,-0.16960992,0.864789,0.39081502,-0.31528336,0.8544832,0.39159298,-0.34134063,0.87429947,0.3900368,-0.28891474,0.7326114,0.5522725,-0.39783862,0.7499427,0.5304276,-0.3952626,0.73347616,0.55108654,-0.39788985,0.7507834,0.52922165,-0.3952831,0.7668116,0.50822455,-0.39205575,0.7831938,0.48567837,-0.38823172,0.7672195,0.50761217,-0.39205113,0.73390806,0.5504932,-0.3979149,0.7990657,0.4628044,-0.3838047,0.8144042,0.439618,-0.37878996,0.7994467,0.46217403,-0.38377097,0.82918686,0.41613483,-0.37320358,0.7674234,0.50730586,-0.3920487,0.69429785,0.6035525,-0.3920138,0.62312174,0.66011846,-0.41947934,0.5669523,0.6855699,-0.45668265,0.53536063,0.7509066,-0.38668886,0.5224594,0.7453497,-0.41411346,0.53090686,0.7725262,-0.3483406,0.5275775,0.7830148,-0.32946897,0.533504,0.76182246,-0.36742353,0.53682524,0.72845054,-0.4256507,0.5364698,0.73978156,-0.40610766,0.5364223,0.7169166,-0.44528833,0.55991554,0.76605535,-0.31567982,0.66648006,0.69128305,-0.27916315,0.6440351,0.7032687,-0.30105132,0.6574761,0.697173,-0.28578818,0.62075293,0.7150577,-0.32149398,0.69150716,0.7220666,0.020922761,0.71099675,0.6959766,0.10049994,0.7009129,0.7082318,0.084431924,0.6902661,0.72027725,0.06880034,0.7439877,0.64707893,0.16664715,0.7383321,0.6583883,0.14625514,0.7489436,0.635551,0.1875056,0.73829406,0.6584608,0.14612083,0.73187786,0.66969407,0.12595487,0.8396265,0.5247917,0.140075,0.8805244,0.47399813,0.001569845,0.87571794,0.4817887,0.031587217,0.8698246,0.4895415,0.06127248,0.8758543,0.4814993,0.032211795,0.8628623,0.49725568,0.09058417,0.87559736,0.48180366,-0.03456221,0.8926609,0.42908755,-0.13798709,0.88301355,0.44929,-0.13574082,0.890835,0.3993765,-0.21659075,0.89524126,0.40247837,-0.19119146,0.8989146,0.40557548,-0.16571394,0.86680883,0.3943214,-0.30521,0.8751738,0.39179128,-0.28384924,0.85565996,0.39334628,-0.33634013,0.87682515,0.39529595,-0.2737131,0.71517617,0.5788816,-0.39168754,0.73548555,0.55366904,-0.39052722,0.74518293,0.5382207,-0.393727,0.75518924,0.5279383,-0.38854906,0.7742509,0.5017134,-0.38577092,0.75988394,0.5200859,-0.38998345,0.73016375,0.55610967,-0.3969924,0.7926355,0.47501904,-0.3822118,0.810309,0.44788015,-0.37789243,0.79693854,0.4668859,-0.38328397,0.8272385,0.42032212,-0.3728348,0.59231347,0.6803731,-0.43157542,0.5640675,0.69288063,-0.44915962,0.6198897,0.6676641,-0.4122638,0.5342197,0.7610074,-0.36807197,0.53313154,0.77012575,-0.35025284,0.534577,0.7605995,-0.36839634,0.53239113,0.77092713,-0.3496156,0.53026545,0.7802703,-0.33165774,0.5298822,0.78066325,-0.3313453,0.535291,0.7597827,-0.36904445,0.5367362,0.7492436,-0.38800552,0.5374604,0.7385113,-0.40710852,0.5371305,0.73893505,-0.406775,0.5374581,0.72758853,-0.42632574,0.5367249,0.71647817,-0.44562924,0.52911514,0.7814483,-0.33071998,0.55920607,0.76580334,-0.31754348,0.6928455,0.72080606,0.020093111,0.7071488,0.70695245,-0.012603094,0.71960276,0.6928222,-0.046575513,0.7251074,0.685655,-0.06400428,0.7007174,0.7084613,0.084129654,0.69016296,0.72039,0.06865338,0.7109044,0.69609326,0.10034479,0.6899567,0.72061545,0.06835968,0.75023335,0.6346411,0.18542007,0.7498042,0.63494444,0.18611602,0.75492764,0.62265134,0.20588738,0.74481785,0.64648,0.16525733,0.7386945,0.6581653,0.14542663,0.7556899,0.62197226,0.20514214,0.83315635,0.53483206,0.14073089,0.8438232,0.52022666,0.13163085,0.8221499,0.5492792,0.14953882,0.86949855,0.4934256,-0.022436514,0.86964375,0.49149957,-0.04634611,0.8686927,0.49534926,0.0014301785,0.86722845,0.49727046,0.02523573,0.8651086,0.49918923,0.048961777,0.86233634,0.5011054,0.07259009,0.8589155,0.50301933,0.09610271,0.89233744,0.42977795,-0.13793012,0.88000005,0.4005352,-0.25528717,0.8737659,0.39743057,-0.28032485,0.86351484,0.396457,-0.3117114,0.8539042,0.39441484,-0.33953592,0.87221587,0.39849707,-0.2836186,0.8868607,0.40257144,-0.22674727,0.89279264,0.4046057,-0.19802909,0.8895243,0.40044203,-0.21998361,0.89779145,0.40663785,-0.16916296,0.75543684,0.5279884,-0.38799924,0.736228,0.55381644,-0.38891608,0.7555604,0.5280134,-0.38772446,0.7359809,0.5537673,-0.38945326,0.716041,0.57905006,-0.38985416,0.7159177,0.579026,-0.39011636,0.6952826,0.60374075,-0.3899733,0.75580746,0.52806354,-0.38717446,0.77474415,0.50181556,-0.38464624,0.7930037,0.47509697,-0.3813503,0.792881,0.47507104,-0.38163748,0.8105527,0.44793302,-0.3773066,0.8273593,0.42034894,-0.3725364,0.7156709,0.5789779,-0.39064023,0.53557986,0.7594735,-0.36926165,0.5340248,0.76921535,-0.35089216,0.5357242,0.7593189,-0.36937025,0.53372717,0.769519,-0.35067913,0.5313385,0.7792286,-0.3323885,0.53118527,0.7793776,-0.33228415,0.52796274,0.7890469,-0.3141024,0.5360128,0.75900954,-0.36958736,0.5372954,0.74861366,-0.38844725,0.537866,0.7380304,-0.40744483,0.5377308,0.73819077,-0.40733272,0.53771925,0.72726244,-0.42655295,0.53685075,0.7163124,-0.4457441,0.5308788,0.7796753,-0.33207554,0.5582988,0.7664959,-0.31746888,0.6933179,0.7203405,0.020491133,0.69426084,0.7194086,0.021288892,0.70811075,0.7060022,-0.011835551,0.7200924,0.69233793,-0.04620673,0.72535425,0.6854106,-0.06382356,0.7196667,0.686073,0.106693916,0.7067872,0.7019081,0.088186115,0.6931021,0.71740365,0.07029502,0.75079715,0.6341381,0.18485793,0.7506093,0.63430583,0.18504535,0.7451884,0.64614904,0.16488057,0.73887724,0.65800196,0.14523736,0.7766384,0.6013974,0.18749414,0.83288795,0.5351956,0.14093739,0.82201165,0.549459,0.1496385,0.8436932,0.5204104,0.1317376,0.8217349,0.5498185,0.1498377,0.8649313,0.49939138,0.05002209,0.86499053,0.49932393,0.049668696,0.86703116,0.49754027,0.026657298,0.8621987,0.5012401,0.07329256,0.858837,0.5030865,0.09645148,0.86944,0.49356094,-0.021719493,0.8686535,0.49541688,0.0017873681,0.8696245,0.49156737,-0.04598642,0.8685747,0.4955519,0.0025014442,0.8619216,0.5015092,0.07469708,0.85867965,0.5032209,0.09714898,0.86481225,0.49952602,0.05072887,0.8583631,0.5034898,0.098543175,0.88822293,0.41521022,-0.19662291,0.8823613,0.41318664,-0.22520079,0.87103087,0.42173094,-0.25188953,0.8800664,0.4184733,-0.22441763,0.89548886,0.41194174,-0.16853389,0.8592517,0.40710348,-0.3097633,0.8700578,0.40382195,-0.28271413,0.8518305,0.39975002,-0.3385036,0.86565244,0.41443053,-0.28087938,0.87872076,0.43624955,-0.1937427,0.89079237,0.4225076,-0.16726124,0.8753866,0.4290041,-0.22283143,0.88681287,0.43663493,-0.15136981,0.88103575,0.4434668,-0.16466068,0.695895,0.6046154,-0.38751823,0.7165943,0.57983285,-0.38766807,0.736716,0.5545017,-0.38701093,0.7162789,0.57938564,-0.38891742,0.73639125,0.5540449,-0.38828105,0.75622463,0.528646,-0.38556156,0.7750856,0.5022901,-0.38333666,0.7560583,0.52841306,-0.38620675,0.7161204,0.57916194,-0.38954195,0.7932649,0.47545913,-0.38035417,0.8107301,0.44817835,-0.37663355,0.79309094,0.4752177,-0.38101822,0.8274493,0.42047346,-0.37219572,0.7559748,0.52829653,-0.3865292,0.5515812,0.73219854,-0.39955407,0.5640892,0.73709655,-0.3721452,0.5651611,0.7263125,-0.39123273,0.56551796,0.71534663,-0.41044924,0.590281,0.72536117,-0.3541462,0.57859266,0.7203727,-0.38248357,0.551068,0.71028334,-0.43797445,0.5598258,0.7581083,-0.33446503,0.5492304,0.7533806,-0.36161253,0.54406565,0.7738084,-0.32436565,0.5752338,0.74195606,-0.3443941,0.56230843,0.747696,-0.35321367,0.5927326,0.7032192,-0.39262053,0.61925846,0.69088346,-0.3730938,0.60650086,0.6856462,-0.40254948,0.59288436,0.69188267,-0.41205156,0.60495865,0.70833355,-0.36371493,0.5918629,0.7143796,-0.3733097,0.6331721,0.67302126,-0.38227662,0.61993444,0.6793588,-0.3926231,0.5790979,0.698068,-0.42112538,0.5651548,0.70420176,-0.42976737,0.5737032,0.75200945,-0.32457113,0.55858505,0.7646441,-0.32140654,0.54333496,0.7769915,-0.31791723,0.72341573,0.68816704,0.05563993,0.70921737,0.7039581,0.038127422,0.7084453,0.70293385,0.063160464,0.7239344,0.68921196,0.030097743,0.7310646,0.68120193,0.038839936,0.73825294,0.6741746,0.0217068,0.69411486,0.71840686,0.045784015,0.7219934,0.68712074,0.08118265,0.7284651,0.67908907,0.090424806,0.73682624,0.6720431,0.07379169,0.7347307,0.67097527,0.09981479,0.73800004,0.67310953,0.047744818,0.72226936,0.69129735,-0.020857388,0.72355133,0.69025534,0.0045879683,0.7300194,0.68330914,-0.012661799,0.736006,0.67630047,-0.030212542,0.7375872,0.67523825,-0.004289787,0.7335137,0.6773613,-0.056029215,0.709105,0.70498085,0.013118365,0.76129895,0.6240291,0.17610109,0.77157235,0.61381453,0.1670566,0.7657896,0.62608165,0.14692849,0.7816095,0.60349613,0.15773083,0.7492071,0.64815366,0.1363291,0.8520833,0.5164928,0.0847892,0.8552922,0.51452994,0.06110811,0.84825504,0.527433,0.047725722,0.85783774,0.51256424,0.0373137,0.86092365,0.50862503,-0.010539649,0.86419535,0.503093,0.0079915635,0.8655929,0.49912828,-0.0402484,0.8551374,0.5180604,0.018800072,0.84300387,0.5258759,0.11313249,0.8418714,0.53131986,0.094614044,0.8312941,0.5459859,0.10416081,0.8402992,0.53674185,0.07619352,0.8212661,0.5551639,0.13158593,0.8747121,0.4305358,-0.22252575,0.87493724,0.43002528,-0.22262765,0.8701606,0.42378062,-0.251457,0.878257,0.4372668,-0.19355208,0.8807971,0.4439735,-0.16457237,0.8588477,0.4081361,-0.30952466,0.86544275,0.41494516,-0.2807655,0.8516366,0.40026823,-0.3383793,0.86502284,0.41597375,-0.28053755,0.877326,0.43929976,-0.19317046,0.8803187,0.4449865,-0.16439568,0.874261,0.43155617,-0.22232176,0.8793586,0.44701084,-0.16404185,0.7166737,0.5807771,-0.38610455,0.73680234,0.55532855,-0.38565856,0.71662885,0.5802376,-0.38699794,0.73674506,0.5547774,-0.38656017,0.75631154,0.52934885,-0.38442498,0.7751667,0.50286305,-0.3824204,0.75627697,0.52906775,-0.38487974,0.71660584,0.5799678,-0.38744465,0.7933344,0.4758963,-0.37966195,0.8107821,0.44847435,-0.37616897,0.7932882,0.4756049,-0.38012344,0.8274781,0.42062366,-0.37196198,0.7562596,0.52892715,-0.385107,0.5752972,0.7476432,-0.33175716,0.55971307,0.7618014,-0.32615936,0.54393166,0.7756048,-0.3202741,0.7438029,0.66790485,-0.02569681,0.73750985,0.6731798,-0.05392707,0.74141353,0.6710457,-0.0019053172,0.7416366,0.66890603,0.050398074,0.73763895,0.6694062,0.088228226,0.74369377,0.6684056,0.012389882,0.74196136,0.66740376,-0.06376214,0.7381714,0.6669024,-0.101706274,0.7324408,0.66640073,-0.13942938,0.7657161,0.6261929,0.1468379,0.7491681,0.64820796,0.13628472,0.7815749,0.60355306,0.15768467,0.74909025,0.6483166,0.13619603,0.83587253,0.54295546,0.08072454,0.8373559,0.5408875,0.079220206,0.8426356,0.53576916,0.054005425,0.8282069,0.5501021,0.10705606,0.81965727,0.5572087,0.13296783,0.85844487,0.5128558,-0.007161272,0.85382223,0.52016336,0.020436808,0.8644402,0.50125885,-0.038505733,0.85116696,0.52435994,0.023694772,0.8219428,0.55829453,0.11277082,0.8164176,0.56128836,0.13571192,0.83288276,0.5470814,0.08371533,0.80985254,0.5694066,0.1411202,0.87328404,0.43378076,-0.2218315,0.87361026,0.43303958,-0.22199497,0.8689034,0.42675823,-0.25076726,0.8766525,0.440777,-0.19286285,0.8790111,0.4477465,-0.16389818,0.8582685,0.40963736,-0.30914772,0.8647214,0.4167216,-0.28035694,0.8513596,0.40102187,-0.33818382,0.8641167,0.41821638,-0.2799953,0.8752982,0.44372773,-0.19224662,0.8783142,0.44921675,-0.1636106,0.8726297,0.43526232,-0.22150417,0.87691313,0.45215362,-0.16303499,0.7155591,0.593566,-0.3683132,0.73613685,0.56653965,-0.37031806,0.71626884,0.58627605,-0.37846974,0.7366292,0.559077,-0.3805395,0.7559974,0.5388896,-0.37157223,0.77510697,0.51064616,-0.37208816,0.7561597,0.5350814,-0.37670994,0.71655095,0.58261305,-0.38355803,0.79343253,0.4818406,-0.37187952,0.8109423,0.45250458,-0.3709612,0.7933794,0.4778801,-0.37706727,0.82760537,0.42267033,-0.36934966,0.7562225,0.53317326,-0.3792807,0.575605,0.74712163,-0.33239764,0.5599261,0.76146233,-0.32658523,0.5753998,0.7474694,-0.33197063,0.544042,0.7754396,-0.32048655,0.7420825,0.666644,-0.069995515,0.74204797,0.66689736,-0.06791694,0.7443787,0.6668923,-0.033985786,0.7380447,0.66639566,-0.105862476,0.73227376,0.6661473,-0.14150254,0.74235827,0.6684005,0.046312965,0.74395245,0.6681527,0.010330959,0.73810667,0.66915363,0.086209126,0.73517656,0.6695299,0.10604293,0.7405013,0.6687771,0.06629429,0.7444523,0.6676467,0.006209111,0.7436758,0.6680237,0.026279777,0.7446869,0.6672696,-0.013884323,0.73771995,0.66538125,-0.11417967,0.7319218,0.66564006,-0.14564945,0.7421337,0.6661371,-0.074154496,0.74352765,0.66651475,-0.054080714,0.7401975,0.66575927,-0.0941924,0.73114645,0.66462475,-0.15394412,0.73470235,0.66500306,-0.13410175,0.72705436,0.6642462,-0.17369218,0.80976325,0.58261275,0.06961154,0.82537204,0.55904126,0.078954466,0.8187582,0.5712553,0.057465926,0.811411,0.5833442,0.036354713,0.8067515,0.58188087,0.102794245,0.82741094,0.5597874,0.045046445,0.80237895,0.58114856,0.13584682,0.8432625,0.5372886,-0.015143703,0.84365815,0.5365291,0.019427348,0.85696924,0.5136285,-0.04230179,0.8280575,0.56053317,0.011104069,0.8357135,0.5482113,0.032363504,0.7868419,0.6042705,0.12544663,0.7907801,0.6049876,0.093041874,0.7740449,0.62759566,0.08353588,0.7808093,0.61600065,0.1043074,0.7921274,0.59240806,0.14692503,0.7933846,0.6057042,0.06052512,0.80043435,0.5938576,0.081473425,0.7705311,0.6268946,0.11526085,0.7534628,0.6490018,0.10531165,0.75995487,0.63766724,0.12589325,0.8722507,0.43614915,-0.22125246,0.8723771,0.43585357,-0.22133633,0.86842006,0.42794594,-0.25041762,0.87503475,0.44431627,-0.1920864,0.8767762,0.45244652,-0.16295893,0.85804975,0.41023648,-0.30896065,0.86400163,0.41851467,-0.27990472,0.851256,0.4013227,-0.3380876,0.8637712,0.41911113,-0.27972347,0.8745068,0.44549277,-0.19176574,0.87650204,0.4530322,-0.16280659,0.87199754,0.43674013,-0.22108456,0.8759524,0.45420295,-0.16250229,0.6939238,0.621479,-0.36363956,0.71527135,0.59494835,-0.36663786,0.7359253,0.567753,-0.36887717,0.71543646,0.59415865,-0.36759508,0.7360669,0.5669442,-0.36983764,0.75585055,0.53992337,-0.37036818,0.7750132,0.5114904,-0.37112275,0.7559098,0.5395099,-0.37084964,0.71551836,0.59376353,-0.36807385,0.7933801,0.48248595,-0.37115422,0.81091905,0.4529425,-0.37047723,0.7934152,0.48205578,-0.37163767,0.8275996,0.42289287,-0.36910766,0.75593907,0.53930324,-0.3710905,0.57695407,0.7450977,-0.3345945,0.5608557,0.76014715,-0.32805067,0.5760559,0.74644774,-0.33312964,0.5445217,0.77479947,-0.32121944,0.79459614,0.6032834,-0.068308905,0.8084174,0.5808733,-0.095118284,0.79276747,0.6028794,-0.089756034,0.77649516,0.624436,-0.08446851,0.81178343,0.5816976,-0.051337413,0.81039625,0.58128554,-0.07324666,0.7903596,0.6024752,-0.11115416,0.80584794,0.580461,-0.11693641,0.8026893,0.5800485,-0.13868515,0.7611488,0.6459139,-0.058717128,0.7792889,0.6252269,-0.04242783,0.77817607,0.62483156,-0.06346277,0.762129,0.6463005,-0.038144156,0.7958447,0.6036873,-0.046828464,0.8255641,0.5588543,-0.07826693,0.84176046,0.53643405,-0.060645487,0.8400881,0.5360065,-0.08336041,0.8378026,0.53557885,-0.10602921,0.82709265,0.55927426,-0.055946022,0.8539571,0.5127591,-0.08851789,0.8557753,0.5131939,-0.06542662,0.82070017,0.558014,-0.12276672,0.8234329,0.5584342,-0.10054587,0.7516795,0.64436597,-0.14060749,0.7714324,0.6236445,-0.12633117,0.7680534,0.6232485,-0.1471573,0.7641118,0.6228524,-0.16789296,0.754877,0.6447532,-0.1202252,0.783812,0.60166645,-0.15374106,0.78737384,0.6020709,-0.13248783,0.74363476,0.643591,-0.18110201,0.7479313,0.6439786,-0.16090469,0.75752187,0.6451403,-0.09977266,0.7596129,0.6455272,-0.07926494,0.7742469,0.62404037,-0.105429776,0.7617353,0.6474592,0.023575714,0.77805835,0.6268067,0.04169705,0.7792173,0.626412,0.02069876,0.7798092,0.62601715,-0.0003316242,0.76049465,0.64784503,0.04409921,0.7961073,0.60489786,0.017656218,0.79503506,0.6053011,0.039113224,0.7625534,0.6466869,-0.017560955,0.762422,0.6470731,0.0030173662,0.75870097,0.64823085,0.064573005,0.75635624,0.64861643,0.08498211,0.77633363,0.62720126,0.06264787,0.8280179,0.55969405,-0.033599813,0.81278116,0.5825212,-0.00747045,0.8283394,0.56011367,-0.011244412,0.8125785,0.58210945,-0.02940664,0.8123918,0.5829328,0.01445536,0.84281874,0.53686136,-0.037901122,0.7965127,0.604091,-0.025330195,0.77983326,0.6256221,-0.021378968,0.7966001,0.6044945,-0.0038301721,0.8711357,0.4403483,-0.21729216,0.87142634,0.4391464,-0.21855555,0.86748,0.43277803,-0.24531952,0.8738287,0.4478874,-0.18926254,0.87556213,0.45539477,-0.1612652,0.8578046,0.41267592,-0.30638197,0.8635956,0.4203258,-0.27843994,0.85119003,0.40254807,-0.33679456,0.86323434,0.42275298,-0.27587393,0.8724324,0.4526672,-0.18426621,0.8747716,0.4577762,-0.15879418,0.8705444,0.44274986,-0.21476744,0.8731511,0.46252888,-0.15386406,0.69260985,0.6242225,-0.3614386,0.7141915,0.59741193,-0.3647321,0.7350607,0.56991625,-0.36726177,0.71480995,0.5960049,-0.36582094,0.735638,0.56847453,-0.3683387,0.7551821,0.54176694,-0.36903748,0.77452064,0.5129963,-0.37007093,0.7554501,0.5410298,-0.36956975,0.7151178,0.5953007,-0.3663654,0.79304296,0.48363742,-0.3703752,0.8107162,0.4537239,-0.36996457,0.7932679,0.48286983,-0.37089452,0.82750934,0.42329004,-0.3688548,0.75558394,0.5406611,-0.3698359,0.60708463,0.7116421,-0.35357302,0.6208301,0.69314444,-0.36622506,0.60568714,0.70943815,-0.36033404,0.634035,0.67417866,-0.37879112,0.5764,0.7440523,-0.33785984,0.7756727,0.6061551,-0.17580628,0.77845776,0.60466105,-0.16848907,0.7924012,0.5861487,-0.16890872,0.75842005,0.6257852,-0.18218651,0.74066466,0.6450266,-0.1880333,0.83358455,0.53874564,-0.12202408,0.81843054,0.5595708,-0.13058315,0.8520972,0.51436985,-0.09671606,0.8608015,0.5020221,-0.08363345,0.843022,0.52661186,-0.10951663,0.8136602,0.56267846,-0.14611615,0.8237942,0.5507687,-0.13422747,0.74621063,0.63162434,-0.2102864,0.734524,0.6478911,-0.20177115,0.7698891,0.60913694,-0.19032325,0.7214565,0.65359247,-0.22873,0.87036306,0.4435005,-0.21395215,0.8704236,0.44325033,-0.21422388,0.86728686,0.4337842,-0.24422278,0.87228745,0.45316482,-0.1837286,0.8730667,0.46277627,-0.15359874,0.85775787,0.41318426,-0.30582717,0.8631986,0.42300585,-0.2755978,0.85117924,0.40280354,-0.3365164,0.8631267,0.42351165,-0.2750457,0.8719956,0.45415983,-0.18265375,0.8728975,0.46327108,-0.15306813,0.87024134,0.44400066,-0.21340878,0.8725572,0.46426016,-0.1520076,0.69199413,0.6251262,-0.3610558,0.71367466,0.5982236,-0.36441323,0.7346372,0.57062924,-0.36700198,0.71397007,0.59775984,-0.3645954,0.73491967,0.57015395,-0.36717507,0.75484586,0.54237473,-0.36883238,0.7742655,0.51349294,-0.36991593,0.75498044,0.54213166,-0.36891443,0.7141177,0.5975279,-0.36468664,0.79286224,0.48401728,-0.3702657,0.81060326,0.4539817,-0.36989596,0.79298276,0.483764,-0.37033877,0.8274567,0.42342106,-0.36882254,0.7550476,0.54201007,-0.3689555,0.6080987,0.71049196,-0.35414284,0.60776085,0.7108756,-0.35395288,0.6214869,0.6923581,-0.3665983,0.63435364,0.6737759,-0.3789743,0.76745224,0.6107847,-0.19483086,0.76826775,0.6102358,-0.19333093,0.7893729,0.5883928,-0.17516918,0.7444833,0.63269854,-0.21316004,0.72054553,0.6541169,-0.23009823,0.8323284,0.53991306,-0.12539329,0.8129694,0.5632513,-0.14774522,0.85153896,0.51496416,-0.09845442,0.86054045,0.50232184,-0.0845153,0.84213156,0.5274955,-0.11208461,0.81157684,0.56439626,-0.15099643,0.82213974,0.5522142,-0.13836788,0.80065066,0.57645667,-0.16326736,0.7409915,0.63484323,-0.21887358,0.71871483,0.65516496,-0.23282598,0.76581126,0.6118819,-0.19782253,0.7777556,0.6002021,-0.18669106,0.7535522,0.6234298,-0.20855325,0.71501875,0.6572571,-0.23824632,0.7281425,0.64611983,-0.2287743,0.8701858,0.4442509,-0.21311451,0.8702044,0.4441675,-0.21321253,0.86723024,0.4341197,-0.2438273,0.8719499,0.4543257,-0.1824596,0.8725301,0.46434262,-0.15191177,0.8577474,0.4133538,-0.3056274,0.86311704,0.423596,-0.27494627,0.8511784,0.40288886,-0.33641627,0.8630976,0.42376465,-0.2747473,0.8718581,0.45465744,-0.18207136,0.8724756,0.46450755,-0.15172002,0.8701486,0.44441772,-0.2129184,0.87236667,0.4648373,-0.15133649,0.64078784,0.6815139,-0.3534539,0.6440934,0.66824377,-0.3722821,0.6177499,0.7052217,-0.34791866,0.6632737,0.6570682,-0.35823095,0.75333107,0.61510026,-0.23268855,0.7375157,0.63152635,-0.23925962,0.72134334,0.6476738,-0.24532115,0.70483273,0.66353536,-0.25086188,0.77199167,0.60183066,-0.20452088,0.81757116,0.5539119,-0.15734985,0.80369514,0.5712784,-0.16647874,0.8450689,0.52211314,-0.11513657,0.85754305,0.5059322,-0.093019314,0.8317343,0.5381083,-0.13659261,0.80261314,0.56951845,-0.17737189,0.78689563,0.5849223,-0.196624,0.77045554,0.60011804,-0.21507333,0.7171895,0.6444027,-0.26530072,0.7027799,0.6619308,-0.26066843,0.735562,0.6298635,-0.24944021,0.6982556,0.6587125,-0.28024438,0.67880386,0.6727879,-0.29424766,0.6836779,0.67595226,-0.2750873,0.6588787,0.68662393,-0.30728883,0.66154754,0.68818015,-0.29793102,0.6385255,0.7002156,-0.3193483,0.61779034,0.7135581,-0.33040872,0.8700604,0.44525903,-0.21151683,0.8700901,0.4449786,-0.21198395,0.8671909,0.4352475,-0.2419495,0.87176055,0.45521498,-0.18114321,0.87229866,0.46511444,-0.15087634,0.85780776,0.41392404,-0.30468446,0.8631081,0.4240482,-0.2742764,0.85122883,0.40317535,-0.33594513,0.8631281,0.4246152,-0.27333465,0.8715613,0.45632976,-0.17928775,0.8721615,0.4656687,-0.1499563,0.86999995,0.44581953,-0.21058275,0.8718835,0.46677658,-0.14811757,0.64133346,0.68115115,-0.35316357,0.66354364,0.6568814,-0.35807356,0.618025,0.70504606,-0.34778604,0.66408324,0.6565077,-0.35775858,0.68623686,0.6311426,-0.3615771,0.6980692,0.6588211,-0.28045344,0.7166487,0.64473367,-0.26595706,0.69797593,0.65887535,-0.28055805,0.71682906,0.6446234,-0.2657384,0.7349545,0.6302558,-0.25023913,0.7350413,0.63019973,-0.25012508,0.7526651,0.61555535,-0.23363839,0.6977894,0.65898395,-0.280767,0.6784195,0.67300147,-0.29464567,0.6585825,0.6867813,-0.30757195,0.6586812,0.6867289,-0.30747762,0.6383232,0.7003187,-0.31952667,0.617687,0.7136087,-0.33049268,0.73521495,0.63008773,-0.24989685,0.8023995,0.5696964,-0.17776677,0.8024708,0.56963706,-0.17763524,0.8173037,0.5541522,-0.15789217,0.7867449,0.5850394,-0.1968791,0.7703762,0.60017574,-0.21519662,0.8449539,0.52223617,-0.11542234,0.8316721,0.5381691,-0.13673206,0.8574905,0.5059944,-0.09316555,0.83154744,0.53829074,-0.13701071,0.78644294,0.58527344,-0.19738902,0.77021736,0.6002912,-0.21544307,0.8022569,0.569815,-0.17802997,0.7698993,0.60052204,-0.21593572,0.65798956,0.68709606,-0.30813757,0.65818727,0.68699116,-0.30794916,0.6776497,0.6734284,-0.29544047,0.6379185,0.7005247,-0.3198831,0.61748046,0.7137098,-0.33066037,0.7162877,0.6449544,-0.26639408,0.69760275,0.65909255,-0.2809758,0.7347806,0.6303679,-0.25046715,0.6972293,0.6593096,-0.28139317,0.63710827,0.7009366,-0.3205946,0.61706704,0.71391195,-0.3309954,0.65759397,0.68730575,-0.30851415,0.6162397,0.7143161,-0.33166417,0.8694869,0.45122534,-0.20096807,0.8696732,0.44942528,-0.2041702,0.8670211,0.44249383,-0.22907129,0.8709642,0.45991388,-0.17291799,0.87145853,0.46855867,-0.1449579,0.8583034,0.41759115,-0.29821593,0.863246,0.42643964,-0.27010292,0.85162246,0.40501946,-0.33271378,0.8634352,0.4300834,-0.26364362,0.86958855,0.46705982,-0.16022111,0.8705638,0.47211698,-0.13865109,0.86906856,0.4548201,-0.19457272,0.8685958,0.4792107,-0.1260891,0.6433159,0.67934996,-0.35302734,0.66505516,0.65558034,-0.3576536,0.6190346,0.70417416,-0.347757,0.6669966,0.65372276,-0.35743824,0.69003403,0.6273228,-0.3609973,0.79897714,0.57090175,-0.1889623,0.78487825,0.58575016,-0.20214576,0.799349,0.57078105,-0.18775041,0.8132878,0.5556198,-0.1727703,0.78408504,0.5859884,-0.20451958,0.7690605,0.6007571,-0.21825871,0.76863843,0.60087466,-0.21941897,0.8000871,0.57053965,-0.18532452,0.8146568,0.55513084,-0.16782132,0.82855844,0.5395291,-0.14966375,0.8412048,0.5239902,-0.13344942,0.8282489,0.5396528,-0.15092579,0.84176415,0.5237398,-0.13088062,0.8540005,0.5078952,-0.11280802,0.85424733,0.5077686,-0.11150182,0.8276239,0.5399003,-0.15344805,0.7824768,0.5864648,-0.20925836,0.76778895,0.6011096,-0.22173715,0.79822785,0.57114315,-0.19138397,0.7660688,0.6015794,-0.22636412,0.7490393,0.6164817,-0.24267341,0.69617945,0.65953064,-0.28346694,0.71326315,0.6456282,-0.27280018,0.6956522,0.65964115,-0.28450242,0.71427774,0.6454037,-0.27066845,0.73142487,0.6311664,-0.2581602,0.73190916,0.6310524,-0.25706384,0.69459295,0.65986204,-0.28657052,0.67545414,0.673863,-0.29945016,0.6558872,0.687626,-0.31142002,0.6564575,0.6875193,-0.31045255,0.63593364,0.70114625,-0.32246286,0.6156356,0.71441895,-0.33256328,0.732873,0.6308242,-0.25486848,0.83037525,0.5387861,-0.1420788,0.8297774,0.53903383,-0.14460957,0.8428592,0.5232388,-0.12573631,0.8547349,0.5075152,-0.10888816,0.80081785,0.57029814,-0.18289576,0.8556858,0.5070084,-0.10365477,0.8690579,0.45495448,-0.19430597,0.8690614,0.45490968,-0.19439489,0.86702335,0.44267428,-0.22871378,0.86957324,0.46714878,-0.16004467,0.8685841,0.47925487,-0.12600178,0.8583213,0.4176826,-0.2980365,0.8634399,0.4301288,-0.26355404,0.8516356,0.40506548,-0.33262414,0.8634494,0.43021965,-0.26337478,0.8695426,0.46732658,-0.15969203,0.8685607,0.47934318,-0.12582722,0.86905074,0.45504397,-0.19412827,0.86851376,0.47951967,-0.12547804,0.64434814,0.6783156,-0.3531338,0.6675004,0.6531896,-0.35747245,0.61956245,0.70367384,-0.3478297,0.6685072,0.6521223,-0.35753965,0.8059258,0.50805515,-0.30391386,0.8001544,0.4960837,-0.33712596,0.7937802,0.5167147,-0.32080984,0.7866447,0.53705,-0.3045774,0.8243195,0.47847268,-0.30259085,0.81245977,0.48730302,-0.32007018,0.78120816,0.5253218,-0.33726963,0.78741795,0.504814,-0.35374537,0.7905815,0.5486752,-0.2719125,0.81018096,0.5199293,-0.2707034,0.798631,0.5285165,-0.28785202,0.79302835,0.5601953,-0.23934758,0.8019779,0.5402169,-0.25494522,0.81763023,0.49934396,-0.28659454,0.8182285,0.46627194,-0.33629262,0.835399,0.43592075,-0.33478606,0.82322824,0.44497392,-0.35255283,0.8302437,0.4573276,-0.31866413,0.83978236,0.41426432,-0.3509283,0.8057631,0.4751687,-0.3534975,0.74083143,0.58194196,-0.33542863,0.7614226,0.5539522,-0.33670852,0.74821734,0.56231934,-0.35209057,0.74555254,0.5931432,-0.30386275,0.7538632,0.57371193,-0.32022637,0.76822495,0.5338754,-0.3532811,0.7194697,0.60925865,-0.33341748,0.7274298,0.59011286,-0.350161,0.7058978,0.6172238,-0.34748107,0.73269343,0.6012315,-0.3188746,0.76650906,0.5654236,-0.30456525,0.7701133,0.5767866,-0.27247536,0.7787536,0.5570777,-0.28845668,0.75803095,0.5849947,-0.2883926,0.78178406,0.56851983,-0.25612295,0.77423686,0.5455288,-0.32086688,0.8334361,0.51451594,-0.20163734,0.85173607,0.4850605,-0.1981464,0.84207106,0.4938539,-0.21685192,0.8319147,0.50259703,-0.23518953,0.83345765,0.5263362,-0.16828106,0.84296656,0.50584316,-0.1831124,0.84995615,0.47290915,-0.23223142,0.85975754,0.4640002,-0.213356,0.8129285,0.53170365,-0.23756792,0.81418014,0.54337627,-0.20458002,0.82341903,0.5231364,-0.21979396,0.8038317,0.5518139,-0.22216216,0.82405984,0.5348834,-0.1866149,0.8519976,0.49711892,-0.16423395,0.85075724,0.509082,-0.1305664,0.8605173,0.48834407,-0.1450173,0.8423609,0.5177355,-0.14959319,0.85863495,0.5003768,-0.11121622,0.86089724,0.4762178,-0.17908804,0.84179467,0.4483369,-0.30062556,0.84664536,0.46066716,-0.2664158,0.85286766,0.43930063,-0.28219095,0.8357193,0.4695938,-0.28470144,0.85708433,0.45169368,-0.24774835,0.8471012,0.42682335,-0.3166092,0.82887936,0.49058187,-0.2688651,0.82128024,0.5112891,-0.25314474,0.83965915,0.48177,-0.25073934,0.6201804,0.70310915,-0.34787026,0.61997443,0.70329744,-0.3478569,0.6447517,0.6779263,-0.3531447,0.66870433,0.65192145,-0.35753724,0.6606507,0.6758972,-0.32665533,0.68470985,0.6498287,-0.32999262,0.66492444,0.6639947,-0.34203294,0.6803263,0.66193086,-0.31464845,0.6886005,0.63755935,-0.345467,0.640588,0.6896249,-0.33773437,0.69957346,0.6477309,-0.30173105,0.71835166,0.6333022,-0.2879223,0.7229538,0.6208134,-0.30319732,0.73662096,0.6186499,-0.27324313,0.7080674,0.6229722,-0.33248478,0.7040665,0.6354332,-0.31704107,0.771479,0.58869547,-0.24136654,0.7879935,0.5734038,-0.22421959,0.80385065,0.55790967,-0.20630318,0.75994015,0.5968168,-0.25748914,0.74799603,0.6048774,-0.27317613,0.7413318,0.60597444,-0.2884825,0.87793285,0.3411599,-0.33592227,0.87797564,0.34188795,-0.33506915,0.87831557,0.34225628,-0.3338001,0.878439,0.34299532,-0.33271486,0.8783864,0.34426695,-0.3315382,0.8785373,0.34427816,-0.33112648,0.8790711,0.34362042,-0.330392,0.87926745,0.3432082,-0.3302982,0.87980837,0.34163254,-0.3304911,0.8803499,0.3429177,-0.3277066,0.88046193,0.3429913,-0.32732812,0.8807248,0.34231564,-0.32732844,0.88093764,0.34161964,-0.3274827,0.88085955,0.34265667,-0.32660812,0.8815048,0.34293923,-0.32456437,0.8817545,0.3429008,-0.323926,0.8825954,0.34190398,-0.32268724,0.88375586,0.341409,-0.32002416,0.88504934,0.34176382,-0.31604624,0.88549775,0.34153315,-0.31503782,0.88686466,0.34019604,-0.31263036,0.8873397,0.34045163,-0.311,0.88773996,0.34009504,-0.31024697,0.8882039,0.33944106,-0.3096347,0.88884336,0.33821988,-0.30913562,0.8886772,0.33803937,-0.3098099,0.8883475,0.3380995,-0.3106887,0.8893592,0.33666995,-0.3093439,0.8903204,0.33567476,-0.30765545,0.89190704,0.3334999,-0.30541727,0.89284897,0.33246014,-0.30379435,0.8938026,0.33114484,-0.30242342,0.8941375,0.33058193,-0.3020494,0.8944326,0.3299384,-0.30187902,0.8964405,0.32404482,-0.30230662,0.8966494,0.32336098,-0.30241954,0.89706737,0.32144344,-0.30322313,0.8980685,0.31788808,-0.30400676,0.8975142,0.31591576,-0.30767745,0.8971864,0.3151152,-0.3094495,0.8965762,0.31440905,-0.31192622,0.8956167,0.31367928,-0.31539813,0.89528215,0.3126376,-0.31737614,0.8948511,0.3127712,-0.31845832,0.8942344,0.31311598,-0.31984872,0.8940515,0.31331512,-0.32016492,0.8917204,0.3160145,-0.32399014,0.891453,0.31591827,-0.32481864,0.8910231,0.31643644,-0.32549316,0.89088285,0.3169013,-0.3254247,0.8908305,0.31739107,-0.32509065,0.88988125,0.31846005,-0.32664132,0.8888864,0.31988147,-0.32795852,0.8885905,0.32010916,-0.3285378,0.8883247,0.3201714,-0.3291953,0.8878147,0.3205855,-0.3301667,0.88725567,0.3214055,-0.33087146,0.886763,0.32247385,-0.33115262,0.8856876,0.32507655,-0.33148578,0.8847333,0.32719368,-0.33195063,0.8845577,0.32779762,-0.33182278,0.8843048,0.32840303,-0.3318982,0.8839366,0.3289825,-0.33230495,0.883264,0.3303695,-0.33271715,0.8807595,0.3347594,-0.33496085,0.88007593,0.33522275,-0.3362918,0.87910223,0.33636338,-0.3376965,0.87859637,0.33815807,-0.33722034,0.8780994,0.34010547,-0.33655575,0.8862559,0.34044927,-0.31407765,0.8958463,0.313986,-0.31443936,0.89327246,0.31479254,-0.3208895,0.8927088,0.31559396,-0.32166994,0.48875546,0.5499251,0.6772743,0.48874363,0.55070907,0.67664564,0.48837268,0.5500402,0.677457,0.48795375,0.5494985,0.67819804,0.48700503,0.5486587,0.67955846,0.48690844,0.5481563,0.68003297,0.486456,0.54860675,0.67999357,0.48601747,0.5483003,0.68055403,0.48430088,0.5458028,0.68377775,0.48321095,0.54598486,0.6844032,0.48188487,0.54586345,0.6854343,0.4821443,0.54415864,0.68660635,0.48205522,0.5420985,0.6882964,0.48219374,0.5389775,0.6906464,0.4822672,0.5238711,0.70212346,0.48222423,0.52376086,0.7022353,0.48302114,0.5231182,0.7021666,0.4831219,0.5228799,0.7022747,0.48180673,0.5204545,0.7049747,0.48214138,0.51941353,0.7055135,0.48130313,0.5181509,0.70701265,0.4834137,0.51496357,0.7079009,0.48821542,0.50764924,0.7098859,0.48867068,0.50672674,0.71023166,0.491543,0.50289094,0.71097547,0.49507505,0.4971573,0.71255547,0.49728,0.4933942,0.7136349,0.49813533,0.4920793,0.7139462,0.49861363,0.4932592,0.7127972,0.498091,0.49677798,0.71071583,0.49790883,0.4984411,0.7096783,0.49768624,0.49966565,0.70897293,0.4977702,0.5021402,0.7071634,0.4973887,0.50294924,0.7068568,0.49662232,0.5057977,0.70536155,0.49634388,0.50634825,0.7051625,0.49623188,0.5101449,0.70249987,0.49631867,0.5120765,0.7010317,0.49629128,0.5129452,0.70041573,0.49642587,0.5147729,0.698978,0.496328,0.5170177,0.6973889,0.49553835,0.51824266,0.6970411,0.49534485,0.51848245,0.6970003,0.49512732,0.51988965,0.69610614,0.49511614,0.5198977,0.69610804,0.4946413,0.5221904,0.6947281,0.49411413,0.52224416,0.6950628,0.48803887,0.52096295,0.7002968,0.48799983,0.5230427,0.6987722,0.48792133,0.52401996,0.69809437,0.48968753,0.5259834,0.6953758,0.49021548,0.52621394,0.6948292,0.49000746,0.52660435,0.69468015,0.48893353,0.52720416,0.6949819,0.48792446,0.5275184,0.69545245,0.4866995,0.52756757,0.69627297,0.48686454,0.5279404,0.69587487,0.48675543,0.5286351,0.6954236,0.48620796,0.52979493,0.6949238,0.4856111,0.5312079,0.6942622,0.48503152,0.53229916,0.6938314,0.48491773,0.53407276,0.69254684,0.48474532,0.53491545,0.69201696,0.4858909,0.5378062,0.6889663,0.48733586,0.53749,0.68819207,0.48806548,0.53740954,0.6877376,0.48843932,0.5371968,0.68763846,0.4888605,0.5365727,0.68782645,0.49010727,0.5358512,0.6875015,0.49094537,0.53576064,0.6869739,0.48993203,0.53906286,0.6851116,0.4913081,0.5406648,0.68286014,0.49190438,0.54075295,0.6823608,0.4919806,0.5420029,0.6813134,0.49177295,0.542822,0.680811,0.49194038,0.5438246,0.67988926,0.49134648,0.54448336,0.67979157,0.49065,0.5458777,0.67917603,0.49027812,0.5462192,0.67917,0.4900488,0.5465869,0.6790398,0.49006885,0.547033,0.67866594,0.48981702,0.54749185,0.6784777,0.48952585,0.5476884,0.67852914,0.48915818,0.5483825,0.6782337,0.48878464,0.5488928,0.67809016,0.48863232,0.5495202,0.67769164,0.4862765,0.5463867,0.68190664,0.4855428,0.5457463,0.68294156,0.48299956,0.53282213,0.6948467,0.4830618,0.5283747,0.6981916,0.48742378,0.50898564,0.7094728,0.49353546,0.49972832,0.71182466,0.4885676,0.5250743,0.6968491,0.4871833,0.5272049,0.69620925,0.49009523,0.5399771,0.68427444,0.48515546,0.51246005,0.70852584,0.49282724,0.52134925,0.69664645,0.49622953,0.50789803,0.7041277,0.4909871,0.52050614,0.6985736,0.4899729,0.5397704,0.68452495,0.48870417,0.5202842,0.70033747,0.48986262,0.5393715,0.6849183,0.486883,0.5273019,0.6963459,0.4882824,0.52053523,0.7004451,0.48474634,0.5367173,0.6906196,0.48164114,0.52225727,0.7037536,0.48013896,0.5198563,0.70655227,0.4804706,0.51940405,0.7066594,0.4920479,0.53343576,0.6879935,0.49438155,0.5234261,0.6939827,0.4942086,0.5250611,0.69286996,0.49443159,0.52644426,0.6916602,0.492924,0.5296958,0.69025236,0.49232826,0.53144336,0.6893336,0.48541433,0.5682547,0.66442424,0.48338154,0.5682631,0.66589737,0.48387685,0.56708795,0.66653913,0.4835328,0.5663099,0.6674497,0.48249078,0.5655055,0.6688843,0.4817481,0.56277955,0.6717127,0.4825579,0.5596584,0.6737361,0.482233,0.5574515,0.6757952,0.48227242,0.5519874,0.6802376,0.48188564,0.55037326,0.6818178,0.48205474,0.5484243,0.6832671,0.48202172,0.546979,0.68444794,0.4889887,0.5509431,0.6762779,0.489337,0.55143297,0.6756264,0.4895683,0.55244,0.6746354,0.49005353,0.55284625,0.67394996,0.4900691,0.55317426,0.67366946,0.48990393,0.5533617,0.6736356,0.4891146,0.5537272,0.67390877,0.4915551,0.55681175,0.66957766,0.49236515,0.55668783,0.66908526,0.49248698,0.5568662,0.66884714,0.4923699,0.5570949,0.668743,0.49120417,0.5576609,0.66912836,0.49194363,0.559914,0.6666992,0.49230638,0.56001496,0.6663465,0.4927575,0.56113493,0.66506964,0.4928275,0.5623899,0.6639568,0.49065718,0.5654331,0.6629788,0.48989385,0.5659194,0.6631284,0.4888079,0.5663367,0.6635734,0.48811996,0.56659794,0.6638567,0.48852825,0.567368,0.66289794,0.48876697,0.5680373,0.66214836,0.48793766,0.5686754,0.6622123,0.48680237,0.56897396,0.6627911,0.48669305,0.5683157,0.6634359,0.48927906,0.5519412,0.6752532,0.4905504,0.5568691,0.67026645,0.49137542,0.55935675,0.6675853,0.48851752,0.5543735,0.67381054,0.4899701,0.5568684,0.6706913,0.49101496,0.5585943,0.6684884,0.48824218,0.5664006,0.6639352,0.4893407,0.55675364,0.6712458,0.49097365,0.5581114,0.66892195,0.48845527,0.5553151,0.67307997,0.48854777,0.55560845,0.6727706,0.4887533,0.5560626,0.672246,0.4756992,0.58651453,0.6555235,0.4748028,0.5866063,0.6560909,0.47459874,0.58565414,0.65708846,0.475389,0.5817196,0.6600058,0.4778738,0.5795756,0.6600975,0.47844613,0.5785773,0.6605586,0.47877184,0.57785064,0.6609585,0.47950783,0.5767721,0.66136694,0.47985747,0.5744382,0.66314214,0.4804891,0.57284176,0.6640652,0.4811868,0.57145995,0.66475016,0.48874387,0.5507089,0.6766455,0.4932998,0.54044247,0.681599,0.49429423,0.53975105,0.6814264,0.4962544,0.53779685,0.6815468,0.49837315,0.5372277,0.68044883,0.49934816,0.5366735,0.68017125,0.50078136,0.53563386,0.679937,0.502194,0.53525674,0.67919177,0.506452,0.5346073,0.67653626,0.50880575,0.53679204,0.6730312,0.51077455,0.5386351,0.67006093,0.5129911,0.5407257,0.66667527,0.5144842,0.5421458,0.6643673,0.51701015,0.54456395,0.660417,0.5186806,0.5460905,0.6578417,0.5208586,0.5480979,0.65444255,0.5229854,0.55007577,0.6510782,0.5253378,0.5521409,0.6474262,0.527078,0.5536825,0.6446895,0.5294877,0.5558366,0.64084977,0.53178424,0.55790985,0.63713586,0.533946,0.5598822,0.6335879,0.5383766,0.56398773,0.62615365,0.5407037,0.5647736,0.62343425,0.54099405,0.5653853,0.62262744,0.5410187,0.56802046,0.6202028,0.5410288,0.57026905,0.61812705,0.540839,0.5707898,0.6178124,0.5393819,0.57396793,0.61613953,0.5370141,0.58142215,0.6111989,0.5369529,0.58269656,0.610038,0.53644276,0.5838899,0.6093453,0.53579587,0.5850986,0.6087548,0.53436756,0.58692306,0.60825366,0.53167623,0.5950283,0.60271204,0.5337696,0.595754,0.6001394,0.5350042,0.59618515,0.59860986,0.53593755,0.5981962,0.59576195,0.5364831,0.5993872,0.5940713,0.5371193,0.60127306,0.5915856,0.53757894,0.6026593,0.58975476,0.5374273,0.6031386,0.5894028,0.53733003,0.6033276,0.5892981,0.5359969,0.60501033,0.5887867,0.5352073,0.60566294,0.58883405,0.53495127,0.60574156,0.5889858,0.5343835,0.6059504,0.5892863,0.53408617,0.6058304,0.5896792,0.5244321,0.6030115,0.6011223,0.5227667,0.60333574,0.60224664,0.52126634,0.6033215,0.60356,0.52017874,0.603176,0.6046427,0.51808566,0.60193884,0.607665,0.5058795,0.59735316,0.62229824,0.5035905,0.59755063,0.623963,0.5020763,0.59752876,0.62520295,0.5010844,0.5978362,0.62570465,0.499391,0.59887135,0.62606853,0.49744657,0.5998932,0.6266378,0.4966821,0.6001305,0.6270169,0.4957351,0.6003275,0.62757754,0.49443054,0.600442,0.6284965,0.4919852,0.5989485,0.6318317,0.4911929,0.5985424,0.63283217,0.49025336,0.5982365,0.63384914,0.48848906,0.5973217,0.63607013,0.48650548,0.59687734,0.6380046,0.48489025,0.59700793,0.6391111,0.48355794,0.5969621,0.6401625,0.48234192,0.59765863,0.6404299,0.48150358,0.598442,0.6403292,0.4794405,0.5989212,0.64142823,0.4780573,0.59905905,0.64233124,0.47787395,0.59871167,0.64279145,0.477995,0.5976442,0.64369416,0.47863945,0.5949118,0.64574313,0.47883824,0.5942252,0.6462278,0.48120677,0.5915,0.6469682,0.48055765,0.59094256,0.6479593,0.47961167,0.59089714,0.6487012,0.47908783,0.59065443,0.64930904,0.47876227,0.5902005,0.6499616,0.4794684,0.58783484,0.6515829,0.47853175,0.5873997,0.65266293,0.4782104,0.58690304,0.6533449,0.4779992,0.58540267,0.65484387,0.5362978,0.5620509,0.6296693,0.53725004,0.57967216,0.6126521,0.5328786,0.588821,0.6077255,0.53355795,0.6046833,0.5913325,0.5262498,0.602781,0.59976345,0.51470053,0.5993879,0.6130396,0.48774213,0.5968315,0.63710266,0.4813358,0.5910841,0.6472522,0.47828463,0.58543724,0.65460443,0.53227603,0.56021404,0.63469875,0.5378356,0.57768923,0.61400974,0.5270232,0.6028014,0.59906346,0.5294636,0.5574833,0.63943774,0.531362,0.5943232,0.60368395,0.52873266,0.603057,0.59729725,0.52828836,0.55628705,0.64144844,0.5321193,0.6039927,0.5933312,0.5308465,0.60357153,0.59489787,0.52657425,0.5545522,0.64435345,0.511746,0.59816545,0.6166961,0.50856423,0.59736747,0.62009233,0.52580905,0.5564273,0.6433611,0.5313028,0.5931849,0.60485446,0.5099929,0.59765655,0.6186387,0.4987073,0.58311236,0.64130414,0.52810717,0.57647127,0.6235252,0.5228296,0.56398845,0.63919187,0.5170504,0.5513754,0.6547091,0.4994528,0.5832588,0.6405904,0.53206396,0.5906483,0.60666513,0.5275243,0.5778571,0.6227353,0.52245957,0.56492233,0.6386695,0.5279131,0.5769334,0.62326217,0.5168746,0.5518472,0.65445036,0.531698,0.5916257,0.60603327,0.49986643,0.5829438,0.6405545,0.5272665,0.5785986,0.6222649,0.5222988,0.5654222,0.6383586,0.5274384,0.5781043,0.6225786,0.5167997,0.5520998,0.65429646,0.51101506,0.5798923,0.63449866,0.50567293,0.56673044,0.6504702,0.63381284,0.6129171,-0.47181973,0.6342274,0.61265653,-0.47160116,0.6345622,0.6122927,-0.4716232,0.63500786,0.6121445,-0.4712157,0.635368,0.6117549,-0.4712361,0.63576734,0.61088824,-0.47182137,0.6358521,0.61038613,-0.47235674,0.63601196,0.6094697,-0.47332388,0.63695294,0.60802895,-0.47391114,0.6368829,0.6075241,-0.47465217,0.6370824,0.6059179,-0.4764342,0.6383072,0.6045095,-0.4765839,0.63835883,0.60401785,-0.47713774,0.63873243,0.60324603,-0.47761402,0.6391202,0.60147667,-0.47932363,0.63895756,0.60050607,-0.48075536,0.63998854,0.59989053,-0.48015198,0.64036214,0.5993654,-0.48030967,0.64046013,0.59966755,-0.47980168,0.64005566,0.60109603,-0.4785523,0.6407709,0.6012622,-0.47738492,0.64117837,0.6020879,-0.4757946,0.64203316,0.6019191,-0.47485444,0.64284074,0.6013834,-0.47444052,0.64357066,0.60123223,-0.4736419,0.6454177,0.6000146,-0.47267166,0.6467208,0.59863114,-0.47264457,0.64723,0.5975076,-0.47336882,0.64683795,0.5974748,-0.4739457,0.64584726,0.5969416,-0.47596434,0.64525443,0.5973176,-0.47629657,0.64466727,0.5975383,-0.47681454,0.64541495,0.5960237,-0.47769785,0.6459695,0.59450895,-0.4788345,0.6463379,0.59383583,-0.47917253,0.6471384,0.59259266,-0.47963095,0.6479039,0.5911103,-0.48042598,0.64862186,0.59012896,-0.48066357,0.6486516,0.58926725,-0.48167962,0.6485889,0.58798516,-0.48332798,0.6491663,0.58742523,-0.48323363,0.6497313,0.5866892,-0.48336852,0.65039897,0.5845166,-0.4850995,0.6518255,0.58374256,-0.48411587,0.65269643,0.58310646,-0.48370883,0.6533292,0.58279073,-0.48323485,0.65367854,0.582213,-0.4834588,0.65345603,0.5811926,-0.4849849,0.65448314,0.58072096,-0.4841642,0.6551281,0.58007205,-0.4840698,0.6568218,0.5780627,-0.48417827,0.65791166,0.5766732,-0.48435542,0.6590068,0.5757782,-0.48393127,0.6595814,0.57422125,-0.48499715,0.6598896,0.5726154,-0.4864744,0.66057426,0.5710487,-0.48738596,0.66018665,0.5708619,-0.4881295,0.6599282,0.5704077,-0.48900902,0.66066724,0.57008773,-0.48838377,0.6605436,0.5698182,-0.48886544,0.66156405,0.5692017,-0.48820323,0.66242003,0.569566,-0.486615,0.6631053,0.5688955,-0.48646608,0.66319406,0.56769496,-0.4877459,0.6626838,0.5663191,-0.49003357,0.6629931,0.56537545,-0.49070445,0.6635931,0.56425583,-0.49118185,0.66368234,0.5637316,-0.49166292,0.66320205,0.56377876,-0.4922567,0.6622947,0.5650176,-0.49205777,0.6599793,0.566324,-0.49366432,0.6600642,0.56570226,-0.4942633,0.65954596,0.56552655,-0.49515533,0.65463966,0.56872934,-0.49798983,0.6556572,0.567916,-0.49757934,0.6563085,0.5670697,-0.4976858,0.6556446,0.5658779,-0.49991238,0.65486264,0.5664153,-0.5003285,0.6542748,0.5671617,-0.50025207,0.6530221,0.5682063,-0.50070316,0.6530099,0.5691141,-0.49968708,0.65093833,0.57128793,-0.49990934,0.6511591,0.570225,-0.5008345,0.65116906,0.56913936,-0.502055,0.6501989,0.56958145,-0.50281054,0.64948,0.57046366,-0.5027395,0.64836127,0.5729284,-0.50137883,0.64688087,0.57309467,-0.5030981,0.6455575,0.5738437,-0.5039433,0.6450083,0.5738905,-0.50459284,0.6451904,0.5726266,-0.50579447,0.6448191,0.572373,-0.50655454,0.64376277,0.57230306,-0.5079751,0.6430519,0.5717893,-0.50945187,0.64258844,0.5717215,-0.51011235,0.6420728,0.57260495,-0.5097706,0.6416737,0.5738005,-0.5089282,0.63886774,0.5752848,-0.5107793,0.63770133,0.5749181,-0.5126463,0.63598895,0.5750268,-0.51464766,0.6349546,0.57532936,-0.5155859,0.63325584,0.5761732,-0.5167315,0.63104266,0.5783242,-0.5170361,0.6289386,0.5806724,-0.5169679,0.6268537,0.58336264,-0.51647115,0.6241164,0.5870459,-0.51561207,0.6232027,0.5884986,-0.51506096,0.6238719,0.58831596,-0.514459,0.6247094,0.5885213,-0.5132064,0.62403977,0.5897271,-0.5126366,0.62362593,0.5906359,-0.5120937,0.62265277,0.5923324,-0.51131773,0.62184227,0.5932151,-0.5112808,0.6210009,0.5944117,-0.5109136,0.61977583,0.59673786,-0.50968796,0.6185687,0.5982112,-0.5094272,0.61750454,0.60077655,-0.50769645,0.6164916,0.6026375,-0.506721,0.6154682,0.6056351,-0.50438577,0.61463314,0.6112181,-0.4986366,0.61461836,0.61410695,-0.49509287,0.6142037,0.61808014,-0.49064314,0.61248744,0.6241992,-0.48500973,0.6129179,0.6239868,-0.48473918,0.6141448,0.62283933,-0.48466212,0.6155304,0.62138015,-0.48477733,0.6201577,0.61988467,-0.48077795,0.6203876,0.6200425,-0.48027757,0.6218344,0.61995023,-0.47852248,0.62228936,0.61984724,-0.47806424,0.624204,0.6199609,-0.47541347,0.62531096,0.6198412,-0.47411296,0.62614393,0.6195583,-0.4733828,0.62718403,0.6189641,-0.4727829,0.6283184,0.61807346,-0.4724417,0.62942165,0.617119,-0.47222087,0.63154244,0.615372,-0.47166887,0.6327937,0.61452186,-0.47109976,0.63356334,0.61329216,-0.4716676,0.64932305,0.58634263,-0.48433656,0.65938306,0.57124037,-0.48877242,0.65909475,0.5710627,-0.4893685,0.66069365,0.56924933,-0.4893252,0.6570654,0.5679426,-0.49568766,0.62458074,0.5878762,-0.5141016,0.6192064,0.619785,-0.48213065,0.6385116,0.60122406,-0.48045033,0.64925313,0.585976,-0.4848737,0.65315175,0.5819774,-0.4844534,0.652889,0.5817113,-0.48512676,0.6601991,0.5665769,-0.49307993,0.65410525,0.5695716,-0.4977293,0.6528737,0.5698966,-0.49897283,0.6496986,0.5713355,-0.5014653,0.62477446,0.5880506,-0.5136666,0.63852096,0.60097003,-0.4807557,0.64848703,0.5883208,-0.48305613,0.65401745,0.57007027,-0.4972736,0.65131223,0.5713481,-0.49935338,0.64090306,0.5745686,-0.50903255,0.6401857,0.5750192,-0.5094263,0.6164825,0.6205912,-0.48457795,0.64953554,0.5719983,-0.5009207,0.6202756,0.6057209,-0.49835765,0.6180108,0.619896,-0.48352006,0.6521128,0.57104445,-0.49865535,0.64907306,0.5725232,-0.50092053,0.62084,0.60467887,-0.49892,0.6172824,0.6201534,-0.48411995,0.6212432,0.6044565,-0.49868748,0.6418181,0.56980836,-0.51321334,0.64049345,0.57069254,-0.5138853,0.6389895,0.57377046,-0.5123279,0.6395088,0.57370204,-0.51175636,0.64083904,0.57260776,-0.51131755,0.6422245,0.5716488,-0.5106519,0.64231116,0.57099414,-0.511275,0.6473119,0.56939507,-0.5067311,0.64644736,0.5707975,-0.50625694,0.64612174,0.5718397,-0.5054959,0.64664626,0.5720459,-0.50459105,0.6468677,0.57244635,-0.50385255,0.64796525,0.5717809,-0.5031973,0.64839387,0.57090455,-0.5036401,0.64870054,0.56978106,-0.5045167,0.6484899,0.56978875,-0.50477886,0.6478526,0.5702299,-0.5050989,0.6479746,0.5693257,-0.5059617,0.6664479,0.5643213,-0.48722556,0.66578174,0.5645422,-0.48787993,0.66447,0.5653474,-0.48873508,0.6635221,0.5663767,-0.48883107,0.6634552,0.5670522,-0.48813832,0.6641285,0.5673168,-0.48691383,0.6645463,0.5668767,-0.48685622,0.6661392,0.5655996,-0.48616424,0.66662055,0.5649487,-0.48626128,0.66647935,0.5648172,-0.48660737,0.6367156,0.61020994,-0.47142026,0.6355444,0.6120353,-0.47063366,0.6353743,0.6126666,-0.4700417,0.63570064,0.61321944,-0.468878,0.63648266,0.6125211,-0.46872982,0.637226,0.61082816,-0.4699276,0.63731486,0.61047184,-0.47026998,0.6371207,0.61028826,-0.47077104,0.6617706,0.5634746,-0.49452606,0.6615414,0.56416017,-0.49405083,0.66158843,0.56490785,-0.49313274,0.6620465,0.56482774,-0.49260944,0.6624061,0.56426287,-0.4927734,0.6623969,0.5636042,-0.49353886,0.6506374,0.56761503,-0.5044642,0.65029615,0.56805974,-0.5044037,0.6498748,0.569023,-0.5038606,0.65071464,0.5682877,-0.5036066,0.6475898,0.59381044,-0.47751084,0.64693505,0.5947186,-0.4772681,0.6465357,0.5958204,-0.47643432,0.6467541,0.5964007,-0.47541073,0.6477855,0.5944096,-0.47649887,0.66373074,0.5693796,-0.48504463,0.66342515,0.5697264,-0.48505554,0.6626621,0.571139,-0.48443702,0.66273654,0.5723583,-0.48289356,0.66371614,0.57168025,-0.48235115,0.6635824,0.5712515,-0.48304257,0.6638648,0.5704707,-0.48357704,0.6640412,0.56948334,-0.4844977,0.60033697,0.60805124,-0.51948935,0.59968656,0.60846317,-0.51975816,0.59910923,0.60917306,-0.51959234,0.5991936,0.6095049,-0.5191058,0.599918,0.6092765,-0.51853704,0.60039204,0.60889864,-0.518432,0.60058564,0.60846317,-0.51871896,0.6739569,0.54790825,-0.49555895,0.6716337,0.5481228,-0.49846715,0.67026746,0.54860955,-0.49976894,0.6683043,0.5496231,-0.5012821,0.6677035,0.5502238,-0.5014237,0.6670046,0.55111945,-0.5013703,0.66671884,0.5521572,-0.50060797,0.6676572,0.5527113,-0.49874243,0.66824734,0.5526545,-0.4980146,0.6720344,0.5513605,-0.49433935,0.6739417,0.55001533,-0.49324012,0.67466646,0.549198,-0.49315995,0.6747815,0.54876846,-0.4934806,0.67479074,0.5479318,-0.49439684,0.674774,0.54778,-0.49458784,0.6745158,0.54758525,-0.49515542,0.61237776,0.62498254,-0.48413873,0.6125026,0.6258583,-0.48284784,0.6128826,0.62641513,-0.48164192,0.61295366,0.6268269,-0.4810154,0.613518,0.6279358,-0.47884467,0.6134501,0.6304608,-0.47560292,0.6138169,0.631015,-0.47439322,0.6146334,0.6312615,-0.473006,0.61500925,0.63175184,-0.47186148,0.61560285,0.6321362,-0.4705708,0.6133916,0.6347437,-0.46994814,0.61306167,0.6344255,-0.47080743,0.61211205,0.63555396,-0.470521,0.6112302,0.63692343,-0.46981508,0.6102193,0.6387101,-0.46870235,0.609123,0.639868,-0.46854898,0.6056643,0.64139533,-0.4709382,0.603965,0.64272887,-0.4713024,0.6024872,0.6432229,-0.4725181,0.6008199,0.6432679,-0.4745754,0.59961945,0.6439763,-0.4751327,0.5982745,0.644527,-0.47608045,0.59685135,0.6454297,-0.47664344,0.5950438,0.6470231,-0.47674322,0.59350324,0.64756805,-0.4779221,0.5920391,0.64849037,-0.4784872,0.59010714,0.6493294,-0.47973415,0.58747786,0.65158266,-0.47990602,0.58609843,0.65244657,-0.48041865,0.58185506,0.6541776,-0.48321456,0.58091563,0.65516645,-0.4830052,0.5794805,0.6576866,-0.48130092,0.57743645,0.66005224,-0.48051864,0.576717,0.6612006,-0.47980335,0.5738844,0.66539,-0.47740212,0.57205117,0.6666042,-0.47790816,0.57080394,0.66779006,-0.477744,0.5683034,0.6697238,-0.4780181,0.5669134,0.6703874,-0.4787379,0.56567556,0.67150337,-0.47863805,0.5647387,0.67190295,-0.47918326,0.5627607,0.67303455,-0.4799218,0.5619131,0.6729053,-0.48109475,0.56149787,0.6726878,-0.48188302,0.5608239,0.6730452,-0.4821686,0.56084543,0.673371,-0.48168853,0.5605007,0.673948,-0.48128283,0.5603976,0.67450374,-0.4806238,0.56040424,0.67526466,-0.47954643,0.6322974,0.642736,-0.43253946,0.63332295,0.6415418,-0.43281183,0.63328785,0.6409879,-0.4336831,0.6331072,0.6389953,-0.4368757,0.63380694,0.6376268,-0.43785933,0.6331827,0.6378592,-0.43842363,0.6327485,0.63812566,-0.43866265,0.63187957,0.63932496,-0.4381687,0.6314492,0.63954705,-0.43846485,0.6312548,0.63879204,-0.4398433,0.6304825,0.63729393,-0.44311202,0.629037,0.6364365,-0.44638664,0.6298329,0.6351031,-0.4471628,0.63043875,0.63373554,-0.44824794,0.63080776,0.6332239,-0.4484519,0.63652635,0.6275763,-0.4483104,0.6370269,0.6266788,-0.44885448,0.63656414,0.6258277,-0.45069474,0.63554233,0.6258809,-0.45206097,0.63563746,0.6249173,-0.4532586,0.63620365,0.62497586,-0.45238268,0.6371707,0.62477094,-0.45130345,0.6400418,0.6232893,-0.4492849,0.6414577,0.6222431,-0.4487154,0.6434183,0.6203493,-0.44853052,0.6438159,0.61971015,-0.44884348,0.64442605,0.6188663,-0.44913188,0.6467863,0.6174368,-0.44770446,0.6463384,0.6170566,-0.44887394,0.6452393,0.61720955,-0.45024288,0.6448542,0.61673135,-0.45144817,0.6433918,0.61694866,-0.45323434,0.6430496,0.61644286,-0.45440668,0.64364123,0.6161811,-0.45392388,0.6461922,0.61471814,-0.45228,0.6459698,0.6145965,-0.45276275,0.6457306,0.61403835,-0.4538599,0.6444096,0.61350685,-0.45644897,0.6448093,0.612193,-0.45764688,0.6450697,0.6118695,-0.45771262,0.6447295,0.61178994,-0.4582979,0.6442907,0.6119443,-0.4587088,0.64249295,0.6131144,-0.45966673,0.6408392,0.61452925,-0.46008578,0.6402959,0.61514825,-0.46001488,0.6395029,0.61546,-0.4607006,0.6390825,0.61392266,-0.4633277,0.6382366,0.6138695,-0.46456257,0.63879454,0.6121195,-0.4661022,0.6382541,0.61240655,-0.46646523,0.63556135,0.6139872,-0.46806142,0.63460153,0.61286324,-0.47082853,0.63424337,0.6127717,-0.47142994,0.5764433,0.662546,-0.47827387,0.5693,0.66901594,-0.4778234,0.6328129,0.6399833,-0.4358546,0.62992543,0.637202,-0.4440355,0.6373521,0.6133002,-0.46652466,0.61392087,0.63437414,-0.46975598,0.6350515,0.625055,-0.45388967,0.61491925,0.63332874,-0.46986058,0.6352031,0.625621,-0.4528966,0.643149,0.6167823,-0.45380503,0.5928381,0.6512797,-0.47368523,0.5755143,0.66386056,-0.4775693,0.59237504,0.6519459,-0.47334808,0.5915643,0.65272164,-0.47329286,0.5848222,0.6584509,-0.47373566,0.63317364,0.6361801,-0.4408696,0.63247836,0.63656664,-0.44130945,0.6316005,0.637529,-0.4411774,0.6319992,0.6374522,-0.4407173,0.6327276,0.6368709,-0.44051242,0.8911508,0.45359024,-0.01030015,0.80153674,0.3453573,0.48812625,0.8019948,0.3456052,0.48719743,0.80217296,0.34639284,0.48634404,0.8018907,0.34896335,0.48497006,0.80238545,0.35047153,0.4830604,0.8009608,0.35315743,0.4834684,0.80111206,0.3501515,0.48540026,0.80069387,0.34754696,0.48795548,0.8013454,0.34547332,0.48835817,0.76488036,0.28870133,0.5758556,0.7660185,0.28649756,0.57544315,0.7678424,0.28775066,0.5723789,0.77080077,0.28836268,0.5680785,0.77204883,0.28996247,0.56556374,0.77355736,0.2909998,0.56296366,0.77431214,0.29246375,0.5611645,0.78009814,0.29251996,0.5530633,0.78131604,0.29178154,0.5517324,0.7838097,0.29302117,0.5475225,0.78435534,0.29500133,0.5456747,0.7846263,0.2977231,0.5438037,0.78456026,0.29873422,0.5433443,0.7841484,0.2998107,0.54334587,0.788729,0.3079413,0.5320514,0.79118234,0.30819988,0.5282455,0.79205745,0.30881754,0.52657074,0.79278725,0.31177056,0.52372456,0.79180235,0.3187501,0.5210061,0.79707134,0.32464045,0.5092011,0.7991993,0.3248726,0.5057058,0.7996587,0.32519424,0.5047719,0.80011135,0.32585013,0.50363034,0.7993021,0.32797557,0.50353575,0.7985489,0.3297453,0.50357485,0.79764676,0.3326915,0.5030666,0.7963839,0.3355655,0.5031585,0.79562956,0.3388117,0.5021755,0.7954094,0.34127522,0.5008544,0.7949461,0.3439502,0.4997589,0.79446,0.3460211,0.4991019,0.7946923,0.34764925,0.49759838,0.79486775,0.3513574,0.4947052,0.7963078,0.35031912,0.49312317,0.79654247,0.34896415,0.4937044,0.7971811,0.3484977,0.4930026,0.79793626,0.34835792,0.49187848,0.7989081,0.3486846,0.49006614,0.79891574,0.3502712,0.4889209,0.79865116,0.35522318,0.4857703,0.79924995,0.36307335,0.47893342,0.800414,0.36545116,0.4751662,0.8006202,0.36648214,0.4740234,0.8002537,0.37108138,0.4710548,0.8004128,0.3738194,0.46861336,0.80006605,0.3754771,0.46787944,0.80009305,0.37816268,0.46566525,0.799804,0.37953973,0.46504098,0.7992478,0.381402,0.46447334,0.79862237,0.38282827,0.4643757,0.79737145,0.38342726,0.4660282,0.7958764,0.38394907,0.4681494,0.7927946,0.3874087,0.4705223,0.790798,0.39027914,0.47150883,0.78850836,0.39282772,0.47322404,0.7875108,0.39449877,0.47349492,0.78632855,0.3960933,0.47412807,0.7852815,0.39710718,0.47501457,0.7840946,0.39902413,0.47536883,0.7817196,0.40104392,0.47757533,0.78105545,0.4010791,0.4786313,0.7803254,0.4006395,0.48018768,0.7797158,0.40073004,0.48110163,0.77744526,0.4022123,0.48353294,0.7746895,0.40289256,0.48737428,0.764507,0.40913,0.49813822,0.7621964,0.41206416,0.4992592,0.7602136,0.41422167,0.5004955,0.75740373,0.4181264,0.5015077,0.7549056,0.42228913,0.50178623,0.7546347,0.42219567,0.5022722,0.75454676,0.42153117,0.50296193,0.7545401,0.42050847,0.5038272,0.7541875,0.41997963,0.5047952,0.75397503,0.41938084,0.5056099,0.75196373,0.4205936,0.5075939,0.7521734,0.42066237,0.5072261,0.75207436,0.42115787,0.5069617,0.7516542,0.42187813,0.506986,0.7512182,0.42214778,0.50740755,0.7507901,0.42217177,0.5080208,0.750514,0.4218495,0.5086961,0.75033325,0.4212143,0.5094885,0.7503539,0.42053097,0.5100223,0.7508435,0.41915572,0.5104336,0.75154585,0.41760686,0.51066947,0.75182843,0.41685566,0.5108672,0.7519471,0.41592118,0.5114538,0.75238305,0.41454434,0.51193035,0.7529506,0.4134784,0.511958,0.7533427,0.4128428,0.51189417,0.7535584,0.41230646,0.51200885,0.75379366,0.41060227,0.5130311,0.7542601,0.41028365,0.51260024,0.7554561,0.41016397,0.51093215,0.75622153,0.40900946,0.5107252,0.75674576,0.40821835,0.5105816,0.75528806,0.40700907,0.5136961,0.7545062,0.40712112,0.51475513,0.75335926,0.40659884,0.5168436,0.75293577,0.40579742,0.51808894,0.7533301,0.40529588,0.5179083,0.7545561,0.40234095,0.5184273,0.75470364,0.4008753,0.5193471,0.75488406,0.39904916,0.52049,0.755083,0.3969468,0.52180725,0.7554464,0.3937805,0.5236771,0.75567615,0.39128956,0.5252105,0.75623095,0.38949284,0.5257471,0.75665456,0.3883199,0.52600527,0.75738865,0.38597205,0.5266765,0.7586881,0.38414896,0.5261387,0.7597636,0.38263375,0.5256907,0.76123846,0.38055107,0.5250685,0.76280135,0.37833616,0.52440053,0.76429045,0.37621638,0.523757,0.76539665,0.3746366,0.52327365,0.765636,0.37299412,0.52409625,0.7658939,0.37120083,0.524992,0.766148,0.36940613,0.5258863,0.76639843,0.3676102,0.5267791,0.7668882,0.3640141,0.5285605,0.7671275,0.36221406,0.52944905,0.7673633,0.36041254,0.53033614,0.7675955,0.3586089,0.53122187,0.76782477,0.35680482,0.53210473,0.76804847,0.35499942,0.5329887,0.7682695,0.35319257,0.53386986,0.7687012,0.34957504,0.5356264,0.7689102,0.34776437,0.5365044,0.7691174,0.3459523,0.53737825,0.76931906,0.34413904,0.53825325,0.7695577,0.3419536,0.5393037,0.76602274,0.33948994,0.54585326,0.76465565,0.3385487,0.54834896,0.7632806,0.33760706,0.5508396,0.76189584,0.33666512,0.55332756,0.7605022,0.33572283,0.55581164,0.7591009,0.3347794,0.55829066,0.7576897,0.3338366,0.5607668,0.75627065,0.33289328,0.56323767,0.75484186,0.33194965,0.5657059,0.7534046,0.33100492,0.56817013,0.75195926,0.33006075,0.5706288,0.75050426,0.32911614,0.57308465,0.7490415,0.32817116,0.575535,0.7475691,0.3272259,0.5779824,0.7460879,0.3262803,0.5804257,0.7448688,0.32550445,0.5824236,0.7457643,0.32385603,0.58219653,0.7475502,0.3205549,0.581733,0.7484394,0.31890276,0.5814977,0.74932736,0.31724963,0.5812583,0.7502119,0.31559646,0.5810172,0.7510944,0.31394142,0.58077353,0.7519745,0.31228632,0.5805269,0.7537294,0.30897242,0.5800242,0.7546031,0.3073136,0.57976943,0.75547546,0.30565393,0.57951057,0.7563447,0.30399325,0.5792503,0.7572114,0.30233252,0.57898706,0.758077,0.30067,0.5787199,0.75893945,0.29900655,0.57845134,0.75978005,0.29738134,0.57818556,0.76063395,0.29684022,0.5773403,0.7614407,0.2953026,0.5770654,0.76259196,0.29310346,0.5766661,0.7637381,0.29090357,0.5762632,0.77905655,0.29289317,0.55433244,0.78536505,0.30712548,0.53747153,0.7959416,0.35182878,0.4926393,0.7726012,0.4036037,0.49009338,0.7538359,0.41863874,0.5064317,0.76848763,0.3513844,0.5347483,0.7466588,0.32220596,0.58196557,0.7528537,0.3106294,0.58027637,0.77720845,0.29293317,0.5568996,0.78348607,0.3007846,0.543763,0.79502577,0.32396013,0.5128196,0.7987525,0.36020502,0.48191997,0.7519606,0.42038563,0.5077709,0.7561748,0.40739667,0.5120816,0.76664513,0.36581287,0.5276705,0.78428763,0.3064141,0.53944725,0.7934104,0.32272547,0.51608926,0.7953417,0.35167012,0.49372026,0.75685775,0.40774688,0.5107924,0.79257584,0.3214975,0.51813406,0.79453504,0.38527536,0.46933672,0.7526668,0.41942412,0.5075196,0.7537198,0.40491015,0.51764286,0.7542177,0.4038493,0.51774645,0.7561361,0.33168438,0.5641309,0.7722441,0.29881305,0.56066906,0.79559815,0.36770964,0.48146993,0.76734537,0.40642905,0.49598026,0.75351846,0.41848165,0.50703347,0.75684863,0.33215633,0.56289643,0.76738006,0.34043077,0.54335505,0.7832993,0.30213106,0.54328537,0.77215725,0.2994868,0.56042916,0.79547447,0.36506078,0.48368478,0.7575593,0.33262855,0.5616602,0.76872927,0.34137213,0.5408516,0.76482636,0.3130141,0.56308323,0.79063296,0.32102776,0.5213834,0.7948035,0.36572957,0.48428226,0.76852727,0.40550467,0.4949058,0.78167975,0.395414,0.48231155,0.75799704,0.33292016,0.56089634,0.76535493,0.31514835,0.5611714,0.79602075,0.33674055,0.50294805,0.7904612,0.32161862,0.52127975,0.78187245,0.37595657,0.49732497,0.7902883,0.32266015,0.5208981,0.78255916,0.37239853,0.49891937,0.7671925,0.3901254,0.50913453,0.7768634,0.3262546,0.5385547,0.7777505,0.35646093,0.5177256,0.7734754,0.38111675,0.5064443,0.78135395,0.33155414,0.52873236,0.76864755,0.38128704,0.5136157,0.77668774,0.32808018,0.5376983,0.7763255,0.3317278,0.53598076,0.7499215,0.43252224,0.50054187,0.74994624,0.43288335,0.5001926,0.74965906,0.43380567,0.49982384,0.74958277,0.4344759,0.49935594,0.74963623,0.4353032,0.49855453,0.7480726,0.4400761,0.49670956,0.74744725,0.4416335,0.49626866,0.7467851,0.44349664,0.4956034,0.74648595,0.44387162,0.49571833,0.746155,0.4439526,0.4961439,0.7461512,0.44328433,0.4967468,0.7457285,0.44181553,0.49868625,0.7453969,0.441963,0.49905124,0.7452529,0.44161594,0.49957317,0.745441,0.43935353,0.5012845,0.745721,0.43944004,0.500792,0.7469925,0.4375107,0.5005862,0.7474433,0.43599284,0.5012372,0.7480704,0.43438375,0.5016985,0.7483558,0.43351007,0.5020285,0.74898344,0.43279263,0.50171137,0.74968284,0.43248525,0.5009313,0.7463003,0.44205707,0.4976157,0.7462981,0.43911543,0.50021666,0.75219595,0.42591888,0.5027867,0.7523955,0.42634055,0.50213015,0.752181,0.4270203,0.5018739,0.7519514,0.42737168,0.5019189,0.7515557,0.42741793,0.50247186,0.7516297,0.42683232,0.50285876,0.7519079,0.42598897,0.50315803,0.69977456,0.67181396,0.24286112,0.6995118,0.67164546,0.24408117,0.69958395,0.67131513,0.244782,0.7002582,0.66964215,0.2474225,0.69958746,0.6701711,0.24788724,0.6992897,0.67014897,0.24878564,0.69946754,0.6694934,0.25004756,0.69991755,0.6684298,0.25162876,0.7006904,0.66519535,0.25796932,0.70040363,0.6648669,0.25958946,0.7004234,0.66430527,0.26097038,0.70061797,0.6631675,0.26333132,0.7010236,0.6624968,0.26393938,0.7008014,0.6621003,0.26551947,0.70073485,0.66164225,0.26683354,0.7009495,0.66087896,0.26815817,0.70195544,0.65953094,0.26884475,0.7023243,0.6587555,0.2697811,0.7025532,0.65768856,0.27178085,0.7028865,0.65661067,0.27351967,0.7033884,0.655552,0.27476603,0.70391756,0.6544277,0.2760879,0.7042971,0.6538076,0.2765886,0.70496494,0.6529598,0.27688974,0.7015142,0.6542208,0.28261822,0.7006215,0.65553534,0.28178534,0.70000714,0.6564358,0.28121537,0.6983299,0.6577701,0.28226548,0.6973468,0.65864456,0.2826566,0.69717455,0.65843034,0.2835792,0.69704795,0.65821546,0.28438798,0.6964518,0.65852207,0.28513795,0.6955243,0.6583893,0.2876971,0.6948169,0.65828925,0.2896288,0.6941497,0.6581949,0.29143727,0.69329375,0.6580762,0.2937337,0.6922535,0.65793246,0.29649636,0.6844692,0.66576785,0.2970776,0.68276954,0.66769487,0.29666358,0.68155634,0.66906404,0.29636848,0.68063784,0.66910905,0.29837105,0.67989975,0.66914517,0.2999684,0.678895,0.66919386,0.30212763,0.6780079,0.6702812,0.30170932,0.6768871,0.6716492,0.30118293,0.67560935,0.67320347,0.3005813,0.6740903,0.6752395,0.29942247,0.6727295,0.67694247,0.29863682,0.67106533,0.6790141,0.29767632,0.6699616,0.6803805,0.2970418,0.6687445,0.6818811,0.2963426,0.6686479,0.6814185,0.29762203,0.6670478,0.68164235,0.30068415,0.66570055,0.68282247,0.30099207,0.6636495,0.68461293,0.301454,0.66211015,0.6859523,0.30179408,0.66075593,0.6867326,0.30298507,0.6583873,0.688281,0.30462354,0.6570625,0.68928677,0.30520922,0.6558038,0.6902395,0.30576283,0.6545653,0.6910678,0.30654457,0.6542898,0.690806,0.3077206,0.65416706,0.69028884,0.30913877,0.65404576,0.68978983,0.31050634,0.6538473,0.6890021,0.31266573,0.6530794,0.6891003,0.31405097,0.65240526,0.68918616,0.31526154,0.6511948,0.6893393,0.31742203,0.6501659,0.6894696,0.31924298,0.6491112,0.68960226,0.32109717,0.64763236,0.68978673,0.3236767,0.64612496,0.68997306,0.32628173,0.64542395,0.6897269,0.32818395,0.64452946,0.6894158,0.3305866,0.64358,0.6890886,0.33310905,0.63897914,0.6893319,0.34136084,0.636551,0.6910536,0.34241438,0.6350774,0.69209516,0.3430466,0.63363045,0.693115,0.34366277,0.63154274,0.69458234,0.34454194,0.6299188,0.6956906,0.34527808,0.627098,0.69776845,0.3462185,0.6258378,0.69901943,0.34597525,0.625006,0.699586,0.34633368,0.62357235,0.7003498,0.3473725,0.62203157,0.7011687,0.34848118,0.62048763,0.70198673,0.34958503,0.6189407,0.7028044,0.35068268,0.61739236,0.70362055,0.3517737,0.6142871,0.7052501,0.35394025,0.6127308,0.7060641,0.35501325,0.6111727,0.7068759,0.35608202,0.60961217,0.70768744,0.3571435,0.6080493,0.708498,0.3581991,0.60648286,0.7093077,0.35925084,0.60491484,0.7101169,0.36029428,0.603345,0.7109247,0.36133206,0.6017717,0.71173155,0.3623659,0.6001968,0.71253806,0.3633914,0.59862024,0.713343,0.3644113,0.5973881,0.71392745,0.36528763,0.5968444,0.7137753,0.36647195,0.5954859,0.71293676,0.37029406,0.594788,0.7125123,0.37222752,0.5935219,0.7117495,0.37569192,0.5926957,0.71125907,0.37791836,0.5920702,0.7108444,0.37967497,0.59139806,0.7104031,0.3815439,0.59050775,0.7098241,0.3839927,0.58975446,0.7093377,0.38604364,0.58886033,0.70876795,0.38844746,0.58806187,0.7082634,0.39057156,0.5873829,0.70783854,0.3923594,0.58667105,0.7073953,0.3942193,0.5861022,0.70704406,0.3956929,0.5884458,0.70420533,0.39727375,0.5954206,0.6956214,0.40197662,0.59772617,0.6927377,0.4035317,0.6000228,0.6898422,0.40508062,0.60230917,0.6869364,0.40662274,0.60458547,0.6840201,0.40815797,0.60685253,0.6810922,0.40968695,0.6091098,0.6781534,0.4112094,0.61135745,0.6752037,0.41272524,0.6135952,0.6722431,0.41423437,0.6158231,0.66927177,0.41573688,0.61804116,0.6662897,0.41723272,0.62025046,0.6632963,0.41872114,0.62244856,0.6602929,0.42020354,0.62449116,0.66014373,0.41739795,0.6285574,0.6598441,0.41172966,0.62929773,0.65968853,0.41084716,0.6301555,0.6595444,0.4097624,0.6305442,0.65952265,0.40919915,0.63045126,0.66009706,0.40841535,0.6304367,0.6604119,0.40792856,0.6304238,0.6606608,0.40754533,0.63018024,0.66094226,0.40746555,0.6297391,0.6611808,0.40776047,0.6243253,0.6680253,0.40491983,0.62447506,0.66857433,0.4037812,0.62403494,0.6702255,0.40171912,0.62439674,0.67115533,0.3995988,0.6264267,0.67126524,0.3962228,0.6270628,0.6715892,0.39466462,0.62694067,0.672122,0.39395103,0.626368,0.67346686,0.3925629,0.6258957,0.6754167,0.3899574,0.6267583,0.67509556,0.38912734,0.6273616,0.674917,0.38846418,0.6292962,0.6736161,0.3875922,0.62968457,0.6731732,0.3877308,0.6300192,0.6729154,0.38763475,0.6302556,0.6729104,0.3872591,0.63043135,0.6729066,0.38697943,0.63047296,0.67300427,0.38674167,0.63037497,0.67322993,0.38650864,0.63008165,0.67353046,0.38646325,0.6290179,0.6743886,0.38669953,0.6269333,0.67594135,0.38737318,0.6251215,0.67800677,0.386691,0.6259161,0.67779696,0.38577238,0.62683934,0.6776829,0.3844716,0.6270166,0.67792785,0.38374987,0.6264206,0.6791654,0.38253295,0.62839496,0.67785394,0.38161987,0.63053226,0.6763808,0.38070738,0.63110435,0.67610836,0.38024306,0.63192296,0.675952,0.37915987,0.63254404,0.6758961,0.37822288,0.6334713,0.67535454,0.37763786,0.63525164,0.673737,0.3775364,0.63609564,0.6733131,0.37687108,0.6369719,0.6730062,0.37593815,0.63898575,0.67303264,0.3724572,0.6396719,0.67295,0.37142706,0.64077914,0.6721864,0.37090114,0.6413407,0.6718721,0.37049982,0.6419185,0.6712646,0.37060013,0.6421294,0.6708375,0.37100795,0.6427586,0.67001295,0.3714081,0.64322436,0.66937435,0.3717532,0.64329976,0.6690711,0.37216845,0.64347196,0.66878724,0.37238082,0.6438005,0.66853887,0.3722589,0.6452112,0.66792893,0.37090898,0.646035,0.6672742,0.3706534,0.64649963,0.6669802,0.37037238,0.6469243,0.6663018,0.37085152,0.64638036,0.6664371,0.37155616,0.6464988,0.6660075,0.37212,0.6470942,0.66523737,0.37246266,0.64796793,0.66451293,0.37223667,0.64856964,0.6638497,0.37237215,0.6488532,0.66321087,0.3730159,0.6493018,0.6623091,0.37383655,0.64978224,0.66166973,0.37413377,0.6502072,0.6613041,0.37404206,0.6514313,0.6606436,0.3730782,0.65436095,0.6589734,0.3708986,0.65479463,0.65890163,0.37026018,0.6567405,0.65932846,0.36602983,0.65735966,0.6590702,0.3653829,0.6587293,0.65883243,0.36333936,0.6593101,0.65856564,0.3627691,0.659723,0.6585477,0.36205047,0.66020936,0.6586253,0.36102128,0.66000235,0.659374,0.36003175,0.66755044,0.654659,0.35468018,0.67015016,0.6518774,0.35490084,0.67215604,0.6499948,0.35456046,0.67540425,0.6472167,0.35346812,0.6787684,0.64327186,0.35422423,0.6796284,0.6424618,0.35404536,0.68020326,0.6420398,0.35370684,0.6818256,0.6408937,0.35266,0.68480444,0.6389933,0.35032904,0.68655777,0.6378697,0.34894213,0.6893031,0.6360716,0.34680554,0.6918093,0.6344216,0.34483212,0.6949692,0.6318688,0.34316128,0.6954986,0.63149554,0.3427756,0.6976356,0.63011146,0.34097528,0.6999177,0.62869096,0.33891436,0.7005516,0.62901235,0.33700275,0.7034441,0.62682426,0.33504888,0.70456123,0.6260112,0.3342207,0.7049847,0.6257333,0.33384773,0.7065465,0.62486744,0.3321638,0.70933694,0.6230533,0.32961446,0.7130643,0.6204476,0.32647222,0.71536076,0.6189373,0.32430792,0.7158151,0.61876124,0.32364073,0.71613395,0.61876994,0.3229179,0.72018814,0.61728394,0.31668523,0.72103643,0.6166535,0.3159824,0.7215455,0.6163616,0.31538928,0.7240304,0.61472625,0.3128765,0.7249001,0.6127104,0.31481072,0.7266478,0.61013365,0.3157846,0.7280138,0.6081892,0.31638858,0.72914964,0.6066613,0.31670642,0.7322709,0.6064716,0.3097927,0.73392487,0.6050884,0.30858126,0.7348418,0.6047321,0.3070938,0.7353393,0.60552526,0.3043276,0.735797,0.6050945,0.30407792,0.7362482,0.604912,0.3033481,0.73723805,0.6045964,0.30156806,0.7375393,0.60421276,0.30160025,0.7370338,0.6052241,0.3008072,0.73417836,0.6097399,0.2986628,0.73345894,0.6118162,0.29617375,0.7327187,0.6133958,0.29473534,0.7322375,0.6146765,0.29325926,0.73224556,0.6151066,0.292336,0.73180753,0.61611396,0.29130968,0.73120797,0.6172665,0.29037392,0.7307468,0.6179904,0.28999478,0.7303093,0.6185597,0.2898831,0.7299538,0.6189266,0.28999543,0.72415715,0.62482417,0.2918752,0.7224232,0.6278357,0.28970167,0.7219657,0.62833834,0.2897525,0.72146904,0.628805,0.28997728,0.7209494,0.6290978,0.29063368,0.72042364,0.62922436,0.29166156,0.7200967,0.62908983,0.29275706,0.71881604,0.62943554,0.29515153,0.71774405,0.63080007,0.29484713,0.7174237,0.6310963,0.29499286,0.7170636,0.6313567,0.2953107,0.7154725,0.63198435,0.29781678,0.71285987,0.6356145,0.29635292,0.7128598,0.6358414,0.29586568,0.71265304,0.63633066,0.2953115,0.71401,0.63734055,0.28980464,0.7151652,0.63694185,0.2878259,0.71616876,0.63672835,0.28579596,0.71656764,0.6365857,0.28511307,0.71713567,0.63646674,0.28394824,0.7173724,0.63657254,0.2831117,0.7173183,0.63692343,0.2824589,0.71696055,0.637894,0.281174,0.7159553,0.63934857,0.28043064,0.7152573,0.64073014,0.27905533,0.7155973,0.6405954,0.2784926,0.71550727,0.6408545,0.2781276,0.7151397,0.6415718,0.2774181,0.7155668,0.6412397,0.27708438,0.7155934,0.64132863,0.27680993,0.7155007,0.64154965,0.2765372,0.71526957,0.64181566,0.27651796,0.7140103,0.6436991,0.27539203,0.714204,0.64374083,0.27479154,0.7140875,0.6439893,0.27451196,0.7137475,0.6443849,0.2744678,0.71338385,0.6446085,0.27488786,0.71349895,0.64557415,0.272311,0.7142807,0.6452923,0.2709259,0.7143902,0.64543223,0.27030328,0.7131795,0.6466318,0.27063328,0.71344346,0.64674425,0.26966703,0.7131639,0.64715433,0.26942244,0.7101708,0.65033084,0.26967993,0.71019936,0.6506105,0.26892927,0.70995164,0.6512348,0.2680707,0.7093995,0.6529857,0.26525846,0.7109401,0.65182114,0.26399496,0.7113175,0.65159494,0.26353654,0.71156406,0.65152895,0.26303354,0.7115494,0.65189034,0.2621765,0.71167433,0.6530431,0.25894862,0.71173775,0.6536902,0.25713515,0.7116679,0.6546313,0.2549248,0.711491,0.65499455,0.25448528,0.71056074,0.656423,0.2534015,0.7106096,0.6565213,0.25300938,0.7109101,0.65636766,0.2525636,0.71147937,0.6562551,0.25124952,0.7119185,0.6558197,0.25114262,0.71410376,0.6536199,0.25067288,0.71420413,0.65337545,0.251024,0.71441716,0.6531373,0.25103727,0.715517,0.6523865,0.24985465,0.7157709,0.6519368,0.25030068,0.7159124,0.6516893,0.25054047,0.7159375,0.65158457,0.25074103,0.71633476,0.650281,0.25298065,0.71676475,0.6488309,0.25547346,0.7168925,0.6486415,0.25559613,0.71714973,0.64827955,0.25579262,0.7174551,0.6479089,0.25587532,0.7178165,0.6476064,0.25562778,0.7183063,0.64739335,0.25479004,0.71881104,0.64711595,0.2540701,0.7195645,0.64635223,0.25388128,0.7202914,0.6456464,0.25361598,0.7206522,0.6454733,0.25303093,0.72137755,0.6459184,0.24980766,0.7215868,0.64597565,0.24905396,0.72155774,0.64618903,0.24858436,0.7236968,0.64601725,0.24274378,0.7243161,0.64557743,0.24206588,0.7245559,0.6455943,0.241302,0.7248759,0.64556444,0.24041945,0.72525704,0.6451725,0.24032216,0.7256454,0.6448221,0.24008994,0.725599,0.6452982,0.23894852,0.72540617,0.64591515,0.23786455,0.7255726,0.6460036,0.23711538,0.7256024,0.6462384,0.2363834,0.72462994,0.6488426,0.23219551,0.7248075,0.64863306,0.23222657,0.72504115,0.64844173,0.23203167,0.7257032,0.648142,0.23079626,0.7255526,0.6484839,0.23030862,0.7252345,0.64895797,0.22997499,0.7244772,0.64970976,0.2302391,0.72397584,0.6504836,0.2296302,0.72521734,0.64977133,0.22772144,0.72535115,0.6497856,0.2272542,0.7253231,0.6501858,0.22619642,0.7250204,0.65088934,0.22514106,0.72466594,0.6514417,0.22468434,0.72450507,0.65323603,0.21994342,0.72432864,0.6535612,0.21955821,0.7241152,0.6537972,0.2195596,0.7232236,0.6542144,0.22124918,0.72293913,0.6539797,0.22286648,0.7225842,0.6542414,0.22324942,0.7218235,0.6543439,0.22539939,0.7215231,0.6545269,0.22582942,0.7200029,0.65581775,0.22693375,0.7192841,0.65630853,0.22779258,0.7187645,0.65663123,0.22850178,0.71852654,0.656585,0.22938123,0.71777415,0.6569391,0.23071925,0.71721166,0.6576179,0.23053448,0.7165402,0.6583444,0.23054901,0.716203,0.65851307,0.23111424,0.71618706,0.6582264,0.23197874,0.7155619,0.6585195,0.23307337,0.71514934,0.658624,0.23404232,0.71379256,0.6601508,0.23388253,0.7131171,0.66080153,0.23410542,0.7124098,0.66148376,0.23433203,0.71210414,0.6616787,0.23471044,0.7115853,0.66201854,0.23532493,0.7108954,0.6628236,0.2351438,0.7106542,0.66305137,0.23523067,0.71048105,0.66315854,0.23545153,0.7104455,0.6630667,0.23581737,0.7106395,0.6626628,0.23636734,0.71145505,0.66177577,0.23639894,0.71235996,0.66009957,0.23835234,0.7116541,0.6605508,0.23920916,0.71384686,0.657849,0.24011953,0.7139201,0.6576828,0.24035688,0.7132073,0.6580653,0.24142362,0.71302545,0.65790033,0.24240825,0.7124094,0.6580672,0.24376298,0.7116792,0.65851307,0.24468997,0.71130574,0.65863687,0.24544169,0.709808,0.65950984,0.24742545,0.7080983,0.66131884,0.24749568,0.7073646,0.66196364,0.24786991,0.7070635,0.66210157,0.24835992,0.7068231,0.6614774,0.25069654,0.70614284,0.6619604,0.2513377,0.70511043,0.6625785,0.25260442,0.70381594,0.6635533,0.2536536,0.70334196,0.66555667,0.2496886,0.7026512,0.66693324,0.24795422,0.7025435,0.6679004,0.2456455,0.70267504,0.66812676,0.24465169,0.70177037,0.66938514,0.24380708,0.7017097,0.6695301,0.2435836,0.70185846,0.66962314,0.24289823,0.7019335,0.67013884,0.24125358,0.7018127,0.6712406,0.23852679,0.70156896,0.6715432,0.238392,0.7012635,0.6718039,0.23855622,0.7004349,0.6723668,0.2394031,0.6996566,0.6728145,0.24041896,0.699618,0.6725806,0.24118458,0.70003444,0.67052335,0.24566303,0.70571524,0.6522476,0.27665702,0.6993959,0.65686584,0.2817316,0.698829,0.65732574,0.28206536,0.6685385,0.68090624,0.2990367,0.65391374,0.68926084,0.31195554,0.6283313,0.6967721,0.3459889,0.6158409,0.70443577,0.35285994,0.5961845,0.7133657,0.36833876,0.5907807,0.7013552,0.3988471,0.6244023,0.6672678,0.40604866,0.62586856,0.67657226,0.38799295,0.6657719,0.6564622,0.3546903,0.7192074,0.6179515,0.31761098,0.7350215,0.6054052,0.30533248,0.7366912,0.6049778,0.30213904,0.72896975,0.61970407,0.29080924,0.7195561,0.6290792,0.29410616,0.71276325,0.6377115,0.2920488,0.71510077,0.6406307,0.27968413,0.7152807,0.6412064,0.2778992,0.7136973,0.6434604,0.27675775,0.71279585,0.6444853,0.2766962,0.71259654,0.645759,0.27422884,0.7089813,0.6524149,0.26776916,0.711469,0.65638566,0.2509377,0.7126666,0.65519476,0.25065142,0.71532494,0.65262216,0.24978894,0.72299707,0.6464595,0.24365014,0.7253344,0.64665,0.23608004,0.7125431,0.66010725,0.2377831,0.710553,0.6590164,0.24660052,0.7045247,0.66280895,0.25363234,0.7024541,0.667514,0.246948,0.69968045,0.67234975,0.2416465,0.70048624,0.6695978,0.24689627,0.7008419,0.6659344,0.25564036,0.7020111,0.6535431,0.2829519,0.6860786,0.6640173,0.29728296,0.6684327,0.6804261,0.30036312,0.6597518,0.68730974,0.30386344,0.62631685,0.66001,0.41486642,0.62873554,0.6619739,0.40802234,0.62567484,0.67456037,0.3917899,0.62848127,0.6742885,0.38774514,0.6329094,0.6757372,0.37789533,0.6416879,0.67160183,0.37038833,0.64687186,0.6665731,0.3704553,0.67357284,0.6490163,0.35366294,0.71624804,0.6190946,0.3220414,0.7229548,0.61580986,0.31323242,0.73060566,0.60697764,0.3127195,0.7275342,0.6209166,0.29181597,0.719049,0.6292475,0.29498506,0.7150951,0.64150584,0.27768543,0.7086871,0.65338314,0.26618227,0.71271896,0.65489215,0.2512925,0.71383935,0.65394425,0.25058004,0.72469014,0.6456861,0.24065264,0.7249551,0.64733166,0.23537599,0.7231687,0.653981,0.22211687,0.7184784,0.6562468,0.23049723,0.71824735,0.65640044,0.23077953,0.71243316,0.6604375,0.23719461,0.700405,0.6698402,0.24646905,0.7007184,0.6667992,0.2537173,0.7062928,0.6515684,0.27678338,0.6874263,0.662546,0.2974523,0.6404929,0.688255,0.34069616,0.5931054,0.69849396,0.40041506,0.61011404,0.6780801,0.4098393,0.6240809,0.67073447,0.400797,0.65605116,0.6592901,0.3673329,0.66005874,0.6595444,0.35961595,0.7184426,0.61841035,0.31844756,0.7237402,0.61510926,0.31279504,0.7250107,0.62372833,0.2921,0.71504617,0.6322551,0.29826573,0.71472955,0.6422632,0.276875,0.713837,0.64320856,0.27698275,0.71157384,0.64522654,0.2781103,0.7127731,0.6552238,0.25027257,0.72438717,0.64863306,0.23353443,0.7244674,0.64884317,0.23270044,0.68919736,0.6606391,0.29759544,0.608985,0.679551,0.40908155,0.625546,0.6750597,0.39113504,0.6278813,0.6746742,0.38804612,0.70157534,0.6285279,0.33577478,0.7347454,0.60858154,0.29962936,0.72633374,0.62215304,0.29217273,0.7140111,0.6429658,0.27709788,0.72256726,0.64661556,0.24450962,0.71214485,0.66088533,0.23681282,0.69014245,0.6596181,0.29767004,0.64278704,0.68881804,0.33519325,0.6185585,0.7009189,0.3551028,0.611089,0.6872159,0.39281613,0.6263745,0.6648306,0.40700766,0.6255672,0.6754312,0.39045912,0.66012776,0.6596686,0.35926118,0.69137263,0.6379662,0.33912092,0.71207213,0.6445133,0.27848834,0.72421795,0.6500246,0.2301662,0.7065521,0.65107435,0.27728382,0.7029141,0.6528133,0.2823943,0.69132316,0.65841556,0.29759255,0.64177424,0.6884757,0.3378269,0.69090724,0.63839006,0.3392718,0.66481984,0.65729237,0.35493854,0.7233656,0.61547875,0.31293458,0.7125154,0.6368538,0.29451486,0.71163094,0.6450188,0.27844587,0.7124972,0.655543,0.25022215,0.7218329,0.6464068,0.2472156,0.724038,0.65031207,0.2299202,0.7034914,0.6523865,0.28194275,0.6606213,0.6788933,0.3204424,0.6107811,0.6906676,0.38720104,0.71643907,0.6193509,0.32112226,0.69101167,0.63851565,0.33882254,0.70874137,0.65298957,0.26700243,0.7041407,0.6631426,0.2538262,0.7048316,0.65151733,0.2806021,0.666964,0.67358494,0.3185003,0.6105108,0.6921047,0.38505527,0.71731895,0.6190149,0.3198032,0.6914713,0.63835096,0.33819458,0.71179885,0.64475435,0.2786291,0.69176435,0.65812564,0.2972082,0.6671925,0.6734426,0.31832242,0.6105176,0.69235224,0.38459933,0.6253163,0.6769142,0.38828677,0.6920564,0.6380547,0.33755594,0.7119216,0.65608084,0.2504508,0.64100784,0.6882198,0.33979774,0.6668381,0.6733122,0.31933945,0.62499356,0.67723656,0.38824433,0.660447,0.6596878,0.3586386,0.7029914,0.6385791,0.31308126,0.6905925,0.64486027,0.32747105,0.70462024,0.6317272,0.32315794,0.6778638,0.65109813,0.3414263,0.66659546,0.6733301,0.31980792,0.6107938,0.695521,0.37839332,0.6617354,0.65921247,0.35713458,0.6899435,0.6453252,0.32792282,0.7026732,0.6388132,0.3133179,0.67687243,0.6517906,0.3420711,0.6634757,0.658209,0.35575402,0.6249809,0.6777274,0.3874072,0.6107776,0.69576067,0.37797862,0.7024464,0.6390689,0.313305,0.702522,0.6389836,0.3133094,0.7147458,0.6325984,0.2982578,0.68979144,0.64549446,0.32790962,0.6767961,0.6518746,0.34206226,0.61084056,0.69589716,0.37762535,0.678393,0.65300596,0.3366989,0.69688725,0.6428592,0.31793106,0.6593064,0.6630368,0.35453802,0.6114557,0.69646335,0.37558052,0.69549084,0.6450973,0.31645218,0.6959573,0.6443519,0.31694502,0.6774754,0.65448177,0.3356794,0.658855,0.6637665,0.35401154,0.6338109,0.6837235,0.3616711,0.6712502,0.6576648,0.3419066,0.65565354,0.6653423,0.35698476,0.69249105,0.64670724,0.31972793,0.649204,0.668485,0.36285254,0.6438131,0.67395586,0.36233717,0.66052365,0.6687125,0.34136808,0.67651844,0.66343564,0.31964982,0.692356,0.64723796,0.31894553,0.6711735,0.6580143,0.3413844,0.6924462,0.64688414,0.31946713,0.64917237,0.6686575,0.3625913,0.6676662,0.6654556,0.33375257,0.67996764,0.6617985,0.31570047,0.6475237,0.6723393,0.35871005,0.6867882,0.6585147,0.30770177,0.6922685,0.64762574,0.3183476,0.67112577,0.65826964,0.34098577,0.69232696,0.64736724,0.3187461,0.64915365,0.6687836,0.36239216,0.6682151,0.6652166,0.33312988,0.6870496,0.6583942,0.30737576,0.64781046,0.6722208,0.35841417,0.68757194,0.65815336,0.306723,0.70582074,0.6510317,0.2792399,0.69073737,0.65114886,0.31446305,0.7063272,0.65088874,0.27829084,0.7262227,0.64122796,0.24784535,0.72634155,0.6413502,0.24717984,0.7262318,0.64154047,0.24700852,0.7253003,0.6425179,0.24720483,0.72478735,0.64343107,0.24633256,0.72424066,0.64358497,0.24753554,0.72380996,0.643855,0.2480926,0.72282916,0.6447798,0.24854976,0.722715,0.64482147,0.24877353,0.7227907,0.64456743,0.24921165,0.72320384,0.6439632,0.24957483,0.72378546,0.6433071,0.2495809,0.72431105,0.6428646,0.24919593,0.7247503,0.6424709,0.24893408,0.7254717,0.64138424,0.24963394,0.7258083,0.6412476,0.24900566,0.72454154,0.6427197,0.24889964,0.7245834,0.6426877,0.24886014,0.7285126,0.64154506,0.24018617,0.7281659,0.6421221,0.23969486,0.7277288,0.64272493,0.23940666,0.7276478,0.64269745,0.2397264,0.72765815,0.64253294,0.24013548,0.7275572,0.6423684,0.24088068,0.72774535,0.6420666,0.24111646,0.72820544,0.641683,0.2407483,0.544495,0.70496184,0.45448217,0.54451203,0.7053105,0.45392036,0.5435734,0.7056433,0.45452783,0.54193985,0.70723027,0.45401162,0.54204714,0.7078253,0.45295498,0.5417694,0.7081172,0.45283106,0.54151356,0.7079306,0.45342836,0.5414349,0.7076585,0.45394683,0.5422321,0.70632833,0.45506552,0.5440318,0.7050132,0.45495683,0.54246455,0.70647854,0.45455506,0.5442611,0.70659554,0.4522196,0.5444052,0.70676196,0.45178583,0.5443057,0.70708746,0.4513963,0.54365,0.7081304,0.45055073,0.5432862,0.7080432,0.45112628,0.5434891,0.7073833,0.4519164,0.5582699,0.71204215,0.42582932,0.55829674,0.71217084,0.42557895,0.55789125,0.71277,0.42510742,0.5570761,0.7134714,0.4249998,0.55660135,0.7135932,0.4254171,0.55673,0.712932,0.42635635,0.55751014,0.7123712,0.4262743,0.6989534,0.6729312,0.24213174,0.6978074,0.67455214,0.24092372,0.69757366,0.6750635,0.24016725,0.6968093,0.6760462,0.2396212,0.69653445,0.6767028,0.2385646,0.69593614,0.67774177,0.2373582,0.69568545,0.6792255,0.2338257,0.696243,0.67901784,0.232767,0.6964619,0.679168,0.23167144,0.6968403,0.6797251,0.22888309,0.6988997,0.67893773,0.22490603,0.69937986,0.678899,0.22352633,0.7013182,0.67787397,0.22054403,0.70198554,0.6776516,0.21909966,0.7025709,0.67736256,0.21811472,0.70310956,0.6769205,0.21775116,0.7038252,0.67637646,0.21712907,0.7060713,0.6756429,0.21206114,0.7066127,0.6751653,0.2117787,0.70749813,0.67455715,0.21075816,0.70791787,0.6744188,0.20978929,0.70557225,0.6767925,0.2100469,0.7010186,0.6831194,0.20474578,0.7011021,0.6836887,0.20254785,0.7006085,0.6844837,0.2015684,0.7011619,0.6844023,0.19991346,0.70130694,0.6844719,0.1991653,0.70132047,0.6846142,0.198628,0.7009938,0.6850607,0.1982412,0.702228,0.6842855,0.19654301,0.7045248,0.68271536,0.19376391,0.70607793,0.68171966,0.19160452,0.7076891,0.680777,0.18899404,0.7095037,0.6799145,0.18525873,0.71062404,0.67962825,0.18198611,0.7105878,0.6798314,0.18136775,0.70985454,0.68120015,0.17908925,0.7102444,0.6810853,0.17797647,0.711179,0.6810242,0.1744433,0.7121118,0.6809624,0.17084229,0.7124045,0.68108904,0.16910802,0.71311384,0.68162364,0.16388394,0.71429276,0.6808825,0.16181737,0.71476156,0.68077767,0.16018003,0.71501094,0.68078136,0.15904737,0.7152119,0.68072146,0.15839885,0.7154899,0.68074954,0.1570166,0.71605915,0.68065965,0.15479575,0.7170901,0.68017757,0.1521195,0.71771145,0.68026495,0.14876103,0.71831006,0.6802687,0.14582565,0.71902716,0.67980886,0.14442916,0.7198417,0.67932373,0.14264342,0.7202591,0.6791198,0.14150305,0.7205092,0.67901474,0.14073218,0.7208162,0.6789778,0.13933106,0.7208395,0.67913043,0.13846396,0.72112596,0.67891645,0.13802078,0.7222996,0.67772365,0.13774641,0.7232316,0.67693806,0.1367148,0.72407216,0.6761975,0.13592798,0.72495395,0.6753778,0.13530189,0.72540015,0.675044,0.13457413,0.72851926,0.67305094,0.12752314,0.6533841,0.7563978,0.03084855,0.6524459,0.7571793,0.03152534,0.6520861,0.7574487,0.032485012,0.6508848,0.7583854,0.034647614,0.64860356,0.7602686,0.036125083,0.64760387,0.7610697,0.03717783,0.64627,0.7621792,0.03765603,0.6457962,0.7626182,0.03688961,0.64508873,0.76321757,0.036871266,0.64467365,0.76354015,0.03744835,0.644739,0.76344824,0.038189832,0.64634323,0.7619733,0.04046094,0.6469292,0.7613969,0.04192138,0.6474379,0.76093096,0.04252396,0.6480149,0.7603982,0.04325852,0.6478663,0.7604679,0.044246953,0.64784414,0.7604447,0.044965442,0.6478548,0.7603982,0.045593176,0.6471451,0.7609774,0.046006557,0.6470214,0.76104647,0.04660076,0.64604944,0.76159906,0.05086293,0.64568937,0.7618089,0.052273303,0.6459402,0.76153225,0.05319798,0.6456681,0.7617172,0.053848103,0.64499724,0.7622713,0.05404681,0.6437879,0.7632407,0.054778695,0.6427887,0.76403964,0.05537239,0.64175135,0.7648555,0.05613714,0.64096874,0.76549524,0.05635711,0.64020413,0.76616,0.05601387,0.63951284,0.76673305,0.05606877,0.6390943,0.7670306,0.056767542,0.638965,0.76706785,0.057712223,0.63724464,0.76831025,0.06015519,0.63691145,0.76849294,0.06133856,0.6365331,0.7687208,0.06240167,0.63644785,0.7687208,0.06326521,0.6336536,0.7709297,0.06442527,0.63251954,0.77185273,0.06451696,0.63130397,0.772786,0.06524657,0.6302247,0.77358425,0.066213205,0.6288442,0.7746649,0.0667033,0.62816113,0.7751432,0.06757724,0.6270614,0.775905,0.06903136,0.62624145,0.77643967,0.07044956,0.62516874,0.77708644,0.07280643,0.6250618,0.77708644,0.07371847,0.62498695,0.7770274,0.07496496,0.62528336,0.77671295,0.0757476,0.6259582,0.7759706,0.07775595,0.62573785,0.77597326,0.07948359,0.6259997,0.77571034,0.079986356,0.627584,0.77414507,0.08269046,0.62714785,0.77430314,0.08449985,0.62727857,0.774055,0.0857936,0.6272218,0.77396,0.087056,0.62622666,0.7745732,0.08874958,0.6259683,0.77455163,0.090738215,0.6253607,0.774626,0.094225846,0.624691,0.7752056,0.09390067,0.6240344,0.77572757,0.093956396,0.6234707,0.77615386,0.09417801,0.6228086,0.77666783,0.09432124,0.62256145,0.77677685,0.095052466,0.62150484,0.77731,0.09757466,0.6207942,0.77794015,0.09707609,0.61984634,0.7787534,0.0966108,0.61922556,0.7792402,0.096666485,0.6191272,0.7791815,0.09776372,0.6189675,0.7792263,0.09841555,0.61820143,0.7798055,0.09864271,0.6175836,0.7802279,0.09917138,0.61744446,0.78025025,0.09985949,0.617175,0.78035843,0.100676395,0.61724126,0.7801831,0.10162486,0.6178746,0.77960277,0.10222791,0.6178788,0.77951944,0.10283568,0.6179705,0.7793572,0.10351245,0.6181396,0.77915585,0.10401741,0.618721,0.77864164,0.10441023,0.6214881,0.7762565,0.10572818,0.62127584,0.7763172,0.10652687,0.6213537,0.7761759,0.10710065,0.6218918,0.77558774,0.108232796,0.6220591,0.7753854,0.108719625,0.62246805,0.7750247,0.10895077,0.62273973,0.77466375,0.10996016,0.62008446,0.77665657,0.110904306,0.6170733,0.7789004,0.11195868,0.6138355,0.7812806,0.11316614,0.6121213,0.7825333,0.11379426,0.6064328,0.7865915,0.11624573,0.6036936,0.7885199,0.117432676,0.59894466,0.7918318,0.11944745,0.59460855,0.7948218,0.12123944,0.59005183,0.7978963,0.12328929,0.5874412,0.79963195,0.124505565,0.58468163,0.8014541,0.1257723,0.5838886,0.80195737,0.12624745,0.58283406,0.80260044,0.12703158,0.5806707,0.80384415,0.12905875,0.5775559,0.80561936,0.13193402,0.5747392,0.80719376,0.1345848,0.5725145,0.808427,0.136649,0.5692751,0.81056845,0.13749413,0.5699153,0.81050456,0.13519928,0.5695171,0.8108848,0.13459639,0.5677959,0.8123062,0.13329072,0.5662433,0.8135311,0.13242225,0.5661389,0.81347513,0.13321026,0.5664897,0.81296974,0.13479464,0.5669176,0.8124469,0.13614164,0.5666936,0.8122053,0.13849501,0.56712246,0.81166106,0.139923,0.56801254,0.81010306,0.14524038,0.5676755,0.8099356,0.14747481,0.56786394,0.80971915,0.14793712,0.57019013,0.8071585,0.15289967,0.5697154,0.807311,0.15386166,0.5696873,0.807225,0.15441571,0.5702419,0.80648994,0.15619904,0.57106346,0.805383,0.15888578,0.57159346,0.8049322,0.15926415,0.57230693,0.8043832,0.15947558,0.57219267,0.8041447,0.16108027,0.57134455,0.80464995,0.16156691,0.5704721,0.8050121,0.16284071,0.5697603,0.80509806,0.16489483,0.5696196,0.8049226,0.16623227,0.5697204,0.8046479,0.16721365,0.5706574,0.8035338,0.16936235,0.5705615,0.8033831,0.17039682,0.56983566,0.8039212,0.1702879,0.56923443,0.8043047,0.17048773,0.56583416,0.80707854,0.16868882,0.5655197,0.80766386,0.16693284,0.56505436,0.8082925,0.16545933,0.5642557,0.8089779,0.16483395,0.56362057,0.8094515,0.16468173,0.56320214,0.8096677,0.16505036,0.5630095,0.80970764,0.16551083,0.5627185,0.80881953,0.17075957,0.5603939,0.8101166,0.17224912,0.55963904,0.8102924,0.17386876,0.55914503,0.8103928,0.17498682,0.55919605,0.81026244,0.17542672,0.55955976,0.8099437,0.17573881,0.56005216,0.8095961,0.17577179,0.56089985,0.8089754,0.17592658,0.5610002,0.80876845,0.1765569,0.56119895,0.80841994,0.17751865,0.5594963,0.80956715,0.17766535,0.5585748,0.8102774,0.17732656,0.55760837,0.81087434,0.17763935,0.55619794,0.81179947,0.17783555,0.5552173,0.8123445,0.17841005,0.5551975,0.8121695,0.17926641,0.5561083,0.8113867,0.1799866,0.5562657,0.81112164,0.18069349,0.5556824,0.81128305,0.1817603,0.5555957,0.8108394,0.1839916,0.5524531,0.811681,0.18965626,0.551392,0.81273544,0.18822315,0.55018985,0.8136634,0.18773113,0.54906905,0.81450677,0.187355,0.54833823,0.8151209,0.18682389,0.5465857,0.81628925,0.18685816,0.5429695,0.818656,0.18704635,0.5403033,0.8204312,0.18698953,0.53810906,0.8217577,0.1874912,0.5373414,0.8221954,0.18777342,0.5368195,0.82196885,0.19024193,0.5369842,0.82167846,0.19102998,0.5373843,0.82127124,0.19165531,0.5352373,0.82160366,0.19618465,0.5339603,0.8222172,0.19709176,0.53244007,0.8227088,0.19914258,0.53136927,0.8228638,0.20134993,0.5301864,0.8230333,0.2037611,0.530126,0.8227233,0.2051651,0.5303257,0.82222843,0.20662789,0.53085124,0.82109374,0.20976663,0.5304552,0.82101494,0.21107282,0.5304423,0.8207599,0.21209466,0.5326233,0.8187471,0.2143959,0.5321985,0.81868833,0.21567136,0.53191763,0.8185865,0.21674798,0.5323396,0.8178727,0.2184005,0.53177685,0.81769276,0.22043592,0.531236,0.8174346,0.2226859,0.53045243,0.81651956,0.22785108,0.529951,0.8162932,0.2298205,0.5292337,0.8158085,0.23316991,0.5282396,0.8157291,0.23568816,0.52763385,0.8160701,0.2358645,0.52774876,0.8153168,0.23820108,0.5267253,0.81536317,0.24029846,0.52693456,0.81506014,0.24086718,0.52707094,0.8147682,0.24155536,0.5269749,0.8146378,0.24220403,0.52710074,0.81427824,0.24313727,0.52787507,0.8135182,0.24399988,0.5287165,0.81273896,0.24477391,0.5279648,0.8127831,0.24624547,0.527311,0.8130665,0.24671027,0.5271645,0.81278116,0.24796057,0.5260101,0.81271607,0.25061116,0.5254485,0.81293994,0.2510627,0.5247654,0.8125661,0.2536881,0.52472657,0.81211334,0.25521362,0.5249085,0.8118771,0.25559095,0.52460665,0.81143606,0.25760332,0.5239309,0.8115232,0.2587017,0.52386427,0.8115048,0.25889426,0.5235939,0.8112876,0.26011896,0.52331746,0.8108923,0.26190174,0.52292436,0.8107621,0.26308727,0.5224507,0.81076807,0.26400828,0.52255315,0.8104432,0.26480183,0.5227388,0.8100951,0.26549968,0.52112997,0.8097272,0.26975077,0.5212323,0.80947256,0.27031645,0.52120215,0.8091522,0.27133194,0.51914436,0.809044,0.27556652,0.5192451,0.808811,0.27606022,0.5170984,0.8089649,0.27961576,0.5151289,0.8095221,0.28163126,0.5149924,0.8092168,0.2827561,0.5152493,0.8086456,0.28391975,0.5161025,0.8078096,0.2847489,0.5180257,0.80603623,0.2862778,0.51823765,0.8054881,0.2874347,0.51864594,0.80511874,0.28773287,0.51971763,0.80471873,0.28691688,0.52085966,0.8043857,0.2857776,0.52112377,0.80453306,0.28487998,0.5212207,0.80475974,0.28406122,0.52279335,0.80339783,0.28502464,0.5222263,0.80350083,0.28577286,0.5220568,0.80329484,0.2866603,0.5223292,0.80288196,0.2873199,0.5230651,0.80215895,0.28799993,0.52385646,0.80164164,0.28800184,0.52456385,0.80151683,0.28706014,0.52563286,0.8011431,0.28614637,0.52653563,0.8009661,0.28497985,0.52687746,0.80102885,0.28417057,0.52807564,0.80045867,0.2835527,0.53011477,0.799767,0.2816932,0.5319359,0.79804426,0.2831424,0.5313626,0.7981721,0.28385738,0.53035647,0.7983138,0.2853367,0.52931684,0.79840976,0.28699392,0.5284363,0.7985934,0.28810352,0.52754325,0.79852057,0.28993624,0.5269366,0.7983461,0.2915154,0.5272049,0.79793483,0.2921557,0.52777994,0.7971642,0.29321918,0.52801126,0.7967349,0.29396865,0.52845055,0.79594624,0.29531267,0.529142,0.7952172,0.2960376,0.5306671,0.7940946,0.29632106,0.53476495,0.79101604,0.29718694,0.53476614,0.7905121,0.29852274,0.5349329,0.7896287,0.30055493,0.5340874,0.78958064,0.30218056,0.5339463,0.7893583,0.3030096,0.5341369,0.78827405,0.30548614,0.5338107,0.78775775,0.30738226,0.534136,0.78729296,0.3080074,0.5348433,0.786834,0.30795267,0.53665155,0.7862304,0.30634433,0.53795826,0.7855653,0.3057581,0.5389463,0.7848186,0.3059357,0.53982204,0.7842479,0.3058552,0.5440856,0.78291994,0.30167404,0.5446328,0.78252536,0.30171046,0.5470615,0.7819764,0.29872495,0.5507582,0.7796625,0.29797953,0.5514866,0.7786486,0.29928067,0.5529906,0.77703863,0.30068648,0.548735,0.77461094,0.31443244,0.5475699,0.77532136,0.3147126,0.54708666,0.7754989,0.31511512,0.5469174,0.77538216,0.3156958,0.5471147,0.7749364,0.31644773,0.54792285,0.7717476,0.32277888,0.54723656,0.77254313,0.32203928,0.54682493,0.77278113,0.3221673,0.54639715,0.7729596,0.32246497,0.544488,0.77326393,0.32495493,0.54364765,0.77348864,0.32582596,0.5431036,0.7735762,0.32652485,0.5390502,0.77569747,0.32820466,0.537191,0.7768278,0.3285793,0.5350368,0.7778464,0.3296825,0.5338454,0.7780429,0.3311468,0.53387517,0.7779391,0.33134297,0.5331637,0.7779016,0.33257416,0.53170097,0.7781516,0.33432642,0.53167313,0.77812266,0.334438,0.5317828,0.77766055,0.3353374,0.53225857,0.7769367,0.33625904,0.5302642,0.77655834,0.3402602,0.52844995,0.7775416,0.3408369,0.52712065,0.7778614,0.3421629,0.52637357,0.77764606,0.3437986,0.5261761,0.7774928,0.3444468,0.5257258,0.77693564,0.34638622,0.5251357,0.7771953,0.34669867,0.5245083,0.77736044,0.34727767,0.52444273,0.7764434,0.3494216,0.52436095,0.7754365,0.3517724,0.51957387,0.7743344,0.3611776,0.5170484,0.7757136,0.3618416,0.5153262,0.7765014,0.3626079,0.5138054,0.777125,0.36342916,0.5131131,0.777273,0.36409006,0.51291233,0.77703863,0.3648724,0.51322925,0.776553,0.36546028,0.5137376,0.77617055,0.3655584,0.5143434,0.7758249,0.3654404,0.51556784,0.7735518,0.36852053,0.51425785,0.77472734,0.36788088,0.511993,0.7762012,0.3679334,0.51040924,0.7770987,0.3682391,0.5095833,0.77759355,0.3683383,0.5081331,0.77840954,0.36861822,0.50708234,0.7789132,0.36900088,0.50534177,0.77948797,0.37017313,0.50435257,0.7799042,0.37064525,0.5017392,0.78151566,0.37079787,0.50068897,0.7820051,0.37118545,0.4995574,0.7824166,0.37184232,0.49884447,0.7825386,0.3725419,0.49688503,0.78224885,0.37575528,0.4960452,0.7825492,0.37623903,0.49544746,0.7825853,0.37695098,0.49539918,0.78258795,0.3770089,0.49498874,0.7823858,0.37796643,0.4948608,0.78239906,0.37810647,0.4945437,0.7824086,0.3785014,0.49371713,0.78274024,0.37889463,0.49234384,0.78363097,0.3788404,0.49079186,0.78457403,0.37890232,0.4897469,0.7848777,0.37962466,0.4887346,0.784481,0.38174337,0.4880934,0.7824341,0.3867321,0.48719734,0.7824129,0.38790318,0.48678726,0.78229606,0.38865286,0.48586425,0.78258,0.38923573,0.48533794,0.7830445,0.38895804,0.48461756,0.78363365,0.3886698,0.48333,0.7842077,0.38911486,0.4819759,0.7845777,0.39004755,0.48065343,0.7849839,0.39086136,0.47994298,0.7850921,0.39151642,0.48039865,0.7835759,0.39398724,0.4804011,0.7826691,0.39578253,0.48070398,0.7811907,0.3983275,0.4808008,0.7803158,0.3999222,0.480173,0.7799346,0.40141746,0.47955978,0.77930695,0.4033647,0.4786649,0.7782683,0.4064215,0.47766244,0.77806324,0.4079904,0.47772256,0.7774424,0.409102,0.47880107,0.77551454,0.41149327,0.478178,0.7741283,0.4148146,0.47795665,0.77322716,0.41674593,0.47703457,0.7728098,0.41857255,0.47632116,0.7729537,0.41911906,0.47617376,0.7728742,0.4194331,0.47710443,0.7721831,0.4196481,0.47934443,0.76999855,0.4211071,0.48096862,0.7686014,0.42180687,0.48195517,0.7677967,0.42214623,0.4827702,0.7671635,0.42236602,0.47934195,0.76570797,0.42886207,0.47720847,0.76709354,0.42876524,0.47374946,0.7692024,0.4288229,0.47172078,0.7702682,0.4291462,0.47057143,0.7706642,0.42969662,0.4699583,0.77054363,0.43058294,0.46984205,0.7700453,0.43160018,0.46983775,0.76960146,0.43239573,0.46990108,0.7691044,0.43321055,0.47021377,0.76847875,0.43398088,0.47099695,0.7676154,0.43465915,0.47199216,0.7660543,0.43633044,0.4716923,0.7653603,0.4378698,0.47148213,0.76438975,0.43978742,0.47221035,0.7626341,0.44204822,0.47358513,0.7604314,0.44436613,0.47472778,0.75889736,0.4457671,0.4757342,0.75817823,0.44591787,0.47914687,0.7551483,0.4474029,0.47895294,0.7543617,0.44893488,0.47934383,0.7524789,0.45166916,0.48081374,0.74980944,0.45453703,0.48276052,0.74794006,0.45555234,0.48512983,0.74691194,0.4547215,0.48670068,0.7464578,0.45378754,0.4900673,0.74337965,0.45521498,0.4906099,0.74253374,0.4560104,0.4915818,0.7417038,0.4563144,0.49294913,0.7407164,0.45644316,0.4941578,0.74011153,0.45611733,0.49464905,0.740437,0.45505542,0.49506408,0.7408504,0.45392987,0.49613276,0.7406872,0.45302835,0.49905002,0.7403436,0.45037812,0.5013717,0.7397343,0.448798,0.5033663,0.7383369,0.4488663,0.5057261,0.7367641,0.44879815,0.50906307,0.7344682,0.44878867,0.51150906,0.73254865,0.44914466,0.51382816,0.73081696,0.44931847,0.51482844,0.72821325,0.45239043,0.5142525,0.7284749,0.45262426,0.5138532,0.7285613,0.45293853,0.5135663,0.7284562,0.4534327,0.513468,0.72818345,0.45398176,0.5136792,0.7277563,0.45442754,0.51419646,0.7271733,0.45477575,0.51487213,0.72664195,0.4548606,0.515499,0.72629994,0.45469683,0.51579154,0.7261722,0.45456895,0.5176492,0.72546995,0.45357764,0.51973665,0.7246788,0.45245382,0.5224042,0.7235556,0.45117742,0.5228932,0.723415,0.45083633,0.52236027,0.7246148,0.4495254,0.5232135,0.72429466,0.44904882,0.5223505,0.72520065,0.44859105,0.52258027,0.7258218,0.44731712,0.5236507,0.72591734,0.44590795,0.52380174,0.72618574,0.4452932,0.5247652,0.7262326,0.44408074,0.5255045,0.7265225,0.44273022,0.52600497,0.7269856,0.44137365,0.5261827,0.72773004,0.43993264,0.52678764,0.7289079,0.4372505,0.5268198,0.72991765,0.43552393,0.5271884,0.7299584,0.43500936,0.52770907,0.7298436,0.4345704,0.5280337,0.72995085,0.4339956,0.52821094,0.73062384,0.43264538,0.5284819,0.73077804,0.43205374,0.5290095,0.73183763,0.4296075,0.534667,0.7315687,0.42301118,0.53620833,0.7305645,0.4227956,0.5380754,0.7301011,0.42122114,0.5384897,0.730185,0.42054582,0.5396616,0.7294415,0.42033374,0.5401586,0.7293104,0.41992268,0.5404189,0.7294404,0.41936156,0.540969,0.7300999,0.41750044,0.5410173,0.73042595,0.41686714,0.54085517,0.7309211,0.41620916,0.54103845,0.73124266,0.4154054,0.5427853,0.7308432,0.41382653,0.54453015,0.7308106,0.4115857,0.549602,0.7266748,0.41216674,0.54983103,0.7259443,0.4131473,0.5504565,0.72507745,0.4138361,0.55540454,0.7189501,0.4178954,0.55616003,0.7166616,0.42081133,0.55737996,0.7141399,0.42347586,0.55860496,0.7132104,0.42342824,0.5613228,0.71211636,0.42167157,0.55963695,0.71133333,0.4252192,0.55730057,0.71200925,0.4271521,0.55646294,0.71208286,0.42812034,0.5537855,0.7118836,0.43190667,0.55128604,0.71201944,0.43487015,0.5503687,0.7113255,0.43716156,0.5492764,0.7115094,0.43823484,0.54940456,0.7105488,0.4396305,0.5495842,0.7099369,0.4403938,0.55028844,0.70860684,0.44165474,0.55033016,0.7076031,0.44320932,0.55002713,0.7068639,0.44476244,0.5503474,0.7061413,0.4455134,0.5510848,0.70530266,0.44593006,0.5517804,0.7047775,0.4459003,0.55400825,0.7035061,0.44514495,0.55558705,0.702386,0.444946,0.55620307,0.70215124,0.4445468,0.55823594,0.70129514,0.44334844,0.55684453,0.70142204,0.44489464,0.5564163,0.7013127,0.44560224,0.5543921,0.70128846,0.44815615,0.551981,0.70251036,0.44921735,0.5503037,0.70256734,0.4511817,0.54847366,0.7024515,0.4535841,0.54798645,0.7019236,0.45498812,0.5482427,0.7012398,0.45573312,0.5487619,0.7004301,0.456353,0.54927576,0.6997443,0.45678666,0.5499418,0.69910353,0.45696643,0.55066293,0.69873357,0.45666367,0.552071,0.69834995,0.4555491,0.5558773,0.69707465,0.45286572,0.55894655,0.6941377,0.4535985,0.561895,0.69151485,0.45396164,0.563439,0.6902358,0.45399457,0.56490165,0.6893251,0.4535604,0.56756186,0.68652505,0.4544853,0.5685623,0.6849377,0.45562842,0.569114,0.68421775,0.4560212,0.569594,0.684132,0.45555034,0.5708839,0.68417174,0.4538729,0.5745815,0.6820538,0.4523922,0.5752525,0.68141663,0.4524997,0.5759251,0.68085444,0.45249036,0.57673365,0.6803324,0.45224553,0.57740474,0.6800888,0.4517555,0.5777671,0.68021625,0.45109987,0.5780356,0.68046236,0.45038417,0.57898784,0.6803212,0.44937304,0.580335,0.67943877,0.44897017,0.58058375,0.6796482,0.44833112,0.587076,0.6734108,0.44928807,0.5875093,0.67220086,0.45053178,0.58834434,0.6704348,0.45207095,0.5888015,0.6697573,0.45247972,0.590376,0.6676492,0.45354247,0.59155834,0.666277,0.45401958,0.5916438,0.66840893,0.45076278,0.59351826,0.6717963,0.44319952,0.5949576,0.6724734,0.44023293,0.5960072,0.67297214,0.43804547,0.6095378,0.6673649,0.42788765,0.610207,0.66666263,0.42802837,0.6129537,0.6644314,0.42757297,0.6141508,0.66340727,0.4274454,0.61577225,0.6620722,0.4271826,0.6178613,0.66061664,0.42641893,0.6186839,0.659953,0.4262538,0.6193032,0.65963787,0.42584202,0.61982584,0.659513,0.42527467,0.62066156,0.6597237,0.42372617,0.6221188,0.66031784,0.4206527,0.6984395,0.67352855,0.2419537,0.6965487,0.6796832,0.22989269,0.70547265,0.6759357,0.2131181,0.7010939,0.6826095,0.20618351,0.7097484,0.6811415,0.17973173,0.71785086,0.6803562,0.1476673,0.725664,0.675032,0.13320473,0.7269071,0.6744716,0.12920576,0.65184623,0.75761724,0.03335642,0.6474917,0.76111615,0.038167994,0.6468597,0.7616482,0.03826902,0.6454956,0.76275593,0.039228395,0.6357199,0.7692683,0.06392604,0.6260374,0.7760163,0.0766544,0.626118,0.7742724,0.0920787,0.6225046,0.77655566,0.09720772,0.6231099,0.7744832,0.109132096,0.5668067,0.81260335,0.13566858,0.5677256,0.81073666,0.14280653,0.5684886,0.8092398,0.14816086,0.57294255,0.8037286,0.16049069,0.5683692,0.8048771,0.17067309,0.5632322,0.80947804,0.16587572,0.5605754,0.80925333,0.17568207,0.5607631,0.80865216,0.17783828,0.53624564,0.82113993,0.19537105,0.531028,0.82119733,0.20891199,0.53114974,0.81702596,0.2243846,0.528731,0.8124926,0.24555916,0.52668184,0.8126153,0.24952497,0.51948285,0.80854887,0.27638087,0.51930636,0.8084676,0.27694947,0.51695985,0.80709416,0.28522196,0.5411121,0.7838771,0.3045232,0.54388136,0.7830106,0.30180687,0.5500607,0.7738861,0.31390068,0.5480174,0.77373165,0.31783056,0.5414219,0.77425134,0.32771516,0.53169143,0.77592385,0.33947957,0.5167384,0.7725539,0.36897406,0.48025808,0.7845074,0.39230132,0.48089987,0.7806658,0.39911923,0.4794622,0.77859247,0.40485772,0.47762862,0.7727482,0.4180086,0.47178265,0.76670027,0.43542144,0.4770112,0.7575944,0.44554573,0.48911,0.74462616,0.4542062,0.5005726,0.7401642,0.44898108,0.50812155,0.73516303,0.448718,0.52222,0.7239996,0.45067817,0.54925734,0.7274021,0.41134247,0.556685,0.7021773,0.443902,0.5556719,0.70092624,0.44713664,0.5550919,0.7010065,0.4477309,0.58136433,0.6797545,0.447157,0.591925,0.66991615,0.44814852,0.6088039,0.6680805,0.42781565,0.6167667,0.6614218,0.4267554,0.6215409,0.66014314,0.4217795,0.71277875,0.68163425,0.16529137,0.6513731,0.7579898,0.034125894,0.6265434,0.7752347,0.080340184,0.6258357,0.7742804,0.09391236,0.6221134,0.7768026,0.0977376,0.6193292,0.7781623,0.10437824,0.5679833,0.810193,0.14485237,0.5702567,0.80723554,0.15224367,0.53112054,0.820304,0.21216115,0.5327024,0.81891876,0.21354192,0.5176937,0.80648035,0.28562686,0.5229223,0.80369765,0.2839409,0.5482761,0.7715454,0.32266232,0.5325266,0.7763231,0.3372505,0.52488613,0.7746826,0.3526491,0.49880946,0.7824447,0.37278602,0.47835064,0.7764278,0.4102932,0.48004657,0.76528025,0.42883736,0.47897425,0.75583446,0.44642794,0.5157347,0.72789663,0.4518675,0.53429073,0.73170984,0.42324236,0.5514009,0.72434103,0.41386834,0.55383605,0.7216593,0.4152992,0.5609006,0.71104157,0.4240405,0.554042,0.69797903,0.45372102,0.56559074,0.68877107,0.45354322,0.5669557,0.6873518,0.45399195,0.5729793,0.6833254,0.45250544,0.5818692,0.67970073,0.44658166,0.5865194,0.67466605,0.44813022,0.59237856,0.6708242,0.44618663,0.71288127,0.68166107,0.16473772,0.72634655,0.6747981,0.13064565,0.6271643,0.77462983,0.08132399,0.6212688,0.77655566,0.10481618,0.600427,0.7903939,0.121510945,0.5707576,0.80331206,0.17007503,0.566963,0.8060029,0.170036,0.56335706,0.808584,0.169767,0.53690565,0.8209176,0.19449064,0.5320247,0.81967664,0.21232046,0.55110174,0.77360964,0.31275386,0.5423144,0.7737786,0.32735556,0.52150047,0.7734563,0.3602814,0.49780902,0.7822138,0.37460345,0.48845977,0.78319716,0.38471973,0.4863947,0.78234017,0.38905537,0.4876742,0.7458536,0.45373592,0.52205306,0.72560424,0.44828463,0.5629153,0.71119195,0.42110848,0.55516416,0.69751567,0.4530614,0.5662834,0.6881314,0.45365,0.6011663,0.6883913,0.4058527,0.5979881,0.79184794,0.12404469,0.5697865,0.80792606,0.150329,0.5636059,0.80900997,0.16688709,0.5375091,0.82098573,0.19252643,0.5374203,0.820775,0.1936695,0.5325523,0.81918234,0.21290462,0.52492005,0.8117482,0.25597632,0.5228527,0.80387306,0.2835721,0.53360224,0.79223394,0.2960303,0.5516751,0.7734994,0.31201476,0.53229904,0.77599746,0.3383573,0.52334315,0.7727536,0.3591154,0.51750165,0.7720813,0.36889353,0.48160493,0.76445186,0.4285675,0.47802383,0.7569939,0.44548115,0.4786057,0.7564279,0.44581774,0.51662666,0.7278376,0.45094275,0.53121394,0.7325109,0.42572236,0.56226385,0.7108918,0.42248344,0.5574044,0.70187384,0.44347876,0.57180357,0.6840182,0.45294574,0.58548254,0.6763061,0.4470125,0.6079914,0.6686789,0.4280362,0.70443463,0.67819846,0.20932929,0.5716693,0.8089473,0.1371076,0.5975773,0.792118,0.12430003,0.5697983,0.81018,0.1376164,0.5728587,0.803903,0.15991555,0.5637338,0.8086356,0.16826354,0.5226263,0.80409855,0.2833501,0.53197116,0.7982794,0.28241223,0.53438,0.7916168,0.29627836,0.5524432,0.773439,0.31080332,0.52525204,0.7739897,0.3536244,0.5156356,0.77473545,0.36593017,0.48383033,0.7661917,0.42291656,0.4826439,0.7641171,0.4279952,0.51695615,0.7280812,0.4501711,0.58323437,0.6789309,0.4459715,0.6831514,0.670345,0.28972703,0.6206349,0.77711964,0.1043905,0.57068634,0.80958366,0.13744596,0.5635249,0.8085614,0.16931683,0.5547555,0.81063837,0.18738134,0.5532338,0.8111884,0.18948801,0.5488602,0.77253443,0.3192852,0.5251757,0.7733287,0.35518047,0.51704514,0.77339953,0.36676618,0.5165593,0.7286652,0.4496816,0.53024685,0.7326635,0.42666432,0.59255654,0.67104477,0.44561824,0.605597,0.67014456,0.42913693,0.6866968,0.66796315,0.28683206,0.7014082,0.68203384,0.20701781,0.71013933,0.6826683,0.17223836,0.57119846,0.8092483,0.13729326,0.52533454,0.80864364,0.26480004,0.52216303,0.8044222,0.2832856,0.5489621,0.7721122,0.32013023,0.5369723,0.7724379,0.33911723,0.5244547,0.77254367,0.35794345,0.49943063,0.77639157,0.38442832,0.4834175,0.76463693,0.4261899,0.58244514,0.6795113,0.4461189,0.60308576,0.6714642,0.4306082,0.6287793,0.6977871,0.34311783,0.68650615,0.66826814,0.28657797,0.69556403,0.6785898,0.23602231,0.6966229,0.67971635,0.22956958,0.6366901,0.76787364,0.07068115,0.52782094,0.8113673,0.2511738,0.53106284,0.7992382,0.28140813,0.53171176,0.7986924,0.28173226,0.5537109,0.77379054,0.30765647,0.5249359,0.7727563,0.35677743,0.53687716,0.7721512,0.3399198,0.5177106,0.77264047,0.36742666,0.5013946,0.7691447,0.3962573,0.48406005,0.76523966,0.424375,0.5676274,0.6977306,0.43700245,0.60062116,0.672754,0.43203735,0.62186587,0.70147824,0.34815377,0.6862438,0.66882145,0.28591508,0.63609743,0.76803577,0.074169785,0.59614044,0.7922699,0.13009623,0.5216222,0.8046894,0.28352287,0.5280049,0.81133264,0.25089878,0.5476381,0.781681,0.2984415,0.5366555,0.7720448,0.34051096,0.517904,0.77218693,0.36810702,0.5015539,0.76911473,0.39611384,0.51780444,0.7720218,0.3685932,0.49624038,0.75039554,0.43663716,0.5728812,0.6955207,0.4336567,0.5999608,0.67306674,0.4324676,0.62272316,0.7017525,0.34606263,0.68599576,0.6693427,0.2852897,0.63502175,0.76813835,0.08191977,0.5691541,0.8087103,0.14849697,0.5964716,0.791995,0.13025208,0.5282683,0.8112011,0.25076964,0.5494637,0.78069884,0.29765573,0.53357416,0.77186626,0.34571826,0.48409694,0.76562244,0.42364183,0.5017069,0.76883173,0.39646935,0.496268,0.7505921,0.43626773,0.5796235,0.6923249,0.42979392,0.5989557,0.67346686,0.43323722,0.6221238,0.70204955,0.34653777,0.68505114,0.67144746,0.28260085,0.7004239,0.6952934,0.16116253,0.6859119,0.720505,0.10196765,0.660576,0.7477135,0.06755679,0.6351728,0.768047,0.081605196,0.5968078,0.7915882,0.13118151,0.5520048,0.81069,0.19512156,0.53267276,0.8086569,0.24966721,0.5335348,0.77178365,0.34596333,0.51455945,0.7538891,0.40850928,0.511742,0.7445993,0.4285931,0.51657844,0.76303047,0.38849872,0.57298344,0.70069706,0.42510414,0.5940476,0.688991,0.41520938,0.6408414,0.6968505,0.32205853,0.62672347,0.70258826,0.33702737,0.612232,0.70828074,0.35144043,0.6781498,0.6761153,0.28806415,0.70032465,0.6950089,0.1628127,0.6993331,0.70021653,0.14363164,0.7007519,0.68976456,0.18213081,0.6862022,0.7201276,0.102678016,0.6492972,0.75438964,0.0964855,0.6479898,0.7579723,0.07474808,0.59847605,0.7895074,0.13603102,0.5536041,0.8013155,0.22675098,0.5430221,0.80027807,0.25432664,0.5627893,0.80235046,0.1987508,0.5320087,0.7536429,0.38599107,0.52102005,0.74447423,0.41748798,0.54109067,0.7626672,0.35434392,0.5975321,0.6733969,0.4353068,0.5737145,0.7009019,0.42377847,0.59362423,0.6889953,0.41580725,0.59807223,0.6734756,0.43444237,0.67805576,0.67649007,0.28740504,0.6989796,0.6924202,0.17883454,0.69893545,0.6989324,0.1516006,0.6979009,0.685851,0.20625907,0.66088057,0.74140394,0.11643525,0.6422036,0.75818753,0.11281037,0.6791287,0.72414315,0.12000386,0.59852815,0.78941745,0.13632397,0.5537177,0.8012798,0.22659963,0.56284225,0.8023327,0.1986727,0.5430826,0.8002602,0.25425372,0.5629481,0.8022971,0.19851635,0.53565925,0.7548041,0.37860277,0.542708,0.7632388,0.35062033,0.523079,0.74506426,0.41384488,0.54586524,0.76438016,0.3431532,0.5739757,0.70093995,0.42336163,0.59249234,0.6904457,0.4150151,0.6860267,0.6817281,0.25419313,0.6760062,0.6848539,0.27201238,0.6655148,0.6879671,0.28946713,0.69872344,0.6991472,0.1515874,0.6988399,0.69256467,0.178821,0.6988648,0.69900405,0.15159626,0.6978319,0.6859239,0.2062499,0.6611849,0.74105066,0.1169549,0.6792752,0.7239617,0.12026917,0.64236146,0.75801593,0.11306452,0.6795679,0.72359854,0.12080004,0.5844169,0.7963115,0.15602835,0.5976528,0.7892026,0.14131683,0.6104364,0.78198636,0.12595534,0.54358137,0.79985183,0.25447282,0.5540575,0.8010082,0.22672935,0.5432489,0.8001241,0.25432673,0.5631213,0.80216163,0.19857281,0.53864354,0.7432207,0.39684528,0.5335161,0.7438358,0.40257773,0.5453436,0.7535959,0.36700636,0.5503599,0.7637866,0.33724475,0.5677618,0.71729964,0.40389082,0.6736198,0.6875819,0.27104887,0.6643312,0.6893268,0.28895068,0.6848273,0.6830988,0.25374708,0.66195714,0.69203895,0.2879147,0.6498552,0.6964698,0.30433205,0.6373306,0.7008742,0.32028908,0.6385031,0.6995354,0.32088003,0.6243998,0.70525205,0.3357744,0.6110799,0.7096032,0.3507773,0.6630371,0.7348653,0.14267012,0.6811076,0.7172419,0.1471619,0.6714133,0.7292567,0.13186708,0.66382813,0.72861814,0.16866489,0.64452404,0.75200593,0.13811561,0.63407344,0.7633601,0.12341861,0.65444684,0.7404241,0.15320416,0.68091404,0.70434827,0.200623,0.68156195,0.7108249,0.1737851,0.6726546,0.71659166,0.18447793,0.68859464,0.6918916,0.21707931,0.69025403,0.70500994,0.16281992,0.58366966,0.7868272,0.20058087,0.56904316,0.7939717,0.21400663,0.55918294,0.7927973,0.24245997,0.54580456,0.7957543,0.2624357,0.5718149,0.7898216,0.22183217,0.59471744,0.78381413,0.17873596,0.60492975,0.78078246,0.15632889,0.587971,0.7921822,0.16351599,0.61427915,0.7777323,0.13339229,0.5458198,0.75405055,0.36536086,0.5505526,0.76400995,0.33642337,0.5389286,0.7434521,0.3960239,0.55093443,0.7644562,0.33478048,0.5542928,0.7746664,0.30438685,0.56727403,0.71774334,0.40378782,0.5482804,0.7282758,0.41109976,0.68498033,0.68365186,0.25183737,0.67379045,0.6880533,0.26942363,0.68489355,0.6833359,0.25292853,0.67367715,0.6877391,0.27050713,0.6621318,0.6924295,0.2865709,0.65002066,0.6967804,0.30326605,0.6620622,0.6922733,0.28710836,0.6848495,0.6831778,0.2534742,0.6374735,0.7011058,0.3194968,0.6245075,0.7054055,0.33525142,0.63737833,0.7009514,0.32002497,0.6111398,0.7096795,0.3505185,0.66202736,0.69219524,0.2873771,0.65434206,0.7404721,0.15341966,0.6442221,0.7521471,0.13875398,0.6542896,0.7404961,0.15352742,0.6443228,0.7521,0.13854125,0.63373566,0.76352143,0.12415361,0.63378394,0.7634984,0.12404861,0.6541847,0.7405441,0.15374276,0.6636098,0.72871596,0.16910082,0.67248434,0.71666634,0.18480848,0.67254114,0.7166415,0.18469828,0.680796,0.70439893,0.20084554,0.68853337,0.69191736,0.21719156,0.6338806,0.7634523,0.12383867,0.55323166,0.78866214,0.26822886,0.5629685,0.77904034,0.27597573,0.57429844,0.7784174,0.25347117,0.56426865,0.78805125,0.24612218,0.5847274,0.7777937,0.23050119,0.59423625,0.7771692,0.20710196,0.5795977,0.78264016,0.22702627,0.5482921,0.79340214,0.26436508,0.6028074,0.77654403,0.18331027,0.6104245,0.775918,0.15916374,0.59742564,0.78140247,0.18025738,0.6170731,0.77529126,0.13470075,0.57442087,0.7874396,0.22356102,0.54903847,0.74208695,0.3845305,0.54569566,0.7425423,0.38839042,0.55215794,0.7531571,0.35759762,0.5539032,0.7640179,0.33085927,0.5664523,0.71843576,0.40371007,0.5466322,0.729638,0.41087925,0.6628746,0.7208712,0.20234132,0.64462197,0.73694605,0.20340374,0.65278965,0.72504973,0.21947321,0.66038066,0.712933,0.23584716,0.65435153,0.7328444,0.18644874,0.6422451,0.7292017,0.23619094,0.6344362,0.7410207,0.21995243,0.62380975,0.74506825,0.23608202,0.67819965,0.69627124,0.23505656,0.6708276,0.70867896,0.21855088,0.6266025,0.7600631,0.17225988,0.6452704,0.7445948,0.17089364,0.6254848,0.7674132,0.14087468,0.6260549,0.75261444,0.20402633,0.63588876,0.7486183,0.18765926,0.632206,0.7134304,0.30221283,0.63811344,0.7213628,0.26915976,0.6263253,0.7255382,0.2851509,0.61412275,0.72968704,0.30068266,0.64437115,0.70917934,0.28609514,0.6198397,0.73742545,0.2683328,0.63125634,0.733327,0.25248158,0.6066426,0.72185403,0.3330339,0.61962414,0.7176553,0.31786284,0.6561027,0.7049024,0.2695216,0.66738415,0.7005996,0.25250444,0.6494707,0.71716106,0.25272104,0.56501365,0.77674234,0.27826396,0.5761273,0.7764459,0.25536066,0.5638467,0.77805674,0.27695584,0.57490915,0.7777611,0.25410062,0.5863122,0.77614933,0.2320134,0.5955507,0.77585256,0.20825984,0.5856791,0.7768077,0.23140813,0.5632615,0.7787127,0.27630234,0.6038266,0.7755556,0.1841384,0.6111251,0.7752585,0.15968817,0.6031474,0.7762148,0.1835862,0.61743337,0.77496123,0.13494873,0.58536214,0.7771366,0.23110574,0.55012405,0.7415473,0.38401967,0.5497623,0.74172723,0.38419026,0.5460068,0.7300778,0.41092935,0.55286694,0.75280404,0.3572454,0.5542503,0.7638448,0.33067775,0.5661412,0.7186595,0.40374812,0.61970866,0.73737043,0.26878616,0.61975235,0.7373888,0.26863503,0.623667,0.74499583,0.23668693,0.61401933,0.72964996,0.3009838,0.6065827,0.72183526,0.33318344,0.6265626,0.7600278,0.17256027,0.6260272,0.75259656,0.20417729,0.62547266,0.76739573,0.14102377,0.6259716,0.75256085,0.20447905,0.6138122,0.7295756,0.30158585,0.6064632,0.72179765,0.33348253,0.61962116,0.7373337,0.26908836,0.6062236,0.7217224,0.33408046,0.55413026,0.7756173,0.30225396,0.56606513,0.7754982,0.27959406,0.5770736,0.77537906,0.25646344,0.56546485,0.77620953,0.27883384,0.5764431,0.77609056,0.25572807,0.5871369,0.7752599,0.23289983,0.5962384,0.7751407,0.20894176,0.5868073,0.7756159,0.23254506,0.5651641,0.77656484,0.27845386,0.60436237,0.77502155,0.18462864,0.61149514,0.7749023,0.16000035,0.6040052,0.77537763,0.18430181,0.6176244,0.7747831,0.13509727,0.5866424,0.77579373,0.23236781,0.57982296,0.7246518,0.3724044,0.560068,0.7359658,0.38036582,0.5731991,0.7216624,0.38813162,0.5724182,0.7417987,0.34938818,0.5639025,0.75847375,0.32669795,0.619214,0.7368772,0.2712674,0.6193506,0.73702943,0.27054104,0.62327874,0.7443946,0.23958354,0.6134627,0.72926754,0.30303872,0.6060095,0.7215665,0.33480477,0.62652326,0.759735,0.17398667,0.6259145,0.7524125,0.20519872,0.62549055,0.7672514,0.14172831,0.62579757,0.7521157,0.2066383,0.6127531,0.72865087,0.30594373,0.60557866,0.72125465,0.33625314,0.6189382,0.7365727,0.27272,0.60470647,0.7206304,0.3391487,0.5662831,0.77466613,0.28145316,0.5773249,0.7746658,0.2580481,0.56615925,0.7751418,0.28039053,0.57715786,0.7751414,0.2569914,0.58739996,0.7746655,0.23421073,0.5964912,0.7746651,0.20998119,0.5872952,0.7749033,0.23368613,0.56609666,0.7753794,0.2798595,0.60458356,0.77466476,0.18539995,0.6116634,0.77466446,0.16050811,0.6044363,0.77490264,0.18488568,0.6177188,0.7746641,0.13534749,0.58724254,0.7750222,0.23342398,0.58067936,0.7252325,0.3699314,0.5803951,0.725039,0.37075597,0.57292056,0.7421754,0.34776092,0.5641198,0.7586568,0.32589668,0.61852205,0.73611987,0.27487817,0.61866164,0.7362708,0.2741588,0.62288064,0.7437985,0.24245307,0.6123965,0.7283452,0.30738208,0.6044884,0.72047573,0.3398654,0.626481,0.75944483,0.17539991,0.6257384,0.75196874,0.20735131,0.62550753,0.76710826,0.14242627,0.62561744,0.7516746,0.2087776,0.611673,0.72773355,0.3102581,0.60404956,0.72016627,0.3412985,0.61824036,0.7358178,0.27631694,0.60316145,0.7195469,0.34416345,0.5819534,0.7504741,0.31323928,0.5911292,0.73376065,0.33490545,0.60898215,0.72523177,0.3212158,0.59926844,0.7165908,0.3568962,0.61653316,0.7337599,0.2854527,0.5888777,0.75865614,0.2786824,0.5994367,0.7421747,0.29975393,0.62193877,0.742174,0.24973959,0.6056166,0.75047344,0.26460925,0.5717577,0.7667209,0.29194558,0.62522465,0.7504728,0.21420728,0.60969234,0.7586555,0.22960196,0.62642455,0.7586548,0.17898385,0.61169493,0.7667196,0.19485986,0.62557983,0.76671886,0.1441943,0.5997873,0.7586558,0.2543552,0.59371406,0.76672024,0.2442205,0.6178232,0.7352997,0.27861962,0.6179632,0.73547244,0.277852,0.6224957,0.74311656,0.24551347,0.61130834,0.7273838,0.31179318,0.6029356,0.7193699,0.34492844,0.62645984,0.7591131,0.17690504,0.62556547,0.7515064,0.20953763,0.6255386,0.7669447,0.14316887,0.6254584,0.75117,0.21105796,0.6105671,0.7266837,0.3148628,0.60248095,0.71901566,0.34645814,0.6175401,0.73495406,0.28015482,0.60155964,0.7183066,0.34951627,0.6169415,0.7342379,0.28333348,0.617143,0.7344767,0.2822739,0.61004627,0.7262001,0.3169809,0.60123795,0.7180618,0.35057124,0.6253823,0.75093764,0.21210745,0.60058904,0.7175718,0.35268041,0.73788935,0.60376656,0.30163774,0.7389895,0.6027096,0.30105746,0.74053484,0.60142493,0.29982704,0.7413241,0.6011151,0.29849485,0.7413744,0.6021151,0.29634684,0.7417091,0.6019974,0.29574782,0.7416051,0.60232127,0.2953489,0.74114054,0.60372984,0.29363412,0.7415046,0.6043689,0.29139167,0.741561,0.6049391,0.29006207,0.74156797,0.60554427,0.2887788,0.74196243,0.6054052,0.28805596,0.74204683,0.6055815,0.28746745,0.74321777,0.60552317,0.28455064,0.7449298,0.6040192,0.2832672,0.74583936,0.60332483,0.2823523,0.7459475,0.60344374,0.28181192,0.74586624,0.6039044,0.28103915,0.7455934,0.604707,0.2800355,0.74484587,0.6058616,0.27952883,0.74422455,0.6101492,0.27174935,0.744776,0.60967714,0.27129772,0.7452481,0.609415,0.27058953,0.74563926,0.6093636,0.26962593,0.7455726,0.6099027,0.2685892,0.74504733,0.61103195,0.2674778,0.7440466,0.61242944,0.26706707,0.74219877,0.6148526,0.2666408,0.74210405,0.6154525,0.2655177,0.74166906,0.61669844,0.26383725,0.7409477,0.61829853,0.26211333,0.7399395,0.6202504,0.26034415,0.74481946,0.6180004,0.2516336,0.7462556,0.6157702,0.2528431,0.74714667,0.61453867,0.2532075,0.7474977,0.61431074,0.25272438,0.74775946,0.61437196,0.25179926,0.749021,0.6137928,0.24945119,0.7495687,0.6128471,0.25013041,0.75133973,0.6101856,0.25132066,0.75291044,0.6078753,0.25221717,0.7544493,0.60559714,0.25309744,0.755796,0.60359126,0.25387022,0.7570902,0.6020253,0.25373212,0.7590416,0.5996539,0.2535173,0.76044863,0.5980856,0.25300506,0.76110554,0.59758204,0.2522183,0.76153266,0.5974017,0.25135475,0.76173,0.59754515,0.2504139,0.7616232,0.5985547,0.24831915,0.7612491,0.60157675,0.24208519,0.7620378,0.6022199,0.23796973,0.76100594,0.60421956,0.23619623,0.76164293,0.60801405,0.224096,0.7618421,0.60789156,0.22375114,0.7620063,0.60779816,0.22344528,0.763268,0.60639703,0.22294529,0.76338917,0.6058663,0.22397088,0.76360655,0.6054547,0.22434285,0.7639333,0.60514605,0.22406268,0.7643848,0.6050409,0.22280349,0.76479,0.60621345,0.21817756,0.76499474,0.60639703,0.21694633,0.7646941,0.6069939,0.21633592,0.76476866,0.60763574,0.21426094,0.76536256,0.6073149,0.21304634,0.76579183,0.60713136,0.21202429,0.7678994,0.6057931,0.20819525,0.7685107,0.6051827,0.20771429,0.7405885,0.6355072,0.21831003,0.74015486,0.63554734,0.21965969,0.74002576,0.63530654,0.22078842,0.7388832,0.6341962,0.22769894,0.73768264,0.63454145,0.23061109,0.73746663,0.6344229,0.23162581,0.7373796,0.6341554,0.23263311,0.7370559,0.63387865,0.23440677,0.73743176,0.633026,0.23552597,0.7362043,0.6335246,0.23801206,0.7355954,0.6340849,0.23840249,0.7353926,0.6340684,0.23907106,0.73474324,0.6334699,0.2426278,0.73403674,0.63443017,0.24225709,0.73354733,0.6350406,0.24214,0.7330419,0.6353651,0.24281855,0.7324413,0.635446,0.24441367,0.7315949,0.6363083,0.24470507,0.7312567,0.6368032,0.24442844,0.73089683,0.63718426,0.24451168,0.73053056,0.6374732,0.24485306,0.73030925,0.6373951,0.24571522,0.7302907,0.63700294,0.24678479,0.7304022,0.6365535,0.24761325,0.7302614,0.6363451,0.24856235,0.7299589,0.636261,0.24966367,0.72993934,0.63598937,0.2504118,0.7284655,0.6356914,0.25541028,0.72717386,0.6369451,0.2559669,0.7268754,0.6370995,0.25643006,0.7264556,0.6372539,0.25723472,0.7260219,0.6371803,0.25863776,0.72576547,0.63665205,0.2606505,0.72526497,0.6370877,0.26097882,0.7249949,0.6372112,0.26142746,0.7251166,0.63685316,0.2619617,0.7249241,0.6368939,0.26239508,0.72433305,0.6367927,0.26426637,0.723443,0.63684195,0.26657566,0.72276354,0.6370864,0.26783177,0.7224561,0.63707125,0.26869583,0.72225237,0.63651013,0.27056676,0.7219088,0.6365154,0.27146983,0.7215428,0.6364122,0.272682,0.7199924,0.63830936,0.27234575,0.718756,0.6395877,0.2726121,0.7174558,0.64207965,0.27016813,0.7181602,0.64158034,0.269482,0.7182641,0.6417137,0.26888707,0.71799636,0.6421247,0.2686208,0.71749514,0.6426622,0.26867452,0.7183473,0.6450944,0.26044255,0.71998465,0.64418817,0.25815457,0.72082436,0.6437213,0.25697312,0.72136736,0.6434454,0.2561389,0.7227024,0.64211756,0.25570747,0.72283983,0.64217895,0.2551643,0.7228167,0.64244676,0.25455502,0.72266847,0.64277387,0.25414982,0.7217729,0.6445394,0.2522159,0.7220824,0.6452923,0.24938898,0.72179365,0.64573294,0.24908404,0.7413896,0.60541064,0.28951588,0.74180394,0.60602766,0.2871538,0.74362236,0.6073663,0.27952087,0.7425722,0.6140928,0.26735103,0.742256,0.61462134,0.2670143,0.76119936,0.6004277,0.24507576,0.7623727,0.60763574,0.22263575,0.76463324,0.60575444,0.21999434,0.7661661,0.6072993,0.21018331,0.7401504,0.63489705,0.2215471,0.73788834,0.63224125,0.23620275,0.7369913,0.63285047,0.23736908,0.7319871,0.63579273,0.24487233,0.7305311,0.6348905,0.25147238,0.7293153,0.6349096,0.2549296,0.7169558,0.64236706,0.27081168,0.71716803,0.643065,0.26858413,0.74219424,0.60633606,0.28548962,0.7435624,0.6102775,0.2732698,0.74792945,0.6147242,0.2504309,0.7606178,0.6055375,0.23406185,0.76286113,0.60704,0.22258791,0.7668095,0.6067799,0.20933568,0.7392234,0.63415146,0.22671716,0.7378923,0.632131,0.23648545,0.7218632,0.6439026,0.25358045,0.7411719,0.6030469,0.29495537,0.74175036,0.6062222,0.28688166,0.7430827,0.61987466,0.25215784,0.7485628,0.61442435,0.24927165,0.73540807,0.63305104,0.24170516,0.7298035,0.63465935,0.25415424,0.7168682,0.6435941,0.26811662,0.741789,0.6063781,0.28645194,0.74186385,0.60645944,0.2860857,0.7427825,0.6100628,0.27585796,0.7481966,0.6147416,0.24958889,0.74015886,0.6343873,0.2229744,0.73980194,0.6342167,0.22463813,0.7352675,0.6330834,0.24204779,0.7166503,0.64408773,0.26751307,0.71755826,0.6454876,0.26164085,0.742856,0.6085775,0.2789236,0.7425452,0.60949606,0.27774307,0.760467,0.6074936,0.22943732,0.7608979,0.60836923,0.22565769,0.7644674,0.6075897,0.21546288,0.7410454,0.62139213,0.25440818,0.71710074,0.6448977,0.26433587,0.73958206,0.62145627,0.25847727,0.7606049,0.60823864,0.22699323,0.7299445,0.634274,0.25471053,0.7466831,0.62218374,0.23526947,0.7368869,0.62991494,0.24536677,0.7461271,0.6224469,0.23633489,0.7398778,0.62191886,0.25651073,0.7372549,0.629717,0.24476862,0.7173536,0.6416876,0.2713686,0.7181407,0.64047295,0.2721548,0.72485584,0.6399322,0.25508988,0.7248473,0.64044875,0.25381437,0.7246153,0.64072424,0.25378162,0.7243627,0.64085317,0.25417697,0.7238136,0.6410023,0.2553624,0.7233372,0.6412142,0.256179,0.72326726,0.6412181,0.25636658,0.72350365,0.64095455,0.2563587,0.7240026,0.6404874,0.25611755,0.7245779,0.6399879,0.255739,0.95545775,0.19552656,-0.22106518,0.9553573,0.19569035,-0.22135416,0.9550387,0.19748521,-0.2211346,0.955174,0.19737162,-0.22065131,0.95534015,0.19676915,-0.22047016,0.955539,0.19578235,-0.22048691,0.9555216,0.19553159,-0.22078484,0.9563959,0.18531826,-0.22575198,0.95612943,0.18598394,-0.22633259,0.9562996,0.18707232,-0.22471084,0.95637274,0.18668808,-0.22471936,0.92253155,0.25291285,-0.2914973,0.9223795,0.2538436,-0.29116908,0.9228242,0.25316682,-0.29034817,0.923716,0.25131467,-0.28911892,0.92399955,0.2519407,-0.28766423,0.92423695,0.2515984,-0.28720078,0.9258863,0.24895643,-0.28417486,0.92600477,0.24912395,-0.28364146,0.9263366,0.24853799,-0.2830714,0.9268671,0.24746132,-0.28227687,0.9269812,0.24749608,-0.28187144,0.92749953,0.24724752,-0.28038058,0.92759323,0.24759264,-0.27976543,0.927596,0.24848267,-0.27896604,0.9277265,0.2493881,-0.27772132,0.9279517,0.25046572,-0.27599382,0.92792207,0.25121486,-0.2754119,0.9279434,0.25170153,-0.2748952,0.9295266,0.24980897,-0.2712486,0.929686,0.24997818,-0.27054554,0.9302175,0.24848926,-0.2700898,0.93040323,0.24822263,-0.26969507,0.93120116,0.2479658,-0.26716542,0.9313974,0.2477265,-0.2667029,0.9316122,0.2463713,-0.26720762,0.9317376,0.24407366,-0.2688738,0.9336018,0.24275278,-0.26355037,0.93356705,0.24336043,-0.26311275,0.93422484,0.24456541,-0.2596375,0.93510073,0.2473218,-0.253808,0.93499756,0.2477809,-0.2537406,0.9351026,0.24760917,-0.25352105,0.9361182,0.24682058,-0.25052425,0.9358537,0.24811697,-0.2502314,0.9360908,0.2487575,-0.24870388,0.9364225,0.24916032,-0.24704641,0.9374518,0.24852148,-0.24376482,0.9382322,0.24817552,-0.24109992,0.93889225,0.24861385,-0.23805994,0.93974626,0.24806003,-0.23525122,0.9400634,0.24797827,-0.23406762,0.94038177,0.24806084,-0.23269713,0.94070953,0.24805011,-0.23138002,0.940967,0.24825312,-0.23011205,0.9413345,0.24904637,-0.22773959,0.9415642,0.24898449,-0.22685592,0.9427575,0.24786682,-0.22309256,0.94327855,0.2475506,-0.22123376,0.94426066,0.24619614,-0.2185389,0.94520617,0.24423654,-0.21664222,0.94568133,0.24285118,-0.21612519,0.94624853,0.2414555,-0.21520463,0.9470968,0.23924349,-0.21393965,0.94800717,0.23712544,-0.2122593,0.9485164,0.23615913,-0.21105795,0.94857466,0.2355894,-0.21143244,0.9493132,0.234592,-0.20921539,0.94967765,0.2344686,-0.20769407,0.94981897,0.23412393,-0.20743656,0.9507747,0.22984987,-0.20783721,0.9510298,0.22823134,-0.20845348,0.9512576,0.22627684,-0.2095419,0.95135665,0.2252068,-0.21024387,0.9519616,0.22203039,-0.21088311,0.9525243,0.2193349,-0.21116276,0.95241475,0.21763079,-0.21340808,0.9524724,0.21518311,-0.21562141,0.9526978,0.2144523,-0.21535335,0.95327884,0.21227418,-0.21493995,0.95376015,0.20944439,-0.21557975,0.9543286,0.20333548,-0.2188872,0.95435584,0.20290162,-0.21917081,0.9542408,0.20349981,-0.21911699,0.95407265,0.20296839,-0.22033866,0.95446694,0.20088421,-0.22054116,0.95445734,0.19869469,-0.22255681,0.9548399,0.19710585,-0.2223286,0.9554246,0.19442411,-0.22217804,0.95581615,0.19207282,-0.22253875,0.9561544,0.18933053,-0.22343367,0.95570123,0.18925445,-0.22542806,0.95534027,0.18946527,-0.22677703,0.95493346,0.1904107,-0.22769673,0.9543648,0.1922476,-0.2285361,0.9545493,0.18667133,-0.2323562,0.95502687,0.18602753,-0.2309058,0.9553995,0.18512978,-0.23008424,0.9556331,0.18403092,-0.22999576,0.95557564,0.18313119,-0.23095047,0.9554074,0.18238883,-0.23223045,0.9544567,0.18361786,-0.23515302,0.954007,0.18470521,-0.23612398,0.95404005,0.18372181,-0.23675697,0.9528212,0.18294343,-0.24220529,0.9525238,0.18071188,-0.24503383,0.9523158,0.18090299,-0.24570039,0.9519881,0.18160616,-0.24645025,0.9516101,0.18250944,-0.2472421,0.9510442,0.18263438,-0.24931815,0.95050216,0.18259242,-0.25140733,0.9503056,0.18282706,-0.2519794,0.94932157,0.18501332,-0.25408384,0.9489197,0.18569498,-0.25508577,0.94875336,0.18624596,-0.2553029,0.9473491,0.18843512,-0.25888598,0.9472634,0.18815555,-0.25940222,0.94663537,0.18978234,-0.26050735,0.9465111,0.18997991,-0.26081496,0.9462976,0.18997651,-0.26159102,0.9456741,0.19027601,-0.26362002,0.9447253,0.18954228,-0.26752165,0.94472456,0.18847106,-0.26827997,0.94463813,0.18838407,-0.26864514,0.94425786,0.188841,-0.26965934,0.94411844,0.18826935,-0.27054575,0.94377536,0.18733439,-0.27238584,0.9434723,0.18729423,-0.27346075,0.94322574,0.18947193,-0.27281076,0.9427639,0.1910198,-0.2733268,0.942718,0.19144467,-0.27318814,0.9433222,0.19584829,-0.26793033,0.94304156,0.19718522,-0.2679375,0.9426926,0.19914657,-0.2677151,0.9419819,0.2019051,-0.26815006,0.94179446,0.20198275,-0.26874933,0.9415548,0.20248768,-0.26920867,0.94062823,0.20366345,-0.27155054,0.9401262,0.20292997,-0.27382883,0.9397335,0.20247681,-0.27550682,0.93942994,0.2025653,-0.27647534,0.93932927,0.20274974,-0.27668238,0.93919975,0.2034431,-0.27661285,0.9385711,0.2064043,-0.27655298,0.9384629,0.20703132,-0.27645153,0.9379889,0.20732312,-0.277838,0.9373368,0.20738563,-0.27998382,0.9369632,0.20755821,-0.28110412,0.9363918,0.2088051,-0.28208303,0.93548274,0.20923434,-0.2847683,0.9345393,0.21091323,-0.2866215,0.9326245,0.21335511,-0.29101735,0.9325101,0.21235666,-0.29211226,0.93211675,0.21295701,-0.2929296,0.9315624,0.21413092,-0.29383573,0.93115973,0.21527706,-0.29427415,0.93068117,0.2171209,-0.2944335,0.930139,0.21994674,-0.29404923,0.9298255,0.22215673,-0.29337844,0.92961746,0.22381328,-0.29277804,0.9292852,0.22546743,-0.29256374,0.9281891,0.22878307,-0.29346764,0.92706686,0.2323894,-0.2941804,0.92680067,0.2338132,-0.29389077,0.92661715,0.23606136,-0.29267004,0.9263171,0.23879819,-0.29139674,0.9259769,0.24180357,-0.28999636,0.9260084,0.24225177,-0.2895211,0.9257293,0.24406545,-0.28888997,0.9248419,0.2471319,-0.28912514,0.9245702,0.24816073,-0.28911293,0.9238035,0.2495556,-0.29036036,0.9231826,0.25115302,-0.29095724,0.924826,0.2503445,-0.286399,0.9256491,0.24897213,-0.2849326,0.92788774,0.25003174,-0.27660158,0.9284701,0.25063407,-0.27409098,0.92916137,0.24961585,-0.2726739,0.9335859,0.24152571,-0.26473165,0.93525374,0.2463118,-0.25422606,0.93617177,0.24622837,-0.2509063,0.94217736,0.2483283,-0.22502182,0.9488066,0.23489931,-0.21115988,0.95406824,0.20404297,-0.21936329,0.9541007,0.18489699,-0.23559488,0.9499099,0.1837838,-0.25277403,0.94779605,0.18905358,-0.2567907,0.9450339,0.1907069,-0.26559702,0.94478065,0.1906375,-0.2665461,0.9428767,0.19215646,-0.27213866,0.9425379,0.20037912,-0.2673396,0.94220656,0.20167638,-0.2675319,0.9336386,0.21263902,-0.28827712,0.92350817,0.25144252,-0.2896709,0.9319243,0.24275358,-0.2694215,0.9334584,0.2406432,-0.26598176,0.93552285,0.24667688,-0.2528785,0.95242196,0.21632896,-0.21469557,0.9486265,0.187542,-0.25482497,0.94826,0.18929039,-0.2548963,0.9410631,0.20377852,-0.26995307,0.9328711,0.21339831,-0.29019418,0.935053,0.2437348,-0.25742787,0.9353255,0.24531643,-0.25492364,0.93615127,0.24577081,-0.2514311,0.9539639,0.18892634,-0.23293719,0.9484423,0.18887027,-0.25452942,0.9332752,0.21309865,-0.28911304,0.9327146,0.24058698,-0.26862887,0.93523335,0.243777,-0.2567318,0.93531215,0.24465545,-0.25560692,0.9536938,0.19181438,-0.23167966,0.9259073,0.24308847,-0.289143,0.94181585,0.24250853,-0.23274975,0.95103353,0.21580799,-0.22127393,0.93597335,0.24577162,-0.2520915,0.94173366,0.24250887,-0.2330819,0.9538969,0.1933213,-0.22958139,0.9507913,0.21634223,-0.22179258,0.95377284,0.19265492,-0.23065424,0.943318,0.19500162,-0.2685617,0.94141084,0.24151091,-0.23541048,0.95074147,0.21601063,-0.22232859,0.9406378,0.23994336,-0.24005759,0.9482088,0.21433702,-0.23443492,0.93764657,0.22117575,-0.2681421,0.94030356,0.23991536,-0.24139144,0.9453815,0.21985488,-0.24066068,0.9377394,0.22088905,-0.2680538,0.94238114,0.20110036,-0.26735058,0.94529647,0.22021396,-0.2406665,0.95418894,0.17950809,-0.23937485,0.954117,0.18036154,-0.23901975,0.95415306,0.18100604,-0.23838775,0.9543315,0.18098177,-0.23769106,0.95487165,0.17997845,-0.23627926,0.9550652,0.1800229,-0.23546176,0.955098,0.17941006,-0.2357963,0.9550303,0.17782192,-0.23726875,0.95539194,0.17414996,-0.23853296,0.95517343,0.17469707,-0.23900768,0.95507413,0.17555127,-0.23877862,0.9545705,0.17751162,-0.23934259,0.88525796,0.36648378,-0.28637046,0.9044759,0.37919825,-0.19527392,0.9052328,0.37504584,-0.19973527,0.905519,0.37392303,-0.20054148,0.9055253,0.3730574,-0.20211889,0.90619546,0.37090325,-0.20307767,0.90653944,0.36993206,-0.20331377,0.9066871,0.36935785,-0.20369917,0.906656,0.3691322,-0.20424576,0.9064021,0.36938876,-0.2049078,0.9060859,0.36990348,-0.20537704,0.9054317,0.37133452,-0.20567979,0.9053086,0.3714873,-0.20594557,0.90566146,0.37031037,-0.20651302,0.90562844,0.3701077,-0.20702028,0.90632266,0.36763394,-0.20838542,0.9068607,0.36660424,-0.20785828,0.90735424,0.36552572,-0.20760348,0.90804505,0.36386096,-0.20750755,0.9085639,0.3626969,-0.2072742,0.908836,0.36166662,-0.2078806,0.9099268,0.3566018,-0.2118218,0.90984124,0.3557696,-0.21358131,0.9091616,0.35409254,-0.21918847,0.9090979,0.353427,-0.2205229,0.90867233,0.35375136,-0.22175334,0.9055338,0.35545108,-0.23165284,0.90560377,0.35402563,-0.23355469,0.90559536,0.35327867,-0.23471509,0.9063778,0.35110438,-0.23495743,0.90674925,0.35069102,-0.2341402,0.90729755,0.3499742,-0.23308633,0.9077223,0.3492492,-0.23251939,0.9077214,0.348977,-0.23293132,0.9072032,0.34740233,-0.2372634,0.9074121,0.3467558,-0.23741047,0.90772563,0.34570286,-0.23774713,0.90774834,0.34538528,-0.23812187,0.9072057,0.3455741,-0.23990913,0.9078741,0.34231722,-0.24204051,0.9086291,0.3411534,-0.24084736,0.90900606,0.34044522,-0.24042664,0.9118001,0.3356249,-0.23659363,0.91254514,0.33685693,-0.23192422,0.9131064,0.3367806,-0.22981648,0.9133778,0.33674055,-0.22879422,0.91351914,0.3366868,-0.22830845,0.9137563,0.33621573,-0.2280533,0.9140723,0.3348622,-0.22877769,0.91498,0.33249792,-0.2285973,0.91566575,0.3316024,-0.22714768,0.9159533,0.33117297,-0.22661419,0.9161685,0.33059633,-0.2265863,0.91626674,0.32999548,-0.22706465,0.9161268,0.32937604,-0.22852392,0.9159144,0.32879338,-0.23020782,0.9156893,0.32448012,-0.23711972,0.91569525,0.32326746,-0.23874743,0.91557544,0.3223222,-0.24047865,0.9147582,0.31923705,-0.2475986,0.9151311,0.31851336,-0.24715225,0.9156566,0.3172424,-0.2468404,0.91590804,0.31647852,-0.24688818,0.91602296,0.31573638,-0.24741152,0.9161656,0.31463403,-0.24828632,0.9162335,0.31292102,-0.25019324,0.9162103,0.31216323,-0.2512226,0.9159727,0.31199086,-0.25230095,0.9161582,0.30874622,-0.25559732,0.9164562,0.3076599,-0.25583872,0.9167565,0.30626723,-0.25643298,0.9169645,0.3046622,-0.2575987,0.9170441,0.303109,-0.2591429,0.9170718,0.30118284,-0.26128206,0.9171601,0.299823,-0.262533,0.91716933,0.29929525,-0.26310235,0.9170032,0.2947692,-0.2687308,0.91726154,0.29241407,-0.27041677,0.9171769,0.2920685,-0.27107668,0.91763496,0.2893833,-0.27240288,0.91839606,0.28653672,-0.27284685,0.918412,0.28568998,-0.27367976,0.9184987,0.2846501,-0.27447113,0.9186233,0.2838919,-0.2748392,0.91859245,0.2833289,-0.27552265,0.9184137,0.28322098,-0.27622852,0.91798335,0.2838535,-0.27700865,0.9175753,0.28427672,-0.27792507,0.9179362,0.28228334,-0.2787639,0.917956,0.2815565,-0.27943304,0.9178014,0.28086463,-0.2806343,0.9176186,0.28032878,-0.28176564,0.9175572,0.27792373,-0.28433642,0.91740555,0.27704692,-0.2856783,0.91783047,0.2743239,-0.28693837,0.9190657,0.27292874,-0.28430274,0.91934377,0.27232203,-0.28398535,0.9194769,0.27139452,-0.28444195,0.9195752,0.27023205,-0.28522983,0.91960895,0.26923418,-0.28606358,0.9195726,0.26825565,-0.28709778,0.91938686,0.26666346,-0.28916848,0.9191855,0.2654147,-0.29095185,0.91971725,0.26201805,-0.29234686,0.92025226,0.2608154,-0.29173818,0.9206931,0.25978032,-0.29127026,0.9211463,0.2591804,-0.29037073,0.9214059,0.25847983,-0.29017112,0.9215573,0.2574012,-0.29064876,0.9216453,0.25665757,-0.29102722,0.921932,0.25573906,-0.29092765,0.9523556,0.17948885,-0.24658169,0.95224017,0.17823365,-0.24793424,0.9523372,0.17721632,-0.24829058,0.9522295,0.17656797,-0.24916404,0.95152664,0.17713162,-0.25143886,0.9514746,0.17562087,-0.25269213,0.9511072,0.17537676,-0.2542404,0.9511265,0.1719458,-0.2565014,0.9516906,0.17139007,-0.2547753,0.95221364,0.17048909,-0.2534218,0.95306766,0.16687451,-0.2526161,0.9543611,0.15963128,-0.2524141,0.9553557,0.15301776,-0.25274688,0.95515406,0.15206523,-0.25408062,0.956089,0.14949489,-0.25208145,0.9555887,0.14924629,-0.2541177,0.954479,0.15003918,-0.2577948,0.9539238,0.15145618,-0.25901824,0.9530987,0.15300515,-0.2611365,0.95231825,0.15578629,-0.26233664,0.95151556,0.1580411,-0.26389602,0.94755983,0.16326958,-0.27472422,0.9473035,0.164149,-0.27508402,0.94708776,0.16508791,-0.27526465,0.9470607,0.16666788,-0.2744045,0.94705826,0.16803485,-0.27357817,0.94745255,0.17366067,-0.2686551,0.9471206,0.17299016,-0.27025345,0.9466148,0.16806681,-0.2750888,0.94610876,0.16601326,-0.27806067,0.9455832,0.16607039,-0.27980882,0.94519085,0.1668301,-0.28068116,0.9449226,0.16747616,-0.28119916,0.9447528,0.16875811,-0.28100324,0.9447317,0.17057471,-0.2799754,0.9453668,0.1760898,-0.27436098,0.9453565,0.17745706,-0.27351436,0.94467604,0.17261067,-0.27891353,0.9443535,0.17137998,-0.2807583,0.9441893,0.17123893,-0.2813962,0.9437698,0.17194757,-0.28236964,0.9436262,0.17276683,-0.28234947,0.9434973,0.17350042,-0.28233027,0.94302577,0.17468287,-0.28317532,0.942509,0.17564937,-0.2842956,0.94240695,0.17624587,-0.2842648,0.94256115,0.17696983,-0.28330213,0.9430707,0.17762987,-0.2811854,0.94339657,0.17887256,-0.27929813,0.9426985,0.17861181,-0.2818111,0.94211596,0.17873004,-0.28367782,0.9418934,0.17947127,-0.2839488,0.9417755,0.1801092,-0.28393593,0.94174916,0.18128097,-0.2832768,0.9419068,0.18158436,-0.28255752,0.94153994,0.1828471,-0.28296533,0.94142854,0.1810907,-0.28446168,0.9411361,0.180224,-0.2859758,0.94085634,0.18052499,-0.28670558,0.94064105,0.18121813,-0.28697455,0.9397867,0.18448237,-0.287693,0.93994015,0.1832015,-0.28800988,0.93985486,0.18220703,-0.2889179,0.9393981,0.18174776,-0.29068705,0.9393466,0.18086019,-0.29140627,0.9392765,0.18049145,-0.29186025,0.9384664,0.18152574,-0.2938183,0.93794286,0.18199241,-0.29519808,0.937245,0.18318732,-0.2966718,0.9353374,0.18566827,-0.3011166,0.93445027,0.1860157,-0.30364597,0.93340284,0.18904854,-0.3049915,0.9328975,0.18944104,-0.30629128,0.93234134,0.18968286,-0.30783126,0.9312132,0.19150656,-0.31010842,0.9301254,0.19348024,-0.31214133,0.92917156,0.19422181,-0.31451255,0.92813337,0.19621019,-0.31633842,0.9271455,0.19656868,-0.31900144,0.9265381,0.1988267,-0.31936657,0.92601,0.20095265,-0.3195677,0.92546296,0.20109628,-0.3210586,0.92502284,0.20218472,-0.3216428,0.9246794,0.203212,-0.32198268,0.9245498,0.20404215,-0.32182983,0.9242235,0.20640932,-0.32125705,0.9238343,0.20744148,-0.3217114,0.9237478,0.20789498,-0.32166708,0.9236219,0.20809005,-0.32190225,0.9237668,0.20720883,-0.32205516,0.9237855,0.20635262,-0.32255086,0.92356217,0.20713547,-0.3226884,0.92344767,0.20778991,-0.32259542,0.92225343,0.21499741,-0.321286,0.9217891,0.21458457,-0.32289058,0.9213616,0.21892327,-0.32119372,0.92032194,0.22072977,-0.32293326,0.9203569,0.21934815,-0.32377383,0.92025375,0.21813653,-0.32488373,0.919964,0.22017036,-0.32433182,0.9190755,0.224202,-0.32408905,0.9190846,0.2253845,-0.32324177,0.9187387,0.22867689,-0.32191002,0.9187232,0.2296988,-0.32122606,0.9179794,0.23260993,-0.32125756,0.91764295,0.23498136,-0.32049215,0.916638,0.2394611,-0.3200518,0.9167614,0.23794077,-0.3208313,0.9163166,0.23949003,-0.3209491,0.9158622,0.24282643,-0.31973705,0.91580427,0.24355872,-0.31934565,0.91566503,0.24453397,-0.3189995,0.91528356,0.2464993,-0.31858152,0.91512007,0.2484216,-0.31755617,0.9147043,0.25126842,-0.3165126,0.91403455,0.25403073,-0.3162424,0.9140141,0.25549346,-0.31512114,0.9136237,0.25884372,-0.31351498,0.9130818,0.261861,-0.3125865,0.91264147,0.26518473,-0.31106701,0.9129417,0.27165368,-0.30453545,0.91272295,0.27349696,-0.3035396,0.91276985,0.2754538,-0.30162302,0.9126502,0.27612472,-0.30137125,0.9124067,0.27714348,-0.30117357,0.91249573,0.27732778,-0.30073392,0.9127073,0.2771648,-0.30024153,0.9125784,0.27838212,-0.2995063,0.9126388,0.27970704,-0.2980846,0.9125318,0.28118768,-0.29701722,0.91270405,0.28128824,-0.2963921,0.913021,0.28115898,-0.2955371,0.91339296,0.28082776,-0.2947016,0.9135808,0.28104296,-0.29391316,0.91336066,0.2823929,-0.29330295,0.91336524,0.28381178,-0.29191574,0.91372186,0.28583288,-0.2888113,0.9135174,0.28640047,-0.28889567,0.91376716,0.2889273,-0.28557065,0.91413015,0.29066792,-0.28262743,0.9136604,0.29329813,-0.28142637,0.9137907,0.29606456,-0.2780869,0.9139855,0.29849416,-0.27483037,0.91354036,0.30341434,-0.27089438,0.91380084,0.30481228,-0.26843524,0.91377664,0.30511427,-0.26817432,0.9134305,0.30435857,-0.2702047,0.91273427,0.30691946,-0.26966035,0.9121729,0.30812773,-0.270181,0.91203046,0.30989945,-0.26863128,0.9119606,0.31267813,-0.26563182,0.91219664,0.31331998,-0.26406032,0.911921,0.31853202,-0.25872266,0.911677,0.3197176,-0.25811955,0.91142374,0.32137805,-0.25694913,0.9113001,0.32192358,-0.25670472,0.9107756,0.32501206,-0.25466636,0.91020125,0.3265115,-0.25480175,0.9094685,0.327676,-0.25592104,0.90821433,0.33041868,-0.2568466,0.9077694,0.33181304,-0.25662214,0.90715724,0.33326367,-0.2569067,0.90647274,0.33524522,-0.25674462,0.9030813,0.34181267,-0.2600159,0.9025832,0.34188953,-0.2616392,0.9002961,0.34539488,-0.26489487,0.89924747,0.34675333,-0.26667604,0.8983908,0.34844416,-0.26735845,0.8977079,0.35064155,-0.26677886,0.89553106,0.35404715,-0.2695825,0.8951854,0.35520735,-0.26920393,0.89397496,0.35822308,-0.26923043,0.89389175,0.35767564,-0.27023265,0.8936266,0.35755306,-0.27126998,0.89324474,0.35794535,-0.27200893,0.8930468,0.35790163,-0.2727156,0.8927483,0.35822475,-0.2732683,0.8924328,0.35835597,-0.27412534,0.892495,0.35770905,-0.2747671,0.89230496,0.35753235,-0.27561298,0.8907527,0.35926682,-0.27836487,0.8902208,0.36046025,-0.27852345,0.8882186,0.3638403,-0.28051364,0.8874868,0.3643577,-0.28215352,0.8869098,0.36497197,-0.2831723,0.8858504,0.3664544,-0.2845703,0.9047536,0.37748808,-0.19729076,0.905763,0.37220636,-0.20262244,0.90553695,0.36995652,-0.20768963,0.90925646,0.35477784,-0.2176819,0.9094514,0.33933118,-0.24031733,0.9157141,0.32530132,-0.23589577,0.91694045,0.29598805,-0.26760298,0.9171375,0.29160547,-0.2717076,0.91740215,0.29031155,-0.27219945,0.91761506,0.2844549,-0.27761105,0.91721463,0.27676764,-0.28656054,0.95177525,0.17706956,-0.25053993,0.9509293,0.17480706,-0.25529587,0.94219697,0.1814846,-0.2816525,0.93976605,0.1849899,-0.28743443,0.9128532,0.26600382,-0.3097435,0.9136489,0.28515413,-0.28971165,0.9122599,0.31426352,-0.26271746,0.9037116,0.34102052,-0.25886342,0.8945555,0.3577242,-0.26796237,0.90782076,0.3552623,-0.22282308,0.9073624,0.34879568,-0.23459552,0.9070886,0.34815508,-0.23659752,0.91481096,0.32108104,-0.24500585,0.91753644,0.27482623,-0.28739768,0.94354856,0.17877285,-0.27884823,0.94235337,0.18163383,-0.28103265,0.94001126,0.18426538,-0.28709775,0.92453235,0.20512992,-0.32118788,0.92340064,0.209156,-0.32184625,0.9129721,0.2669624,-0.30856618,0.89428025,0.35837266,-0.26801446,0.89408684,0.3583663,-0.26866752,0.88910073,0.36300427,-0.2787971,0.90593094,0.36855,-0.20847091,0.90593404,0.35184565,-0.23555937,0.9071422,0.34533817,-0.24048796,0.9144886,0.33352003,-0.2290741,0.91456956,0.31980243,-0.24756603,0.9170951,0.2763589,-0.28733665,0.9208238,0.22,-0.3219993,0.91208196,0.31734583,-0.25961167,0.8898122,0.36152914,-0.27844393,0.90561974,0.36944425,-0.20824005,0.9071509,0.35610893,-0.22419532,0.9115815,0.3357598,-0.23724353,0.9158469,0.31157696,-0.25326747,0.91598135,0.3103021,-0.2543436,0.91723365,0.2756013,-0.28762215,0.9193325,0.26311907,-0.2925679,0.9509874,0.17270719,-0.25650564,0.9130419,0.26866284,-0.30687928,0.90562487,0.3526041,-0.23561408,0.9192534,0.26403904,-0.29198724,0.950887,0.17357425,-0.2562926,0.93220353,0.19571127,-0.30445635,0.91016203,0.3379945,-0.23950954,0.9331452,0.19464219,-0.3022489,0.9175263,0.24537918,-0.31294492,0.9071648,0.34479183,-0.24118587,0.91628355,0.2981578,-0.2674442,0.9351961,0.19195408,-0.29759347,0.91913587,0.23916651,-0.31303135,0.90599984,0.35740978,-0.22676556,0.9174543,0.26978487,-0.29239303,0.92024446,0.24877411,-0.30209532,0.92250067,0.22764553,-0.311721,0.9057783,0.3574798,-0.22753873,0.90749466,0.34337792,-0.24196091,0.9341979,0.19686112,-0.2975231,0.8976306,0.35483247,-0.2614446,0.8925687,0.37888595,-0.24447188,0.91455454,0.32026345,-0.24702497,0.9018029,0.35949144,-0.23982778,0.90559465,0.35696563,-0.22907187,0.9037666,0.35516948,-0.23887359,0.9040746,0.35442808,-0.23880912,0.9019313,0.36422327,-0.23208049,0.92227954,0.2348642,-0.306984,0.92141014,0.2415411,-0.30440313,0.914624,0.30527094,-0.26508996,0.9473982,0.1509246,-0.28223822,0.9472533,0.1509642,-0.2827031,0.9470338,0.15128012,-0.28326887,0.9469934,0.15165755,-0.28320226,0.94683826,0.15240549,-0.2833194,0.94745135,0.15127683,-0.2818709,0.940363,0.1794301,-0.2890022,0.93975705,0.18047047,-0.29032254,0.93947244,0.18130359,-0.29072407,0.9395641,0.18131204,-0.29042256,0.9397723,0.18086782,-0.2900255,0.94023967,0.18030456,-0.28885904,0.8946927,0.355048,-0.27104574,0.89452356,0.35536337,-0.2711909,0.8943207,0.35605714,-0.2709497,0.8941876,0.35719335,-0.26989138,0.8946893,0.35615438,-0.26960194,0.8946523,0.35582063,-0.27016464,0.8900257,0.35986084,-0.2799187,0.8885678,0.36189792,-0.28191695,0.88874286,0.36195657,-0.28128904,0.88887334,0.36274612,-0.27985603,0.8891922,0.36219892,-0.27955163,0.8902828,0.3598934,-0.27905774,0.89113235,0.3567467,-0.2803836,0.89070415,0.35717186,-0.2812018,0.890233,0.35806158,-0.2815621,0.88991684,0.35892236,-0.28146538,0.890202,0.35857707,-0.2810033,0.8907602,0.35759127,-0.28049013,0.8914388,0.35679448,-0.27934664,0.8943628,0.35417783,-0.27326408,0.8941422,0.35424238,-0.27390167,0.89400697,0.35447112,-0.27404702,0.893674,0.35510296,-0.27431494,0.89356786,0.35538888,-0.2742906,0.89355093,0.35570756,-0.27393216,0.8938021,0.3562005,-0.27246836,0.89425975,0.35550198,-0.27187833,0.6534471,0.75656277,0.02489432,0.5760609,0.7646633,-0.28886658,0.5759489,0.76514965,-0.2878,0.5762584,0.7657984,-0.28544524,0.5765521,0.76614845,-0.28390884,0.5769408,0.7661655,-0.2830721,0.57867247,0.7655073,-0.2813125,0.5813779,0.76671064,-0.27231315,0.5808669,0.7675968,-0.2709037,0.5809098,0.7680942,-0.26939785,0.58093286,0.7686598,-0.26772967,0.581105,0.7687938,-0.26697007,0.58232284,0.76890284,-0.26398578,0.5825017,0.7691142,-0.26297373,0.5830565,0.768923,-0.26230243,0.5843896,0.7683364,-0.2610516,0.5865196,0.7671777,-0.2596789,0.58767694,0.7667342,-0.2583689,0.58905625,0.7661233,-0.25703672,0.59043443,0.76538885,-0.25606075,0.59182316,0.7646326,-0.2551125,0.5934567,0.7637641,-0.25391653,0.5950577,0.762584,-0.25371647,0.5961528,0.76172215,-0.25373444,0.59734976,0.7611902,-0.2525128,0.59838533,0.7606732,-0.25161728,0.59906304,0.7604884,-0.25056112,0.5996374,0.7607722,-0.24831568,0.60037255,0.7605714,-0.2471517,0.6027503,0.7595463,-0.24450265,0.6034689,0.7594532,-0.2430148,0.60404927,0.75931233,-0.242011,0.6045338,0.75924575,-0.2410078,0.6054704,0.75900334,-0.23941481,0.6064931,0.75861925,-0.23803987,0.6067141,0.7587697,-0.23699479,0.60789657,0.75818324,-0.23583883,0.61228716,0.7562829,-0.23052242,0.6120828,0.75684744,-0.22920874,0.6120813,0.7572228,-0.22796954,0.61255467,0.757176,-0.22685082,0.6135979,0.7566575,-0.22575891,0.61396617,0.75705904,-0.22339909,0.6144934,0.7574431,-0.22063039,0.6149615,0.75779134,-0.21811613,0.6149164,0.75809264,-0.21719441,0.6152525,0.7585315,-0.2146958,0.61642474,0.7585365,-0.21128881,0.617107,0.75853986,-0.2092755,0.61770266,0.75839376,-0.20804404,0.6175247,0.7592302,-0.2055061,0.6165984,0.760687,-0.2028833,0.61652684,0.76111555,-0.20148873,0.6163564,0.7614703,-0.2006683,0.6157725,0.7620683,-0.20019037,0.6158425,0.7621433,-0.19968864,0.61546785,0.76256686,-0.1992264,0.61483103,0.7631278,-0.19904456,0.61347115,0.764348,-0.1985581,0.612465,0.76519907,-0.1983859,0.61227965,0.7654585,-0.19795685,0.6125712,0.76559556,-0.19651964,0.6128093,0.76585484,-0.19475903,0.6137213,0.7658949,-0.19170615,0.6134627,0.76701367,-0.18802549,0.61237395,0.7682464,-0.1865358,0.6119959,0.7688227,-0.18539865,0.61162853,0.76953995,-0.1836269,0.6118562,0.7697206,-0.18210477,0.61265165,0.76959544,-0.17994674,0.61328995,0.76945066,-0.17838463,0.61334854,0.7697625,-0.17683123,0.61315674,0.7701562,-0.17577912,0.61304307,0.77057296,-0.17434298,0.6135826,0.7709721,-0.17064136,0.61362946,0.77133286,-0.16883272,0.61414456,0.7711858,-0.1676273,0.61478156,0.7708423,-0.16687043,0.6155613,0.7704013,-0.16603044,0.6159926,0.77032304,-0.1647892,0.61735725,0.7698658,-0.16179198,0.61792827,0.7695911,-0.16091669,0.6184355,0.7694681,-0.15955038,0.61914873,0.76912403,-0.15843952,0.6217636,0.767806,-0.15454479,0.6218493,0.76796865,-0.15338722,0.621937,0.76801616,-0.15279275,0.6228901,0.7678917,-0.14950006,0.62279713,0.76813895,-0.14861469,0.6229262,0.76828676,-0.14730392,0.6222719,0.7690009,-0.14633976,0.62210953,0.7692961,-0.14547598,0.6223109,0.7697701,-0.1420673,0.62210727,0.770141,-0.1409446,0.6220384,0.77037036,-0.13999192,0.6213975,0.77119505,-0.13828729,0.62073624,0.7719096,-0.13726653,0.6207477,0.77202606,-0.13655788,0.6197373,0.7731175,-0.13496307,0.61928904,0.77345896,-0.13506441,0.6185593,0.77404416,-0.1350555,0.6179901,0.7745991,-0.13447885,0.61778986,0.7748475,-0.13396661,0.61733115,0.77526915,-0.13364132,0.61635226,0.7760625,-0.1335548,0.6154244,0.77686375,-0.13317479,0.6144483,0.77770233,-0.13278706,0.61379236,0.7783255,-0.13216794,0.61237174,0.7795136,-0.13175504,0.6117354,0.78000283,-0.13181558,0.61104083,0.78058064,-0.13161685,0.61061317,0.7810135,-0.1310326,0.61053056,0.7813269,-0.1295406,0.61036724,0.78174955,-0.12774794,0.61030245,0.7822515,-0.12495407,0.6104762,0.7822982,-0.123807296,0.61090744,0.7820933,-0.1229725,0.6107755,0.78233373,-0.12209478,0.61043197,0.7827524,-0.12112611,0.61018866,0.78318393,-0.11955226,0.60949826,0.7843605,-0.115284264,0.6091477,0.7849221,-0.11329734,0.60911065,0.7850583,-0.112550564,0.6090345,0.78615403,-0.10506595,0.6085635,0.7866294,-0.10423399,0.60847294,0.78685457,-0.103056334,0.607798,0.7879986,-0.098182395,0.6074537,0.7883852,-0.097204894,0.607543,0.78839093,-0.09659801,0.60676926,0.7891024,-0.09564804,0.6066653,0.7892693,-0.094927065,0.60738134,0.78876305,-0.09455561,0.60898787,0.78755355,-0.094303936,0.61137384,0.78586954,-0.09290397,0.61296594,0.78496695,-0.08999833,0.6136312,0.7844979,-0.08955325,0.6142099,0.78406805,-0.08935014,0.61503136,0.7834594,-0.089038275,0.6160434,0.7826691,-0.08899188,0.61636674,0.7824532,-0.08865143,0.616522,0.78242934,-0.087778404,0.6170761,0.782064,-0.087137364,0.61813444,0.7812705,-0.08675386,0.61858463,0.78095865,-0.08635157,0.61953735,0.78021723,-0.08622406,0.6199322,0.77989244,-0.08632429,0.62038934,0.7795333,-0.08628338,0.62110966,0.77895707,-0.086305834,0.62275,0.77771306,-0.08570191,0.62365824,0.776984,-0.08571107,0.6241746,0.7765234,-0.08612459,0.6248326,0.775905,-0.086923055,0.6256966,0.7751394,-0.087536834,0.6263501,0.77460396,-0.08760322,0.6271876,0.77386284,-0.08815856,0.6279112,0.77322775,-0.08858005,0.6283803,0.77277577,-0.08919576,0.6287475,0.77238506,-0.08998808,0.6287802,0.77225894,-0.09083839,0.6296013,0.7714798,-0.09176674,0.6304777,0.770769,-0.091722175,0.6321246,0.76942676,-0.091656975,0.6331979,0.7685927,-0.091245204,0.63387084,0.76806635,-0.09100475,0.6349283,0.7672389,-0.0906121,0.6353387,0.76691693,-0.090460785,0.6363372,0.76620436,-0.08947559,0.63667333,0.76600826,-0.088760525,0.63746274,0.76544696,-0.08793263,0.6375969,0.76542175,-0.08717603,0.63769394,0.7654229,-0.08645427,0.63794476,0.7652989,-0.08569775,0.6383294,0.76505035,-0.085050605,0.6393056,0.76428145,-0.084629565,0.640963,0.76336455,-0.08025557,0.64044505,0.76385266,-0.07974503,0.6401834,0.76413256,-0.07916181,0.6395697,0.7647281,-0.07836774,0.6395559,0.7650515,-0.0752632,0.63983124,0.7648972,-0.07448639,0.6401431,0.7646787,-0.07404938,0.640027,0.7648374,-0.07341144,0.6397277,0.7651316,-0.07295297,0.6398729,0.7650509,-0.072524324,0.64020026,0.764934,-0.07084885,0.6396017,0.7655292,-0.069818325,0.6393672,0.76584774,-0.06846089,0.639206,0.7660302,-0.067922436,0.6392608,0.7660307,-0.06739832,0.639873,0.76559556,-0.06652792,0.6395087,0.76593864,-0.06608019,0.6392657,0.7661896,-0.06551992,0.6393428,0.7661846,-0.06482204,0.6400527,0.765663,-0.06397391,0.6405026,0.7654141,-0.06243151,0.64098454,0.7650476,-0.06197559,0.6410142,0.7650959,-0.06106553,0.6407323,0.76538444,-0.060405105,0.6407522,0.76541734,-0.059773434,0.6409238,0.7654141,-0.057947587,0.6410907,0.76531976,-0.05734465,0.6408097,0.76561314,-0.056563284,0.6402191,0.766137,-0.056157053,0.63982636,0.76653504,-0.05519302,0.6398804,0.7665848,-0.05385855,0.6400329,0.76652956,-0.052823454,0.64038754,0.7663106,-0.05169023,0.6395761,0.76703006,-0.05106188,0.63903695,0.76753235,-0.050258238,0.63863087,0.7679004,-0.049795903,0.63849515,0.768056,-0.04913171,0.6379699,0.7685273,-0.04858159,0.6368846,0.7694376,-0.04841166,0.6355481,0.77056754,-0.04800284,0.6341458,0.77175087,-0.0475371,0.63357055,0.7722503,-0.047094334,0.6334904,0.7724327,-0.045140017,0.6336112,0.77238834,-0.04419355,0.6335801,0.77270544,-0.038763355,0.63350755,0.7728276,-0.037490968,0.63348705,0.77290606,-0.03619949,0.6323611,0.77397835,-0.032816432,0.6319277,0.7743365,-0.032715086,0.6314908,0.77470416,-0.032446403,0.6313911,0.7748243,-0.03150368,0.6315741,0.77470905,-0.030660357,0.63287354,0.7737106,-0.029033722,0.6323961,0.7741213,-0.028483622,0.631906,0.7745592,-0.027439594,0.63142115,0.7749784,-0.026755463,0.63062817,0.7756517,-0.025932636,0.6308487,0.77549356,-0.025291182,0.63136446,0.7750791,-0.025126487,0.63187057,0.7746708,-0.024995591,0.633062,0.7737516,-0.023257598,0.63304394,0.7738137,-0.021625679,0.63315326,0.77376944,-0.0199452,0.6335653,0.77345896,-0.018874034,0.6342683,0.77290124,-0.018095393,0.6348138,0.7724625,-0.017697286,0.6350187,0.7723125,-0.016869,0.6355771,0.7718706,-0.016049156,0.6363148,0.7712694,-0.015718332,0.636307,0.77129215,-0.014893437,0.6364074,0.7712178,-0.014448622,0.6365716,0.77109575,-0.013709831,0.63701034,0.77076465,-0.011817417,0.6371146,0.7706854,-0.011360917,0.6378242,0.7701143,-0.010211125,0.6383808,0.76966405,-0.009338506,0.6386315,0.7694659,-0.0084799,0.63926286,0.76894695,-0.007970681,0.63976794,0.7685333,-0.00731497,0.6399049,0.76843244,-0.0057731005,0.64054054,0.7679135,-0.0040788422,0.64075476,0.76773775,-0.0034817178,0.64122105,0.76735204,-0.0025126075,0.6414042,0.7672023,-0.0011610183,0.6415331,0.76709515,-0.0006013645,0.64186084,0.76682115,-0.000055808057,0.64299715,0.76586854,0.00025422405,0.6434075,0.76552266,0.0013696852,0.643475,0.7654618,0.0028724058,0.64407074,0.7649554,0.004003599,0.64513403,0.7640583,0.0041179582,0.6461068,0.76323795,0.0037266419,0.6465453,0.7628656,0.0039032882,0.6467763,0.762665,0.0047502182,0.64728767,0.76222277,0.005931249,0.64792347,0.7616642,0.007925114,0.64770395,0.7618442,0.008547332,0.6481143,0.7614897,0.009016786,0.649559,0.7602216,0.011671458,0.6492364,0.7604928,0.011951266,0.6488015,0.76085573,0.012455376,0.6489536,0.7607191,0.012869937,0.6495645,0.7601967,0.012921946,0.64974666,0.760004,0.01494097,0.64944726,0.7602487,0.015495534,0.64946973,0.7602083,0.016504029,0.64957327,0.7600965,0.017549267,0.6494201,0.76021165,0.018215293,0.6495387,0.7600948,0.018849036,0.6497653,0.7598583,0.020503957,0.6506748,0.75906104,0.021181004,0.6523236,0.7576367,0.021460585,0.65277267,0.7572205,0.02247005,0.6531907,0.7568458,0.022945883,0.65346414,0.7565906,0.023564419,0.5818732,0.76547056,-0.27473354,0.58171886,0.76874644,-0.26576704,0.611139,0.75660896,-0.23249084,0.6134819,0.7706707,-0.17235626,0.62019885,0.76844496,-0.15762524,0.62243736,0.7677677,-0.15200137,0.6228753,0.7675968,-0.15106815,0.6222888,0.7694066,-0.14411813,0.609877,0.7837395,-0.1174837,0.60976046,0.7853765,-0.10665799,0.6084192,0.7871884,-0.10079984,0.6252109,0.77555275,-0.08734609,0.63363934,0.77248573,-0.04203528,0.6336547,0.7725734,-0.040150236,0.6479307,0.7616686,0.006835059,0.650006,0.7597962,0.014207571,0.57986903,0.76498777,-0.2802599,0.6059236,0.75882745,-0.23882523,0.6214773,0.7677721,-0.15585883,0.6208089,0.77211547,-0.1357717,0.62038434,0.7725685,-0.13513388,0.6085174,0.78693396,-0.10218383,0.6412705,0.76301605,-0.081109,0.6401855,0.7648769,-0.0715951,0.6396298,0.76574796,-0.06710988,0.63363874,0.772806,-0.035676196,0.6331201,0.7733374,-0.033289693,0.63290936,0.7738467,-0.02422967,0.6489538,0.7607711,0.009288451,0.64971167,0.76009756,0.011245528,0.6517734,0.75811654,0.021231232,0.58055145,0.7647034,-0.2796224,0.5818862,0.76505363,-0.27586487,0.6138079,0.7664146,-0.18933713,0.6210043,0.7679419,-0.15690401,0.60952336,0.78509897,-0.11000412,0.609769,0.7869897,-0.09396309,0.6290054,0.7719936,-0.091532014,0.6404114,0.7634923,-0.083383605,0.64027447,0.76635927,-0.052364353,0.6337473,0.7727768,-0.034357227,0.64935154,0.7604214,0.010093412,0.64999694,0.7598212,0.013256354,0.6140658,0.7659255,-0.19047631,0.6409137,0.763136,-0.08278252,0.633654,0.77255285,-0.04055467,0.63250995,0.77396107,-0.030256258,0.71899664,0.6723283,-0.1761205,0.6957727,0.6780491,-0.2369596,0.5817611,0.76488185,-0.2766039,0.6097976,0.7851776,-0.10790315,0.63291407,0.77365446,-0.029641002,0.718987,0.67248,-0.17558038,0.6961664,0.67791975,-0.23617181,0.58111817,0.76476437,-0.27827537,0.61190355,0.75634426,-0.23133826,0.7190282,0.6725784,-0.17503352,0.6958773,0.6781565,-0.23634414,0.6197535,0.76360345,-0.18115005,0.69585204,0.71771425,-0.026002737,0.7191549,0.6880723,-0.09681241,0.7167817,0.67398226,-0.1788072,0.68819594,0.6850597,-0.23891307,0.6393173,0.7135236,-0.28663123,0.59809065,0.73784935,-0.31283528,0.60053223,0.75219226,-0.2712339,0.61992145,0.7632941,-0.18187772,0.6177983,0.7586065,-0.20698173,0.62559223,0.7717977,-0.113853514,0.64482766,0.7639945,-0.022576192,0.69502836,0.7185294,-0.02551522,0.716783,0.6920066,-0.085726455,0.72075176,0.68497,-0.10645648,0.7121564,0.698978,-0.06529116,0.71817,0.6748327,-0.1698018,0.7144271,0.6733528,-0.19023642,0.7213269,0.67630994,-0.14930654,0.6891541,0.6845691,-0.23755366,0.63975334,0.71341616,-0.28592488,0.60081285,0.7517883,-0.27173185,0.619896,0.76318866,-0.18240634,0.6262844,0.77092534,-0.115939185,0.64531165,0.76349723,-0.025394004,0.6945908,0.71896166,-0.025252577,0.7206667,0.68490714,-0.107432485,0.7167455,0.69196504,-0.08637255,0.72072357,0.68494904,-0.106781825,0.71214724,0.6989574,-0.06561153,0.68368167,0.69228935,-0.23090002,0.6987512,0.68748456,-0.1977666,0.7121753,0.68264955,-0.16369452,0.6387617,0.7142323,-0.28610435,0.6010398,0.7513516,-0.27243695,0.62015355,0.763103,-0.18188848,0.6264617,0.77062565,-0.11696952,0.64609903,0.76234275,-0.03727758,0.6473908,0.76200575,-0.015243595,0.6440578,0.7626795,-0.059241224,0.69029504,0.7231982,-0.021844175,0.6955508,0.70148706,-0.15532221,0.7099399,0.6897281,-0.14233948,0.69750506,0.6945187,-0.1764384,0.6834167,0.6992787,-0.20964484,0.67574984,0.69817203,-0.23646979,0.6900193,0.7003837,-0.18258156,0.70000595,0.70258874,-0.12790915,0.7033812,0.7036887,-0.10038486,0.7138922,0.6908474,-0.11440191,0.7056746,0.704787,-0.07279185,0.6371498,0.7154114,-0.2867519,0.60218453,0.75081766,-0.27137923,0.62095666,0.7630146,-0.17950344,0.62688094,0.76988566,-0.11956736,0.65853465,0.7513043,-0.04328889,0.66001827,0.7509607,-0.02083055,0.66624343,0.7453577,-0.023697829,0.65020347,0.7571906,-0.062432934,0.6901658,0.7233247,-0.021735247,0.6999262,0.70279133,-0.12723085,0.6999528,0.7027238,-0.12745689,0.6954803,0.70175755,-0.15441315,0.7033102,0.70382357,-0.09993573,0.70563024,0.70485437,-0.07256914,0.6834179,0.6994144,-0.20918766,0.6900108,0.7004515,-0.1823534,0.6757597,0.69824,-0.23624104,0.68999374,0.7005869,-0.18189727,0.7031673,0.7040932,-0.09903766,0.70554143,0.70498896,-0.07212383,0.6998727,0.7029263,-0.12677877,0.70536274,0.7052582,-0.07123344,0.63069403,0.72418565,-0.27889118,0.6023099,0.75046766,-0.2720683,0.6269426,0.76954186,-0.1214428,0.6584074,0.7513656,-0.04415298,0.6501272,0.7572209,-0.06285848,0.6661931,0.74538857,-0.024136016,0.64997363,0.7572816,-0.06370919,0.6903664,0.72309166,-0.023079658,0.68967944,0.700993,-0.18152435,0.6825206,0.70063394,-0.20803265,0.6895221,0.70119596,-0.18133801,0.68282014,0.7002277,-0.20841745,0.67476887,0.69966495,-0.23485294,0.67491084,0.6994615,-0.23505108,0.6892072,0.70160174,-0.18096533,0.694821,0.70256823,-0.15369341,0.6993564,0.7035334,-0.12625916,0.6995285,0.7033312,-0.12643231,0.70280915,0.70449734,-0.09870528,0.70517707,0.70545995,-0.07107456,0.67519414,0.6990546,-0.23544753,0.6315976,0.7236165,-0.27832282,0.60947347,0.7482683,-0.26198578,0.62638575,0.76497626,-0.14984058,0.6286722,0.76823795,-0.12075512,0.6227316,0.76169485,-0.17895867,0.6746165,0.73739016,-0.033886988,0.6828,0.7292869,-0.043871872,0.6745587,0.7354229,-0.06421583,0.6907376,0.72108006,-0.054084487,0.65794355,0.74944365,-0.07378708,0.6890957,0.7017414,-0.18084826,0.6822008,0.70105344,-0.20766827,0.68903995,0.70181125,-0.18078965,0.6823074,0.70091367,-0.2077897,0.6744134,0.7001549,-0.23441342,0.67446417,0.700085,-0.23447613,0.6889285,0.70195085,-0.18067253,0.6945886,0.7028472,-0.15346813,0.69917536,0.7037424,-0.12609729,0.6992357,0.70367277,-0.1261512,0.70268416,0.70463645,-0.098602295,0.70511246,0.70552945,-0.071025595,0.6745659,0.6999449,-0.2346018,0.6350427,0.7320229,-0.24670483,0.6206692,0.73606443,-0.2701461,0.6305596,0.7666895,-0.12075497,0.6276384,0.7639382,-0.14989488,0.6293017,0.7677223,-0.120755404,0.62335396,0.76117295,-0.17901269,0.6729632,0.73663586,-0.06699347,0.6571155,0.7500365,-0.0751293,0.6899752,0.7217005,-0.055521768,0.65544987,0.75122035,-0.077803634,0.69426614,0.7031693,-0.15345208,0.6887678,0.70211214,-0.18065831,0.6818812,0.7013764,-0.20762748,0.68860716,0.70227337,-0.18064408,0.68172145,0.7015377,-0.20760706,0.67393726,0.70063984,-0.23433383,0.67385787,0.7007206,-0.23432064,0.6885268,0.70235395,-0.18063694,0.6989329,0.70398366,-0.1260946,0.70252246,0.7047971,-0.098606765,0.6990945,0.7038228,-0.12609638,0.70503163,0.7056096,-0.07103087,0.6742547,0.7003166,-0.2343869,0.6356114,0.73160446,-0.24648131,0.6264877,0.76307935,-0.15881774,0.6225854,0.76074153,-0.18346581,0.6302087,0.7662624,-0.12521558,0.6209521,0.7598777,-0.1923652,0.67244315,0.737034,-0.06783071,0.6551792,0.75141466,-0.078206375,0.6897268,0.7219043,-0.055956125,0.6546368,0.7518031,-0.07901092,0.6689698,0.70515186,-0.23503241,0.67755663,0.70533335,-0.20837913,0.6717659,0.702623,-0.2346303,0.68033516,0.7028052,-0.20786749,0.6850823,0.7055148,-0.18141441,0.6915354,0.70569617,-0.15418047,0.6864616,0.7042522,-0.18110564,0.67316103,0.70135534,-0.23442468,0.69690675,0.7058775,-0.12671992,0.70118827,0.7060588,-0.09907572,0.6982581,0.70461553,-0.1263037,0.70437384,0.70624006,-0.07129117,0.6871506,0.70361996,-0.18095012,0.6361695,0.7311758,-0.24631357,0.63265604,0.76436996,-0.12443803,0.6281398,0.7618111,-0.15838008,0.63102514,0.76563233,-0.12495749,0.6217865,0.7592402,-0.19218712,0.6719771,0.7374089,-0.06837326,0.6543954,0.751986,-0.07927005,0.6895029,0.7220962,-0.05623937,0.65391207,0.7523516,-0.07978778,0.6662683,0.7318739,-0.14299352,0.672821,0.71873456,-0.17530689,0.65326476,0.73152494,-0.1952341,0.6602834,0.73169947,-0.1692387,0.64070654,0.74423397,-0.18870842,0.63293546,0.74406296,-0.21392305,0.6266901,0.7503206,-0.21042453,0.65391237,0.7380849,-0.16622059,0.68828064,0.71926826,-0.09446139,0.6841948,0.71909046,-0.12159937,0.67773646,0.72560155,-0.11906169,0.69786584,0.71287465,-0.069230735,0.65723574,0.7183785,-0.22797719,0.6452228,0.7313504,-0.22093917,0.6277508,0.7616255,-0.16079645,0.62152755,0.75914705,-0.19338877,0.6325282,0.76427764,-0.12564932,0.62100285,0.7589606,-0.19579126,0.6539862,0.7380691,-0.16600026,0.64095086,0.744187,-0.18806294,0.65402305,0.7380612,-0.16589002,0.64086956,0.7442027,-0.18827814,0.627001,0.7502664,-0.20969054,0.6269566,0.7502741,-0.20979545,0.6540968,0.73804533,-0.16566974,0.6663999,0.731842,-0.14254302,0.6778229,0.72557735,-0.11871688,0.67779404,0.7255854,-0.11883184,0.6883297,0.719252,-0.09422729,0.6978861,0.7128664,-0.069111764,0.6268679,0.7502896,-0.2100052,0.6622475,0.74355686,-0.09247383,0.6516096,0.74964267,-0.11593472,0.66481936,0.73772717,-0.11736198,0.6472907,0.7469211,-0.15206425,0.6497026,0.7482835,-0.13400878,0.7454525,0.43919888,0.5014029,0.7458871,0.4370531,0.50263005,0.7459189,0.43513674,0.504243,0.74405956,0.43048176,0.51094115,0.743901,0.42884815,0.51254314,0.743482,0.42735475,0.5143952,0.7437047,0.4263606,0.514898,0.74304146,0.4232761,0.5183886,0.74123687,0.41961762,0.5239169,0.7409993,0.41811317,0.5254535,0.7411798,0.41570184,0.5271095,0.7409506,0.41518483,0.5278388,0.7410224,0.4141007,0.528589,0.741163,0.4111671,0.5306779,0.7404418,0.41078717,0.53197724,0.7394696,0.40946433,0.53434414,0.7321788,0.40830553,0.54516125,0.7290049,0.40908408,0.54881877,0.7253256,0.4092007,0.5535862,0.7242401,0.40852958,0.55549955,0.72236633,0.40666026,0.55929804,0.7174166,0.4079282,0.56471944,0.7161706,0.41078869,0.56422716,0.71580005,0.41092238,0.56459993,0.7144834,0.41153142,0.5658228,0.71409833,0.41212553,0.56587636,0.7140258,0.41129446,0.5665722,0.71418464,0.41084465,0.56669825,0.7149485,0.40878156,0.56722695,0.71542674,0.40799353,0.56719124,0.71603465,0.40729478,0.5669262,0.71785176,0.4052054,0.5661249,0.71875834,0.40415955,0.56572217,0.7196646,0.40311405,0.56531584,0.7205688,0.4020679,0.56490886,0.7214731,0.40102056,0.56449884,0.7223755,0.3999726,0.5640883,0.72327656,0.39892486,0.56367534,0.7241778,0.39787585,0.5632596,0.7250767,0.3968271,0.5628429,0.72597563,0.39577717,0.56242317,0.7268724,0.39472735,0.5620026,0.72776794,0.39367715,0.56158,0.72866374,0.39262554,0.56115454,0.7295574,0.39157346,0.5607283,0.73044974,0.3905216,0.5603,0.7311872,0.38965136,0.5599438,0.73206383,0.3894858,0.5589127,0.7323422,0.38943398,0.558584,0.73312956,0.38928488,0.5576543,0.73435134,0.3890533,0.55620646,0.7359314,0.38875413,0.55432415,0.7377935,0.3883992,0.552093,0.73986596,0.38800338,0.5495923,0.74207157,0.38757992,0.546911,0.74433875,0.38714227,0.5441329,0.74659425,0.38670543,0.54134643,0.74876946,0.3862817,0.5386378,0.75079465,0.3858856,0.53609675,0.7526016,0.38553014,0.5338139,0.7541235,0.38522983,0.53187937,0.7552924,0.3849986,0.5303862,0.7560443,0.38484907,0.5294225,0.7563092,0.38479725,0.5290817,0.75709397,0.38464144,0.5280717,0.75722,0.38468084,0.52786225,0.7545329,0.42290777,0.5018259,0.75102925,0.4316038,0.49967307,0.7412623,0.41244072,0.5295497,0.7151771,0.41072586,0.5655317,0.7169441,0.40625075,0.5665258,0.74123913,0.41661856,0.52630174,0.73681295,0.4078442,0.53923076,0.72120774,0.4062757,0.5610699,0.7182806,0.4069102,0.56435543,0.7441966,0.3903619,0.54202306,0.7190423,0.406503,0.5636785,0.7388451,0.3961606,0.5451281,0.7375719,0.40341032,0.5415237,0.73763055,0.4079648,0.53802043,0.730615,0.41076544,0.5454112,0.73128563,0.41085553,0.54444385,0.7316359,0.4112098,0.5437052,0.73173004,0.41164017,0.54325265,0.73170877,0.41264638,0.5425176,0.7311664,0.41327977,0.5427665,0.73104244,0.4125393,0.5434963,0.7308101,0.41217592,0.54408413,0.72975487,0.41136986,0.5461069,0.72413874,0.41121686,0.5536459,0.7242605,0.41133258,0.55340064,0.724402,0.41203308,0.5526938,0.72387725,0.412735,0.5528577,0.72357464,0.41234675,0.5535429,0.7236591,0.412075,0.553635,0.7375747,0.4090211,0.5372944,0.7373766,0.40955994,0.53715575,0.73683774,0.41016397,0.5374344,0.7360216,0.41086096,0.5380201,0.7349436,0.4100947,0.5400742,0.7346594,0.40944183,0.5409556,0.73556757,0.40905222,0.54001546,0.7364081,0.40889665,0.53898656,0.7365631,0.40917665,0.5385623,0.7408643,0.41347536,0.52929974,0.7408313,0.41378415,0.52910453,0.7403061,0.4142333,0.5294881,0.73983747,0.41479406,0.52970403,0.7396682,0.41476607,0.52996236,0.73945683,0.4142333,0.53067356,0.7398353,0.41378415,0.53049636,0.74059314,0.41350326,0.5296572,0.51795644,0.6577168,0.5469276,0.5180847,0.657469,0.54710406,0.51851976,0.65757936,0.54655886,0.5199688,0.65759414,0.5451627,0.5212619,0.65778416,0.54369664,0.52213967,0.6581506,0.5424094,0.5235404,0.65845984,0.54068124,0.5240264,0.65873367,0.53987616,0.52470785,0.6588645,0.53905404,0.5271944,0.6585714,0.536982,0.5279154,0.65879714,0.5359959,0.5304708,0.6588388,0.53341556,0.53046584,0.6589542,0.5332779,0.5298015,0.6594688,0.53330225,0.53118354,0.6597064,0.53163093,0.53131026,0.6598832,0.53128487,0.53750676,0.6604951,0.52424484,0.5377255,0.6598576,0.52482307,0.5382241,0.6594983,0.5247637,0.53914684,0.65900993,0.5244297,0.5406394,0.65851504,0.5235141,0.54179764,0.6582597,0.52263707,0.5421645,0.6584772,0.52198225,0.544168,0.65809095,0.52038205,0.5455406,0.6573662,0.5198607,0.54618084,0.6570733,0.5195586,0.546482,0.6569834,0.5193556,0.5470218,0.65722495,0.51848096,0.5472604,0.6581596,0.51704156,0.5468677,0.65928686,0.51602,0.5466132,0.6598288,0.51559675,0.5456537,0.6605751,0.5156574,0.544144,0.6613847,0.51621467,0.54257303,0.6620952,0.5169569,0.54145527,0.66272086,0.517327,0.54020673,0.66395426,0.5170508,0.5396573,0.6640906,0.5174492,0.5389269,0.6659045,0.5158768,0.53933835,0.6659738,0.5153572,0.53947073,0.6664047,0.5146611,0.53943753,0.6672487,0.51360124,0.53935343,0.6677152,0.51308316,0.5390736,0.66789275,0.5131461,0.5373149,0.6686162,0.5140478,0.53657156,0.6689995,0.51432544,0.5360781,0.6690273,0.5148035,0.5338618,0.66958964,0.5163732,0.5331718,0.6700471,0.51649266,0.53226185,0.6705556,0.5167713,0.52930355,0.6721693,0.5177124,0.5287613,0.6737528,0.51620597,0.5281221,0.675269,0.51487744,0.5277275,0.67556566,0.5148929,0.5271155,0.6758176,0.5151892,0.5261293,0.67604995,0.51589185,0.52420235,0.67597336,0.51794976,0.5219826,0.6774955,0.5182028,0.5213243,0.6778389,0.51841617,0.518896,0.67854786,0.5199229,0.5180205,0.6788827,0.5203585,0.51791424,0.67876005,0.5206243,0.51827586,0.6770917,0.52243364,0.51678014,0.67828304,0.52237,0.5161385,0.67860484,0.52258646,0.5154045,0.67878133,0.5230813,0.51475835,0.67878324,0.5237148,0.5135172,0.6782047,0.52567905,0.51273674,0.67756444,0.5272642,0.5121501,0.67708606,0.5284475,0.5114154,0.67681944,0.5294995,0.5112166,0.6764461,0.5301682,0.5085497,0.67761457,0.5312398,0.5085992,0.67819786,0.5304475,0.5084267,0.6785159,0.53020597,0.50811994,0.67876256,0.53018445,0.50614506,0.6795401,0.5310767,0.5052394,0.68001074,0.5313365,0.5028645,0.68067837,0.53273284,0.49838057,0.6826319,0.53444403,0.49796033,0.68316543,0.534154,0.49667892,0.6836893,0.53467655,0.49517065,0.68415993,0.5354729,0.4943166,0.6840263,0.5364319,0.4934655,0.68397593,0.53727895,0.49152896,0.68485516,0.5379337,0.4901881,0.6849042,0.5390935,0.48887143,0.6846403,0.54062223,0.4886118,0.68453586,0.54098904,0.48205087,0.68551743,0.5456123,0.48062214,0.6862424,0.5459612,0.47767195,0.6867636,0.5478917,0.47597846,0.6873166,0.54867154,0.474148,0.68810046,0.54927355,0.47225133,0.68878347,0.5500509,0.4711816,0.6885066,0.5513135,0.4692405,0.6888953,0.5524823,0.46717584,0.6892374,0.5538037,0.4666702,0.68902683,0.55449164,0.4666087,0.6881629,0.55561507,0.46666983,0.6873388,0.55658305,0.46955976,0.68597585,0.55583334,0.47348136,0.68385595,0.5551184,0.4742722,0.6835419,0.5548301,0.48094484,0.68111527,0.5520634,0.48239347,0.67980134,0.55241895,0.48589984,0.6786424,0.55076844,0.48718005,0.67763776,0.5508745,0.490082,0.6742747,0.5524249,0.49286494,0.6710334,0.55389374,0.49666166,0.6653009,0.5574064,0.49623755,0.6628485,0.5606961,0.49704286,0.6625849,0.5602943,0.4984638,0.6622485,0.559429,0.49946046,0.6618422,0.55902064,0.4999538,0.66173553,0.55870587,0.50405747,0.66229314,0.5543409,0.5050368,0.66201854,0.55377734,0.5061328,0.6618333,0.5529975,0.50629723,0.66222864,0.55237335,0.5061722,0.6633945,0.5510875,0.5082544,0.6634525,0.5490976,0.50913924,0.6625204,0.5494032,0.5101553,0.66218656,0.548863,0.51249284,0.66069406,0.5484838,0.5137321,0.6600951,0.5480454,0.51409626,0.6598435,0.54800695,0.51398844,0.65954053,0.5484725,0.5143252,0.65916765,0.5486051,0.51512235,0.65867853,0.5484447,0.51593864,0.6584951,0.54789734,0.51764494,0.6581051,0.54675543,0.5322254,0.66161543,0.5282057,0.5428147,0.6586612,0.52107364,0.5394375,0.6642505,0.51747316,0.53860146,0.66571057,0.51646674,0.5349364,0.66924393,0.5157088,0.53077334,0.6711888,0.5174798,0.52036107,0.6780845,0.51906246,0.4836439,0.6847918,0.54511356,0.477741,0.68280816,0.5527536,0.4952053,0.66874164,0.5545776,0.5004614,0.6625632,0.55726874,0.5298854,0.6593272,0.533394,0.5325965,0.6619604,0.52739865,0.5295909,0.6717862,0.5179158,0.5087741,0.6770942,0.5316882,0.4997027,0.6818587,0.5341965,0.48832673,0.6844216,0.5413909,0.49635136,0.66675544,0.555943,0.50329995,0.6624464,0.55484587,0.5166612,0.65855986,0.547138,0.51718235,0.6583816,0.54686016,0.5387339,0.6652583,0.51691115,0.50194967,0.6625428,0.5559529,0.50916255,0.6767969,0.5316949,0.495845,0.66763586,0.5553378,0.5340952,0.6616429,0.5262803,0.53909194,0.6646708,0.51729345,0.50630426,0.6635437,0.5507864,0.5078112,0.6636508,0.5492681,0.5099582,0.67651016,0.53129715,0.50612956,0.6762261,0.5353047,0.5070699,0.6637401,0.54984474,0.50533056,0.67245096,0.54078716,0.5063985,0.66364956,0.55057234,0.50938493,0.67034376,0.5395982,0.54306585,0.63781524,0.54614204,0.5462226,0.63504785,0.54621893,0.5473793,0.63422984,0.5460114,0.54817593,0.6335372,0.5460163,0.5488926,0.6327634,0.5461936,0.54966635,0.63224053,0.5460209,0.55249524,0.6306202,0.54503864,0.5540576,0.62940514,0.54485714,0.55522555,0.6289514,0.5441918,0.55902135,0.6280705,0.5413157,0.56107557,0.62766117,0.53966254,0.56011796,0.62870824,0.5394385,0.55932564,0.6295581,0.53926927,0.5571693,0.63173336,0.53895766,0.5568881,0.6326228,0.5382045,0.5560934,0.6331368,0.5384217,0.5538349,0.63444,0.5392149,0.55369526,0.6349629,0.53874266,0.5532473,0.6359184,0.53807557,0.552677,0.63669217,0.5377464,0.5522199,0.6369254,0.53793967,0.5516184,0.63694054,0.5385387,0.5510106,0.6367487,0.5393871,0.5478416,0.6369609,0.5423563,0.5472672,0.6373629,0.542464,0.5467054,0.6370286,0.5434222,0.54642326,0.6371908,0.54351586,0.5458001,0.63818467,0.54297566,0.5452585,0.6387186,0.542892,0.5444351,0.63934267,0.54298383,0.5438339,0.63964206,0.5432336,0.5426345,0.6390248,0.545156,0.54181516,0.638815,0.54621583,0.54210746,0.6385619,0.5462218,0.5516453,0.63120604,0.5452215,0.55436337,0.63405854,0.5391206,0.5499976,0.6360039,0.54129624,0.54870677,0.63648057,0.54204553,0.55045265,0.6319573,0.5455564,0.54269826,0.63810205,0.5461725,0.58655363,0.62713164,0.51250434,0.5861785,0.62880164,0.51088476,0.5855257,0.630388,0.50967693,0.586805,0.6304687,0.50810343,0.5872444,0.62971437,0.5085311,0.58756244,0.6293734,0.5085858,0.58773667,0.6297309,0.5079416,0.58768934,0.63030535,0.50728333,0.586619,0.6337712,0.5041946,0.58681154,0.63404995,0.50361973,0.58644164,0.63470876,0.5032207,0.58429617,0.6375362,0.502141,0.5831295,0.6406438,0.4995353,0.5815633,0.64395344,0.4970998,0.5852595,0.6470991,0.48860425,0.587535,0.64651674,0.48664024,0.585879,0.6482821,0.48628804,0.5849484,0.64894044,0.48653018,0.5840172,0.6495115,0.48688677,0.5832195,0.6499061,0.48731625,0.5817575,0.6504668,0.4883147,0.5700864,0.6575871,0.49252474,0.5689327,0.6589228,0.4920735,0.5678878,0.66002405,0.4918046,0.5667797,0.66097105,0.4918111,0.5626019,0.6643123,0.49210593,0.55986255,0.66635835,0.49246368,0.558568,0.667111,0.49291453,0.55866927,0.66626364,0.49394473,0.5589183,0.66475236,0.4956962,0.5579566,0.66242087,0.49988303,0.55742776,0.6620799,0.50092363,0.55768836,0.6604471,0.5027855,0.5516416,0.66019946,0.5097335,0.5499546,0.66203964,0.50916946,0.54888475,0.66283,0.5092956,0.54710126,0.663763,0.5099989,0.546615,0.66420525,0.5099445,0.5456926,0.66484463,0.5100992,0.5441363,0.6657958,0.51052094,0.5428702,0.6666963,0.51069355,0.5421854,0.6669402,0.51110244,0.5411121,0.6666925,0.512561,0.54049176,0.66744804,0.5122321,0.53187895,0.65928936,0.531453,0.53286123,0.6586298,0.53128684,0.53365296,0.658363,0.53082263,0.53440136,0.65772194,0.5308644,0.5335002,0.6573861,0.53218514,0.533528,0.6572191,0.5323635,0.5337034,0.65705407,0.5323914,0.5340844,0.6569718,0.5321108,0.53615016,0.65614134,0.531057,0.5370458,0.65612334,0.5301736,0.53766656,0.65587056,0.52985704,0.5382059,0.65537375,0.52992415,0.5393616,0.6546976,0.5295848,0.54062515,0.65347993,0.5298003,0.5397664,0.6521927,0.5322565,0.5398293,0.6517488,0.5327362,0.5412972,0.65086675,0.5323249,0.54009116,0.65127873,0.53304553,0.5416739,0.64987755,0.5331496,0.5436788,0.64834374,0.5329763,0.54593307,0.64717704,0.5320893,0.5495626,0.6441862,0.53198224,0.54965746,0.6435504,0.53265333,0.54978555,0.6431198,0.533041,0.5496359,0.6429384,0.5334141,0.54748607,0.64297754,0.5355734,0.54725766,0.6428255,0.5359892,0.5472277,0.64264065,0.53624135,0.5473086,0.6424872,0.5363426,0.5500439,0.64119655,0.53508765,0.551314,0.64022166,0.5349478,0.5522853,0.63979536,0.53445566,0.5535522,0.6390169,0.53407615,0.5546289,0.6382903,0.5338279,0.55618924,0.6373498,0.53332806,0.5597143,0.6357428,0.53155535,0.559112,0.6351874,0.53285146,0.5591329,0.63495696,0.5331042,0.5592485,0.6347641,0.5332126,0.5595333,0.63449144,0.5332384,0.56192654,0.6320048,0.5336745,0.5613235,0.63212895,0.5341618,0.56125814,0.6319236,0.5344734,0.5614648,0.631592,0.53464836,0.56260777,0.63082325,0.53435427,0.56307346,0.63026166,0.5345265,0.563618,0.62928593,0.53510183,0.56437683,0.6280539,0.53574914,0.56499463,0.62802273,0.53513414,0.5656588,0.63050514,0.5315011,0.5658112,0.6313316,0.5303565,0.56681573,0.6317611,0.52877015,0.56693435,0.63274425,0.5274657,0.56869805,0.6360558,0.521551,0.5692898,0.63666195,0.5201641,0.570154,0.6380771,0.51747656,0.5769405,0.6341231,0.51480836,0.57620144,0.63354766,0.5163422,0.57624996,0.6331256,0.5168055,0.5765021,0.63258517,0.5171859,0.57685983,0.63206756,0.51741993,0.5772633,0.6316455,0.5174854,0.5791999,0.6306639,0.51651776,0.57989556,0.6290349,0.51772225,0.5791262,0.6287592,0.51891685,0.578517,0.6284384,0.5199838,0.57842684,0.6281235,0.5204645,0.57840884,0.62774944,0.52093554,0.57869184,0.6273348,0.5211208,0.5792176,0.62686276,0.5211046,0.58163846,0.6255711,0.51995915,0.5821086,0.62509567,0.52000475,0.58281827,0.62445617,0.5199782,0.58345395,0.6240634,0.5197368,0.58420396,0.62395614,0.5190226,0.5846891,0.62369174,0.51879406,0.5877007,0.6212994,0.5182614,0.5881889,0.62113035,0.51791006,0.58972174,0.6216572,0.51552945,0.5899917,0.6216332,0.5152495,0.58671486,0.62681234,0.51271045,0.5865291,0.6331803,0.50504094,0.5834012,0.6470081,0.4909415,0.55879396,0.6632083,0.4978997,0.5478582,0.66333455,0.5097437,0.54172856,0.66662264,0.5120004,0.54035425,0.65404034,0.529385,0.5409621,0.6514146,0.5319954,0.5416875,0.65076834,0.5320481,0.5488277,0.645908,0.5306515,0.55711687,0.63765836,0.5319893,0.56257886,0.6320484,0.5329351,0.5673506,0.63393396,0.52558625,0.5855269,0.631136,0.50874907,0.5852266,0.6360946,0.5028851,0.5825587,0.64662856,0.4924398,0.5805688,0.650472,0.4897204,0.5713118,0.6564043,0.49268275,0.559111,0.66395104,0.49655196,0.5413864,0.6665337,0.5124778,0.5419063,0.650987,0.5315575,0.5482471,0.6422018,0.5357257,0.56035167,0.6340361,0.5329204,0.5771589,0.63471794,0.5138294,0.55782276,0.65885675,0.5047193,0.5342145,0.65799856,0.5307096,0.54106665,0.651633,0.53162134,0.5591002,0.636821,0.53091055,0.5613974,0.63336104,0.5326226,0.56272364,0.63234955,0.53242475,0.58007455,0.6292336,0.51728004,0.58183485,0.64611095,0.49397254,0.5752534,0.65341866,0.49206457,0.54134876,0.65162206,0.5313475,0.54173005,0.65142554,0.53119993,0.5595028,0.63625115,0.53116953,0.5796794,0.63012403,0.51663864,0.5800209,0.62957597,0.5169234,0.5812881,0.64537954,0.49556977,0.57683086,0.6523141,0.49168324,0.54053056,0.65381336,0.52948546,0.57986176,0.6505619,0.4904381,0.552421,0.65977114,0.50944394,0.56805044,0.63505244,0.523476,0.5791593,0.6508816,0.49084383,0.5493326,0.6451217,0.5310854,0.5763886,0.63538224,0.5138731,0.5573194,0.6586798,0.5055056,0.55467486,0.6590709,0.50789905,0.5553984,0.65892726,0.50729424,0.5742872,0.6368933,0.5143551,0.57050645,0.64477,0.50871795,0.5718715,0.638552,0.51498955,0.56612074,0.6452282,0.5130185,0.57093,0.63856715,0.51601446,0.5335513,0.65626734,0.5335131,0.53365964,0.6564178,0.5332196,0.53349113,0.6567681,0.5329567,0.53322464,0.65708554,0.5328322,0.532914,0.65718573,0.53301936,0.5326591,0.6571022,0.5333769,0.53285116,0.65675205,0.53361636,0.5331513,0.6564178,0.53372777,0.33217236,0.64419657,0.68896466,0.33478078,0.6446085,0.68731487,0.3346605,0.6451621,0.6868539,0.33366048,0.64596397,0.6865866,0.33315963,0.6459067,0.68688375,0.33173668,0.64540815,0.68804,0.33116665,0.6446026,0.689069,0.49601787,0.66162115,0.56233776,0.49313927,0.658842,0.5681029,0.49191096,0.65856117,0.5694917,0.49121732,0.65747285,0.5713449,0.48683283,0.6553081,0.5775509,0.48528814,0.65575796,0.5783398,0.484467,0.655617,0.57918733,0.48330513,0.6558287,0.579918,0.47853068,0.65746,0.5820265,0.47331208,0.6562918,0.58758557,0.4636981,0.6560841,0.5954307,0.46165523,0.65709776,0.5959002,0.45792115,0.6575608,0.5982658,0.45361662,0.6584849,0.6005245,0.45220873,0.6596789,0.60027575,0.4493531,0.66083354,0.6011496,0.44805628,0.66069025,0.602274,0.44760355,0.66035116,0.60298204,0.44261906,0.66165954,0.6052232,0.4395275,0.6650031,0.60380995,0.4385993,0.66529334,0.6041651,0.4379238,0.6654091,0.60452753,0.43463534,0.66437024,0.6080332,0.42775026,0.6685724,0.6083096,0.42781788,0.6689944,0.6077979,0.42770913,0.6694877,0.60733116,0.4258946,0.66995096,0.60809493,0.42388263,0.6685705,0.6110131,0.41787225,0.66865927,0.61504275,0.40877196,0.66935855,0.6203746,0.40780887,0.6691901,0.62118953,0.40485236,0.6677253,0.6246898,0.4009668,0.66661566,0.6283703,0.3988552,0.66561586,0.63076943,0.39729515,0.66378534,0.63367623,0.39194453,0.6602641,0.6406488,0.39166918,0.65813655,0.64300203,0.38605934,0.6571761,0.6473622,0.38014117,0.658649,0.6493644,0.37557155,0.6580435,0.65262914,0.36831743,0.65905356,0.65573674,0.36636043,0.65896577,0.6569202,0.36598814,0.6583906,0.65770394,0.3661004,0.65739703,0.65863466,0.36637256,0.6561587,0.6597173,0.36704084,0.6555771,0.659924,0.36754763,0.6552399,0.6599769,0.3697326,0.65404546,0.6599412,0.37115398,0.6535431,0.6596409,0.3764393,0.652894,0.65728444,0.37707293,0.6526022,0.6572111,0.37336385,0.6522095,0.65971375,0.36845785,0.6514249,0.6632378,0.3674471,0.65117913,0.66403943,0.3660017,0.6498996,0.66608804,0.36678863,0.649494,0.6660508,0.3675247,0.6492147,0.66591734,0.36934024,0.64798355,0.6661119,0.36621132,0.6479985,0.6678228,0.36502296,0.647807,0.6686587,0.36089212,0.6481601,0.67055607,0.35724133,0.6477194,0.6729326,0.35691488,0.64858896,0.6722679,0.35710597,0.6490047,0.6717651,0.35692263,0.649308,0.6715693,0.35545367,0.6496197,0.67204684,0.35423005,0.64957565,0.6727351,0.3539403,0.64920235,0.6732477,0.3558383,0.6478771,0.6735238,0.34978938,0.64779985,0.67675894,0.34936917,0.64831775,0.67648005,0.3488084,0.6488588,0.6762507,0.34690133,0.64881533,0.6772726,0.34589335,0.64807117,0.67849946,0.34262455,0.64812315,0.6801065,0.34052423,0.6454212,0.6837212,0.33944824,0.6431218,0.6864177,0.33803838,0.6426551,0.68754965,0.33823866,0.64108604,0.6889146,0.33936134,0.6381854,0.6910523,0.33914742,0.6370062,0.69224423,0.33931786,0.63635826,0.6927565,0.33978546,0.63563883,0.6931877,0.34257603,0.6358638,0.69160604,0.3484729,0.6349873,0.68946195,0.34763363,0.6339162,0.6908698,0.34752044,0.633276,0.6915136,0.35071295,0.63008964,0.6928113,0.3504292,0.6295091,0.6934823,0.35077178,0.62879103,0.69396037,0.3515812,0.6282747,0.6940185,0.35218033,0.62842786,0.6935758,0.35283077,0.6262743,0.6951913,0.3515811,0.625734,0.69631004,0.35138956,0.62537366,0.6967304,0.35192457,0.6247004,0.69706416,0.35218325,0.6242398,0.6973461,0.35303858,0.6233006,0.6977536,0.35425213,0.6222651,0.6980627,0.35519332,0.62180203,0.69799703,0.35304022,0.6209861,0.6998134,0.35237172,0.6214022,0.69978106,0.35205805,0.62122124,0.7000995,0.35075465,0.6214022,0.70059294,0.35061002,0.62233585,0.6998362,0.34997782,0.6232933,0.69930035,0.34873503,0.62428176,0.69903946,0.3477962,0.6244415,0.6993644,0.3471037,0.62420917,0.6999157,0.34733677,0.6233599,0.70055664,0.3488136,0.62070817,0.7021755,0.34791112,0.62073827,0.70259655,0.34770712,0.6194666,0.7038188,0.34839168,0.61899084,0.7038988,0.34969375,0.61860526,0.7035921,0.35113272,0.61789054,0.70350343,0.35190386,0.61771226,0.70327467,0.35471606,0.6175622,0.7019925,0.3559948,0.61641467,0.7023537,0.3567547,0.61652607,0.70187014,0.35975713,0.6154808,0.7012548,0.36069953,0.61536795,0.7008696,0.36184222,0.6118783,0.70333153,0.36022508,0.6113571,0.7046136,0.36024836,0.6109456,0.70495856,0.36273,0.6086424,0.7056779,0.36341506,0.6072255,0.70654565,0.36447844,0.60666406,0.7064801,0.365586,0.6065536,0.70600253,0.36605117,0.6060819,0.70616657,0.36780503,0.6052817,0.70594156,0.36654595,0.6035199,0.7081015,0.3656842,0.6035817,0.70849425,0.36528975,0.6029177,0.7092628,0.36594805,0.60148823,0.71013653,0.36651778,0.60156244,0.70977974,0.36680523,0.6020879,0.70918554,0.37081262,0.60191846,0.70724267,0.3764349,0.60222596,0.7040033,0.37771368,0.6017646,0.7037128,0.37635177,0.60070294,0.7053476,0.37582982,0.59947044,0.7066733,0.37506634,0.59915316,0.70734763,0.37142244,0.59883726,0.7095345,0.3706131,0.5984488,0.71028507,0.36958474,0.5982734,0.7109684,0.36958808,0.59779525,0.7113688,0.3707966,0.5974044,0.7110681,0.37227494,0.5972697,0.7104085,0.3771953,0.59834504,0.70689946,0.3767317,0.5972082,0.708107,0.37697178,0.59670776,0.708401,0.37805146,0.5968746,0.7076848,0.37889287,0.5974338,0.7067624,0.3818555,0.5990768,0.7037708,0.38524407,0.5976374,0.7031476,0.38658974,0.5972793,0.70271313,0.3875669,0.5972554,0.70219505,0.38825932,0.59783965,0.7013148,0.3897327,0.5967591,0.7014179,0.39006656,0.59608597,0.7018046,0.3910399,0.59510493,0.7020953,0.3919933,0.59337974,0.70302325,0.3933466,0.59235716,0.7031297,0.39520833,0.591434,0.7028628,0.39990267,0.58999544,0.7014151,0.40107045,0.5901558,0.700613,0.40423936,0.59130067,0.6978209,0.40662146,0.59184,0.6959773,0.40796924,0.5912148,0.6957199,0.40854368,0.5915893,0.6950641,0.40878615,0.5921594,0.6944358,0.40831888,0.59413683,0.69302034,0.40855876,0.5951851,0.69197863,0.40740436,0.598984,0.6893764,0.41661662,0.59903854,0.6838007,0.42271635,0.5964041,0.68235844,0.42604625,0.59531796,0.681235,0.42781237,0.5941087,0.6811838,0.43063417,0.59156114,0.6816228,0.4322164,0.5903752,0.6816495,0.43453044,0.58920664,0.6811893,0.43799022,0.5882919,0.6797626,0.43925267,0.5891357,0.6782155,0.44122237,0.58923835,0.6768464,0.44497526,0.58994114,0.67377037,0.44597706,0.5898166,0.6732168,0.44777864,0.5903518,0.6715497,0.45017073,0.5919458,0.66854054,0.45070684,0.5925865,0.6676111,0.45712152,0.5990133,0.65743667,0.4590744,0.5979845,0.6570124,0.46228796,0.59671324,0.65591395,0.46512842,0.59587723,0.65466475,0.46664307,0.5961831,0.65330696,0.46730986,0.5969642,0.652116,0.46727943,0.5979653,0.6512199,0.46786866,0.59851986,0.65028685,0.46854576,0.5987171,0.6496173,0.46928662,0.5996887,0.6481847,0.4727167,0.59514123,0.64988136,0.47173333,0.593508,0.65208584,0.4714991,0.5921519,0.6534866,0.47504735,0.587759,0.6548812,0.5381826,0.60360754,0.58823246,0.53916234,0.60528374,0.58560705,0.5394327,0.6068476,0.58373654,0.5397022,0.6069858,0.5833437,0.54093015,0.60647297,0.5827393,0.54168934,0.606332,0.5821805,0.54406387,0.6066112,0.57967,0.5450576,0.60621744,0.5791482,0.54551214,0.6061917,0.578747,0.54813087,0.60521793,0.57729006,0.54871935,0.6050972,0.57685745,0.54986644,0.6049778,0.5758895,0.5515061,0.60492617,0.5743738,0.55220854,0.60556185,0.57302755,0.55261457,0.60617614,0.5719857,0.5553772,0.6046357,0.57093936,0.5564178,0.60253686,0.5721438,0.55686855,0.6019804,0.5722911,0.5573597,0.6015822,0.5722316,0.5577591,0.6015087,0.5719196,0.5583653,0.60263,0.57014495,0.5589164,0.60335475,0.568837,0.55925846,0.6040185,0.56779546,0.56083846,0.6041163,0.56613046,0.56134576,0.60379845,0.5659667,0.56125784,0.60399204,0.5658473,0.5607238,0.60483664,0.56547457,0.5607112,0.60556865,0.56470305,0.5605318,0.6058548,0.5645743,0.55925584,0.60678124,0.56484467,0.5576645,0.60770476,0.56542486,0.55674297,0.60884994,0.5651009,0.55638087,0.6095947,0.56465447,0.55592084,0.61026466,0.56438375,0.5553352,0.610949,0.56421995,0.55538356,0.61166996,0.5633907,0.55484426,0.6121431,0.563408,0.5526014,0.6133103,0.56434226,0.5516768,0.61389637,0.5646095,0.55049664,0.61401206,0.5656347,0.5497521,0.6161952,0.56398237,0.5498265,0.61716324,0.5628502,0.54973805,0.61767405,0.56237596,0.54949486,0.61854166,0.5616597,0.54923534,0.6191568,0.56123555,0.5494299,0.6200224,0.5600884,0.549308,0.6202477,0.55995846,0.5489509,0.62055653,0.55996656,0.5483154,0.6207316,0.56039494,0.5471013,0.6214229,0.5608153,0.5461256,0.62330395,0.55967766,0.54532295,0.62443423,0.5592001,0.54464066,0.62525123,0.5589521,0.5437506,0.6270938,0.5577532,0.5431606,0.6274635,0.55791235,0.5413024,0.62924415,0.55771273,0.54126996,0.62954754,0.5574018,0.5410947,0.630083,0.55696666,0.5407819,0.6307849,0.55647576,0.5404751,0.63128275,0.5562093,0.53895026,0.6322769,0.55655956,0.5385839,0.6328399,0.55627424,0.53802985,0.6335272,0.556028,0.53794754,0.634801,0.5546532,0.5391386,0.634687,0.55362624,0.54006165,0.6346772,0.5527371,0.54037935,0.6350288,0.55202234,0.53911686,0.63832116,0.54945356,0.5395761,0.6396879,0.54740936,0.5415734,0.63852257,0.5467973,0.54235893,0.6381106,0.54649943,0.5411491,0.6393918,0.5462013,0.53838754,0.6412835,0.5467122,0.5360029,0.6427308,0.54735553,0.53459793,0.64332736,0.54802835,0.5335693,0.6432653,0.5491025,0.5320809,0.6429762,0.55088246,0.52792376,0.6447863,0.55276316,0.52804893,0.645011,0.5523813,0.52717644,0.6459815,0.5520805,0.5255911,0.6475427,0.551763,0.52537614,0.648031,0.5513944,0.5247679,0.64870507,0.55118096,0.5242337,0.6492141,0.55108994,0.52446264,0.65043056,0.54943526,0.5243157,0.65140676,0.548418,0.5238447,0.6523568,0.5477384,0.52300715,0.65334314,0.547363,0.52132475,0.6551233,0.54683995,0.52063423,0.6556402,0.5468784,0.49399406,0.6594925,0.5666034,0.37699735,0.65289336,0.65696526,0.36852965,0.649015,0.6655565,0.3567897,0.6478596,0.6730372,0.34812993,0.63284916,0.6915978,0.35212582,0.6202684,0.70090973,0.3486252,0.62170327,0.70138824,0.35224754,0.61808413,0.7027757,0.3614961,0.6101951,0.7049698,0.368405,0.60409665,0.70664346,0.37380707,0.59813535,0.708874,0.38921016,0.5975335,0.7010486,0.40574446,0.5921162,0.69625413,0.45237938,0.5962837,0.66317314,0.4736556,0.597051,0.6474415,0.54296273,0.60692346,0.58037525,0.55728066,0.6078665,0.56562936,0.5420169,0.62842983,0.5579369,0.5374905,0.63406974,0.5559312,0.5279398,0.6444755,0.5531101,0.51963675,0.6561226,0.54724836,0.44722784,0.65950984,0.60418046,0.44428378,0.6604753,0.60529685,0.4282772,0.6677171,0.60887814,0.35176897,0.6470549,0.67644554,0.34400284,0.63635695,0.6904432,0.349154,0.6363116,0.6878947,0.35047218,0.6308874,0.6922068,0.354232,0.62077767,0.6993961,0.35289785,0.61838555,0.70218396,0.37960365,0.5991908,0.7048911,0.4732793,0.5900292,0.6541195,0.5579556,0.6019647,0.5712478,0.56016773,0.6042318,0.566671,0.5555061,0.6106473,0.5643782,0.5499044,0.61521006,0.56490856,0.54772717,0.62080175,0.56089234,0.53964937,0.63176703,0.5564611,0.5371849,0.6344262,0.55581987,0.5372662,0.6346356,0.5555021,0.53140086,0.6430969,0.55139774,0.5185704,0.6569108,0.5473143,0.4708572,0.6552225,0.5907428,0.4460446,0.6596686,0.6048814,0.42985174,0.6664594,0.6091464,0.408081,0.6633696,0.62722456,0.36970955,0.6484411,0.66546154,0.34791803,0.6369248,0.68795335,0.35285863,0.62822163,0.6934179,0.35354584,0.6277846,0.6934637,0.35691327,0.6213628,0.6975108,0.35164207,0.62049705,0.70095026,0.3614464,0.6140417,0.7016476,0.4547982,0.59880656,0.6592339,0.45578155,0.59925824,0.6581434,0.55486417,0.6052919,0.5707429,0.55952245,0.60426575,0.56727195,0.547433,0.62096006,0.56100416,0.5391949,0.63918734,0.5483689,0.4691269,0.6550641,0.592293,0.43123537,0.66560185,0.6091061,0.39093813,0.6574754,0.64412224,0.40773696,0.6630412,0.62779534,0.35530508,0.6474668,0.67419964,0.35469925,0.6471731,0.6748002,0.35728905,0.6218581,0.69687665,0.5501736,0.6143961,0.5655321,0.41145453,0.6615483,0.6269442,0.3777719,0.6022199,0.70329195,0.4358805,0.59892255,0.67178863,0.4731344,0.5982276,0.6467361,0.553136,0.60616124,0.57149726,0.5542663,0.60575175,0.570836,0.4189507,0.65857273,0.6251098,0.43516555,0.5990669,0.6721233,0.4151682,0.59932715,0.6844285,0.47052982,0.60056806,0.6464671,0.4880752,0.65554947,0.57622695,0.42801094,0.65678,0.62084347,0.40963987,0.6571278,0.63275445,0.4460355,0.6564321,0.60839885,0.35455865,0.64309764,0.67875886,0.40778488,0.59994096,0.68831843,0.43338495,0.5992552,0.67310524,0.41154963,0.5997037,0.68628156,0.47264722,0.59912455,0.6462619,0.55371064,0.60601413,0.5710967,0.52958643,0.6437265,0.5524078,0.43081233,0.65627056,0.61944306,0.44741634,0.65617734,0.6076594,0.41106036,0.65687317,0.6320973,0.45017427,0.65566754,0.6061709,0.43153659,0.59937394,0.6741862,0.47186655,0.5997446,0.6462572,0.4994738,0.6011195,0.62384397,0.5081403,0.6500297,0.5650264,0.39548096,0.649759,0.64915943,0.42085215,0.651531,0.63118213,0.44541365,0.65329933,0.6122146,0.34885085,0.6367467,0.6876458,0.36343467,0.61941177,0.69587666,0.41686708,0.6005146,0.68235195,0.4359858,0.59966093,0.67106116,0.39745724,0.60136753,0.69309795,0.50691545,0.60251033,0.61645603,0.53912205,0.62955374,0.5594725,0.5075347,0.64990836,0.56570995,0.4303678,0.65165347,0.624605,0.45003697,0.6533604,0.6087585,0.40039116,0.6498204,0.64608073,0.45920306,0.6534827,0.6017416,0.40214655,0.61773473,0.6757825,0.3901858,0.6100066,0.6896717,0.42853925,0.60831386,0.6680631,0.37566867,0.62706774,0.6823921,0.52493715,0.6050097,0.5986687,0.5097348,0.60302985,0.6136167,0.4941048,0.6010463,0.6281749,0.51857007,0.63507485,0.5725077,0.36789417,0.63870794,0.6758003,0.3862243,0.64109814,0.6631923,0.3957461,0.6469223,0.65182555,0.40413022,0.6434821,0.6500842,0.4215982,0.64585984,0.6364904,0.43861496,0.6482313,0.6224251,0.45516777,0.65059656,0.6079033,0.47124434,0.65295553,0.5929401,0.4292937,0.6086496,0.66727245,0.4026601,0.6179565,0.6752737,0.4287909,0.6084258,0.6677997,0.3759304,0.6271776,0.682147,0.5187318,0.6348869,0.57256967,0.44737735,0.6368192,0.62794495,0.43874922,0.62283534,0.64774626,0.45610824,0.6252657,0.63325197,0.47299266,0.6276901,0.6182904,0.4648039,0.6135736,0.6383453,0.48033825,0.6416031,0.5980139,0.41253957,0.6320106,0.65602875,0.4209286,0.62039894,0.6617584,0.53346944,0.610294,0.5856207,0.51570934,0.6065624,0.60508347,0.49723276,0.60281736,0.62399584,0.5052638,0.6066613,0.6137349,0.49638915,0.63129526,0.5958725,0.48103538,0.60296625,0.6364249,0.52842927,0.6103433,0.5901216,0.5124245,0.6208747,0.59324163,0.5121138,0.6073118,0.6073811,0.49539447,0.6031935,0.6250935,0.53171647,0.6106674,0.5868245,0.4917106,0.6039454,0.6272725,0.4881714,0.6036191,0.6303433,0.34953418,0.6672462,0.6577297,0.3492206,0.66872895,0.656389,0.34757426,0.66895705,0.65703017,0.3470611,0.668888,0.65737164,0.3468485,0.66856676,0.6578105,0.3461003,0.6686314,0.6581388,0.34520814,0.6686289,0.65860975,0.34143323,0.6694554,0.65973693,0.3403582,0.6701616,0.6595754,0.33970228,0.6703393,0.65973294,0.3392016,0.67013,0.66020304,0.33720487,0.6698908,0.6614674,0.33687723,0.66947883,0.66205126,0.33386028,0.6686548,0.6644081,0.3331113,0.6686751,0.66476345,0.33278614,0.6684552,0.6651474,0.332705,0.66779006,0.66585577,0.33272818,0.6671396,0.6664958,0.33262587,0.6668754,0.6668112,0.33099464,0.6665528,0.66794455,0.330757,0.66617846,0.6684355,0.3307937,0.6658123,0.66878206,0.3309728,0.665446,0.669058,0.33290032,0.66475296,0.6687906,0.33343577,0.66436005,0.6689143,0.3341485,0.66402054,0.6688957,0.3361334,0.66071135,0.6711742,0.3354178,0.66056675,0.6716744,0.33353657,0.6591984,0.6739516,0.33396482,0.657944,0.67496455,0.33423242,0.65733606,0.6754243,0.3344484,0.65690565,0.6757361,0.33484185,0.65654314,0.6758935,0.33498776,0.6554594,0.6768724,0.3342863,0.6545192,0.6781278,0.33383426,0.6537708,0.6790717,0.33339325,0.6527552,0.68026435,0.33297166,0.6526312,0.6805897,0.33267382,0.65245235,0.6809068,0.33323303,0.65187865,0.6811828,0.33404166,0.65092427,0.68169916,0.33541998,0.65101355,0.6809367,0.33710298,0.65085834,0.6802536,0.33958608,0.6511009,0.6787849,0.3416801,0.65003496,0.6787557,0.33894473,0.64871806,0.68138194,0.3381232,0.64799005,0.6824819,0.3372917,0.64698535,0.6838452,0.33760637,0.6460992,0.6845274,0.33792788,0.6454895,0.68494385,0.33782116,0.6446801,0.6857583,0.33787215,0.643795,0.6865642,0.33859384,0.64407796,0.685943,0.33915675,0.6444358,0.6853285,0.34252906,0.6494221,0.6789144,0.34458748,0.6502972,0.67703253,0.34729004,0.65193105,0.6740738,0.34851298,0.6539481,0.6714839,0.34862122,0.65570515,0.6697119,0.35130218,0.6562339,0.66779023,0.3534949,0.6559349,0.6669264,0.3549784,0.65686643,0.6652193,0.35735178,0.6570001,0.6638152,0.3634999,0.6557187,0.6617408,0.36534086,0.65616703,0.6602809,0.36550483,0.65686387,0.65949684,0.3654788,0.6579074,0.65847015,0.365269,0.65907985,0.65741336,0.36389717,0.65932465,0.65792847,0.35094476,0.6656101,0.65863574,0.34442732,0.66826,0.6593925,0.3431423,0.66844124,0.65987855,0.33609247,0.6690248,0.6629085,0.3352027,0.66880816,0.6635773,0.33460915,0.66394275,0.6687427,0.35587877,0.6571215,0.664486,0.35578954,0.6621801,0.6594932,0.34397435,0.6681027,0.65978813,0.33212364,0.6651826,0.6687496,0.34210855,0.65112674,0.6774922,0.34011307,0.6462768,0.6831174,0.35359693,0.66333205,0.6595149,0.3350437,0.6560204,0.67630094,0.33615142,0.6613349,0.6705508,0.3354029,0.6627789,0.66949904,0.9150403,0.3634823,-0.17487662,0.91524154,0.36345676,-0.17387396,0.9157849,0.36246026,-0.17309113,0.917243,0.35933435,-0.17188393,0.91751415,0.35899,-0.17115456,0.91788685,0.35824376,-0.17071915,0.91836065,0.35709536,-0.17057723,0.9185108,0.35648075,-0.17105384,0.9191125,0.35531878,-0.17023726,0.91930425,0.35548615,-0.16884698,0.91971105,0.35503685,-0.16757222,0.9203331,0.353969,-0.16641198,0.9213781,0.35166374,-0.16551463,0.9228381,0.34811753,-0.16487585,0.92319083,0.34720814,-0.16481872,0.92356384,0.34624252,-0.16476023,0.9235653,0.3460419,-0.16517313,0.92330337,0.34648955,-0.16569804,0.9227776,0.34758374,-0.16633432,0.92231935,0.3475965,-0.1688305,0.92274,0.34596515,-0.16987967,0.9228972,0.34503743,-0.170909,0.92470855,0.34019762,-0.17082056,0.92568547,0.33801693,-0.1698559,0.92626464,0.33618283,-0.17033759,0.9265095,0.3346863,-0.17194547,0.9264792,0.33380443,-0.17381251,0.92603266,0.3340494,-0.1757114,0.9256834,0.3344968,-0.17669803,0.92469895,0.33358666,-0.18344423,0.92567605,0.3309743,-0.1832478,0.9262408,0.32905656,-0.18384697,0.92736083,0.32519096,-0.18507491,0.92859447,0.32214627,-0.18421207,0.92972887,0.31926215,-0.18350999,0.93038034,0.31785983,-0.1826404,0.93082297,0.31695706,-0.18195301,0.9310664,0.3163444,-0.18177326,0.9312443,0.31576544,-0.18186894,0.93139356,0.31489608,-0.18261021,0.9330447,0.30957368,-0.18328069,0.93465406,0.30564827,-0.18166183,0.93605065,0.30210173,-0.18039893,0.93612236,0.30139005,-0.1812154,0.9359977,0.30087158,-0.18271446,0.93596417,0.30036518,-0.18371662,0.93566364,0.30068943,-0.18471453,0.93372405,0.3043447,-0.18850368,0.9327676,0.30590057,-0.19070767,0.93269634,0.30603608,-0.19083883,0.93192065,0.3071806,-0.19277948,0.93139684,0.3082315,-0.19363151,0.930553,0.31008986,-0.19471887,0.9304558,0.30978757,-0.1956621,0.9300236,0.31036943,-0.19679141,0.9286783,0.31148872,-0.20132425,0.92879945,0.30977952,-0.20339173,0.9287415,0.30876163,-0.20519626,0.92854315,0.3078009,-0.20752414,0.92884994,0.30685207,-0.20755607,0.9289644,0.30624944,-0.20793408,0.92888504,0.30599385,-0.20866299,0.92878217,0.3060961,-0.2089708,0.92717946,0.3086335,-0.21232912,0.9267854,0.3087884,-0.21381883,0.9263389,0.30949026,-0.21473712,0.92455775,0.3133208,-0.21684805,0.9242158,0.3136356,-0.2178484,0.92401195,0.31407496,-0.21807967,0.92224807,0.31536025,-0.22362114,0.9219622,0.3142659,-0.22632402,0.92165256,0.31391472,-0.22806597,0.9214697,0.31261167,-0.23058084,0.9220736,0.308824,-0.23325522,0.92245346,0.3059581,-0.23551896,0.9226208,0.30401596,-0.23737161,0.92261815,0.3025242,-0.23927979,0.9230154,0.29737976,-0.24414723,0.924371,0.29365903,-0.24352154,0.9253867,0.29044116,-0.24352267,0.92650986,0.28648362,-0.24393985,0.92708915,0.28344733,-0.24528223,0.92728174,0.2796277,-0.24891166,0.92755425,0.27832487,-0.24935603,0.9274229,0.2772066,-0.25108433,0.9267784,0.27542678,-0.25538608,0.9271244,0.27466723,-0.2549476,0.92737705,0.27378625,-0.2549763,0.92753774,0.27278206,-0.2554677,0.9274824,0.27195138,-0.25655156,0.9286403,0.2657787,-0.25882208,0.9291468,0.26489794,-0.2579055,0.9293634,0.26420346,-0.2578376,0.92971236,0.2631422,-0.2576648,0.9302809,0.26096937,-0.25782236,0.93087816,0.25768033,-0.25897232,0.93137014,0.2561765,-0.25869533,0.93225306,0.25310326,-0.2585401,0.9346394,0.24814665,-0.25470072,0.9132699,0.36599204,-0.17885156,0.9143848,0.3643276,-0.1765386,0.92285025,0.3449366,-0.17136562,0.92393535,0.3419601,-0.17148405,0.92675775,0.32703507,-0.1848461,0.931615,0.31377482,-0.18340889,0.93458426,0.30278566,-0.18674345,0.9292543,0.31183454,-0.19810519,0.92850715,0.30843735,-0.20673852,0.9256104,0.31131053,-0.21524668,0.9239471,0.31463796,-0.21754235,0.921324,0.3143072,-0.22885147,0.9271283,0.2813357,-0.24755459,0.9325655,0.25191173,-0.25857702,0.93399566,0.24897213,-0.25625157,0.9166676,0.36049128,-0.17252988,0.9188246,0.35551634,-0.17137477,0.92330694,0.34347397,-0.1718428,0.9252772,0.3352058,-0.17748033,0.92437434,0.33460194,-0.18323083,0.9323665,0.3113835,-0.18366583,0.9308672,0.30957133,-0.19404112,0.92880493,0.31251135,-0.19914338,0.9286782,0.3123988,-0.19990943,0.92865586,0.30655524,-0.2088592,0.9276808,0.3081131,-0.21089025,0.9249518,0.31269512,-0.21606913,0.92260754,0.31594983,-0.2212939,0.9224483,0.30148348,-0.2412404,0.92688024,0.27627298,-0.25409898,0.92721033,0.27129355,-0.2582261,0.92811465,0.26704124,-0.25940713,0.9184409,0.35607862,-0.17226231,0.9224128,0.34820056,-0.1670657,0.92828965,0.30722758,-0.20949835,0.92375165,0.31520993,-0.21754456,0.9225263,0.30006772,-0.24270266,0.9271291,0.27059954,-0.25924417,0.9304636,0.25952023,-0.25862455,0.9334044,0.24990062,-0.25749958,0.9183365,0.35639954,-0.17215525,0.9230585,0.34419018,-0.17174442,0.93192613,0.31270236,-0.18365987,0.92756975,0.2686834,-0.25966054,0.9329197,0.250889,-0.25829348,0.92220956,0.34834114,-0.16789263,0.9250118,0.3355398,-0.17823054,0.9247921,0.33562896,-0.1792004,0.9176086,0.29930186,-0.26155847,0.9234257,0.31578806,-0.21808913,0.91753125,0.30364445,-0.25678116,0.92438,0.33510953,-0.18227252,0.9230451,0.31603542,-0.21933846,0.9272405,0.26987013,-0.2596058,0.9180231,0.3070338,-0.25092575,0.9239304,0.32533446,-0.20127125,0.9145858,0.34645241,-0.20857506,0.9237318,0.32529163,-0.2022498,0.91464454,0.34615383,-0.20881306,0.91797364,0.33899048,-0.20593657,0.9204129,0.29800534,-0.25304726,0.9152586,0.34284246,-0.21156736,0.91725487,0.32332793,-0.23259942,0.9183772,0.3036749,-0.2537023,0.91790354,0.33918247,-0.20593312,0.9203746,0.2988573,-0.25218064,0.9173523,0.33836818,-0.2096945,0.920377,0.2991376,-0.25183895,0.71817136,0.6775058,0.15879484,0.73016226,0.6659316,0.15296498,0.7176669,0.6776493,0.16045417,0.73028827,0.66565907,0.15354818,0.7174035,0.67489845,0.17275527,0.7303193,0.6624697,0.16663606,0.70798606,0.67312056,0.21369238,0.71459407,0.67387366,0.18774886,0.7202519,0.67462605,0.1616071,0.7303363,0.6623985,0.16684431,0.7085844,0.67269886,0.21303613,0.70838505,0.6728394,0.21325502,0.7149771,0.6735928,0.18729791,0.72043526,0.67448574,0.16137522,0.7326063,0.6433254,0.22230726,0.7180384,0.6605853,0.21919848,0.71818703,0.6604532,0.21910948,0.56166863,0.62754244,0.53918344,0.56271076,0.6281348,0.5374042,0.5251262,0.5468456,0.6520754,0.527213,0.54368234,0.653036,0.5293727,0.54039735,0.65401477,0.53146493,0.5371989,0.65495217,0.5307152,0.5368955,0.65580827,0.53238183,0.5344359,0.6564662,0.5356216,0.5335237,0.6545701,0.5346366,0.5317609,0.65680593,0.5373845,0.5312765,0.6549528,0.5511651,0.52833986,0.6458127,0.55587935,0.5258494,0.6438016,0.5589369,0.524229,0.64247453,0.57723874,0.5138468,0.6346313,0.5814616,0.51080954,0.63322663,0.5860918,0.5074664,0.63164407,0.5898362,0.5048624,0.6302438,0.5949788,0.50126886,0.6282753,0.60003513,0.49771917,0.62628543,0.6049723,0.4942353,0.62429154,0.6089184,0.49143967,0.62265986,0.61389536,0.48789534,0.6205568,0.6142258,0.48776212,0.62033445,0.61798894,0.4873581,0.616905,0.6230159,0.4868163,0.612259,0.6280315,0.486272,0.6075492,0.63252604,0.48578122,0.6032639,0.63416517,0.48627806,0.6011391,0.6348536,0.48876834,0.5983865,0.635096,0.4901046,0.5970348,0.63532627,0.4929931,0.5944059,0.63519996,0.49504694,0.59283173,0.63494813,0.49732217,0.5911949,0.640592,0.50115746,0.5817931,0.64347833,0.4997402,0.57982355,0.64333206,0.5001711,0.5796143,0.64474744,0.5006182,0.57765234,0.64743817,0.49934593,0.57574075,0.6485572,0.49906972,0.5747199,0.64932615,0.4994308,0.57353675,0.6483745,0.5000576,0.57406694,0.6464421,0.5024144,0.5741884,0.64639336,0.50284386,0.5738673,0.64593077,0.50347507,0.5738347,0.645051,0.5043083,0.5740926,0.6443286,0.504766,0.5745015,0.64310265,0.50535667,0.57535523,0.64234596,0.50628734,0.57538235,0.64125896,0.5069015,0.5760537,0.6406918,0.50702137,0.57657903,0.63941836,0.5098892,0.5754626,0.63829505,0.51239705,0.5744812,0.63717425,0.5148853,0.5734999,0.63538224,0.5149847,0.5753957,0.6304935,0.5240062,0.5726216,0.629941,0.52687323,0.5705952,0.6278223,0.52897793,0.57098293,0.6255592,0.531221,0.5713842,0.6243349,0.5321498,0.57185876,0.62210065,0.53494364,0.57168704,0.6210575,0.53617644,0.57166624,0.62042445,0.5366447,0.5719143,0.6198514,0.53691715,0.5722798,0.6160323,0.5383062,0.57509184,0.6134076,0.54006386,0.5762484,0.6101981,0.5422059,0.57764274,0.60759634,0.54360294,0.57907045,0.60665524,0.54391044,0.57976794,0.60351664,0.5459049,0.58116746,0.6035239,0.5471895,0.5799505,0.60319173,0.547996,0.5795344,0.6006322,0.5507098,0.57962024,0.59986264,0.5515019,0.57966405,0.59861964,0.5518204,0.58064514,0.5984659,0.5526012,0.58006066,0.59821725,0.5531232,0.5798196,0.5978664,0.5535335,0.57978994,0.5975203,0.5537308,0.57995844,0.5971897,0.55375206,0.58027846,0.5964846,0.5534327,0.5813074,0.5952494,0.55465084,0.5814126,0.591558,0.55811423,0.58186567,0.590458,0.55982995,0.5813344,0.5905371,0.561398,0.57973975,0.59023947,0.5623075,0.5791612,0.5895939,0.5633049,0.5788493,0.587776,0.56518495,0.5788656,0.58760744,0.5659798,0.5782598,0.5875467,0.5668935,0.57742584,0.58724034,0.5675792,0.57706374,0.587895,0.5674775,0.576497,0.5886707,0.56746763,0.57571465,0.5886365,0.56802607,0.5751986,0.58765525,0.5699792,0.57426906,0.5882574,0.573984,0.56964517,0.5890853,0.5747221,0.5680432,0.58965313,0.57539976,0.5667665,0.589359,0.5763856,0.5660703,0.5889138,0.5768925,0.56601727,0.58835864,0.57763356,0.56583875,0.5880308,0.57816637,0.5656354,0.58627856,0.57963395,0.5659522,0.5847289,0.5831605,0.56392896,0.5858591,0.58370245,0.5621926,0.58641744,0.58416665,0.5611274,0.58631,0.5845788,0.56081027,0.5849235,0.5852486,0.561559,0.58259416,0.58545864,0.5637572,0.58106726,0.58526653,0.5655297,0.580436,0.58547664,0.56596035,0.5789901,0.58677334,0.5660985,0.57780826,0.5874632,0.56659037,0.5768088,0.5879059,0.5671493,0.5760973,0.5878245,0.56795615,0.57554865,0.58800167,0.5683289,0.57515496,0.58855647,0.56815326,0.57185966,0.59279996,0.5670668,0.5712146,0.5933791,0.56711113,0.57063204,0.5935224,0.56754756,0.56798685,0.59619063,0.5674043,0.56758046,0.5970496,0.5669075,0.56714326,0.59760255,0.5667625,0.56647927,0.59815246,0.5668464,0.5657405,0.59854716,0.56716746,0.565029,0.59901404,0.56738377,0.56225747,0.6027049,0.5662274,0.5614037,0.6036952,0.5660194,0.5333607,0.5348125,0.655364,0.53447175,0.53510416,0.6542198,0.5625021,0.52233493,0.6409038,0.6440369,0.5006529,0.5784143,0.6311031,0.5210183,0.5746727,0.6182641,0.53680784,0.57409656,0.6047247,0.5440192,0.5816796,0.5907037,0.5585342,0.58233035,0.5904691,0.558771,0.58234113,0.568529,0.59518856,0.56791306,0.54150116,0.5305486,0.6521463,0.56695193,0.5199625,0.63890886,0.57389903,0.51623994,0.63571715,0.6065142,0.49586612,0.62149596,0.6396444,0.5014444,0.58258784,0.6477133,0.5005681,0.57436836,0.64688194,0.50165594,0.57435626,0.64376336,0.504849,0.5750619,0.63376516,0.51507384,0.5770967,0.6039134,0.54505205,0.5815555,0.5874827,0.5706911,0.57373834,0.58555174,0.5803733,0.565947,0.57019323,0.59354913,0.5679604,0.54546,0.5298455,0.649413,0.5986273,0.5016006,0.6245336,0.63480514,0.49909264,0.589855,0.6328386,0.5171534,0.57625306,0.5847874,0.58223796,0.5648209,0.5697573,0.5938406,0.56809324,0.5691478,0.59442466,0.56809336,0.537841,0.55002564,0.63890445,0.54965645,0.5290156,0.64654493,0.6048062,0.50769144,0.6135624,0.6043998,0.5442859,0.5817678,0.5851641,0.5810463,0.56565726,0.5379992,0.5503352,0.63850456,0.60289884,0.5087436,0.61456734,0.61898184,0.5039259,0.6024285,0.5865681,0.5135452,0.626266,0.570002,0.51833093,0.6375191,0.6393383,0.5014702,0.58290154,0.61930853,0.5296236,0.5796169,0.5455106,0.54732966,0.63470346,0.6014069,0.50956506,0.615348,0.58581394,0.51395464,0.626636,0.6182451,0.50433815,0.60283995,0.5843045,0.5147732,0.6273729,0.63803065,0.50145763,0.5843434,0.6228121,0.52564454,0.57948506,0.5430943,0.5950837,0.5923884,0.5455589,0.5486673,0.6335059,0.5936975,0.5137909,0.6193079,0.61444265,0.5064602,0.6049449,0.57259595,0.52108437,0.6329336,0.62265116,0.5257797,0.5795353,0.5434285,0.594485,0.59268296,0.5455972,0.54980993,0.6324814,0.5929635,0.5141323,0.61972755,0.5722237,0.5212542,0.6331304,0.6140815,0.5066318,0.6051678,0.571479,0.5215938,0.63352317,0.63626397,0.50120395,0.5864833,0.5563746,0.58594763,0.5891627,0.5883867,0.53515595,0.6061428,0.569382,0.53208923,0.626646,0.61173844,0.5172391,0.5985313,0.5648001,0.55283517,0.6126779,0.55751187,0.5409796,0.6296996,0.63540137,0.5006271,0.5879095,0.55664283,0.58535224,0.5895011,0.5863735,0.5415645,0.6023902,0.5637959,0.5559997,0.61073595,0.61074346,0.5204895,0.596727,0.56175625,0.5623045,0.60683084,0.6200434,0.5226279,0.5851549,0.5639085,0.57079434,0.5968257,0.6107355,0.5207281,0.59652704,0.61073816,0.5206485,0.59659374,0.63479555,0.49941534,0.58959216,0.58636785,0.54172105,0.60225505,0.5617532,0.56238145,0.60676223,0.6197946,0.5223263,0.5856875,0.6348907,0.5000147,0.58898145,0.5709272,0.5636436,0.5969489,0.55399436,0.5732088,0.6037565,0.5877345,0.55400217,0.58961827,0.6108065,0.52117115,0.5960672,0.61078286,0.5210234,0.5962205,0.58641505,0.5420119,0.60194725,0.5617768,0.5625245,0.6066078,0.70845884,0.41607,0.570063,0.7092366,0.4163954,0.56885695,0.7102954,0.41699663,0.5670927,0.7104749,0.41736367,0.5665978,0.7102416,0.42089123,0.56427604,0.710342,0.42206198,0.5632743,0.71004874,0.42345452,0.5625984,0.7094291,0.4249571,0.56224716,0.70823604,0.4271128,0.56211776,0.70720935,0.42877343,0.5621462,0.7067512,0.4297602,0.5619688,0.70608157,0.43090028,0.56193745,0.7055599,0.43337804,0.56068593,0.70541614,0.4349326,0.55966216,0.7044077,0.4368393,0.55944717,0.7022523,0.43854567,0.5608202,0.70015913,0.4407739,0.5616899,0.69907975,0.4396345,0.56392294,0.69863534,0.43808,0.5656806,0.69917387,0.43403757,0.5681261,0.6994968,0.4304649,0.5704421,0.69940525,0.42964017,0.5711757,0.6995863,0.42892355,0.5714925,0.7010943,0.425423,0.5722604,0.7034417,0.4208549,0.57275736,0.7035506,0.4202503,0.5730674,0.70358205,0.4192818,0.5737377,0.704716,0.41754416,0.5736133,0.70592034,0.41620323,0.5731067,0.7064167,0.41586697,0.57273906,0.70703256,0.41572896,0.572079,0.70774037,0.41571963,0.57120997,0.6994783,0.43228555,0.5690864,0.5421441,0.42866787,0.7227196,0.5424779,0.42866787,0.7224691,0.54300535,0.42916605,0.7217768,0.54257363,0.42933765,0.72199935,0.53974384,0.43143615,0.7228689,0.5374639,0.43239778,0.72399217,0.5369109,0.43279952,0.72416246,0.5364566,0.4334816,0.72409123,0.53628236,0.43279564,0.72463036,0.5368065,0.43211034,0.72465134,0.53953344,0.4310471,0.723258,0.54021144,0.4305203,0.7230657,0.54095554,0.4297348,0.72297657,0.6400814,0.28817832,0.7122142,0.64017797,0.2886752,0.7119261,0.6399782,0.28913614,0.71191865,0.63946337,0.29131037,0.71149486,0.6388878,0.29226574,0.7116201,0.63815135,0.29241407,0.7122197,0.63864547,0.29148403,0.71215796,0.6380825,0.29003674,0.7132527,0.63762873,0.28981483,0.7137486,0.63817537,0.2886769,0.7137211,0.63968366,0.28709757,0.71300757,0.64061886,0.28658253,0.71237487,0.642367,0.28642333,0.7108632,0.64252746,0.28599703,0.7108897,0.6428464,0.2856018,0.7107603,0.64330006,0.28519824,0.71051174,0.64333045,0.28562784,0.7103117,0.64299345,0.28750497,0.7098594,0.6413041,0.28909048,0.7107431,0.64104193,0.28832433,0.71129066,0.64117974,0.28806153,0.7112729,0.63849556,0.29058397,0.71266013,0.6418953,0.2868838,0.71110344,0.64168215,0.2875286,0.71103543,0.640703,0.28762168,0.7118802,0.74261796,0.3249831,0.5855806,0.71369267,0.41129684,0.5669901,0.7129954,0.41164473,0.5676145,0.712127,0.4118141,0.5685809,0.7109858,0.41432637,0.56818384,0.71116,0.41518483,0.5673386,0.71086353,0.41581732,0.56724685,0.71017915,0.41571507,0.56817824,0.7023377,0.420551,0.5743332,0.7012119,0.42204577,0.57461226,0.69941723,0.4239887,0.57536876,0.6976591,0.4274634,0.57493204,0.6964427,0.42932615,0.5750188,0.693123,0.43244538,0.57669014,0.6918536,0.43453655,0.5766425,0.69072616,0.43596366,0.5769169,0.688785,0.44023228,0.5759955,0.68928576,0.4399499,0.575612,0.68948966,0.43994755,0.5753696,0.6888441,0.44320408,0.5736409,0.68798065,0.44471222,0.5735099,0.6846311,0.44930673,0.573937,0.6853714,0.4489512,0.5733314,0.6859535,0.44868767,0.5728413,0.686086,0.44873646,0.57264435,0.6834472,0.4513278,0.57376224,0.67997503,0.4533039,0.57632416,0.67699003,0.45634884,0.57743424,0.6754769,0.45680225,0.578846,0.6715907,0.46078303,0.5802111,0.6718865,0.46163586,0.5791899,0.67086077,0.46218544,0.57994,0.6658579,0.46585056,0.5827662,0.66590136,0.4663971,0.58227926,0.6650749,0.46786654,0.58204484,0.6643283,0.4688409,0.5821136,0.6617605,0.47151324,0.5828793,0.65933174,0.47493362,0.5828548,0.6584988,0.47637442,0.58262056,0.65734255,0.47781685,0.582745,0.65558743,0.4777802,0.58474886,0.6533649,0.47773382,0.5872688,0.648004,0.47912052,0.59205943,0.64705503,0.48070621,0.5918119,0.6460662,0.48233235,0.5915691,0.6442131,0.48465005,0.59169567,0.64093673,0.48520905,0.59478754,0.6391887,0.48550633,0.59642386,0.6363239,0.48594803,0.59912145,0.5336168,0.5300299,0.6590307,0.52735287,0.52765954,0.66593874,0.52465457,0.5266761,0.6688421,0.52118164,0.52541715,0.6725374,0.5182761,0.52437055,0.67559266,0.51538104,0.52333313,0.6786051,0.512686,0.52237207,0.68138134,0.515177,0.5203417,0.6810559,0.5245907,0.5124768,0.6798324,0.52733123,0.51008195,0.67951316,0.53023577,0.5075383,0.67915744,0.5291573,0.50667524,0.6806415,0.52736944,0.50525296,0.6830819,0.5272256,0.50499403,0.68338436,0.5271262,0.5047277,0.68365777,0.5270748,0.50218374,0.6855681,0.5238743,0.4991879,0.69019353,0.52084494,0.49844337,0.6930186,0.5189264,0.49797347,0.69479334,0.5184818,0.497453,0.69549775,0.5179745,0.4949448,0.6976619,0.51332855,0.48771456,0.70613617,0.51129687,0.4880768,0.7073589,0.50781775,0.48869553,0.70943487,0.5044474,0.4892924,0.7114251,0.5021352,0.48970115,0.71277845,0.49932253,0.49019673,0.7144118,0.50049,0.48053738,0.7201344,0.50126463,0.47727105,0.72176594,0.50119567,0.47353652,0.72426933,0.5008897,0.47175586,0.72564167,0.5013927,0.47046524,0.7261321,0.5023125,0.47148383,0.7248346,0.5037495,0.4711441,0.72405773,0.5070158,0.4708119,0.7219911,0.51303303,0.465364,0.7212721,0.51643085,0.46070284,0.72183937,0.5195305,0.4580102,0.7213285,0.52152514,0.4550858,0.72173995,0.5246769,0.45213905,0.72130746,0.525988,0.450345,0.7214749,0.5287413,0.44767752,0.7211224,0.53438115,0.4400156,0.7216807,0.5366522,0.4389807,0.720625,0.5376172,0.43684703,0.72120214,0.5390638,0.43446591,0.72156054,0.5487737,0.4206137,0.72244817,0.54851127,0.4197692,0.7231384,0.5514024,0.41653174,0.72281164,0.553259,0.41404253,0.7228231,0.55540705,0.41138148,0.7226952,0.55666703,0.41116014,0.72185117,0.55762845,0.41110733,0.72113883,0.55936384,0.40972394,0.720582,0.5606139,0.40969056,0.71962893,0.56161076,0.40872172,0.7194025,0.5634188,0.40766132,0.71858996,0.5695132,0.4021374,0.71689624,0.57116145,0.39967573,0.71696156,0.57430375,0.39563385,0.7166931,0.5754209,0.3938503,0.7167794,0.57654494,0.39151147,0.71715736,0.57728356,0.39055538,0.7170845,0.5790622,0.38883188,0.7165869,0.57833314,0.38883495,0.7171737,0.57936096,0.38759255,0.71701664,0.58036745,0.3870339,0.71650434,0.58059347,0.38588947,0.7169383,0.5818042,0.38416943,0.71688056,0.5831569,0.37935355,0.71834457,0.58308196,0.37789515,0.7191736,0.5836244,0.37514773,0.72017133,0.5838286,0.37269202,0.72128,0.5847881,0.37097844,0.7213861,0.5877015,0.3654091,0.72186095,0.5874724,0.36341944,0.7230508,0.5911132,0.3579438,0.7228149,0.5947595,0.35407895,0.72172654,0.59716064,0.3504963,0.7214926,0.5990996,0.34841388,0.72089356,0.6014359,0.34682053,0.7197155,0.60400707,0.3463776,0.71777296,0.6100852,0.34191284,0.7147668,0.6124133,0.3391051,0.71411324,0.614455,0.3380065,0.71287906,0.61482584,0.33737275,0.7128596,0.6152776,0.33621415,0.7130172,0.61632615,0.33471608,0.7128164,0.621452,0.32692388,0.71198195,0.6221501,0.3253877,0.7120759,0.6231696,0.32344162,0.71207106,0.62393516,0.3216912,0.71219355,0.6243637,0.3202561,0.7124647,0.62770575,0.3165173,0.7111978,0.6293621,0.31326497,0.71117395,0.63212353,0.30914417,0.7105278,0.6337002,0.30711982,0.7100011,0.63820916,0.30352315,0.7075046,0.6420182,0.29962292,0.7057186,0.64311683,0.29665226,0.7059732,0.64421004,0.2944149,0.70591307,0.6467521,0.2916984,0.7047154,0.64717346,0.29017535,0.7049573,0.6485654,0.28905466,0.70413804,0.6500391,0.28658003,0.70379055,0.65037453,0.2851836,0.70404774,0.6514999,0.28320462,0.7038061,0.65188354,0.28186888,0.703987,0.6537155,0.28416723,0.70135945,0.6541538,0.28485844,0.70067,0.6543627,0.28546458,0.7002282,0.65463614,0.28676125,0.6994423,0.65528476,0.2871833,0.6986612,0.65526384,0.28854713,0.69811887,0.65510035,0.28922915,0.69799,0.6545059,0.28981325,0.6983053,0.6533798,0.29579183,0.6968515,0.65405405,0.2963624,0.6959761,0.6541462,0.29681575,0.6956962,0.658628,0.299405,0.6903375,0.65954846,0.29846662,0.6898649,0.6607241,0.29811025,0.68889326,0.66145074,0.2982014,0.6881562,0.66214794,0.2977865,0.68766516,0.6626107,0.29801354,0.6871208,0.66308707,0.29849917,0.68645006,0.6640249,0.29846662,0.6855571,0.66474235,0.29901633,0.68462175,0.66705525,0.29927978,0.6822529,0.6693719,0.29911315,0.68005335,0.6716446,0.29956844,0.6776077,0.6775077,0.29914397,0.6719347,0.679818,0.29770434,0.67023844,0.68138874,0.297409,0.668773,0.6844938,0.2970152,0.6657705,0.6877912,0.29659444,0.66255176,0.6906372,0.29622978,0.65974855,0.6960771,0.2959099,0.6541513,0.6977344,0.29369003,0.6533857,0.69929355,0.29159486,0.65265685,0.7012281,0.29148152,0.6506287,0.7022732,0.29227066,0.64914584,0.7033628,0.2933796,0.6474637,0.70398337,0.29423818,0.6463987,0.7050634,0.30231708,0.6414749,0.7057402,0.30438378,0.63975084,0.70662296,0.3071214,0.6374641,0.70804846,0.3116207,0.6336876,0.7093497,0.31278333,0.6316562,0.7118406,0.31502628,0.6277272,0.71425927,0.31722546,0.6238603,0.715822,0.31865802,0.6213341,0.7172837,0.31931219,0.6193091,0.7198645,0.31987426,0.6160159,0.72287714,0.32053548,0.6121321,0.72586775,0.32119575,0.6082346,0.7290307,0.32189852,0.6040659,0.7325309,0.3226835,0.5993945,0.74041766,0.32447684,0.58863956,0.69387746,0.4315523,0.57645184,0.6700214,0.46250054,0.5806587,0.666006,0.46521777,0.5831024,0.5332898,0.52984405,0.65944463,0.51898223,0.517233,0.68053466,0.52702934,0.50017715,0.68706834,0.5405578,0.4335408,0.72099906,0.5489663,0.42198634,0.721501,0.5830678,0.38095376,0.7175697,0.5860149,0.36916232,0.7213222,0.5873081,0.36680964,0.7214706,0.6173886,0.33364454,0.7123992,0.6455904,0.29320362,0.7051558,0.6494164,0.28797832,0.70379466,0.65332484,0.2977865,0.6960531,0.6577722,0.30023032,0.6907948,0.67692953,0.29943025,0.67238975,0.69289535,0.29656917,0.6572235,0.7041476,0.29764333,0.64465857,0.7071058,0.3086344,0.6361966,0.73792684,0.3239069,0.5920711,0.71115834,0.41215658,0.5695443,0.68833727,0.44029725,0.5764808,0.68457246,0.4489839,0.5742595,0.66769904,0.46374527,0.5823387,0.6494998,0.4776672,0.5915945,0.5268601,0.49992543,0.68738127,0.5415524,0.43273354,0.7207375,0.548172,0.42377955,0.72105366,0.65325713,0.2983641,0.6958692,0.6947622,0.2968508,0.6551222,0.6952946,0.29680118,0.65457964,0.70424813,0.29984573,0.64352715,0.7349114,0.32322145,0.5961821,0.68818307,0.4401113,0.57680684,0.6850229,0.44789624,0.57457167,0.6734409,0.45881233,0.57962805,0.5905573,0.5040157,0.6302462,0.550221,0.5249122,0.64940286,0.5313495,0.5291269,0.6615833,0.5174402,0.4923493,0.69989127,0.5139314,0.48786786,0.70559156,0.5460042,0.42721757,0.72066957,0.6569739,0.30068466,0.69135666,0.7479944,0.32947937,0.576149,0.7472174,0.3858458,0.5411,0.68693304,0.44550973,0.5741464,0.6515537,0.47770238,0.58930314,0.5537475,0.51947105,0.6507791,0.574018,0.50902086,0.6414055,0.5940758,0.49849504,0.6313293,0.5157855,0.4902249,0.70259863,0.54751,0.42500025,0.72083807,0.5966806,0.36151248,0.7164363,0.6297992,0.31668466,0.7092699,0.7396004,0.3275299,0.58797556,0.72861683,0.32342404,0.6037502,0.76050436,0.35929185,0.5408721,0.74610335,0.38606244,0.542481,0.6856736,0.44661722,0.5747911,0.54332185,0.5099531,0.6668953,0.56727725,0.5026365,0.6523442,0.5503285,0.5163055,0.6561762,0.5908134,0.4952837,0.6368937,0.50854886,0.47000864,0.721436,0.59606534,0.36313444,0.7161282,0.62835705,0.31888005,0.70956534,0.65382105,0.2914033,0.69828516,0.65612656,0.3009707,0.6920365,0.69117004,0.30087408,0.6570835,0.750552,0.36695623,0.54955876,0.7403933,0.3511738,0.5731446,0.72929937,0.33529094,0.59640795,0.745677,0.38614535,0.5430079,0.6338777,0.48252007,0.60446125,0.56744856,0.50257057,0.65224606,0.59089756,0.49525055,0.63684136,0.5434089,0.50992024,0.6668494,0.59106594,0.4951844,0.6367365,0.51801705,0.485038,0.7045541,0.59536296,0.3645804,0.7159777,0.6343451,0.3147998,0.7060505,0.6909058,0.30090773,0.65734595,0.67638946,0.29949772,0.672903,0.73973614,0.35085064,0.5741901,0.72895265,0.3351283,0.59692305,0.75024223,0.36679566,0.55008864,0.7282579,0.33480322,0.5979525,0.6895593,0.43776515,0.5769485,0.6470861,0.47215113,0.5986258,0.54529977,0.50835353,0.66650194,0.5446696,0.50887597,0.6666185,0.5215187,0.51515424,0.6801723,0.56869966,0.50152105,0.65196425,0.5916857,0.49465713,0.63657075,0.5181074,0.48516506,0.7044002,0.55008787,0.4233843,0.71982574,0.59757584,0.3626457,0.71511614,0.6535186,0.2934138,0.69772613,0.63418317,0.31579736,0.7057505,0.6897444,0.30092558,0.65855634,0.67401004,0.29953355,0.6752704,0.7363728,0.3473764,0.58058995,0.7264601,0.33305582,0.6011069,0.7486946,0.36507052,0.5533352,0.7228168,0.3295577,0.607394,0.6298388,0.48007712,0.61059725,0.6452597,0.4723551,0.60043365,0.66047645,0.46459654,0.5898482,0.547592,0.50633645,0.6661579,0.5468281,0.5070092,0.6662737,0.5702176,0.5001704,0.6516759,0.59243846,0.4939789,0.6363973,0.52035785,0.48286596,0.7043211,0.56644785,0.4053168,0.717534,0.5516122,0.4222216,0.719342,0.5946035,0.3669963,0.71537435,0.6534603,0.294257,0.6974256,0.63415015,0.3162158,0.70559275,0.6913546,0.30558333,0.6547119,0.72653997,0.3703766,0.5787581,0.73402447,0.3686092,0.57038176,0.7211277,0.35094085,0.5973402,0.71496016,0.3313527,0.6156601,0.6023558,0.48488516,0.63407713,0.5863666,0.49254683,0.6430955,0.56397676,0.49874416,0.65816754,0.54439974,0.50562656,0.6693061,0.58330184,0.4918303,0.6464224,0.62111926,0.47790942,0.6211389,0.63957304,0.4709034,0.6076153,0.6576985,0.46386757,0.5935146,0.52212644,0.486593,0.7004365,0.5399189,0.43558276,0.7202467,0.553234,0.42050838,0.71910006,0.5265145,0.45053616,0.72097135,0.63430256,0.31997013,0.70376086,0.61469305,0.34544972,0.7090959,0.59467787,0.37067708,0.71341205,0.6827208,0.3063005,0.6633795,0.6955455,0.30896187,0.6486594,0.6695794,0.30363673,0.6778408,0.7076881,0.39049932,0.588802,0.7086265,0.36448714,0.60415035,0.7203053,0.3771041,0.5821965,0.70874345,0.33818737,0.6191219,0.58469003,0.49058,0.64611834,0.5681673,0.49500737,0.6573839,0.5853836,0.48995453,0.6459648,0.56677127,0.49625397,0.6576491,0.5493167,0.501286,0.6685533,0.54861474,0.5019068,0.66866386,0.58677036,0.48870283,0.6456548,0.6051086,0.48237264,0.6333721,0.62316513,0.47601718,0.6205424,0.62248343,0.47664818,0.6207422,0.6409231,0.46963674,0.60717297,0.6583658,0.4632316,0.5932714,0.5472104,0.5031478,0.66888195,0.54919577,0.4571832,0.69954807,0.53122836,0.46127853,0.71064657,0.55803984,0.43142828,0.70884496,0.5399247,0.4825602,0.68964994,0.5356993,0.47195366,0.7002042,0.6123905,0.34877524,0.70946014,0.5935033,0.3723233,0.71353287,0.633179,0.32164943,0.7040071,0.5911499,0.37561202,0.7137628,0.68239444,0.30630332,0.66371393,0.69538593,0.3089632,0.64882976,0.6690791,0.30364105,0.67833275,0.65544564,0.3009764,0.692679,0.7067956,0.3915175,0.5891979,0.7080386,0.36517385,0.60442483,0.7073907,0.3908387,0.5889341,0.70845324,0.33853444,0.61926454,0.61420923,0.4704179,0.633604,0.6299677,0.4670242,0.62050724,0.6454385,0.4636237,0.60701084,0.6606116,0.46021637,0.59312147,0.5727515,0.48908883,0.6578357,0.58905977,0.4857343,0.6458101,0.55161273,0.49834177,0.66886383,0.59362566,0.47978052,0.64607984,0.6544008,0.45153382,0.60652846,0.6344761,0.4610019,0.620417,0.67395806,0.44201463,0.591949,0.56036055,0.42907536,0.7084422,0.550756,0.45563707,0.6993302,0.5588137,0.43064436,0.70871204,0.5407105,0.48179904,0.6895664,0.63310385,0.32279003,0.70355254,0.633129,0.32240987,0.7037042,0.6123312,0.3495279,0.70914084,0.591116,0.3759842,0.713595,0.6838458,0.35996336,0.63465047,0.6961523,0.33590272,0.6344614,0.6952452,0.38894367,0.6044476,0.70022416,0.40329316,0.5891017,0.68978405,0.37449932,0.6196356,0.68950415,0.32114223,0.6491931,0.68352026,0.33326837,0.6494092,0.6705621,0.33063143,0.6641004,0.6774365,0.3453395,0.649477,0.6632294,0.31584248,0.6785059,0.63692504,0.45788494,0.620216,0.63610935,0.4589246,0.6202847,0.61750007,0.46628374,0.6334612,0.65601826,0.4494452,0.60633254,0.6747581,0.440965,0.5918204,0.5744175,0.4870468,0.65789807,0.59445477,0.47875383,0.6460792,0.55244887,0.49732724,0.66892886,0.5961113,0.47669846,0.6460727,0.6592445,0.4452604,0.6059208,0.6763557,0.43886405,0.5915584,0.6385543,0.45580387,0.62007356,0.6795415,0.43465486,0.5910147,0.59480345,0.40438372,0.6947536,0.6038157,0.3771212,0.7022722,0.6249601,0.3506776,0.69745976,0.63940156,0.32337078,0.697565,0.61008424,0.37768954,0.6965256,0.5666749,0.42962962,0.7030633,0.5791478,0.4307376,0.6921365,0.5631474,0.4567293,0.68866783,0.54683304,0.48233673,0.6843427,0.6771802,0.3451539,0.6498429,0.67726564,0.34521577,0.649721,0.6835172,0.35971722,0.6351439,0.6703848,0.3305069,0.66434145,0.6631376,0.3157798,0.6786248,0.6950943,0.3888222,0.6046993,0.6897052,0.3744382,0.6197603,0.7001521,0.40323284,0.5892286,0.6895475,0.37431592,0.6200095,0.6700298,0.330258,0.66482306,0.6629538,0.31565472,0.6788625,0.67700917,0.34503016,0.6500868,0.66258603,0.3154045,0.67933774,0.6546851,0.3004733,0.6936161,0.640632,0.4534311,0.61967003,0.63993984,0.45422226,0.61980575,0.6202992,0.46313852,0.63303363,0.66061294,0.44366938,0.6055972,0.6802165,0.43385497,0.59082603,0.5758406,0.48549494,0.6578011,0.5968178,0.4759178,0.645996,0.5531645,0.49655676,0.66890985,0.59822994,0.47435507,0.64583915,0.6633445,0.44048336,0.6049367,0.6815648,0.43225417,0.5904454,0.64201504,0.45184737,0.61939543,0.6842555,0.42904836,0.589671,0.6100228,0.3783131,0.69624096,0.62480485,0.35256895,0.69664484,0.60999185,0.3786247,0.6960986,0.62485695,0.3519388,0.6969167,0.6392568,0.32560027,0.69666004,0.63927776,0.32528195,0.69678944,0.6099298,0.37924787,0.69581366,0.5946606,0.40561515,0.6941579,0.5790265,0.43164906,0.69166994,0.579067,0.43134537,0.69182557,0.56305754,0.45732826,0.6883437,0.5467838,0.4826316,0.68417406,0.63931936,0.32464495,0.6970483,0.67686975,0.34485045,0.6503272,0.67691624,0.34491032,0.65024704,0.6833408,0.3594792,0.6354684,0.6699322,0.3301375,0.66498125,0.66253495,0.31534386,0.67941576,0.6950158,0.3887047,0.6048651,0.6895059,0.37425667,0.62009156,0.70011526,0.40317446,0.5893122,0.6894224,0.37413839,0.6202557,0.6697369,0.32989657,0.6652975,0.6624327,0.3152228,0.67957157,0.6767768,0.34473062,0.6504875,0.66222817,0.3149806,0.6798832,0.654258,0.2999864,0.69422954,0.63067216,0.4231277,0.65055025,0.6365963,0.43754327,0.63505983,0.622703,0.43607157,0.6496788,0.6084725,0.4345985,0.66399205,0.6524893,0.41158846,0.6362803,0.61463714,0.44892585,0.6486037,0.6242487,0.408604,0.6658501,0.6018113,0.4201605,0.679182,0.6096195,0.4071102,0.68016565,0.6385408,0.41009688,0.651219,0.67932874,0.4145685,0.60551256,0.65817094,0.42609024,0.62069166,0.66608745,0.41307905,0.6210421,0.692207,0.4160569,0.5897001,0.6501456,0.4390139,0.62014306,0.5923265,0.46023583,0.6613111,0.56969744,0.47147185,0.673171,0.5778506,0.45878276,0.6749867,0.6064782,0.4616879,0.64732414,0.56146747,0.484064,0.67114556,0.58592314,0.44599944,0.67659336,0.5939113,0.43312448,0.67799157,0.65457374,0.35562924,0.667129,0.63962543,0.3822737,0.6668929,0.6324561,0.3674683,0.6818844,0.6398602,0.35409966,0.6820501,0.66150767,0.37050968,0.65202004,0.6689383,0.35715804,0.6518893,0.682947,0.3586857,0.63633955,0.61733216,0.3939763,0.68094325,0.6249456,0.3807614,0.6815158,0.6471542,0.3406583,0.68201417,0.6543346,0.32714692,0.6817779,0.669065,0.3286925,0.66656834,0.66139793,0.31356835,0.68134254,0.6762504,0.34373304,0.651562,0.6738915,0.39998296,0.62119555,0.66794914,0.3852954,0.6367035,0.6815794,0.38680482,0.62115335,0.6948467,0.388313,0.6053108,0.6891478,0.37354708,0.620917,0.7000378,0.40297994,0.58953726,0.6463054,0.3969818,0.6516861,0.6539622,0.38378516,0.6519527,0.6764613,0.3441321,0.65113235,0.6765665,0.34433165,0.6509174,0.6695133,0.32949534,0.66572124,0.6621098,0.31477883,0.6800918,0.689331,0.37394127,0.62047625,0.661873,0.31437534,0.680509,0.537073,0.4336468,0.7235351,0.5371301,0.43386024,0.7233647,0.53703165,0.43420723,0.7232296,0.53655946,0.43515897,0.7230081,0.5363228,0.43610322,0.7226145,0.53606457,0.43541363,0.7232218,0.53638196,0.434198,0.7237171,0.74082714,0.45276374,0.49616545,0.7414142,0.45324537,0.49484706,0.7405119,0.4540413,0.49546814,0.7394313,0.45373154,0.49736214,0.7384602,0.4525875,0.49984112,0.73690605,0.4531763,0.5015981,0.7369263,0.45291644,0.50180304,0.7352322,0.4485072,0.5082076,0.73472214,0.44865718,0.5088124,0.7348273,0.44837078,0.50891304,0.73527336,0.44764394,0.5089086,0.7355742,0.4475365,0.50856817,0.7363298,0.44749534,0.50750995,0.73716426,0.44803256,0.50582176,0.7378811,0.4490982,0.50382763,0.7384764,0.44920173,0.5028622,0.7391075,0.44979933,0.50139874,0.7395045,0.44982213,0.5007925,0.7402324,0.44933644,0.50015265,0.74080545,0.45089573,0.4978959,0.7377328,0.45176804,0.5016532,0.7378349,0.45106384,0.5021365,0.7364662,0.449475,0.5055588,0.64483297,0.6064391,0.4652119,0.6424779,0.6065929,0.46825978,0.6441692,0.6043452,0.46884212,0.64471453,0.5997658,0.4739453,0.6456989,0.6001578,0.47210544,0.6460071,0.6008433,0.4708101,0.6447908,0.6008433,0.47247443,0.6420482,0.59998393,0.47727713,0.61359876,0.6038922,0.5087344,0.61095214,0.606538,0.5087722,0.6102836,0.6071057,0.5088975,0.6096601,0.6074746,0.5092044,0.60802007,0.6079978,0.5105392,0.60546476,0.6084916,0.51298195,0.60302866,0.6087154,0.5155793,0.5903602,0.6210456,0.5155359,0.6497336,0.4996228,0.5729078,0.6501378,0.50042796,0.57174534,0.65169984,0.5005364,0.56986904,0.6518975,0.5009429,0.56928545,0.65199846,0.50182617,0.56839114,0.65109754,0.5036451,0.56781477,0.6501432,0.50599253,0.5668205,0.6509767,0.5067936,0.5651456,0.6502554,0.50763667,0.56521946,0.65298796,0.50566316,0.56383634,0.6518511,0.5061359,0.564727,0.65144956,0.50599253,0.5653185,0.65114033,0.50564116,0.5659887,0.65166837,0.5050316,0.5659253,0.65210325,0.5046321,0.56578064,0.6569765,0.5019707,0.56250095,0.65887696,0.50043756,0.5616435,0.6618461,0.5031613,0.5556874,0.6643423,0.5007268,0.55490714,0.6655797,0.49880907,0.5551516,0.6664958,0.4980777,0.55470896,0.6693051,0.495141,0.5539549,0.6716898,0.4931525,0.5528413,0.67427003,0.4899887,0.55251336,0.67490137,0.48804557,0.55346155,0.67561436,0.48704556,0.5534725,0.6784834,0.4848766,0.5518649,0.6786691,0.48370755,0.552662,0.6792781,0.4828264,0.55268437,0.68209726,0.48062333,0.5511302,0.68379563,0.47734448,0.55187476,0.684627,0.47616383,0.5518639,0.6874445,0.47284067,0.5512184,0.68803436,0.47149444,0.5516355,0.6917563,0.4680842,0.5498822,0.6927255,0.4673776,0.5492628,0.69358844,0.46708068,0.5484257,0.6971949,0.4667635,0.5441058,0.6994106,0.46510905,0.54267704,0.70273954,0.46355125,0.5397012,0.7047217,0.4616458,0.538749,0.7057039,0.46007562,0.5388065,0.7066436,0.45901218,0.5384819,0.71052563,0.4561964,0.5357594,0.7147461,0.45406032,0.5319466,0.7161859,0.45310786,0.5308211,0.7172495,0.4516837,0.53059864,0.71988463,0.44971788,0.5286965,0.7210741,0.44943923,0.5273106,0.7231819,0.44982362,0.5240865,0.7282138,0.4475899,0.5190067,0.7298354,0.4463373,0.51780623,0.7308919,0.44627705,0.51636595,0.7317911,0.44708303,0.5143915,0.73302346,0.4497148,0.51032656,0.73387307,0.45065844,0.50826883,0.73512304,0.45041877,0.5066726,0.7355728,0.45134374,0.50519454,0.73577,0.45364115,0.50284415,0.7379185,0.45457503,0.4988365,0.7387593,0.45621467,0.49608758,0.749986,0.44900832,0.4857083,0.7522799,0.44418854,0.48659164,0.7544834,0.4408611,0.4862059,0.7553041,0.43895468,0.48665646,0.75653523,0.4370976,0.4864156,0.7579753,0.43509832,0.48596594,0.76175976,0.43405065,0.48095956,0.76275307,0.43292022,0.48040393,0.76368153,0.4335278,0.47837663,0.76472247,0.43272817,0.47743672,0.766539,0.43195358,0.47522002,0.7675298,0.43178445,0.47377226,0.76924103,0.43196657,0.47082177,0.7716705,0.43137076,0.46737978,0.7745725,0.4292076,0.46456248,0.77597016,0.42937234,0.46207103,0.7774619,0.43021953,0.45876366,0.7792457,0.42898664,0.45688802,0.78086984,0.42894897,0.45414215,0.7817458,0.428333,0.45321557,0.78260887,0.4286849,0.4513896,0.7860217,0.42754045,0.4465189,0.78606325,0.42951927,0.44454223,0.7868132,0.42914838,0.44357264,0.7875724,0.4278285,0.4435002,0.78825897,0.42707732,0.4430042,0.79231447,0.42552474,0.43722597,0.7936101,0.424863,0.43551618,0.79515266,0.42423257,0.4333116,0.79540706,0.4250473,0.43204454,0.7954562,0.42570832,0.43130255,0.7958235,0.4258163,0.43051758,0.7954817,0.42713898,0.4298385,0.793698,0.43184358,0.42843267,0.7932152,0.43353927,0.42761347,0.7927512,0.43446514,0.4275343,0.79268384,0.43474376,0.42737588,0.79284984,0.43556246,0.426233,0.79282486,0.43591225,0.42592174,0.79199564,0.438306,0.42500678,0.7910662,0.4409621,0.42398894,0.79098445,0.4421702,0.42288184,0.792079,0.44335687,0.41957784,0.7920018,0.4441503,0.4188838,0.7929112,0.44396326,0.41735888,0.7929021,0.44415414,0.41717297,0.7929561,0.44715086,0.41385585,0.79414946,0.44765994,0.4110076,0.79465735,0.44837004,0.409248,0.79487467,0.448444,0.4087447,0.7971295,0.44826338,0.40452987,0.7974651,0.4485353,0.40356594,0.79742676,0.44878215,0.40336722,0.79634786,0.4514631,0.40250617,0.79654604,0.45188585,0.40163866,0.79650545,0.4521116,0.40146497,0.7950443,0.4551981,0.400873,0.79515225,0.45592642,0.3998299,0.79493576,0.45634428,0.39978382,0.79421747,0.45722064,0.40020984,0.79353994,0.4577799,0.4009138,0.7932739,0.4579125,0.40128866,0.79174817,0.4573836,0.40488902,0.7902599,0.45811626,0.40696293,0.7900833,0.4586526,0.4067016,0.789693,0.45952925,0.40646994,0.78932536,0.46088967,0.40564287,0.7890283,0.4617025,0.4052964,0.7866321,0.46639487,0.4045808,0.7848683,0.46950307,0.40441144,0.7835669,0.47258225,0.4033472,0.78323066,0.47322056,0.40325186,0.7831017,0.4733639,0.40333402,0.78287816,0.47336242,0.40376946,0.7819262,0.4730914,0.40592596,0.78005433,0.47506937,0.40721533,0.7791049,0.47585058,0.40811983,0.7770436,0.47683364,0.41089287,0.7762531,0.4770209,0.41216764,0.7748127,0.47787234,0.41388795,0.7729665,0.47972855,0.41519064,0.7710717,0.4816252,0.41651616,0.7700897,0.48283768,0.41692886,0.7686483,0.48490205,0.41719276,0.7654713,0.48884946,0.41842553,0.76498204,0.4898662,0.41813102,0.7645217,0.49048713,0.4182451,0.76202625,0.49307233,0.41975668,0.76025,0.494904,0.42082074,0.75722146,0.5019398,0.41793796,0.75706017,0.5054875,0.4139351,0.7568657,0.50903183,0.40992793,0.7566406,0.51252145,0.40597624,0.7561873,0.51374006,0.40527987,0.7549498,0.5161231,0.4045587,0.7528381,0.5192999,0.4044285,0.75139123,0.52074766,0.4052568,0.7488485,0.5213318,0.40919328,0.7429462,0.52488637,0.41536158,0.7424468,0.5259834,0.41486642,0.7411793,0.5281004,0.41444328,0.7403113,0.5297284,0.41391662,0.7391169,0.5324031,0.41261733,0.7384701,0.5336058,0.4122216,0.73475206,0.53877074,0.41214743,0.73267996,0.5416258,0.41209403,0.7288141,0.54936606,0.4086893,0.7288249,0.5499534,0.4078793,0.7287058,0.55130005,0.40627104,0.7287026,0.552013,0.4053076,0.7283472,0.5525039,0.4052774,0.72746915,0.5527908,0.40646142,0.7263749,0.55281574,0.40837997,0.723895,0.5550174,0.4097947,0.72309005,0.55690444,0.4086541,0.7206501,0.56056345,0.40796092,0.71994865,0.56362945,0.404964,0.72158086,0.5638062,0.40180066,0.7201322,0.5652264,0.4024038,0.71934885,0.56605005,0.40264693,0.71902007,0.5662882,0.40289924,0.7185867,0.5670494,0.40260172,0.7189426,0.56719184,0.4017648,0.7189578,0.56766695,0.40106606,0.7190423,0.56833184,0.3999714,0.719124,0.56861717,0.39941847,0.71868235,0.5694238,0.39906418,0.71856695,0.5699932,0.39845863,0.7184796,0.57070446,0.3975972,0.7182638,0.5715103,0.39682877,0.7176178,0.57245684,0.39663312,0.71717465,0.5735925,0.3957932,0.71685344,0.5743015,0.3953466,0.7166581,0.574916,0.39480728,0.7159464,0.57581234,0.3947923,0.71474385,0.5774632,0.39455986,0.71487063,0.57769895,0.39398462,0.71500695,0.5780287,0.39325294,0.71463645,0.578735,0.3928874,0.71426105,0.5796291,0.39225146,0.7139565,0.5803345,0.3917628,0.7138293,0.5808986,0.39115804,0.71349925,0.5814617,0.39092344,0.7127747,0.58240074,0.39084727,0.71226287,0.5829638,0.39094085,0.7118271,0.5836201,0.39075536,0.7114822,0.584417,0.39019212,0.7104901,0.58591455,0.3897536,0.7094927,0.58699,0.38995245,0.70883536,0.587457,0.3904442,0.7083535,0.58853096,0.3897006,0.7081391,0.5891839,0.3891032,0.7073118,0.59047216,0.38865486,0.70476836,0.5938783,0.3880851,0.703564,0.59583616,0.38726863,0.7025829,0.59682125,0.38753265,0.69977653,0.59682673,0.39256924,0.6972985,0.5967522,0.3970661,0.6970117,0.5969751,0.39723468,0.6944293,0.599435,0.39805245,0.6924135,0.6012976,0.398754,0.690902,0.6023947,0.39971876,0.6881907,0.60374343,0.40235233,0.6841597,0.6064567,0.4051368,0.6829876,0.60799575,0.40480757,0.6825294,0.60850036,0.4048221,0.6820819,0.6089088,0.40496224,0.68176687,0.6090899,0.40522012,0.68155843,0.6090487,0.40563256,0.6782239,0.6108316,0.4085304,0.67704535,0.61129904,0.40978408,0.6761517,0.6108579,0.41191214,0.67510056,0.6113638,0.41288435,0.67472357,0.6106777,0.4145127,0.6732133,0.6110549,0.41640818,0.67103714,0.61267334,0.41754103,0.669671,0.6133271,0.41877276,0.6687194,0.6137457,0.41967914,0.6670125,0.61435777,0.4214959,0.663476,0.6155231,0.42535976,0.66309446,0.61611396,0.42509922,0.6625445,0.616889,0.42483264,0.66199917,0.6174529,0.42486364,0.66119695,0.61812836,0.42513046,0.6603683,0.6186334,0.4256835,0.6595744,0.61854494,0.4270408,0.6582589,0.61858714,0.42900488,0.6569341,0.6190946,0.43030155,0.6560873,0.6191849,0.431462,0.65520114,0.61908853,0.43294427,0.6544204,0.6190859,0.43412736,0.6541032,0.6187171,0.4351301,0.65406024,0.61828643,0.43580627,0.6547172,0.61696476,0.43669206,0.654389,0.6166703,0.43759894,0.65390414,0.61673874,0.4382269,0.65298533,0.6167273,0.43961066,0.6512253,0.6169621,0.44188625,0.6491454,0.61703247,0.44483837,0.6480385,0.6163643,0.44737136,0.64743286,0.61540484,0.44956365,0.64695454,0.61431944,0.45173165,0.646659,0.6126026,0.45447794,0.6467334,0.61183983,0.45539862,0.64783055,0.6087878,0.45792246,0.6474809,0.60799575,0.45946676,0.64703226,0.6079335,0.4601805,0.6463473,0.60748076,0.4617384,0.64552855,0.6067325,0.46386263,0.59266335,0.6176352,0.5169883,0.6627763,0.5029978,0.5547258,0.676967,0.48660114,0.5522092,0.68133926,0.4814796,0.5513205,0.72503173,0.4492665,0.5220044,0.73555094,0.45293462,0.5038006,0.7925753,0.44506484,0.4168233,0.7955333,0.45396164,0.40130493,0.70867205,0.5877838,0.39024875,0.7061648,0.5918682,0.3886172,0.6764724,0.6109227,0.41128898,0.6743974,0.61063385,0.4151076,0.64665407,0.60115254,0.46952537,0.64574474,0.59928143,0.4731548,0.59392035,0.6158696,0.51765174,0.6503528,0.504944,0.5675146,0.67356175,0.49120885,0.55229384,0.6781003,0.48576632,0.5515533,0.7925215,0.44605514,0.41586596,0.75736684,0.49786255,0.42252615,0.7469235,0.52177095,0.41214126,0.7201851,0.56236666,0.40629688,0.7153437,0.57656735,0.39478275,0.66540456,0.61467713,0.42356667,0.63408685,0.59652925,0.49202305,0.61643016,0.60200554,0.5075462,0.6532996,0.50622195,0.5629733,0.69524574,0.4671313,0.5462798,0.7488865,0.4508882,0.48566326,0.7292345,0.54665506,0.41156432,0.6869438,0.6043058,0.40363687,0.66451126,0.61494195,0.4245835,0.6637595,0.6152947,0.42524785,0.6546563,0.61676687,0.43706268,0.6477394,0.6083482,0.458635,0.64692706,0.59920096,0.47163928,0.6215636,0.59916615,0.50463694,0.5952472,0.61414933,0.51817125,0.65267545,0.5071219,0.5628873,0.71805036,0.4566469,0.5252403,0.74773747,0.45251977,0.48591623,0.7741279,0.43178627,0.46291098,0.7926915,0.44686347,0.4146724,0.7909349,0.45755488,0.40628254,0.7448143,0.5222493,0.4153401,0.7305354,0.54456395,0.41202933,0.7255638,0.5532218,0.409271,0.71872246,0.56666887,0.40289503,0.6855151,0.60533327,0.40452516,0.6474049,0.5992794,0.47088328,0.60196114,0.6090379,0.51644516,0.59666944,0.612577,0.51839656,0.65150124,0.50768006,0.5637439,0.7153367,0.45826027,0.5275329,0.76723677,0.44105574,0.46563682,0.7904424,0.4578769,0.40687785,0.74447715,0.52242666,0.41572124,0.7299005,0.5454992,0.41191727,0.72468793,0.5539571,0.40982777,0.5994943,0.61015326,0.5179958,0.5981382,0.61107916,0.51847166,0.6791381,0.48516652,0.55080384,0.71679616,0.46021488,0.52383727,0.7666515,0.44175348,0.4659391,0.74653757,0.45390618,0.48646778,0.79089415,0.44191176,0.42332077,0.691785,0.59910816,0.4031164,0.64714277,0.6004386,0.46976563,0.63567466,0.52116597,0.56947684,0.680123,0.48498473,0.54974777,0.71838933,0.46149722,0.52051616,0.7659402,0.44250035,0.46640012,0.74507457,0.45538935,0.48732373,0.74390846,0.5218844,0.41741693,0.6978052,0.5858783,0.41208547,0.6737927,0.6107978,0.41584784,0.64751804,0.5997174,0.4701696,0.56787217,0.60256374,0.56074786,0.6357269,0.52197963,0.5686726,0.7015882,0.47977677,0.5268665,0.7203932,0.4680373,0.51183474,0.6823729,0.49143094,0.541168,0.78003174,0.44548413,0.439425,0.7687243,0.44879207,0.45568484,0.7570694,0.45209375,0.47165364,0.78121275,0.46201196,0.4198233,0.7410264,0.52673775,0.41644603,0.69948757,0.58316743,0.41307738,0.6612254,0.60527223,0.4432004,0.56511927,0.60605276,0.5597681,0.5984271,0.5635777,0.5694428,0.636354,0.5220011,0.5679511,0.7398813,0.4569523,0.49373102,0.7212679,0.4685868,0.51009715,0.7021928,0.4801405,0.5257284,0.7206852,0.4682205,0.51125574,0.68268555,0.49161148,0.54060936,0.76826006,0.44908595,0.45617798,0.7568318,0.45224047,0.47189423,0.77980536,0.4456314,0.4396774,0.75635624,0.4525339,0.47237515,0.7441022,0.455975,0.48826104,0.7745287,0.47025052,0.42304823,0.71728927,0.555527,0.42057803,0.69617486,0.5834163,0.41828948,0.73769987,0.5269981,0.42198566,0.6615424,0.60518986,0.4428396,0.5816427,0.61958706,0.5270709,0.5741889,0.6062819,0.5502085,0.60354334,0.56084675,0.566733,0.6420593,0.51968503,0.5636375,0.7404353,0.45710167,0.49276122,0.72169864,0.468698,0.5093852,0.70248973,0.48021412,0.5252643,0.7214116,0.46862388,0.50985986,0.68283874,0.49164802,0.54038274,0.766531,0.44965166,0.45852327,0.7789678,0.44591483,0.44087306,0.7536835,0.45338064,0.47582263,0.73586833,0.52901447,0.42266,0.7058661,0.570529,0.4198212,0.69030714,0.5907639,0.4177009,0.7210583,0.5499416,0.4214726,0.7502808,0.5077605,0.42338863,0.7642807,0.48619294,0.4236642,0.77785337,0.464325,0.42349312,0.6615017,0.60497206,0.4431978,0.582326,0.61912805,0.52685565,0.5758971,0.6065272,0.54814893,0.60386205,0.5606171,0.5666208,0.6824541,0.49715546,0.5358105,0.7119266,0.4772525,0.5151607,0.72630817,0.4672074,0.50417626,0.69730407,0.48723567,0.5257076,0.6673905,0.50701064,0.5454632,0.6521271,0.5168001,0.55466014,0.63667804,0.5265225,0.5633961,0.7532425,0.47171152,0.45838204,0.76575273,0.46802235,0.4411098,0.74705935,0.46442235,0.47561994,0.77241486,0.45700383,0.44104743,0.7395377,0.49347997,0.45777887,0.7521085,0.48984072,0.44089544,0.73804986,0.51135653,0.4402237,0.7403324,0.47539243,0.47529987,0.71093905,0.536089,0.45516402,0.7235917,0.5325564,0.4390886,0.7087489,0.5534273,0.43748513,0.6935373,0.5739563,0.4354081,0.68418294,0.5924486,0.4253215,0.7024571,0.55516654,0.44535857,0.7265783,0.49711055,0.47430488,0.7254316,0.51494354,0.45670792,0.71898025,0.5167337,0.46481565,0.73373055,0.47722977,0.48362294,0.5933293,0.597442,0.5394659,0.66565835,0.5223012,0.5330108,0.6436635,0.5292565,0.55279726,0.70374393,0.49004433,0.51439387,0.7222792,0.4736558,0.5039474,0.68486,0.5062613,0.5240861,0.626428,0.55382746,0.5485099,0.6461703,0.53815854,0.5411556,0.6064637,0.5693027,0.55506414,0.688016,0.5492221,0.47433,0.695391,0.5521978,0.45990098,0.67960703,0.5681031,0.46410462,0.69599205,0.53005654,0.4843915,0.67218363,0.5651656,0.47828552,0.6636055,0.5837988,0.4677677,0.65991133,0.5823507,0.47474697,0.6842133,0.54773164,0.48149997,0.718764,0.49401414,0.48921198,0.7114128,0.5136783,0.47961074,0.7075116,0.5121481,0.48696157,0.72974116,0.4756626,0.4911445,0.67076796,0.5866896,0.45372418,0.6729175,0.5987286,0.43440315,0.604604,0.5918968,0.53302187,0.6425305,0.55761844,0.52556276,0.6577869,0.5613978,0.5021442,0.63826644,0.5767766,0.50984764,0.61851007,0.5919537,0.51675534,0.63062763,0.57491267,0.5213292,0.6620362,0.5419962,0.5176372,0.6542102,0.5400787,0.5294564,0.6529099,0.58049566,0.4865526,0.63337725,0.5956228,0.49403113,0.6456944,0.57863766,0.49825415,0.62277967,0.5730457,0.5326952,0.6028163,0.58827233,0.53902525,0.6147244,0.57117563,0.5439414,0.7001843,0.51018846,0.49944934,0.68126464,0.5261844,0.50892884,0.69263315,0.5082262,0.5118256,0.67703944,0.5458226,0.49365503,0.6696465,0.5439108,0.50570214,0.60575444,0.59142095,0.53224325,0.62379354,0.59822077,0.5030045,0.62287974,0.5935538,0.50962216,0.6111771,0.5905702,0.52696246,0.598985,0.58757854,0.54402983,0.6092321,0.5905193,0.5292666,0.5979814,0.587553,0.5451603,0.6200572,0.59347767,0.5131406,0.6304518,0.59642804,0.49679387,0.7919378,0.58172303,0.18556081,0.76949716,0.60158765,0.21439789,0.7694825,0.6003766,0.2178181,0.76960325,0.5993831,0.22011529,0.7694874,0.5993463,0.22061998,0.7688243,0.59976304,0.2217962,0.7679279,0.6002593,0.22355221,0.767789,0.60024977,0.22405417,0.7665841,0.6001646,0.22836648,0.7655325,0.59998125,0.2323414,0.7652014,0.5997446,0.23403686,0.7644319,0.5995127,0.23712526,0.7638903,0.599437,0.23905414,0.76378274,0.59905154,0.2403604,0.7635139,0.5982181,0.24327265,0.7632619,0.59811085,0.24432498,0.7632002,0.5976374,0.24567257,0.7638313,0.59530216,0.24935313,0.7638764,0.5946275,0.25082085,0.76419324,0.593866,0.2516581,0.7639977,0.59379196,0.2524254,0.76347667,0.59393114,0.25367138,0.7637234,0.5931053,0.25485817,0.7646992,0.5901998,0.258649,0.7648204,0.58950335,0.25987595,0.7653785,0.5883793,0.26077884,0.7659407,0.5877949,0.26044598,0.76710016,0.58691686,0.2590095,0.7699032,0.58374804,0.2578512,0.7711924,0.5820876,0.25775242,0.7719185,0.581368,0.25720254,0.7728146,0.5801464,0.2572699,0.773382,0.5793936,0.25726116,0.77361304,0.5788601,0.25776717,0.77389514,0.5782637,0.2582584,0.7742746,0.57769895,0.258385,0.77480835,0.5771166,0.2580862,0.7758472,0.5757287,0.25806507,0.77606326,0.57502544,0.2589819,0.7764131,0.5743071,0.25952673,0.77693087,0.57310367,0.260635,0.77703154,0.5722835,0.26213264,0.7771346,0.5716837,0.2631341,0.7776522,0.57042027,0.264344,0.77805316,0.5690153,0.26618567,0.7786008,0.56783813,0.26709664,0.7787919,0.56719184,0.26791158,0.7787816,0.566843,0.26867875,0.779256,0.56620884,0.26864025,0.7799771,0.5654155,0.26821822,0.78089285,0.5645267,0.26742476,0.7817728,0.56314015,0.26777673,0.7824001,0.56214184,0.26804233,0.78318745,0.5609318,0.26827776,0.7805086,0.5588452,0.28017566,0.778539,0.55994225,0.28344616,0.77842623,0.55929816,0.285023,0.77932215,0.5577111,0.28568402,0.78188115,0.5551329,0.28370643,0.7831664,0.5536932,0.28297397,0.7850949,0.5512773,0.28234625,0.7861868,0.5500296,0.2817406,0.78668594,0.5462847,0.28757307,0.78575313,0.5460248,0.29060102,0.7853343,0.5455778,0.29256615,0.7853887,0.5449327,0.2936204,0.7868037,0.5421895,0.29490772,0.7871603,0.5411837,0.29580212,0.7878845,0.5399864,0.29606202,0.78846085,0.53862864,0.29699963,0.78862494,0.5377494,0.2981548,0.7892225,0.536321,0.29914504,0.7926982,0.5255912,0.30884224,0.79203826,0.52635807,0.309229,0.79125935,0.52699995,0.31012845,0.79091775,0.5268688,0.3112207,0.79083526,0.5262805,0.3124233,0.7900478,0.52647614,0.31408164,0.7891273,0.5270651,0.31540528,0.7888731,0.52699995,0.31614923,0.7886887,0.52321553,0.32282433,0.78812957,0.5230754,0.3244131,0.78812677,0.52259517,0.32519296,0.7886845,0.52180374,0.32511166,0.7893302,0.5211579,0.3245801,0.79039884,0.5201743,0.32355577,0.7902267,0.51971275,0.32471576,0.790153,0.5191862,0.32573587,0.78768384,0.5186675,0.3324728,0.78669304,0.5195227,0.33348206,0.78604496,0.51960284,0.33488235,0.785838,0.51897717,0.3363351,0.78583664,0.51794535,0.3379252,0.7865001,0.5149869,0.34089023,0.7863503,0.51450753,0.34195787,0.7861815,0.513724,0.3435205,0.7867769,0.5120845,0.34460348,0.7880058,0.5091603,0.3461251,0.7913265,0.5029212,0.3476673,0.7917359,0.50165594,0.34856218,0.792318,0.50065744,0.34867504,0.7878778,0.4932252,0.36875126,0.78719866,0.49339783,0.36996874,0.786374,0.49344304,0.37165827,0.7852073,0.49340302,0.37416983,0.7845303,0.4930968,0.37598908,0.78398055,0.49252877,0.37787563,0.7837201,0.49182105,0.37933484,0.78371656,0.4911205,0.3802486,0.78376085,0.4907812,0.3805953,0.7826167,0.49136096,0.38219815,0.7793842,0.49239308,0.38743952,0.76825446,0.49288553,0.4084714,0.7637844,0.4949382,0.41433027,0.760991,0.4962076,0.41793615,0.79577035,0.42556337,0.43086582,0.7974105,0.42480278,0.42857796,0.79868096,0.424694,0.42631418,0.79987025,0.42507353,0.42369807,0.80076873,0.42573768,0.42132744,0.80166847,0.4247511,0.4206117,0.8021089,0.4250296,0.41948912,0.8033612,0.42680222,0.41527182,0.8061513,0.42616865,0.41048807,0.8070579,0.4266458,0.40820447,0.8080622,0.4262148,0.40666497,0.8096282,0.42595038,0.40381742,0.8100685,0.42871258,0.39999324,0.8118525,0.4280288,0.397098,0.81215286,0.42816505,0.39633623,0.8129493,0.428524,0.39431038,0.8134083,0.42788547,0.39405707,0.8167346,0.42635822,0.38879716,0.8172796,0.42587876,0.38817704,0.81786823,0.42552787,0.3873211,0.8178321,0.42747343,0.38524956,0.81971055,0.4275327,0.38116965,0.82156086,0.42853013,0.37603158,0.82347584,0.4282298,0.3721651,0.8243555,0.42924452,0.36903533,0.82687825,0.42997178,0.36248678,0.8274798,0.42967322,0.36146665,0.82789814,0.4296494,0.3605358,0.8272434,0.43027562,0.36129117,0.8267698,0.43062726,0.3619556,0.82804537,0.43026483,0.35946223,0.8289992,0.42859638,0.35925683,0.8308469,0.42619485,0.35784268,0.83170104,0.4243784,0.3580173,0.8327651,0.42149258,0.3589516,0.8333537,0.4204173,0.35884663,0.8410764,0.4109239,0.3517558,0.84168935,0.40952188,0.35192445,0.8425801,0.4081966,0.35133225,0.8431382,0.40777016,0.35048753,0.84346265,0.40737262,0.35016894,0.8437449,0.4070277,0.34989,0.8444208,0.40578035,0.34970817,0.8451639,0.40485173,0.34898865,0.8454181,0.4054587,0.3476659,0.8457845,0.40461943,0.34775245,0.8462667,0.40372074,0.34762362,0.8470659,0.40399358,0.3453528,0.8468243,0.4051844,0.3445493,0.84785545,0.4040021,0.34339997,0.8481742,0.40396163,0.3426594,0.84862065,0.4038384,0.3416979,0.8493297,0.40280047,0.34116095,0.84924144,0.40350085,0.34055248,0.7962519,0.57638,0.18376343,0.7956784,0.5770944,0.18400535,0.7935055,0.5797895,0.18491398,0.76372176,0.5985458,0.24180989,0.7636035,0.5966975,0.2467019,0.7641828,0.59191835,0.2562367,0.76849824,0.58543515,0.25821713,0.7809967,0.55863035,0.2792424,0.7909088,0.5336065,0.29954532,0.7935942,0.5246759,0.30809653,0.78904134,0.526411,0.31671,0.79331946,0.4995246,0.348022,0.772548,0.49103066,0.40256482,0.79999644,0.42588416,0.42264453,0.80021924,0.42617166,0.42193216,0.80908096,0.42731854,0.4034686,0.8123026,0.42898127,0.39514497,0.82629436,0.42994952,0.3638422,0.83628935,0.41932434,0.3532524,0.8402851,0.41259208,0.35169408,0.8482416,0.40431547,0.3420747,0.7945295,0.5785216,0.18448737,0.77528065,0.5766001,0.25782233,0.78153276,0.55847555,0.27804962,0.7867681,0.5475354,0.2849578,0.7891412,0.5251445,0.31855837,0.7888843,0.518293,0.33020282,0.78647953,0.5153367,0.34040856,0.79044163,0.50484616,0.34688964,0.77169275,0.49128973,0.40388685,0.802206,0.42573604,0.41858613,0.7756237,0.57618994,0.25770733,0.7867958,0.5488625,0.282316,0.7937393,0.5289837,0.30025688,0.7900773,0.5207004,0.32349485,0.786433,0.5157267,0.3399253,0.78895813,0.4933267,0.36629736,0.80275774,0.42664352,0.41659966,0.80913746,0.42819673,0.40242285,0.8254372,0.43040496,0.36524656,0.83696735,0.41875643,0.35231897,0.78266525,0.55850244,0.27479103,0.7896946,0.5185437,0.3278641,0.7889434,0.5075831,0.34630594,0.7679131,0.586092,0.25846773,0.78332067,0.5589307,0.2720388,0.79416317,0.52449465,0.30693668,0.82521856,0.43136,0.3646134,0.7690221,0.59275776,0.23925564,0.7836539,0.55991185,0.26904508,0.76931405,0.5924313,0.23912567,0.7843465,0.48461282,0.38723487,0.8253311,0.43192658,0.3636867,0.8179025,0.43032026,0.38191614,0.83891237,0.42096928,0.3449796,0.83146816,0.48449987,0.2718834,0.77850324,0.5854016,0.22635742,0.7926031,0.51470417,0.32689443,0.7845645,0.4847515,0.38661933,0.7893585,0.4936024,0.3650614,0.8259149,0.43211418,0.36213505,0.81821203,0.4304142,0.38114652,0.83828586,0.4216892,0.34562275,0.82675624,0.43169758,0.36070943,0.83144003,0.48416844,0.27255896,0.7797351,0.577054,0.24294424,0.7889777,0.5445404,0.28458735,0.79276305,0.51495224,0.32611492,0.79443824,0.5249872,0.30537894,0.7852612,0.4853156,0.38449135,0.7906194,0.49472415,0.36078945,0.84048635,0.42977366,0.32996562,0.8233123,0.51233155,0.24428119,0.8266401,0.49808502,0.26187295,0.829373,0.48370266,0.27959287,0.7803065,0.57585484,0.24395281,0.7942472,0.51231223,0.32666135,0.7857256,0.48569524,0.38306063,0.7914523,0.4954786,0.35791647,0.840093,0.42998213,0.33069482,0.8266673,0.49772546,0.26247007,0.8293774,0.4835213,0.27989325,0.82333505,0.5121535,0.24457759,0.82938606,0.48315835,0.28049383,0.7805273,0.5754057,0.24430583,0.7935458,0.49879056,0.3485585,0.79437226,0.5119484,0.3269274,0.7864143,0.48628703,0.38089037,0.79267365,0.49665442,0.3535574,0.8375097,0.43293816,0.33337983,0.8267143,0.49742827,0.26288524,0.82940274,0.48300835,0.28070268,0.82336533,0.5120064,0.24478365,0.8294359,0.48270833,0.2811205,0.7807012,0.57509065,0.24449188,0.79439086,0.5124812,0.32604626,0.79441226,0.5260428,0.30362493,0.78691226,0.48671913,0.37930673,0.7935475,0.49751297,0.35037583,0.810714,0.44426993,0.38127023,0.83631504,0.43453848,0.33429542,0.81214416,0.5282844,0.2476641,0.8193945,0.5084107,0.26478523,0.819658,0.5174533,0.24576978,0.82585716,0.48826262,0.28206307,0.7866212,0.5668012,0.24487437,0.7936391,0.49796894,0.3495196,0.7944569,0.5120743,0.3265244,0.7888391,0.48548475,0.3768786,0.8050368,0.45278764,0.38327414,0.83144873,0.4412929,0.33757007,0.8194737,0.5080662,0.2652012,0.8258887,0.48808804,0.28227282,0.8121918,0.52811444,0.24787007,0.82595164,0.48773873,0.28269204,0.7882824,0.5647366,0.24430197,0.78890306,0.48541355,0.37683636,0.82393616,0.4561528,0.33623484,0.8110226,0.4618612,0.35906345,0.79744816,0.46755052,0.38140908,0.82095504,0.5029882,0.27025118,0.826591,0.48516768,0.28523603,0.81304747,0.5256133,0.2503688,0.8278256,0.480013,0.2903312,0.78899676,0.5637358,0.2443075,0.80245274,0.47978607,0.35478845,0.81535196,0.4741389,0.3322552,0.7900946,0.5621136,0.24449699,0.8153936,0.4743703,0.3318225,0.79185796,0.54728436,0.27099967,0.79824,0.5475785,0.25093976,0.80695105,0.51771057,0.28426352,0.80609995,0.5328762,0.2573827,0.8208866,0.48750475,0.2974631,0.8152327,0.4746273,0.33185017,0.8070943,0.5173248,0.28455907,0.8209498,0.4873079,0.29761133,0.79193807,0.54709566,0.27114666,0.82107574,0.48691416,0.29790804,0.81587374,0.48894793,0.30867448,0.8050257,0.49346513,0.32928064,0.8260554,0.4700562,0.3109334,0.80532414,0.50761306,0.3062384,0.7971473,0.5353984,0.27911437,0.79543597,0.539309,0.2764549,0.8102542,0.50936586,0.2898871,0.8224975,0.48285878,0.30057496,0.81575507,0.48970604,0.30778506,0.8052565,0.5079875,0.3057952,0.82600486,0.4704398,0.31048727,0.80511993,0.5087361,0.304909,0.794105,0.5275206,0.30185977,0.81085217,0.50809777,0.29044014,0.82277554,0.4822136,0.30084947,0.7974674,0.5347762,0.2793923,0.8233301,0.48092258,0.30139834,0.8156077,0.490457,0.3069786,0.8050377,0.5091068,0.30450705,0.82594013,0.47081992,0.31008306,0.8048722,0.50984824,0.30370283,0.7977877,0.53399557,0.2799707,0.7976811,0.53425574,0.27977788,0.8110457,0.5075673,0.29082698,0.8234168,0.4806527,0.30159193,0.82517415,0.4725479,0.3094934,0.8254298,0.47197217,0.30968997,0.815073,0.49159518,0.30657825,0.804593,0.51041,0.3034992,0.9561166,0.20060207,-0.21354114,0.95569694,0.20238587,-0.21373652,0.95578426,0.20264539,-0.21309921,0.95595026,0.20223644,-0.21274292,0.9561826,0.20133333,-0.21255516,0.9553443,0.20730983,-0.21057026,0.95527136,0.20771913,-0.21049781,0.9552098,0.20834015,-0.21016331,0.9551508,0.20915519,-0.2096212,0.9551211,0.21032928,-0.20857927,0.955235,0.21050338,-0.20788091,0.95536643,0.20994851,-0.20783795,0.95575565,0.2075841,-0.20842254,0.95556676,0.20747483,-0.20939504,0.9554701,0.20762071,-0.20969129,0.98005664,0.13620685,-0.14469485,0.97985584,0.13747996,-0.14485118,0.9797328,0.1385604,-0.14465384,0.9793495,0.14065316,-0.14522839,0.9795005,0.14108512,-0.14378376,0.9794368,0.14204688,-0.14326969,0.97956216,0.14152719,-0.14292654,0.98016655,0.13789523,-0.14233232,0.9804358,0.13530181,-0.14296532,0.9803729,0.13540988,-0.14329404,0.98015755,0.13622469,-0.1439929,0.9231546,0.3482381,-0.16283709,0.9230796,0.34882438,-0.16200478,0.923206,0.3489714,-0.16096477,0.9236279,0.348318,-0.15995654,0.9240306,0.3476117,-0.15916505,0.92468476,0.34763652,-0.15526415,0.9247601,0.34796733,-0.15406968,0.9248553,0.3477875,-0.15390414,0.92690957,0.34333873,-0.15151636,0.9269326,0.34390765,-0.1500784,0.9270964,0.34393173,-0.14900737,0.92734516,0.3436493,-0.14810863,0.92758644,0.34322745,-0.1475749,0.9278236,0.34270552,-0.14729649,0.92897034,0.33974558,-0.14692512,0.92979145,0.3382383,-0.14519878,0.9298817,0.33838424,-0.1442779,0.9300725,0.33826318,-0.1433287,0.9318077,0.33694202,-0.13492405,0.93169,0.33811644,-0.13278222,0.93178886,0.33824074,-0.13176751,0.931985,0.33790866,-0.13123141,0.9325977,0.33633453,-0.13092214,0.9331211,0.33533427,-0.12975356,0.9341134,0.333148,-0.12823664,0.9352781,0.32995203,-0.12800999,0.93602484,0.32772025,-0.12828442,0.9369815,0.32551008,-0.1269207,0.9373631,0.32444224,-0.12683733,0.93931526,0.31849644,-0.12746342,0.93949914,0.3183179,-0.12655081,0.9398849,0.3177798,-0.12502922,0.9402747,0.31720927,-0.12353844,0.94033515,0.31759477,-0.12207931,0.940382,0.31760198,-0.1216991,0.9404978,0.31721008,-0.121826604,0.94108444,0.31498092,-0.1230738,0.9412737,0.31392443,-0.12431935,0.9410706,0.31404182,-0.12555423,0.94106704,0.3138322,-0.12610392,0.94126385,0.31329644,-0.12596697,0.94165546,0.31189933,-0.12650628,0.94273716,0.30794287,-0.12813228,0.94337,0.30625272,-0.12752405,0.9435451,0.30564734,-0.12768036,0.943607,0.30529365,-0.1280687,0.94396174,0.30372122,-0.12918864,0.9444253,0.30126002,-0.13154212,0.9449448,0.29859588,-0.13386454,0.94536805,0.29637313,-0.13580206,0.94564384,0.29483515,-0.13722205,0.94639975,0.290619,-0.14095397,0.9471956,0.2878992,-0.14118965,0.9475505,0.28632692,-0.14200367,0.94798243,0.2842629,-0.14326142,0.9487134,0.28117627,-0.14450839,0.94876266,0.2807574,-0.14499909,0.94903564,0.27866936,-0.14722325,0.9502313,0.27648756,-0.14357972,0.95081013,0.27460742,-0.14335558,0.9516513,0.27175292,-0.14321369,0.95263374,0.26824334,-0.14329848,0.9536384,0.26472607,-0.14315699,0.9538195,0.26483873,-0.141735,0.95448047,0.26351216,-0.13974383,0.9546175,0.26339462,-0.13902771,0.9548853,0.2628856,-0.13814932,0.9551534,0.26225826,-0.13748686,0.9554411,0.2613033,-0.13730554,0.9561528,0.25841317,-0.13782038,0.9567627,0.25569457,-0.13865569,0.95707333,0.25369856,-0.14017007,0.95731443,0.25211963,-0.14136718,0.9576428,0.2499221,-0.14303552,0.9579403,0.24801211,-0.14436215,0.9580851,0.24591202,-0.14697029,0.9591539,0.23712127,-0.15426375,0.95967495,0.23473118,-0.15467815,0.95995075,0.23339313,-0.15499125,0.96098953,0.22891246,-0.1552362,0.9613315,0.22789195,-0.15461901,0.96168363,0.22671099,-0.15416458,0.9619226,0.22547416,-0.15448707,0.9620576,0.22429332,-0.15536332,0.9623635,0.22294272,-0.1554127,0.9627807,0.2205228,-0.1562783,0.9628972,0.21904378,-0.15763499,0.9629118,0.2180451,-0.15892509,0.9629935,0.21725565,-0.15951023,0.96330065,0.21599026,-0.15937385,0.9635314,0.21464708,-0.15979333,0.96380234,0.21318437,-0.16011678,0.9641511,0.21115817,-0.16070163,0.9659917,0.20160212,-0.16191563,0.9661599,0.20129164,-0.16129713,0.9664599,0.20029806,-0.1607361,0.97053224,0.18718122,-0.1517576,0.9710531,0.18581142,-0.15009983,0.97128266,0.18499658,-0.14962013,0.97140163,0.18435594,-0.14963846,0.9715651,0.18321416,-0.14997892,0.9722851,0.17967497,-0.14959466,0.972621,0.17821853,-0.14915264,0.97289413,0.17691949,-0.14891782,0.9743157,0.17085439,-0.14668895,0.9752945,0.16610482,-0.14563635,0.9756167,0.16492401,-0.14481759,0.97636735,0.1614406,-0.14367925,0.9773621,0.1558991,-0.14303428,0.9781067,0.15243165,-0.14167568,0.9787262,0.14856282,-0.14150658,0.9790056,0.1464818,-0.14174286,0.9793308,0.1430818,-0.14296442,0.9792892,0.1424037,-0.14392328,0.9791587,0.14225268,-0.14495626,0.9788548,0.1434395,-0.14583708,0.9786127,0.14466399,-0.14625125,0.9782385,0.14360893,-0.14975293,0.97849685,0.14020678,-0.15128125,0.9783611,0.13958661,-0.1527255,0.9782049,0.13723435,-0.15582645,0.9785146,0.13512109,-0.15572867,0.9785299,0.13429861,-0.1563434,0.9782735,0.13158727,-0.16020529,0.97853345,0.12831472,-0.16126867,0.97840047,0.1276596,-0.16259003,0.97814333,0.12757507,-0.16419579,0.9778906,0.1280273,-0.16534466,0.9783159,0.1256587,-0.16464485,0.97831017,0.124559484,-0.16551168,0.9780725,0.12370888,-0.16754188,0.9786242,0.11973241,-0.16720891,0.97837454,0.11753563,-0.17020209,0.9726269,0.11276286,-0.20317847,0.9727276,0.11760595,-0.19992463,0.9729057,0.11953523,-0.19790365,0.97316927,0.12012923,-0.19624089,0.9734887,0.12028059,-0.19455671,0.9750007,0.121777155,-0.18586038,0.9751109,0.1232894,-0.18427835,0.97528005,0.12491716,-0.18227609,0.97576827,0.1251226,-0.1795013,0.97573173,0.12672053,-0.1785766,0.9757595,0.13053545,-0.17565274,0.9750662,0.1330208,-0.17762712,0.9753396,0.13198514,-0.17689727,0.975402,0.13141745,-0.17697549,0.9752031,0.12990844,-0.17917225,0.97551775,0.12673153,-0.17973368,0.97530067,0.12579909,-0.18155749,0.97519183,0.12771033,-0.1808065,0.9751181,0.12952736,-0.17990933,0.9737211,0.14381218,-0.17659342,0.9734875,0.14650951,-0.17566167,0.97347516,0.14795437,-0.17451523,0.97357696,0.14735673,-0.17445298,0.9736688,0.15076457,-0.17099458,0.97266155,0.15838021,-0.16983859,0.9725183,0.15978862,-0.16933885,0.97238326,0.16140366,-0.16858116,0.97263837,0.16184846,-0.16667248,0.97383344,0.16251625,-0.15886122,0.97359586,0.16357736,-0.15922797,0.97325826,0.16723582,-0.1574819,0.97241986,0.17251673,-0.15696357,0.97162485,0.17666277,-0.15727535,0.97136015,0.17821606,-0.15715776,0.9712633,0.17914253,-0.15670216,0.9708533,0.18031545,-0.15789275,0.97015524,0.18342182,-0.15860412,0.9685627,0.18891627,-0.16185446,0.9677923,0.19253199,-0.16220213,0.9672773,0.19449428,-0.16293119,0.9662509,0.19873312,-0.16390349,0.965283,0.20213382,-0.16544084,0.96476716,0.20362085,-0.16662218,0.96399236,0.20682956,-0.16715342,0.9633234,0.20872186,-0.16865136,0.962705,0.21082665,-0.16956145,0.9619844,0.2139637,-0.16972186,0.9608579,0.21967658,-0.16880214,0.9604961,0.22106309,-0.1690508,0.9591237,0.22572733,-0.17067221,0.9587498,0.22786212,-0.16993484,0.9569571,0.23318182,-0.1727984,0.95591676,0.23369057,-0.17779733,0.955494,0.23460197,-0.17886639,0.955516,0.2338066,-0.17978768,0.95495635,0.23280725,-0.18400873,0.9552429,0.2310274,-0.18476309,0.95552504,0.23010115,-0.18445951,0.9559157,0.2281343,-0.18487796,0.9566439,0.22554466,-0.18428825,0.957499,0.22185755,-0.18432266,0.957998,0.22009303,-0.18384472,0.95811564,0.21905959,-0.18446504,0.9580571,0.21850497,-0.18542436,0.95741606,0.21939723,-0.18766811,0.95644075,0.21846588,-0.19363275,0.955224,0.21966496,-0.19822831,0.9550177,0.21883091,-0.20013545,0.95500684,0.21802846,-0.20106107,0.9549217,0.21752444,-0.20200878,0.9546936,0.21546856,-0.20526437,0.954758,0.21356986,-0.20694223,0.95458126,0.21407771,-0.20723265,0.9544224,0.21463871,-0.2073838,0.9546329,0.21222176,-0.20889714,0.9545647,0.21097068,-0.21046999,0.9544241,0.20977601,-0.21229403,0.9541218,0.21060501,-0.212831,0.9539357,0.20812422,-0.21608096,0.9542641,0.20600979,-0.21665639,0.95431876,0.20403048,-0.21828234,0.9544481,0.20285317,-0.21881354,0.9245268,0.34727052,-0.15701391,0.9311366,0.3371169,-0.13905708,0.9389877,0.31930336,-0.12785742,0.94019014,0.3172675,-0.12403109,0.942237,0.30963773,-0.12772582,0.94607353,0.29196578,-0.14035979,0.9477787,0.28520235,-0.14274159,0.9478447,0.28263578,-0.1473346,0.9583167,0.24276607,-0.15064415,0.96563184,0.20256776,-0.16285385,0.96973586,0.18943764,-0.15403168,0.97823566,0.13852994,-0.15448104,0.9782396,0.13429861,-0.15814935,0.9781303,0.1244826,-0.1666287,0.9756168,0.1246644,-0.18063928,0.97521555,0.1314412,-0.17798239,0.97512484,0.13124433,-0.17862365,0.9741088,0.16100493,-0.15871184,0.95489675,0.23229085,-0.184968,0.95472175,0.21698289,-0.20353106,0.92529494,0.34629127,-0.15463372,0.9267748,0.34331387,-0.15239455,0.9296681,0.3382928,-0.14585975,0.9316986,0.33688578,-0.13581477,0.9486424,0.27961215,-0.14796871,0.9643462,0.20944183,-0.16177325,0.96725905,0.19747691,-0.159414,0.97824466,0.13258576,-0.1595569,0.97405463,0.11970613,-0.19206238,0.9745386,0.11945996,-0.18974657,0.97492296,0.13426234,-0.17747915,0.9736694,0.14682482,-0.17438568,0.973794,0.14934908,-0.17152303,0.9730324,0.16907476,-0.15691273,0.95864516,0.22908919,-0.16887158,0.95388746,0.2113764,-0.21311668,0.9242729,0.34735203,-0.15832293,0.9312707,0.33700377,-0.1384313,0.9315027,0.3369171,-0.1370754,0.9533264,0.26561606,-0.14358549,0.95351154,0.2650121,-0.14347203,0.96518344,0.20417485,-0.16350405,0.96867913,0.19261223,-0.15672067,0.9738607,0.16011752,-0.16111417,0.96628606,0.19945218,-0.1628193,0.9256905,0.3450974,-0.15493509,0.9265251,0.34355235,-0.15337223,0.94828814,0.28063476,-0.14830257,0.97198,0.18104884,-0.1499209,0.97379315,0.14800154,-0.17269187,0.9538557,0.21045175,-0.21417151,0.9262375,0.34395972,-0.15419416,0.93918574,0.31876376,-0.12774915,0.94787127,0.28224412,-0.14791304,0.95853084,0.2410271,-0.15206763,0.97497416,0.13528149,-0.1764207,0.97378236,0.14656776,-0.1739708,0.92595786,0.3444767,-0.15471862,0.9293758,0.33881888,-0.14650051,0.9536117,0.26088583,-0.1502109,0.9725778,0.17369094,-0.15467341,0.97538424,0.13447261,-0.17476483,0.97399205,0.16031945,-0.16011617,0.9254894,0.2996608,-0.23167382,0.943755,0.30055904,-0.1378072,0.9534908,0.2613391,-0.15019025,0.9480279,0.281536,-0.1482585,0.9724305,0.17422801,-0.15499504,0.96530056,0.2036359,-0.16348505,0.925769,0.29879963,-0.2316692,0.9588547,0.23891903,-0.1533473,0.9536765,0.26029092,-0.15083006,0.97753495,0.12825383,-0.16726123,0.9756717,0.1322437,-0.17486098,0.9369808,0.25426605,-0.23961593,0.92771393,0.2876326,-0.23793775,0.9313253,0.32337034,-0.16752528,0.93755335,0.31326735,-0.1511865,0.9538474,0.2593973,-0.15128869,0.9775009,0.12807554,-0.16759655,0.93420523,0.28098154,-0.21979539,0.932487,0.27099016,-0.23881425,0.9314632,0.32310975,-0.16726154,0.9376424,0.31291693,-0.15135981,0.9614882,0.2236563,-0.15974458,0.95739627,0.2430487,-0.15594786,0.95290893,0.26234454,-0.15211788,0.93471813,0.2803108,-0.21846732,0.9422306,0.2918358,-0.16441824,0.97829336,0.14444306,-0.14858745,0.9352252,0.27934042,-0.21753803,0.9422698,0.29147878,-0.16482642,0.97834295,0.14512093,-0.14759716,0.9376595,0.274507,-0.213168,0.9310375,0.29435405,-0.21569628,0.9438741,0.25454238,-0.21049915,0.9422084,0.2909647,-0.1660813,0.9407582,0.27457303,-0.19895644,0.9454307,0.2545755,-0.20335239,0.9326323,0.29438686,-0.2086462,0.94838125,0.2546419,-0.1890249,0.93901896,0.29378894,-0.17869371,0.9327768,0.2940551,-0.20846823,0.93272865,0.29416573,-0.2085275,0.94084877,0.27435052,-0.198835,0.9484237,0.25453007,-0.18896282,0.9389731,0.29384032,-0.17885005,0.9416773,0.27364808,-0.19585903,0.9488165,0.25417683,-0.18746059,0.9332145,0.2937061,-0.20699629,0.94959444,0.25347045,-0.18445396,0.94197536,0.27327105,-0.19494982,0.9497342,0.25328088,-0.18399405,0.9333728,0.29351875,-0.20654745,0.95001304,0.25290155,-0.18307383,0.95747656,0.23241931,-0.17093816,0.94235486,0.2725459,-0.19412906,0.95019025,0.25253686,-0.18265703,0.9335753,0.2931585,-0.20614412,0.95054376,0.25180745,-0.18182297,0.95813185,0.23095281,-0.16924588,0.93507546,0.29002875,-0.20375794,0.9345771,0.29107234,-0.20455433,0.9432923,0.27044654,-0.19250524,0.9509806,0.2507518,-0.1809956,0.9353918,0.289499,-0.20305789,0.9352864,0.28967565,-0.20329139,0.9434906,0.27009133,-0.19203146,0.95107335,0.25057328,-0.18075538,0.9368103,0.28746718,-0.19937176,0.93633956,0.28814465,-0.20060147,0.9443826,0.26872885,-0.1895425,0.95149195,0.24988839,-0.17949611,0.9549848,0.25073436,-0.15854406,0.95346344,0.2563322,-0.1587491,0.94645125,0.27513856,-0.16890438,0.95374244,0.25540656,-0.15856494,0.9705932,0.16814496,-0.17226772,0.9705158,0.16843215,-0.17242298,0.9703669,0.16933429,-0.17237778,0.97033167,0.17006585,-0.17185456,0.9705057,0.17009862,-0.17083637,0.9705961,0.16930833,-0.17110816,0.97061765,0.16869089,-0.17159471,0.97099215,0.16555442,-0.17252803,0.9708445,0.16652836,-0.17242157,0.9709542,0.16637038,-0.17195633,0.97120917,0.16644184,-0.17043982,0.9713112,0.16607967,-0.17021199,0.9715743,0.1646357,-0.17011294,0.9716354,0.16369838,-0.17066815,0.97124994,0.16438349,-0.17219655,0.97949886,0.11348265,-0.16644444,0.9794321,0.11358332,-0.16676804,0.9792251,0.11442655,-0.16740601,0.9790774,0.11691528,-0.16654792,0.9794487,0.11488213,-0.16577816,0.9793838,0.13773914,-0.14776793,0.9793126,0.13803113,-0.14796709,0.9789846,0.1401637,-0.14813264,0.9790531,0.1410489,-0.14683399,0.97735465,0.15713806,-0.14172332,0.97718495,0.15732148,-0.14268686,0.9770939,0.1578198,-0.14276029,0.9769615,0.15883206,-0.14254361,0.9770552,0.15867294,-0.14207782,0.97718716,0.15807888,-0.14183164,0.97901875,0.13002935,-0.15689038,0.97881746,0.13211524,-0.156403,0.97880614,0.13288824,-0.1558179,0.97884995,0.13270156,-0.15570164,0.97902685,0.1313651,-0.15572296,0.97906333,0.13045521,-0.15625748,0.6483597,0.49397144,0.5793288,0.64879316,0.49431074,0.5785537,0.64899313,0.49537867,0.5774148,0.6489019,0.49576136,0.5771889,0.648505,0.49671134,0.5768181,0.6462945,0.49903727,0.5772913,0.6455852,0.4996803,0.5775288,0.64544654,0.49938866,0.5779357,0.64565605,0.4984359,0.57852393,0.645533,0.4982809,0.57879466,0.6455703,0.49803695,0.578963,0.6457218,0.49771255,0.57907313,0.6457071,0.49695766,0.5797374,0.6471869,0.49493217,0.57982004,0.6479087,0.4941152,0.5797107,0.65625125,0.47917587,0.58285916,0.65568745,0.48009858,0.5827344,0.6549138,0.48119202,0.58270246,0.6531686,0.48330173,0.58291525,0.65197295,0.48449498,0.58326316,0.64966184,0.4880233,0.5829002,0.649108,0.4890093,0.58269095,0.64824563,0.4902249,0.5826295,0.6475112,0.49068388,0.58305967,0.64699215,0.4903958,0.5838776,0.6445282,0.4911613,0.5859556,0.6450221,0.49223214,0.5845118,0.6457452,0.4941953,0.5820517,0.6466673,0.49390405,0.5812747,0.6472023,0.4936246,0.5809165,0.6477921,0.4935238,0.5803444,0.6474249,0.49421665,0.58016455,0.64620274,0.4956948,0.580266,0.643666,0.499182,0.580096,0.644702,0.49751586,0.58037686,0.6460794,0.4903824,0.58489865,0.6446529,0.49079752,0.5861232,0.80476606,-0.14456028,-0.5757203,0.804445,-0.14159136,-0.5769056,0.8046764,-0.14176519,-0.57654005,0.8049911,-0.1422595,-0.5759788,0.80556774,-0.14392611,-0.5747572,0.80606246,-0.16338657,-0.5688305,0.8003812,-0.15867808,-0.57811004,0.7998276,-0.15871175,-0.57886654,0.7993267,-0.1585704,-0.5795966,0.79642546,-0.15596476,-0.5842786,0.79525596,-0.15570383,-0.5859387,0.7942849,-0.1549293,-0.5874593,0.792732,-0.15267596,-0.59014064,0.791479,-0.15221106,-0.59193987,0.7902934,-0.15152366,-0.5936976,0.7884989,-0.14925227,-0.5966518,0.786931,-0.1465063,-0.59939593,0.7874004,-0.14598858,-0.59890556,0.78788495,-0.14561602,-0.5983589,0.7895647,-0.14518932,-0.5962446,0.79058784,-0.14462775,-0.5950241,0.791176,-0.14507467,-0.59413284,0.7983961,-0.14761892,-0.583757,0.8011207,-0.14757682,-0.58002305,0.80212796,-0.14767458,-0.5786044,0.8061966,-0.1491107,-0.5725496,0.8067489,-0.14938535,-0.5716994,0.8080734,-0.15036114,-0.56956905,0.8085627,-0.15139899,-0.56859887,0.8091129,-0.15400486,-0.5671144,0.7982195,-0.15718524,-0.5814968,0.7973963,-0.15637723,-0.5828424,0.7917146,-0.14569187,-0.5932637,0.8013717,-0.15920818,-0.5765901,0.7936196,-0.15355349,-0.5887184,0.79476863,-0.14730541,-0.5887648,0.79277104,-0.14647587,-0.5916577,0.8043892,-0.16118668,-0.5718189,0.79387987,-0.14710979,-0.5900114,0.8163293,-0.16084854,-0.55473804,0.9025644,0.086502865,-0.42177564,0.90248597,0.087440096,-0.42175028,0.90286183,0.08754448,-0.4209234,0.90410024,0.08622353,-0.41853118,0.9049167,0.08508653,-0.4169966,0.90935093,0.08004172,-0.40825754,0.90571713,0.08364556,-0.41554767,0.90846264,0.080323696,-0.41017535,0.9065465,0.08236563,-0.41399196,0.90749717,0.081249654,-0.4121254,0.9266312,0.37364075,-0.04179952,0.92877287,0.36827108,-0.04191998,0.9296732,0.36597064,-0.04210987,0.93098724,0.3626548,-0.041763924,0.93065083,0.36357358,-0.041270386,0.9304248,0.36427522,-0.040165648,0.93020016,0.36502346,-0.03854219,0.93003225,0.36552328,-0.03785091,0.9301433,0.365325,-0.03702813,0.93063235,0.36419183,-0.03588472,0.9310608,0.3631392,-0.035435613,0.93162745,0.36166108,-0.035659157,0.9321769,0.36020347,-0.036050893,0.9324667,0.3593694,-0.03687235,0.93281955,0.35844433,-0.036951568,0.9332642,0.35725302,-0.037259124,0.93366504,0.3561583,-0.037694294,0.9341072,0.3549739,-0.03791146,0.9345299,0.35376173,-0.038814213,0.9358858,0.34971476,-0.0426294,0.9368567,0.3468637,-0.044555515,0.9358915,0.34944493,-0.044669513,0.9352214,0.35123205,-0.044687033,0.9357532,0.34970126,-0.04555169,0.93603194,0.3488148,-0.046609636,0.9367006,0.34696442,-0.046987046,0.9368392,0.34665102,-0.046532955,0.9373109,0.34548527,-0.045698073,0.9374846,0.34493104,-0.046315186,0.9375936,0.3445143,-0.04720328,0.93668413,0.34673902,-0.04893747,0.93630874,0.34768927,-0.04937708,0.93607545,0.34820616,-0.050152026,0.93728256,0.34505656,-0.049369168,0.93721575,0.34511262,-0.050238777,0.93723595,0.34499258,-0.05068515,0.93759394,0.34414777,-0.04979904,0.9379561,0.34324747,-0.04918825,0.9391347,0.33969033,-0.051346567,0.9391195,0.33957887,-0.05235076,0.9388327,0.3403523,-0.052472856,0.93802357,0.3426887,-0.051731642,0.9378007,0.34264874,-0.055872843,0.9379443,0.34217462,-0.056365933,0.9383946,0.34053656,-0.058740113,0.9382487,0.34057906,-0.060789473,0.938642,0.33962697,-0.06003901,0.93915313,0.33834496,-0.05927934,0.9393532,0.33762076,-0.06023078,0.9394821,0.33705023,-0.061404854,0.9397476,0.33624133,-0.061776042,0.93996304,0.33560884,-0.061936617,0.9403271,0.33436826,-0.06310848,0.9404494,0.33387107,-0.06391371,0.9404965,0.3335055,-0.065118365,0.94199646,0.3299625,-0.061378945,0.9413767,0.3321804,-0.05887361,0.9414466,0.33212093,-0.058085516,0.9416468,0.33165863,-0.057479165,0.94258076,0.32867673,-0.05927154,0.94338924,0.32601207,-0.061096672,0.9436629,0.32491782,-0.06267958,0.9438635,0.32391176,-0.06482942,0.9434952,0.32488152,-0.06533571,0.9432799,0.32548675,-0.065432325,0.94245154,0.32797793,-0.06492772,0.9421784,0.3285664,-0.06590938,0.94165546,0.3300003,-0.06621787,0.9415225,0.33030683,-0.06657951,0.94233865,0.3279795,-0.06653878,0.9437366,0.32380855,-0.067151494,0.94396037,0.32307872,-0.067519955,0.944381,0.3212933,-0.070108406,0.9445208,0.3211489,-0.06887568,0.9451086,0.31911108,-0.070269376,0.94565666,0.31742418,-0.07053694,0.947124,0.31236243,-0.073388726,0.9490707,0.30610415,-0.07459907,0.94965136,0.30401596,-0.075740814,0.9525129,0.2951503,-0.07486964,0.95270014,0.29463157,-0.07452978,0.95365,0.29161197,-0.07425741,0.9541545,0.29017043,-0.07341813,0.9553588,0.28635627,-0.072729535,0.9557289,0.2852228,-0.07232032,0.9560712,0.28430462,-0.07140557,0.9580529,0.27776077,-0.07059468,0.95857185,0.27591345,-0.07079388,0.95852053,0.27576515,-0.07205513,0.95792085,0.27722046,-0.074407645,0.95740634,0.27875867,-0.07527724,0.95678496,0.28047937,-0.07677099,0.9566185,0.28081873,-0.07760115,0.9564488,0.2812719,-0.078050144,0.956067,0.28232017,-0.07893772,0.95689243,0.27969557,-0.07827686,0.95741403,0.277873,-0.07839007,0.95778435,0.27672502,-0.077925816,0.958143,0.2754489,-0.07803721,0.95853907,0.27403298,-0.07815827,0.9580314,0.2751523,-0.080416866,0.9576653,0.27618864,-0.08122132,0.95731294,0.2773555,-0.081400044,0.9570738,0.2779991,-0.08201397,0.9573513,0.27711242,-0.081774846,0.9575766,0.2762779,-0.081961736,0.9578613,0.2752866,-0.081969656,0.95855355,0.27258685,-0.08289467,0.9582553,0.2729378,-0.0851566,0.95817125,0.27271152,-0.08681179,0.95785403,0.27356988,-0.08760774,0.9569413,0.27619517,-0.08932882,0.9566103,0.27727452,-0.08952983,0.9571207,0.2753932,-0.08988042,0.9577106,0.27363053,-0.08897581,0.9583092,0.27154377,-0.08892438,0.9583625,0.27109262,-0.08972182,0.9583287,0.2709827,-0.09041235,0.95751894,0.27291566,-0.09313756,0.95665413,0.27524742,-0.09514092,0.9555895,0.27847221,-0.096446574,0.954751,0.27989116,-0.10055567,0.9545659,0.280409,-0.10087019,0.9541443,0.28156063,-0.10164783,0.95410085,0.28137907,-0.10255443,0.95348406,0.28250977,-0.10514882,0.953258,0.28308526,-0.105650134,0.9528121,0.28514352,-0.10412635,0.95249397,0.28621098,-0.10410802,0.95189863,0.28850228,-0.103225425,0.9518051,0.2884525,-0.104221605,0.952311,0.2866772,-0.10449874,0.95258766,0.28562132,-0.10486756,0.9528095,0.28435844,-0.106274486,0.95276177,0.28409785,-0.10739392,0.952573,0.28425547,-0.1086438,0.95210683,0.28508466,-0.11054074,0.95110136,0.28753352,-0.11282997,0.95067245,0.28867027,-0.11353995,0.9498609,0.29105604,-0.114239566,0.9492044,0.29288837,-0.115010835,0.94844264,0.29575688,-0.11394925,0.94780135,0.29745543,-0.11486044,0.94767267,0.2980777,-0.11430738,0.94797015,0.2958236,-0.11764774,0.9481342,0.29511693,-0.11809965,0.94827926,0.29396373,-0.11979883,0.9484948,0.2934065,-0.11945814,0.94928163,0.29057825,-0.12011943,0.949913,0.28808117,-0.121138714,0.95013297,0.2868886,-0.12223834,0.95077294,0.28439936,-0.1230768,0.9504815,0.28443858,-0.12521893,0.9501705,0.28463787,-0.1271112,0.94999087,0.28487888,-0.12791124,0.9497785,0.28516236,-0.1288536,0.9501528,0.28435764,-0.1278688,0.9505301,0.28330672,-0.12739667,0.95150745,0.27989358,-0.12764497,0.952108,0.27804983,-0.12719524,0.9527589,0.2759658,-0.12685913,0.95509195,0.2660769,-0.13039353,0.95573026,0.2639873,-0.129963,0.9561568,0.261935,-0.13097389,0.95758915,0.25644004,-0.13138291,0.9579892,0.25441155,-0.13240609,0.9580179,0.25295737,-0.1349603,0.9580392,0.25368285,-0.1334383,0.9582724,0.2529591,-0.13313775,0.95894724,0.24972886,-0.13437128,0.95943815,0.247596,-0.1348136,0.95993626,0.24465626,-0.13662252,0.9607374,0.24169275,-0.13626546,0.96104336,0.24019991,-0.13674667,0.96177834,0.23705666,-0.13706368,0.961952,0.23594958,-0.13775422,0.9609216,0.2392178,-0.13930027,0.9613689,0.23740605,-0.13931318,0.96195114,0.23317023,-0.14241387,0.9625492,0.22993189,-0.14363252,0.96284324,0.22770357,-0.1452034,0.96348125,0.22471349,-0.1456289,0.96390575,0.22236943,-0.14641573,0.9642069,0.22104648,-0.14643618,0.964547,0.2192059,-0.14696217,0.9650042,0.21712008,-0.14705715,0.96547747,0.21542944,-0.14643557,0.9656799,0.21385704,-0.14740264,0.96601117,0.2130304,-0.14642558,0.96625996,0.21209769,-0.14613809,0.96625507,0.2117595,-0.14665969,0.9660871,0.21175541,-0.14776804,0.9665292,0.21007428,-0.14727597,0.9667588,0.20871603,-0.14769883,0.96707505,0.20717302,-0.14780106,0.9673553,0.20638004,-0.14707468,0.9675167,0.20567709,-0.14699797,0.9677925,0.20452107,-0.14679508,0.9679852,0.2034431,-0.14702182,0.96790797,0.20310098,-0.14800097,0.96740514,0.20414147,-0.14984497,0.9674529,0.20345815,-0.15046534,0.96742725,0.20312433,-0.15107952,0.9678419,0.20219056,-0.14966938,0.9682256,0.20093594,-0.14887555,0.9684559,0.19973205,-0.14899713,0.96878535,0.1982604,-0.1488213,0.96915215,0.19645917,-0.14882183,0.9694165,0.19492562,-0.14911616,0.96993667,0.19308889,-0.14811997,0.9704387,0.19058472,-0.14807482,0.9710369,0.18848534,-0.14683521,0.97159857,0.18636402,-0.14582434,0.97175634,0.18599145,-0.14524694,0.97198576,0.18525207,-0.14465629,0.972855,0.17971437,-0.14579424,0.97344637,0.17678444,-0.14542824,0.9736132,0.17549083,-0.14587739,0.9737259,0.17424902,-0.14661214,0.97304416,0.17672484,-0.14816687,0.93523437,0.35125282,-0.044251528,0.93592966,0.34867266,-0.049629085,0.9516885,0.29751724,-0.075976826,0.95599115,0.2827698,-0.07824408,0.95687723,0.27870303,-0.08191831,0.9561377,0.27686834,-0.09562782,0.9542772,0.2813357,-0.101020515,0.94742054,0.29905787,-0.113836296,0.9476153,0.29766372,-0.11585085,0.953162,0.27354854,-0.1290479,0.9605545,0.24081202,-0.1390849,0.9364511,0.34759572,-0.04729293,0.9420523,0.32950073,-0.06298229,0.957722,0.25483683,-0.13351725,0.9604575,0.2415861,-0.1384107,0.9303917,0.36407605,-0.042660445,0.9555322,0.28421468,-0.078614764,0.9558072,0.28322017,-0.078860514,0.9517808,0.28870702,-0.10373787,0.93092114,0.362766,-0.0422697,0.9377628,0.34316978,-0.053249992,0.9406905,0.33283383,-0.06574885,0.94179237,0.33005184,-0.06397599,0.9502962,0.30185968,-0.07627485,0.9377272,0.34297606,-0.0550922,0.9413763,0.3309977,-0.065200254,0.95543224,0.26305664,-0.1339792,0.93066937,0.36335203,-0.04277646,0.9567679,0.25654626,-0.13703689,0.95996934,0.2381478,-0.14746034,0.88685805,0.4446504,-0.12557405,0.8930825,0.44036233,-0.092112616,0.9497881,0.28305587,-0.13334867,0.9104854,0.39124796,-0.13394545,0.8872752,0.443917,-0.12522122,0.8932152,0.44004324,-0.09235015,0.94994193,0.28258136,-0.13325964,0.923559,0.3521806,-0.15168236,0.9105549,0.39102843,-0.13411415,0.8889407,0.44091773,-0.12400009,0.8905372,0.4434462,-0.1014839,0.9272358,0.37087083,-0.05185163,0.9503315,0.28114548,-0.1335191,0.9236653,0.35201558,-0.15141849,0.88954556,0.4397925,-0.12365791,0.89072245,0.44306204,-0.10153577,0.9244481,0.37689212,-0.057861585,0.9484248,0.30494297,-0.086603604,0.95014995,0.2821158,-0.13276209,0.9238033,0.35190377,-0.15083481,0.9023153,0.4200851,-0.09672447,0.9212592,0.38408083,-0.061346915,0.928781,0.3664431,-0.055546355,0.9133683,0.40157962,-0.0670239,0.94673735,0.31075254,-0.0843875,0.94880545,0.28794727,-0.12982528,0.92420167,0.35194373,-0.14827959,0.9028214,0.41898006,-0.09679505,0.92066795,0.38540003,-0.061946627,0.9285001,0.36710793,-0.055851478,0.91243774,0.40354198,-0.06790666,0.94566745,0.31465903,-0.08187116,0.9242352,0.35208687,-0.1477299,0.9048927,0.4143737,-0.09728162,0.9202484,0.3863478,-0.06227611,0.91221774,0.4040119,-0.06806776,0.9283009,0.3675856,-0.05601987,0.91177696,0.40495145,-0.06838955,0.9434339,0.31989527,-0.08717518,0.9234583,0.35735333,-0.13972586,0.90971655,0.40014675,-0.11089801,0.906562,0.41180128,-0.092547975,0.9123507,0.38842702,-0.12938581,0.9301244,0.36156428,-0.06434206,0.92152005,0.38236797,-0.067790635,0.92892134,0.3655802,-0.058790047,0.9124407,0.40297964,-0.07112923,0.9435755,0.31920317,-0.08817361,0.9245888,0.35499218,-0.1382612,0.9159146,0.3912756,-0.08946427,0.9247972,0.3705534,-0.08625749,0.9275526,0.35867858,-0.104861446,0.9332043,0.34964517,-0.082933545,0.92130154,0.3676785,-0.12655456,0.9188698,0.37950796,-0.10794474,0.9399407,0.32891968,-0.091232054,0.9367955,0.33686614,-0.094527155,0.9398784,0.32911488,-0.091170244,0.9720804,0.18703297,-0.14169784,0.97172284,0.1899991,-0.14019649,0.97173584,0.1904718,-0.13946293,0.9718524,0.19017735,-0.139052,0.9722532,0.18886605,-0.13803405,0.9720777,0.18802828,-0.14039308,0.972297,0.18642855,-0.14100684,0.972263,0.18635067,-0.14134368,0.9721886,0.18657765,-0.14155619,0.9720349,0.18906026,-0.1392996,0.97498095,0.17250405,-0.14019497,0.97480035,0.17285666,-0.14101359,0.97451097,0.173779,-0.14187738,0.9743589,0.17453016,-0.14199948,0.9745526,0.17442523,-0.14079462,0.9749612,0.17321254,-0.13945612,0.97530335,0.17154874,-0.13911997,0.9752711,0.17150588,-0.13939866,0.9699282,0.19899541,-0.14014341,0.96966976,0.19977212,-0.14082493,0.96937555,0.20097682,-0.14113644,0.9688674,0.2031786,-0.14147235,0.9686755,0.20420565,-0.14130776,0.9688151,0.20378518,-0.14095707,0.96930915,0.20184253,-0.1403542,0.96967155,0.2005168,-0.13975033,0.97003204,0.19889599,-0.13956432,0.9700327,0.19862458,-0.13994591,0.9700187,0.19861127,-0.14006193,0.96782774,0.2061941,-0.14419928,0.96770257,0.20628999,-0.14490072,0.9674776,0.2066328,-0.1459108,0.96728057,0.2071714,-0.14645272,0.9673209,0.20800003,-0.1450037,0.967185,0.20935021,-0.14396374,0.96729755,0.2089577,-0.14377825,0.9689558,0.2000292,-0.14530273,0.96817315,0.2035541,-0.14562418,0.96803844,0.20458023,-0.14508082,0.9684551,0.20435083,-0.14260255,0.96866727,0.20304099,-0.14303187,0.9687834,0.202506,-0.14300346,0.9690938,0.20051518,-0.14370424,0.96901786,0.2005168,-0.14421283,0.96542037,0.21810827,-0.14280128,0.9652784,0.21894571,-0.14247939,0.96536964,0.21947457,-0.14104061,0.9656449,0.21834025,-0.14091611,0.9659499,0.21663423,-0.14145833,0.96664506,0.21364392,-0.14125718,0.9665935,0.2136473,-0.14160474,0.966414,0.21394531,-0.14237767,0.96577215,0.2159919,-0.14363728,0.9653847,0.21765499,-0.14373106,0.9654676,0.21764079,-0.14319511,0.96780527,0.21038428,-0.13817167,0.967757,0.21047926,-0.13836502,0.96764815,0.21117646,-0.13806333,0.967535,0.21172373,-0.13801856,0.96737236,0.21236913,-0.13816705,0.9673225,0.21266733,-0.13805734,0.9673314,0.21282214,-0.13775575,0.96739703,0.2128905,-0.13718814,0.96747375,0.21269062,-0.13695677,0.9676963,0.21187867,-0.1366434,0.96785355,0.21071827,-0.13732184,0.9678336,0.2104393,-0.13788953,0.9585878,0.2747303,-0.07505131,0.95811826,0.27596086,-0.076518066,0.95745975,0.2780072,-0.07734909,0.957172,0.27908355,-0.077033564,0.9575013,0.2782004,-0.07613051,0.9579445,0.2769011,-0.075286694,0.9584723,0.27553895,-0.0735467,0.95913714,0.27309275,-0.07400223,0.9518027,0.27966365,-0.12593602,0.95165604,0.27988294,-0.12655549,0.9509234,0.28229728,-0.12670043,0.9507433,0.282836,-0.1268497,0.9506044,0.28335908,-0.1267239,0.95051205,0.2837816,-0.12647092,0.9505,0.28410026,-0.12584448,0.9505964,0.283963,-0.12542532,0.9508755,0.2833632,-0.12466419,0.9516092,0.2807623,-0.12495008,0.9453993,0.32021093,-0.060705815,0.9453335,0.320353,-0.06097985,0.9451285,0.32087287,-0.06142281,0.94458205,0.3223987,-0.061836798,0.9442597,0.32334813,-0.06180281,0.94426256,0.32373276,-0.05971011,0.94451636,0.3233812,-0.05756222,0.94503903,0.3215976,-0.05895879,0.93937904,0.3379953,-0.057673447,0.93858653,0.3402577,-0.057271585,0.93832165,0.34120554,-0.05595844,0.93874687,0.34001163,-0.05609296,0.9391428,0.3388438,-0.056529533,0.9406803,0.3334003,-0.062966265,0.94032174,0.33476505,-0.06105256,0.94043034,0.33453777,-0.06062338,0.9407643,0.33372566,-0.059913963,0.9409551,0.33313113,-0.0602256,0.9411278,0.33242956,-0.061393213,0.9416259,0.33093742,-0.061814178,0.9417169,0.3304926,-0.06280032,0.9414287,0.33104193,-0.064212404,0.9412,0.33159193,-0.064725496,0.9409378,0.3322953,-0.06492982,0.9408213,0.33263215,-0.06489271,0.9405969,0.33349517,-0.06370633,0.9709304,0.19011286,-0.1454347,0.9708655,0.19014972,-0.14581928,0.97049,0.1922986,-0.14550073,0.97096866,0.19046172,-0.14472145,0.9709673,0.19019654,-0.14507823,0.9695394,0.20265706,-0.13756269,0.96938354,0.20335473,-0.13763158,0.96935177,0.203756,-0.1372614,0.96910304,0.20552531,-0.13637711,0.9696572,0.20271719,-0.13664053,0.969714,0.20170732,-0.13772744,0.96719587,0.21394287,-0.13696952,0.9670478,0.21456128,-0.13704783,0.96703285,0.21469867,-0.1369381,0.9671082,0.2145139,-0.13669488,0.9672136,0.21462962,-0.13576484,0.96751195,0.21381629,-0.134919,0.9675689,0.2134109,-0.13515225,0.9676087,0.21267234,-0.13602886,0.9643948,0.2238407,-0.1408478,0.96374005,0.22663552,-0.14085954,0.9635751,0.22752933,-0.14054695,0.9635004,0.22816993,-0.1400195,0.96345747,0.22838895,-0.1399579,0.9635375,0.22815672,-0.13978505,0.96387756,0.22672597,-0.13976905,0.9642095,0.22518937,-0.13996316,0.95889443,0.27217692,-0.08025724,0.9587448,0.27260497,-0.08059035,0.9583522,0.27382636,-0.08111825,0.9581714,0.27451319,-0.08093188,0.9588269,0.27266726,-0.07939426,0.9588651,0.27248362,-0.07956361,0.9394008,0.33921173,-0.04961404,0.9388488,0.34077218,-0.049369846,0.93816364,0.34277752,-0.0485033,0.93796045,0.34343794,-0.047755457,0.93847984,0.3420169,-0.047749825,0.93921036,0.33985457,-0.04881416,0.926967,0.37484837,0.014859034,0.9278975,0.37254646,0.014674684,0.92848957,0.37111303,0.013498452,0.92890525,0.37010938,0.012414992,0.92901385,0.36985996,0.011697463,0.9289373,0.37008876,0.010478761,0.92830664,0.37170961,0.0088797,0.92770755,0.37322018,0.008086494,0.9269403,0.37512252,0.008048201,0.9280661,0.37234953,0.007020269,0.92867047,0.37083995,0.0069931773,0.92837447,0.3715973,0.0060256296,0.9279659,0.37262633,0.0053807916,0.9277039,0.37329605,0.003937241,0.9272868,0.37433946,0.003044054,0.9265852,0.3760773,0.0023847437,0.92604566,0.37740517,0.0021686389,0.92410374,0.38214162,0.00023945127,0.9251525,0.3795918,0.0017140385,0.92585194,0.37788257,0.0017121336,0.9264215,0.37648553,0.0013247753,0.9270341,0.37497634,0.0007410469,0.9261504,0.3771392,-0.0033876346,0.9270684,0.37488934,-0.0014221509,0.92744505,0.37395775,-0.0011333923,0.9279185,0.3727813,-0.001152997,0.92817575,0.372136,-0.0021182736,0.9283731,0.37164077,-0.0025729195,0.9282852,0.37185037,-0.003735618,0.9278284,0.37297818,-0.0046667582,0.9268503,0.37538707,-0.005755053,0.9259752,0.37749988,-0.00798614,0.9257077,0.37813422,-0.008932175,0.9254357,0.378785,-0.009521149,0.92474407,0.38045958,-0.009944339,0.92425764,0.38164857,-0.009606658,0.923577,0.38331705,-0.0085716015,0.9232525,0.38411352,-0.007854131,0.9229416,0.38485622,-0.008029187,0.9226089,0.38565916,-0.007740094,0.92127913,0.3888311,-0.0074227257,0.92110944,0.38920242,-0.008878363,0.92056304,0.39051852,-0.0076727765,0.9201064,0.3915969,-0.0074838097,0.91988546,0.39209563,-0.008473074,0.91953933,0.39288187,-0.009551368,0.9190565,0.39400852,-0.009612205,0.91862935,0.39500687,-0.009474561,0.9180894,0.39628494,-0.008376629,0.91796213,0.3966183,-0.006272534,0.91735685,0.3980424,-0.004309193,0.9175102,0.39765853,-0.0065338197,0.9175622,0.3974927,-0.008898977,0.91719395,0.39833713,-0.009093984,0.9167576,0.39934295,-0.00898648,0.91678673,0.3992554,-0.009858769,0.917408,0.39782587,-0.009857684,0.9185722,0.3951133,-0.010518418,0.9198047,0.39224464,-0.01017185,0.9202706,0.39114055,-0.010540938,0.92229795,0.38625038,-0.013309326,0.92310447,0.38424724,-0.015236275,0.92292947,0.38452193,-0.018548906,0.92271876,0.3849757,-0.019589428,0.92205876,0.38647193,-0.021146137,0.9216044,0.3874676,-0.022677537,0.92098117,0.38887975,-0.02379628,0.9215722,0.38747397,-0.023844535,0.9221577,0.38602945,-0.024625653,0.9234444,0.38276052,-0.027293742,0.92407817,0.38117826,-0.027976224,0.9247715,0.3794151,-0.029014826,0.92460865,0.37973604,-0.02999092,0.925212,0.37830395,-0.029476888,0.9256687,0.37715182,-0.029898934,0.92742926,0.3727134,-0.030979674,0.9286603,0.36949965,-0.032559514,0.9297406,0.3667653,-0.032645,0.93188244,0.36121446,-0.03345487,0.9329939,0.35811165,-0.035754457,0.93358743,0.3564705,-0.036650486,0.9341267,0.35495082,-0.037646007,0.92726153,0.37434268,0.00732393,0.9221615,0.3867416,-0.00700229,0.9216457,0.38796878,-0.0070282593,0.92444426,0.3801522,-0.029785251,0.92438596,0.3802713,-0.0300736,0.9257455,0.37804988,0.008574318,0.92533404,0.379061,0.008346561,0.9252798,0.37927788,0.0023703536,0.92653984,0.37619504,-0.0011086493,0.91646963,0.39999914,-0.009172682,0.9246265,0.3808702,0.001906949,0.9262767,0.3768369,-0.0023192132,0.91637224,0.40021077,-0.009660607,0.9134927,0.4068258,0.004888929,0.91243035,0.4090421,-0.012467074,0.9130268,0.40788502,-0.0034399848,0.91224754,0.4096338,-0.0021246609,0.912345,0.40941572,-0.0023130437,0.92634064,0.37630793,-0.01689271,0.92584723,0.37743995,-0.018598052,0.9251266,0.3791817,-0.019026877,0.92458683,0.3805125,-0.018694133,0.92358375,0.38300148,-0.017403036,0.9245384,0.38030833,-0.024378646,0.92432296,0.38078347,-0.025120245,0.92403954,0.38147998,-0.024976954,0.9236151,0.38253376,-0.024557473,0.9230577,0.3839176,-0.023912918,0.9228015,0.3845612,-0.023456167,0.92292696,0.3842764,-0.023182256,0.92376155,0.38229132,-0.022759046,0.9243865,0.38072205,-0.02367145,0.92677766,0.3754834,-0.009764006,0.9265135,0.37605125,-0.012575765,0.92603725,0.37719366,-0.013413857,0.9245031,0.38091826,-0.013971573,0.9238745,0.38243935,-0.013999968,0.9223783,0.3861238,-0.011256911,0.92189705,0.387279,-0.010990211,0.92171055,0.3877276,-0.010815128,0.921383,0.3885374,-0.009592488,0.9215884,0.38808426,-0.008089709,0.9221794,0.3866708,-0.008410868,0.9226787,0.38546413,-0.009024061,0.92304707,0.38457927,-0.009101615,0.92354834,0.3833392,-0.0104651805,0.92496234,0.3799,-0.010985728,0.92671996,0.3756604,-0.008330639,0.9228739,0.38491914,-0.011870229,0.92418253,0.38179588,-0.0108866645,0.9283303,0.3705614,-0.029783726,0.927781,0.37188846,-0.030353453,0.92744184,0.3727229,-0.03048314,0.92717314,0.37341946,-0.030131085,0.9271762,0.37342578,-0.029958688,0.92745566,0.37275055,-0.029716155,0.927954,0.37152678,-0.029481972,0.9298908,0.3665551,-0.030666724,0.9298277,0.36663198,-0.03164516,0.9291687,0.36828303,-0.031828888,0.92870766,0.36946398,-0.03159762,0.9284603,0.37010616,-0.03135152,0.92846954,0.37011877,-0.03092567,0.9285879,0.36988932,-0.03010725,0.9294438,0.3677093,-0.030398311,0.92971677,0.3670363,-0.03018357,0.9209884,0.38944572,-0.010602635,0.9206993,0.39013636,-0.010313576,0.9202158,0.39130053,-0.009313741,0.920363,0.3909703,-0.008615507,0.92062795,0.39033645,-0.009035395,0.9208246,0.38985622,-0.009706008,0.7289073,0.6066091,0.31736347,0.7280048,0.6069343,0.31880987,0.72620094,0.60758024,0.32168064,0.7241253,0.60887367,0.32390654,0.72276455,0.6097183,0.32535353,0.72272474,0.60960346,0.3256571,0.7227826,0.6090264,0.326607,0.7230409,0.60831577,0.327359,0.72463614,0.60531026,0.3293963,0.72322625,0.60524917,0.33259162,0.72206384,0.6051264,0.33532947,0.7216781,0.6045095,0.33726707,0.7214664,0.60365444,0.33924553,0.72195905,0.6026409,0.33999866,0.7226829,0.6013242,0.34079123,0.72424424,0.5983273,0.34274596,0.72565573,0.5955877,0.3445273,0.7268993,0.58988607,0.35164148,0.72666806,0.5893753,0.35297352,0.72683305,0.5887397,0.3536938,0.72708786,0.5879562,0.35447255,0.7265741,0.5880637,0.35534635,0.72617275,0.58795965,0.35633785,0.72554725,0.58733076,0.35864165,0.72492087,0.586558,0.36116388,0.7240588,0.585784,0.36413735,0.7232765,0.58578473,0.36568752,0.72307575,0.58561134,0.36636162,0.7231894,0.5852223,0.36675858,0.7237994,0.58448684,0.36672825,0.7248594,0.5832311,0.36663368,0.72490495,0.58265567,0.36745775,0.72530884,0.5816697,0.36822203,0.72623664,0.5799325,0.36913216,0.72607404,0.57941175,0.37026814,0.7258175,0.5785647,0.3720911,0.724678,0.5770011,0.37671146,0.72411335,0.57716465,0.3775458,0.72378963,0.5768779,0.3786033,0.72340083,0.57627696,0.38025802,0.72273433,0.5771486,0.38020334,0.7221165,0.5777143,0.38051808,0.7204945,0.5789921,0.38164884,0.71921724,0.5799027,0.3826741,0.7188736,0.5799624,0.38322887,0.71836966,0.5797291,0.38452455,0.71379876,0.58202523,0.38953564,0.71324986,0.58254135,0.38976946,0.7238112,0.6069377,0.3282133,0.727245,0.5909728,0.34909293,0.72563875,0.57744926,0.37416673,0.7252468,0.576905,0.37576282,0.7176615,0.5795576,0.38610223,0.7145198,0.5813535,0.38921654,0.7271702,0.58813953,0.35399902,0.72428244,0.5839418,0.36664268,0.7238067,0.5760158,0.37988108,0.7161237,0.580104,0.3881316,0.7266248,0.5938063,0.3455582,0.7271063,0.5925851,0.34664002,0.71688044,0.5797409,0.38727635,0.73998433,0.5367208,0.40540588,0.7721118,0.57392925,0.2728527,0.7407188,0.5360056,0.4050108,0.76925063,0.5064085,0.3896203,0.7878722,0.5279875,0.31699637,0.7718491,0.57449853,0.27239743,0.734619,0.5968585,0.32263723,0.7573468,0.52326816,0.39066124,0.77142715,0.508412,0.3826452,0.7429817,0.5379669,0.39820832,0.78580487,0.50572526,0.35602337,0.7877882,0.5276765,0.31772184,0.7371888,0.5979684,0.3146211,0.7271833,0.56492585,0.38995293,0.72555625,0.57722104,0.3746786,0.77180713,0.5145237,0.37360287,0.7721426,0.5266686,0.3555502,0.75798374,0.5353367,0.3726597,0.7433789,0.5439487,0.38923985,0.7827627,0.53929216,0.31055838,0.7373173,0.59716654,0.31584054,0.72723126,0.5650412,0.3896962,0.7721644,0.5274376,0.35436094,0.75801194,0.5358462,0.37186942,0.77215016,0.52692497,0.3551538,0.7433996,0.5442019,0.3888461,0.7712669,0.5722496,0.2787075,0.77692366,0.5547387,0.29774925,0.7817829,0.5369786,0.31696922,0.73740506,0.59575886,0.31828472,0.72760373,0.5662966,0.38717046,0.7638431,0.5629715,0.31560546,0.7684069,0.5453271,0.33491665,0.7729001,0.5500417,0.31635368,0.7502876,0.57114875,0.332953,0.75847906,0.5803629,0.29645973,0.74024284,0.561862,0.3692582,0.75455385,0.5536218,0.3523511,0.76344407,0.54059523,0.35342607,0.7321482,0.5858272,0.3475134,0.7373853,0.59169096,0.32582933,0.7419486,0.59752357,0.30410177,0.73849314,0.57554895,0.3512425,0.7475391,0.5847281,0.3150847,0.75668645,0.5871183,0.28760678,0.73738605,0.58233285,0.3422722,0.7374559,0.5917511,0.32556018,0.7419797,0.5975535,0.3039669,0.7321876,0.5858574,0.34737933,0.74204206,0.5976133,0.30369702,0.7560129,0.5898267,0.28381145,0.74719036,0.5865383,0.31253704,0.75646496,0.5880218,0.2863409,0.7372622,0.5832402,0.34099168,0.62360954,0.6260072,0.46821594,0.6232759,0.6266456,0.46780598,0.6207733,0.62983483,0.46684965,0.6205809,0.63059574,0.46607766,0.62024266,0.6306295,0.46648204,0.6203448,0.63003534,0.46714848,0.621932,0.6279252,0.46787876,0.5947852,0.6630048,0.45459345,0.59738576,0.6608591,0.45430768,0.5992413,0.6590946,0.45442733,0.5997182,0.65869325,0.45438012,0.5997193,0.6588215,0.45419273,0.5982588,0.6605508,0.45360675,0.5961655,0.6641046,0.45116717,0.59581614,0.66461164,0.450882,0.59390324,0.6703463,0.4448761,0.5949521,0.67019135,0.4437066,0.5962211,0.6706877,0.44124648,0.60332435,0.6661753,0.43841782,0.6048801,0.6644919,0.43882874,0.6064641,0.6628734,0.43909025,0.60794705,0.66172534,0.43877092,0.6093749,0.66083676,0.4381291,0.6163424,0.65384686,0.4388693,0.6146542,0.6543632,0.44046444,0.61457264,0.6538772,0.44129923,0.61534715,0.65295726,0.441582,0.61632735,0.65200925,0.44161582,0.61559767,0.65201503,0.4426239,0.61465245,0.65236837,0.44341603,0.61396873,0.65219206,0.4446211,0.6118161,0.65164405,0.4483761,0.61052686,0.6527126,0.4485791,0.6092502,0.653665,0.44892797,0.60839045,0.65383077,0.4498515,0.6079812,0.6533251,0.45113772,0.60308623,0.65553015,0.4544967,0.6019412,0.65656054,0.45452732,0.6031038,0.65425885,0.4563016,0.60440594,0.6519084,0.4579399,0.6051419,0.650068,0.45958132,0.6060662,0.648103,0.4611358,0.6077609,0.6457212,0.46224532,0.60973233,0.6435093,0.46273342,0.6117528,0.64161694,0.46269456,0.61299247,0.6405639,0.4625129,0.61409354,0.6397665,0.46215564,0.6123401,0.6413888,0.46223372,0.61309505,0.64250225,0.45967963,0.61448205,0.642226,0.4582114,0.61538434,0.64225733,0.45695475,0.6165055,0.64157516,0.45640153,0.6169771,0.64052796,0.4572343,0.6176565,0.6394193,0.4578683,0.61854494,0.6383487,0.4581627,0.619275,0.6379852,0.4576826,0.6182015,0.6368466,0.4607096,0.61718506,0.63753885,0.46111482,0.6178596,0.635163,0.46348396,0.61860996,0.6340111,0.46406004,0.6195968,0.6329079,0.4642493,0.6226041,0.6330306,0.46003968,0.6237473,0.63224524,0.45957083,0.62450135,0.6321587,0.45866483,0.62504184,0.63139904,0.45897487,0.62560385,0.63071746,0.45914635,0.6299991,0.6258138,0.4598458,0.63087964,0.62417656,0.4608628,0.6317255,0.6227187,0.46167564,0.63384616,0.61958236,0.4629868,0.6356908,0.6163066,0.46482617,0.63670915,0.61466974,0.4655991,0.6391381,0.6111068,0.46695918,0.64174515,0.607564,0.4680055,0.59472734,0.6653843,0.45117977,0.59706026,0.67089754,0.43979037,0.6160029,0.65194976,0.44215602,0.6042177,0.6546055,0.45432657,0.6190658,0.63656867,0.45993242,0.6195163,0.6336076,0.46340144,0.6218051,0.633458,0.4605316,0.62708586,0.62956476,0.4587064,0.63277644,0.6212286,0.4622435,0.60210496,0.66742265,0.43819693,0.6169408,0.65419114,0.4375134,0.6128026,0.6514191,0.44735464,0.6073581,0.65319216,0.45216832,0.60548806,0.6537502,0.4538666,0.6118008,0.64262176,0.46123424,0.6199746,0.6375238,0.4573784,0.6199573,0.6365266,0.45878845,0.6198003,0.6339564,0.4625439,0.6281253,0.62863195,0.45856342,0.6290134,0.6274748,0.45893085,0.5991839,0.67031217,0.43779024,0.61701775,0.65438515,0.4371145,0.6059999,0.6535457,0.4534779,0.62068087,0.6367106,0.45755312,0.62037724,0.633932,0.46180332,0.59373176,0.66777736,0.4489499,0.6133153,0.6586048,0.43598637,0.5934894,0.6688221,0.44771343,0.61458707,0.65766674,0.4356113,0.5936913,0.6700389,0.44562155,0.6316553,0.6271974,0.45566982,0.7032684,0.5967669,0.3863714,0.71966183,0.6024056,0.34524536,0.63179857,0.6280436,0.45430362,0.7031154,0.5968585,0.38650817,0.71185315,0.6073744,0.35264894,0.5981029,0.6708072,0.4385096,0.6320378,0.62857896,0.4532291,0.7028061,0.59722227,0.38650897,0.71191794,0.6071839,0.35284653,0.6406172,0.66041386,0.39174372,0.59861445,0.67065483,0.4380443,0.61595905,0.6419967,0.45654652,0.6323434,0.62905246,0.45214474,0.6916815,0.6189386,0.37214476,0.70757383,0.60221475,0.36969802,0.6427379,0.65924805,0.3902306,0.61704,0.65462357,0.43672606,0.6329044,0.6293823,0.45089892,0.6899859,0.61980146,0.37385252,0.6751636,0.64533883,0.35734,0.63767326,0.6592432,0.39846098,0.63560563,0.63039666,0.44565183,0.6815365,0.62367505,0.38280195,0.69107854,0.62618625,0.36097258,0.6712976,0.62115747,0.4043797,0.6590383,0.6456129,0.38581407,0.63975525,0.6525904,0.40600365,0.67763305,0.6385811,0.36472952,0.6358463,0.637024,0.4357751,0.6799732,0.6239045,0.3852008,0.6704793,0.62127244,0.4055589,0.6903361,0.6263007,0.36219254,0.6688363,0.6215025,0.40791252,0.6601704,0.64493155,0.38501734,0.6781842,0.63823783,0.3643058,0.6403354,0.65225244,0.40563208,0.6792853,0.637551,0.3634559,0.6356204,0.6374286,0.43551284,0.61657906,0.6554169,0.4361869,0.6795897,0.6239495,0.38580412,0.6686347,0.621525,0.4082087,0.6901547,0.6263231,0.36249948,0.6682309,0.6215701,0.40880072,0.6613851,0.6442328,0.38410133,0.6798754,0.6371988,0.36296982,0.6409591,0.651906,0.40520367,0.68105423,0.63649416,0.361995,0.63531715,0.6378435,0.43534794,0.6159622,0.65623003,0.43583563,0.67885053,0.62390023,0.38718274,0.6678384,0.6215454,0.4094793,0.689809,0.6262986,0.36319906,0.667051,0.62149596,0.4108354,0.6405816,0.6520005,0.4056484,0.6611437,0.64429635,0.38441023,0.6408333,0.6519375,0.40535194,0.68093884,0.6365262,0.36215547,0.6153098,0.6569956,0.43560377,0.6349958,0.63823426,0.43524396,0.6583164,0.6317746,0.40924373,0.64776284,0.63568765,0.4198863,0.6370269,0.6395844,0.43026564,0.49907082,0.49218762,0.7132178,0.50427186,0.50728315,0.6988374,0.8617169,0.49412006,0.11527887,0.8668482,0.48365498,0.12104577,0.86692375,0.48368552,0.120380715,0.87449354,0.4705574,0.117629945,0.88451576,0.46262982,0.06004655,0.872004,0.47701418,0.109847866,0.8842479,0.46301278,0.061030757,0.87437606,0.4740375,0.10370612,0.8701568,0.47686645,0.12419919,0.8781027,0.47120374,0.08308183,0.88345754,0.46411973,0.06399676,0.87448573,0.47390062,0.103406236,0.87815386,0.47113517,0.08293034,0.8702155,0.47679803,0.12405091,0.8782561,0.47099796,0.08262733,0.8832413,0.46417192,0.06655278,0.8704236,0.47661883,0.123276904,0.87035435,0.47667855,0.12353497,0.8746119,0.47378093,0.10288614,0.8783128,0.470938,0.082365334,0.7616284,0.28351924,0.5826998,0.65350395,0.27617466,0.7047412,0.6532161,0.26983812,0.70745754,0.65513426,0.26507875,0.7074831,0.6545946,0.26376444,0.7084731,0.6540151,0.264316,0.70880264,0.6538111,0.2627417,0.7095759,0.6565678,0.26105982,0.7076485,0.6574726,0.2589128,0.7075973,0.6581642,0.2577833,0.70736665,0.65829915,0.25709975,0.7074899,0.6581055,0.25651008,0.70788395,0.65835804,0.25573906,0.7079281,0.66044474,0.25073138,0.7077758,0.66040266,0.25009453,0.7080403,0.661299,0.24770167,0.70804495,0.66230386,0.24536924,0.7079177,0.6628107,0.24210788,0.70856607,0.6650397,0.23953228,0.7073517,0.66626185,0.23581785,0.70744973,0.6666725,0.22949067,0.7091416,0.6708395,0.2222124,0.7075282,0.6713636,0.21982627,0.70777637,0.67305344,0.2206035,0.70592713,0.6757118,0.2194105,0.70375603,0.6770243,0.21842435,0.7028007,0.67798024,0.21827382,0.7019254,0.6791913,0.21880183,0.70058906,0.68099296,0.21890326,0.6988061,0.68212336,0.2193207,0.6975716,0.6848726,0.22184186,0.6940718,0.6866817,0.22093184,0.692573,0.6882509,0.22127922,0.6909024,0.68995655,0.22181849,0.6890258,0.69047284,0.22390622,0.6878323,0.6909562,0.224922,0.68701506,0.693512,0.22609094,0.68404967,0.69471484,0.22892,0.6818848,0.7020781,0.2321524,0.6731951,0.7056038,0.23201233,0.6695473,0.70743805,0.23230326,0.6675078,0.70879996,0.23286104,0.6658666,0.7107232,0.23425071,0.66332424,0.7136191,0.23530114,0.6598342,0.7153597,0.23618728,0.6576292,0.7173407,0.23952393,0.65425575,0.7195603,0.24119243,0.6511982,0.7200776,0.24213935,0.65027446,0.7208051,0.24273624,0.649245,0.7242174,0.24188222,0.645757,0.72611755,0.24202195,0.64356714,0.72761285,0.2427049,0.64161813,0.7284354,0.24277093,0.64065915,0.72944653,0.24401909,0.6390324,0.7306395,0.24644893,0.636733,0.7311981,0.24792954,0.63551575,0.7395169,0.25592035,0.622591,0.7422618,0.2563066,0.6191561,0.7438507,0.2575914,0.61671126,0.74548876,0.25946268,0.6139426,0.7503294,0.26119146,0.6072766,0.7532708,0.26263154,0.602999,0.75582314,0.26449272,0.59897834,0.7564827,0.26520437,0.5978299,0.7569599,0.26623133,0.59676844,0.7577446,0.2665534,0.5956277,0.7588659,0.26783863,0.5936203,0.7599372,0.2686834,0.59186536,0.7610215,0.26985294,0.589937,0.7606763,0.27161834,0.5895719,0.7594423,0.2749131,0.5896356,0.7605832,0.28219506,0.5847043,0.65526587,0.2643152,0.70764697,0.65532494,0.26329595,0.70797205,0.6587988,0.25499254,0.70778733,0.6603718,0.2513072,0.7076396,0.66611046,0.2367114,0.7072939,0.6958793,0.23070738,0.68009275,0.6988256,0.23165087,0.6767427,0.73597354,0.25413623,0.62750113,0.75972956,0.28055868,0.5865985,0.7313462,0.2496439,0.6346736,0.75927395,0.2785115,0.5881619,0.7262712,0.32056823,0.6080841,0.68447465,0.29535624,0.6665276,0.708147,0.2364274,0.66530436,0.73181003,0.25038075,0.63384825,0.7479392,0.2663452,0.60798615,0.72154766,0.30911016,0.61953205,0.680949,0.2946922,0.67042154,0.67472726,0.24138725,0.6974778,0.708523,0.23672634,0.66479766,0.73407656,0.25270757,0.6302939,0.7470359,0.2656333,0.60940653,0.73225206,0.29662335,0.61304283,0.7183119,0.29543096,0.62987983,0.74579686,0.29781517,0.5958969,0.6770642,0.2942064,0.67455655,0.6772207,0.24426913,0.6940495,0.71545494,0.24172294,0.65551066,0.74716294,0.27593717,0.60465384,0.7178659,0.2947874,0.6306893,0.7319679,0.29619437,0.61358947,0.7181634,0.2952165,0.63014966,0.74566144,0.2976009,0.59617347,0.67766076,0.2900713,0.67574733,0.67591196,0.2597437,0.68969285,0.7296144,0.26502323,0.630417,0.74484056,0.2820592,0.60469437,0.7132852,0.24790414,0.6555668,0.71708,0.29395598,0.63197005,0.7314651,0.2956405,0.6144554,0.7176042,0.29451025,0.6311164,0.7454208,0.29732397,0.59661233,0.6786621,0.2900147,0.674766,0.69957966,0.26162204,0.66493773,0.71480644,0.2633231,0.6478523,0.7160722,0.278675,0.6399851,0.68893355,0.27565023,0.6703637,0.69903237,0.2612239,0.6656694,0.65243214,0.26355654,0.7105422,0.6527541,0.2639305,0.71010756,0.65291446,0.26441637,0.7097793,0.652977,0.26501703,0.7094977,0.6525,0.2661032,0.70953006,0.65217507,0.26567927,0.7099875,0.6521912,0.26421082,0.71052045,0.65881145,0.23639102,0.71420354,0.65954924,0.23691095,0.7133499,0.6598516,0.23795907,0.7127211,0.6596823,0.23801279,0.71285987,0.6591521,0.23773628,0.7134423,0.65908104,0.24107917,0.7123855,0.65918416,0.24143896,0.71216816,0.65920323,0.2421294,0.711916,0.65859413,0.24306442,0.7121611,0.6579187,0.24205583,0.7131284,0.6588419,0.24115773,0.71258,0.7870424,0.21877019,0.57680494,0.7855675,0.21997175,0.5783564,0.78449535,0.22011466,0.57975554,0.7836025,0.21922591,0.5812979,0.7834206,0.21871121,0.5817366,0.7833603,0.21817482,0.5820192,0.78283083,0.21700454,0.5831679,0.7850224,0.21516727,0.5808984,0.7862744,0.2137513,0.57972664,0.7875619,0.21335417,0.57812303,0.7915592,0.21406431,0.5723726,0.7927116,0.21553013,0.5702236,0.7940149,0.21615496,0.56817025,0.7942506,0.21683894,0.5675798,0.79476523,0.21733885,0.56666756,0.79120713,0.21923336,0.57090104,0.78853375,0.21915519,0.5746177,0.7876992,0.21856569,0.5759852,0.84405917,0.38242593,-0.3759183,0.84512144,0.38152495,-0.37444425,0.8452771,0.3810073,-0.37462002,0.8452385,0.38050532,-0.37521666,0.8445458,0.38068104,-0.37659574,0.84401226,0.3802382,-0.37823576,0.84347874,0.37938434,-0.38027775,0.8431669,0.3798645,-0.38048992,0.84285605,0.3806472,-0.3803963,0.84242284,0.38100964,-0.38099274,0.84224004,0.3816738,-0.3807319,0.842387,0.38199982,-0.38007924,0.84208906,0.38267472,-0.38006058,0.8420042,0.3832762,-0.37964234,0.8444864,0.3777626,-0.3796552,0.84422946,0.37801117,-0.37997922,0.8440146,0.3783827,-0.38008663,0.8438117,0.37886786,-0.38005403,0.8440061,0.37940165,-0.37908837,0.84438246,0.37933072,-0.37832046,0.8444983,0.3789452,-0.37844837,0.8465661,0.37800962,-0.37474608,0.8457764,0.3780104,-0.37652418,0.8453352,0.37909347,-0.37642622,0.84473014,0.3799954,-0.37687474,0.8461168,0.37913758,-0.37462124,0.8466289,0.37851447,-0.37409404,0.84667426,0.3781713,-0.3743384,0.45646304,0.57558167,0.67848897,0.45573795,0.57774425,0.677137,0.46015203,0.5820308,0.6704478,0.4608428,0.5830033,0.6691271,0.4593372,0.5825386,0.67056555,0.45805117,0.58169675,0.6721741,0.45725197,0.5813522,0.67301583,0.45614275,0.58033305,0.674646,0.445653,0.57868636,0.68301946,0.44330606,0.579145,0.6841571,0.44374058,0.5775453,0.6852268,0.44254285,0.57585555,0.68742,0.44794124,0.5784486,0.6817227,0.4437174,0.57615507,0.6864111,0.44976726,0.57836866,0.6805873,0.4558388,0.5764664,0.6781574,0.4514315,0.57862866,0.6792631,0.97068,0.16710982,0.172785,0.97083735,0.16729635,0.17171724,0.97052443,0.16813062,0.1726685,0.970274,0.16919743,0.1730335,0.9702158,0.16925205,0.17330633,0.97020334,0.16908075,0.17354305,0.9702215,0.1687413,0.17377155,0.97033894,0.16825496,0.1735877,0.9724606,0.15600342,0.17315662,0.9721693,0.15730889,0.17361079,0.97208375,0.15756729,0.17385548,0.9716357,0.15823708,0.17574139,0.9717888,0.1576371,0.17543389,0.9720706,0.1568973,0.17453367,0.97064877,0.1703379,0.16978216,0.97034734,0.17042777,0.17140715,0.97036016,0.17008264,0.1716771,0.97046787,0.16921763,0.17192309,0.9706689,0.16847844,0.17151335,0.9710097,0.16762741,0.17041498,0.97174424,0.16696279,0.16684318,0.97260886,0.16471978,0.16401005,0.972437,0.16471131,0.16503468,0.9723352,0.16445251,0.16589044,0.9720733,0.16495763,0.1669202,0.9717737,0.16570395,0.16792272,0.9713369,0.16638719,0.16976424,0.97261804,0.15808313,0.17036405,0.97273904,0.15469685,0.17276488,0.972876,0.15378663,0.17280631,0.97332364,0.15111421,0.17264287,0.9737636,0.14628285,0.17431514,0.97397447,0.1444262,0.1746853,0.974346,0.14001781,0.17619564,0.9737473,0.14425668,0.17608558,0.9739093,0.1423236,0.17676131,0.97417647,0.14030805,0.17690061,0.974975,0.13565472,0.1761291,0.97555935,0.13200039,0.17566994,0.9773943,0.118911594,0.17481548,0.9781517,0.114668734,0.17340808,0.9787602,0.11085148,0.17245458,0.97942007,0.10718679,0.17101873,0.9801906,0.10469796,0.16812135,0.9809613,0.10364953,0.16423053,0.9815548,0.1041648,0.16031149,0.9820387,0.1060623,0.15604757,0.9827214,0.10806619,0.1502678,0.9828446,0.1087092,0.14899251,0.98315316,0.11190501,0.14452365,0.9831735,0.113408975,0.14320703,0.98310846,0.11518516,0.14223257,0.98294884,0.11764477,0.14132014,0.98275626,0.120158814,0.14054197,0.9825447,0.12222368,0.14024006,0.9819613,0.12686256,0.14020635,0.98154813,0.12928739,0.14088315,0.98137957,0.12991695,0.14147702,0.9808444,0.13268879,0.14261165,0.98059666,0.13371763,0.14335233,0.98051876,0.13417527,0.143457,0.98045385,0.13470484,0.14340487,0.98032516,0.13541237,0.1436181,0.9788327,0.14172792,0.14764722,0.97866726,0.14289208,0.14762226,0.97799975,0.14662589,0.14838257,0.97779584,0.14732726,0.14903034,0.97761154,0.14752616,0.15003903,0.97729,0.14866231,0.1510094,0.9771462,0.14968017,0.15093423,0.97695214,0.15060453,0.15127082,0.9757525,0.15527274,0.15426444,0.97558796,0.15569197,0.15488102,0.9752183,0.15685692,0.15602908,0.9750066,0.15791479,0.156285,0.97372985,0.16274655,0.15926017,0.97199744,0.1674972,0.16482025,0.9711937,0.17014644,0.1668322,0.9709436,0.1703816,0.16804345,0.9717638,0.16424307,0.16940874,0.9731999,0.15197085,0.17258836,0.97452474,0.14003716,0.1751886,0.9789389,0.14122768,0.14742261,0.9754303,0.1559429,0.15561974,0.9722927,0.16588724,0.16470672,0.97452277,0.13949206,0.17563416,0.9774306,0.14790462,0.15084347,0.9721404,0.16206631,0.16934471,0.9791569,0.12665503,0.15877718,0.9724086,0.1600528,0.16971931,0.9789457,0.12884918,0.15831406,0.9780059,0.13888057,0.15561701,0.97939855,0.1368194,0.1485222,0.8103938,0.31835428,-0.49184594,0.8114566,0.31921208,-0.4895321,0.8118929,0.31918544,-0.48882562,0.81310546,0.31871292,-0.48711562,0.81352556,0.3189415,-0.4862638,0.81396204,0.31901586,-0.48548388,0.81512,0.31806508,-0.48416322,0.816227,0.3174347,-0.4827097,0.81701636,0.3151314,-0.48288342,0.8177931,0.31339684,-0.4826976,0.8186561,0.3117155,-0.4823231,0.822316,0.30300504,-0.4816476,0.8226699,0.30129012,-0.4821187,0.82266605,0.299679,-0.48312852,0.8229204,0.29865605,-0.48332882,0.82352996,0.29687357,-0.4833885,0.82425857,0.29387495,-0.48397866,0.824946,0.2916308,-0.48416492,0.82653266,0.2883945,-0.48339677,0.82717836,0.28644857,-0.48344922,0.8276709,0.28450474,-0.483754,0.8280547,0.28234714,-0.48436087,0.8311587,0.27674794,-0.4822716,0.8314237,0.27873245,-0.4806692,0.831698,0.27924964,-0.4798938,0.8320578,0.27964076,-0.4790416,0.8322214,0.28045556,-0.47828048,0.8325167,0.28111163,-0.4773806,0.83295304,0.2807223,-0.47684819,0.83330476,0.27991486,-0.4767083,0.8342378,0.27655962,-0.47703457,0.8343732,0.27577904,-0.47724974,0.83428156,0.27483115,-0.47795612,0.8340438,0.2740559,-0.4788156,0.8340584,0.27291328,-0.4794423,0.8353716,0.2660761,-0.48099667,0.83551216,0.2645503,-0.48159367,0.83575773,0.2607497,-0.48323756,0.8362261,0.25845024,-0.48366243,0.8364025,0.2563075,-0.48449704,0.8361255,0.25545233,-0.4854259,0.8354495,0.25559396,-0.486514,0.8351955,0.2553328,-0.48708683,0.8353316,0.25349408,-0.48781344,0.8349278,0.25220948,-0.48916858,0.8350991,0.25026697,-0.48987335,0.8348842,0.24959196,-0.4905835,0.83444595,0.24936916,-0.49144182,0.8339267,0.2493889,-0.4923123,0.8334863,0.25009453,-0.4927,0.8331169,0.25197867,-0.49236476,0.83201283,0.25681657,-0.49173155,0.83179444,0.25571844,-0.49267235,0.8313467,0.255051,-0.49377283,0.8305678,0.25026363,-0.4975191,0.83334416,0.24685027,-0.49457303,0.83391106,0.24605748,-0.49401224,0.8343417,0.24510494,-0.49375853,0.83504146,0.24184243,-0.49418417,0.8355596,0.2386095,-0.49487934,0.8344191,0.24023706,-0.49601513,0.8335081,0.23996904,-0.49767372,0.83315074,0.23788705,-0.49926907,0.83252007,0.23782325,-0.50035036,0.8320174,0.2364903,-0.5018161,0.8312083,0.23582539,-0.5034672,0.82993895,0.2359753,-0.50548697,0.8288155,0.23703928,-0.5068306,0.8229555,0.23833638,-0.5156937,0.8222512,0.23596035,-0.51790506,0.8211411,0.233795,-0.5206411,0.82061046,0.23028108,-0.5230383,0.82076687,0.22937046,-0.523193,0.8202144,0.2282513,-0.524547,0.81932694,0.2292543,-0.5254958,0.81891173,0.23166908,-0.52508384,0.81903076,0.23373623,-0.523981,0.81899697,0.23449756,-0.52369356,0.8194735,0.23610607,-0.52222323,0.8193834,0.23689197,-0.52200866,0.8191376,0.23790766,-0.52193254,0.81903225,0.23887597,-0.52165544,0.816694,0.23746648,-0.5259473,0.8163547,0.2354345,-0.52738565,0.8161406,0.23500545,-0.5279081,0.81405246,0.23179676,-0.5325306,0.8140858,0.23095861,-0.5328437,0.8137145,0.2286155,-0.53441906,0.8141488,0.2266347,-0.5346012,0.81413865,0.22570075,-0.53501165,0.8133202,0.225514,-0.5363335,0.81160915,0.22345029,-0.53977823,0.8106263,0.22319768,-0.5413574,0.8099712,0.22334479,-0.54227644,0.8093072,0.22377168,-0.54309136,0.8085499,0.22352919,-0.5443177,0.80941814,0.2216332,-0.54380226,0.8099489,0.21967077,-0.5438083,0.80945206,0.21805754,-0.54519576,0.8086056,0.21758261,-0.54663956,0.8071546,0.22139803,-0.54725164,0.8063127,0.22555964,-0.54679304,0.80702734,0.22549403,-0.5457649,0.8078895,0.22664632,-0.54400927,0.8086145,0.22694005,-0.5428083,0.8094645,0.22683057,-0.5415857,0.80889976,0.22820812,-0.5418507,0.8086164,0.22953127,-0.54171485,0.8088496,0.23095861,-0.5407592,0.8091644,0.23228423,-0.5397194,0.80914164,0.23691338,-0.5377377,0.8072086,0.2372065,-0.54050654,0.8064552,0.23852684,-0.54104984,0.80672073,0.23916236,-0.54037297,0.8074019,0.23996244,-0.53899926,0.80775154,0.24017757,-0.5383792,0.8082279,0.24020234,-0.53765285,0.80986655,0.24135046,-0.53466445,0.8101585,0.24240722,-0.53374344,0.8105734,0.24296613,-0.53285855,0.8110742,0.24234186,-0.5323806,0.81144536,0.24150594,-0.53219473,0.8137769,0.2393038,-0.5296234,0.81344867,0.24027433,-0.5296881,0.8132446,0.24124368,-0.529561,0.81334084,0.2432736,-0.52848333,0.81369406,0.24510574,-0.5270912,0.81418616,0.24616644,-0.52583545,0.8149339,0.24674295,-0.5244051,0.8160384,0.24729545,-0.52242345,0.8172616,0.24737723,-0.520469,0.8184463,0.24638781,-0.519075,0.81962556,0.24515198,-0.5177977,0.82009,0.24488512,-0.5171882,0.8205285,0.2444282,-0.51670855,0.82063425,0.2438125,-0.51683164,0.8202255,0.24267922,-0.5180125,0.8202807,0.24185735,-0.5183095,0.8208742,0.24157453,-0.51750094,0.82120067,0.24073924,-0.5173722,0.82433826,0.24476698,-0.5104464,0.82422894,0.24588567,-0.5100852,0.82423615,0.2500673,-0.5080365,0.8236818,0.2534496,-0.50725883,0.82286215,0.25438756,-0.5081189,0.8228424,0.25486228,-0.50791293,0.823203,0.258805,-0.50532824,0.82332,0.2624638,-0.5032464,0.82343936,0.26331067,-0.5026083,0.82289857,0.2651362,-0.5025343,0.8223819,0.26583627,-0.50301003,0.8216814,0.26739848,-0.5033267,0.8204419,0.26930958,-0.50432867,0.82000977,0.27009338,-0.50461227,0.8197649,0.27103767,-0.50450385,0.8197201,0.27191123,-0.5041064,0.81477344,0.2782856,-0.50862694,0.81323516,0.27873656,-0.51083714,0.8118405,0.28152952,-0.5115235,0.811387,0.2829308,-0.51146966,0.80796415,0.28941023,-0.5132598,0.80686927,0.29220542,-0.51339847,0.80628914,0.2933397,-0.5136629,0.80582845,0.29445487,-0.5137479,0.80615646,0.29495975,-0.512943,0.8065963,0.29534325,-0.51203007,0.8064645,0.29634783,-0.5116571,0.8062131,0.297488,-0.5113916,0.8062706,0.29812256,-0.5109312,0.8038554,0.311624,-0.50666255,0.8028715,0.31290314,-0.5074338,0.8022858,0.31432894,-0.50747883,0.8020374,0.3156951,-0.5070233,0.8020791,0.31662327,-0.5063781,0.802275,0.3173151,-0.50563407,0.8029979,0.31708232,-0.5046317,0.8083547,0.31525925,-0.49716637,0.8355709,0.26268178,-0.48251382,0.8327723,0.2548738,-0.49145657,0.8305813,0.25475025,-0.49521405,0.82849646,0.23837703,-0.5067247,0.82057375,0.23112853,-0.52272195,0.81903243,0.24000296,-0.5211377,0.8141838,0.23245665,-0.532042,0.8067121,0.22537614,-0.54627943,0.82297355,0.2552686,-0.5074963,0.8167521,0.27693626,-0.50618404,0.80414855,0.31517994,-0.5039908,0.8282667,0.2793536,-0.4857324,0.8339892,0.27353948,-0.47920576,0.8300218,0.25402415,-0.4965235,0.8177992,0.24035706,-0.5229082,0.8087639,0.22392957,-0.543835,0.8097361,0.2339218,-0.53815246,0.80988294,0.23591818,-0.5370589,0.813947,0.2383431,-0.5297951,0.81792253,0.2758847,-0.50486666,0.80687916,0.29896185,-0.5094779,0.804665,0.3100834,-0.50632244,0.80469066,0.3144552,-0.5035782,0.8074951,0.31449077,-0.49904627,0.8300682,0.25135922,-0.49780056,0.8278686,0.23924847,-0.50733984,0.8209609,0.23332267,-0.521137,0.81115365,0.24084754,-0.5329373,0.8240473,0.25175092,-0.5075111,0.8197821,0.27272955,-0.50356317,0.8285256,0.27833632,-0.4858747,0.8309351,0.2764368,-0.48283488,0.81369257,0.23768997,-0.5304789,0.8232704,0.26428393,-0.50237423,0.8063155,0.30497214,-0.50680107,0.8065327,0.3139163,-0.5009606,0.8299781,0.2764998,-0.48444217,0.82982844,0.2528304,-0.4974551,0.8190466,0.2745173,-0.5037886,0.8067173,0.30344114,-0.5070805,0.8056876,0.3137464,-0.50242484,0.8293591,0.27675208,-0.4853574,0.82634234,0.24049845,-0.50923353,0.82506746,0.24086583,-0.5111236,0.8115824,0.23915078,-0.5330487,0.8069907,0.29962134,-0.5089137,0.8125015,0.23764111,-0.53232324,0.8069118,0.30196527,-0.50765187,0.81728405,0.2960922,-0.4943442,0.8289102,0.27747506,-0.48571122,0.82584673,0.24081364,-0.50988823,0.81253225,0.29419386,-0.5032308,0.8174838,0.29566407,-0.4942702,0.8276119,0.2591911,-0.4978739,0.82535064,0.24100466,-0.5106006,0.81474143,0.2891117,-0.50260407,0.8273677,0.25928608,-0.49823028,0.81821316,0.24065235,-0.5221242,0.8187123,0.24073589,-0.52130264,0.8268323,0.26115856,-0.49814105,0.82679075,0.26070192,-0.4984492,0.82423276,0.24384972,-0.5110555,0.82394433,0.24299006,-0.5119293,0.8217995,0.24078229,-0.5164005,0.8235755,0.2422675,-0.51286435,0.8223312,0.24102618,-0.51543933,0.87797374,0.14773768,-0.4553413,0.87748754,0.14800578,-0.45619065,0.87704754,0.14847098,-0.45688507,0.8763644,0.15025993,-0.45761043,0.8754192,0.15087828,-0.45921335,0.87449855,0.15175441,-0.4606765,0.8734586,0.15295543,-0.46224955,0.8724559,0.15431549,-0.46368894,0.8715541,0.15615073,-0.46476924,0.8707441,0.15818164,-0.4655998,0.8698066,0.15932931,-0.46695888,0.868742,0.15990642,-0.46874014,0.86790854,0.16084598,-0.46996102,0.8671477,0.16216642,-0.4709108,0.86638683,0.16371766,-0.47177374,0.8638225,0.16963835,-0.47437686,0.86372995,0.17127757,-0.47395623,0.8617773,0.17353563,-0.47668147,0.85956955,0.17469789,-0.48022985,0.85923713,0.1753784,-0.48057678,0.8568366,0.17973618,-0.4832452,0.8557708,0.18016455,-0.48497117,0.85523057,0.18064657,-0.48574418,0.8541966,0.18224138,-0.48696646,0.85407573,0.18312274,-0.48684767,0.8542752,0.1900066,-0.4838505,0.8537099,0.19158858,-0.4842244,0.8537938,0.19254953,-0.48369503,0.8536154,0.19349521,-0.48363245,0.8530739,0.19537786,-0.4838309,0.8529936,0.19617759,-0.48364905,0.8533344,0.19674075,-0.48281825,0.85379404,0.19583999,-0.48237175,0.85560954,0.19137271,-0.48094568,0.85607594,0.19035722,-0.4805186,0.8568194,0.18815555,-0.4800605,0.85903215,0.18067835,-0.4789771,0.85962427,0.18027605,-0.47806546,0.8601802,0.17972188,-0.47727352,0.86254585,0.17545809,-0.47458303,0.8634997,0.17424986,-0.47329187,0.8657357,0.17010026,-0.47070974,0.8677813,0.16681658,-0.46811092,0.87029505,0.16240768,-0.4649841,0.87159497,0.1608014,-0.46310374,0.8720159,0.16076432,-0.4623236,0.87241936,0.16058184,-0.46162525,0.87389404,0.15812773,-0.45967898,0.8754233,0.15588814,-0.4575292,0.8760861,0.1547549,-0.45664427,0.87730217,0.15241055,-0.45509547,0.8779657,0.15149494,-0.45412073,0.8791115,0.14851649,-0.45288607,0.8795209,0.14706172,-0.45256585,0.8798026,0.14551805,-0.4525174,0.87673163,0.14945951,-0.45716897,0.86284065,0.17277694,-0.47503066,0.862269,0.17590451,-0.4749209,0.8789063,0.14676669,-0.45385373,0.8589871,0.17626265,-0.48070017,0.85735834,0.17927085,-0.48249212,0.8567899,0.18654075,-0.48074284,0.8585895,0.18119632,-0.47957486,0.87122434,0.16108318,-0.46370298,0.85827506,0.17797288,-0.48134136,0.85421944,0.18579303,-0.4855821,0.86336344,0.17220615,-0.4742874,0.85683626,0.18544547,-0.48108375,0.85816824,0.18184589,-0.48008263,0.85736936,0.18350561,-0.48087776,0.8261557,0.20133577,-0.526242,0.82678574,0.2028248,-0.52467835,0.8275682,0.204018,-0.52297944,0.82917273,0.20543689,-0.5198733,0.8295724,0.20612575,-0.5189623,0.83015937,0.20615911,-0.5180095,0.830721,0.2054244,-0.5174007,0.83113766,0.20433997,-0.51716083,0.8307881,0.20378354,-0.5179415,0.82974946,0.20319284,-0.51983505,0.82965994,0.20181158,-0.5205155,0.8309922,0.19638565,-0.5204658,0.8317288,0.19247676,-0.52074933,0.83233804,0.19045085,-0.52052075,0.83315104,0.18861002,-0.51989007,0.8335961,0.18665037,-0.51988375,0.8336523,0.184613,-0.52052075,0.83446616,0.1821265,-0.5200925,0.8344868,0.18173605,-0.520196,0.83441526,0.18128097,-0.5204694,0.8340654,0.18151988,-0.5209467,0.83333856,0.18247685,-0.5217749,0.8326542,0.18353161,-0.522497,0.8317123,0.18434411,-0.5237097,0.828546,0.1855276,-0.5282907,0.82685137,0.18739715,-0.5302821,0.82589155,0.18778977,-0.53163725,0.82554036,0.18874805,-0.53184336,0.8246266,0.1911938,-0.5323869,0.82366973,0.19180514,-0.5336469,0.8227808,0.19280453,-0.53465706,0.8220025,0.19418076,-0.53535575,0.8213344,0.19572051,-0.5358201,0.82088387,0.19703409,-0.5360291,0.8205407,0.19838484,-0.5360562,0.8202526,0.19997582,-0.535906,0.82075465,0.20007685,-0.53509915,0.82279384,0.1991516,-0.5323052,0.8223882,0.19986895,-0.5326632,0.8230582,0.20100357,-0.5311994,0.824057,0.20121317,-0.52956903,0.82523435,0.20046507,-0.52801716,0.8335571,0.18564731,-0.5203053,0.8229861,0.19836403,-0.53230214,0.82538503,0.18980165,-0.5317093,0.82512367,0.19063832,-0.53181577,0.82956606,0.20246013,-0.52041334,0.82761514,0.15735434,-0.5387883,0.82696736,0.15753952,-0.539728,0.82633156,0.15794928,-0.5405813,0.8259121,0.15852652,-0.5410531,0.82507825,0.16017894,-0.5418381,0.82469094,0.16113788,-0.5421434,0.8245731,0.16190481,-0.5420941,0.8246072,0.16258517,-0.54183865,0.825504,0.16687451,-0.5391623,0.8253776,0.1677896,-0.53907186,0.82511663,0.1687413,-0.53917426,0.8247514,0.17131457,-0.5389216,0.82434654,0.1725016,-0.5391622,0.82327825,0.17466268,-0.540098,0.82282907,0.17578787,-0.5404173,0.82091147,0.18153161,-0.5414338,0.81977063,0.1836481,-0.5424476,0.8192268,0.18501508,-0.54280466,0.8185278,0.18705148,-0.54316115,0.8184798,0.18765664,-0.5430247,0.8186773,0.18949044,-0.54208934,0.8208757,0.19070525,-0.53832567,0.8212178,0.19061492,-0.5378357,0.82327926,0.18929788,-0.5351426,0.8237327,0.18886605,-0.5345971,0.8239985,0.18800157,-0.53449214,0.82523066,0.18399483,-0.53398526,0.8258311,0.18315217,-0.5333462,0.8263231,0.1823008,-0.5328758,0.8292537,0.17333089,-0.5313142,0.83041686,0.17329061,-0.5295075,0.83093995,0.17298676,-0.52878577,0.8315295,0.17186184,-0.52822554,0.831954,0.17060584,-0.5279642,0.8321713,0.16838433,-0.5283348,0.831288,0.16475163,-0.53086454,0.83094007,0.16406998,-0.53161985,0.8305158,0.16350421,-0.53245646,0.8288489,0.16194527,-0.5355214,0.8285855,0.15829523,-0.5370183,0.82825947,0.15744863,-0.5377697,0.8218612,0.17923813,-0.54075676,0.82420105,0.1867936,-0.5346034,0.8262828,0.18043774,-0.53357196,0.82448125,0.18563806,-0.5345738,0.8286309,0.17347857,-0.53223675,0.829605,0.16283241,-0.53407973,0.8264436,0.17852795,-0.5339651,0.826863,0.1757962,-0.5342221,0.82705647,0.1751418,-0.53413755,0.8073048,0.19668312,-0.55639434,0.8074135,0.19757204,-0.5559215,0.80769324,0.19806586,-0.55533916,0.8083242,0.19863628,-0.55421615,0.808756,0.19962424,-0.55323046,0.80911726,0.19996998,-0.55257696,0.80947477,0.1991315,-0.55235606,0.80942446,0.19812089,-0.552793,0.8094246,0.1933841,-0.55446774,0.8097222,0.18949956,-0.5553736,0.8092183,0.18917158,-0.5562192,0.8069324,0.18536171,-0.56080407,0.8081657,0.18120137,-0.5603875,0.8079482,0.17927507,-0.56132007,0.8080629,0.17836526,-0.5614447,0.8084409,0.17653617,-0.56147873,0.80821145,0.17596154,-0.5619891,0.80716616,0.17529625,-0.5636967,0.8063631,0.1742171,-0.56517875,0.8061874,0.17562932,-0.56499225,0.8054584,0.17920458,-0.5649093,0.80512,0.17739923,-0.5659604,0.80482525,0.17690353,-0.5665346,0.80455697,0.17832842,-0.56646883,0.8035406,0.17818087,-0.5679561,0.8032788,0.17893471,-0.56808937,0.803255,0.17965397,-0.56789595,0.8036007,0.18150136,-0.5668184,0.803362,0.18369158,-0.5664512,0.8034564,0.18459378,-0.5660238,0.8036933,0.18540448,-0.5654223,0.80402595,0.18603666,-0.56474125,0.80455124,0.18713602,-0.5636288,0.80384207,0.18998483,-0.5636876,0.8032951,0.19312562,-0.5634,0.803258,0.19443499,-0.56300235,0.8034552,0.19519137,-0.562459,0.8037544,0.1971928,-0.5613323,0.8047389,0.19768153,-0.5597476,0.8092467,0.197156,-0.55339795,0.80616516,0.17703436,-0.56458527,0.80473423,0.17769194,-0.56641716,0.8059074,0.19632381,-0.558543,0.80795956,0.19016144,-0.5577095,0.80590117,0.1799625,-0.56403613,0.8067256,0.19608489,-0.5574447,0.80750656,0.19015722,-0.55836666,0.80681473,0.18621165,-0.5606918,0.80443996,0.18654907,-0.5639821,0.806989,0.18874805,-0.55959177,0.8067842,0.18706237,-0.5604524,0.79685515,0.21552432,-0.56442106,0.7973005,0.21691458,-0.5632583,0.7980394,0.21767582,-0.5619167,0.80387366,0.2168863,-0.55384785,0.8063501,0.2176209,-0.5499461,0.8065678,0.2148002,-0.55073524,0.8064907,0.21207522,-0.55190283,0.80618167,0.21051924,-0.5529492,0.8055981,0.20926349,-0.55427486,0.80525637,0.20885268,-0.55492586,0.8043417,0.20826845,-0.5564699,0.80389214,0.20677368,-0.5576756,0.8035536,0.2061416,-0.5583971,0.8034375,0.20538601,-0.55884236,0.80304533,0.20407717,-0.5598845,0.8026038,0.20372099,-0.5606469,0.8019924,0.20389698,-0.56145716,0.802517,0.20173569,-0.5614884,0.8033538,0.20036662,-0.56078154,0.80330294,0.1990113,-0.5613367,0.80282015,0.19665226,-0.5628568,0.8024441,0.19572963,-0.5637139,0.8018316,0.19538194,-0.5647052,0.8014045,0.19329369,-0.56602865,0.80063957,0.1932461,-0.5671263,0.7995285,0.19273762,-0.56886417,0.79752177,0.19307053,-0.57156175,0.7970904,0.19287811,-0.572228,0.7966724,0.19165878,-0.573219,0.7964723,0.19206955,-0.57335955,0.7966743,0.19363159,-0.572553,0.7972493,0.19481443,-0.57135004,0.79757154,0.19559507,-0.5706332,0.7971849,0.19634053,-0.57091737,0.7971903,0.19728467,-0.5705843,0.797585,0.20098102,-0.5687397,0.7973287,0.20202525,-0.56872904,0.79719186,0.20302254,-0.5685657,0.79689574,0.2071013,-0.5675088,0.796031,0.20884345,-0.56808376,0.7958889,0.21022928,-0.56777155,0.79540205,0.2111781,-0.5681016,0.79575884,0.21221092,-0.56721634,0.796376,0.21277228,-0.56613886,0.79691035,0.21290717,-0.56533575,0.7971381,0.21340251,-0.5648276,0.7968668,0.21451727,-0.5647883,0.80118686,0.21702862,-0.55767214,0.8021428,0.20282738,-0.5616297,0.7977735,0.1948889,-0.57059246,0.7973481,0.20401041,-0.5679928,0.7975891,0.20012438,-0.5690359,0.8361281,0.2330973,-0.49654344,0.836507,0.23340473,-0.49576026,0.83801585,0.23382571,-0.493006,0.8386116,0.2337345,-0.49203536,0.8391831,0.23298624,-0.49141556,0.8395175,0.2319576,-0.491331,0.83913416,0.231776,-0.4920709,0.83857816,0.23163754,-0.49308282,0.8386478,0.23023711,-0.49362004,0.8385857,0.22937126,-0.49412847,0.838202,0.22850187,-0.49518105,0.8376613,0.22782649,-0.49640578,0.8373627,0.22443783,-0.49844903,0.8377502,0.22224483,-0.49878037,0.8378514,0.22138803,-0.49899134,0.8378215,0.22066326,-0.49936247,0.837455,0.21990848,-0.50030935,0.83727366,0.21782136,-0.50152427,0.8374936,0.21663761,-0.5016699,0.8373508,0.21552838,-0.5023855,0.83687353,0.21405268,-0.50380963,0.836634,0.2136947,-0.5043592,0.83653337,0.213092,-0.5047808,0.8366102,0.21223597,-0.5050141,0.8363251,0.2119445,-0.5056084,0.83566266,0.21164542,-0.50682753,0.83501774,0.2126332,-0.5074766,0.8342997,0.21325354,-0.5083964,0.83400655,0.21304029,-0.5089665,0.8337639,0.21406606,-0.5089336,0.8335139,0.21454382,-0.5091419,0.8334563,0.21512815,-0.50898963,0.8327772,0.21657524,-0.5094873,0.83198565,0.21787454,-0.5102259,0.83162004,0.21879357,-0.5104288,0.8308125,0.22528392,-0.50891817,0.83014494,0.22646205,-0.5094844,0.8301435,0.22718164,-0.5091662,0.83115757,0.22946328,-0.50648165,0.83142406,0.23130842,-0.50520337,0.8319418,0.23229665,-0.503896,0.8328238,0.23142949,-0.5028369,0.83310026,0.23193023,-0.50214773,0.83351594,0.23223531,-0.50131625,0.8337007,0.23320743,-0.50055707,0.8342191,0.23346362,-0.49957305,0.83868617,0.2318399,-0.49280402,0.8346355,0.213092,-0.50791276,0.8315096,0.22217998,-0.50914425,0.8306647,0.22815415,-0.50787973,0.83571583,0.23295309,-0.49730465,0.837255,0.21892408,-0.5010752,0.83123934,0.22378749,-0.50888145,0.8375423,0.22717166,-0.49690634,0.79827493,0.16196457,-0.5801074,0.7985504,0.16378494,-0.5792165,0.79913723,0.16527367,-0.57798284,0.80115914,0.16770639,-0.5744725,0.8021257,0.16950653,-0.5725923,0.80262685,0.16946623,-0.57190144,0.80340886,0.16795929,-0.57124776,0.8033682,0.16118835,-0.57325196,0.80535424,0.15629308,-0.571819,0.8065494,0.15689236,-0.5699675,0.8069278,0.15690237,-0.56942874,0.8088511,0.15454704,-0.5673403,0.8097185,0.15568772,-0.5657891,0.81042266,0.15595631,-0.56470585,0.8111486,0.15512459,-0.56389207,0.81144947,0.15426414,-0.56369525,0.8138333,0.14820042,-0.56188256,0.81532246,0.1496448,-0.5593351,0.8157889,0.14953284,-0.5586845,0.8163336,0.14883502,-0.5580749,0.8167612,0.14795521,-0.55768305,0.819016,0.14265421,-0.55575407,0.82067627,0.14192027,-0.55348814,0.82137346,0.14139219,-0.5525884,0.82322973,0.14017975,-0.5501294,0.822088,0.14168072,-0.5514506,0.8217668,0.14243568,-0.5517349,0.8215385,0.14566985,-0.55123025,0.8215274,0.14664783,-0.5509874,0.8219137,0.14863272,-0.5498784,0.8227458,0.14989091,-0.54829013,0.8237995,0.15035433,-0.54657847,0.8243418,0.1509424,-0.5455978,0.8249063,0.15131807,-0.5446397,0.8266048,0.14852497,-0.54283047,0.8280376,0.14808583,-0.5407627,0.82859725,0.14747806,-0.5400712,0.8291249,0.14666894,-0.53948134,0.8295118,0.14605431,-0.5390532,0.82977843,0.14532416,-0.5388402,0.8298881,0.14413011,-0.5389919,0.8320699,0.14148329,-0.53632283,0.8332994,0.14147326,-0.53441316,0.83415985,0.14078559,-0.5332511,0.83613956,0.13996635,-0.53035843,0.8366345,0.13966417,-0.529657,0.8376708,0.1382244,-0.5283953,0.8389704,0.13589707,-0.5269351,0.83917046,0.13511685,-0.5268172,0.83942634,0.13329278,-0.52687436,0.8412956,0.12669688,-0.5255184,0.8420529,0.12532473,-0.5246338,0.8424686,0.123171814,-0.5244763,0.84211206,0.12131864,-0.5254798,0.8416011,0.120632544,-0.52645546,0.8409792,0.12037456,-0.52750725,0.8405066,0.12099713,-0.52811766,0.84009814,0.12194209,-0.52855015,0.83910084,0.12481402,-0.52946323,0.83815235,0.12776105,-0.53026193,0.8365354,0.13158396,-0.531878,0.8361443,0.13293041,-0.53215796,0.83302,0.13437468,-0.5366761,0.83308715,0.13153835,-0.53727406,0.8329162,0.13103302,-0.53766245,0.83221954,0.13105418,-0.53873503,0.8315054,0.13132705,-0.5397703,0.8308142,0.1325047,-0.54054636,0.8301957,0.1339937,-0.5411291,0.8299353,0.1327741,-0.54182875,0.82992846,0.13182716,-0.5420704,0.82975566,0.13103563,-0.54252666,0.8288958,0.12990513,-0.5441107,0.827967,0.12892567,-0.5457553,0.8266598,0.1333873,-0.54666394,0.8265221,0.13416347,-0.5466822,0.8241186,0.13546303,-0.54998016,0.8237475,0.13472338,-0.5507173,0.8219357,0.13337466,-0.5537444,0.8214051,0.12490202,-0.55650073,0.822218,0.12384587,-0.5555355,0.82301193,0.121760234,-0.5548205,0.82316685,0.12065112,-0.55483294,0.82321465,0.11949547,-0.55501217,0.8229651,0.11609087,-0.5561037,0.8231727,0.11376796,-0.55627656,0.8231052,0.11154595,-0.55682606,0.8220661,0.10857624,-0.558944,0.82042295,0.106606364,-0.56173056,0.81827164,0.10449701,-0.56525373,0.8155719,0.102364406,-0.56952965,0.81511,0.10219744,-0.5702204,0.8145036,0.10228306,-0.5710709,0.8140444,0.10290098,-0.5716144,0.812858,0.1053437,-0.5728565,0.8121283,0.10323667,-0.5742732,0.81261736,0.10120045,-0.57394385,0.8126128,0.10030843,-0.5741068,0.812319,0.09814348,-0.5748963,0.81177706,0.09756501,-0.57575953,0.8105854,0.098698914,-0.5772433,0.80875814,0.10227452,-0.57918066,0.8079908,0.104158044,-0.5799155,0.80759186,0.10843309,-0.57968754,0.80804515,0.11260959,-0.57825774,0.8082324,0.11319637,-0.5778814,0.8088977,0.11448162,-0.5766962,0.8093834,0.1150607,-0.5758989,0.8075939,0.122156836,-0.5769487,0.80644614,0.12368936,-0.5782262,0.80615133,0.1246508,-0.57843083,0.80418235,0.12764104,-0.5805158,0.8037885,0.12389579,-0.58187103,0.80332,0.12244446,-0.58282447,0.8032366,0.12089146,-0.5832634,0.80281466,0.11915199,-0.5842015,0.8026203,0.11724878,-0.58485335,0.8027127,0.11302368,-0.5855579,0.802524,0.11142654,-0.58612233,0.8021811,0.10990197,-0.5868791,0.80158246,0.1129153,-0.58712494,0.80098146,0.11725813,-0.5870939,0.80127674,0.11931438,-0.586276,0.80095804,0.11998106,-0.58657545,0.8001822,0.11983052,-0.58766407,0.7984713,0.12208325,-0.58952457,0.7970795,0.124914676,-0.59081346,0.7965933,0.12616003,-0.59120446,0.7963761,0.12749986,-0.59120965,0.79593194,0.13133556,-0.59096813,0.79592943,0.13359262,-0.5904654,0.79610455,0.1344152,-0.59004235,0.7969423,0.13791883,-0.58809984,0.796186,0.14174397,-0.58821464,0.79605705,0.14267781,-0.5881634,0.79661596,0.14481828,-0.5868822,0.7964412,0.14753123,-0.58644354,0.79717445,0.14848784,-0.5852044,0.7984243,0.1500063,-0.58310944,0.79747725,0.15119669,-0.58409727,0.79693925,0.15201892,-0.58461785,0.79614526,0.15375717,-0.58524466,0.79606426,0.15560776,-0.5848656,0.7968297,0.15858714,-0.5830202,0.7964739,0.1612026,-0.582789,0.7975846,0.16092752,-0.58134437,0.8074944,0.15509091,-0.5691218,0.82280356,0.14002194,-0.5508069,0.82561535,0.149805,-0.54398334,0.8300883,0.14298315,-0.53898907,0.84062123,0.12816504,-0.52624106,0.8264718,0.13496068,-0.54656196,0.8245495,0.13602285,-0.54919577,0.82093126,0.1256587,-0.5570294,0.80594105,0.12571962,-0.5784925,0.7982457,0.14884597,-0.58365107,0.7967546,0.15782309,-0.58333015,0.8040723,0.15668857,-0.5735123,0.80796105,0.15417144,-0.56870914,0.8174291,0.14584109,-0.5572612,0.8260836,0.14902468,-0.5434864,0.831022,0.14187649,-0.5378415,0.8300296,0.13341352,-0.54152715,0.81193346,0.10510388,-0.57421005,0.80855477,0.12032971,-0.5759861,0.7970212,0.1362829,-0.58837414,0.798512,0.14946035,-0.5831297,0.8034424,0.15886314,-0.5737968,0.81209975,0.15108475,-0.56361985,0.8126732,0.14889655,-0.5633756,0.833646,0.13526803,-0.5354782,0.8205267,0.12649906,-0.55743515,0.805676,0.12642467,-0.57870805,0.81822664,0.14386196,-0.55660474,0.8201921,0.12762071,-0.5576718,0.81266475,0.10561315,-0.5730811,0.8122485,0.10573525,-0.5736483,0.7965584,0.13497168,-0.5893024,0.8185865,0.14313914,-0.55626196,0.83585936,0.1335149,-0.5324592,0.82622105,0.1358523,-0.5467201,0.82013404,0.1287338,-0.5575014,0.8097718,0.1164964,-0.57506365,0.83458024,0.13507798,-0.5340691,0.8255988,0.13627109,-0.5475554,0.82029444,0.12943102,-0.5571038,0.80939114,0.11833029,-0.57522506,0.80471665,0.12744832,-0.5798172,0.8081873,0.13946928,-0.5721727,0.8101316,0.13815273,-0.5697373,0.82113904,0.13187371,-0.55528367,0.8250674,0.1362626,-0.54835784,0.8242293,0.16372107,-0.5420714,0.8238005,0.16418006,-0.54258424,0.82229537,0.16658466,-0.5441323,0.8201407,0.17230268,-0.54560155,0.8198036,0.17399558,-0.54557097,0.8179061,0.17744194,-0.5473062,0.8169957,0.178076,-0.5484587,0.8160939,0.17908718,-0.5494711,0.81536967,0.18052076,-0.5500769,0.81443644,0.18370423,-0.5504054,0.8141759,0.18683037,-0.54973805,0.8134987,0.18953726,-0.54981405,0.8132226,0.19130169,-0.54961133,0.8131599,0.19263645,-0.5492378,0.8126453,0.19452947,-0.54933214,0.8126691,0.19549313,-0.5489548,0.8135995,0.19401026,-0.5481021,0.8137679,0.19316328,-0.54815114,0.81406426,0.19216478,-0.54806215,0.8144142,0.19150995,-0.5477714,0.81457675,0.19018905,-0.54798985,0.8161513,0.1861983,-0.5470167,0.8176059,0.18330286,-0.545821,0.8179836,0.18178377,-0.54576313,0.8195588,0.1788525,-0.54436666,0.82072395,0.17605965,-0.5435211,0.82237804,0.17308244,-0.54197496,0.82240826,0.1717444,-0.54235464,0.8239003,0.16639142,-0.5417584,0.82421994,0.16485758,-0.54174125,0.81327564,0.19172746,-0.54938453,0.8189846,0.17585322,-0.546205,0.8030358,0.32383034,-0.5002674,0.8021599,0.32485244,-0.5010094,0.80228984,0.3257405,-0.5002242,0.8028563,0.32542872,-0.49951762,0.8033738,0.32452443,-0.4992738,0.8034818,0.32412457,-0.49935982,0.80412644,0.32297143,-0.49906915,0.80393374,0.32264403,-0.49959126,0.8045944,0.33004218,-0.49365988,0.80423754,0.3315348,-0.49324098,0.8051636,0.3321506,-0.49131194,0.805395,0.33182663,-0.4911517,0.80552226,0.33144155,-0.49120295,0.80558836,0.33098322,-0.49140355,0.80509394,0.33007514,-0.49282262,0.7956073,0.34781468,-0.49601808,0.7953823,0.3480136,-0.49623942,0.7942316,0.34970683,-0.49689162,0.79452497,0.3498737,-0.49630484,0.79509175,0.3494505,-0.49569488,0.7958136,0.3479081,-0.4956215,0.7947708,0.35347962,-0.49334723,0.7939244,0.35481128,-0.493754,0.7937184,0.35574654,-0.49341208,0.79387236,0.35578007,-0.4931402,0.79481256,0.354236,-0.49273705,0.79510164,0.3534939,-0.49280372,0.85054827,0.10458948,-0.5153917,0.85092473,0.10584123,-0.514514,0.8519832,0.106194586,-0.51268643,0.8533692,0.104648754,-0.51069534,0.8536488,0.103706315,-0.51042026,0.853252,0.10272644,-0.5112811,0.8524255,0.1031909,-0.51256454,0.8518943,0.102671295,-0.51355106,0.850604,0.103534155,-0.5155128,0.85002875,0.1022712,-0.5167125,0.8488683,0.10348424,-0.51837593,0.84879756,0.103912264,-0.5184061,0.84894854,0.10456482,-0.51802766,0.84990084,0.10491491,-0.51639277,0.8825245,0.13584557,-0.45021835,0.88195807,0.13715748,-0.45092997,0.88157976,0.1403679,-0.4506817,0.8822761,0.14004649,-0.4494172,0.8824891,0.13946079,-0.449181,0.8828003,0.13735668,-0.44921803,0.8534162,0.18146783,-0.48862076,0.8522804,0.18199499,-0.49040386,0.85157853,0.18289995,-0.49128565,0.85125786,0.18343869,-0.49164045,0.85166055,0.18403338,-0.4907199,0.85240126,0.18463983,-0.48920363,0.85339475,0.1831211,-0.48804098,0.8457158,0.21077327,-0.4902442,0.845812,0.21128646,-0.4898572,0.8465494,0.21252568,-0.48804405,0.8467966,0.21335591,-0.48725227,0.8469826,0.21325937,-0.4869712,0.8471193,0.21302783,-0.48683482,0.84723175,0.21268725,-0.48678795,0.84715587,0.21256156,-0.4869749,0.84743583,0.21207522,-0.48669964,0.8476115,0.21130812,-0.48672748,0.8474198,0.2109624,-0.48721102,0.847249,0.20909353,-0.48831254,0.8469847,0.20805252,-0.48921478,0.84626466,0.20780496,-0.49056423,0.8455531,0.20824677,-0.49160275,0.8449999,0.20799339,-0.49266008,0.8443641,0.2081234,-0.49369413,0.84392816,0.20923352,-0.49397022,0.8444211,0.2103309,-0.49266016,0.8444504,0.2116629,-0.49203897,0.84491456,0.21076244,-0.4916286,0.845296,0.2105126,-0.4910796,0.84843415,0.202264,-0.48913062,0.84769017,0.20284395,-0.49017927,0.8471495,0.20421405,-0.49054497,0.84712446,0.20486051,-0.49031854,0.8469319,0.20553033,-0.490371,0.8470528,0.20649855,-0.48975492,0.84733176,0.2067528,-0.48916474,0.84759605,0.20723309,-0.48850313,0.84787524,0.2075932,-0.48786536,0.8484298,0.20712556,-0.48709944,0.84837633,0.20405966,-0.48848462,0.8484906,0.20347647,-0.48852944,0.8485305,0.20262869,-0.4888124,0.8282526,0.18153243,-0.53013545,0.8279604,0.1817671,-0.53051144,0.82759815,0.18220527,-0.53092617,0.82665795,0.18488774,-0.5314632,0.8265912,0.18577628,-0.53125715,0.8267565,0.1863632,-0.53079426,0.8270273,0.18633229,-0.53038293,0.8272952,0.18605259,-0.5300633,0.82757974,0.18558112,-0.52978426,0.8286329,0.18408118,-0.5286602,0.8291348,0.18210728,-0.5285569,0.82911533,0.18094742,-0.52898574,0.8284758,0.18156677,-0.52977467,0.81139946,0.16935791,-0.5594184,0.8112164,0.16998936,-0.55949223,0.8112261,0.17071837,-0.55925614,0.81136894,0.1715714,-0.5587877,0.8107874,0.17410722,-0.55884755,0.8115748,0.17477348,-0.5574949,0.81220317,0.1758206,-0.55624914,0.8125117,0.17587505,-0.55578107,0.8126921,0.17607725,-0.55545324,0.8127983,0.17639607,-0.5551967,0.81443626,0.17597151,-0.5529264,0.8153852,0.17470212,-0.5519295,0.81586725,0.1736515,-0.5515486,0.81751865,0.1722665,-0.5495339,0.81805193,0.17156471,-0.5489596,0.8186512,0.17050834,-0.548395,0.8186675,0.16954096,-0.54867065,0.8184768,0.16807187,-0.5494066,0.8179886,0.16718128,-0.55040437,0.81624913,0.16675697,-0.553109,0.8138759,0.16728882,-0.55643547,0.8133952,0.1676997,-0.55701447,0.8124465,0.16931339,-0.55791014,0.8121589,0.16940996,-0.5582995,0.8605197,0.090567134,-0.5013018,0.8601992,0.09161609,-0.50166106,0.8603448,0.09209388,-0.50132364,0.86045367,0.09306719,-0.500957,0.8608381,0.09293402,-0.50032085,0.86168027,0.09173836,-0.49909046,0.8625724,0.091126524,-0.49765936,0.8640489,0.08947059,-0.4953933,0.8641852,0.08836455,-0.49535406,0.8637127,0.08820246,-0.49620634,0.86298823,0.088538624,-0.4974055,0.8624124,0.08978296,-0.49818063,0.861628,0.09009355,-0.49948004,0.86140966,0.0908999,-0.49971053,0.86117643,0.09035581,-0.500211,0.8608344,0.09008168,-0.5008487,0.84281796,0.11172128,-0.52647525,0.84186155,0.1119601,-0.5279528,0.8407732,0.11290678,-0.52948314,0.840141,0.114586666,-0.53012544,0.83943814,0.11497603,-0.53115356,0.8397043,0.1156118,-0.5305947,0.84165007,0.11737652,-0.5271128,0.8430779,0.11625853,-0.52507484,0.84385777,0.11604778,-0.5238674,0.8441574,0.11517498,-0.5235771,0.8436609,0.11429119,-0.5245701,0.8436692,0.11350799,-0.5247268,0.8431119,0.11174331,-0.52599984,0.7966921,0.16962825,-0.5800931,0.79590255,0.16965514,-0.58116794,0.79546386,0.17020857,-0.5816066,0.7958319,0.17133042,-0.5807732,0.7956869,0.17177622,-0.58084005,0.7955537,0.17267784,-0.5807553,0.7958341,0.17466609,-0.57977563,0.7969183,0.17239414,-0.5789659,0.7972078,0.170872,-0.57901853,0.79683256,0.16953509,-0.57992744,0.8002992,0.17169648,-0.57449234,0.8000538,0.1721775,-0.57469016,0.79997134,0.17259975,-0.57467836,0.7999933,0.17301528,-0.57452273,0.7995356,0.1748817,-0.5745949,0.7996688,0.17786473,-0.57349277,0.7989172,0.18038252,-0.5737539,0.79897183,0.18120804,-0.5734176,0.7991688,0.18115106,-0.573161,0.79973644,0.18016876,-0.5726786,0.80003375,0.17989543,-0.5723492,0.8007259,0.17896909,-0.5716714,0.801051,0.17693874,-0.5718479,0.8015044,0.17568798,-0.57159823,0.8011798,0.17519636,-0.5722037,0.8008472,0.17361711,-0.57315,0.8003983,0.17268711,-0.5740573,0.83912414,0.23654914,-0.4898114,0.8388955,0.23769738,-0.48964712,0.83915514,0.2388835,-0.48862395,0.83979267,0.23951735,-0.48721632,0.83999574,0.23925425,-0.48699534,0.84012216,0.23882064,-0.48699018,0.8402059,0.23823462,-0.4871327,0.8252417,0.23412973,-0.5139645,0.8255879,0.23456801,-0.51320803,0.82653636,0.23216319,-0.51277477,0.8267385,0.2305357,-0.513183,0.82648003,0.22973953,-0.51395583,0.82558095,0.22843549,-0.51597804,0.8251375,0.22896561,-0.51645213,0.8249164,0.22951724,-0.51656044,0.82397723,0.2311559,-0.5173282,0.8239222,0.23210184,-0.51699215,0.8237115,0.23282047,-0.5170048,0.82449317,0.23423913,-0.51511455,0.8246977,0.23408,-0.51485944,0.8290634,0.20971435,-0.5183374,0.82755744,0.21396615,-0.51900595,0.8266348,0.21707936,-0.51918334,0.8264057,0.21835782,-0.5190119,0.82614267,0.2190397,-0.5191434,0.82652235,0.21900561,-0.51855314,0.827615,0.21811828,-0.51718265,0.82824785,0.21533701,-0.5173349,0.8288438,0.21448642,-0.51673347,0.8291756,0.21356404,-0.51658326,0.82919306,0.21286628,-0.51684314,0.82891697,0.21209769,-0.51760143,0.8292826,0.2111781,-0.5173918,0.82312906,0.21278474,-0.52648014,0.8225851,0.21318437,-0.52716804,0.82208973,0.21443401,-0.5274339,0.8220464,0.215149,-0.52721024,0.8224764,0.2162965,-0.52606875,0.8236828,0.2163023,-0.5241756,0.8242474,0.21567401,-0.52354646,0.8241831,0.21523795,-0.5238272,0.8237748,0.2144573,-0.52478874,0.8147276,0.21986033,-0.53654474,0.8150336,0.22245753,-0.53500736,0.8155695,0.22334222,-0.5338207,0.8163972,0.22687875,-0.5310572,0.81663305,0.226926,-0.5306741,0.8172143,0.22677334,-0.52984405,0.81745356,0.22594903,-0.52982706,0.8173069,0.22554141,-0.5302269,0.81669456,0.22483976,-0.53146684,0.81603676,0.22283964,-0.5333165,0.8152614,0.22163494,-0.5350017,0.81190246,0.21416016,-0.5430927,0.81166446,0.2156541,-0.54285735,0.81180173,0.21832699,-0.5415823,0.81242114,0.21941887,-0.54021037,0.81287664,0.2187104,-0.5398123,0.81276095,0.21764079,-0.54041845,0.8121584,0.21471031,-0.5424926,0.81370705,0.21485353,-0.54011,0.81373763,0.21549928,-0.53980666,0.81446344,0.21646036,-0.53832537,0.8155149,0.21716174,-0.5364477,0.816325,0.21786208,-0.5349295,0.81657445,0.21634887,-0.53516287,0.8166311,0.21465792,-0.535757,0.8170463,0.21350825,-0.53558344,0.81805533,0.20973101,-0.5355356,0.8189885,0.20736475,-0.5350305,0.8190983,0.2066419,-0.5351421,0.8175011,0.20853265,-0.53684825,0.81583434,0.21122645,-0.53832865,0.81477106,0.21126734,-0.5399206,0.8143327,0.20945185,-0.5412875,0.8138709,0.20909515,-0.5421194,0.8138612,0.20876512,-0.5422611,0.81342447,0.20795666,-0.5432261,0.8136812,0.20708463,-0.54317486,0.8134593,0.20679282,-0.5436182,0.811627,0.20481886,-0.5470931,0.81122315,0.2036834,-0.54811496,0.8109515,0.20469378,-0.54814065,0.81063557,0.2073448,-0.54761124,0.8112827,0.21079752,-0.54533005,0.81273913,0.21281467,-0.5423698,0.8126312,0.20643602,-0.5449905,0.81524926,0.21160874,-0.5390643,0.8023132,0.23568869,-0.5484016,0.8016701,0.23648949,-0.54899716,0.8015026,0.23768754,-0.5487242,0.8008868,0.23973736,-0.5487315,0.80144864,0.24075498,-0.54746425,0.8016651,0.24102375,-0.54702896,0.80200404,0.24323556,-0.545551,0.8024355,0.2429297,-0.54505265,0.8028616,0.242365,-0.5446766,0.8033173,0.2415779,-0.5443542,0.803965,0.23837204,-0.544811,0.8052081,0.236213,-0.54391485,0.8052319,0.2352365,-0.54430264,0.8043565,0.23398057,-0.54613525,0.80347496,0.23491588,-0.5470306,0.8030204,0.23497811,-0.54767096,0.80278707,0.23458876,-0.5481798,0.8212792,0.24205746,-0.5166321,0.8211048,0.24274872,-0.5165849,0.82239753,0.24579392,-0.5130766,0.82260156,0.2453941,-0.512941,0.8226839,0.24499422,-0.5130002,0.8226877,0.24456367,-0.5131993,0.8188059,0.258311,-0.5126718,0.8188329,0.2589038,-0.5123295,0.81922656,0.25960094,-0.5113466,0.8204327,0.25946188,-0.5094799,0.8208924,0.25820482,-0.50937796,0.8206961,0.25742263,-0.51008964,0.8207504,0.25611797,-0.51065874,0.82060015,0.25544575,-0.5112366,0.8207366,0.25437602,-0.5115509,0.8209304,0.25400352,-0.51142496,0.8212138,0.25319242,-0.51137215,0.8210533,0.25301597,-0.5117171,0.82052416,0.25311896,-0.51251435,0.81987196,0.25476095,-0.5127444,0.8198254,0.25701416,-0.5116933,0.8189764,0.25834072,-0.5123843,0.81912994,0.2582336,-0.5121929,0.81210876,0.18397643,-0.55374366,0.8118286,0.18405434,-0.55412847,0.81112754,0.18451002,-0.55500287,0.81099224,0.18532072,-0.5549305,0.8110702,0.18551834,-0.5547505,0.8113816,0.18578131,-0.5542068,0.8040267,0.17249149,-0.5690234,0.80397373,0.1733418,-0.56883997,0.8041358,0.17563601,-0.5679064,0.8045925,0.17624423,-0.5670704,0.80500656,0.17631216,-0.5664613,0.80498034,0.17472982,-0.5669885,0.8322017,0.12854879,-0.53936595,0.83226055,0.12895356,-0.53917843,0.8324241,0.12937357,-0.5388252,0.83290255,0.12874906,-0.53823507,0.83330387,0.12928823,-0.53748417,0.83361024,0.1286806,-0.5371548,0.8336796,0.12734096,-0.5373663,0.83335507,0.12731731,-0.5378751,0.8322895,0.12812118,-0.5393321,0.8054944,0.12023669,-0.58027744,0.80523866,0.12122386,-0.58042693,0.80495894,0.12413248,-0.5802002,0.80555964,0.12508287,-0.5791615,0.80607504,0.123137146,-0.57886124,0.80588514,0.12256206,-0.57924753,0.8077821,0.19912566,-0.5548306,0.8065524,0.1992343,-0.5565778,0.80625314,0.20021549,-0.55665934,0.80654925,0.2017566,-0.55567306,0.8069349,0.20256694,-0.55481774,0.80762315,0.20270212,-0.5537658,0.80845207,0.20220469,-0.5527374,0.80817944,0.19991064,-0.553969,0.81106937,0.15786688,-0.5632446,0.8106519,0.15889256,-0.5635571,0.8107049,0.15971036,-0.56324965,0.81110764,0.16062479,-0.5624091,0.8113898,0.1606222,-0.5620028,0.8119665,0.16032615,-0.561254,0.8122224,0.15945205,-0.5611325,0.8120581,0.15871507,-0.56157917,0.8082897,0.3258187,-0.49041808,0.80791456,0.32692793,-0.490298,0.80768293,0.32792726,-0.49001226,0.80775374,0.32859612,-0.48944706,0.80817115,0.32785958,-0.48925197,0.8083979,0.3272412,-0.48929137,0.8085496,0.32640436,-0.48959965,0.8497223,0.19889599,-0.48827475,0.8497456,0.19980131,-0.48786455,0.8500706,0.19963183,-0.48736748,0.85075206,0.1989169,-0.48646992,0.8510531,0.19893442,-0.48593584,0.85114443,0.19820362,-0.48607463,0.8506309,0.19780679,-0.487134,0.85045725,0.1972413,-0.4876662,0.8501991,0.19753861,-0.48799586,0.8151482,0.19339077,-0.54601604,0.8153318,0.19566031,-0.544932,0.8154923,0.19558923,-0.54471755,0.81590164,0.19505598,-0.54429555,0.8158973,0.19340329,-0.5448916,0.8254153,0.21641043,-0.52139837,0.82503504,0.2169304,-0.5217838,0.8250535,0.21796028,-0.5213253,0.8251279,0.21802264,-0.5211813,0.825518,0.2174096,-0.5208197,0.8255715,0.21649201,-0.52111703,0.79824364,0.16621745,-0.5789463,0.798001,0.16665778,-0.5791542,0.7975586,0.16822393,-0.57931083,0.7976356,0.1695057,-0.57883096,0.79787743,0.16916382,-0.57859766,0.7984244,0.16713838,-0.5784316,0.8041895,0.20010862,-0.55967474,0.8038614,0.2009885,-0.5598308,0.804091,0.20153289,-0.55930513,0.8042505,0.20249853,-0.5587267,0.8047172,0.20304927,-0.5578542,0.80475765,0.20207871,-0.55814815,0.80461764,0.20074898,-0.55882937,0.8044347,0.20035237,-0.559235,0.87965494,0.14247368,-0.45377126,0.87906146,0.14288193,-0.4547919,0.87890786,0.14417069,-0.45468214,0.87905616,0.14450286,-0.4542898,0.8794276,0.14461504,-0.45353454,0.879633,0.14355324,-0.45347348,0.821346,0.15873614,-0.54789925,0.8211876,0.16052383,-0.54761565,0.82149947,0.16123788,-0.5469378,0.821799,0.16105705,-0.54654104,0.8227928,0.16011505,-0.54532105,0.82318413,0.16014871,-0.5447204,0.82323956,0.15974484,-0.54475516,0.82293427,0.15867047,-0.5455298,0.8222924,0.15821531,-0.5466289,0.7911555,0.38462338,-0.47553948,0.7889885,0.38713524,-0.47709903,0.7867623,0.39019442,-0.47828174,0.78570473,0.3918118,-0.47869778,0.78471124,0.39350083,-0.478942,0.7825632,0.3975334,-0.47912627,0.7807026,0.4014405,-0.47890395,0.7790689,0.40451738,-0.47897542,0.77766275,0.40757728,-0.47866625,0.77697414,0.40880963,-0.47873372,0.7752125,0.41127968,-0.47947314,0.7729233,0.41523907,-0.47975627,0.7722822,0.41692382,-0.4793274,0.7717353,0.4186016,-0.47874564,0.77045006,0.42096084,-0.47874698,0.76935154,0.42220268,-0.4794196,0.7690326,0.42351088,-0.47877702,0.7691681,0.4242696,-0.47788683,0.76985025,0.4250543,-0.47608754,0.77006024,0.42548847,-0.47535968,0.7701038,0.42629117,-0.4745692,0.77024055,0.42696866,-0.4737375,0.770863,0.42699337,-0.47270167,0.77159625,0.42655328,-0.47190198,0.77285904,0.4251345,-0.47111526,0.7756674,0.4236475,-0.4678279,0.7763188,0.42313722,-0.46720883,0.77760506,0.42147863,-0.46656856,0.7788359,0.41966242,-0.4661525,0.7799383,0.41822624,-0.46559978,0.78107893,0.41695166,-0.46483007,0.78313553,0.41435197,-0.463693,0.7916589,0.40209213,-0.45999807,0.7922145,0.40119538,-0.45982432,0.7930317,0.39917484,-0.46017408,0.7936569,0.39713302,-0.46086243,0.7943938,0.39562836,-0.46088678,0.7952358,0.3941354,-0.46071404,0.7957114,0.39313576,-0.46074688,0.79595584,0.392236,-0.4610914,0.7959837,0.39132565,-0.46181622,0.79612005,0.39032787,-0.46242526,0.7969562,0.3861945,-0.46445087,0.79715717,0.38473737,-0.46531454,0.7972204,0.38336748,-0.46633565,0.79726684,0.38345093,-0.46618783,0.797049,0.38243386,-0.4673941,0.7965218,0.3771889,-0.47252688,0.7971363,0.3751422,-0.47311938,0.7971345,0.3738945,-0.47410908,0.7965038,0.3733925,-0.47556257,0.7956974,0.37513512,-0.47554109,0.79496646,0.37689608,-0.47537106,0.79429245,0.37884578,-0.47494772,0.77119297,0.4198404,-0.47853476,0.79654104,0.3817462,-0.46881998,0.7962327,0.37965873,-0.4710336,0.7923426,0.382733,-0.4750881,0.7961991,0.38036665,-0.4705192,0.7819186,0.4013691,-0.4769761,0.78463393,0.4078052,-0.46695226,0.7824948,0.40037835,-0.47686386,0.79346126,0.38073385,-0.47482726,0.78379273,0.40513685,-0.47067297,0.8003418,0.4139874,-0.43366748,0.80024916,0.4150445,-0.4328271,0.80110025,0.41420302,-0.43205804,0.8014449,0.41432172,-0.4313046,0.8016423,0.4136817,-0.43155184,0.8007431,0.41333252,-0.43355134,0.5872961,0.5901338,-0.5539182,0.58657336,0.59066,-0.5541232,0.5861507,0.59125876,-0.55393183,0.5862721,0.5925776,-0.5523919,0.5874869,0.59192044,-0.55180556,0.58810043,0.59106493,-0.5520689,0.58802956,0.59030646,-0.55295527,0.5260202,0.613177,-0.58933574,0.5250241,0.613212,-0.590187,0.5228664,0.61433893,-0.5909301,0.5209105,0.6165623,-0.59034157,0.5220895,0.61670184,-0.5891531,0.5216478,0.6173698,-0.5888448,0.5201992,0.61921704,-0.5881863,0.5198574,0.61999696,-0.5876666,0.52046657,0.6196619,-0.5874808,0.5229898,0.61787516,-0.5871218,0.5241601,0.61674005,-0.58727163,0.5247997,0.6155869,-0.5879099,0.5241977,0.6152423,-0.588807,0.52507716,0.61422735,-0.58908296,0.5254261,0.6136542,-0.5893692,0.5261953,0.6133123,-0.5890386,0.5240516,0.6155352,-0.588631,0.58660346,0.5621256,-0.583019,0.5849069,0.5633549,-0.5835368,0.58441716,0.56494236,-0.5824919,0.5823896,0.56703955,-0.58248484,0.58283,0.5670522,-0.58203185,0.58358604,0.5666808,-0.5816358,0.58462,0.5660128,-0.58124775,0.5861331,0.5645084,-0.58118695,0.58755696,0.5634415,-0.5807844,0.5877282,0.5627612,-0.58127046,0.5875151,0.56221163,-0.58201724,0.65684277,0.5036444,-0.5611595,0.6555756,0.5039698,-0.56234795,0.65438557,0.50553524,-0.5623288,0.6545289,0.5058676,-0.56186277,0.6554477,0.5070198,-0.55974925,0.6570328,0.5058559,-0.55894333,0.6572997,0.50399554,-0.5603086,0.6522996,0.5058279,-0.5644851,0.65136504,0.5059874,-0.56542045,0.65015244,0.50798917,-0.5650211,0.64875925,0.5096793,-0.5651004,0.64751357,0.5119059,-0.5645162,0.64747953,0.5124695,-0.56404376,0.64774585,0.5123261,-0.56386817,0.6481972,0.51192725,-0.56371176,0.6496506,0.51011044,-0.56368566,0.65036887,0.5086673,-0.56416124,0.6519308,0.5066995,-0.5641293,0.648231,0.53278756,-0.5439981,0.64722615,0.53331465,-0.54467773,0.6453231,0.5349508,-0.5453309,0.6442707,0.5371759,-0.54438704,0.6441896,0.5379061,-0.54376173,0.6458275,0.5376179,-0.5421013,0.64609754,0.5368409,-0.5425493,0.64737415,0.5350336,-0.5428128,0.64726514,0.534554,-0.54341507,0.6474025,0.53423196,-0.5435681,0.64828765,0.5335221,-0.5432101,0.64808375,0.53329223,-0.54367894,0.64169914,0.56039053,-0.5236265,0.64079684,0.5609769,-0.52410334,0.63947374,0.562528,-0.52405685,0.63904494,0.56330633,-0.5237437,0.63988763,0.56382376,-0.5221557,0.64148307,0.5612894,-0.52292794,0.6386292,0.56360555,-0.523929,0.63807714,0.56429946,-0.5238547,0.6376371,0.5652039,-0.52341527,0.6358325,0.5669876,-0.5236813,0.6353153,0.5680668,-0.5231392,0.6349548,0.5685541,-0.5230473,0.63485754,0.56886816,-0.522824,0.6349359,0.5690868,-0.52249074,0.6366847,0.5679482,-0.5216008,0.63693386,0.56754625,-0.5217341,0.63730675,0.56672084,-0.52217585,0.6390351,0.56454146,-0.5224242,0.6389897,0.5640968,-0.52295977,0.65628415,0.54107547,-0.5258598,0.6564406,0.5414718,-0.5252562,0.6574871,0.5396822,-0.5257887,0.6576589,0.53918856,-0.5260803,0.65750545,0.53884035,-0.5266286,0.6571128,0.53856677,-0.52739793,0.65637404,0.5393106,-0.5275578,0.6560193,0.5394519,-0.5278545,0.65530133,0.5395373,-0.52865833,0.6551391,0.540142,-0.5282418,0.6550039,0.5411636,-0.52736306,0.65520674,0.54135567,-0.5269138,0.6556472,0.5413027,-0.5264202,0.643875,0.53611165,-0.5459024,0.6429998,0.53617644,-0.5468693,0.6423996,0.536677,-0.54708374,0.6415764,0.537531,-0.54721135,0.64241016,0.5376999,-0.5460659,0.6440489,0.53675175,-0.5450674,0.6441395,0.53628355,-0.5454212,0.44257554,0.7104229,-0.54719853,0.44171,0.71120274,-0.5468848,0.441213,0.712026,-0.5462143,0.44095135,0.71263313,-0.5456335,0.44135603,0.71282023,-0.54506165,0.44163623,0.712828,-0.5448244,0.4423328,0.7115819,-0.54588723,0.44195783,0.7084902,-0.55019534,0.44123563,0.708578,-0.55066174,0.4406701,0.70896155,-0.550621,0.44063678,0.709307,-0.5502025,0.4407776,0.70996994,-0.54923385,0.44121483,0.71015894,-0.54863805,0.4420976,0.70964694,-0.5485899,0.44240844,0.7090036,-0.54917085,0.48246965,0.670111,-0.5640694,0.48220375,0.6701806,-0.564214,0.48185217,0.67037976,-0.5642778,0.48027185,0.67217565,-0.56348807,0.48094645,0.67207533,-0.5630322,0.4817921,0.6717149,-0.56273925,0.48229092,0.6711989,-0.56292754,0.48263988,0.67022043,-0.5637937,0.5897435,0.56588495,-0.5761743,0.5894156,0.5661709,-0.576229,0.5889366,0.5667278,-0.57617116,0.58931696,0.56690055,-0.57561207,0.5908676,0.56668293,-0.57423514,0.59096825,0.5663535,-0.57445645,0.59067607,0.56593204,-0.57517195,0.59084904,0.5652988,-0.5756168,0.58988667,0.56595945,-0.5759545,0.5346642,0.5689859,-0.6248114,0.5342437,0.5696598,-0.6245569,0.5342542,0.57036775,-0.6239015,0.5348681,0.5703615,-0.623381,0.535258,0.5695737,-0.6237665,0.5351784,0.5691344,-0.6242355,0.6525464,0.5421408,-0.52940214,0.6522361,0.54229903,-0.52962244,0.6512642,0.5435972,-0.52948755,0.65074927,0.54385114,-0.5298597,0.65014094,0.5445382,-0.5299008,0.65012956,0.5456292,-0.52879137,0.64977753,0.546578,-0.5282439,0.6516754,0.5441865,-0.52837515,0.65215015,0.5439341,-0.5280492,0.65218157,0.54346204,-0.52849615,0.6503358,0.54468757,-0.52950805,0.646576,0.54721016,-0.53150785,0.64557415,0.5478997,-0.532015,0.64497024,0.5487941,-0.53182566,0.6438291,0.5499128,-0.5320526,0.64414966,0.5498651,-0.53171384,0.6450514,0.5494786,-0.5310197,0.64595735,0.5484008,-0.5310326,0.64620864,0.5480174,-0.53112274,0.64704716,0.547213,-0.5309312,0.6398041,0.5549508,-0.5316769,0.6388531,0.5555532,-0.5321911,0.63843304,0.556719,-0.5314764,0.6387625,0.55714226,-0.5306364,0.639143,0.5567147,-0.5306269,0.6400428,0.55542064,-0.53089845,0.6102069,0.560279,-0.56012046,0.6096345,0.5608584,-0.56016386,0.6097284,0.5610277,-0.5598921,0.6095614,0.56168854,-0.5594112,0.6098179,0.56156445,-0.5592562,0.6103878,0.5609565,-0.5592446,0.6109835,0.5604547,-0.55909723,0.6136992,0.55786955,-0.5587082,0.6139086,0.5583992,-0.5579485,0.6144541,0.55843735,-0.5573095,0.61467075,0.5581475,-0.557361,0.6149871,0.5573517,-0.55780816,0.6144271,0.5573319,-0.5584447,0.6136989,0.5569774,-0.55959797,0.6129635,0.5574543,-0.559929,0.61239326,0.557936,-0.560073,0.61246014,0.558086,-0.5598506,0.65516436,0.5245752,-0.5436732,0.6547455,0.5248348,-0.54392713,0.65342504,0.52610224,-0.5442905,0.65317017,0.5267645,-0.5439558,0.65442,0.5257427,-0.5434419,0.5483291,0.44800368,-0.7061359,0.54810005,0.44801658,-0.70630556,0.5477731,0.44852018,-0.7062395,0.54797727,0.44947425,-0.70547414,0.5483461,0.44973162,-0.70502347,0.5485934,0.44965476,-0.70488006,0.42431602,0.69630927,-0.57888633,0.42472446,0.69743204,-0.57723284,0.42575347,0.6981346,-0.5756232,0.42980826,0.7048718,-0.5642877,0.43033925,0.7086477,-0.55913013,0.43119618,0.71111405,-0.5553257,0.43183985,0.7124908,-0.5530562,0.43183383,0.7130485,-0.55234176,0.43205014,0.7133669,-0.55176115,0.43281943,0.71304613,-0.55157286,0.4336354,0.712501,-0.5516364,0.4342826,0.71225756,-0.55144155,0.43547797,0.71204156,-0.55077744,0.43580267,0.71173877,-0.55091196,0.43603197,0.7113962,-0.55117285,0.43731144,0.71025854,-0.55162627,0.43818456,0.70902884,-0.5525146,0.44287357,0.699304,-0.56110334,0.4442301,0.6979607,-0.56170315,0.4462299,0.69490224,-0.5639057,0.44741923,0.69364065,-0.56451637,0.45021734,0.6914958,-0.564923,0.45149893,0.6901581,-0.5655356,0.45246896,0.68851274,-0.5667645,0.45331156,0.6868528,-0.56810373,0.45753765,0.68429166,-0.5678065,0.45920405,0.6845595,-0.56613594,0.4604995,0.6846166,-0.5650135,0.46080697,0.68473774,-0.56461596,0.46200198,0.68596715,-0.56214166,0.46275783,0.68630314,-0.5611089,0.46395054,0.685858,-0.56066805,0.46458223,0.6850191,-0.5611704,0.4649357,0.6841314,-0.56196,0.4649537,0.68263507,-0.5637619,0.47236207,0.6779642,-0.56323934,0.47309682,0.6777932,-0.5628284,0.47385013,0.677508,-0.56253797,0.47466803,0.6766413,-0.5628915,0.4759952,0.67492265,-0.56383336,0.4765301,0.6741425,-0.5643146,0.47721708,0.67272943,-0.5654193,0.4772933,0.67159176,-0.56670594,0.47669685,0.6704209,-0.5685912,0.47831923,0.66657436,-0.57174236,0.47974887,0.66517496,-0.5721742,0.48089784,0.6636183,-0.5730165,0.4811689,0.6628989,-0.5736214,0.48124737,0.6622772,-0.5742734,0.48105505,0.66175795,-0.5750326,0.48049787,0.6616161,-0.5756613,0.4790343,0.66204476,-0.57638776,0.47741157,0.6628721,-0.5767832,0.47658688,0.66350037,-0.5767427,0.47523478,0.6648676,-0.5762838,0.47245938,0.66673505,-0.57640827,0.47128814,0.66601706,-0.57819444,0.47049382,0.6657939,-0.5790976,0.4696062,0.66571754,-0.57990533,0.46864057,0.6660094,-0.5803511,0.46757793,0.6665985,-0.5805319,0.46770218,0.66715735,-0.57978946,0.46872315,0.6688424,-0.57701695,0.46949342,0.6706384,-0.5742997,0.46993673,0.6707307,-0.57382905,0.46610454,0.67559016,-0.5712482,0.46554092,0.6737811,-0.57383853,0.46529233,0.67355627,-0.57430387,0.4532263,0.6752263,-0.58194107,0.45047528,0.6724696,-0.587245,0.4473706,0.6706643,-0.5916663,0.4459218,0.6694187,-0.59416527,0.44478047,0.6691331,-0.5953412,0.4440791,0.6696212,-0.595316,0.4433911,0.6702236,-0.59515095,0.4427847,0.67108715,-0.59462905,0.44224772,0.6719838,-0.59401584,0.4268671,0.6817995,-0.5940825,0.4249202,0.6812781,-0.5960729,0.42370483,0.68132055,-0.59688896,0.4215448,0.6819179,-0.59773564,0.42030254,0.6820102,-0.5985047,0.41897008,0.6824021,-0.598992,0.41402397,0.6842961,-0.60026914,0.41301358,0.684219,-0.6010525,0.4125497,0.6844539,-0.6011037,0.40955737,0.68637013,-0.6009649,0.408144,0.68690914,-0.6013105,0.4089316,0.68704045,-0.600625,0.40979522,0.6869463,-0.6001439,0.41115463,0.6861711,-0.6001008,0.4138624,0.68585056,-0.5986041,0.4134762,0.68788457,-0.5965335,0.41329834,0.6893442,-0.59496975,0.4095439,0.69561404,-0.59024984,0.40738177,0.69753766,-0.58947545,0.40684336,0.6981816,-0.5890848,0.40652514,0.69875735,-0.58862174,0.40675482,0.6988384,-0.5883667,0.41039687,0.6967415,-0.58832437,0.414039,0.6944315,-0.5885037,0.41826355,0.6940248,-0.5859908,0.42106444,0.6959323,-0.5817069,0.42192975,0.6961214,-0.58085304,0.42712572,0.69962126,-0.5727947,0.43828598,0.7077386,-0.55408615,0.44159454,0.7006916,-0.56037986,0.47103882,0.67066807,-0.572998,0.45956028,0.6761938,-0.575818,0.45484272,0.6766068,-0.5790694,0.41755146,0.6831319,-0.5991508,0.4146485,0.6842507,-0.59988964,0.41097242,0.6857079,-0.60075474,0.41247916,0.6855609,-0.59988934,0.41349065,0.69040906,-0.59359986,0.42253068,0.6960621,-0.58048725,0.43851584,0.706379,-0.55563706,0.4710163,0.6785823,-0.56362194,0.4766141,0.6700035,-0.5691523,0.47725797,0.66800064,-0.5709641,0.47144297,0.6708381,-0.5724663,0.46646464,0.67630553,-0.5701066,0.4122001,0.6930167,-0.5914549,0.42376167,0.6961257,-0.57951283,0.42913193,0.70302385,-0.5671007,0.4694643,0.67938375,-0.56395125,0.4672714,0.6765076,-0.5692055,0.42802286,0.6816617,-0.5934086,0.41615722,0.683726,-0.599443,0.46789473,0.68029684,-0.5641549,0.47347924,0.6661232,-0.57627887,0.44113505,0.67333704,-0.59331036,0.413186,0.69169647,-0.59231186,0.42824116,0.7013437,-0.56984776,0.45643976,0.684357,-0.5686109,0.47203577,0.67173004,-0.57092994,0.43984768,0.6745459,-0.59289277,0.46621326,0.6814122,-0.5642008,0.4370197,0.6768597,-0.5923469,0.413004,0.68559253,-0.5994919,0.47223753,0.6729267,-0.5693517,0.41508323,0.6939076,-0.58838606,0.43961334,0.70359755,-0.5582925,0.472044,0.6734548,-0.5688876,0.4340998,0.678777,-0.59229994,0.4508332,0.6776431,-0.5809899,0.4511903,0.6776315,-0.5807262,0.4679714,0.6764844,-0.56865776,0.43102506,0.6804829,-0.5925879,0.47164786,0.67399395,-0.5685776,0.44965672,0.67848617,-0.58091766,0.41602394,0.6937536,-0.5879031,0.47093603,0.67475474,-0.5682652,0.44208628,0.68516713,-0.5788832,0.4172238,0.69378185,-0.5870188,0.47019902,0.67542493,-0.5680793,0.4424626,0.6851026,-0.578672,0.4687143,0.6763539,-0.568201,0.4353674,0.6903252,-0.5778463,0.44305292,0.6851169,-0.57820314,0.45445153,0.68555963,-0.5687546,0.4359292,0.6896818,-0.57819086,0.45582172,0.6845427,-0.56888294,0.43661168,0.68917626,-0.5782788,0.627528,0.55445015,-0.54662013,0.62724257,0.555945,-0.5454282,0.6270692,0.55733967,-0.5442029,0.6278088,0.55800253,-0.54266864,0.6289081,0.5581475,-0.54124486,0.62943417,0.5579693,-0.54081684,0.63178253,0.55679756,-0.5392841,0.63236976,0.55613554,-0.5392789,0.6329411,0.5553413,-0.5394271,0.6354937,0.55335814,-0.5384631,0.63649505,0.55336666,-0.53727037,0.6369941,0.5530742,-0.5369799,0.6379583,0.55225384,-0.53667957,0.6396713,0.5516967,-0.5352115,0.6408871,0.55101985,-0.5344538,0.6410301,0.5505362,-0.5347807,0.6410455,0.55011994,-0.5351903,0.6415644,0.5493404,-0.53536916,0.64260846,0.54989505,-0.53354454,0.6429629,0.54997045,-0.5330396,0.6435837,0.5496594,-0.532611,0.64465606,0.5480929,-0.53292847,0.6442306,0.5473678,-0.5341867,0.6437375,0.545862,-0.5363177,0.6432659,0.5449663,-0.5377924,0.6448537,0.54306704,-0.53781205,0.64465094,0.54442745,-0.5366786,0.6450291,0.5455164,-0.53511626,0.64566225,0.54456466,-0.5353219,0.64609015,0.5436051,-0.53578067,0.64627695,0.5428116,-0.5363596,0.6460588,0.54143876,-0.53800744,0.6468389,0.53943616,-0.5390808,0.64774776,0.5383442,-0.5390811,0.64659065,0.53909016,-0.53972423,0.6428518,0.5409429,-0.54233044,0.6427639,0.5403328,-0.54304236,0.6424754,0.5399046,-0.54380906,0.64199555,0.5398731,-0.5444068,0.64139605,0.5402676,-0.54472196,0.64081365,0.54106045,-0.54462045,0.6404909,0.54186,-0.5442051,0.64044267,0.5424802,-0.5436438,0.6407799,0.5426885,-0.543038,0.6413726,0.54364014,-0.5413839,0.6407326,0.54482913,-0.5409464,0.64050084,0.5461726,-0.53986496,0.63818175,0.5459934,-0.5427847,0.63864774,0.54392695,-0.54430926,0.63849425,0.5421716,-0.5462372,0.6389825,0.5407415,-0.5470832,0.6402189,0.5396076,-0.54675716,0.6398127,0.53915834,-0.5476751,0.64558226,0.5320416,-0.5478643,0.64678764,0.53162086,-0.5468501,0.6471469,0.53126216,-0.5467737,0.64813,0.52917683,-0.5476308,0.6486958,0.527682,-0.54840267,0.6494794,0.5264936,-0.54861736,0.6494033,0.5259181,-0.5492591,0.6511023,0.52155423,-0.55140454,0.6523865,0.52113616,-0.5502808,0.6526818,0.51939815,-0.55157226,0.6523306,0.5191192,-0.5522501,0.6517949,0.51902527,-0.55297035,0.6497102,0.5177062,-0.55664796,0.6491245,0.5182887,-0.5567893,0.6485574,0.519034,-0.5567558,0.6487356,0.5203002,-0.5553647,0.644921,0.5240468,-0.556284,0.64525676,0.52395904,-0.55597717,0.64583915,0.52365047,-0.5555916,0.64614826,0.52288646,-0.5559516,0.6465003,0.52075934,-0.55753654,0.64866626,0.5168631,-0.5586453,0.64916205,0.5164449,-0.5584561,0.6495978,0.51592463,-0.5584303,0.64988387,0.5152645,-0.558707,0.6471083,0.51671356,-0.5605871,0.64420366,0.51886505,-0.56194365,0.64399225,0.5206771,-0.56050813,0.64252853,0.52163285,-0.56129867,0.6416706,0.52115285,-0.56272423,0.6408442,0.52107936,-0.5637331,0.63781434,0.52503794,-0.56349623,0.63692343,0.5266356,-0.5630129,0.63634634,0.5281937,-0.56220526,0.6350814,0.5299482,-0.5619844,0.6340353,0.5316461,-0.5615619,0.63296777,0.5332166,-0.561277,0.63180596,0.5347283,-0.5611478,0.6303371,0.5367935,-0.5608279,0.6287432,0.53866524,-0.5608224,0.62458277,0.54235274,-0.56191623,0.62406224,0.54291606,-0.56195056,0.62374073,0.54345345,-0.56178814,0.6243162,0.5442537,-0.5603724,0.6237965,0.54478765,-0.56043226,0.62341696,0.54532784,-0.56032926,0.6235837,0.5459234,-0.5595633,0.62390435,0.54636604,-0.55877316,0.6233858,0.54729503,-0.5584428,0.6224581,0.54836017,-0.5584327,0.62422234,0.5483238,-0.5564957,0.62420595,0.5503619,-0.5544987,0.622491,0.5519711,-0.55482686,0.62198937,0.55271983,-0.554644,0.6219062,0.5534327,-0.55402607,0.6221681,0.55394083,-0.55322367,0.6226421,0.5541529,-0.5524774,0.62366176,0.5537343,-0.55174667,0.6375324,0.5525146,-0.5369172,0.64608365,0.5406124,-0.53880805,0.6418871,0.5424608,-0.54195684,0.63912475,0.5390536,-0.5485807,0.6492105,0.52541715,-0.54996586,0.6506809,0.52176446,-0.55170304,0.6486326,0.52105534,-0.5547766,0.6247159,0.553165,-0.55112475,0.6444693,0.54246944,-0.53887504,0.644942,0.54055935,-0.5402272,0.6443226,0.5331567,-0.548263,0.64936364,0.5240076,-0.55112875,0.64462245,0.5243436,-0.55635035,0.64821464,0.51736706,-0.55870306,0.64323765,0.5215587,-0.56055486,0.6258069,0.5486445,-0.554396,0.625321,0.5529684,-0.5506357,0.6269267,0.5534291,-0.54834217,0.6436122,0.54127973,-0.5410911,0.643071,0.534425,-0.5484975,0.65030265,0.5223169,-0.55162627,0.6471331,0.51905805,-0.5583883,0.62585336,0.5529954,-0.5500034,0.63437694,0.55389255,-0.53922987,0.6432809,0.54446316,-0.5382838,0.64361596,0.54246444,-0.53989893,0.6414732,0.542395,-0.5425125,0.6410555,0.53665257,-0.548682,0.6442893,0.5250453,-0.5560744,0.6483602,0.5218982,-0.5543026,0.64424634,0.52556515,-0.55563295,0.647373,0.5234371,-0.5540052,0.63974005,0.54675287,-0.54017955,0.6461068,0.5249582,-0.5540441,0.6447653,0.52573407,-0.5548706,0.6389268,0.54723656,-0.5406522,0.64533573,0.5257449,-0.5541967,0.63862294,0.5469027,-0.54134846,0.59096086,0.5628965,-0.5778519,0.5919109,0.5638006,-0.57599515,0.593072,0.5643677,-0.5742427,0.5944221,0.5642186,-0.57299197,0.595941,0.56362456,-0.571998,0.59816164,0.5625576,-0.57072896,0.5986106,0.5627161,-0.57010174,0.5989791,0.5611399,-0.571267,0.6018332,0.55879927,-0.5705612,0.6030194,0.5588607,-0.5692471,0.60358274,0.55874413,-0.5687644,0.60583407,0.5591512,-0.56596375,0.60578716,0.5604675,-0.5647107,0.60627735,0.56057125,-0.56408125,0.60774964,0.55950016,-0.56356007,0.60849845,0.55908334,-0.56316555,0.6094296,0.5578342,-0.5633973,0.6101701,0.5570531,-0.5633687,0.61077803,0.55616385,-0.5635885,0.6120472,0.55469835,-0.5636559,0.6135056,0.55386984,-0.5628846,0.6160332,0.5521181,-0.5618441,0.6171035,0.55149347,-0.5612827,0.6193344,0.55040175,-0.55989534,0.6205228,0.549606,-0.55936104,0.6200017,0.5496082,-0.5599364,0.6175458,0.5507254,-0.56155026,0.616156,0.5509246,-0.56288004,0.61693436,0.5494786,-0.5634406,0.61672705,0.5490897,-0.56404626,0.61679584,0.5477279,-0.5652937,0.6172856,0.5472879,-0.56518525,0.6176841,0.5464888,-0.565523,0.61862904,0.54550785,-0.5654373,0.6183524,0.54475117,-0.56646836,0.618965,0.54341763,-0.5670798,0.6178861,0.5434606,-0.5682142,0.61694217,0.5432109,-0.56947714,0.61858445,0.5411572,-0.56965095,0.6179896,0.54135495,-0.5701084,0.61703867,0.5410038,-0.5714701,0.6163659,0.5410418,-0.5721599,0.6146885,0.54232407,-0.57275003,0.61331683,0.5444031,-0.5722479,0.6127672,0.54482126,-0.57243866,0.61216086,0.54505205,-0.57286763,0.61133194,0.5458556,-0.5729877,0.60922986,0.5482875,-0.5729047,0.608,0.5498972,-0.57266843,0.60062265,0.5511849,-0.5791784,0.6000613,0.54882973,-0.58199,0.59974843,0.5482526,-0.58285594,0.59269327,0.5552697,-0.58342975,0.5901252,0.556593,-0.58477044,0.5905901,0.55698866,-0.58392376,0.589828,0.5581468,-0.5835881,0.5898542,0.5589413,-0.5828008,0.5896327,0.5598285,-0.5821729,0.58833694,0.5624674,-0.58093894,0.58985585,0.5622962,-0.5795628,0.5976247,0.5626224,-0.5712274,0.604886,0.558226,-0.5678879,0.60551614,0.5581404,-0.5673002,0.61615825,0.54892164,-0.56483096,0.5988187,0.5497078,-0.5824409,0.5952749,0.55351365,-0.5824693,0.599608,0.5601964,-0.57153326,0.61638856,0.5483716,-0.56511384,0.60137224,0.55183035,-0.57778436,0.59780604,0.55105543,-0.5822078,0.59655464,0.55232704,-0.58228636,0.61650246,0.55097723,-0.562449,0.6029028,0.55217427,-0.5758574,0.6004239,0.55944085,-0.5714168,0.60347843,0.55209684,-0.5753285,0.46992108,0.66095376,-0.58507633,0.4705773,0.66204286,-0.5833149,0.4709994,0.66230273,-0.58267885,0.4719332,0.6626928,-0.5814786,0.47258192,0.6623558,-0.5813357,0.47330225,0.6616448,-0.58155924,0.47513932,0.65939385,-0.5826168,0.47598672,0.6578856,-0.58362937,0.47284117,0.65859836,-0.58537966,0.47227374,0.65880096,-0.58560973,0.47166076,0.65917146,-0.5856868,0.47458473,0.6545069,-0.5885491,0.47603574,0.6552785,-0.5865151,0.4767293,0.6551304,-0.58611715,0.4790022,0.6546519,-0.5847972,0.47750178,0.6581064,-0.582141,0.47733366,0.6586292,-0.5816874,0.47785804,0.6588446,-0.5810125,0.47857314,0.6587638,-0.58051527,0.47911844,0.65881634,-0.5800056,0.47953126,0.6590805,-0.579364,0.48014498,0.65873307,-0.5792508,0.48075148,0.65817565,-0.57938147,0.48160124,0.65613365,-0.58098966,0.48546064,0.65278035,-0.5815546,0.48610768,0.65272486,-0.58107626,0.48677984,0.652537,-0.5807245,0.48785627,0.6517378,-0.5807186,0.4888444,0.65075344,-0.5809914,0.4893052,0.64989763,-0.58156127,0.4897691,0.64831,-0.5829411,0.4944329,0.6423331,-0.5856145,0.4952014,0.6422384,-0.5850687,0.49561974,0.64172876,-0.5852737,0.49522763,0.6411514,-0.58623755,0.49433398,0.6412737,-0.5868577,0.49757564,0.6335246,-0.5925074,0.49824122,0.6330181,-0.5924895,0.49882987,0.63241553,-0.59263766,0.50364184,0.6264424,-0.5949074,0.5052134,0.62520206,-0.5948797,0.5067328,0.62386423,-0.59499174,0.50802934,0.6225493,-0.5952635,0.50921136,0.62114507,-0.59572023,0.5143476,0.6157863,-0.59687,0.5192744,0.6135129,-0.59494203,0.5204494,0.6125581,-0.5948991,0.53091276,0.6042291,-0.5941707,0.53219414,0.60391873,-0.5933393,0.53483504,0.602715,-0.5921876,0.5397493,0.6011396,-0.5893232,0.5402626,0.6007657,-0.58923423,0.5452889,0.60035205,-0.5850106,0.54476804,0.60125196,-0.5845716,0.54453313,0.60218793,-0.5838265,0.5434124,0.6045998,-0.58237624,0.54262435,0.6048733,-0.58282685,0.54108685,0.60575444,-0.5833408,0.5380886,0.60789496,-0.5838873,0.5377055,0.60855985,-0.5835475,0.5376306,0.60906696,-0.5830873,0.5390692,0.60872626,-0.582114,0.5420727,0.60756534,-0.58053553,0.5435045,0.60712796,-0.5796538,0.5460918,0.60457665,-0.5798886,0.5572777,0.59184,-0.5823804,0.5588099,0.59093434,-0.5818317,0.56047183,0.58943385,-0.5817551,0.5619941,0.58765215,-0.582089,0.5626596,0.5860064,-0.5831043,0.56876916,0.5807473,-0.5824382,0.5694623,0.58095473,-0.58155334,0.5721903,0.5810657,-0.578758,0.5726739,0.5820079,-0.57733124,0.57181895,0.58296937,-0.5772087,0.57140726,0.5838498,-0.57672626,0.57172054,0.58412373,-0.57613814,0.57214195,0.58420813,-0.575634,0.57567424,0.5830199,-0.5733123,0.5801788,0.58251923,-0.5692661,0.5817285,0.5818097,-0.5684096,0.58822703,0.5806356,-0.5628955,0.58932453,0.58086526,-0.56150883,0.5906068,0.58066684,-0.5603656,0.5920485,0.5801179,-0.55941194,0.5923932,0.5815061,-0.5576029,0.5934481,0.5815387,-0.55644596,0.59606874,0.5808632,-0.55434644,0.5982355,0.57997835,-0.55293703,0.5989359,0.5795416,-0.5526367,0.6005222,0.57795495,-0.55257684,0.6036142,0.5758088,-0.5514472,0.6060939,0.5738954,-0.5507216,0.6074813,0.5730974,-0.5500235,0.6088712,0.5721458,-0.54947704,0.6137627,0.5688072,-0.54749775,0.61534876,0.56806606,-0.54648596,0.6167193,0.5671273,-0.54591566,0.6202895,0.56487274,-0.54420555,0.6214154,0.56507313,-0.542711,0.62273663,0.56486005,-0.5414169,0.62355,0.5642425,-0.5411245,0.624372,0.56351966,-0.54092985,0.6247945,0.56297535,-0.54100883,0.6266312,0.55884165,-0.543166,0.6248478,0.5594917,-0.54454964,0.6244318,0.5588403,-0.54569453,0.6238507,0.5584402,-0.54676765,0.62286395,0.558689,-0.5476377,0.6217681,0.5592451,-0.5483149,0.61805284,0.5598476,-0.5518889,0.6162655,0.5570998,-0.5566477,0.615839,0.5568577,-0.5573615,0.6149526,0.5583857,-0.5568111,0.6139041,0.55965626,-0.55669254,0.61213946,0.56247306,-0.55579615,0.60944194,0.56429523,-0.5569124,0.6088215,0.5633395,-0.55855626,0.6079261,0.56274855,-0.56012505,0.6067047,0.5628803,-0.56131566,0.6037709,0.56395257,-0.56339884,0.60275066,0.56356126,-0.5648809,0.60178775,0.56416017,-0.5653094,0.60024804,0.564756,-0.56635064,0.59882057,0.56544435,-0.5671742,0.59855413,0.5654007,-0.56749886,0.5972738,0.5658983,-0.5683512,0.59613633,0.5662032,-0.56924117,0.59409904,0.56632894,-0.57124245,0.59294957,0.56679875,-0.5719703,0.5914197,0.5677448,-0.57261556,0.5893375,0.5692458,-0.5732718,0.588836,0.56947845,-0.57355607,0.58760566,0.56961924,-0.5746769,0.5862849,0.5700654,-0.5755828,0.5831893,0.5699547,-0.578828,0.58232313,0.5687315,-0.58089954,0.5814043,0.56828904,-0.5822513,0.5808654,0.5646906,-0.58627635,0.58267826,0.5637647,-0.58536786,0.5831989,0.5633584,-0.58524036,0.5835714,0.56183237,-0.586335,0.5848596,0.55929387,-0.58747727,0.5851214,0.5577168,-0.58871466,0.5849142,0.55638623,-0.5901777,0.58455956,0.5551634,-0.5916788,0.58470273,0.5538095,-0.59280497,0.5846069,0.55271345,-0.5939214,0.58253515,0.5517472,-0.59684825,0.57972836,0.55283487,-0.59857213,0.57663953,0.55597967,-0.59864306,0.57246256,0.5605649,-0.5983758,0.56846964,0.5629162,-0.5999731,0.56559026,0.5635154,-0.6021279,0.5647765,0.563873,-0.6025569,0.56410813,0.56468564,-0.6024219,0.5637594,0.5654506,-0.6020307,0.5639588,0.56589127,-0.6014296,0.56547606,0.56768656,-0.5983049,0.5594924,0.5740845,-0.59782535,0.560342,0.573272,-0.59780943,0.560761,0.57232475,-0.5983239,0.56119126,0.5707975,-0.59937847,0.5618252,0.5697544,-0.5997769,0.56155306,0.56940913,-0.60035944,0.5611407,0.5695884,-0.60057485,0.5606026,0.57093114,-0.59980196,0.5598641,0.57091576,-0.60050595,0.5599158,0.570225,-0.60111374,0.55928695,0.5701263,-0.60179245,0.55764997,0.5693299,-0.6040613,0.56042296,0.56815165,-0.6026026,0.5608449,0.56759673,-0.6027329,0.5552136,0.5687658,-0.6068306,0.553149,0.56852466,-0.60893834,0.55189496,0.5685744,-0.61002874,0.55073833,0.5684314,-0.61120623,0.54878855,0.5677911,-0.61355066,0.54719996,0.5697481,-0.6131551,0.5454168,0.571397,-0.6132096,0.5440653,0.5723632,-0.613509,0.54276925,0.5733928,-0.6136956,0.53828514,0.57393724,-0.6171265,0.53970355,0.5732161,-0.6165577,0.5403365,0.5717984,-0.6173192,0.5419634,0.5692683,-0.6182308,0.5419107,0.5685765,-0.6189131,0.5416603,0.56812006,-0.6195513,0.54096025,0.5682519,-0.6200417,0.5395737,0.56925637,-0.62032837,0.53897095,0.56979644,-0.6203566,0.53753555,0.57127464,-0.6202426,0.53637964,0.57295424,-0.61969376,0.5297157,0.5770491,-0.62162334,0.5295942,0.57560676,-0.62306243,0.5291229,0.5757085,-0.6233688,0.5280451,0.5767394,-0.6233298,0.5277009,0.57717925,-0.6232141,0.52769876,0.57941103,-0.6211415,0.5258607,0.58062935,-0.62156266,0.52562684,0.5809922,-0.62142134,0.5231042,0.5804927,-0.62401134,0.52441293,0.57960826,-0.623735,0.52533233,0.5785021,-0.62398815,0.52651584,0.5778103,-0.6236316,0.5266618,0.5768932,-0.6243569,0.52793735,0.57460773,-0.6253864,0.5281918,0.5737174,-0.6259887,0.5290147,0.5729605,-0.625987,0.52879685,0.57235897,-0.6267209,0.5280582,0.5721403,-0.6275429,0.5273203,0.5728229,-0.6275405,0.52417916,0.574955,-0.6282221,0.52209276,0.5757907,-0.62919325,0.52148455,0.5761676,-0.62935257,0.5208094,0.57673377,-0.6293931,0.5202566,0.57738733,-0.6292511,0.51527405,0.5829922,-0.62818205,0.5122867,0.5838948,-0.629785,0.51258105,0.5847102,-0.62878835,0.5115873,0.59212303,-0.6226305,0.5107764,0.5932165,-0.62225527,0.5103882,0.59405524,-0.62177354,0.5050592,0.60028523,-0.6201394,0.5042244,0.6007793,-0.62034017,0.5029267,0.6018436,-0.6203619,0.5018208,0.60341185,-0.61973387,0.49910125,0.6083076,-0.6171384,0.49790686,0.61150545,-0.61493886,0.49753737,0.6132187,-0.6135302,0.4906125,0.6208933,-0.61138445,0.4894077,0.6208706,-0.61237234,0.48818067,0.6212045,-0.61301273,0.48710564,0.6224853,-0.61256856,0.48609072,0.6243164,-0.6115104,0.4841884,0.62682825,-0.61044896,0.4834041,0.6274893,-0.6103913,0.48280588,0.6282064,-0.6101272,0.48176026,0.62925476,-0.60987335,0.48120916,0.629315,-0.6102461,0.48072898,0.6295568,-0.6103752,0.48024914,0.62986857,-0.6104313,0.47953328,0.63054085,-0.6103,0.47876316,0.6308292,-0.61060655,0.47794044,0.63228214,-0.60974765,0.47579056,0.6351189,-0.6084795,0.47437558,0.6375658,-0.60702366,0.47412798,0.6383428,-0.60640013,0.47350138,0.6393033,-0.6058776,0.47315294,0.6400055,-0.60540825,0.47293088,0.6407053,-0.6048414,0.4725949,0.6422325,-0.6034828,0.47244307,0.64368606,-0.6020513,0.47173277,0.6466721,-0.5994025,0.4720283,0.649098,-0.596541,0.46884474,0.6593612,-0.58773077,0.4673772,0.66137385,-0.5866372,0.4696541,0.6607069,-0.5855693,0.47743252,0.65441287,-0.5863463,0.48997837,0.6469879,-0.5842327,0.49380043,0.64259624,-0.58585936,0.4937932,0.6412502,-0.5873385,0.50005645,0.6307426,-0.5933864,0.52173316,0.6110219,-0.5953544,0.5427962,0.59860927,-0.58910036,0.5456615,0.59954345,-0.58549225,0.544206,0.60420936,-0.58204025,0.55576074,0.5928816,-0.5827704,0.56267,0.5844993,-0.58460504,0.58322346,0.58126056,-0.56743866,0.5913749,0.5803081,-0.55992705,0.6105173,0.57084787,-0.54900026,0.61215746,0.5696571,-0.5484105,0.6256633,0.55929816,-0.54381156,0.5796581,0.5686039,-0.5836832,0.55785555,0.57035094,-0.6029071,0.5577826,0.5683662,-0.6048458,0.5420974,0.5742073,-0.61352783,0.53552425,0.57496405,-0.61857104,0.5254767,0.5814069,-0.6211604,0.52210003,0.5812772,-0.624122,0.5159275,0.5825774,-0.62803054,0.5122851,0.59104705,-0.623079,0.4970222,0.6149682,-0.6121953,0.48227078,0.6289792,-0.60975415,0.47015905,0.65732706,-0.588958,0.47818753,0.653874,-0.58633226,0.48473018,0.6530889,-0.58181745,0.49689004,0.63416463,-0.59239817,0.5104555,0.6193509,-0.596523,0.5230915,0.6096008,-0.59561914,0.54484206,0.603454,-0.5822289,0.5870407,0.58063006,-0.56413823,0.6181003,0.5659721,-0.5455526,0.6192633,0.5651568,-0.5450787,0.6209991,0.55947334,-0.5489533,0.6182216,0.55994576,-0.55160016,0.5835145,0.5702152,-0.57824343,0.580169,0.56520885,-0.5864664,0.5712603,0.5617492,-0.5984142,0.5601697,0.5712138,-0.5999372,0.5574074,0.56967527,-0.6039595,0.54138666,0.57481205,-0.6135891,0.53032565,0.5778367,-0.62037045,0.52489096,0.58229476,-0.6208239,0.52564627,0.57412356,-0.6277564,0.5127642,0.5856044,-0.627806,0.50991774,0.5948618,-0.62138826,0.5058646,0.59967846,-0.62007,0.49246323,0.6202985,-0.61049956,0.48490906,0.6260982,-0.6106261,0.47185257,0.6539404,-0.59136885,0.4790234,0.65418404,-0.5853031,0.4931884,0.643078,-0.58584625,0.502433,0.62771297,-0.59459025,0.51180834,0.61762047,-0.59715766,0.51250064,0.61702245,-0.5971821,0.5295399,0.60485494,-0.59475875,0.5522556,0.59583205,-0.58309346,0.57260686,0.5814256,-0.57798415,0.57804775,0.5686235,-0.585259,0.57881564,0.5664125,-0.58664244,0.55731726,0.5703195,-0.60343444,0.52803916,0.5774868,-0.62264246,0.51947445,0.57920676,-0.6282244,0.51824176,0.5808486,-0.6277264,0.5072951,0.59807116,-0.62045354,0.472708,0.6498555,-0.5951764,0.47250372,0.65240717,-0.5925413,0.4711478,0.6592618,-0.5859979,0.48396423,0.6535367,-0.5819522,0.49169627,0.6446169,-0.5854091,0.49624687,0.6348806,-0.5921703,0.5245085,0.6083759,-0.5956254,0.5495904,0.59821326,-0.58317345,0.53871036,0.5749439,-0.61581707,0.5281167,0.5781351,-0.62197477,0.5216939,0.5819123,-0.62386984,0.5128823,0.5886212,-0.62488145,0.4929668,0.6199509,-0.6104462,0.4729645,0.6509217,-0.5938059,0.47097272,0.6587632,-0.58669907,0.47875002,0.6538211,-0.58593214,0.48339856,0.65402937,-0.5818689,0.49040776,0.6462618,-0.58467585,0.5259481,0.6072668,-0.5954877,0.58575803,0.5808056,-0.5652896,0.6107042,0.5638857,-0.55594355,0.5782155,0.5670817,-0.5865878,0.56573075,0.5689691,-0.5968441,0.5396102,0.5753489,-0.6146499,0.5315287,0.5778305,-0.6193458,0.51268303,0.5897945,-0.62393796,0.48220038,0.6553693,-0.5813552,0.49350148,0.6408479,-0.58802223,0.54757065,0.60113215,-0.5820709,0.5776832,0.56809485,-0.5861317,0.56451285,0.5705638,-0.5964748,0.53494745,0.5757886,-0.61830306,0.5219587,0.5825961,-0.6230096,0.49631143,0.61638844,-0.611343,0.49530682,0.61770695,-0.6108267,0.54501605,0.5986612,-0.5869943,0.5876483,0.5773264,-0.5668895,0.55979973,0.57442707,-0.5972083,0.53427124,0.5765855,-0.61814517,0.5328927,0.57754457,-0.6184397,0.522341,0.58309054,-0.622226,0.48420563,0.6344608,-0.6024985,0.47152954,0.6574105,-0.587768,0.58925986,0.5725501,-0.57005185,0.48471266,0.633813,-0.6027726,0.4727258,0.6559072,-0.5884862,0.54390734,0.59836894,-0.5883191,0.5240645,0.58294654,-0.62091035,0.5231838,0.58309263,-0.62151563,0.4846464,0.6363566,-0.6001401,0.54337543,0.59837717,-0.58880216,0.56727356,0.58140624,-0.58323884,0.5850513,0.5702922,-0.5766124,0.5420643,0.5786947,-0.6093264,0.4928238,0.62401474,-0.6064077,0.4828514,0.64009887,-0.5976019,0.502637,0.6076618,-0.6149009,0.47362116,0.65505767,-0.5887125,0.5657667,0.5822207,-0.5838897,0.5620021,0.5733495,-0.5961744,0.54234886,0.578629,-0.6091356,0.5603596,0.5742952,-0.5968099,0.4987012,0.62009764,-0.6056203,0.48578396,0.638175,-0.59728265,0.5114654,0.60168487,-0.61349696,0.49364495,0.6394291,-0.58944464,0.5611784,0.5739051,-0.59641576,0.4864535,0.63752526,-0.5974316,0.4862303,0.6377419,-0.597382,0.4991458,0.61965626,-0.60570586,0.5116867,0.60146016,-0.6135327,0.49443468,0.63775223,-0.59059846,0.5461443,0.5947248,-0.5899397,0.5095234,0.61071515,-0.606146,0.5640789,0.5832934,-0.5844517,0.54685163,0.59412754,-0.5898862,0.4957525,0.6355895,-0.59182394,0.5101618,0.6096042,-0.60672694,0.5477003,0.5935965,-0.5896335,0.54522985,0.58258367,-0.60276085,0.51040334,0.6092403,-0.60688937,0.5134556,0.60556936,-0.6079877,0.51809955,0.6004246,-0.6091495,0.5184446,0.60012066,-0.60915554,0.7516834,0.41494602,-0.5126322,0.7511053,0.41574684,-0.5128308,0.75117826,0.41607618,-0.5124567,0.7531651,0.4139284,-0.5112784,0.75350296,0.41421083,-0.5105514,0.75402254,0.413674,-0.51021934,0.7540948,0.4122715,-0.5112468,0.7537239,0.41207188,-0.5119541,0.75315213,0.41243765,-0.5125007,0.7527645,0.41403624,-0.51178074,0.7573378,0.4109744,-0.5074835,0.75669485,0.41119817,-0.5082608,0.7560854,0.41189027,-0.50860727,0.75579655,0.41250044,-0.508542,0.7569294,0.41333404,-0.5061747,0.7572251,0.41296625,-0.5060326,0.7574936,0.4122854,-0.5061859,0.7583178,0.41179705,-0.5053486,0.75848776,0.411324,-0.5054788,0.75790554,0.4112487,-0.50641257,0.74082154,0.41813797,-0.52568436,0.7398879,0.4185514,-0.5266693,0.7400757,0.41908538,-0.5259804,0.7405267,0.41952628,-0.52499324,0.74042124,0.420282,-0.52453744,0.7405911,0.42059124,-0.5240494,0.7415584,0.41838259,-0.52444947,0.70299643,0.44786724,-0.552459,0.70178527,0.44858262,-0.55341756,0.70086366,0.44964176,-0.553726,0.7000999,0.45106608,-0.5535337,0.70040894,0.45215267,-0.5522548,0.70130503,0.45082882,-0.5521998,0.7027471,0.44949716,-0.55145156,0.7032466,0.44881636,-0.5513693,0.7040291,0.44849044,-0.5506354,0.7041677,0.4489984,-0.5500439,0.70491546,0.4492192,-0.5489046,0.70514965,0.4489283,-0.5488418,0.70545924,0.44824356,-0.5490036,0.7074926,0.44539374,-0.5487064,0.7082234,0.44516551,-0.5479483,0.70901394,0.44319487,-0.5485231,0.7103689,0.44149283,-0.54814243,0.71069074,0.44079307,-0.5482884,0.7110217,0.43985644,-0.5486114,0.7102759,0.43989477,-0.549546,0.7092272,0.44076246,-0.55020475,0.70908636,0.44105542,-0.5501515,0.70778,0.44336757,-0.54997516,0.7071855,0.44351116,-0.5506238,0.7072062,0.44433132,-0.5499355,0.7068475,0.44529915,-0.54961383,0.70595324,0.44551808,-0.55058485,0.7046472,0.44672248,-0.5512816,0.703675,0.44701362,-0.5522865,0.70715016,0.4456676,-0.5489254,0.709059,0.44164193,-0.54971606,0.7087322,0.44236812,-0.5495536,0.70388675,0.44843483,-0.55086255,0.7055866,0.4470678,-0.5497981,0.70516366,0.44766462,-0.549855,0.6884896,0.46488047,-0.5566581,0.6879669,0.4651634,-0.5570678,0.68747747,0.46592674,-0.5570342,0.6874777,0.46655843,-0.55650485,0.6872188,0.46808785,-0.55553955,0.68772346,0.46789888,-0.555074,0.6883166,0.46704158,-0.5550607,0.6888761,0.46527126,-0.5558529,0.6818009,0.47143883,-0.55936843,0.6804424,0.47268897,-0.5599673,0.68028194,0.4733932,-0.5595671,0.6799974,0.47366273,-0.5596849,0.679282,0.47406867,-0.5602097,0.6782776,0.47502804,-0.5606138,0.67730045,0.47579733,-0.5611425,0.6764934,0.4761174,-0.56184417,0.67621243,0.4766928,-0.5616945,0.6761518,0.47742683,-0.5611438,0.6773141,0.4767887,-0.560284,0.677612,0.47656474,-0.56011426,0.677968,0.47610083,-0.560078,0.67868006,0.4755859,-0.5596529,0.67913485,0.47555143,-0.5591303,0.6807481,0.47500414,-0.5576316,0.6817397,0.47429672,-0.5570221,0.6819681,0.47381955,-0.5571486,0.6823926,0.47351855,-0.5568847,0.68298644,0.4733159,-0.55632865,0.68222684,0.47256428,-0.55789745,0.68244416,0.4707284,-0.55918217,0.68235964,0.47108775,-0.5589827,0.68256134,0.47170037,-0.5582193,0.6825548,0.47218412,-0.5578181,0.6830824,0.47243506,-0.55695915,0.68327653,0.4710292,-0.557911,0.540781,0.54530424,-0.6404679,0.5405227,0.5454593,-0.640554,0.5399292,0.546007,-0.64058787,0.54043275,0.5465295,-0.6397171,0.54080904,0.54646957,-0.6394503,0.5410145,0.54620683,-0.6395009,0.5411175,0.5457835,-0.6397751,0.97081447,0.022083232,-0.23881283,0.9701614,0.023235928,-0.24134402,0.9700355,0.023825493,-0.24179201,0.9701743,0.02429671,-0.24118745,0.9703824,0.024710719,-0.24030688,0.97074974,0.025253428,-0.2387618,0.9712275,0.024841094,-0.2368545,0.97149456,0.02313284,-0.23593041,0.94638884,-0.18333647,-0.26596227,0.9464749,-0.18211487,-0.26649478,0.9467576,-0.18104552,-0.26621908,0.9468659,-0.18136746,-0.26561397,0.9469699,-0.18141599,-0.2652097,0.94717747,-0.18154341,-0.2643801,0.9470694,-0.1824501,-0.26414293,0.9467527,-0.18266459,-0.26512805,0.9705731,-0.21083501,-0.11634623,0.9706057,-0.21064681,-0.11641563,0.9706752,-0.21037178,-0.11633335,0.97070783,-0.21023355,-0.11631039,0.9707438,-0.21006526,-0.116314694,0.9707574,-0.21006526,-0.11620059,0.9706644,-0.21048343,-0.11622126,0.970544,-0.21097834,-0.11632936,0.9704495,-0.2112799,-0.11656976,0.9704358,-0.2111149,-0.11698251,0.9704714,-0.21100828,-0.11687941,0.9704832,-0.21109988,-0.116615705,0.97052485,-0.21101493,-0.11642272,0.9703241,-0.21132149,-0.117534615,0.97032076,-0.2112249,-0.1177355,0.970343,-0.21106328,-0.11784231,0.9703827,-0.21086833,-0.117863916,0.9704354,-0.21066837,-0.117788024,0.97037715,-0.21109498,-0.11750405,0.97039807,-0.21110663,-0.117310226,0.9703764,-0.21119821,-0.11732439,0.97035986,-0.2112482,-0.11737109,0.97039545,-0.21086997,-0.11775629,0.97037584,-0.21101493,-0.11765825,0.69541633,0.43533766,0.57173175,0.69529,0.43653646,0.5709708,0.6946885,0.4384079,0.5702687,0.693888,0.44032252,0.56976795,0.6929323,0.44147903,0.57003605,0.6929593,0.44214338,0.56948805,0.6927078,0.44223288,0.5697246,0.6918747,0.44195923,0.5709478,0.69192725,0.44136202,0.5713461,0.69308096,0.43928775,0.5715462,0.69339466,0.43783033,0.5722835,0.69495153,0.43575734,0.5719772,0.84919447,0.37780443,-0.3689615,0.8490764,0.37786758,-0.36916834,0.84865546,0.37818784,-0.3698077,0.84863174,0.37820604,-0.3698438,0.45405418,-0.08424173,-0.88698256,0.4529568,-0.08291862,-0.88766813,0.45212537,-0.08135252,-0.8882367,0.45183602,-0.07978787,-0.88852584,0.45191815,-0.07804797,-0.88863856,0.45092756,-0.076574676,-0.88926977,0.45062527,-0.07589146,-0.88948154,0.4508132,-0.07414937,-0.8895332,0.45256487,-0.071596034,-0.88885266,0.46269244,-0.062475897,-0.88431466,0.46350974,-0.061414357,-0.883961,0.46587834,-0.059486818,-0.8828469,0.46770164,-0.057213563,-0.88203275,0.46820948,-0.05671667,-0.8817954,0.4717169,-0.055348393,-0.8800112,0.47356245,-0.05360576,-0.8791274,0.47518954,-0.0523888,-0.8783225,0.47690663,-0.05133343,-0.8774536,0.47939354,-0.050162278,-0.8761653,0.48074493,-0.050075486,-0.87542945,0.48157078,-0.0486591,-0.8750554,0.48434764,-0.046902176,-0.8736175,0.48698142,-0.04489133,-0.8722579,0.48668644,-0.04612244,-0.8723583,0.4869101,-0.04733121,-0.8721687,0.4881224,-0.04778405,-0.8714661,0.48655716,-0.048497405,-0.87230164,0.4779419,-0.052979372,-0.8767923,0.47699517,-0.054102737,-0.87723917,0.4752332,-0.055011544,-0.8781385,0.47185403,-0.058224317,-0.8797521,0.4704934,-0.059308082,-0.88040817,0.46903506,-0.060237084,-0.88112295,0.468254,-0.06050422,-0.88152,0.4574274,-0.07595267,-0.88599735,0.45762408,-0.0772272,-0.88578564,0.4575355,-0.07843196,-0.8857255,0.45653155,-0.080822475,-0.88602865,0.45576978,-0.081928395,-0.88631916,0.45481476,-0.08300867,-0.88670915,0.48472592,-0.048499074,-0.87332046,0.466504,-0.060824066,-0.8824253,0.45741916,-0.074666016,-0.88611096,0.4579498,-0.07205167,-0.8860533,0.4656342,-0.061150685,-0.88286203,0.4832001,-0.0493554,-0.8741176,0.45910588,-0.06966646,-0.8856457,0.46302965,-0.063977905,-0.88403076,0.46425146,-0.062484346,-0.88349664,0.4702512,-0.07429726,-0.8793996,0.4709747,-0.07353403,-0.87907654,0.4727582,-0.07323823,-0.87814337,0.47445256,-0.073251784,-0.877228,0.47492194,-0.074062586,-0.8769059,0.47513938,-0.07496522,-0.87671137,0.47499228,-0.0757708,-0.8767218,0.47427905,-0.0860691,-0.8761573,0.4763118,-0.08595532,-0.87506497,0.47720355,-0.08613525,-0.8745613,0.47801983,-0.08646637,-0.8740827,0.48078406,-0.08911839,-0.8722984,0.4817638,-0.09071075,-0.8715935,0.48238212,-0.092730425,-0.87103873,0.48413464,-0.09492785,-0.86982894,0.48500532,-0.095041536,-0.8693313,0.48587427,-0.09534022,-0.8688133,0.4882363,-0.096208826,-0.8673921,0.48989528,-0.095155224,-0.8665726,0.49162355,-0.09537926,-0.86556864,0.49635527,-0.089520775,-0.8634915,0.4954768,-0.08838328,-0.8641129,0.49624133,-0.08747154,-0.8637669,0.49673212,-0.08736122,-0.86349595,0.49738854,-0.087758556,-0.8630777,0.49781042,-0.08958192,-0.862647,0.49830142,-0.094938055,-0.86179024,0.5024691,-0.096254624,-0.8592205,0.50321484,-0.096123986,-0.85879856,0.5055076,-0.09711817,-0.857339,0.5089462,-0.09711473,-0.8553026,0.5107993,-0.09623944,-0.85429627,0.5126918,-0.09557767,-0.8532362,0.5158772,-0.096047685,-0.8512611,0.5167721,-0.09572873,-0.85075414,0.5176464,-0.09561339,-0.8502355,0.5191238,-0.09598326,-0.8492925,0.5211242,-0.09535553,-0.8481373,0.52235156,-0.09662613,-0.847238,0.5223514,-0.09878892,-0.8469886,0.5213183,-0.10044931,-0.84742975,0.5196743,-0.101149656,-0.84835565,0.51794636,-0.10159047,-0.8493591,0.5151561,-0.10307739,-0.8508756,0.51063186,-0.10655904,-0.85317075,0.5102116,-0.10674371,-0.8533991,0.5048953,-0.10669452,-0.8565611,0.50303894,-0.10905673,-0.85735554,0.5022006,-0.109568276,-0.85778165,0.5007263,-0.10974956,-0.8586199,0.49922442,-0.10961235,-0.85951155,0.49412102,-0.10954967,-0.8624635,0.4905542,-0.10932098,-0.86452615,0.4898838,-0.10909904,-0.86493427,0.48822376,-0.10778753,-0.8660366,0.48647934,-0.10712169,-0.86710024,0.48569664,-0.106514946,-0.8676136,0.4833447,-0.10500142,-0.8691102,0.48148516,-0.10478957,-0.8701673,0.48078918,-0.104470894,-0.8705904,0.47873875,-0.103138454,-0.8718782,0.4772558,-0.10173456,-0.87285566,0.47594294,-0.10014235,-0.8737562,0.47548097,-0.099374086,-0.8740953,0.47513503,-0.09853114,-0.87437886,0.47517195,-0.097425215,-0.87448263,0.4719486,-0.0966024,-0.8763176,0.46932167,-0.09697223,-0.8776865,0.46777126,-0.09634623,-0.8785826,0.4661605,-0.09512128,-0.8795717,0.46522596,-0.09336175,-0.8802547,0.4663245,-0.09145069,-0.879874,0.46766996,-0.0897466,-0.87933517,0.4674785,-0.08722203,-0.8796909,0.46513036,-0.08703689,-0.8809531,0.46438473,-0.08679415,-0.88137025,0.4637574,-0.08636792,-0.8817424,0.46240863,-0.08406343,-0.88267297,0.46171734,-0.08248215,-0.8831839,0.46173048,-0.080708645,-0.88334084,0.4624353,-0.07829945,-0.883189,0.46187985,-0.07568748,-0.88370717,0.4635301,-0.07533908,-0.8828726,0.4651249,-0.07472046,-0.882086,0.46640137,-0.073450685,-0.8815184,0.46863765,-0.07527453,-0.8801775,0.4694482,-0.074922666,-0.8797755,0.48659846,-0.09602728,-0.8683321,0.4931671,-0.096465,-0.86456966,0.49672502,-0.09039674,-0.8631875,0.50021166,-0.09626483,-0.86053556,0.51837,-0.09597471,-0.8497538,0.50807965,-0.10590816,-0.854774,0.4849872,-0.10576758,-0.8681018,0.4746889,-0.0967551,-0.87481934,0.4621983,-0.07950743,-0.8832051,0.5165134,-0.10222635,-0.8501551,0.50644374,-0.105884455,-0.85574716,0.47280833,-0.08512653,-0.8770437,0.49676362,-0.09253695,-0.86293846,0.4678819,-0.08844954,-0.8793539,0.4730778,-0.08084279,-0.8773038,0.4833542,-0.09452068,-0.8703072,0.49615753,-0.0946123,-0.86306214,0.50724036,-0.09730479,-0.85629374,0.49492103,-0.096256405,-0.8635901,0.496719,-0.099508,-0.86218816,0.4727753,-0.083000235,-0.87726533,0.49648243,-0.099173136,-0.862363,0.61940235,-0.16024798,-0.7685449,0.6182899,-0.1601302,-0.7694647,0.6173405,-0.1593327,-0.77039194,0.6158635,-0.15903153,-0.77163535,0.6142711,-0.15971127,-0.7727635,0.6128464,-0.16007642,-0.7738183,0.61141485,-0.16009831,-0.77494544,0.6080312,-0.15984932,-0.77765435,0.6017521,-0.16051885,-0.78238624,0.6002654,-0.16166103,-0.7832925,0.59869903,-0.16208322,-0.7844032,0.5931757,-0.15802847,-0.78941095,0.591219,-0.15705398,-0.7910715,0.5894151,-0.15576282,-0.79267126,0.58920604,-0.15485193,-0.79300517,0.58931154,-0.15301783,-0.7932827,0.5895815,-0.15233406,-0.7932137,0.5907171,-0.15058693,-0.7927024,0.5920147,-0.14905506,-0.7920235,0.59370136,-0.14736943,-0.79107577,0.59437966,-0.14703563,-0.79062843,0.595103,-0.14684013,-0.7901205,0.5982259,-0.14513376,-0.78807485,0.6012889,-0.14497182,-0.78577024,0.60385776,-0.14457549,-0.783871,0.60437065,-0.14349268,-0.78367466,0.60493445,-0.14260025,-0.7834025,0.60421705,-0.14276733,-0.78392553,0.6038346,-0.14357361,-0.78407294,0.60307854,-0.14463624,-0.7844595,0.6020213,-0.14473061,-0.7852537,0.60082686,-0.14414033,-0.78627646,0.59817123,-0.14414033,-0.78829867,0.5967926,-0.14460582,-0.7892577,0.59418446,-0.14455013,-0.7912333,0.59166867,-0.14373218,-0.793265,0.5893764,-0.14331725,-0.7950444,0.5871598,-0.14263578,-0.79680514,0.58773,-0.14112061,-0.7966545,0.5884056,-0.13967606,-0.7964103,0.5867451,-0.13909552,-0.7977359,0.58510613,-0.13966095,-0.7988402,0.5843502,-0.13967606,-0.7993907,0.5836047,-0.1394787,-0.7999695,0.5843741,-0.13816875,-0.7996351,0.5836402,-0.13834101,-0.80014116,0.5829511,-0.13820937,-0.80066615,0.5862939,-0.131388,-0.79937273,0.58763075,-0.12984009,-0.7986436,0.58577704,-0.13139307,-0.7997506,0.5849185,-0.13253185,-0.800191,0.58394414,-0.13353352,-0.80073595,0.5828459,-0.13408925,-0.80144286,0.5804056,-0.13497601,-0.8030634,0.5792379,-0.13510936,-0.8038837,0.57867825,-0.13423277,-0.80443335,0.57759583,-0.13341527,-0.8053467,0.57684827,-0.13370247,-0.8058348,0.5764625,-0.13362981,-0.80612284,0.5742362,-0.13206547,-0.8079675,0.5729689,-0.13268557,-0.80876523,0.5716873,-0.13299136,-0.80962145,0.570418,-0.13280207,-0.8105473,0.5699825,-0.13456719,-0.81056243,0.5694212,-0.13531205,-0.810833,0.5686374,-0.13575272,-0.8113092,0.56706464,-0.13620198,-0.8123341,0.56410676,-0.13678111,-0.81429386,0.5614489,-0.1379645,-0.81592953,0.5600678,-0.13820252,-0.8168379,0.5570623,-0.13859248,-0.8188245,0.55646676,-0.1390483,-0.8191522,0.5531709,-0.14049286,-0.8211356,0.55246955,-0.14114599,-0.8214957,0.5519606,-0.14208403,-0.8216761,0.55141246,-0.14280614,-0.8219189,0.5496809,-0.14511512,-0.822674,0.5488638,-0.14704247,-0.82287735,0.5463034,-0.150287,-0.8239942,0.5451666,-0.15211834,-0.824411,0.5433324,-0.15559278,-0.8249732,0.54227465,-0.1568722,-0.82542676,0.5398786,-0.15794608,-0.82679147,0.5390493,-0.15801506,-0.8273192,0.5383683,-0.15746132,-0.82786804,0.5387086,-0.15908708,-0.8273357,0.53863853,-0.16069382,-0.8270707,0.5370963,-0.16311748,-0.8275991,0.5363541,-0.16377501,-0.8279504,0.5295255,-0.1700449,-0.8310761,0.5285083,-0.17214236,-0.83129174,0.5275433,-0.17295668,-0.8317356,0.5266655,-0.17387311,-0.8321007,0.52512276,-0.17485327,-0.83287,0.52332765,-0.17515033,-0.8339368,0.52091247,-0.17585331,-0.83529985,0.52019095,-0.17578794,-0.8357631,0.51773983,-0.17585167,-0.8372704,0.515971,-0.17683487,-0.83815473,0.5152712,-0.17693718,-0.83856356,0.51293886,-0.17671402,-0.8400392,0.5120489,-0.17635168,-0.84065807,0.5111723,-0.17651607,-0.84115696,0.50923157,-0.17766856,-0.8420909,0.5077401,-0.17803244,-0.8429143,0.5015544,-0.17862621,-0.8464843,0.49864224,-0.17946291,-0.8480266,0.49705875,-0.17944615,-0.84895915,0.4918736,-0.18253894,-0.8513166,0.4912547,-0.18355936,-0.8514545,0.4893177,-0.18430659,-0.85240793,0.48661944,-0.18489286,-0.85382444,0.48505127,-0.18478402,-0.8547398,0.4842244,-0.18458462,-0.8552516,0.48232472,-0.1832242,-0.85661644,0.48195004,-0.18254386,-0.85697246,0.48262665,-0.18196237,-0.8567154,0.4852824,-0.178928,-0.8558538,0.48238373,-0.17945458,-0.8573809,0.48159888,-0.17910908,-0.8578942,0.4793524,-0.17770375,-0.8594432,0.4820557,-0.178066,-0.8578548,0.48404962,-0.17720057,-0.8569107,0.4866879,-0.17690703,-0.8554757,0.48792538,-0.17644732,-0.85486555,0.4891402,-0.17580637,-0.85430324,0.49095118,-0.17516206,-0.8533963,0.49425223,-0.17387147,-0.8517531,0.49516153,-0.17251682,-0.8515004,0.49612537,-0.17139016,-0.85116684,0.4947668,-0.16970399,-0.8522948,0.49383074,-0.16953598,-0.8528708,0.49302554,-0.16912618,-0.8534179,0.49270466,-0.16828617,-0.85376924,0.49330363,-0.167814,-0.8535163,0.49495533,-0.16728644,-0.85266316,0.49661744,-0.16695699,-0.8517608,0.50507855,-0.16153327,-0.8478223,0.5045352,-0.15954982,-0.8485211,0.5049335,-0.15765826,-0.84863776,0.50571966,-0.15697321,-0.84829664,0.5065813,-0.15668535,-0.8478355,0.50723267,-0.15672573,-0.8474386,0.5116431,-0.15797633,-0.8445501,0.5157726,-0.15537551,-0.8425183,0.5172123,-0.1511665,-0.84240144,0.5177942,-0.15063915,-0.84213835,0.5206618,-0.14797463,-0.84084165,0.5207824,-0.14711322,-0.8409182,0.52129024,-0.14502408,-0.8409664,0.52232563,-0.1419423,-0.8408498,0.5227691,-0.14096376,-0.8407388,0.5257296,-0.13874784,-0.83926004,0.52745086,-0.13809283,-0.8382875,0.5317828,-0.13417536,-0.8361842,0.5331578,-0.13253693,-0.83556974,0.5346252,-0.13111088,-0.83485675,0.5373678,-0.12841706,-0.83351356,0.5388594,-0.12476171,-0.8331056,0.5412318,-0.12063606,-0.83217496,0.5391622,-0.11704654,-0.8340289,0.53569055,-0.11740537,-0.8362127,0.53053707,-0.1170804,-0.83953714,0.5290799,-0.116733395,-0.84050447,0.52861,-0.11601909,-0.84089893,0.52859694,-0.11409054,-0.841171,0.5292233,-0.11100143,-0.8411904,0.5296124,-0.10999863,-0.8410772,0.5302115,-0.109587,-0.84075344,0.53072387,-0.10906005,-0.84049875,0.53196114,-0.107214846,-0.8399538,0.53332347,-0.10551674,-0.8393047,0.53406394,-0.1048946,-0.8389117,0.5355197,-0.10394199,-0.83810186,0.5362088,-0.10367416,-0.8376943,0.53808117,-0.103743635,-0.83648425,0.54123604,-0.1031266,-0.8345229,0.5506852,-0.0978713,-0.82895535,0.55361474,-0.09662957,-0.8271478,0.5566296,-0.095794946,-0.8252192,0.5587632,-0.09534699,-0.8238281,0.56037366,-0.09415077,-0.8228712,0.55989206,-0.09024905,-0.8236358,0.5602084,-0.08525398,-0.8239528,0.5605679,-0.08407876,-0.8238292,0.5671183,-0.07646247,-0.8200795,0.5718605,-0.074552126,-0.8169563,0.5729217,-0.07303255,-0.81634974,0.5743378,-0.071523026,-0.8154879,0.5758909,-0.070263185,-0.8145016,0.5774965,-0.06963578,-0.81341785,0.5786652,-0.06824315,-0.81270504,0.57904136,-0.06723649,-0.812521,0.57972485,-0.06671445,-0.8120765,0.5804604,-0.0664423,-0.8115732,0.58120364,-0.066321574,-0.811051,0.588143,-0.064488135,-0.80618185,0.5894687,-0.06309171,-0.80532354,0.59085405,-0.062326226,-0.8043674,0.59363073,-0.05984916,-0.80250895,0.59548146,-0.05922478,-0.801183,0.5989734,-0.058523737,-0.79862744,0.60057235,-0.058346774,-0.79743874,0.61186105,-0.05379122,-0.789134,0.6150339,-0.051701058,-0.78680384,0.6156978,-0.051522363,-0.7862961,0.61709833,-0.051153064,-0.7852217,0.6191955,-0.049634602,-0.7836666,0.62614,-0.04584831,-0.7783615,0.6272461,-0.045560483,-0.7774874,0.6286224,-0.045540117,-0.7763762,0.6023146,-0.16020927,-0.78201663,0.606554,-0.14255649,-0.7821573,0.5995654,-0.14387727,-0.78728694,0.5779435,-0.1335842,-0.8050693,0.5763124,-0.13222428,-0.8064618,0.5576967,-0.13835116,-0.8184334,0.55077225,-0.14343028,-0.82223946,0.5195006,-0.17549255,-0.8362544,0.4955113,-0.17971282,-0.8498069,0.49242702,-0.18193729,-0.8511254,0.48446012,-0.1809617,-0.8558921,0.49279398,-0.17469211,-0.85243,0.5008072,-0.16656712,-0.8493807,0.52040577,-0.14874668,-0.840864,0.53624266,-0.12990439,-0.8340076,0.5862811,-0.06598828,-0.8074156,0.61638826,-0.05150879,-0.7857559,0.6046712,-0.15936294,-0.7803692,0.5960047,-0.15992662,-0.7868938,0.6026232,-0.14555529,-0.78463936,0.60467523,-0.14206715,-0.7836994,0.58878064,-0.139185,-0.7962191,0.5883395,-0.13890816,-0.7965934,0.5866253,-0.13049583,-0.79927576,0.57550645,-0.13169217,-0.8071242,0.565458,-0.13642648,-0.81341565,0.53272235,-0.1664176,-0.8297663,0.530988,-0.16805433,-0.8305477,0.49424207,-0.18049905,-0.8503792,0.4962473,-0.17031027,-0.8513126,0.5051125,-0.16344373,-0.84743583,0.51476985,-0.15732664,-0.8427694,0.52895606,-0.13703428,-0.8375125,0.5689322,-0.07637582,-0.8188302,0.5706726,-0.075833686,-0.8176687,0.6037882,-0.15958677,-0.781007,0.4857682,-0.1794764,-0.8554633,0.5399485,-0.10357408,-0.83530116,0.6021232,-0.057924774,-0.7962992,0.5040891,-0.16501063,-0.8477415,0.54144335,-0.11899465,-0.8322736,0.58555347,-0.06636404,-0.8079127,0.6071315,-0.0559015,-0.7926326,0.6056443,-0.14217855,-0.7829306,0.5132938,-0.15802011,-0.8435396,0.5829817,-0.06659194,-0.80975175,0.6210767,-0.13407318,-0.77219695,0.53242475,-0.158774,-0.8314534,0.49354365,-0.17436321,-0.8520634,0.50168115,-0.16623269,-0.84893036,0.5414513,-0.1198441,-0.8321465,0.58476275,-0.06653925,-0.8084708,0.5726677,-0.080352776,-0.8158402,0.6072759,-0.06295132,-0.7919931,0.6218002,-0.12527834,-0.77309114,0.53278154,-0.15844846,-0.8312869,0.5730673,-0.0802652,-0.81556815,0.6071349,-0.06649167,-0.7918119,0.62247497,-0.116472684,-0.77392447,0.6193089,-0.13778396,-0.7729631,0.62535876,-0.09510776,-0.7745198,0.5236577,-0.15745118,-0.8372525,0.5948589,-0.080392696,-0.7997999,0.6117052,-0.07350763,-0.78766334,0.577745,-0.087273814,-0.81153804,0.6227314,-0.11294749,-0.7742406,0.6254644,-0.093341336,-0.7746494,0.6194613,-0.13602637,-0.7731523,0.62567,-0.08980763,-0.77490103,0.5240053,-0.15720467,-0.8370813,0.5481606,-0.11189751,-0.82885396,0.5940786,-0.08099155,-0.80031925,0.57734877,-0.08757307,-0.8117878,0.61132175,-0.073807225,-0.7879329,0.5765554,-0.08817156,-0.8122867,0.61232066,-0.12363279,-0.780883,0.61786646,-0.10466414,-0.77928585,0.62318593,-0.08565721,-0.77736866,0.53409827,-0.14891514,-0.832204,0.58382756,-0.09756509,-0.805994,0.6063193,-0.08210209,-0.79097164,0.56083226,-0.1130047,-0.82018113,0.6083679,-0.09827928,-0.7875466,0.6028736,-0.11726154,-0.7891725,0.59809875,-0.11407408,-0.7932622,0.6184291,-0.08245958,-0.7815023,0.5360727,-0.14796625,-0.8311029,0.5832912,-0.09831143,-0.80629164,0.5605574,-0.11337732,-0.8203176,0.6060586,-0.08247573,-0.79113257,0.5600072,-0.11412228,-0.8205901,0.58908826,-0.11546589,-0.7997766,0.6024193,-0.09920873,-0.7919903,0.6154857,-0.08292504,-0.7837734,0.55603725,-0.13079828,-0.820801,0.5534553,-0.13135338,-0.8224558,0.5273889,-0.101646446,-0.8435218,0.526802,-0.10151421,-0.8439043,0.52634877,-0.10044243,-0.84431523,0.5262237,-0.09845486,-0.84462726,0.52657247,-0.097783156,-0.8444879,0.5297477,-0.09568637,-0.8427404,0.5305088,-0.09571342,-0.8422585,0.53065985,-0.096236,-0.8421038,0.5305866,-0.09805626,-0.84193987,0.5291005,-0.100174494,-0.8426255,0.5276886,-0.1008579,-0.84342897,0.55795467,-0.08290841,-0.8257196,0.55701274,-0.08239376,-0.8264068,0.5565895,-0.08089721,-0.8268396,0.55687296,-0.079731785,-0.82676196,0.5574995,-0.07914214,-0.82639635,0.5580215,-0.07940381,-0.8260188,0.55882704,-0.080271974,-0.82539004,0.55901605,-0.081372835,-0.8251542,0.55866957,-0.082512684,-0.82527566,0.45875794,-0.056190845,-0.8867828,0.45841905,-0.054660883,-0.88705367,0.45895094,-0.053081512,-0.8868745,0.46000788,-0.0534253,-0.88630617,0.46040598,-0.054002274,-0.8860644,0.4597268,-0.055295665,-0.8863372,0.46746692,-0.05229856,-0.8824622,0.46732292,-0.05141855,-0.8825902,0.46771395,-0.05091472,-0.88241225,0.46928203,-0.049644843,-0.88165176,0.46958122,-0.050078936,-0.8814679,0.46931675,-0.05052493,-0.8815832,0.46794802,-0.05224749,-0.88221025,0.5033815,-0.027732555,-0.8636191,0.5033563,-0.027102176,-0.8636538,0.50398934,-0.024967264,-0.8633489,0.5053939,-0.02376945,-0.8625613,0.5061793,-0.02361607,-0.8621049,0.5066656,-0.024566844,-0.86179256,0.5066808,-0.025682887,-0.8617511,0.504772,-0.027507693,-0.8628143,0.5044748,-0.02741391,-0.86299115,0.47680533,-0.17335786,-0.86174464,0.47675967,-0.17259902,-0.86192214,0.47980148,-0.17025153,-0.86070025,0.48058257,-0.16910763,-0.86049,0.48123124,-0.16864562,-0.8602181,0.48093334,-0.16976778,-0.860164,0.4797092,-0.17151947,-0.8604999,0.47905254,-0.17309932,-0.8605494,0.47816136,-0.1736213,-0.8609398,0.47792104,-0.1752393,-0.8607454,0.47456995,-0.17637855,-0.86236537,0.473683,-0.1769942,-0.86272675,0.47304356,-0.17290454,-0.8639061,0.47370848,-0.17231873,-0.8636588,0.47459942,-0.1727115,-0.8630911,0.4761972,-0.17399403,-0.8619526,0.47555783,-0.17399567,-0.86230516,0.48816854,-0.16536711,-0.8569395,0.48799333,-0.16494173,-0.8571212,0.48779088,-0.16326544,-0.85755724,0.48802423,-0.16244823,-0.85757965,0.4886952,-0.16098656,-0.85747325,0.49044803,-0.15999064,-0.85665846,0.49147,-0.16090749,-0.8559007,0.49170223,-0.16267018,-0.855434,0.48906913,-0.16505437,-0.85648614,0.47757572,-0.15183873,-0.8653707,0.47730577,-0.14898433,-0.8660155,0.4776987,-0.14818707,-0.8659356,0.4778089,-0.14640853,-0.8661774,0.47821492,-0.14653152,-0.86593246,0.47884697,-0.14695638,-0.86551106,0.47937942,-0.14822079,-0.86500055,0.47808623,-0.15025659,-0.86536497,0.47849795,-0.15174942,-0.86487675,0.47722274,-0.15307015,-0.86534846,0.47814763,-0.14899436,-0.86554927,0.47805396,-0.14944947,-0.86552256,0.42560357,-0.1979297,-0.882998,0.42545766,-0.19699737,-0.8832767,0.4261523,-0.19661132,-0.88302785,0.4282901,-0.19614178,-0.88209754,0.42796403,-0.1970675,-0.88204944,0.42944053,-0.19676678,-0.88139874,0.42928806,-0.19715281,-0.88138676,0.4287079,-0.19798824,-0.8814818,0.42781922,-0.19809678,-0.8818891,0.42619243,-0.19761395,-0.88278466,0.5877134,-0.14754653,-0.7955017,0.5871117,-0.14749418,-0.79595554,0.5870649,-0.14711829,-0.79605967,0.5873244,-0.14592633,-0.7960877,0.5880823,-0.14571215,-0.79556715,0.59096044,-0.14552322,-0.79346627,0.59026176,-0.1463748,-0.7938296,0.54043543,-0.094758265,-0.83603257,0.53962207,-0.09466321,-0.83656853,0.5390009,-0.093787596,-0.8370674,0.5393415,-0.0915288,-0.83709806,0.5404935,-0.09047308,-0.83646965,0.5421329,-0.09163066,-0.83528185,0.5422189,-0.0924928,-0.83513093,0.5418504,-0.093107164,-0.8353018,0.5384256,-0.035337284,-0.8419318,0.5433314,-0.034204528,-0.83882123,0.5464125,-0.034001872,-0.83682567,0.5478199,-0.034511194,-0.83588415,0.5493347,-0.03444638,-0.83489215,0.55019945,-0.035194203,-0.8342913,0.5500077,-0.036688004,-0.8343533,0.5510854,-0.03710019,-0.8336237,0.5510909,-0.037587292,-0.83359826,0.5508507,-0.038537774,-0.8337136,0.5504721,-0.038570058,-0.83396214,0.54956853,-0.037922867,-0.8345875,0.54863733,-0.03808642,-0.8351925,0.54793894,-0.03749533,-0.83567756,0.54531807,-0.03819709,-0.8373584,0.54330784,-0.038163017,-0.83866566,0.5421682,-0.037805412,-0.8394191,0.54122233,-0.038072724,-0.8400172,0.5398608,-0.036476787,-0.8409636,0.53935295,-0.036051013,-0.84130776,0.53863263,-0.03613107,-0.8417656,0.53786314,-0.03592831,-0.84226626,0.53779,-0.035100564,-0.8423478,0.5380856,-0.034804154,-0.8421714,0.53816676,-0.034918286,-0.84211475,0.5381031,-0.035323706,-0.8421385,0.49586484,-0.046679143,-0.8671442,0.4928536,-0.046440743,-0.868872,0.4927218,-0.04592655,-0.8689741,0.49267414,-0.04433625,-0.8690837,0.49270853,-0.043851063,-0.8690888,0.49303555,-0.043103494,-0.8689407,0.496133,-0.041599825,-0.8672494,0.49801016,-0.0419625,-0.8661553,0.50011337,-0.043163043,-0.86488354,0.49975136,-0.043471266,-0.8650773,0.49886307,-0.04383737,-0.8655715,0.49794996,-0.045407336,-0.86601615,0.49695683,-0.046413593,-0.8665331,0.483236,-0.163817,-0.86002725,0.48546007,-0.16240612,-0.8590418,0.48590356,-0.1623893,-0.85879415,0.4868068,-0.16263655,-0.85823566,0.4868572,-0.16309561,-0.85811996,0.48674086,-0.16392802,-0.85802734,0.48549172,-0.1656696,-0.8584005,0.48565271,-0.16610996,-0.8582243,0.48644716,-0.1671923,-0.8575639,0.4843402,-0.16730489,-0.8587338,0.4827737,-0.16774173,-0.8595302,0.48080003,-0.16771153,-0.8606417,0.48021385,-0.16784596,-0.8609428,0.4802193,-0.16853811,-0.86080444,0.47951844,-0.16792999,-0.8613138,0.47948658,-0.1674813,-0.8614189,0.4797896,-0.16645792,-0.8614486,0.4799621,-0.16526623,-0.8615819,0.4814541,-0.16363543,-0.8610606,0.48210672,-0.16340339,-0.8607395,0.45319906,-0.1559968,-0.8776535,0.45411095,-0.15573421,-0.8772286,0.45492274,-0.15591766,-0.8767753,0.4558199,-0.15660447,-0.8761868,0.45387742,-0.15744106,-0.8770448,0.4527181,-0.15860747,-0.8774337,0.45248434,-0.1593041,-0.8774281,0.45186794,-0.15948744,-0.8777124,0.4501527,-0.16030012,-0.8784454,0.44933197,-0.15993345,-0.87893236,0.44864717,-0.16003606,-0.8792634,0.44881526,-0.15934117,-0.8793038,0.44844344,-0.15903318,-0.87954926,0.4483143,-0.1586882,-0.8796774,0.44833872,-0.15829273,-0.8797362,0.44903648,-0.15764306,-0.87949693,0.44980323,-0.15719701,-0.8791849,0.45067602,-0.15685701,-0.8787986,0.45135692,-0.1558688,-0.878625,0.43672398,-0.19896044,-0.8773181,0.440419,-0.19691053,-0.8759323,0.44204465,-0.19635896,-0.87523687,0.44194958,-0.19683363,-0.87517834,0.4414241,-0.19800495,-0.8751793,0.44000152,-0.1988803,-0.875697,0.44047353,-0.19965854,-0.8752825,0.4394349,-0.19928275,-0.87589,0.4389982,-0.20038667,-0.87585723,0.4367974,-0.20099618,-0.8768173,0.4362144,-0.20160057,-0.87696874,0.4340094,-0.20129336,-0.8781326,0.43312496,-0.20084424,-0.87867194,0.43408304,-0.19985572,-0.87842447,0.58651286,-0.15086658,-0.795765,0.5868292,-0.15011175,-0.7956745,0.5890457,-0.1481365,-0.79440594,0.5911986,-0.14733914,-0.79295355,0.592467,-0.14648777,-0.7921642,0.591716,-0.14762905,-0.7925136,0.59070104,-0.14809936,-0.79318273,0.5886242,-0.1498303,-0.79440063,0.5317763,-0.04075511,-0.84590364,0.5313171,-0.03983723,-0.8462359,0.53193766,-0.03920365,-0.84587556,0.5322809,-0.03947107,-0.84564716,0.53258896,-0.040228877,-0.84541744,0.533392,-0.040402662,-0.8449027,0.5328934,-0.040676855,-0.8452041,0.46992376,-0.04937921,-0.8813248,0.46955708,-0.049375877,-0.8815204,0.4687331,-0.04900987,-0.8819792,0.46890563,-0.047765356,-0.88195574,0.46977216,-0.047256313,-0.8815219,0.47001112,-0.047988378,-0.88135505,0.47819796,-0.18469685,-0.8586115,0.47810936,-0.18335663,-0.85894805,0.47852984,-0.1831254,-0.8587632,0.4796164,-0.18316397,-0.8581486,0.47974265,-0.18401003,-0.857897,0.47946778,-0.18429816,-0.85798883,0.44270322,-0.07189864,-0.893781,0.4425732,-0.07148557,-0.8938786,0.4425471,-0.07047402,-0.8939717,0.44290775,-0.07053526,-0.8937883,0.44363198,-0.071427785,-0.8933581,0.40494913,-0.11806558,-0.9066845,0.40464088,-0.116442256,-0.9070319,0.40521556,-0.114331074,-0.907044,0.4060115,-0.1126766,-0.9068951,0.407027,-0.111130215,-0.9066306,0.40849218,-0.109659865,-0.9061505,0.41006383,-0.10836029,-0.9055969,0.41099048,-0.1079333,-0.9052277,0.41197675,-0.1076792,-0.90480953,0.41283157,-0.10704702,-0.9044949,0.41445285,-0.10408439,-0.90409917,0.41526613,-0.10334358,-0.9038109,0.41731763,-0.101548135,-0.9030692,0.41753113,-0.10065615,-0.90307033,0.41910884,-0.09793406,-0.90263873,0.42069036,-0.09653963,-0.90205306,0.4226952,-0.096217364,-0.90114987,0.42353308,-0.095742255,-0.90080696,0.4242814,-0.09504842,-0.90052825,0.42496958,-0.09488038,-0.9002214,0.42471197,-0.09663301,-0.90015656,0.42506868,-0.10013725,-0.89960504,0.42482653,-0.10134285,-0.8995844,0.42413947,-0.103336826,-0.8996817,0.42375323,-0.10402001,-0.899785,0.4222943,-0.10559463,-0.90028733,0.42116037,-0.10637093,-0.90072703,0.4199788,-0.1081689,-0.9010646,0.4194176,-0.10858391,-0.901276,0.41628563,-0.111670546,-0.90235025,0.41659826,-0.11366892,-0.9019564,0.41569725,-0.11538927,-0.90215355,0.4143011,-0.11704654,-0.9025823,0.41293633,-0.118104406,-0.9030697,0.41142058,-0.11892861,-0.9036532,0.40987623,-0.11937376,-0.9042961,0.4082605,-0.11949212,-0.90501106,0.40758747,-0.11899975,-0.90537924,0.40561867,-0.1177372,-0.90642786,0.4052245,-0.11834648,-0.90652484,0.4168222,-0.10218899,-0.90322566,0.41687912,-0.109866515,-0.90229774,0.4069645,-0.11832789,-0.9057474,0.4265736,-0.09481428,-0.89946944,0.4262663,-0.09467674,-0.89962953,0.4254977,-0.09380967,-0.9000841,0.4251602,-0.09094664,-0.9005373,0.425808,-0.089636184,-0.9003627,0.42597866,-0.08809473,-0.9004341,0.42678154,-0.08739684,-0.9001218,0.4271926,-0.08776366,-0.8998911,0.42817116,-0.08908277,-0.8992963,0.42752972,-0.09099591,-0.8994099,0.42734423,-0.09262182,-0.89933205,0.42778638,-0.089797415,-0.8994083,0.58641124,-0.20920691,-0.7825308,0.5863206,-0.20713474,-0.78314966,0.58792293,-0.20661621,-0.7820846,0.59149253,-0.20163058,-0.7806931,0.5918823,-0.19820872,-0.7812737,0.5923623,-0.19606486,-0.78145087,0.5930108,-0.19447343,-0.7813567,0.5935346,-0.19278462,-0.7813775,0.5945195,-0.19098806,-0.7810699,0.5970496,-0.18771456,-0.77993274,0.596651,-0.18649387,-0.7805304,0.59755236,-0.18579228,-0.78000796,0.59875464,-0.18579228,-0.7790854,0.5992405,-0.18741985,-0.7783217,0.60016716,-0.18882434,-0.7772675,0.6021833,-0.18989374,-0.7754455,0.6019067,-0.19548818,-0.7742691,0.6024719,-0.20162053,-0.7722543,0.6030904,-0.20613913,-0.7705769,0.6026942,-0.20750664,-0.7705198,0.6033346,-0.2082402,-0.7698204,0.604003,-0.20749485,-0.76949733,0.6046371,-0.2092786,-0.76851577,0.60558736,-0.21390127,-0.7664922,0.6054055,-0.2162932,-0.7659643,0.60439456,-0.2169405,-0.7665795,0.60366684,-0.21757433,-0.76697314,0.60286695,-0.21778062,-0.7675435,0.602435,-0.21836953,-0.7677153,0.6020794,-0.21952863,-0.7676638,0.6014462,-0.22052462,-0.7678746,0.6014231,-0.2215984,-0.76758343,0.60207826,-0.22117794,-0.76719105,0.60332906,-0.22118618,-0.7662054,0.6038349,-0.22211857,-0.76553684,0.60518444,-0.22398938,-0.7639245,0.60398513,-0.22935475,-0.76328135,0.6043238,-0.23217405,-0.76216006,0.60472375,-0.23435846,-0.76117367,0.6049155,-0.23849207,-0.75973594,0.6044717,-0.24068137,-0.75939876,0.60350424,-0.24223787,-0.75967324,0.6023437,-0.24763985,-0.7588522,0.60246366,-0.24987508,-0.75802374,0.6003475,-0.2563355,-0.7575454,0.5994867,-0.25977382,-0.75705564,0.5996757,-0.2621119,-0.7560994,0.60020435,-0.26900855,-0.7532524,0.6000864,-0.274038,-0.75153136,0.5993463,-0.2768037,-0.7511083,0.5996239,-0.27934462,-0.7499451,0.5997203,-0.28340408,-0.74834335,0.60009444,-0.28646088,-0.74687797,0.60221595,-0.29261467,-0.74277365,0.6022904,-0.29558432,-0.7415364,0.6132048,-0.30326176,-0.7293917,0.6140037,-0.3025584,-0.72901154,0.61684734,-0.30138364,-0.72709507,0.62054825,-0.29871723,-0.72504336,0.62315214,-0.29785168,-0.72316366,0.6248863,-0.29517066,-0.7227665,0.6252314,-0.29405826,-0.7229215,0.6259541,-0.29260644,-0.72288513,0.62760407,-0.2906908,-0.7222271,0.630119,-0.29004493,-0.7202943,0.63283867,-0.28866145,-0.71846354,0.63430315,-0.2888573,-0.7170921,0.64273614,-0.28362313,-0.7116518,0.6461353,-0.27954435,-0.71018595,0.64854723,-0.27843955,-0.70841926,0.6516806,-0.27674964,-0.70620257,0.65356153,-0.27533758,-0.70501524,0.6546676,-0.27465254,-0.7042559,0.6559503,-0.2735953,-0.70347345,0.6568797,-0.27383137,-0.7025136,0.66010666,-0.2720867,-0.7001629,0.6600619,-0.2714733,-0.70044315,0.66021967,-0.27035275,-0.7007277,0.66062176,-0.2701869,-0.7004127,0.6609936,-0.27019024,-0.7000605,0.66563326,-0.26841754,-0.6963364,0.66626567,-0.2671579,-0.69621605,0.66721594,-0.26561373,-0.69589674,0.670502,-0.2633716,-0.69358665,0.6725088,-0.26151812,-0.692344,0.6766551,-0.25882572,-0.6893091,0.6784235,-0.25302586,-0.68972415,0.6778543,-0.25181538,-0.6907261,0.6762764,-0.24677272,-0.6940846,0.67568433,-0.24588576,-0.69497544,0.67499053,-0.24451429,-0.6961326,0.674769,-0.2408187,-0.69763404,0.6747047,-0.23870566,-0.698422,0.6743236,-0.228029,-0.7023463,0.6735559,-0.22775519,-0.70317143,0.6728708,-0.22729701,-0.703975,0.67190003,-0.22794938,-0.704691,0.671153,-0.22896488,-0.70507354,0.6705784,-0.22877897,-0.7056804,0.6695373,-0.22501582,-0.7078755,0.67004824,-0.22344783,-0.7078887,0.6708333,-0.22128093,-0.7078259,0.6668715,-0.21388134,-0.7138188,0.66776437,-0.21206784,-0.713525,0.66858584,-0.21165134,-0.7128791,0.6700215,-0.21177624,-0.7114928,0.67161703,-0.21019183,-0.7104576,0.6729195,-0.20718816,-0.71010727,0.6741346,-0.20708308,-0.70898455,0.6758217,-0.2101585,-0.706469,0.67596585,-0.21086496,-0.70612055,0.67824733,-0.21355668,-0.70311743,0.67888796,-0.21117817,-0.70321757,0.6798555,-0.21050848,-0.70248324,0.68077284,-0.2109583,-0.70145917,0.6814615,-0.21179464,-0.7005378,0.6817389,-0.20884693,-0.7011527,0.68085295,-0.20778838,-0.702327,0.6808337,-0.20739155,-0.70246303,0.68163514,-0.20629765,-0.7020077,0.68086666,-0.20493656,-0.7031512,0.68133336,-0.20486644,-0.70271933,0.68230575,-0.20632437,-0.7013481,0.68344074,-0.20716308,-0.6999944,0.6848447,-0.20894696,-0.69808954,0.6870572,-0.2101169,-0.69555974,0.6884468,-0.21169469,-0.69370484,0.69314194,-0.20966199,-0.68963474,0.6937264,-0.2088453,-0.6892947,0.69494337,-0.20764494,-0.688431,0.69851506,-0.20881195,-0.6844518,0.6993769,-0.2083519,-0.6837116,0.70078254,-0.20804338,-0.6823649,0.7021201,-0.20688958,-0.6813398,0.7051917,-0.20504332,-0.67872083,0.7081966,-0.20468965,-0.675692,0.7096127,-0.20477308,-0.6741793,0.7108159,-0.20381863,-0.67320037,0.7119205,-0.20326962,-0.6721984,0.7150254,-0.20145029,-0.66944486,0.71650076,-0.19856124,-0.66873014,0.7173609,-0.1977827,-0.6680384,0.71861225,-0.19750528,-0.66677433,0.719694,-0.19883683,-0.6652101,0.7203459,-0.19946323,-0.66431624,0.7221528,-0.19709098,-0.66306144,0.72509414,-0.19463736,-0.6605715,0.7259646,-0.19430293,-0.6597134,0.726311,-0.19489811,-0.6591564,0.72757405,-0.19562356,-0.6575465,0.72878826,-0.19417255,-0.65663135,0.72948056,-0.19390674,-0.6559407,0.7309627,-0.1954565,-0.6538274,0.7307622,-0.19598794,-0.65389246,0.72924876,-0.19677682,-0.6553434,0.7274569,-0.19893533,-0.65668195,0.7266934,-0.19937971,-0.65739214,0.72007614,-0.20191605,-0.66386765,0.7202146,-0.20325129,-0.6633098,0.7201015,-0.2051083,-0.66286075,0.71972483,-0.20713812,-0.66263866,0.7195654,-0.20851186,-0.66238093,0.7183761,-0.21001853,-0.6631953,0.71877956,-0.21013193,-0.66272205,0.71990293,-0.20979358,-0.661609,0.7206817,-0.21021351,-0.6606272,0.7213635,-0.2109217,-0.6596565,0.7213911,-0.2129472,-0.6589753,0.72199225,-0.21199282,-0.6586244,0.72350204,-0.21108659,-0.6572573,0.72669214,-0.212336,-0.6533237,0.727551,-0.21186955,-0.65251887,0.7292622,-0.21265739,-0.6503488,0.7337955,-0.21149638,-0.64561087,0.73442954,-0.20954858,-0.64552504,0.73475623,-0.2090703,-0.6453084,0.7352595,-0.21094827,-0.6441229,0.7371822,-0.21114823,-0.64185584,0.7374079,-0.2115614,-0.6414603,0.7370029,-0.2137614,-0.64119637,0.7377348,-0.21385305,-0.6403235,0.738606,-0.21417595,-0.6392103,0.7382554,-0.21567409,-0.63911164,0.7378888,-0.21684228,-0.63913965,0.7393255,-0.21635978,-0.63764113,0.7399682,-0.2152081,-0.63728535,0.7407361,-0.2148536,-0.6365123,0.74121946,-0.21526468,-0.6358105,0.7411923,-0.21629158,-0.6354934,0.7411106,-0.21923926,-0.63457793,0.74242926,-0.21914122,-0.6330687,0.7429433,-0.21964005,-0.6322923,0.7432724,-0.22295943,-0.6307418,0.7446969,-0.22422695,-0.6286086,0.74464196,-0.22595736,-0.62805384,0.7444942,-0.22742483,-0.62769926,0.74264765,-0.23008789,-0.62891495,0.7441596,-0.23304105,-0.6260339,0.7455505,-0.23347355,-0.6242152,0.7464046,-0.23468329,-0.6227391,0.74661934,-0.23596379,-0.62199736,0.7464784,-0.23717602,-0.6217054,0.74648345,-0.23873541,-0.62110215,0.74660254,-0.2405822,-0.62024575,0.7465033,-0.24158294,-0.6199762,0.74728876,-0.24257188,-0.6186424,0.7484425,-0.24553551,-0.61607313,0.7487103,-0.24856278,-0.6145319,0.7472542,-0.2502068,-0.61563593,0.7456841,-0.25138816,-0.6170569,0.7447211,-0.2513502,-0.6182342,0.7446534,-0.251652,-0.618193,0.7454225,-0.2528644,-0.6167698,0.7445431,-0.25411072,-0.61731946,0.74333215,-0.2552695,-0.6182999,0.7427047,-0.2554409,-0.6189828,0.74303436,-0.2562054,-0.61827075,0.7443755,-0.25630587,-0.61661357,0.7443796,-0.25756937,-0.6160821,0.7439141,-0.25901836,-0.6160367,0.74341506,-0.26028237,-0.61610645,0.74403,-0.26056045,-0.61524594,0.744447,-0.2596175,-0.6151402,0.7460042,-0.25769284,-0.61406195,0.7469573,-0.2571065,-0.6131485,0.7482659,-0.25665188,-0.6117417,0.74850845,-0.25723496,-0.61119986,0.74785376,-0.2601705,-0.6107586,0.74839866,-0.26075795,-0.6098399,0.74895364,-0.25861004,-0.61007315,0.75045156,-0.2568693,-0.6089669,0.75528413,-0.2551245,-0.603703,0.7559359,-0.25501567,-0.6029328,0.75692266,-0.2552431,-0.60159713,0.75748867,-0.25593355,-0.60059047,0.7577744,-0.25716087,-0.5997051,0.7584072,-0.25778833,-0.59863496,0.75890326,-0.25874662,-0.5975919,0.7591865,-0.2595467,-0.5968847,0.758997,-0.2605424,-0.5966918,0.75803226,-0.26241776,-0.5970963,0.757586,-0.26295722,-0.5974253,0.75743973,-0.26384848,-0.59721774,0.75819033,-0.26291952,-0.59667474,0.7587363,-0.26262012,-0.5961123,0.7601075,-0.25590718,-0.59728396,0.7599597,-0.25463158,-0.59801674,0.7602974,-0.25395414,-0.5978755,0.76412976,-0.25012925,-0.5945932,0.76605296,-0.2469892,-0.59343,0.76734537,-0.24522486,-0.5924912,0.7691492,-0.24352412,-0.5908515,0.7701186,-0.24245436,-0.59002817,0.77213436,-0.24081708,-0.588061,0.7743448,-0.2396754,-0.5856158,0.7755977,-0.23813954,-0.58458334,0.776754,-0.23758654,-0.5832717,0.7779038,-0.23833822,-0.5814297,0.77773416,-0.23977147,-0.5810674,0.77872705,-0.2446464,-0.57769567,0.7798872,-0.24325795,-0.57671607,0.78088915,-0.24224272,-0.57578695,0.7815458,-0.24297361,-0.57458675,0.7815346,-0.2442283,-0.57406974,0.78232,-0.24384148,-0.5731637,0.78314036,-0.24195668,-0.5728421,0.78394306,-0.24120581,-0.57206035,0.7845265,-0.24153656,-0.5711202,0.78402996,-0.24303143,-0.5711678,0.78334725,-0.24504307,-0.571245,0.78370637,-0.24558994,-0.57051724,0.7835635,-0.24671173,-0.5702294,0.7835359,-0.24820447,-0.56961924,0.7830615,-0.2502876,-0.56936,0.7837107,-0.25072488,-0.5682733,0.7839134,-0.25237292,-0.5672633,0.7843883,-0.25202328,-0.56676203,0.78471816,-0.25095257,-0.56678057,0.78514564,-0.24985857,-0.56667185,0.78603417,-0.24943931,-0.5656238,0.78611654,-0.25046256,-0.56505686,0.7864902,-0.25087836,-0.564352,0.7864748,-0.250045,-0.5647432,0.78679776,-0.24848692,-0.5649811,0.7869064,-0.24685371,-0.56554526,0.7877859,-0.24626566,-0.5645764,0.78801286,-0.24662913,-0.56410086,0.7877073,-0.24804106,-0.5639086,0.78745997,-0.25009623,-0.56334597,0.7881395,-0.250418,-0.5622516,0.7886094,-0.25134027,-0.56118023,0.7895886,-0.2513585,-0.55979353,0.7899915,-0.25180063,-0.55902594,0.7899363,-0.25288746,-0.558613,0.7905516,-0.25400695,-0.557233,0.7902473,-0.25534534,-0.5570529,0.78937846,-0.25670454,-0.55765975,0.789085,-0.25788382,-0.55753106,0.78745365,-0.2590825,-0.55927896,0.7879102,-0.26061973,-0.55792004,0.7892436,-0.25958458,-0.5565163,0.79041445,-0.25936398,-0.5549553,0.7908555,-0.25888824,-0.5545488,0.7909174,-0.25923067,-0.55430055,0.79104984,-0.2606164,-0.553461,0.7916604,-0.26067242,-0.55256087,0.7921942,-0.26152802,-0.55139047,0.7913784,-0.26287177,-0.55192274,0.7913557,-0.26340127,-0.55170256,0.79095715,-0.26404244,-0.5519677,0.78982306,-0.26415914,-0.5535336,0.7893887,-0.26398656,-0.5542351,0.7893293,-0.26667506,-0.55303127,0.78999394,-0.26562846,-0.5525859,0.7925768,-0.26362482,-0.54984,0.793176,-0.26342922,-0.54906905,0.79315335,-0.2640589,-0.5487994,0.7935798,-0.26717594,-0.54667,0.7941936,-0.2668245,-0.5459497,0.7947533,-0.26713,-0.544985,0.7946506,-0.2693549,-0.544039,0.7942769,-0.27157828,-0.54347897,0.79321575,-0.27312976,-0.5442507,0.79226923,-0.2751753,-0.544599,0.7918846,-0.2726608,-0.54642004,0.79129845,-0.2734592,-0.5468701,0.7914146,-0.2745887,-0.54613554,0.79131204,-0.27597493,-0.5455851,0.7916435,-0.2775882,-0.5442842,0.792409,-0.2773786,-0.54327637,0.7924625,-0.27787632,-0.5429437,0.7924501,-0.27904186,-0.54236376,0.7919064,-0.2806488,-0.54232883,0.7912897,-0.2812572,-0.5429134,0.7902044,-0.28120002,-0.54452145,0.78799695,-0.28238568,-0.5471006,0.788823,-0.28210938,-0.5460518,0.7903308,-0.28226134,-0.5437883,0.79111665,-0.28204063,-0.5427592,0.79253167,-0.28214526,-0.5406363,0.79383147,-0.2812294,-0.53920454,0.7945827,-0.2803117,-0.5385755,0.7954404,-0.2800794,-0.5374292,0.79612994,-0.28044754,-0.5362148,0.7962489,-0.28173158,-0.5353644,0.79669565,-0.28204554,-0.5345338,0.79868186,-0.2788651,-0.5332369,0.79949003,-0.278654,-0.532135,0.7996864,-0.27939373,-0.5314517,0.7988351,-0.28138807,-0.5316796,0.79891413,-0.28352836,-0.5304224,0.7994482,-0.2834728,-0.5296468,0.79967284,-0.2838601,-0.52909994,0.7992116,-0.28469682,-0.52934724,0.79785794,-0.28682667,-0.5302388,0.79602414,-0.28904814,-0.5317863,0.7954362,-0.29016402,-0.5320584,0.7947218,-0.29011348,-0.53315234,0.79432666,-0.2910137,-0.53325063,0.7944137,-0.29231963,-0.53240585,0.79387206,-0.2943874,-0.5320744,0.7946784,-0.2940372,-0.5310635,0.7958356,-0.29275966,-0.5300354,0.79632795,-0.29251024,-0.52943325,0.7964569,-0.29287866,-0.52903557,0.7963003,-0.29375198,-0.52878684,0.7955129,-0.29604027,-0.52869594,0.7950917,-0.29929784,-0.5274941,0.79475486,-0.30024415,-0.52746385,0.7951218,-0.3004685,-0.5267827,0.79587877,-0.29920673,-0.5263575,0.79726535,-0.29725453,-0.52536434,0.7994415,-0.29298612,-0.52445436,0.8013132,-0.29008576,-0.5232088,0.8025549,-0.28761685,-0.5226683,0.80466306,-0.28295785,-0.5219695,0.8051712,-0.28288755,-0.5212235,0.8052973,-0.2848928,-0.5199349,0.8053235,-0.28753042,-0.51844025,0.80546254,-0.28882626,-0.51750314,0.80623806,-0.29011667,-0.5155701,0.80658233,-0.2914181,-0.5142961,0.80727553,-0.29187784,-0.5129459,0.80777955,-0.2933626,-0.5113029,0.8080881,-0.29463655,-0.51008123,0.8082047,-0.2976028,-0.508171,0.80785,-0.29951406,-0.5076119,0.80727637,-0.30152175,-0.5073357,0.8061214,-0.3043708,-0.5074709,0.80458987,-0.30849501,-0.50741094,0.80386376,-0.3089327,-0.5082948,0.80297726,-0.3108741,-0.5085123,0.80349904,-0.31165648,-0.5072076,0.80466723,-0.31554395,-0.502934,0.8057865,-0.31692478,-0.50026685,0.8059359,-0.31789947,-0.4994068,0.8058964,-0.31995103,-0.4981589,0.80594146,-0.32254007,-0.4964134,0.80582464,-0.3241674,-0.49554226,0.8126493,-0.3405351,-0.47290272,0.81591064,-0.34133783,-0.46666726,0.8169729,-0.3426479,-0.46384016,0.81894076,-0.34222198,-0.46067357,0.82106584,-0.34194326,-0.45708382,0.8244163,-0.3473721,-0.44684505,0.8261688,-0.34816635,-0.44297338,0.8267972,-0.34888357,-0.44123316,0.831234,-0.35368857,-0.42889914,0.8327774,-0.35251012,-0.42687052,0.8337543,-0.35278276,-0.424733,0.8349875,-0.35261053,-0.42244723,0.8359038,-0.35272062,-0.4205389,0.8363146,-0.35369325,-0.4189022,0.8388475,-0.35886282,-0.40933156,0.839197,-0.3602687,-0.40737557,0.83934987,-0.3623126,-0.4052424,0.8399243,-0.3641959,-0.40235376,0.8401354,-0.36636654,-0.3999351,0.8413734,-0.36862057,-0.39523378,0.8428327,-0.3703295,-0.39049858,0.843336,-0.37174767,-0.3880568,0.8433532,-0.3736709,-0.38616762,0.84269476,-0.3788269,-0.3825647,0.84245694,-0.38148007,-0.38044614,0.8429235,-0.3819716,-0.37891638,0.8431776,-0.38241103,-0.3779065,0.8440003,-0.37983304,-0.37866917,0.8453262,-0.37753937,-0.3780047,0.8466208,-0.37314594,-0.37946707,0.8472258,-0.37183154,-0.37940705,0.84758025,-0.37268737,-0.37777215,0.8476612,-0.3736219,-0.3766659,0.8463672,-0.37997496,-0.3732046,0.8452281,-0.38490427,-0.37072673,0.84211016,-0.3911108,-0.37132564,0.841322,-0.39362857,-0.3704508,0.8406651,-0.39526537,-0.3701991,0.8398707,-0.39743885,-0.36967498,0.83916885,-0.4024721,-0.3658031,0.83868724,-0.404657,-0.3644948,0.8374115,-0.4088454,-0.3627498,0.8366654,-0.41078258,-0.36228266,0.8354365,-0.41367093,-0.3618317,0.8338376,-0.4161956,-0.36262378,0.8327652,-0.41775566,-0.3632938,0.83021265,-0.42225528,-0.36393335,0.82816166,-0.42523804,-0.36513135,0.82429105,-0.43121704,-0.36687347,0.8207494,-0.43604118,-0.36910495,0.8198426,-0.437881,-0.36894235,0.8189029,-0.44035244,-0.36808658,0.8176767,-0.4429063,-0.3677482,0.8196391,-0.44242486,-0.36393964,0.8216604,-0.43880457,-0.36376464,0.82191753,-0.43859783,-0.3634329,0.82273316,-0.4391814,-0.3608737,0.8229762,-0.43843713,-0.36122444,0.82409143,-0.4357144,-0.3619754,0.82536036,-0.43415663,-0.3609547,0.8266125,-0.43248233,-0.3600983,0.8273456,-0.43207192,-0.3589054,0.82735074,-0.43282798,-0.3579814,0.8269046,-0.43386793,-0.35775328,0.82487637,-0.43677568,-0.3588955,0.82299715,-0.43991786,-0.3593716,0.8213785,-0.4418759,-0.3606702,0.8197841,-0.4471052,-0.3578421,0.82086945,-0.44520915,-0.35771802,0.8233061,-0.44147527,-0.35674462,0.8241984,-0.4400264,-0.3564741,0.8245799,-0.43963307,-0.35607693,0.8243402,-0.44034794,-0.35574841,0.823744,-0.4416359,-0.35553282,0.8237982,-0.44213575,-0.35478523,0.82439315,-0.44146308,-0.35424048,0.8248181,-0.44110215,-0.3537005,0.82492167,-0.44122753,-0.35330227,0.8242168,-0.44215414,-0.35378867,0.8223351,-0.44490683,-0.3547152,0.81690437,-0.45162144,-0.35875532,0.809378,-0.4624333,-0.36202583,0.80594975,-0.46910882,-0.3610844,0.8049705,-0.47071418,-0.36117953,0.79784256,-0.47970623,-0.36514258,0.7970457,-0.48132062,-0.36475822,0.7960394,-0.48285112,-0.36493292,0.7886839,-0.49302718,-0.36728993,0.78744894,-0.49578574,-0.36622488,0.7847497,-0.50063914,-0.36541542,0.7832048,-0.5032646,-0.3651233,0.7799198,-0.5084471,-0.36497477,0.777293,-0.512163,-0.36538282,0.7752964,-0.5144667,-0.36638707,0.77149236,-0.5195571,-0.3672328,0.76670164,-0.52539045,-0.36896273,0.75933534,-0.5382996,-0.3655726,0.75943464,-0.53872055,-0.36474538,0.7590644,-0.5397556,-0.3639851,0.7533831,-0.55402315,-0.35422048,0.7544466,-0.5531048,-0.35339123,0.75566113,-0.5521602,-0.35227174,0.7532397,-0.55635655,-0.3508524,0.75107247,-0.55993325,-0.349807,0.75004256,-0.5612909,-0.34984082,0.74903893,-0.5628896,-0.34942245,0.7475455,-0.56412864,-0.35062042,0.74220496,-0.56678116,-0.3576184,0.73817205,-0.5706421,-0.35981882,0.736086,-0.57165664,-0.362472,0.733086,-0.5734034,-0.3657779,0.73050404,-0.5739561,-0.37005174,0.728633,-0.574058,-0.37356582,0.7251866,-0.5749732,-0.37882736,0.72477084,-0.57464683,-0.38011613,0.72369826,-0.5743623,-0.38258168,0.72310764,-0.5737663,-0.38458756,0.72247463,-0.57338506,-0.3863418,0.7220523,-0.5698119,-0.3923708,0.7205798,-0.5658218,-0.4007623,0.7194386,-0.56577975,-0.40286636,0.7187648,-0.56450987,-0.40583956,0.716992,-0.55825853,-0.4174564,0.71523225,-0.55865866,-0.4199325,0.71477246,-0.55803084,-0.42154706,0.7090272,-0.5566838,-0.43287835,0.70626783,-0.5572018,-0.4367057,0.70465875,-0.55711824,-0.43940338,0.70363164,-0.5573744,-0.44072247,0.70197135,-0.5590742,-0.44121668,0.6979319,-0.5576121,-0.44939932,0.6955684,-0.5577536,-0.45287466,0.69374436,-0.55902344,-0.45410523,0.6931659,-0.5578229,-0.4564588,0.6919491,-0.55798,-0.45810995,0.6914462,-0.5568224,-0.46027267,0.69162023,-0.553339,-0.4641954,0.69201845,-0.55115515,-0.46619582,0.6925458,-0.54403,-0.473721,0.69143474,-0.54376256,-0.47564727,0.68993217,-0.5429213,-0.47877976,0.6877297,-0.5389834,-0.4863381,0.68649626,-0.53813165,-0.48901665,0.68599606,-0.5373859,-0.49053627,0.6829704,-0.53371537,-0.49869767,0.6769288,-0.5345138,-0.506026,0.67433214,-0.5343062,-0.509699,0.67247254,-0.53382206,-0.51265454,0.67008483,-0.53215635,-0.51748997,0.6671692,-0.5309033,-0.5225198,0.66407543,-0.5282561,-0.5291024,0.6513649,-0.5236752,-0.54907924,0.6448903,-0.52404547,-0.55632085,0.64354795,-0.5234778,-0.5584058,0.635064,-0.5254166,-0.566243,0.6280434,-0.5300249,-0.56976765,0.62687033,-0.5302155,-0.57088095,0.6229632,-0.5292716,-0.57601076,0.6168358,-0.5326369,-0.57949257,0.6148944,-0.5327061,-0.58148867,0.6104216,-0.5338928,-0.5851016,0.6079941,-0.5359994,-0.5857028,0.60395896,-0.5380139,-0.588026,0.60280323,-0.54068935,-0.5867566,0.6034878,-0.54073083,-0.5860143,0.6039774,-0.5409544,-0.58530295,0.60166436,-0.54433304,-0.58455247,0.5990921,-0.5470526,-0.5846555,0.59159994,-0.5511309,-0.5884422,0.58992606,-0.55377483,-0.5876399,0.5873157,-0.55597275,-0.5881791,0.58425015,-0.55861056,-0.58873254,0.5823024,-0.5612501,-0.5881515,0.5816717,-0.56201863,-0.5880417,0.5798534,-0.56461537,-0.5873496,0.5775877,-0.5675715,-0.58673245,0.5794455,-0.567062,-0.5853918,0.5806245,-0.56622356,-0.585035,0.5809764,-0.5663572,-0.58455616,0.5811707,-0.5669316,-0.58380574,0.58089364,-0.5676388,-0.58339417,0.5784449,-0.56845665,-0.58502865,0.5770429,-0.5695023,-0.58539623,0.5760384,-0.57011455,-0.5857894,0.5730667,-0.5727133,-0.58616894,0.57268405,-0.5721347,-0.5871073,0.5721149,-0.5716203,-0.58816224,0.57012695,-0.57303184,-0.5887187,0.5694685,-0.5733167,-0.5890786,0.56943685,-0.57277197,-0.5896389,0.5711573,-0.5702375,-0.59043074,0.57250315,-0.5687189,-0.590592,0.57220066,-0.5680696,-0.59150934,0.5722707,-0.56729645,-0.59218323,0.57172,-0.5653804,-0.5945429,0.5711974,-0.5596266,-0.6004595,0.57050633,-0.55896413,-0.60173225,0.5699397,-0.5576956,-0.60344374,0.56882495,-0.55672616,-0.6053876,0.567733,-0.55557317,-0.60746837,0.56689626,-0.55512804,-0.6086555,0.5659865,-0.5548884,-0.60971963,0.5653295,-0.5538203,-0.6112983,0.56538296,-0.55092037,-0.6138638,0.56597257,-0.5474691,-0.616403,0.5656337,-0.5459435,-0.61806494,0.56479084,-0.5443175,-0.62026584,0.564577,-0.5420492,-0.6224432,0.56094867,-0.547054,-0.6213441,0.5615003,-0.54757464,-0.62038654,0.56062484,-0.549228,-0.6197164,0.55820435,-0.5530878,-0.6184674,0.55902624,-0.55488986,-0.6161063,0.5594082,-0.5571523,-0.61371315,0.55909044,-0.5615222,-0.6100088,0.55859613,-0.56283593,-0.60925037,0.5580146,-0.5646632,-0.6080914,0.5571702,-0.5662658,-0.60737497,0.55599046,-0.57238925,-0.6026983,0.55662,-0.5723108,-0.6021914,0.5578285,-0.57249945,-0.6008925,0.55908513,-0.5723724,-0.5998447,0.5582311,-0.57699895,-0.5961964,0.5572627,-0.5772147,-0.5968932,0.55672926,-0.576953,-0.59764355,0.5555338,-0.57695186,-0.5987561,0.55458957,-0.5761286,-0.6004216,0.5529467,-0.5754528,-0.60258114,0.55170894,-0.5756912,-0.6034873,0.55042225,-0.5756187,-0.60473007,0.5512798,-0.56967336,-0.6095596,0.55260175,-0.565774,-0.61198944,0.55241144,-0.5640174,-0.6137801,0.5526548,-0.5628021,-0.6146759,0.5507219,-0.5636303,-0.6156511,0.54900885,-0.56554776,-0.61542267,0.5457424,-0.5686516,-0.61546785,0.5418193,-0.579448,-0.60882837,0.5421727,-0.58051157,-0.6074991,0.5420373,-0.58230317,-0.6059031,0.53965086,-0.5827576,-0.6075941,0.53825897,-0.5827243,-0.60885936,0.53630275,-0.5812482,-0.6119885,0.53519833,-0.58122593,-0.61297566,0.53509045,-0.58054477,-0.61371493,0.534295,-0.57989657,-0.6150194,0.53383374,-0.57913256,-0.6161388,0.53109705,-0.57966053,-0.61800456,0.53106153,-0.5805032,-0.61724365,0.5302601,-0.5822838,-0.61625475,0.53098387,-0.5820897,-0.6158146,0.5320434,-0.58103037,-0.6159005,0.5326197,-0.5813037,-0.6151441,0.53273565,-0.58210075,-0.6142894,0.53390294,-0.5818499,-0.6135131,0.53348476,-0.58237255,-0.6133809,0.5324431,-0.58338904,-0.6133202,0.529302,-0.5853447,-0.61417514,0.51669085,-0.59829736,-0.6124302,0.5163164,-0.6004572,-0.6106297,0.5157355,-0.60264516,-0.60896283,0.5151362,-0.6037884,-0.6083373,0.51398116,-0.6052356,-0.60787606,0.51229584,-0.60671073,-0.60782814,0.506736,-0.61072844,-0.6084648,0.50310534,-0.6142396,-0.60794306,0.499691,-0.6160523,-0.6089239,0.4924622,-0.6180239,-0.612803,0.48891824,-0.620648,-0.61298853,0.48808488,-0.62087125,-0.61342645,0.48693642,-0.6209809,-0.6142276,0.48631075,-0.6193871,-0.616329,0.48407692,-0.619557,-0.6179147,0.48046812,-0.62113976,-0.61914116,0.4789519,-0.6207671,-0.6206877,0.4755246,-0.6218542,-0.62223285,0.47219512,-0.62361854,-0.6230022,0.46912992,-0.6245055,-0.62442774,0.46692535,-0.6258304,-0.62475353,0.46560764,-0.62602973,-0.6255368,0.46300593,-0.62688816,-0.62660736,0.4617383,-0.6261534,-0.6282752,0.46080536,-0.6252266,-0.629881,0.45912248,-0.6219997,-0.6342894,0.45628,-0.61982983,-0.63845086,0.455335,-0.61956096,-0.6393858,0.45444027,-0.618545,-0.641004,0.4556149,-0.61782706,-0.6408625,0.45636126,-0.6179476,-0.6402149,0.45734715,-0.61707085,-0.6403571,0.4566878,-0.61672205,-0.6411632,0.45382673,-0.6142824,-0.64552176,0.45229557,-0.6204276,-0.6407014,0.4530382,-0.62033135,-0.6402699,0.45099103,-0.6216445,-0.6404414,0.449333,-0.6225254,-0.64075106,0.44746464,-0.6209234,-0.64360666,0.4434508,-0.6210637,-0.64624393,0.44420785,-0.62137085,-0.64542824,0.4442664,-0.6222052,-0.64458364,0.44421163,-0.62299734,-0.6438558,0.44220102,-0.6240116,-0.6442576,0.4411121,-0.6246545,-0.644381,0.44015658,-0.6246386,-0.64504945,0.43746278,-0.62627697,-0.6452933,0.43590492,-0.62798697,-0.6446853,0.43518502,-0.627516,-0.64562964,0.4303663,-0.63035977,-0.6460894,0.42998832,-0.63099843,-0.64571744,0.42918018,-0.6312921,-0.64596796,0.42874336,-0.6308425,-0.64669687,0.42872417,-0.63020223,-0.64733356,0.429277,-0.629021,-0.6481156,0.4302804,-0.62715226,-0.6492602,0.43085492,-0.6268709,-0.64915097,0.43142486,-0.6278849,-0.64779097,0.43233052,-0.62715095,-0.6478982,0.43346408,-0.6263688,-0.64789736,0.43310267,-0.62524,-0.649228,0.43230832,-0.6254036,-0.6495998,0.43140668,-0.6254036,-0.65019894,0.4269047,-0.62474513,-0.6537934,0.42333618,-0.6186709,-0.66184044,0.40768594,-0.6127482,-0.6770021,0.40341473,-0.6129368,-0.6793857,0.40141776,-0.61250985,-0.68095195,0.40063524,-0.6119411,-0.6819234,0.39953333,-0.61038023,-0.6839657,0.39870444,-0.6094238,-0.6853009,0.3973314,-0.60915613,-0.6863356,0.39742702,-0.6079836,-0.6873192,0.39790183,-0.6067244,-0.6881567,0.39812112,-0.60541075,-0.68918604,0.39949146,-0.60293335,-0.69056344,0.40091228,-0.5979435,-0.6940698,0.4009039,-0.5955297,-0.69614685,0.40142804,-0.5930346,-0.6979724,0.4025391,-0.58329064,-0.7055028,0.40202317,-0.5818984,-0.7069453,0.40147302,-0.5766357,-0.71155506,0.40082145,-0.5761134,-0.71234506,0.40012613,-0.5761148,-0.71273476,0.39993456,-0.57579297,-0.7131023,0.3999423,-0.5754988,-0.71333534,0.4002207,-0.5752868,-0.7133501,0.40014464,-0.57367843,-0.71468693,0.39984828,-0.5738682,-0.7147004,0.3995109,-0.5737608,-0.7149752,0.39954662,-0.5734886,-0.71517366,0.40039375,-0.5720341,-0.71586436,0.4005783,-0.5699856,-0.71739346,0.40116677,-0.56639373,-0.7199051,0.40100062,-0.56477433,-0.72126865,0.40101433,-0.5634838,-0.7222697,0.4000183,-0.5615419,-0.72433144,0.3988523,-0.55962247,-0.7264569,0.39943168,-0.5594134,-0.7262995,0.3995397,-0.55867285,-0.7268099,0.39889592,-0.55897677,-0.7269299,0.39871725,-0.55813134,-0.7276771,0.39904344,-0.5568012,-0.7285168,0.3992372,-0.5548345,-0.72990984,0.4001775,-0.5531148,-0.73069966,0.399514,-0.55257636,-0.73146975,0.3986656,-0.55225104,-0.732178,0.3988359,-0.5504424,-0.73344606,0.39880335,-0.54971504,-0.734009,0.3984226,-0.5490371,-0.73472285,0.39787778,-0.5475904,-0.73609644,0.39512375,-0.54200613,-0.74169165,0.3926807,-0.5410836,-0.74366015,0.3925287,-0.54055876,-0.7441219,0.39339024,-0.53991896,-0.74413145,0.3923612,-0.53991896,-0.74467456,0.39225304,-0.53889865,-0.7454701,0.3913858,-0.53814614,-0.74646896,0.39008507,-0.53640234,-0.7484024,0.38995123,-0.5347975,-0.7496197,0.38995007,-0.5335121,-0.75053567,0.3906116,-0.5305955,-0.7522572,0.38872847,-0.526753,-0.7559242,0.38810354,-0.5215289,-0.7598574,0.38852754,-0.5181583,-0.76194376,0.38850442,-0.5163335,-0.76319325,0.38888574,-0.5136481,-0.7648094,0.39050698,-0.5084912,-0.7674249,0.38998422,-0.5024749,-0.7716419,0.3901552,-0.4999794,-0.77317494,0.38991603,-0.498374,-0.7743312,0.39044297,-0.49237177,-0.77789736,0.3905797,-0.4855757,-0.78208935,0.38937002,-0.48258698,-0.78453857,0.38987866,-0.47981083,-0.7859874,0.39105308,-0.47767094,-0.7867071,0.39204463,-0.4731741,-0.7889279,0.3944142,-0.47021642,-0.789515,0.39533058,-0.4678937,-0.79043615,0.39639068,-0.46590108,-0.7910819,0.40219045,-0.45701152,-0.7933368,0.4023224,-0.45372164,-0.7951561,0.40580896,-0.44313073,-0.79934615,0.4058605,-0.43780896,-0.80224717,0.40655613,-0.43715742,-0.80225027,0.41023335,-0.4334793,-0.8023742,0.41121095,-0.42944175,-0.8040432,0.41349456,-0.42694956,-0.8041991,0.4185803,-0.4220482,-0.80415535,0.4189087,-0.42109913,-0.8044818,0.41977,-0.41949087,-0.804873,0.42145672,-0.41838267,-0.8045683,0.42256737,-0.41785616,-0.8042593,0.42644325,-0.41460484,-0.8038962,0.42957765,-0.40993866,-0.80461997,0.43083894,-0.40869612,-0.8045777,0.43309927,-0.40734854,-0.8040474,0.4347358,-0.40727222,-0.80320245,0.4358532,-0.40693444,-0.8027679,0.44019192,-0.4039445,-0.8019101,0.44148552,-0.40329105,-0.8015278,0.44270906,-0.40188536,-0.80155903,0.44441268,-0.4003772,-0.801371,0.44545627,-0.3992602,-0.8013489,0.4469356,-0.39807683,-0.80111384,0.44872555,-0.3935659,-0.8023411,0.44964057,-0.3891711,-0.8039709,0.4509831,-0.3839114,-0.8057458,0.45278496,-0.38136348,-0.8059452,0.45364842,-0.38054246,-0.80584776,0.45435742,-0.38081196,-0.8053208,0.45408195,-0.38245994,-0.80469495,0.45416594,-0.38363597,-0.80408746,0.4563739,-0.38218266,-0.80352926,0.45907634,-0.38063383,-0.8027246,0.460718,-0.37889785,-0.8026054,0.4619858,-0.37726638,-0.80264515,0.46275103,-0.3773294,-0.80217457,0.46324944,-0.37758672,-0.8017657,0.46339023,-0.37958702,-0.80073917,0.4630475,-0.38270554,-0.799452,0.46478567,-0.38090655,-0.79930246,0.46537334,-0.38149428,-0.79867995,0.46626848,-0.38172424,-0.7980478,0.46746117,-0.37991345,-0.7982142,0.46838912,-0.37877172,-0.7982128,0.47191355,-0.3708076,-0.7998746,0.4726083,-0.3677791,-0.80086195,0.4746869,-0.3661127,-0.800396,0.4759457,-0.36324337,-0.8009556,0.4766486,-0.36244124,-0.800901,0.4775631,-0.3604055,-0.80127484,0.48010847,-0.35773462,-0.8009506,0.48630244,-0.34968054,-0.8007705,0.48517668,-0.35007176,-0.80128235,0.48409608,-0.34989452,-0.802013,0.48534924,-0.34802252,-0.8020701,0.48645332,-0.3467646,-0.8019461,0.4891288,-0.34440067,-0.8013371,0.49027362,-0.34380543,-0.800893,0.4925735,-0.3434548,-0.7996313,0.4954596,-0.34129614,-0.79877204,0.49715248,-0.3403571,-0.79812056,0.49954748,-0.3398747,-0.79682964,0.50064975,-0.3386514,-0.7966587,0.50226754,-0.33824724,-0.7958116,0.50490206,-0.33582577,-0.7951698,0.50642633,-0.3333811,-0.7952292,0.5071368,-0.33247945,-0.7951539,0.5079917,-0.3318011,-0.7948915,0.5089826,-0.33220938,-0.7940867,0.51182,-0.33204868,-0.7923282,0.51264626,-0.33105168,-0.79221123,0.51413226,-0.3297905,-0.7917741,0.52549636,-0.3200624,-0.7882979,0.52554977,-0.31819353,-0.7890186,0.5272008,-0.3174679,-0.788209,0.53097725,-0.3119334,-0.7878837,0.5308732,-0.30864096,-0.7892493,0.5311763,-0.30295637,-0.7912453,0.53297186,-0.2987253,-0.79164654,0.53591347,-0.29354343,-0.79159904,0.53622395,-0.29091093,-0.79236025,0.5372561,-0.29087514,-0.79167384,0.5384918,-0.2903598,-0.79102325,0.5405361,-0.28779644,-0.7905656,0.54204106,-0.28610817,-0.79014784,0.5445033,-0.2807502,-0.79037684,0.5444791,-0.2796097,-0.79079765,0.5448909,-0.2765842,-0.7915776,0.5465102,-0.2736413,-0.79148406,0.5473523,-0.2706267,-0.79193854,0.54902995,-0.26684588,-0.7920602,0.5491272,-0.26433173,-0.7928355,0.54968387,-0.262255,-0.79313934,0.5502999,-0.2604617,-0.79330313,0.55012554,-0.2593146,-0.79379964,0.5501982,-0.25786078,-0.7942228,0.5519114,-0.25640637,-0.79350454,0.5536789,-0.25529417,-0.79263145,0.5560321,-0.25332433,-0.7916155,0.5601867,-0.25025296,-0.78966093,0.5613827,-0.24792385,-0.7895462,0.5632517,-0.24584612,-0.78886455,0.56521463,-0.2466505,-0.7872077,0.5666929,-0.24703206,-0.7860244,0.5678841,-0.24859755,-0.78466994,0.5727772,-0.24782476,-0.7813509,0.57391566,-0.24470754,-0.78149796,0.57529145,-0.24130669,-0.78154385,0.5771383,-0.23753361,-0.7813381,0.5773413,-0.23248897,-0.7827042,0.57845724,-0.23011446,-0.782582,0.57919174,-0.22655839,-0.7830761,0.58049077,-0.22249748,-0.7832786,0.5815886,-0.22046138,-0.78303987,0.5817538,-0.21882355,-0.7833766,0.5836031,-0.21641971,-0.78266853,0.58431625,-0.21469538,-0.7826113,0.5852646,-0.21407442,-0.7820726,0.5868635,-0.2108067,-0.78176206,0.5971127,-0.18865694,-0.77965695,0.6026088,-0.20883854,-0.7702267,0.60236925,-0.24450931,-0.7598463,0.60266685,-0.29928157,-0.7397454,0.61189336,-0.3040769,-0.73015326,0.6402961,-0.28597257,-0.71290994,0.6709416,-0.22210695,-0.7074644,0.6816388,-0.20706978,-0.7017768,0.6970505,-0.20895022,-0.6859011,0.7139805,-0.2028842,-0.67012674,0.72511995,-0.1988151,-0.6592978,0.72420293,-0.21178463,-0.65626025,0.7254081,-0.21270236,-0.65463036,0.7349103,-0.20994359,-0.6448493,0.73713005,-0.21253754,-0.641457,0.74216884,-0.25593355,-0.61942184,0.75741726,-0.25661227,-0.6003909,0.7588787,-0.26407534,-0.5952875,0.76013577,-0.25753963,-0.5965459,0.7818446,-0.24469101,-0.5734504,0.7834855,-0.24385305,-0.5715648,0.791018,-0.27754396,-0.54521537,0.7969468,-0.28775555,-0.531105,0.8031824,-0.30962965,-0.5089474,0.80572546,-0.3273242,-0.4936247,0.82246286,-0.34631217,-0.4512458,0.8435963,-0.38772306,-0.37150538,0.821473,-0.4401872,-0.36251518,0.8207131,-0.4423821,-0.36156332,0.80216944,-0.47401026,-0.3630957,0.7924956,-0.48699066,-0.3671387,0.7558731,-0.5446704,-0.36330432,0.7216999,-0.56611687,-0.39832276,0.7130792,-0.5573293,-0.42532593,0.69658893,-0.5575102,-0.4516041,0.6845715,-0.5343076,-0.49586013,0.66168827,-0.5255107,-0.53479636,0.64299047,-0.5229723,-0.55952054,0.6241028,-0.5291688,-0.5748705,0.6133995,-0.53262377,-0.58314055,0.5929641,-0.549436,-0.5886541,0.5782018,-0.5678102,-0.5858962,0.58029455,-0.56745076,-0.58417284,0.56544524,-0.5402691,-0.62320215,0.56066054,-0.54601777,-0.6225145,0.5561924,-0.56781155,-0.60682786,0.5526644,-0.56164783,-0.6157222,0.54168445,-0.5782249,-0.6101098,0.5366608,-0.58142436,-0.61150706,0.49527368,-0.6167192,-0.6118508,0.4776515,-0.6209608,-0.62149566,0.45732546,-0.6204396,-0.6371092,0.4579115,-0.6175428,-0.6394982,0.45084846,-0.6203822,-0.64176446,0.44738623,-0.61965865,-0.6448789,0.43897274,-0.624793,-0.6457063,0.43192747,-0.62883824,-0.6465301,0.402315,-0.58948416,-0.70046484,0.4029646,-0.5854332,-0.7034824,0.3999241,-0.5588085,-0.72649413,0.39756605,-0.5460821,-0.73738426,0.39331964,-0.540239,-0.74393654,0.38996598,-0.5108449,-0.7661358,0.3912205,-0.48923677,-0.77948314,0.4080985,-0.43633574,-0.8019144,0.41563317,-0.42581025,-0.8037007,0.4536394,-0.38358247,-0.8044102,0.46178985,-0.38303152,-0.80002314,0.46212748,-0.38350058,-0.79960334,0.47016785,-0.374989,-0.79895264,0.49824718,-0.3402081,-0.79750127,0.5165934,-0.3294558,-0.7903102,0.5251573,-0.32294658,-0.787347,0.54436374,-0.28244445,-0.7898691,0.57628036,-0.23959763,-0.7813411,0.586816,-0.21176797,-0.7815377,0.6585636,-0.27386257,-0.7009232,0.6598153,-0.27286735,-0.7001337,0.677391,-0.21511823,-0.7034669,0.68273574,-0.21049845,-0.6996873,0.6907955,-0.21121825,-0.6915117,0.72645706,-0.19603144,-0.6586591,0.7269273,-0.19613676,-0.6581087,0.7325251,-0.21263736,-0.646678,0.738135,-0.21742469,-0.6386574,0.74065614,-0.21894161,-0.6352111,0.7435542,-0.23256862,-0.62692827,0.7433965,-0.2611743,-0.6157512,0.7478066,-0.26151973,-0.6102399,0.75925505,-0.26436633,-0.5946783,0.7600101,-0.2603022,-0.5955059,0.77729374,-0.24116278,-0.58108085,0.78622,-0.250809,-0.5647592,0.79074794,-0.26003054,-0.5541677,0.79286575,-0.26487744,-0.54882044,0.7930862,-0.26587325,-0.5480198,0.7915539,-0.2723721,-0.5470428,0.79872525,-0.2826146,-0.53119385,0.7941423,-0.29449326,-0.53161234,0.827923,-0.3513933,-0.4371113,0.8427887,-0.38935798,-0.3716283,0.8188802,-0.44340727,-0.36445183,0.82362914,-0.4421924,-0.35510686,0.7991264,-0.4778163,-0.36481306,0.7606331,-0.5358426,-0.36648312,0.75231504,-0.5539721,-0.35656264,0.74743223,-0.5636486,-0.3516325,0.7441022,-0.5653383,-0.3559559,0.7197331,-0.560656,-0.40944976,0.6725775,-0.52961946,-0.5168585,0.6421207,-0.52243465,-0.5610196,0.6393097,-0.5232208,-0.5634919,0.61207485,-0.5329831,-0.5842032,0.6030627,-0.5396335,-0.58746153,0.5849583,-0.5578427,-0.5887574,0.5798384,-0.5675532,-0.5845261,0.559158,-0.55137396,-0.61913574,0.5551459,-0.572336,-0.6035267,0.52571136,-0.5879314,-0.614788,0.4501613,-0.61920905,-0.6433777,0.44722265,-0.6189239,-0.64569736,0.43480334,-0.6270674,-0.64632237,0.4337856,-0.6256164,-0.648409,0.41547126,-0.6133299,-0.67172176,0.4027188,-0.58737004,-0.7020071,0.40070617,-0.5741753,-0.71397287,0.4003201,-0.5592693,-0.7259213,0.3965916,-0.54319036,-0.74004006,0.40030742,-0.46027255,-0.7924034,0.40889066,-0.43548584,-0.8019729,0.41735286,-0.42375803,-0.8038941,0.4250478,-0.416242,-0.8037891,0.48255053,-0.35584456,-0.80032474,0.48659164,-0.35151774,-0.7997899,0.51863426,-0.32865903,-0.7893046,0.53055215,-0.31354263,-0.7875312,0.58649033,-0.21309035,-0.7814228,0.5889972,-0.20652942,-0.7812988,0.59078836,-0.20486142,-0.7803851,0.661246,-0.27048886,-0.6997067,0.6789264,-0.25474042,-0.6885973,0.67538863,-0.21126324,-0.7065536,0.68199795,-0.21203615,-0.69994247,0.7873425,-0.26083863,-0.5586187,0.8204946,-0.34596995,-0.45507523,0.8303385,-0.3538208,-0.43052155,0.83977515,-0.36629355,-0.4007577,0.8304896,-0.41683397,-0.3695085,0.8214546,-0.44087574,-0.3617195,0.8224009,-0.43980908,-0.3608667,0.81968755,-0.44357395,-0.36242855,0.81126887,-0.45938247,-0.3616774,0.7782859,-0.5085015,-0.36837113,0.7895902,-0.49141443,-0.367504,0.7541581,-0.5474591,-0.36267638,0.75228435,-0.55239314,-0.3590683,0.746964,-0.5635824,-0.35273165,0.7195674,-0.55979335,-0.4109186,0.6932357,-0.5465318,-0.46981618,0.6734183,-0.5299163,-0.5154576,0.595786,-0.5474192,-0.587683,0.5662137,-0.5384491,-0.624079,0.55548245,-0.5702041,-0.60523266,0.54250544,-0.57392544,-0.6134309,0.5171539,-0.5970949,-0.6132125,0.444225,-0.6199356,-0.6467952,0.4336118,-0.6274974,-0.6467053,0.4215516,-0.61642677,-0.66506565,0.4006083,-0.5996594,-0.69276375,0.4007399,-0.574672,-0.7135542,0.5098255,-0.33239433,-0.79346836,0.5202267,-0.32786855,-0.78858507,0.60058266,-0.24073273,-0.76246196,0.6377972,-0.28766742,-0.7144664,0.6616325,-0.27071047,-0.6992555,0.6759827,-0.23550826,-0.6982716,0.67690194,-0.23012282,-0.69917613,0.7227846,-0.19922271,-0.6617346,0.7778675,-0.24343486,-0.57936317,0.789235,-0.28131613,-0.5458657,0.80601805,-0.33084255,-0.4907933,0.8286707,-0.35254037,-0.4347646,0.8208976,-0.34654477,-0.4539096,0.8369331,-0.36635697,-0.40660256,0.83167344,-0.41370198,-0.37036467,0.817743,-0.4445359,-0.3656285,0.73522073,-0.56868535,-0.36884603,0.7192348,-0.5588269,-0.41281196,0.70138544,-0.5516178,-0.45141584,0.5444583,-0.5701913,-0.6151805,0.50062656,-0.6083869,-0.6158234,0.4499658,-0.6184755,-0.6442195,0.44512028,-0.61900836,-0.6470677,0.4193944,-0.61475587,-0.6679697,0.4168722,-0.6136799,-0.67053306,0.3934659,-0.5271131,-0.7532174,0.3955752,-0.48456597,-0.7802026,0.48461848,-0.35405672,-0.7998679,0.54312307,-0.28455305,-0.7899664,0.5548717,-0.26459303,-0.7887382,0.58982307,-0.20587562,-0.78084826,0.60060143,-0.24019825,-0.76261574,0.6409991,-0.28587946,-0.7123153,0.6632825,-0.26984888,-0.6980242,0.6746577,-0.21312541,-0.7066927,0.68256307,-0.21149312,-0.6995558,0.74306345,-0.23145278,-0.62792224,0.78908443,-0.2651272,-0.55412394,0.78897166,-0.26626763,-0.5537376,0.82013375,-0.3459923,-0.45570824,0.8110281,-0.33942747,-0.47646868,0.8361705,-0.3657201,-0.4087391,0.8219312,-0.44040596,-0.36120865,0.818567,-0.44768304,-0.35990006,0.75310487,-0.55007666,-0.36089996,0.73468643,-0.56485033,-0.37573925,0.70352143,-0.55194193,-0.44768038,0.59420097,-0.54836875,-0.588402,0.5776744,-0.5678718,-0.58635646,0.5242469,-0.5891496,-0.61487234,0.50228906,-0.60637146,-0.6164571,0.5204777,-0.593017,-0.61435646,0.45007065,-0.61691666,-0.6456394,0.39541757,-0.5321457,-0.74864274,0.3965297,-0.4829601,-0.7807136,0.41907516,-0.43213964,-0.79851824,0.55620265,-0.2655619,-0.7874741,0.7322008,-0.2215261,-0.6440561,0.7872707,-0.26028237,-0.55897933,0.79461956,-0.30105367,-0.52720624,0.8283706,-0.35920715,-0.42985162,0.83591187,-0.36903763,-0.4062789,0.82007444,-0.34933677,-0.45325685,0.8424713,-0.38012627,-0.3817672,0.81850106,-0.44718602,-0.36066708,0.73371726,-0.56120706,-0.3830216,0.70561415,-0.5524088,-0.4437941,0.48935896,-0.60535175,-0.6277556,0.45135793,-0.61581194,-0.64579535,0.39571252,-0.5309871,-0.74930924,0.41358292,-0.45846188,-0.7866142,0.4248282,-0.43287504,-0.79507244,0.4021363,-0.48367414,-0.77739674,0.48539868,-0.35859397,-0.79736966,0.54947937,-0.28123114,-0.7867538,0.6751628,-0.21531136,-0.70554674,0.73347586,-0.23219389,-0.63882643,0.82718647,-0.35776556,-0.43332013,0.8194289,-0.3486132,-0.45497817,0.8353778,-0.36831993,-0.40802497,0.8181256,-0.34716552,-0.45841748,0.80820125,-0.33652073,-0.48328516,0.83200884,-0.40827525,-0.37559643,0.8185949,-0.44620693,-0.36166522,0.73713785,-0.5531559,-0.38813183,0.70682615,-0.5526944,-0.44150397,0.49463403,-0.5987691,-0.62993073,0.47629538,-0.6081986,-0.63500965,0.51290786,-0.5892559,-0.6242619,0.44646552,-0.6187606,-0.6463775,0.41954198,-0.481703,-0.76938075,0.4050176,-0.49515578,-0.7686231,0.4280857,-0.4447061,-0.7867523,0.4320673,-0.42591313,-0.79493135,0.42391002,-0.4633055,-0.7782341,0.41498303,-0.49989042,-0.76019645,0.4102348,-0.51785994,-0.75068533,0.40529907,-0.53560406,-0.7408515,0.48434773,-0.36008346,-0.7973376,0.546858,-0.2859873,-0.78686565,0.557461,-0.26734275,-0.78598034,0.5360864,-0.3045242,-0.7873223,0.6759958,-0.21533465,-0.70474154,0.7320519,-0.23073646,-0.6409841,0.7735102,-0.26260287,-0.5768203,0.7882582,-0.28189504,-0.54697734,0.80062014,-0.3159871,-0.5090772,0.8352383,-0.369299,-0.40742514,0.82711214,-0.35842136,-0.43291986,0.8353314,-0.3686463,-0.40782517,0.8180978,-0.34749475,-0.45821762,0.8315811,-0.4092086,-0.3755278,0.740358,-0.54738647,-0.39017707,0.6931683,-0.544862,-0.4718508,0.7068387,-0.5518638,-0.44252157,0.5719486,-0.56962144,-0.5902595,0.547301,-0.56268793,-0.61955136,0.49484584,-0.59857875,-0.6299453,0.51301354,-0.58916,-0.6242656,0.47640118,-0.6081041,-0.63502073,0.5132255,-0.58896774,-0.6242728,0.53152,-0.57927287,-0.61800444,0.4524491,-0.6150046,-0.6458011,0.41137433,-0.6011513,-0.68511915,0.4017606,-0.5693839,-0.7172101,0.4369867,-0.42275575,-0.7939271,0.43229318,-0.44202733,-0.7859608,0.42948842,-0.44381368,-0.78649163,0.42740715,-0.46109697,-0.7776327,0.42233092,-0.4799558,-0.76894677,0.42600852,-0.46198064,-0.7778757,0.43277013,-0.42546245,-0.7947904,0.4170673,-0.49859557,-0.7599062,0.41161868,-0.5170076,-0.7505153,0.41567776,-0.49945897,-0.7601005,0.4059877,-0.5351834,-0.7407784,0.4253089,-0.46242252,-0.777996,0.49339864,-0.35494366,-0.79408616,0.5477492,-0.28655887,-0.78603745,0.55835617,-0.2679175,-0.7851488,0.5696801,-0.24975295,-0.7829994,0.55880314,-0.26820484,-0.78473264,0.5365301,-0.3048083,-0.78691,0.58720237,-0.23419784,-0.7748192,0.67763984,-0.23508583,-0.6968062,0.730795,-0.23304105,-0.6415844,0.7741549,-0.273142,-0.57103205,0.80658406,-0.3334438,-0.48809576,0.80095214,-0.31729493,-0.50773966,0.8193217,-0.41299042,-0.397682,0.8310622,-0.39662188,-0.38990602,0.81720364,-0.38778746,-0.42637908,0.83014405,-0.38396016,-0.40427154,0.8134935,-0.36229113,-0.45494342,0.81759256,-0.44365793,-0.36702868,0.74247587,-0.54363304,-0.3913984,0.76484454,-0.528259,-0.36872122,0.7065699,-0.55145013,-0.44346547,0.54878056,-0.5603517,-0.6203595,0.5635802,-0.5412784,-0.6240152,0.4950335,-0.59841067,-0.62995756,0.51331925,-0.5888829,-0.6242758,0.47649485,-0.60802084,-0.63503015,0.5135069,-0.5887136,-0.6242812,0.5318943,-0.578931,-0.61800265,0.42477146,-0.6033078,-0.67497325,0.4249676,-0.49710783,-0.75649613,0.41272062,-0.52539593,-0.74405694,0.43391657,-0.4508225,-0.7800484,0.43787384,-0.42720437,-0.7910518,0.42961413,-0.47412887,-0.76852685,0.41464615,-0.5420196,-0.73094684,0.41997787,-0.51974326,-0.7439661,0.40897456,-0.56392115,-0.71744883,0.52187854,-0.32686684,-0.7879092,0.5081017,-0.340694,-0.7910501,0.49423334,-0.35444802,-0.7937884,0.48028505,-0.36812574,-0.7961217,0.57174283,-0.24870816,-0.78182757,0.5603606,-0.2674252,-0.78388757,0.5487938,-0.286042,-0.7854969,0.5593224,-0.26794508,-0.7844513,0.5370551,-0.30455145,-0.78665125,0.6783317,-0.2349782,-0.69616914,0.73151314,-0.235678,-0.6398003,0.7666414,-0.2715504,-0.58182585,0.7776558,-0.27672672,-0.564512,0.7552199,-0.2663662,-0.59890896,0.8169402,-0.38729954,-0.42732632,0.81333977,-0.36204445,-0.45541435,0.8192124,-0.41274938,-0.39815712,0.81303126,-0.36155114,-0.4563562,0.80749613,-0.33552393,-0.48515326,0.7434219,-0.54221594,-0.3915683,0.6942025,-0.5404813,-0.47535557,0.70319223,-0.54662585,-0.45466563,0.7115373,-0.5527413,-0.4338107,0.53304714,-0.57853085,-0.6173838,0.5483811,-0.5600462,-0.62098825,0.4760783,-0.60766363,-0.6356842,0.4947603,-0.59817034,-0.6304003,0.47635606,-0.6079018,-0.63524824,0.51337266,-0.58859235,-0.6245059,0.4284808,-0.60127723,-0.67444044,0.41582045,-0.5943459,-0.68836486,0.44069245,-0.6081636,-0.6602478,0.41992763,-0.5205091,-0.7434588,0.41994438,-0.52025384,-0.743628,0.42491892,-0.49814495,-0.7558409,0.41460365,-0.5425218,-0.73059833,0.40894866,-0.56416804,-0.7172694,0.43391064,-0.45135593,-0.77974313,0.42960668,-0.4743921,-0.76836854,0.43787554,-0.42747468,-0.7909048,0.42959142,-0.4749184,-0.7680519,0.41451782,-0.5435258,-0.7299005,0.40889677,-0.56466144,-0.71691066,0.41989395,-0.5210194,-0.7431203,0.40879217,-0.56564784,-0.71619236,0.5235423,-0.32518947,-0.7874994,0.5093585,-0.3394427,-0.7907797,0.49507654,-0.35361832,-0.793633,0.4807089,-0.3677134,-0.7960564,0.56114405,-0.26676628,-0.78355163,0.5493208,-0.28560507,-0.7852874,0.5606218,-0.2672056,-0.78377575,0.53732073,-0.30433434,-0.78655386,0.58631444,-0.2623438,-0.76642746,0.6850241,-0.2330377,-0.6902431,0.7047281,-0.21061838,-0.67749405,0.7774594,-0.27709523,-0.5646018,0.7775249,-0.27697244,-0.5645718,0.7665101,-0.27179638,-0.5818839,0.75515425,-0.2664894,-0.598937,0.81663907,-0.3862818,-0.42882046,0.8128427,-0.36103657,-0.45709887,0.8191009,-0.4122467,-0.39890644,0.8196869,-0.4251064,-0.38392437,0.8180848,-0.39930433,-0.413876,0.81246287,-0.36000717,-0.4585836,0.8147646,-0.373182,-0.44372714,0.80973536,-0.34676024,-0.47337732,0.75528467,-0.52553326,-0.39161175,0.7374628,-0.54228646,-0.40258417,0.7726703,-0.5085738,-0.3799122,0.5478039,-0.56024945,-0.62131435,0.4734842,-0.6055538,-0.63962275,0.49306303,-0.5967517,-0.63306886,0.47521725,-0.6069609,-0.6369985,0.51254064,-0.58787704,-0.6258616,0.4291789,-0.6009116,-0.6743225,0.44103917,-0.60798204,-0.66018355,0.4161718,-0.59416187,-0.6883115,0.44173285,-0.6076186,-0.6600543,0.4596004,-0.4088369,-0.7884288,0.45255193,-0.43559313,-0.77811015,0.44719562,-0.4195086,-0.78995484,0.4401286,-0.4461171,-0.7792729,0.4451307,-0.4619701,-0.7670999,0.43734467,-0.4879445,-0.755407,0.43891686,-0.4671615,-0.76753646,0.44098356,-0.42482284,-0.7906068,0.42920187,-0.51349384,-0.7430409,0.4207108,-0.53859556,-0.73001176,0.4229961,-0.51851535,-0.7431125,0.41188002,-0.56322825,-0.71633005,0.43580902,-0.46975112,-0.76772684,0.58112746,-0.2884044,-0.76099527,0.5679312,-0.27399454,-0.77613217,0.5837734,-0.27539948,-0.76378256,0.56267786,-0.29996294,-0.77033496,0.54401517,-0.31147748,-0.77912086,0.69894147,-0.23244096,-0.676352,0.78289264,-0.29112992,-0.5498386,0.7704398,-0.28117463,-0.5721566,0.75727093,-0.2711891,-0.59413564,0.8132021,-0.37047353,-0.44883376,0.81028205,-0.35202748,-0.46852934,0.8180274,-0.40445194,-0.40896192,0.81931174,-0.42123795,-0.3889561,0.8159902,-0.38752857,-0.4289308,0.8053868,-0.33599183,-0.48832533,0.80966616,-0.3532927,-0.46864164,0.80036914,-0.31857684,-0.50785625,0.8053217,-0.46509248,-0.36762217,0.75681484,-0.52337396,-0.3915495,0.77341783,-0.50748146,-0.37985188,0.7382452,-0.5412207,-0.40258437,0.7749095,-0.5052946,-0.37972718,0.5880137,-0.55391735,-0.5894196,0.5483888,-0.5595484,-0.6214301,0.5647394,-0.5398545,-0.6242007,0.44921377,-0.5920709,-0.6690732,0.46919024,-0.5831584,-0.6631643,0.43638653,-0.58526635,-0.683396,0.5010515,-0.5810468,-0.6413517,0.48136246,-0.58997595,-0.6482426,0.4957573,-0.37407434,-0.78376853,0.49609253,-0.39434996,-0.77355045,0.48134217,-0.38804632,-0.7859578,0.5100931,-0.36001718,-0.7811483,0.48157912,-0.428141,-0.764707,0.46711594,-0.4219408,-0.7770255,0.48163384,-0.40819198,-0.77550507,0.46659252,-0.46134344,-0.75462157,0.46702778,-0.44174865,-0.7659916,0.46686146,-0.40192944,-0.78771377,0.4511725,-0.493912,-0.7432996,0.45197847,-0.47469807,-0.7552332,0.4353597,-0.5258016,-0.73074937,0.436526,-0.5069953,-0.74323666,0.4191948,-0.55696857,-0.716981,0.56188595,-0.30109355,-0.7704719,0.5436152,-0.31204066,-0.7791747,0.5807362,-0.2889719,-0.7610786,0.5428147,-0.31316668,-0.779281,0.69866437,-0.23326802,-0.6763536,0.67834675,-0.25638503,-0.6885582,0.794653,-0.35109407,-0.4952369,0.79506195,-0.3261882,-0.511349,0.8043034,-0.36080334,-0.47214094,0.81057096,-0.3949283,-0.43244243,0.81604105,-0.41652077,-0.40073368,0.803438,-0.3731153,-0.4639745,0.7992511,-0.36213002,-0.47964522,0.7842322,-0.328877,-0.52613664,0.78964585,-0.34000924,-0.5107379,0.77841496,-0.31769872,-0.5414219,0.77219725,-0.30647624,-0.5565822,0.7655825,-0.295211,-0.5716064,0.7585747,-0.28390443,-0.5864833,0.7511778,-0.2725584,-0.60120195,0.8064614,-0.4626132,-0.3682512,0.7225907,-0.52885175,-0.44517252,0.73074526,-0.5350507,-0.4239483,0.71714765,-0.54085094,-0.43952194,0.7415795,-0.5108426,-0.43485597,0.7137843,-0.52262473,-0.4662354,0.69934815,-0.5284788,-0.4812716,0.7278659,-0.5167459,-0.45076045,0.7678506,-0.4989638,-0.40179673,0.7495278,-0.51712227,-0.4132707,0.75491196,-0.5049152,-0.41853142,0.7803825,-0.4929888,-0.38466233,0.7439721,-0.52922463,-0.40795442,0.5882882,-0.5534603,-0.589575,0.48531428,-0.5638457,-0.6682425,0.5092292,-0.5714125,-0.64356303,0.4443289,-0.57566744,-0.68642473,0.42359135,-0.5815338,-0.6945422,0.4649102,-0.5697713,-0.6776571,0.52550673,-0.5519071,-0.64748836,0.52892935,-0.5654951,-0.6328105,0.5055201,-0.5578908,-0.6581849,0.54525346,-0.5458949,-0.6361583,0.55815816,-0.33025166,-0.76117885,0.5410117,-0.3277217,-0.77453524,0.5538568,-0.3590979,-0.75119334,0.53906924,-0.34219936,-0.76961285,0.5770412,-0.31825072,-0.75215685,0.5883106,-0.29759735,-0.7518819,0.5655519,-0.33875415,-0.7519286,0.52990574,-0.39926815,-0.7481877,0.51550466,-0.38266015,-0.7666982,0.53476614,-0.3709089,-0.75924426,0.54196995,-0.37927234,-0.7499474,0.510674,-0.410867,-0.75524855,0.51767856,-0.41907573,-0.74591184,0.50530285,-0.4386859,-0.7431176,0.51979417,-0.35409194,-0.77745277,0.5369874,-0.3565962,-0.76451534,0.49279335,-0.45808932,-0.7398033,0.48599726,-0.45005086,-0.7491735,0.48016465,-0.4772769,-0.7359678,0.46085313,-0.48838648,-0.7410081,0.46743155,-0.49623954,-0.7316106,0.45460886,-0.51496834,-0.7267313,0.4417114,-0.5334545,-0.7213302,0.42875403,-0.5516892,-0.71540827,0.41575155,-0.56966394,-0.7089666,0.50100607,-0.41664192,-0.75855285,0.69841623,-0.23384064,-0.67641217,0.67783034,-0.25752318,-0.68864197,0.7931738,-0.46008456,-0.39899564,0.8067068,-0.44901755,-0.38419712,0.793081,-0.47359288,-0.38305652,0.80645937,-0.43531692,-0.40015307,0.7927736,-0.44646913,-0.41494018,0.79188055,-0.4327493,-0.43087488,0.8044859,-0.40761426,-0.43203354,0.7904952,-0.4189285,-0.44678438,0.7886184,-0.4050102,-0.462653,0.794654,-0.39230832,-0.46327013,0.7862519,-0.39099714,-0.4784656,0.78339744,-0.37689298,-0.4942066,0.812884,-0.42280653,-0.4005674,0.7800576,-0.36270088,-0.50986093,0.7762354,-0.34842414,-0.52541333,0.781602,-0.33540893,-0.525927,0.7719343,-0.33406612,-0.5408487,0.7671581,-0.31963003,-0.55615205,0.76191115,-0.30511948,-0.5713086,0.7561983,-0.29053774,-0.5863036,0.7500248,-0.2758882,-0.60112274,0.7976181,-0.38592902,-0.4635345,0.6801392,-0.5207516,-0.5159733,0.6980343,-0.5159762,-0.49650443,0.7086825,-0.520412,-0.47638264,0.71535087,-0.5111847,-0.47640678,0.7320667,-0.50637704,-0.45569798,0.7481598,-0.5015536,-0.43439704,0.7636092,-0.49671474,-0.4125233,0.77839446,-0.49186036,-0.39009672,0.5876385,-0.5488661,-0.59449726,0.5060768,-0.55737144,-0.658197,0.50589126,-0.55754465,-0.65819305,0.48605663,-0.56315637,-0.6682843,0.5258775,-0.5515593,-0.6474837,0.5454383,-0.54572016,-0.6361499,0.44469863,-0.5753262,-0.6864713,0.46509558,-0.56959987,-0.67767406,0.42377564,-0.5813643,-0.6945717,0.4654662,-0.5692571,-0.6777076,0.52661896,-0.5508631,-0.6474738,0.54580826,-0.54537046,-0.6361325,0.50644803,-0.55702496,-0.6582048,0.54654783,-0.544671,-0.6360966,0.5419921,-0.38284805,-0.7481122,0.5299012,-0.4008435,-0.74734807,0.5419901,-0.38245112,-0.7483167,0.55393237,-0.3639058,-0.74882007,0.5298982,-0.4016308,-0.74692744,0.5176689,-0.41985595,-0.74547964,0.51766396,-0.42024606,-0.7452632,0.54198605,-0.38165683,-0.74872506,0.5539093,-0.36230424,-0.7496133,0.5656579,-0.34279418,-0.7500155,0.5772456,-0.32394826,-0.7495633,0.56566775,-0.34319773,-0.7498235,0.57721823,-0.3231351,-0.7499352,0.5885946,-0.30374494,-0.74919647,0.58857656,-0.30333558,-0.74937654,0.565687,-0.3440049,-0.749439,0.5298903,-0.40320432,-0.7460848,0.51765347,-0.4210256,-0.74483037,0.54199535,-0.38364193,-0.7477031,0.51763105,-0.42258418,-0.7439628,0.5052317,-0.4417726,-0.7413353,0.4673939,-0.49698558,-0.7311281,0.48006994,-0.47954118,-0.73455644,0.467375,-0.49735835,-0.73088664,0.48010215,-0.47878677,-0.7350274,0.4927064,-0.4607612,-0.7382002,0.49271944,-0.46037984,-0.73842937,0.46733648,-0.4981038,-0.7304035,0.45452023,-0.5164409,-0.72574115,0.44163597,-0.5345444,-0.7205692,0.44166127,-0.53418106,-0.7208231,0.42869797,-0.55240583,-0.7148887,0.41572067,-0.570017,-0.7087009,0.4927446,-0.4596167,-0.73888785,0.56559604,-0.3403709,-0.751165,0.5656173,-0.34117883,-0.7507823,0.57716143,-0.32150784,-0.75067794,0.58854043,-0.30251646,-0.7497359,0.54198116,-0.38086224,-0.74913305,0.58846605,-0.30087757,-0.7504535,0.7115486,-0.25934914,-0.65302116,0.7151993,-0.23475942,-0.6583145,0.7277115,-0.2602619,-0.6345863,0.6949181,-0.25843626,-0.6710437,0.7370496,-0.42027006,-0.52927405,0.7185604,-0.4253306,-0.55024076,0.7334903,-0.40636083,-0.5448512,0.7480923,-0.38721436,-0.5389091,0.7250163,-0.45277697,-0.51898396,0.72203076,-0.43910512,-0.5346572,0.7294503,-0.39235702,-0.56031984,0.7146083,-0.4114571,-0.56571895,0.71017826,-0.3974873,-0.58107716,0.7660819,-0.3820596,-0.5168645,0.7549036,-0.4151963,-0.50767374,0.75173974,-0.40125212,-0.52333945,0.76933414,-0.3961308,-0.50120395,0.7401246,-0.43408123,-0.513604,0.7067029,-0.45774916,-0.53947824,0.6938908,-0.48956984,-0.5280501,0.69108576,-0.476194,-0.54372764,0.68779504,-0.46270683,-0.5593214,0.70959824,-0.47127613,-0.5238026,0.6752,-0.49443164,-0.5473959,0.67791384,-0.5076509,-0.5317174,0.6994587,-0.43037814,-0.5705542,0.703322,-0.44411534,-0.55506736,0.7482792,-0.32491642,-0.5783662,0.73936015,-0.35887092,-0.5697001,0.7342832,-0.344572,-0.5848917,0.7287383,-0.33019271,-0.59992766,0.75344163,-0.3393243,-0.5631916,0.7199416,-0.3640777,-0.59087354,0.72493255,-0.37826142,-0.5756658,0.7365594,-0.29587665,-0.6082247,0.74265015,-0.31043276,-0.59338206,0.7581321,-0.3536531,-0.5478733,0.762347,-0.36789927,-0.53242576,0.7439645,-0.3730862,-0.5543676,0.77616596,-0.4377768,-0.4537817,0.7626744,-0.4699721,-0.44435787,0.761468,-0.45643464,-0.46025422,0.7597697,-0.44279087,-0.47611582,0.7774622,-0.45145893,-0.43787837,0.74641997,-0.47489384,-0.46618992,0.74753624,-0.4882808,-0.4503015,0.7721003,-0.41010958,-0.4854598,0.7743782,-0.42399275,-0.4696473,0.77826583,-0.46503568,-0.4219528,0.77857655,-0.47850376,-0.40602052,0.7633883,-0.4833999,-0.42844242,0.71200615,-0.484693,-0.50805503,0.7295233,-0.479801,-0.4874287,0.7139243,-0.49799693,-0.49225116,0.7275145,-0.4663434,-0.50323606,0.73104113,-0.49314645,-0.4715776,0.6962077,-0.5028317,-0.5123038,0.7427125,-0.4477909,-0.49785674,0.757581,-0.4290436,-0.4919275,0.74481165,-0.4613963,-0.48204672,0.585364,-0.53823155,-0.6063463,0.51847416,-0.49730188,-0.6956115,0.5129062,-0.5274893,-0.6772609,0.50536484,-0.51564896,-0.69189054,0.49737412,-0.50370914,-0.7063257,0.5393274,-0.49086696,-0.68423355,0.52617747,-0.5092935,-0.6809974,0.49215066,-0.5337626,-0.68766654,0.49952778,-0.5454464,-0.6730233,0.50173223,-0.47303316,-0.7242268,0.52315664,-0.46649945,-0.71322185,0.5103237,-0.48521423,-0.71002597,0.5144101,-0.45417988,-0.72739464,0.53146446,-0.47872943,-0.69883025,0.5334279,-0.52118707,-0.66619724,0.5536939,-0.51485634,-0.6544814,0.5402195,-0.5329805,-0.6512255,0.546739,-0.5029102,-0.66944593,0.56018716,-0.52670336,-0.6393543,0.51999265,-0.539228,-0.66245055,0.45002463,-0.5462211,-0.7064845,0.47118282,-0.5400068,-0.69740903,0.4579702,-0.5577928,-0.69219255,0.46307215,-0.5282748,-0.71168107,0.4788462,-0.5516347,-0.6829389,0.43692103,-0.5639203,-0.7007809,0.47604874,-0.5100892,-0.7163704,0.48894027,-0.4916725,-0.7205523,0.48432228,-0.5219762,-0.7021203,0.551616,-0.39642042,-0.7338736,0.573036,-0.3896148,-0.7209924,0.5608124,-0.40912256,-0.7197974,0.54841524,-0.428445,-0.7181055,0.563695,-0.37679657,-0.7350322,0.5695772,-0.4217458,-0.7054872,0.5819482,-0.40235797,-0.70671374,0.5904242,-0.41502354,-0.69221,0.52695936,-0.43512094,-0.73005724,0.53936607,-0.41586477,-0.73221636,0.57558894,-0.35700214,-0.73569477,0.5872844,-0.33704603,-0.73586476,0.596907,-0.3500789,-0.72190493,0.5987673,-0.31693733,-0.73554635,0.59412897,-0.3827878,-0.7074491,0.5850723,-0.3699306,-0.7216937,0.5599118,-0.48440537,-0.67219806,0.56520456,-0.45335573,-0.6892113,0.572932,-0.46568143,-0.67445517,0.5802063,-0.47791725,-0.65951174,0.5523411,-0.47221836,-0.68697095,0.58578515,-0.44674644,-0.6762199,0.57790375,-0.43428805,-0.6909567,0.5736833,-0.5084974,-0.6421199,0.5670277,-0.4964991,-0.65724283,0.54432136,-0.4599402,-0.70154774,0.53585845,-0.44757366,-0.7159145,0.5570303,-0.44094294,-0.70376605,0.71097815,-0.26000014,-0.6533835,0.6946287,-0.25876182,-0.6712178,0.727431,-0.26058728,-0.6347743,0.6940493,-0.25941303,-0.6715657,0.6989191,-0.43021005,-0.5713417,0.68622327,-0.46221155,-0.56165665,0.698649,-0.4301259,-0.57173526,0.68674815,-0.46237665,-0.5608787,0.6734258,-0.49386516,-0.5500862,0.67368,-0.49394602,-0.54970235,0.65973127,-0.5248769,-0.5378279,0.6981081,-0.42995778,-0.57252204,0.7090663,-0.39714557,-0.5826666,0.7190852,-0.3638175,-0.5920754,0.7193709,-0.36390424,-0.5916749,0.72815317,-0.33001694,-0.6007344,0.73626,-0.29578772,-0.6086303,0.67418754,-0.4941079,-0.548934,0.58864164,-0.5361729,-0.60499555,0.59415555,-0.38352412,-0.70702785,0.59705365,-0.35231826,-0.72069323,0.59416837,-0.38389224,-0.70681727,0.5970054,-0.35157198,-0.7210975,0.59901726,-0.31958258,-0.734197,0.5989819,-0.31920484,-0.7343902,0.5941942,-0.3846283,-0.7063954,0.59043,-0.41647375,-0.6913335,0.5857546,-0.44781607,-0.6755386,0.585765,-0.4474596,-0.67576575,0.5801623,-0.47861743,-0.65904254,0.57364935,-0.5088406,-0.64187825,0.598911,-0.3184493,-0.73477596,0.70567083,-0.26479766,-0.65719926,0.6913524,-0.2618129,-0.6734136,0.7248312,-0.26298645,-0.6367557,0.68593234,-0.26660806,-0.6770649,0.69720244,-0.42982882,-0.5737212,0.68356496,-0.46183178,-0.5651994,0.69674873,-0.42976448,-0.57432026,0.684453,-0.46195844,-0.56401986,0.67040265,-0.49343058,-0.5541539,0.670836,-0.49349257,-0.553574,0.6563697,-0.524391,-0.5423955,0.69583994,-0.42963552,-0.57551724,0.7072118,-0.39688352,-0.5850939,0.7176661,-0.36361808,-0.5939169,0.7181396,-0.3636845,-0.5933035,0.72718954,-0.32988212,-0.60197437,0.7357699,-0.2957195,-0.6092558,0.6717013,-0.4936168,-0.55241275,0.58948326,-0.5357188,-0.6045782,0.5945562,-0.38772044,-0.70439744,0.59840816,-0.36171195,-0.71489304,0.594733,-0.38926485,-0.7033958,0.59796834,-0.35858473,-0.71683395,0.6009357,-0.33067763,-0.7276872,0.6006702,-0.3290954,-0.72862303,0.59507746,-0.39235044,-0.7013872,0.5909376,-0.42255956,-0.6871944,0.5859842,-0.45230627,-0.6723404,0.5859107,-0.4508108,-0.67340803,0.58021355,-0.481558,-0.6568517,0.5736237,-0.51028275,-0.64075536,0.60013044,-0.3259281,-0.7304891,0.70228654,-0.26752424,-0.65971535,0.6842051,-0.2679708,-0.6782735,0.72317946,-0.26435068,-0.63806754,0.68074036,-0.27069485,-0.6806738,0.6944986,-0.42944583,-0.5772763,0.6796192,-0.46127278,-0.5703903,0.69382626,-0.4293511,-0.5781547,0.68093896,-0.46145913,-0.56866306,0.66590834,-0.4927909,-0.56011,0.66655385,-0.4928822,-0.55926126,0.6924782,-0.42916137,-0.57990897,0.70446706,-0.3964979,-0.5886557,0.7155688,-0.36332446,-0.59662104,0.716269,-0.36342242,-0.59572047,0.7257672,-0.32968384,-0.6037967,0.7350478,-0.29561916,-0.61017543,0.6678411,-0.49306515,-0.55756164,0.6035375,-0.5308564,-0.59492356,0.5850606,-0.53465825,-0.6097907,0.62162656,-0.5270438,-0.57948714,0.5954908,-0.39286935,-0.7007456,0.599715,-0.36328936,-0.71299565,0.5956973,-0.3931288,-0.70042455,0.59928006,-0.36276373,-0.7136287,0.602538,-0.33254048,-0.7255101,0.6023095,-0.33227447,-0.72582144,0.60458416,-0.301434,-0.7373029,0.59610945,-0.39364743,-0.6997823,0.59171665,-0.42358202,-0.6858933,0.58653283,-0.45306095,-0.67135316,0.5863502,-0.4528093,-0.67168236,0.5805551,-0.48205233,-0.656187,0.5737821,-0.51052535,-0.6404202,0.60185236,-0.33174238,-0.72644395,0.6854967,-0.27956393,-0.67226344,0.6721856,-0.27671447,-0.6867282,0.7150357,-0.27038145,-0.6446844,0.7293674,-0.26578084,-0.63038385,0.70040935,-0.2749759,-0.65864635,0.6703062,-0.2841457,-0.68552965,0.65484595,-0.28872102,-0.6984389,0.639125,-0.29328966,-0.71098554,0.6875578,-0.4285038,-0.5862156,0.69002545,-0.42883253,-0.5830674,0.6748013,-0.4606268,-0.5765988,0.6994509,-0.39582968,-0.59505236,0.67237073,-0.46030387,-0.5796878,0.6588232,-0.49184066,-0.5692493,0.6576301,-0.49168226,-0.57076377,0.68631876,-0.42833945,-0.5877856,0.7231807,-0.3293403,-0.60707873,0.71302354,-0.36298546,-0.59986585,0.71174526,-0.36281595,-0.60148424,0.7337376,-0.29544538,-0.61183435,0.661199,-0.4921576,-0.5662127,0.60419,-0.5306527,-0.5944428,0.6219465,-0.52694166,-0.5792366,0.58539283,-0.5345567,-0.6095607,0.62258583,-0.5267374,-0.57873535,0.64056164,-0.5228111,-0.56244946,0.5964387,-0.39397132,-0.69931924,0.60074747,-0.36427408,-0.71162266,0.59660304,-0.39413327,-0.69908786,0.6004037,-0.36394587,-0.71208054,0.60379475,-0.3337035,-0.72392946,0.6036154,-0.3335374,-0.72415555,0.6060786,-0.30277768,-0.7355232,0.5969316,-0.3944571,-0.6986246,0.5923428,-0.42422032,-0.6849578,0.586978,-0.4535321,-0.67064553,0.5868296,-0.45337507,-0.6708815,0.58083546,-0.48236102,-0.6557118,0.5739139,-0.5106768,-0.6401812,0.60325676,-0.33320516,-0.72460717,0.6825339,-0.28134072,-0.67453307,0.66804796,-0.28547642,-0.6871791,0.6533175,-0.28960693,-0.6995028,0.7136075,-0.27127227,-0.6458914,0.6996824,-0.27542078,-0.6592329,0.7286674,-0.26622695,-0.63100487,0.6982264,-0.2763103,-0.66040325,0.6502537,-0.29137805,-0.7016188,0.66653967,-0.28636333,-0.68827385,0.6336861,-0.29638493,-0.7145613,0.6562537,-0.49201855,-0.57205665,0.67118216,-0.46059763,-0.58083075,0.65704054,-0.49182633,-0.57131827,0.6719748,-0.46040186,-0.580069,0.6853222,-0.4285887,-0.58876574,0.6986501,-0.3960323,-0.5958577,0.6857211,-0.42848894,-0.58837396,0.65743357,-0.49173042,-0.5709486,0.71114284,-0.36297014,-0.6021034,0.7227785,-0.32944456,-0.60750115,0.7115446,-0.36286727,-0.6016907,0.73353624,-0.29549798,-0.6120503,0.6859203,-0.4284392,-0.58817786,0.6128382,-0.4200388,-0.66932565,0.6171122,-0.4473549,-0.6473378,0.6050558,-0.43582362,-0.66630715,0.632909,-0.4158484,-0.6530669,0.60070705,-0.47831553,-0.6405977,0.597125,-0.4514753,-0.6630323,0.5837288,-0.5086926,-0.63284475,0.62179387,-0.35997456,-0.6955506,0.6073748,-0.39233673,-0.6907733,0.6144966,-0.33152848,-0.715879,0.62046784,-0.40412593,-0.6720877,0.62794036,-0.38808984,-0.6745941,0.5942993,-0.5197156,-0.61376226,0.6030682,-0.5047159,-0.617714,0.6220043,-0.5007287,-0.6019813,0.61169463,-0.48956236,-0.6214164,0.6316288,-0.511812,-0.5823174,0.6201742,-0.47425964,-0.6248694,0.6285025,-0.4588123,-0.62807316,0.6392177,-0.47019368,-0.6085381,0.6366753,-0.44322476,-0.63102806,0.6405181,-0.49673066,-0.5856579,0.6647674,-0.28737855,-0.6895635,0.66535854,-0.2870401,-0.68913424,0.68021035,-0.28269625,-0.6763112,0.6490533,-0.29205388,-0.7024489,0.6330768,-0.29672226,-0.71496135,0.71248883,-0.27195227,-0.6468397,0.6976565,-0.27664974,-0.6608633,0.72811943,-0.26656738,-0.63149333,0.69651556,-0.27732864,-0.66178167,0.6466484,-0.29340497,-0.7041018,0.6635841,-0.28805512,-0.6904204,0.6294143,-0.29874566,-0.71734834,0.62873495,-0.38841105,-0.67366844,0.62428135,-0.36094996,-0.6928116,0.62913156,-0.38857165,-0.67320544,0.6234536,-0.36062488,-0.6937257,0.6175204,-0.3326792,-0.71273637,0.61708933,-0.33251485,-0.7131862,0.6096694,-0.3041062,-0.7319991,0.6299239,-0.3888928,-0.6722784,0.63442236,-0.41648242,-0.65119183,0.63775396,-0.4436934,-0.62960786,0.63739467,-0.4435372,-0.6300816,0.63989866,-0.47050127,-0.60758394,0.64083934,-0.4968819,-0.585178,0.6162266,-0.3321861,-0.71408486,0.69172025,-0.33998212,-0.6371305,0.7025313,-0.3061627,-0.64242846,0.71291786,-0.31782758,-0.625087,0.7074144,-0.3347185,-0.6225177,0.68121904,-0.3284103,-0.65428376,0.6757068,-0.345235,-0.6513318,0.6593849,-0.3504772,-0.6651145,0.72327286,-0.28374657,-0.6295747,0.71820474,-0.30083504,-0.6274394,0.7016972,-0.35150257,-0.6197314,0.69576854,-0.3681745,-0.6167282,0.68007636,-0.37336737,-0.6309461,0.68963116,-0.38472888,-0.61350834,0.6699919,-0.36194953,-0.64815384,0.65867454,-0.30512005,-0.68778604,0.670201,-0.31678912,-0.6711745,0.65356666,-0.32208744,-0.68491626,0.6366346,-0.3273758,-0.69822735,0.648263,-0.33895198,-0.6818113,0.6245084,-0.31575015,-0.71434665,0.69162595,-0.29445165,-0.6595087,0.6865263,-0.31148076,-0.6570095,0.6767414,-0.41746363,-0.6064199,0.66999453,-0.43363377,-0.6025521,0.65437466,-0.43866533,-0.6159274,0.66305023,-0.44966546,-0.5984692,0.6676205,-0.40627566,-0.6238774,0.6451607,-0.42759904,-0.63318783,0.635414,-0.41646832,-0.6502332,0.6516588,-0.4113784,-0.6372666,0.6832879,-0.4011603,-0.6100722,0.64858127,-0.4812928,-0.5896605,0.6403619,-0.47049457,-0.6071009,0.6559115,-0.46555337,-0.5941718,0.6410627,-0.4968786,-0.5849362,0.6384735,-0.44368315,-0.62888545,0.6477821,-0.38371778,-0.658133,0.63707834,-0.37235114,-0.6748969,0.62586176,-0.36092854,-0.6913954,0.642766,-0.35570842,-0.6784714,0.6312026,-0.38887513,-0.6710882,0.61941624,-0.33265382,-0.7111012,0.6579652,-0.39502653,-0.64112073,0.6640772,-0.37854853,-0.64474994,0.63043565,-0.38888577,-0.6718027,0.6306914,-0.38888216,-0.67156464,0.6253354,-0.36093563,-0.6918678,0.6191457,-0.3326574,-0.7113351,0.6382337,-0.44368657,-0.62912637,0.6186043,-0.33266473,-0.71180254,0.40808317,-0.43489036,-0.802707,0.4078208,-0.4344575,-0.80307466,0.40796578,-0.43338412,-0.8035808,0.40773565,-0.43071276,-0.8051324,0.4063029,-0.42361593,-0.8096095,0.40645704,-0.4222661,-0.81023705,0.4075307,-0.42127708,-0.81021255,0.4083374,-0.41847405,-0.8112583,0.408725,-0.41832548,-0.8111397,0.40916815,-0.4184942,-0.81082916,0.40968186,-0.41889495,-0.81036276,0.41004255,-0.41968736,-0.8097701,0.40938208,-0.4199689,-0.8099583,0.4085506,-0.4237332,-0.8084161,0.41027,-0.4256713,-0.80652493,0.40958303,-0.42739344,-0.8059631,0.40953606,-0.4282145,-0.80555105,0.40995455,-0.4296988,-0.8045472,0.40991718,-0.43132007,-0.80369824,0.40888387,-0.43411365,-0.80271995,0.4082977,-0.42139298,-0.80976593,0.40822586,-0.42270952,-0.8091158,0.62184906,-0.28450882,-0.72962904,0.6201356,-0.2842654,-0.7311806,0.6216829,-0.2823955,-0.73059094,0.6219201,-0.28226134,-0.7304409,0.6234245,-0.28298566,-0.72887653,0.6254397,-0.2834679,-0.7269602,0.6260596,-0.28447625,-0.72603214,0.6265754,-0.2861212,-0.72493994,0.62647754,-0.2875924,-0.72444224,0.6262354,-0.28805763,-0.7244666,0.6253054,-0.2876723,-0.7254225,0.62474626,-0.28768545,-0.72589886,0.62391716,-0.28730342,-0.7267627,0.6236015,-0.28650177,-0.7273499,0.62306505,-0.28670916,-0.72772783,0.6223685,-0.28523764,-0.72890115,0.6662814,-0.23728198,-0.70694155,0.6663342,-0.23652686,-0.70714486,0.6669215,-0.23642911,-0.7066237,0.66769093,-0.23719582,-0.7056393,0.6680871,-0.2384276,-0.7048489,0.6692233,-0.23963235,-0.70336086,0.66896594,-0.2421104,-0.70275676,0.6687165,-0.24489272,-0.7020297,0.669304,-0.24550731,-0.70125484,0.66891277,-0.24579643,-0.70152676,0.6677042,-0.24589235,-0.70264363,0.66524523,-0.24666876,-0.7047009,0.663869,-0.24654976,-0.7060391,0.66219336,-0.24688178,-0.70749515,0.66187453,-0.24608564,-0.70807064,0.6618148,-0.24504134,-0.7084884,0.66203916,-0.24495211,-0.7083097,0.66429555,-0.24035217,-0.70777273,0.6639802,-0.24017014,-0.70813036,0.66340494,-0.2389903,-0.70906806,0.66370225,-0.23830672,-0.70901984,0.6640163,-0.2379177,-0.7088565,0.6643665,-0.23770244,-0.7086006,0.6646104,-0.23925342,-0.70784944,0.6658298,-0.23859973,-0.7069235,0.6684251,-0.24406299,-0.70259607,0.66258436,-0.24526116,-0.7076927,0.6645153,-0.24100393,-0.70734465,0.6651761,-0.23930307,-0.7073011,0.6639147,-0.24459358,-0.70667624,0.6646771,-0.24315216,-0.7064569,0.66449654,-0.24387293,-0.7063784,0.7451144,-0.20243347,-0.6354725,0.7456412,-0.20094444,-0.63532716,0.7463831,-0.19953671,-0.6348995,0.7467188,-0.19800156,-0.6349853,0.74735236,-0.19657965,-0.63468176,0.7478438,-0.19657625,-0.6341036,0.7482655,-0.1969823,-0.63347983,0.7490427,-0.1989838,-0.6319339,0.7484951,-0.20007274,-0.63223875,0.74860626,-0.20273723,-0.6312578,0.74938786,-0.20245858,-0.6304192,0.7494152,-0.20427914,-0.629799,0.74894476,-0.20493154,-0.63014674,0.7483457,-0.20491485,-0.6308634,0.7464347,-0.20401388,-0.6334143,0.74421155,-0.20510504,-0.63567376,0.74311143,-0.20477974,-0.63706416,0.7432679,-0.20403898,-0.63711923,0.7436195,-0.20342158,-0.6369063,0.7441343,-0.20284076,-0.63649017,0.74806625,-0.20207296,-0.6321103,0.7441445,-0.19724806,-0.63823366,0.74498504,-0.19604816,-0.6376224,0.74550575,-0.19559516,-0.63715285,0.74678266,-0.1939451,-0.63616115,0.7470528,-0.19389994,-0.6358576,0.7472263,-0.19410063,-0.6355925,0.7473451,-0.19449027,-0.6353337,0.7467095,-0.19603144,-0.63560724,0.7461412,-0.1984409,-0.63552696,0.7446949,-0.2013835,-0.6362973,0.7428819,-0.20351169,-0.6377378,0.73896706,-0.2066562,-0.64126515,0.73571503,-0.2029743,-0.6461617,0.73503053,-0.20077908,-0.64762485,0.7341593,-0.20087087,-0.6485839,0.7342592,-0.19953169,-0.6488841,0.73364675,-0.19828889,-0.6499568,0.7338879,-0.19791801,-0.6497977,0.734527,-0.19735827,-0.64924556,0.7351182,-0.19617182,-0.648936,0.73660505,-0.19503689,-0.6475907,0.73734087,-0.19406052,-0.6470464,0.7377827,-0.19496335,-0.6462708,0.7385929,-0.19531433,-0.6452386,0.7397316,-0.19653453,-0.64356136,0.7401177,-0.19662803,-0.6430888,0.7410337,-0.19610496,-0.642193,0.7426348,-0.19739005,-0.6399459,0.8257162,-0.4398534,-0.3531597,0.8258443,-0.4392043,-0.3536675,0.82661635,-0.4379605,-0.35340634,0.82687175,-0.4376173,-0.3532339,0.82736003,-0.43652883,-0.35343745,0.8280504,-0.43546736,-0.35312998,0.8308024,-0.43082958,-0.3523539,0.8309412,-0.43100792,-0.351808,0.8309142,-0.43161085,-0.3511321,0.8290852,-0.43496573,-0.3513156,0.54745626,-0.58385676,-0.5995022,0.54751754,-0.5829238,-0.60035354,0.5482948,-0.58240974,-0.6001431,0.5489693,-0.582195,-0.5997347,0.55110836,-0.5820162,-0.59794366,0.5531378,-0.583029,-0.5950763,0.5572323,-0.58423316,-0.590054,0.55742574,-0.5850808,-0.58903056,0.5572484,-0.58623296,-0.5880519,0.556431,-0.5868721,-0.58818847,0.5540397,-0.58825266,-0.589066,0.5523218,-0.5884443,-0.5904862,0.5513136,-0.5881231,-0.591747,0.5499479,-0.5883367,-0.5928045,0.5497028,-0.5875371,-0.59382397,0.5476437,-0.5880803,-0.59518725,0.54658115,-0.58884096,-0.59541196,0.5454359,-0.5881686,-0.5971243,0.54397047,-0.5859167,-0.60066444,0.5418463,-0.58648014,-0.60203284,0.54132044,-0.5863807,-0.60260254,0.541051,-0.58569837,-0.6035075,0.5425232,-0.584323,-0.603519,0.5439603,-0.58391076,-0.6026237,0.54469085,-0.5844213,-0.60146797,0.5473609,-0.5840892,-0.5993628,0.5457178,-0.5869107,-0.59810364,0.54548645,-0.5863434,-0.5988705,0.44560802,-0.6214349,-0.64440054,0.44431776,-0.6205305,-0.6461608,0.44524392,-0.61997294,-0.6460583,0.44669318,-0.6200386,-0.644994,0.4466638,-0.6203407,-0.64472395,0.44642034,-0.6210196,-0.64423865,0.444734,-0.62303615,-0.6434576,0.44541723,-0.6223894,-0.64361084,0.44583088,-0.62213445,-0.6435709,0.44670227,-0.6219489,-0.6431459,0.44727594,-0.62289196,-0.6418332,0.44572735,-0.6227842,-0.643014,0.44455168,-0.6232933,-0.6433345,0.48276109,-0.34697726,-0.8040824,0.48246104,-0.34679657,-0.8043404,0.48248246,-0.34656802,-0.804426,0.4832313,-0.34565014,-0.8043715,0.48376974,-0.34453675,-0.80452543,0.48395687,-0.34666866,-0.8034965,0.48321965,-0.3469645,-0.8038124,0.48471594,-0.34454954,-0.8039503,0.4844198,-0.34447744,-0.8041597,0.4841765,-0.34422788,-0.804413,0.48429245,-0.34274724,-0.8049753,0.4847253,-0.3431507,-0.80454266,0.48497704,-0.3436917,-0.80416,0.48512205,-0.3443735,-0.80378073,0.4420125,-0.39900857,-0.8033785,0.44257694,-0.39860213,-0.80326957,0.4438927,-0.3981175,-0.8027838,0.4440316,-0.399232,-0.8021532,0.44120762,-0.40259847,-0.80202883,0.44033137,-0.40315852,-0.80222905,0.4400516,-0.40294325,-0.8024907,0.43971297,-0.4022724,-0.80301267,0.4401889,-0.40144366,-0.8031667,0.44107443,-0.40026787,-0.80326766,0.44113445,-0.39922422,-0.8037539,0.44158468,-0.3989585,-0.8036387,0.45567635,-0.3798551,-0.8050275,0.4552867,-0.3798205,-0.8052642,0.45488602,-0.37956816,-0.8056095,0.45552638,-0.37829837,-0.80584496,0.45604762,-0.37801445,-0.8056834,0.45591527,-0.37893733,-0.8053246,0.45609817,-0.37958086,-0.8049179,0.46434587,-0.3782164,-0.8008341,0.46396092,-0.3777288,-0.80128723,0.46411088,-0.3770216,-0.80153334,0.46466038,-0.3753951,-0.80197835,0.46509388,-0.37580422,-0.80153537,0.464924,-0.37703905,-0.80105376,0.3956716,-0.46502325,-0.7919579,0.3954731,-0.46076417,-0.7945423,0.3957574,-0.4605479,-0.7945261,0.3970169,-0.46028313,-0.79405105,0.39713442,-0.46183643,-0.79308975,0.396628,-0.46430165,-0.79190296,0.3960525,-0.46494177,-0.79181534,0.3974857,-0.4591296,-0.79448426,0.3972399,-0.45889786,-0.7947409,0.39787307,-0.45712075,-0.7954481,0.3978923,-0.45458275,-0.7968916,0.39840084,-0.45445514,-0.79671025,0.39906028,-0.4547588,-0.79620683,0.39894786,-0.45614865,-0.7954678,0.39844313,-0.45764676,-0.79486006,0.6022431,-0.18672998,-0.7761669,0.6012266,-0.18574871,-0.77718985,0.6024915,-0.18381399,-0.7766701,0.6033018,-0.18464823,-0.77584267,0.6033222,-0.18512563,-0.7757131,0.60303724,-0.1862143,-0.7756741,0.60203946,-0.17801568,-0.77836937,0.60134715,-0.17695056,-0.77914697,0.6019918,-0.17606148,-0.77885056,0.6030615,-0.1762158,-0.77798766,0.60328805,-0.17707305,-0.77761734,0.6029328,-0.17769706,-0.77775043,0.60404307,-0.17676271,-0.77710164,0.60374725,-0.1762963,-0.7774374,0.6035452,-0.17511337,-0.7778615,0.6041938,-0.17453776,-0.7774873,0.6047565,-0.175741,-0.7767784,0.5267203,-0.3144245,-0.78974867,0.52729106,-0.31285304,-0.78999186,0.52770996,-0.31276393,-0.7897474,0.52848065,-0.31324965,-0.7890392,0.5297009,-0.31319305,-0.7882431,0.52933764,-0.31386623,-0.78821933,0.5280888,-0.31503442,-0.78859085,0.5272092,-0.3164899,-0.78859663,0.52623504,-0.31705254,-0.7890211,0.52595705,-0.3164544,-0.78944653,0.5258995,-0.31565073,-0.7898065,0.5279145,-0.31302142,-0.78950864,0.67435205,-0.1983223,-0.71127886,0.67360026,-0.19729644,-0.71227586,0.6722534,-0.19414249,-0.7144118,0.6721878,-0.19102317,-0.7153137,0.67276585,-0.19123062,-0.71471465,0.6727221,-0.19352208,-0.7141388,0.6729587,-0.19385153,-0.7138265,0.6733649,-0.19443332,-0.7132849,0.6741317,-0.19693717,-0.71187234,0.6745196,-0.19755213,-0.7113343,0.6726366,-0.192604,-0.7144674,0.6780626,-0.20239016,-0.70658994,0.6762874,-0.20111808,-0.7086515,0.6758299,-0.20079076,-0.70918053,0.67487913,-0.19952667,-0.7104416,0.674874,-0.19878508,-0.7106544,0.6751963,-0.19914748,-0.7102466,0.67723143,-0.2006756,-0.70787495,0.6555269,-0.27269027,-0.7042191,0.6551506,-0.27191293,-0.7048695,0.65555745,-0.27124038,-0.7047504,0.6558798,-0.26997685,-0.70493555,0.6567742,-0.26883286,-0.70453995,0.6568824,-0.26980123,-0.7040687,0.6571144,-0.2700245,-0.7037665,0.6572205,-0.27079734,-0.7033704,0.656654,-0.27103695,-0.7038072,0.65635276,-0.27187356,-0.70376545,0.6586689,-0.26937947,-0.7025596,0.6584976,-0.2692548,-0.70276797,0.65825933,-0.26873273,-0.7031908,0.65869945,-0.26728117,-0.7033319,0.6589505,-0.26797906,-0.7028311,0.6625126,-0.26946488,-0.69890326,0.6617957,-0.26939428,-0.6996094,0.6618064,-0.26798066,-0.70014185,0.66216093,-0.26780495,-0.69987386,0.66290545,-0.26796436,-0.6991077,0.6630185,-0.2686358,-0.69874257,0.66273516,-0.26937947,-0.69872516,0.62120694,-0.29428306,-0.7262916,0.6198566,-0.29394752,-0.72758,0.62016857,-0.29307252,-0.7276671,0.62119365,-0.292212,-0.72713864,0.6214249,-0.29319152,-0.72654647,0.62193274,-0.29388404,-0.72583175,0.6216251,-0.2945681,-0.72581804,0.67189306,-0.23914252,-0.7009783,0.6716356,-0.23894899,-0.7012909,0.6712667,-0.2383829,-0.70183665,0.67172897,-0.23695077,-0.70187926,0.6723629,-0.2362403,-0.7015117,0.67284036,-0.23746078,-0.7006412,0.67310137,-0.23773892,-0.70029616,0.6731703,-0.23820415,-0.7000718,0.6730616,-0.23881494,-0.6999682,0.72208667,-0.19626042,-0.66337967,0.7218974,-0.19599462,-0.6636642,0.72181773,-0.19370605,-0.6644224,0.72234684,-0.19263244,-0.6641594,0.72265685,-0.19076888,-0.66436017,0.72289485,-0.19027527,-0.6642426,0.723224,-0.19129592,-0.66359097,0.7238273,-0.19144814,-0.6628888,0.72325635,-0.19279632,-0.6631212,0.72339904,-0.19361237,-0.6627278,0.79124296,-0.2527736,-0.55681235,0.79084367,-0.25172308,-0.5578546,0.79099137,-0.25126943,-0.5578498,0.79122484,-0.24995427,-0.5581094,0.79166347,-0.24963741,-0.5576291,0.7919494,-0.25024468,-0.55695045,0.79184616,-0.25192913,-0.5563374,0.79385287,-0.2660639,-0.54681593,0.7936007,-0.26558903,-0.5474125,0.79369897,-0.2648248,-0.54764014,0.79425985,-0.26405555,-0.54719824,0.7945441,-0.26337332,-0.5471144,0.7948559,-0.2633256,-0.5466843,0.7949064,-0.26374647,-0.5464079,0.79492766,-0.264552,-0.5459875,0.7943771,-0.26526043,-0.54644483,0.7942232,-0.2659176,-0.54634905,0.8441742,-0.3561839,-0.40062824,0.8442058,-0.3549079,-0.40169275,0.84452474,-0.3537412,-0.402051,0.8449557,-0.35295185,-0.40183938,0.845081,-0.35423052,-0.40044826,0.8450373,-0.35528857,-0.39960235,0.8447498,-0.35593224,-0.39963743,0.43667024,-0.65238523,-0.61944544,0.43807557,-0.65173143,-0.61914134,0.43744364,-0.6531947,-0.6180451,0.43682075,-0.65580684,-0.615715,0.43599582,-0.6570979,-0.6149228,0.43487445,-0.6585676,-0.6141441,0.4331588,-0.6605457,-0.6132315,0.43281698,-0.66118145,-0.61278754,0.43249878,-0.6615586,-0.6126051,0.42952856,-0.66450083,-0.6115095,0.42681867,-0.6668806,-0.6108159,0.42277932,-0.67052156,-0.609638,0.42243728,-0.67168146,-0.6085974,0.421844,-0.67160445,-0.6090937,0.42174748,-0.67103595,-0.6097867,0.4213651,-0.6716007,-0.6094292,0.42089957,-0.67207664,-0.60922617,0.41798264,-0.6754985,-0.60744745,0.41891354,-0.6743868,-0.608041,0.4200253,-0.6735091,-0.6082468,0.42259312,-0.67211956,-0.6080052,0.42068055,-0.6750182,-0.60611737,0.41975558,-0.6761606,-0.60548496,0.41486812,-0.68106157,-0.6033569,0.41438597,-0.68137735,-0.6033318,0.41374975,-0.68158937,-0.6035289,0.41182128,-0.68296754,-0.6032898,0.4094165,-0.68510723,-0.6025,0.40835035,-0.68572164,-0.6025246,0.4073785,-0.6855281,-0.603402,0.40557212,-0.68596107,-0.60412633,0.4050934,-0.68584067,-0.6045841,0.4042104,-0.68652016,-0.60440385,0.4054559,-0.6865089,-0.6035819,0.40651432,-0.68678415,-0.60255593,0.40643096,-0.68719405,-0.6021447,0.40585732,-0.6876557,-0.6020046,0.40485445,-0.68895143,-0.6011978,0.40357676,-0.68851656,-0.60255355,0.40114722,-0.6886018,-0.60407656,0.3997895,-0.6884671,-0.60512924,0.39758226,-0.6896443,-0.605243,0.3960399,-0.68986404,-0.6060033,0.39566544,-0.68977755,-0.60634625,0.3955322,-0.6883855,-0.608013,0.39586645,-0.6860603,-0.6104188,0.395706,-0.68551195,-0.6111384,0.39703602,-0.68478566,-0.61109,0.397341,-0.6839916,-0.61178064,0.39481667,-0.68525743,-0.6119984,0.39430383,-0.6847497,-0.6128967,0.39472374,-0.683611,-0.6138967,0.3950808,-0.6829054,-0.6144521,0.39510906,-0.68240345,-0.61499137,0.39475164,-0.6821704,-0.6154793,0.3948765,-0.6815445,-0.6160922,0.39506593,-0.68106055,-0.6165058,0.3961097,-0.67996013,-0.61705047,0.39462584,-0.6806421,-0.6172493,0.39325494,-0.68242455,-0.6161552,0.39258313,-0.68195355,-0.6171044,0.39259082,-0.68167305,-0.6174093,0.39334854,-0.68043983,-0.6182868,0.38998085,-0.6820421,-0.6186546,0.39106542,-0.6817416,-0.61830103,0.39123064,-0.6822614,-0.6176228,0.39003178,-0.6835612,-0.6169435,0.3884749,-0.6848019,-0.6165498,0.38806576,-0.6844851,-0.617159,0.38699853,-0.6843159,-0.61801606,0.38677308,-0.6840003,-0.6185064,0.3882657,-0.6814934,-0.6203358,0.3896364,-0.6796515,-0.621496,0.39106786,-0.6765222,-0.6240061,0.39094958,-0.6756656,-0.6250075,0.390995,-0.6747656,-0.62595075,0.39176267,-0.6704747,-0.63006794,0.39154208,-0.670275,-0.63041747,0.3918216,-0.6700357,-0.63049823,0.39101127,-0.6694143,-0.6316603,0.3912975,-0.6696751,-0.6312064,0.39139193,-0.66996986,-0.630835,0.38960525,-0.67137706,-0.63044477,0.38940543,-0.6719718,-0.6299344,0.38903922,-0.67243105,-0.6296705,0.3885485,-0.672517,-0.6298817,0.38870892,-0.6719188,-0.6304209,0.38918123,-0.67119277,-0.63090277,0.38936904,-0.67057073,-0.63144803,0.38973984,-0.6700863,-0.6317335,0.3904575,-0.66918504,-0.6322455,0.39077088,-0.66819286,-0.6331006,0.39176756,-0.666737,-0.63401884,0.39270335,-0.6645288,-0.6357559,0.393366,-0.66333854,-0.6365887,0.39388037,-0.6621631,-0.6374938,0.39433098,-0.6606531,-0.63878053,0.39510286,-0.65912414,-0.6398821,0.39604643,-0.65757686,-0.6408899,0.39697668,-0.6553616,-0.6425812,0.39840207,-0.6541454,-0.6429382,0.40089354,-0.6531691,-0.6423819,0.40161967,-0.65315104,-0.64194655,0.40275142,-0.6543672,-0.639996,0.405103,-0.6540114,-0.6388745,0.40538666,-0.65441877,-0.63827723,0.40684122,-0.6558686,-0.635859,0.40776628,-0.65548515,-0.6356618,0.4083177,-0.6555289,-0.6352626,0.40991104,-0.6559832,-0.6337657,0.41120404,-0.6559588,-0.63295287,0.41182277,-0.6562932,-0.63220346,0.4122616,-0.6568266,-0.631363,0.4121681,-0.65749854,-0.6307243,0.41166624,-0.6582701,-0.63024706,0.41269127,-0.6575551,-0.6303231,0.4136042,-0.6570862,-0.63021374,0.42449605,-0.6560217,-0.62405014,0.42517546,-0.6555586,-0.6240743,0.4258435,-0.6552561,-0.6239365,0.42726195,-0.6547949,-0.6234508,0.4279889,-0.65426534,-0.62350816,0.42858982,-0.65411204,-0.62325615,0.43023378,-0.65376896,-0.62248296,0.43132153,-0.6530232,-0.622513,0.43199012,-0.65296,-0.62211555,0.4338161,-0.6532451,-0.6205437,0.42358533,-0.6693852,-0.6103269,0.41839242,-0.67371565,-0.6091429,0.39586934,-0.6867024,-0.60969454,0.3964707,-0.6793251,-0.61751795,0.39161035,-0.6735948,-0.62682647,0.39202014,-0.6713366,-0.62898916,0.3903584,-0.67046076,-0.63095385,0.3902401,-0.6696486,-0.63188875,0.39561984,-0.6583561,-0.6403532,0.40212843,-0.6543787,-0.64037585,0.40599713,-0.6560809,-0.6361793,0.4087265,-0.65584034,-0.63467795,0.41416427,-0.65758854,-0.6293213,0.42915827,-0.6541892,-0.6227838,0.4325365,-0.6532967,-0.62138206,0.41309756,-0.681976,-0.6035389,0.38984194,-0.6817465,-0.6190678,0.39194757,-0.6724893,-0.6278019,0.3918903,-0.6692903,-0.6312468,0.38991478,-0.67089826,-0.63076305,0.40571693,-0.6555869,-0.63686705,0.41483504,-0.6579326,-0.62851936,0.42381734,-0.65638316,-0.62413144,0.41805488,-0.67415017,-0.6088938,0.40466428,-0.6860242,-0.6046632,0.39314428,-0.68002635,-0.61887133,0.38993183,-0.6814122,-0.6193792,0.39066187,-0.6776272,-0.62306076,0.41751486,-0.6582098,-0.62645125,0.3972523,-0.68441796,-0.61136127,0.39017665,-0.68108046,-0.61958987,0.39163816,-0.66874164,-0.6319843,0.42005908,-0.657613,-0.62537634,0.39168465,-0.68036246,-0.6194272,0.41472593,-0.6606526,-0.62573206,0.4505687,-0.64439344,-0.6178551,0.45028087,-0.6443387,-0.6181219,0.44937456,-0.6438328,-0.6193075,0.4489131,-0.64308274,-0.6204206,0.44904628,-0.6421699,-0.62126905,0.4499493,-0.6411018,-0.6217187,0.4503697,-0.639912,-0.62263936,0.45165375,-0.637936,-0.62373596,0.4530174,-0.6371574,-0.6235429,0.4535596,-0.6372046,-0.6231003,0.45317513,-0.6382051,-0.62235564,0.4535509,-0.6387679,-0.6215039,0.45349175,-0.6392779,-0.6210226,0.45288688,-0.6404344,-0.6202719,0.452648,-0.6415046,-0.61933964,0.45159307,-0.64256823,-0.61900705,0.45118895,-0.64364237,-0.6181853,0.404286,-0.6419647,-0.6514862,0.40737462,-0.63954115,-0.6519456,0.4083285,-0.6391165,-0.65176517,0.40876806,-0.64053255,-0.6500975,0.4093531,-0.641052,-0.6492167,0.40860245,-0.64158946,-0.6491587,0.4071779,-0.6424051,-0.6492471,0.4070955,-0.6429821,-0.64872736,0.40463695,-0.64508396,-0.6481787,0.40414378,-0.64562833,-0.64794433,0.40367416,-0.6460017,-0.647865,0.40318507,-0.64628536,-0.6478866,0.40216944,-0.6459067,-0.6488946,0.40152276,-0.6450905,-0.6501059,0.40135577,-0.64510494,-0.6501947,0.40141806,-0.6447166,-0.6505413,0.40250623,-0.6441172,-0.65046275,0.4022641,-0.64366204,-0.6510628,0.40264863,-0.64259696,-0.65187675,0.40307203,-0.64234227,-0.6518661,0.40790698,-0.6415229,-0.64966166,0.39177668,-0.68836457,-0.6104632,0.39194605,-0.68704927,-0.6118346,0.39241892,-0.6864061,-0.61225325,0.39316615,-0.6855677,-0.61271316,0.39348084,-0.68555033,-0.61253047,0.39368007,-0.68620527,-0.61166847,0.39356688,-0.68672454,-0.6111583,0.39374334,-0.68682367,-0.6109333,0.39370418,-0.6871866,-0.6105503,0.3937879,-0.68747133,-0.6101756,0.39452282,-0.68725103,-0.60994893,0.39440075,-0.68748254,-0.60976696,0.39343143,-0.6883571,-0.6094064,0.39271635,-0.68814075,-0.61011165,0.38880104,-0.67840636,-0.6233767,0.38824493,-0.6782937,-0.6238457,0.38847205,-0.6779105,-0.62412083,0.38790062,-0.6775406,-0.62487745,0.38841596,-0.6770805,-0.62505597,0.3893239,-0.67678815,-0.6248078,0.38957107,-0.6773952,-0.6239953,0.38933912,-0.6776898,-0.6238201,0.38902923,-0.67835015,-0.62329555,0.3927853,-0.6850662,-0.61351764,0.3921145,-0.68506503,-0.613948,0.39330208,-0.68350637,-0.6149248,0.3940264,-0.68302244,-0.6149988,0.3940755,-0.6834604,-0.61448056,0.39396596,-0.68385106,-0.6141161,0.3941071,-0.68406,-0.6137927,0.3935232,-0.6843347,-0.6138612,0.3930862,-0.6849596,-0.6134441,0.43830004,-0.6506345,-0.6201353,0.43844795,-0.64953756,-0.62117976,0.4388119,-0.6486558,-0.6218439,0.43892804,-0.6485832,-0.62183756,0.4390467,-0.64905274,-0.6212637,0.43939292,-0.6492524,-0.6208101,0.3989952,-0.64768374,-0.6490829,0.4004219,-0.6468821,-0.6490038,0.4015688,-0.64756036,-0.6476172,0.4031491,-0.64754605,-0.64664894,0.4035525,-0.64786154,-0.6460811,0.4033019,-0.6481757,-0.6459225,0.40208834,-0.6488064,-0.64604586,0.4007952,-0.648884,-0.64677095,0.39974162,-0.6485792,-0.6477281,0.39899242,-0.6494118,-0.64735574,0.39847675,-0.6492693,-0.6478161,0.398003,-0.6485507,-0.6488263,0.40028423,-0.650676,-0.6452854,0.40019348,-0.6496489,-0.64637566,0.40046296,-0.64951545,-0.6463429,0.40075874,-0.6494895,-0.6461856,0.40150422,-0.6497332,-0.6454775,0.40126076,-0.6500311,-0.64532894,0.2082892,-0.8166337,-0.5382611,0.20817615,-0.81623614,-0.53890747,0.2082369,-0.81487495,-0.5409401,0.20863527,-0.8138353,-0.5423498,0.20904887,-0.81417686,-0.5416776,0.20860893,-0.81617796,-0.5388282,0.002542253,-0.28069457,-0.95979375,0.000013197358,-0.27846405,-0.96044666,-8.397155e-8,-0.2782021,-0.9605226,0.0035382023,-0.27935126,-0.9601825,0.004775876,-0.27911878,-0.96024466,0.006112397,-0.27938068,-0.960161,0.0075107613,-0.2798274,-0.96002096,0.008793286,-0.2805686,-0.9597937,0.011827865,-0.28231865,-0.95924777,0.012981681,-0.2824282,-0.9592006,0.015209083,-0.2829693,-0.9590084,0.0173954,-0.2837277,-0.958747,0.018976351,-0.28468537,-0.9584332,0.01998142,-0.28621438,-0.95795727,0.020993356,-0.28626007,-0.9579219,0.021962894,-0.2867859,-0.95774287,0.02283491,-0.28650016,-0.957808,0.023685638,-0.28605422,-0.9579207,0.02394486,-0.28675643,-0.95770425,0.024371058,-0.28736874,-0.95750993,0.024839366,-0.28779644,-0.95736945,0.025103746,-0.28882945,-0.9570514,0.022746962,-0.28988838,-0.9567901,0.022288766,-0.29103652,-0.95645225,0.021587944,-0.29197398,-0.9561826,0.019983497,-0.29157296,-0.9563398,0.018642029,-0.29046905,-0.95670277,0.017526556,-0.29076904,-0.95663273,0.01658446,-0.29070553,-0.95666885,0.011310527,-0.28766263,-0.95766497,0.0109287705,-0.28852597,-0.9574097,0.0104429405,-0.28889805,-0.9573029,0.009701558,-0.28914112,-0.9572373,0.008931326,-0.289133,-0.95724726,0.0068681515,-0.28881484,-0.95736027,0.004767477,-0.28808856,-0.9575919,0.0029952216,-0.2879776,-0.9576324,0.0012044767,-0.28810328,-0.9575986,0.0018385521,-0.28680873,-0.95798606,0.0015731476,-0.28541404,-0.958403,0.0012285431,-0.28487977,-0.9585625,0.0011652036,-0.2843406,-0.9587226,0.0019250041,-0.28432426,-0.9587262,0.0026600768,-0.28464288,-0.9586299,0.0050658644,-0.2862225,-0.95814985,0.007217281,-0.28815386,-0.9575569,0.006372563,-0.28447944,-0.9586609,0.0042157774,-0.28311643,-0.9590763,0.0034522507,-0.28184438,-0.9594539,0.0025449868,-0.27923015,-0.9602208,0.015779689,-0.28925866,-0.95712084,0.010730204,-0.2820046,-0.9593531,0.023327367,-0.2890416,-0.95703226,0.013333152,-0.28757277,-0.957666,0.007288388,-0.28630576,-0.9581106,0.011692987,-0.2875336,-0.9576992,0.028636184,-0.2993108,-0.9537258,0.028643109,-0.298574,-0.95395654,0.029199429,-0.29785976,-0.95416296,0.030194147,-0.2975913,-0.95421576,0.031188402,-0.2980291,-0.9540471,0.034298103,-0.29895955,-0.9536492,0.03633451,-0.29884896,-0.95360845,0.03964727,-0.3000572,-0.9530969,0.041516896,-0.3013641,-0.9526049,0.043220684,-0.3028963,-0.952043,0.04312732,-0.30373597,-0.9517796,0.042820513,-0.30465332,-0.95150024,0.043020967,-0.304926,-0.9514039,0.04343738,-0.30506885,-0.9513391,0.043752514,-0.3054633,-0.95119816,0.044569097,-0.30646127,-0.95083916,0.04543334,-0.30675003,-0.9507051,0.045570865,-0.30760473,-0.95042235,0.045414545,-0.3084966,-0.9501407,0.044426776,-0.31030378,-0.9495988,0.04339137,-0.31101993,-0.94941235,0.04215648,-0.3114767,-0.94931823,0.03694706,-0.31265876,-0.9491467,0.035676144,-0.3132448,-0.949002,0.033878922,-0.31339693,-0.9490177,0.032084405,-0.31317028,-0.9491549,0.030490816,-0.31316712,-0.94920844,0.02911707,-0.31206942,-0.94961303,0.026147738,-0.31107825,-0.95002455,0.025520433,-0.31132287,-0.9499615,0.025100041,-0.31088057,-0.9501175,0.023265803,-0.3108255,-0.9501822,0.022103097,-0.31035888,-0.95036244,0.022948481,-0.30790156,-0.9511414,0.023194259,-0.30634925,-0.95163655,0.023686295,-0.30485302,-0.95210487,0.023347123,-0.30401683,-0.95238054,0.023421437,-0.30322596,-0.9526309,0.02456576,-0.30230013,-0.95289624,0.026444048,-0.30108947,-0.9532291,0.027660718,-0.29968157,-0.9536382,0.028145486,-0.2996295,-0.9536404,0.043848027,-0.30602798,-0.9510122,0.039181437,-0.31202084,-0.949267,0.02766965,-0.31126124,-0.9499215,-0.00041914964,-0.29111645,-0.9566875,-0.0022087179,-0.28987208,-0.95706284,-0.002969435,-0.2884526,-0.95748955,-0.0023241034,-0.2871647,-0.9578784,-0.0017786286,-0.28736714,-0.95781887,8.36979e-8,-0.28879032,-0.9573924,8.3680796e-8,-0.28943816,-0.9571967,-8.2902216e-7,-0.29001388,-0.9570224,8.364383e-8,-0.2908327,-0.95677394,8.361931e-8,-0.29175392,-0.95649344,0.0012370466,-0.29237664,-0.95630246,-8.361927e-8,-0.2917555,-0.95649296,0.000013150307,-0.29001388,-0.9570224,-8.369781e-8,-0.28879362,-0.9573914,0.0011532203,-0.29030102,-0.9569347,0.001719827,-0.29177192,-0.95648634,0.02495127,-0.32585022,-0.9450921,0.024954332,-0.3251411,-0.9453362,0.026072945,-0.32475588,-0.94543844,0.02749546,-0.3244866,-0.9454906,0.028350478,-0.32485905,-0.9453374,0.029566431,-0.32506692,-0.94522864,0.03040943,-0.32602906,-0.94487053,0.031268835,-0.32666054,-0.94462436,0.03212964,-0.32656074,-0.94463,0.03296515,-0.32723567,-0.9443676,0.033654664,-0.32757393,-0.9442259,0.032625083,-0.3280698,-0.94408995,0.030302202,-0.32757223,-0.94434005,0.02997886,-0.32741117,-0.94440633,0.027790537,-0.32573584,-0.94505227,0.027069593,-0.3263207,-0.9448714,0.029861677,-0.32709068,-0.944521,0.028247448,-0.3256294,-0.9450754,0.02950078,-0.32666552,-0.94467944,-0.016293418,-0.30888087,-0.9509611,-0.01679819,-0.30862963,-0.95103395,-0.016617736,-0.30814326,-0.9511948,-0.015815286,-0.3076956,-0.9513534,-0.015291774,-0.30808973,-0.9512344,-0.0155414855,-0.3085583,-0.9510784,-0.01594865,-0.30882406,-0.95098543,-0.020325692,-0.31320438,-0.9494682,-0.020522108,-0.31289676,-0.9495654,-0.020507641,-0.31219253,-0.9497975,-0.020047624,-0.31210828,-0.949835,-0.019100428,-0.31236896,-0.9497688,-0.019438978,-0.31270245,-0.9496522,-0.028106598,-0.3084075,-0.95083904,-0.029033016,-0.3082324,-0.950868,-0.02897916,-0.3078545,-0.950992,-0.028559005,-0.30713123,-0.9512386,-0.027812472,-0.30695438,-0.9513178,-0.027277058,-0.30770376,-0.9510912,-0.017390383,-0.2969225,-0.9547432,-0.0179247,-0.2965188,-0.9548588,-0.018089298,-0.2960923,-0.954988,-0.017985532,-0.29584807,-0.95506567,-0.017459966,-0.2954085,-0.95521146,-0.016592776,-0.29484662,-0.95540047,-0.016380701,-0.29506326,-0.9553373,-0.016424388,-0.29541498,-0.9552279,-0.01714603,-0.2959198,-0.9550589,-0.01707634,-0.29633322,-0.9549319,-0.016598288,-0.29729027,-0.9546429,-0.016964752,-0.29749206,-0.9545736,-0.023961054,-0.32845455,-0.94421583,-0.024147417,-0.3283065,-0.94426256,-0.024057776,-0.3281584,-0.94431627,-0.023476476,-0.32763338,-0.9445132,-0.023694707,-0.32752717,-0.9445446,-0.023799354,-0.32743213,-0.9445749,-0.02361882,-0.32737094,-0.9446007,-0.023260737,-0.32752874,-0.9445548,-0.023103695,-0.32782993,-0.9444542,-0.023146732,-0.32806495,-0.9443716,-0.023511123,-0.32828882,-0.94428474,-0.023786224,-0.32811,-0.94434,-0.023508599,-0.3279297,-0.9444096,-0.0033404743,-0.3250702,-0.94568396,-0.0033040817,-0.32458338,-0.9458514,-0.0027883865,-0.32431737,-0.9459442,-0.0023738157,-0.32463175,-0.9458375,-0.0022648387,-0.32497674,-0.9457193,-0.0021895675,-0.32521203,-0.94563854,-0.0022271727,-0.32554725,-0.94552314,-0.0024552462,-0.32561657,-0.9454987,-0.0024989275,-0.32542473,-0.9455646,-0.00280252,-0.3248348,-0.94576657,-0.0030956462,-0.3250428,-0.9456942,-0.0025499654,-0.32508633,-0.9456809,-0.0026515706,-0.3249364,-0.9457322,0.04696052,-0.29510564,-0.95430994,0.046109173,-0.29482555,-0.954438,0.045426335,-0.29412183,-0.95468783,0.045246277,-0.29318333,-0.95498496,0.045743085,-0.2932762,-0.9549328,0.04604621,-0.2933626,-0.95489174,0.046524916,-0.29377806,-0.9547407,0.010176754,-0.2989384,-0.95421815,0.009621928,-0.29848787,-0.9543649,0.009211756,-0.2974791,-0.9546839,0.009452759,-0.29690132,-0.9548614,0.009873319,-0.29666373,-0.9549309,0.010448032,-0.29664415,-0.9549309,0.010941172,-0.31084985,-0.950396,0.01079416,-0.31071535,-0.9504417,0.010579311,-0.3100997,-0.95064515,0.010990874,-0.30884358,-0.9510494,0.011515811,-0.308088,-0.95128816,0.01208939,-0.30853063,-0.9511376,0.01234207,-0.30900082,-0.9509817,0.012388372,-0.30952436,-0.9508108,0.020343423,-0.3048108,-0.9521956,0.01949016,-0.30451536,-0.952308,0.019079737,-0.3037213,-0.9525699,0.01944349,-0.3026835,-0.9528928,0.020173723,-0.3027761,-0.95284814,0.02082271,-0.30379605,-0.9525095,-8.304069e-7,-0.28468537,-0.958621,-0.0011806198,-0.28406274,-0.95880497,-0.0012159728,-0.28366566,-0.95892256,-0.0016585399,-0.28286958,-0.95915693,-0.00094317796,-0.28303468,-0.9591092,-8.3062685e-7,-0.28382912,-0.9588749,8.396504e-8,-0.27845913,-0.9604481,-0.0007350404,-0.27813992,-0.9605403,-0.0009291209,-0.27775195,-0.96065235,-0.00051341805,-0.27775195,-0.9606527,8.397155e-8,-0.2782021,-0.9605226,8.397022e-8,-0.27825454,-0.9605074,0.0002140691,-0.28470492,-0.9586152,-8.380531e-8,-0.28468537,-0.958621,-8.38275e-8,-0.28382912,-0.9588749,0.00025660504,-0.2843863,-0.9587097,0.049689826,-0.21670589,-0.97497153,0.04902693,-0.21653284,-0.97504354,0.048936326,-0.21631822,-0.9750957,0.049089674,-0.21613853,-0.9751279,0.049949966,-0.21604691,-0.97510445,0.05064906,-0.21622662,-0.9750286,0.050990764,-0.2162882,-0.9749971,0.050764885,-0.21656449,-0.9749476,0.087082416,-0.36984175,-0.9250047,0.08696281,-0.3696661,-0.92508614,0.08700585,-0.36935714,-0.92520547,0.08739106,-0.36921945,-0.9252242,0.08765782,-0.36942372,-0.9251174,0.08755121,-0.36978483,-0.92498326,-0.021037426,-0.35294873,-0.93540615,-0.020996382,-0.3528179,-0.93545645,-0.020915998,-0.35269666,-0.9355039,-0.020829251,-0.3525882,-0.9355467,-0.020780692,-0.3525803,-0.9355508,-0.02073036,-0.35270467,-0.93550503,-0.020753227,-0.35282424,-0.93545943,-0.020850226,-0.35293266,-0.9354164,-0.020982882,-0.35299012,-0.9353917,-0.021071393,-0.35299334,-0.93538857,0.091185205,-0.6570939,-0.74827325,0.091487445,-0.6554479,-0.74967873,0.09233594,-0.65405774,-0.7507879,0.09612855,-0.6500285,-0.75380516,0.09338623,-0.6496969,-0.7544355,0.094920866,-0.64931583,-0.75457203,0.096478984,-0.649404,-0.75429857,0.09737571,-0.6496904,-0.7539366,0.09949003,-0.65106803,-0.7524707,0.101846926,-0.65287477,-0.75058764,0.10329846,-0.65536416,-0.7482161,0.10349916,-0.65871006,-0.74524426,0.1080654,-0.6658131,-0.7382512,0.10979367,-0.66597956,-0.7378459,0.11037466,-0.6664639,-0.73732173,0.110909104,-0.668781,-0.73514026,0.111495696,-0.6701674,-0.73378766,0.11178444,-0.6715792,-0.73245186,0.111917526,-0.6730453,-0.73108447,0.11230428,-0.6743277,-0.7298424,0.11169472,-0.6746962,-0.7295953,0.11142187,-0.6750773,-0.72928447,0.11212977,-0.67514396,-0.72911423,0.112560764,-0.6753151,-0.7288893,0.112924956,-0.67559654,-0.72857213,0.11462183,-0.6781096,-0.72596776,0.11447466,-0.68052983,-0.7237228,0.1145211,-0.6796814,-0.72451234,0.114703454,-0.678976,-0.7251446,0.1153129,-0.67839515,-0.7255915,0.116707794,-0.6800638,-0.7238042,0.11780454,-0.6810703,-0.72267926,0.117917955,-0.68168545,-0.7220805,0.117688395,-0.68237853,-0.7214631,0.11869981,-0.6815033,-0.7221244,0.11930692,-0.6816467,-0.7218889,0.12039298,-0.68211305,-0.7212678,0.12017728,-0.68251795,-0.7209207,0.11912189,-0.6831692,-0.7204789,0.12014244,-0.6827448,-0.72071165,0.12115374,-0.68247944,-0.7207937,0.12209325,-0.682843,-0.72029066,0.12297371,-0.683371,-0.7196399,0.12165366,-0.6843209,-0.7189612,0.12221689,-0.6839567,-0.7192123,0.12293483,-0.68384236,-0.7191986,0.12364603,-0.6840873,-0.7188437,0.124162145,-0.6848279,-0.71804905,0.12462169,-0.68515205,-0.7176602,0.12515071,-0.68537414,-0.717356,0.12605399,-0.6864458,-0.71617216,0.12787409,-0.6874169,-0.7149169,0.12721917,-0.68767804,-0.71478266,0.12740186,-0.6878686,-0.7145667,0.12810281,-0.68783516,-0.71447355,0.12815943,-0.6883187,-0.7139975,0.12795201,-0.68882304,-0.71354824,0.12875381,-0.6888415,-0.7133861,0.12998088,-0.6895084,-0.7125189,0.13172865,-0.6899182,-0.7118009,0.13394032,-0.6909022,-0.71043235,0.13567337,-0.69185406,-0.70917606,0.13599426,-0.6923929,-0.7085885,0.13580938,-0.6934006,-0.7076379,0.13675043,-0.69294244,-0.7079054,0.13762909,-0.69327533,-0.707409,0.14003906,-0.6946142,-0.7056204,0.14162174,-0.6943088,-0.70560503,0.1438629,-0.695042,-0.70442885,0.1448533,-0.6956876,-0.7035881,0.14659314,-0.69746083,-0.70146906,0.14842764,-0.69914937,-0.69939935,0.15003768,-0.7009178,-0.6972825,0.14968243,-0.70205474,-0.69621426,0.1491706,-0.7024636,-0.69591165,0.1489784,-0.7029572,-0.69545424,0.14968382,-0.70246005,-0.695805,0.15063941,-0.7020912,-0.695971,0.15159774,-0.70266616,-0.6951822,0.15279682,-0.70390093,-0.6936689,0.15383717,-0.70427984,-0.69305414,0.15405709,-0.7046633,-0.6926154,0.15400581,-0.7051082,-0.69217384,0.15359813,-0.7055492,-0.69181496,0.15356462,-0.7065921,-0.6907572,0.1545834,-0.7049801,-0.69217557,0.15682411,-0.70665586,-0.6899592,0.15700495,-0.7070707,-0.6894929,0.1564657,-0.7077006,-0.688969,0.15654281,-0.70826775,-0.6883685,0.15738599,-0.70773333,-0.68872577,0.1584102,-0.70863104,-0.6875669,0.15830159,-0.7092836,-0.6869188,0.15805261,-0.7098469,-0.68639404,0.15680018,-0.7103799,-0.6861298,0.15580828,-0.7105574,-0.686172,0.15550244,-0.71068084,-0.6861135,0.15648551,-0.7108222,-0.6857434,0.15677048,-0.7110201,-0.6854731,0.1567388,-0.711461,-0.6850227,0.15606046,-0.71216,-0.6844511,0.15737404,-0.7118201,-0.68450385,0.15930168,-0.71089065,-0.68502367,0.15976144,-0.71093744,-0.6848681,0.1595267,-0.71162856,-0.6842047,0.15888388,-0.71212304,-0.68383974,0.16056846,-0.7121446,-0.6834236,0.16082118,-0.71286446,-0.6826132,0.16071485,-0.71378314,-0.68167764,0.15908955,-0.71386075,-0.6819775,0.15769075,-0.71363866,-0.6825346,0.15945654,-0.7145073,-0.6812143,0.15966664,-0.71502936,-0.6806171,0.15936823,-0.7156809,-0.680002,0.15703583,-0.7158404,-0.6803765,0.158844,-0.7166005,-0.67915565,0.16256316,-0.7170533,-0.67779624,0.16279554,-0.71729785,-0.6774817,0.1627137,-0.7181595,-0.67658794,0.1623512,-0.7189017,-0.6758864,0.16096553,-0.7187986,-0.67632735,0.15991285,-0.717997,-0.6774276,0.15959378,-0.7188944,-0.67655057,0.16027601,-0.7198452,-0.6753773,0.15929672,-0.71997887,-0.6754665,0.15736958,-0.718821,-0.6771493,0.15927693,-0.7209587,-0.67442524,0.15886272,-0.7217343,-0.673693,0.15761657,-0.722068,-0.6736281,0.15437858,-0.722357,-0.67406803,0.15123801,-0.7222615,-0.6748818,0.15073884,-0.72210944,-0.6751561,0.14711428,-0.72208816,-0.6759779,0.14532954,-0.7237651,-0.6745691,0.14463778,-0.72378385,-0.6746976,0.1407045,-0.72400016,-0.67529696,0.14019616,-0.72439754,-0.67497647,0.13949284,-0.7247393,-0.6747552,0.13911079,-0.725243,-0.67429286,0.1391703,-0.7259232,-0.6735482,0.13869034,-0.72643524,-0.673095,0.13835436,-0.72663903,-0.67294407,0.13740858,-0.7264295,-0.673364,0.13610616,-0.72670704,-0.67332906,0.13546926,-0.7264259,-0.6737607,0.1330648,-0.7263135,-0.6743608,0.13147327,-0.7267304,-0.6742238,0.12986772,-0.7269423,-0.67430645,0.1270228,-0.7268205,-0.67497945,0.12312029,-0.72599465,-0.67658937,0.12268696,-0.72563124,-0.6770578,0.1224067,-0.7251315,-0.67764366,0.120865025,-0.7233815,-0.67978734,0.118058495,-0.7212871,-0.68250066,0.1172639,-0.72034067,-0.68363625,0.11574173,-0.71862435,-0.6856988,0.11277993,-0.7180742,-0.6867679,0.11224547,-0.71785945,-0.68707985,0.11160629,-0.7177728,-0.6872745,0.11148124,-0.71744406,-0.687638,0.111617126,-0.7168191,-0.68826735,0.11227457,-0.71637577,-0.688622,0.112891346,-0.715501,-0.68943006,0.11184021,-0.71348464,-0.69168735,0.11122419,-0.71170646,-0.693616,0.110435806,-0.7089736,-0.6965345,0.10915988,-0.7075911,-0.6981396,0.10902242,-0.70683193,-0.6989297,0.11079873,-0.70601285,-0.69947803,0.108998775,-0.70602363,-0.6997499,0.10864094,-0.7042362,-0.70160425,0.10869566,-0.701173,-0.70465714,0.10809247,-0.6984385,-0.70746,0.108476445,-0.69814926,-0.7076867,0.1090546,-0.6979676,-0.707777,0.10754145,-0.69785285,-0.70812166,0.106971465,-0.6972739,-0.70877796,0.10589264,-0.69614285,-0.7100506,0.104144454,-0.69612813,-0.7103236,0.10352151,-0.69588095,-0.71065676,0.101460464,-0.6947454,-0.7120636,0.100417405,-0.69446105,-0.7124888,0.09919945,-0.6939752,-0.71313244,0.09804853,-0.69335145,-0.71389794,0.098681964,-0.69256866,-0.71457016,0.09869054,-0.6916841,-0.7154252,0.09765478,-0.6924581,-0.7148184,0.09663868,-0.69299763,-0.71443355,0.09598137,-0.6928907,-0.71462584,0.09559407,-0.69251585,-0.7150409,0.09320333,-0.69180983,-0.7160393,0.09445576,-0.69256383,-0.7151457,0.09410558,-0.6926928,-0.71506697,0.09107391,-0.69230807,-0.71583176,0.090133615,-0.693026,-0.7152558,0.08881679,-0.69329375,-0.715161,0.08754318,-0.6932188,-0.7153907,0.08703095,-0.6930824,-0.71558535,0.08672156,-0.692699,-0.71599406,0.08650179,-0.6921162,-0.71658397,0.08687439,-0.69092685,-0.7176859,0.08722487,-0.6905817,-0.71797544,0.09152516,-0.6885734,-0.7193676,0.09171045,-0.6879478,-0.71994233,0.09233665,-0.6876496,-0.7201472,0.09399896,-0.68754435,-0.7200326,0.093131386,-0.6874417,-0.72024333,0.09232604,-0.6870839,-0.7206883,0.09195322,-0.6865139,-0.7212789,0.09260938,-0.68600446,-0.72167957,0.09347353,-0.68546855,-0.72207725,0.09230283,-0.68529475,-0.72239274,0.09126627,-0.6845186,-0.7232598,0.0903542,-0.6835824,-0.724259,0.088126175,-0.6827671,-0.72530186,0.087211356,-0.68228877,-0.7258624,0.08635948,-0.6816992,-0.72651786,0.08494372,-0.67996395,-0.72830874,0.08235521,-0.6752546,-0.73297256,0.079404995,-0.6726368,-0.7357,0.07884581,-0.67187077,-0.7364598,0.07896251,-0.67081726,-0.737407,0.07791732,-0.670175,-0.7381019,0.077066444,-0.6691698,-0.73910254,0.07507636,-0.66718525,-0.74109876,0.074758515,-0.66670275,-0.741565,0.07432792,-0.6657597,-0.74245495,0.07525697,-0.66494024,-0.74309546,0.07589289,-0.66467273,-0.7432701,0.07699511,-0.66484976,-0.74299836,0.07611932,-0.66342777,-0.7443584,0.07707992,-0.66268784,-0.7449185,0.07628568,-0.6603563,-0.74706763,0.07542166,-0.66016185,-0.74732715,0.07469199,-0.65953285,-0.74795556,0.073859744,-0.6585369,-0.74891514,0.073921934,-0.657424,-0.7498862,0.07809492,-0.6592394,-0.7478667,0.07728133,-0.6589178,-0.74823457,0.076088965,-0.65816617,-0.7490179,0.0759438,-0.65771174,-0.74943167,0.075220674,-0.6569641,-0.75016,0.07490215,-0.6563162,-0.7507587,0.0759278,-0.65638065,-0.7505994,0.076130114,-0.65586734,-0.75102746,0.07689167,-0.65593946,-0.75088686,0.07782586,-0.65614015,-0.75061524,0.07890442,-0.6559703,-0.7506511,0.07888701,-0.6564294,-0.75025153,0.078487664,-0.6570105,-0.7497846,0.0793232,-0.657374,-0.7493779,0.07981456,-0.6581378,-0.748655,0.08119891,-0.6596341,-0.7471878,0.080455385,-0.65858555,-0.7481925,0.08056528,-0.6576963,-0.7489625,0.07991504,-0.6569823,-0.7496585,0.08042361,-0.6564731,-0.75005007,0.08032276,-0.65615433,-0.7503398,0.07952481,-0.6558596,-0.75068235,0.07895492,-0.65497524,-0.75151414,0.079672165,-0.65505904,-0.7513654,0.080290355,-0.6554106,-0.7509929,0.08175461,-0.6556949,-0.7505867,0.08233513,-0.6559138,-0.750332,0.08448642,-0.6574022,-0.7487886,0.08592751,-0.65805054,-0.74805474,0.08727722,-0.6588331,-0.7472092,0.09082112,-0.65850353,-0.74707735,0.13524862,-0.6935664,-0.7075829,0.15571861,-0.70812094,-0.68870634,0.15961374,-0.71847016,-0.67699635,0.15004139,-0.72121257,-0.6762692,0.14767621,-0.72167534,-0.6762961,0.13392968,-0.7261706,-0.6743435,0.11663615,-0.71924037,-0.68490094,0.11284191,-0.71586305,-0.68906224,0.11093008,-0.70977247,-0.6956418,0.1104585,-0.706329,-0.6992126,0.10874628,-0.7023048,-0.7035213,0.106792696,-0.6963619,-0.7097009,0.10242127,-0.69518906,-0.71149284,0.09347645,-0.692538,-0.71529937,0.09123927,-0.68913805,-0.71886307,0.07737264,-0.66224986,-0.7452775,0.077295326,-0.6561209,-0.75068694,0.0795339,-0.6585228,-0.74834627,0.08857226,-0.6597943,-0.746208,0.09394157,-0.65368885,-0.75091,0.0963225,-0.65084547,-0.7530751,0.10418418,-0.6618972,-0.74231917,0.1073411,-0.66548604,-0.73865163,0.114175715,-0.67946506,-0.7247698,0.12202181,-0.6837155,-0.7194746,0.13965994,-0.69455796,-0.70575094,0.15753126,-0.71630436,-0.6797734,0.15801416,-0.7191078,-0.67669445,0.14259207,-0.723605,-0.6753246,0.10017036,-0.6909046,-0.71597254,0.0944008,-0.6879082,-0.71963245,0.08286144,-0.67582136,-0.732393,0.07746992,-0.66169786,-0.7457576,0.07711947,-0.66086555,-0.74653155,0.07994485,-0.6592061,-0.7477006,0.09008342,-0.65973014,-0.7460838,0.09632095,-0.6516719,-0.75236034,0.104844294,-0.6631255,-0.741129,0.10617063,-0.664646,-0.7395766,0.11418045,-0.6802363,-0.72404516,0.15352362,-0.70605755,-0.6913127,0.14948161,-0.72113824,-0.67647237,0.14124991,-0.7237169,-0.6754867,0.095547765,-0.6918639,-0.715678,0.093963414,-0.69138,-0.7163551,0.08882929,-0.6903597,-0.7179922,0.09064291,-0.6898849,-0.7182219,0.093395166,-0.6858122,-0.72176105,0.07497666,-0.6583162,-0.74899817,0.09535001,-0.6530696,-0.7512712,0.0998979,-0.6913876,-0.7155443,0.09517188,-0.6914687,-0.7161099,0.07678839,-0.6593228,-0.7479285,0.09591868,-0.65241104,-0.75177085,0.09456956,-0.69121873,-0.7164309,0.14201894,-0.69983375,-0.7000452,0.08530761,-0.6725006,-0.7351636,0.14288585,-0.7024582,-0.69723463,0.13647176,-0.69839776,-0.7025782,0.12881051,-0.70992196,-0.69240063,0.097949415,-0.6699996,-0.7358712,0.1317639,-0.7013948,-0.7004881,0.124616876,-0.7064569,-0.69669884,0.13162684,-0.70125204,-0.70065683,0.1077039,-0.6946909,-0.71119934,0.121489085,-0.7038005,-0.6999323,0.13481705,-0.71279573,-0.6882925,0.08185576,-0.65502805,-0.7511577,0.080171905,-0.6542615,-0.7520069,0.07969513,-0.65324634,-0.7529395,0.07969883,-0.6522703,-0.75378484,0.080462724,-0.6527108,-0.75332224,0.08085328,-0.6527507,-0.75324583,0.0815999,-0.65333676,-0.75265694,0.081835255,-0.6544961,-0.75162345,0.16016944,-0.7157535,-0.67973715,0.1602475,-0.7151545,-0.680349,0.1604729,-0.71494484,-0.68051624,0.16108476,-0.71465635,-0.6806747,0.16240768,-0.7150152,-0.67998314,0.16266266,-0.7156904,-0.6792114,0.16231649,-0.7157928,-0.67918634,0.16194957,-0.7157142,-0.6793567,0.16128208,-0.71599025,-0.6792246,0.16064912,-0.71605694,-0.67930424,0.16023879,-0.71605444,-0.67940384,0.15795887,-0.7107971,-0.6854316,0.1588106,-0.7093209,-0.68676275,0.15901008,-0.7093293,-0.6867079,0.15968005,-0.71006906,-0.6857873,0.15911777,-0.71051526,-0.68545574,0.14035949,-0.73018795,-0.6686739,0.14046851,-0.7297115,-0.669171,0.14312235,-0.72770613,-0.67079043,0.14511839,-0.7277704,-0.6702917,0.14507402,-0.72894055,-0.6690285,0.14436594,-0.7302404,-0.667763,0.14491497,-0.7308397,-0.66698796,0.1447736,-0.73151535,-0.66627765,0.14569937,-0.7318802,-0.6656749,0.145849,-0.7323979,-0.66507244,0.14572239,-0.7330451,-0.6643868,0.14661177,-0.7337183,-0.66344744,0.14664114,-0.7344254,-0.662658,0.14624675,-0.7344845,-0.66267973,0.14489803,-0.73423916,-0.66324764,0.14353828,-0.73337895,-0.66449386,0.14241289,-0.73349124,-0.664612,0.14130858,-0.73275054,-0.66566396,0.13938801,-0.7325615,-0.6662767,0.1388069,-0.7321867,-0.6668098,0.13868903,-0.7316756,-0.6673951,0.13903804,-0.7311038,-0.6679489,0.14000987,-0.7312142,-0.6676249,0.14044914,-0.73083156,-0.6679515,0.141471,-0.7305511,-0.66804266,0.14161439,-0.7300167,-0.66859627,0.14382191,-0.73344606,-0.6643585,0.062487595,-0.59248966,-0.80315083,0.06264365,-0.59172195,-0.8037045,0.06315507,-0.590281,-0.8047234,0.0641647,-0.5894029,-0.80528694,0.06469201,-0.5887858,-0.8056961,0.06496528,-0.5888824,-0.80560356,0.06506234,-0.5891234,-0.80541945,0.06566164,-0.5896866,-0.8049586,0.06545792,-0.5908559,-0.80411726,0.0652702,-0.5910375,-0.80399907,0.06403084,-0.5916368,-0.8036578,0.06357667,-0.59221655,-0.8032668,0.095812805,-0.5732987,-0.81372505,0.09608165,-0.57264334,-0.81415474,0.096534394,-0.57213193,-0.8144607,0.09743174,-0.57146925,-0.81481904,0.09763037,-0.570813,-0.8152551,0.09948148,-0.5685367,-0.81662077,0.10091024,-0.56691194,-0.81757444,0.09989304,-0.5653861,-0.8187551,0.10232042,-0.5654408,-0.81841755,0.104688615,-0.56576127,-0.8178964,0.102260776,-0.568308,-0.81643665,0.097003244,-0.57534415,-0.81213886,0.09792633,-0.57650757,-0.81120247,0.09726014,-0.5771133,-0.8108518,0.09619903,-0.57830274,-0.81013066,0.09553313,-0.5784223,-0.8101241,0.09526544,-0.57880193,-0.8098845,0.09522976,-0.5793994,-0.80946136,0.09485324,-0.57989794,-0.8091485,0.093905665,-0.58070433,-0.80868053,0.09357064,-0.58043504,-0.80891263,0.09107448,-0.57911855,-0.81014013,0.09248613,-0.5801201,-0.8092633,0.0933503,-0.58130777,-0.80831116,0.08443608,-0.5911296,-0.8021448,0.08341327,-0.5928536,-0.80097866,0.082782075,-0.5932926,-0.8007191,0.082121454,-0.5930951,-0.80093336,0.08188515,-0.5924019,-0.80147046,0.08226154,-0.5918649,-0.8018285,0.084364325,-0.58984905,-0.80309445,0.08586566,-0.5864952,-0.8053884,0.08497376,-0.58807623,-0.80432945,0.08392299,-0.58951306,-0.80338734,0.08074505,-0.59129727,-0.8024013,0.08041692,-0.5912217,-0.8024899,0.078735165,-0.59164906,-0.80234164,0.07927784,-0.5923345,-0.8017823,0.079210006,-0.5930815,-0.8012366,0.078317545,-0.59625226,-0.79896784,0.08061243,-0.5946119,-0.7999615,0.08139831,-0.5947146,-0.7998055,0.07808584,-0.5985799,-0.79724824,0.077434644,-0.6001763,-0.79611075,0.07694329,-0.6010048,-0.7955331,0.07606572,-0.60144335,-0.79528606,0.075152,-0.60161626,-0.7952421,0.07424251,-0.60142297,-0.79547375,0.07336246,-0.60110974,-0.79579204,0.07051407,-0.60299593,-0.7946217,0.071411766,-0.6030585,-0.79449403,0.07222743,-0.60334814,-0.7942004,0.07298197,-0.60390526,-0.79370785,0.07308677,-0.60481095,-0.7930082,0.07424327,-0.60305166,-0.79423964,0.074954934,-0.60278934,-0.7943719,0.075257786,-0.6031768,-0.79404914,0.073884144,-0.6056155,-0.79232,0.07335097,-0.6063396,-0.7918156,0.07250511,-0.60653067,-0.79174715,0.07278021,-0.6072852,-0.7911433,0.07292988,-0.60805136,-0.7905408,0.07259655,-0.60882634,-0.78997487,0.07109223,-0.611322,-0.78818226,0.069850996,-0.612969,-0.78701323,0.07050076,-0.61319387,-0.78678006,0.07106096,-0.6135816,-0.7864273,0.071498364,-0.61422336,-0.7858866,0.07084907,-0.6159731,-0.78457475,0.0711952,-0.61703336,-0.7837098,0.07235515,-0.6187593,-0.78224146,0.07300126,-0.62153506,-0.77997756,0.07329024,-0.62395155,-0.77801865,0.073393226,-0.6264006,-0.7760385,0.07645939,-0.6289428,-0.77368265,0.07705929,-0.62892836,-0.7736349,0.08023537,-0.6297442,-0.7726478,0.08316899,-0.6312087,-0.77114105,0.08364843,-0.6316171,-0.7707547,0.08392698,-0.6321813,-0.7702617,0.084066905,-0.6329125,-0.7696457,0.08403946,-0.6336342,-0.76905465,0.08371119,-0.6344091,-0.76845133,0.08326151,-0.63507825,-0.7679474,0.08152499,-0.6362006,-0.7672043,0.07578311,-0.63800687,-0.76629245,0.0743115,-0.6392398,-0.76540864,0.07272227,-0.6402839,-0.76468813,0.071087465,-0.640742,-0.7644582,0.06938678,-0.64091605,-0.7644685,0.067714415,-0.65683305,-0.7509894,0.06968014,-0.65892154,-0.74897736,0.07001432,-0.65936244,-0.7485581,0.07025001,-0.6598635,-0.7480944,0.07012568,-0.6601681,-0.7478372,0.06976434,-0.6603461,-0.74771386,0.06862347,-0.6603334,-0.7478306,0.067560546,-0.6598801,-0.7483274,0.06786995,-0.65951496,-0.7486212,0.06683928,-0.65924984,-0.7489474,0.06713199,-0.6597162,-0.7485104,0.06699966,-0.6613682,-0.74706304,0.06689902,-0.6616264,-0.74684346,0.06656796,-0.66174275,-0.7467699,0.06292018,-0.66195345,-0.74689937,0.06257872,-0.66307694,-0.7459309,0.062310543,-0.6635922,-0.745495,0.06113631,-0.6640651,-0.74517107,0.060247857,-0.66366625,-0.7455986,0.05941697,-0.6631203,-0.7461508,0.05639799,-0.6614653,-0.7478522,0.054485846,-0.6602653,-0.7490534,0.052698974,-0.65886396,-0.75041395,0.05175586,-0.6577656,-0.75144243,0.051064074,-0.65644234,-0.75264597,0.049429283,-0.6544355,-0.7545004,0.04869065,-0.6530102,-0.7557823,0.04668468,-0.65037686,-0.7581758,0.044983126,-0.64867795,-0.7597325,0.044055756,-0.64670265,-0.7614688,0.043008115,-0.6458364,-0.7622635,0.04210085,-0.6448952,-0.7631105,0.040572166,-0.64159346,-0.76597106,0.038808968,-0.6384072,-0.7687198,0.040771104,-0.6374936,-0.76937616,0.02938341,-0.6312814,-0.77499706,0.028717719,-0.6323739,-0.7741308,0.02826207,-0.6325641,-0.7739921,0.0275324,-0.6312511,-0.7750897,0.027744018,-0.6306018,-0.7756105,0.0275525,-0.62554586,-0.7797007,0.026083615,-0.6251602,-0.7800605,0.024800152,-0.62433904,-0.78075975,0.023641517,-0.62321347,-0.7816943,0.023024177,-0.62175,-0.78287727,0.021397814,-0.6136569,-0.7892828,0.020474868,-0.61232245,-0.7903429,0.020213863,-0.61141783,-0.7910497,0.021054942,-0.6109712,-0.7913728,0.02265899,-0.61040044,-0.7917688,0.023899518,-0.6096873,-0.7922817,0.027540293,-0.6095212,-0.7922913,0.028238114,-0.60987777,-0.79199225,0.028894931,-0.61037874,-0.7915825,0.030216135,-0.6109187,-0.7911165,0.031373587,-0.61160403,-0.7905417,0.046638682,-0.6133338,-0.7884456,0.05118755,-0.611252,-0.78977895,0.051867887,-0.611028,-0.78990793,0.054559883,-0.6096157,-0.79081726,0.05349714,-0.6099615,-0.7906232,0.05373149,-0.6092915,-0.79112375,0.056653842,-0.604663,-0.794464,0.057463635,-0.6012256,-0.7970104,0.057999194,-0.60007274,-0.79784006,0.058910012,-0.5990878,-0.79851323,0.05908191,-0.598117,-0.79922795,0.060338184,-0.5982823,-0.79901046,0.0626137,-0.59593487,-0.80058795,0.06308423,-0.59514064,-0.80114174,0.06363758,-0.5944815,-0.80158716,0.06447054,-0.5948338,-0.80125916,0.064623535,-0.5956132,-0.8006677,0.062849484,-0.59829736,-0.7988055,0.06291826,-0.5991206,-0.7981828,0.062865935,-0.59994173,-0.79756993,0.06465722,-0.6039894,-0.79436535,0.06503636,-0.6023852,-0.7955516,0.06545161,-0.6017212,-0.79601985,0.06622643,-0.6014148,-0.79618734,0.069031626,-0.60059065,-0.7965711,0.070407234,-0.59976315,-0.797074,0.070880964,-0.5999322,-0.7969048,0.07119813,-0.6005512,-0.79641014,0.07180958,-0.6000373,-0.79674256,0.07249466,-0.59976715,-0.7968839,0.073708445,-0.5989648,-0.79737586,0.07330399,-0.59866047,-0.79764163,0.07303305,-0.5969225,-0.7989679,0.07248157,-0.59639466,-0.79941213,0.07353838,-0.5946941,-0.8005817,0.0732285,-0.59404564,-0.8010913,0.07334338,-0.5932913,-0.8016397,0.07300439,-0.5921464,-0.8025167,0.075988844,-0.58892226,-0.8046094,0.07684937,-0.58787894,-0.80529034,0.077954285,-0.58614737,-0.8064455,0.07920765,-0.5849203,-0.80721396,0.07929879,-0.58458567,-0.8074474,0.077271186,-0.5848692,-0.8074386,0.07661433,-0.5847532,-0.80758524,0.07774537,-0.583079,-0.808687,0.07745775,-0.58250546,-0.8091277,0.07733564,-0.58186793,-0.809598,0.078572884,-0.5800506,-0.81078213,0.07926098,-0.579434,-0.811156,0.079788014,-0.5788128,-0.8115477,0.07967047,-0.57883376,-0.81154424,0.07999481,-0.57820684,-0.8119592,0.08082394,-0.5770979,-0.8126657,0.08134757,-0.5771952,-0.8125443,0.083841,-0.57666636,-0.8126664,0.08375619,-0.5760382,-0.8131205,0.08399853,-0.5756173,-0.81339353,0.086647116,-0.5743929,-0.813981,0.0878151,-0.57395196,-0.81416684,0.088241525,-0.5741655,-0.81397015,0.08858931,-0.57455605,-0.8136567,0.089271486,-0.5743566,-0.81372297,0.08997172,-0.5736575,-0.8141389,0.093179405,-0.57281804,-0.8143691,0.09368354,-0.572554,-0.814497,0.093648925,-0.5713489,-0.8153467,0.09453656,-0.5720955,-0.8147205,0.1003222,-0.5677933,-0.8170351,0.099652074,-0.5707122,-0.81508106,0.085145324,-0.590266,-0.8027056,0.07840435,-0.59349716,-0.80100805,0.07846474,-0.5979886,-0.7976546,0.07858847,-0.63699585,-0.76685077,0.047822878,-0.65167063,-0.75699294,0.04116778,-0.63682234,-0.7699107,0.032410614,-0.61301476,-0.78940636,0.052583367,-0.6110712,-0.78982717,0.055524524,-0.60788894,-0.7920784,0.061900362,-0.6024628,-0.7957429,0.0736119,-0.5995995,-0.7969076,0.09506428,-0.5728321,-0.81414133,0.09828074,-0.5721935,-0.8142085,0.09710476,-0.57380825,-0.81321263,0.09076322,-0.5786724,-0.8104939,0.08082365,-0.59054387,-0.802948,0.07880645,-0.5911694,-0.8026881,0.07793449,-0.5957281,-0.79939616,0.07589724,-0.628813,-0.7738435,0.0646821,-0.6611968,-0.7474188,0.063199215,-0.6615395,-0.74724257,0.029973714,-0.630824,-0.77534676,0.022665177,-0.6184204,-0.78552055,0.022097817,-0.6151148,-0.7881278,0.053739365,-0.61076885,-0.7899833,0.054872513,-0.60981697,-0.7906404,0.06407794,-0.6046955,-0.7938749,0.08366554,-0.577329,-0.81221384,0.09058212,-0.5781302,-0.8109009,0.080635436,-0.5900857,-0.80330366,0.07783753,-0.5941335,-0.8005915,0.077673666,-0.5949735,-0.7999833,0.06774887,-0.6590933,-0.7490034,0.031747963,-0.6304826,-0.77555376,0.044466324,-0.61414266,-0.78794134,0.06402346,-0.59611136,-0.80034506,0.08328132,-0.5778576,-0.8118773,0.09292204,-0.57927,-0.8098221,0.08570701,-0.5880417,-0.8042769,0.08012796,-0.5901902,-0.8032777,0.07512515,-0.6283131,-0.7743248,0.06570818,-0.65405,-0.7535921,0.033552494,-0.63032126,-0.775609,0.06354658,-0.596705,-0.7999406,0.092373446,-0.57874477,-0.81026024,0.07375668,-0.6271695,-0.7753827,0.06400874,-0.6510603,-0.75632226,0.06731125,-0.658992,-0.749132,0.028227486,-0.6301665,-0.7759468,0.02809737,-0.62742317,-0.77817136,0.054744083,-0.61015475,-0.7903887,0.06309083,-0.59747887,-0.7993989,0.08242141,-0.57798,-0.81187797,0.08589453,-0.5871385,-0.8049165,0.0544243,-0.6479758,-0.759714,0.028328499,-0.6296158,-0.77639,0.0917652,-0.57828325,-0.8106588,0.035111357,-0.63042045,-0.7754594,0.03361843,-0.6142503,-0.7883948,0.09121972,-0.5780372,-0.8108958,0.0636176,-0.64951944,-0.75767887,0.06311072,-0.6466481,-0.7601732,0.03659473,-0.6308901,-0.77500874,0.061583318,-0.60403425,-0.7945754,0.066688225,-0.6421476,-0.76367474,0.06377842,-0.6454499,-0.76113516,0.03882647,-0.6318419,-0.77412426,0.06190504,-0.6046182,-0.7941062,0.068611756,-0.6227666,-0.77939343,0.06457875,-0.64432305,-0.7620219,0.03950849,-0.63232386,-0.77369606,0.06302248,-0.6048312,-0.793856,0.06753769,-0.6238776,-0.7785984,0.041253466,-0.63595337,-0.7706241,0.04009712,-0.63293374,-0.7731669,0.055677436,-0.6196113,-0.78293157,0.041079067,-0.6342932,-0.7720005,0.07268558,-0.6010307,-0.7959139,0.055599093,-0.6187673,-0.7836043,0.03503433,-0.6150757,-0.7876893,0.03663135,-0.6155352,-0.7872577,0.03748062,-0.61557144,-0.78718925,0.039026253,-0.61546546,-0.78719705,0.11359607,-0.7938657,-0.5973886,0.11430486,-0.7933243,-0.59797233,0.11485423,-0.79319566,-0.5980377,0.11533504,-0.793341,-0.59775233,0.11594216,-0.79330456,-0.59768325,0.11566644,-0.7936563,-0.5972696,0.11522852,-0.79390395,-0.59702504,0.11464303,-0.79409975,-0.59687734,0.15015377,-0.7754485,-0.6132972,0.15065806,-0.7745199,-0.6143461,0.15091015,-0.7744024,-0.61443233,0.15125544,-0.7740022,-0.6148515,0.15088159,-0.77377766,-0.6152259,0.15115386,-0.77331424,-0.61574143,0.15126292,-0.7728666,-0.6162765,0.15083852,-0.77248144,-0.6168632,0.15081082,-0.77227473,-0.61712873,0.15099984,-0.7721123,-0.61728567,0.15135603,-0.77196825,-0.61737865,0.15266304,-0.77205706,-0.6169456,0.15253374,-0.77243495,-0.61650443,0.15250498,-0.773608,-0.6150389,0.15392612,-0.7745372,-0.61351347,0.15406235,-0.77502954,-0.6128572,0.15385713,-0.77518135,-0.61271673,0.15314393,-0.77516,-0.6129225,0.1525416,-0.77479804,-0.61353,0.15204398,-0.77519435,-0.61315286,0.150741,-0.77545273,-0.6131478,0.15283172,-0.774701,-0.61358035,-0.047690723,-0.6917186,-0.7205907,-0.048162937,-0.6913912,-0.7208735,-0.043290682,-0.6911042,-0.7214575,-0.04198387,-0.691704,-0.7209598,-0.040807854,-0.69161284,-0.72111464,-0.03967447,-0.6924445,-0.72037953,-0.040166397,-0.6925786,-0.7202232,-0.04235597,-0.6923979,-0.7202716,-0.043161746,-0.69408196,-0.7186009,-0.042261608,-0.69473684,-0.7180214,-0.04226785,-0.69511193,-0.71765786,-0.042609315,-0.6960034,-0.7167731,-0.042934723,-0.69610006,-0.7166598,-0.04363402,-0.696121,-0.7165973,-0.04444858,-0.6956227,-0.71703094,-0.045959197,-0.69526637,-0.7172813,-0.04598007,-0.69497585,-0.7175615,-0.04538704,-0.6940488,-0.7184958,-0.04471172,-0.69408935,-0.718499,-0.04401617,-0.69290054,-0.7196885,-0.044788904,-0.6923461,-0.7201742,-0.044625416,-0.69220465,-0.7203203,-0.045638006,-0.692025,-0.7204294,-0.045498315,-0.6929842,-0.7195156,-0.046920627,-0.69170016,-0.72065896,-0.04386544,-0.69195133,-0.72061026,-0.04525665,-0.6916509,-0.7208126,-0.043689366,-0.69341415,-0.7192135,-0.043331463,-0.69279736,-0.71982926,-0.04409698,-0.6917408,-0.7207982,-0.047147844,-0.6987971,-0.7137644,-0.047707453,-0.69868606,-0.713836,-0.048422873,-0.69802123,-0.71443796,-0.04805813,-0.6974718,-0.714999,-0.04711722,-0.6976243,-0.7149128,-0.047271006,-0.6980847,-0.71445304,-0.12934338,-0.14924048,-0.98030484,-0.12942193,-0.14920335,-0.9803001,-0.12939304,-0.1489742,-0.98033875,-0.12929147,-0.14877863,-0.98038185,-0.12912786,-0.14861183,-0.9804287,-0.12909885,-0.14863706,-0.98042876,-0.12917452,-0.14883086,-0.9803894,-0.12926964,-0.14904493,-0.9803443,-0.15114331,-0.16260797,-0.9750458,-0.15118198,-0.16255915,-0.97504795,-0.15113679,-0.16240612,-0.9750805,-0.15105298,-0.16227156,-0.97511584,-0.15093265,-0.16216557,-0.9751521,-0.15088494,-0.16217744,-0.97515756,-0.15095486,-0.16237424,-0.975114,-0.151071,-0.16250704,-0.9750738,0.25542057,-0.34605315,-0.9027777,0.25784078,-0.3443399,-0.90274477,0.25809047,-0.34485346,-0.9024773,0.25804055,-0.34584847,-0.9021108,0.25752923,-0.34658557,-0.901974,0.2559491,-0.3477204,-0.9019871,0.25593165,-0.34881654,-0.9015686,0.25554648,-0.34988338,-0.9012645,0.253041,-0.35237604,-0.9010002,0.2518949,-0.3541158,-0.9006392,0.2504853,-0.35558173,-0.9004547,0.24357453,-0.36165005,-0.8999337,0.24229562,-0.3630861,-0.89970064,0.24093582,-0.36368793,-0.8998228,0.23697038,-0.36691508,-0.89956564,0.2355215,-0.36780128,-0.8995843,0.23390988,-0.3683687,-0.8997726,0.23070948,-0.37013945,-0.8998721,0.2286827,-0.37100065,-0.90003484,0.22731061,-0.37223974,-0.8998708,0.22550364,-0.37311754,-0.8999619,0.22238047,-0.3744249,-0.9001961,0.22198783,-0.3753256,-0.89991784,0.22139162,-0.376049,-0.8997627,0.21947281,-0.3771148,-0.8997867,0.21745928,-0.37777933,-0.89999676,0.21707025,-0.37835047,-0.8998508,0.2165569,-0.37874648,-0.8998079,0.21493003,-0.37889948,-0.90013343,0.21156365,-0.38068587,-0.9001773,0.21063894,-0.38035172,-0.9005353,0.20961982,-0.380317,-0.9007877,0.20855983,-0.37982523,-0.9012411,0.20811652,-0.37883472,-0.90176034,0.20934604,-0.3760648,-0.90263474,0.21138094,-0.3748816,-0.90265274,0.21353209,-0.37384638,-0.90257573,0.21526207,-0.3725482,-0.90270156,0.21688758,-0.37108934,-0.90291333,0.22009759,-0.36872828,-0.9031038,0.22420216,-0.36623964,-0.9031068,0.22597314,-0.36556542,-0.90293854,0.22706686,-0.36470068,-0.9030139,0.22809127,-0.36428806,-0.9029222,0.22893277,-0.36344185,-0.9030503,0.23076448,-0.36271763,-0.9028752,0.23216805,-0.3612988,-0.9030843,0.23445636,-0.35968038,-0.9031391,0.23493633,-0.35906488,-0.9032593,0.23515932,-0.35806412,-0.9035985,0.23573448,-0.35732237,-0.9037422,0.23697755,-0.35652626,-0.90373147,0.2379431,-0.35540023,-0.9039213,0.23897591,-0.3545987,-0.9039636,0.24252453,-0.35316557,-0.90357953,0.24911942,-0.3482638,-0.90368795,0.25167906,-0.34664473,-0.9036012,0.25354016,-0.34708112,-0.9029131,0.25656325,-0.34701562,-0.902084,0.24871098,-0.35683364,-0.90045136,0.24705642,-0.35823905,-0.9003487,0.22286505,-0.37390485,-0.90029234,0.21571608,-0.37863603,-0.90005624,0.24027468,-0.35420188,-0.9037749,0.23938218,-0.36084825,-0.9013793,0.19953074,-0.3852802,-0.90096986,0.1990866,-0.3846699,-0.9013288,0.1993855,-0.38396016,-0.9015654,0.20079404,-0.38335106,-0.9015119,0.20101781,-0.3845943,-0.9009323,0.20064683,-0.38492626,-0.90087324,0.20015943,-0.38515434,-0.9008842,0.32371733,-0.33105966,-0.88634455,0.32352236,-0.33070746,-0.88654715,0.32330617,-0.32949755,-0.8870763,0.3237849,-0.32745948,-0.8876563,0.32415774,-0.3284433,-0.88715655,0.19385646,-0.36438486,-0.9108476,0.19384277,-0.36386728,-0.9110574,0.19478992,-0.3644356,-0.9106281,0.19652,-0.36475784,-0.9101272,0.19533293,-0.366885,-0.9095276,0.19530532,-0.36783454,-0.9091499,0.19423522,-0.36821806,-0.909224,0.19378264,-0.36879954,-0.9090848,0.19315152,-0.3688249,-0.90920883,0.19137405,-0.36838132,-0.9097644,0.1913071,-0.36561146,-0.91089505,0.19365367,-0.3649895,-0.9106486,0.19336392,-0.36536393,-0.9105601,0.19259289,-0.36566386,-0.91060305,0.21846506,-0.3536152,-0.90952146,0.21763428,-0.35345417,-0.90978324,0.21701834,-0.35285303,-0.91016364,0.21657653,-0.3517811,-0.91068363,0.21691649,-0.35160235,-0.9106718,0.21681929,-0.34984025,-0.9113732,0.2160159,-0.34939307,-0.91173553,0.21679427,-0.34887084,-0.91175073,0.21747236,-0.34879094,-0.9116198,0.2173734,-0.34939787,-0.911411,0.21762618,-0.35120657,-0.91065514,0.21757586,-0.35212088,-0.910314,0.21703115,-0.35062253,-0.9110221,0.20427771,-0.36111605,-0.9098713,0.20342039,-0.36098412,-0.9101157,0.20305419,-0.35978538,-0.910672,0.20309277,-0.35926846,-0.91086745,0.20435613,-0.35742423,-0.9113103,0.20549692,-0.35659954,-0.9113769,0.20564243,-0.35400578,-0.9123547,0.20614764,-0.3534845,-0.9124428,0.20721866,-0.35304275,-0.9123712,0.20951405,-0.35380498,-0.9115514,0.20963049,-0.35444567,-0.9112757,0.20816734,-0.35455403,-0.9115689,0.20836921,-0.3568049,-0.91064405,0.209599,-0.3571058,-0.9102438,0.20886004,-0.35832343,-0.90993506,0.20779918,-0.3593559,-0.9097708,0.20553572,-0.35994443,-0.91005224,0.20727222,-0.35516432,-0.91153526,-0.71461177,-0.41330472,-0.5643662,-0.71479553,-0.4130625,-0.5643108,-0.71497333,-0.41254252,-0.5644659,-0.7150227,-0.4120487,-0.5647641,-0.7148196,-0.41188404,-0.56514114,-0.7145258,-0.4121543,-0.56531566,-0.7144328,-0.41263875,-0.5650797,-0.7144812,-0.41309986,-0.5646814,-0.45733848,-0.28677768,-0.8417838,-0.45762563,-0.28665033,-0.8416712,-0.458126,-0.2860804,-0.8415929,-0.45788887,-0.28575048,-0.841834,-0.457249,-0.28525385,-0.84235,-0.4570443,-0.28600696,-0.84220576,-0.45709905,-0.286474,-0.8420173,-0.47890437,-0.30188897,-0.82432616,-0.47942305,-0.30145514,-0.82418346,-0.48002365,-0.3005026,-0.82418174,-0.4796809,-0.30027178,-0.82446533,-0.4783485,-0.30019855,-0.82526577,-0.47812596,-0.30072534,-0.82520294,-0.4781524,-0.30116746,-0.82502633,-0.47835332,-0.30158505,-0.8247573,-0.4573437,-0.2903565,-0.8405533,-0.45792896,-0.29033035,-0.84024364,-0.458626,-0.29010528,-0.8399411,-0.4581587,-0.2886043,-0.8407129,-0.45742664,-0.28802326,-0.84131056,-0.45723414,-0.28837588,-0.84129435,-0.45685273,-0.29009557,-0.8409103,-0.48609373,-0.3038675,-0.8193763,-0.48624408,-0.30218637,-0.81990856,-0.48571956,-0.3010781,-0.8206269,-0.48394138,-0.30064565,-0.82183504,-0.4823648,-0.3012325,-0.8225468,-0.48193952,-0.30177534,-0.8225971,-0.48182893,-0.30266234,-0.8223359,-0.4822874,-0.30461437,-0.82134587,-0.48363218,-0.3049098,-0.82044494,-0.48569876,-0.30457214,-0.8193488,-0.4861777,-0.30606863,-0.81850666,-0.48661664,-0.30652446,-0.8180751,-0.48762053,-0.3067305,-0.8173999,-0.48819888,-0.30589655,-0.81736726,-0.48802254,-0.30464196,-0.81794095,-0.6482166,-0.16930078,-0.7423965,-0.64637303,-0.1684071,-0.74420494,-0.64438015,-0.16969728,-0.7456386,-0.6446862,-0.1707168,-0.74514127,-0.64543974,-0.17099553,-0.74442464,-0.6461304,-0.17056563,-0.743924,-0.6481212,-0.17008696,-0.74230003,-0.6488378,-0.16920514,-0.7418754,-0.6443332,-0.17381266,-0.7447308,-0.6454529,-0.1724681,-0.7440734,-0.6451798,-0.1721945,-0.7443736,-0.6448638,-0.1721945,-0.7446473,-0.6444947,-0.17238073,-0.7449239,-0.64903975,-0.18279187,-0.7384677,-0.64954764,-0.18249862,-0.73809355,-0.6498377,-0.1821015,-0.7379364,-0.6500008,-0.18160039,-0.7379162,-0.6497988,-0.18130708,-0.73816615,-0.6492296,-0.18095842,-0.7387523,-0.6327337,-0.15529637,-0.75863767,-0.6340707,-0.15489067,-0.7576036,-0.6344843,-0.15425573,-0.75738686,-0.6345773,-0.15364948,-0.75743216,-0.6344563,-0.15301113,-0.7576627,-0.63228256,-0.15266748,-0.7595469,-0.632048,-0.15294375,-0.7596864,-0.63179386,-0.15381451,-0.75972205,-0.6321204,-0.15522231,-0.7591639,-0.6327904,-0.16408606,-0.7567378,-0.6331105,-0.16377325,-0.75653774,-0.63384694,-0.16237424,-0.7562227,-0.63335097,-0.16208829,-0.7566993,-0.63232386,-0.16262643,-0.75744253,-0.63236225,-0.16305691,-0.7573179,-0.6014607,-0.30695277,-0.73758054,-0.60146165,-0.30663645,-0.73771125,-0.6012308,-0.30651313,-0.7379507,-0.6040711,-0.3037522,-0.7367718,-0.6042659,-0.3036677,-0.73664683,-0.6041449,-0.3035297,-0.736803,-0.6036297,-0.30376357,-0.7371288,-0.6025471,-0.30432868,-0.73778117,-0.6018899,-0.30489197,-0.738085,-0.6015016,-0.3054958,-0.7381519,-0.60101545,-0.30621138,-0.7382513,-0.6008847,-0.3068019,-0.73811257,-0.6010009,-0.30691057,-0.7379728,-0.60223323,-0.3049325,-0.7377881,-0.601225,-0.30633473,-0.7380295,-0.60156566,-0.30575708,-0.73799145,-0.63995665,-0.1555372,-0.75250494,-0.64082074,-0.15540414,-0.7517967,-0.64147127,-0.15497983,-0.7513294,-0.64152426,-0.15465996,-0.7513501,-0.6412182,-0.15428601,-0.7516881,-0.64059645,-0.1540217,-0.7522722,-0.6402101,-0.15423383,-0.7525575,-0.6399015,-0.15468515,-0.7527274,-0.60130405,-0.31591585,-0.7339146,-0.60125774,-0.31531587,-0.7342105,-0.6001806,-0.31455883,-0.7354155,-0.6001868,-0.315049,-0.7352006,-0.6010536,-0.31563455,-0.7342407,-0.6000601,-0.31261504,-0.7363421,-0.6000628,-0.31215844,-0.7365336,-0.59948385,-0.31101662,-0.7374875,-0.5991988,-0.3104076,-0.73797554,-0.59865934,-0.30999917,-0.7385848,-0.598763,-0.31042856,-0.73832035,-0.5993615,-0.31147182,-0.73739487,-0.5996425,-0.31231394,-0.7368099,-0.65508324,-0.3180385,-0.6853593,-0.6547753,-0.3176247,-0.6858453,-0.65423006,-0.3172513,-0.6865381,-0.6537674,-0.31687957,-0.6871503,-0.65341896,-0.31669527,-0.6875666,-0.65315205,-0.31682134,-0.6877621,-0.6532689,-0.3170574,-0.68754226,-0.6541351,-0.317531,-0.68649936,-0.6545195,-0.3178817,-0.6859705,-0.6548154,-0.31805295,-0.6856086,-0.6547578,-0.31840193,-0.6855016,-0.65359634,-0.31712365,-0.6872005,-0.64762557,-0.31500205,-0.6937974,-0.64769197,-0.31468818,-0.6938778,-0.64724874,-0.31354263,-0.6948094,-0.64681643,-0.31341797,-0.69526803,-0.6191274,-0.3560405,-0.6999403,-0.6191967,-0.35532534,-0.70024234,-0.61898535,-0.35463694,-0.700778,-0.6186512,-0.35489663,-0.7009415,-0.6188873,-0.35502735,-0.70066696,-0.6189327,-0.35593224,-0.70016754,-0.6186961,-0.35634473,-0.7001668,-0.58447057,-0.27743426,-0.7625119,-0.58473897,-0.2772525,-0.76237214,-0.5853771,-0.27593553,-0.76236033,-0.58500665,-0.2761027,-0.7625841,-0.5713562,-0.2868398,-0.7689441,-0.57077223,-0.28601837,-0.7696834,-0.5704664,-0.28591543,-0.76994836,-0.56978613,-0.28589422,-0.7704598,-0.5692879,-0.28604123,-0.7707735,-0.5704839,-0.28628132,-0.7697994,-0.5684236,-0.2863646,-0.771291,-0.5689721,-0.2862699,-0.77092165,-0.56843406,-0.28599063,-0.7714221,-0.56779754,-0.28536823,-0.7721211,-0.5672959,-0.28536823,-0.77248967,-0.5510459,-0.2732216,-0.78847855,-0.55017006,-0.2716423,-0.78963494,-0.5498086,-0.27155867,-0.7899154,-0.5500387,-0.27208018,-0.78957576,-0.5506968,-0.27324775,-0.78871334,-0.5508359,-0.27397734,-0.788363,-0.54375505,-0.2814503,-0.7906429,-0.54374087,-0.2811657,-0.7907539,-0.54346657,-0.28029534,-0.79125124,-0.5432637,-0.27940357,-0.79170597,-0.5429613,-0.2783184,-0.79229534,-0.5426742,-0.27696592,-0.7929657,-0.5425444,-0.27784848,-0.7927457,-0.54250354,-0.2784084,-0.79257727,-0.5428522,-0.27901563,-0.79212487,-0.5430412,-0.2798487,-0.7917013,-0.5431031,-0.28058496,-0.7913983,-0.54347485,-0.28143385,-0.7908414,0.12331295,0.054007303,-0.99089706,0.12221306,0.05458759,-0.9910016,0.12233975,0.054826725,-0.99097276,0.12233387,0.054928854,-0.99096787,0.1236433,0.054100867,-0.9908508,0.124390654,0.053228676,-0.99080455,0.1237672,0.053268675,-0.9908805,0.12364648,0.053625196,-0.9908763,0.124687165,0.053574964,-0.99074864,0.12554939,0.05292655,-0.9906746,0.12601383,0.052912027,-0.9906164,0.12567326,0.05255466,-0.99067867,0.121398434,0.03180428,-0.9920942,0.121481545,0.032207955,-0.99207103,0.12212202,0.033102382,-0.99196297,0.12233564,0.03337653,-0.99192744,0.12266388,0.0337224,-0.9918752,0.12292863,0.033917435,-0.9918357,0.122965395,0.033607427,-0.9918418,0.12238155,0.03290043,-0.99193764,0.121305496,0.029969452,-0.9921627,0.121030025,0.030391142,-0.9921835,0.12107161,0.031040167,-0.9921584,0.12115625,0.031487342,-0.9921339,0.12139932,0.031573366,-0.99210143,0.121460505,0.030145802,-0.99213845,0.121931665,0.029894503,-0.9920882,0.12133078,0.030491589,-0.9921437,0.12035289,0.016988847,-0.99258584,0.121281885,0.017681587,-0.99246055,0.121785656,0.01789029,-0.99239516,0.12202226,0.01789029,-0.99236614,0.12178693,0.017294694,-0.9924056,0.12167856,0.017294694,-0.9924189,0.12140758,0.017436173,-0.99244964,0.12118553,0.01596462,-0.9925015,0.122377105,0.014708541,-0.9923747,0.12201035,0.014580762,-0.9924217,0.12078986,0.015973084,-0.9925496,0.12047572,0.016514221,-0.9925789,0.12072551,0.016801357,-0.9925437,0.09624632,-0.014468328,-0.9952524,0.09568529,-0.013992851,-0.9953133,0.09591788,-0.012665215,-0.99530864,0.09690366,-0.010935371,-0.9952337,0.09768113,-0.01032863,-0.99516416,0.09790676,-0.01032863,-0.995142,0.09744127,-0.010991634,-0.99518055,0.09666077,-0.011293334,-0.9952533,0.09618996,-0.013502112,-0.99527144,0.09646046,-0.014035523,-0.9952378,0.09627739,-0.011208105,-0.9952914,0.09097698,-0.022048399,-0.9956089,0.09107725,-0.021150367,-0.99561924,0.091193445,-0.020717494,-0.9956177,0.09158497,-0.020023959,-0.9955959,0.09206062,-0.019785348,-0.99555683,0.091638125,-0.020673277,-0.99557775,0.09150749,-0.02157811,-0.99557054,0.091376,-0.021927431,-0.995575,0.12163991,0.023356892,-0.99229944,0.12117128,0.023421725,-0.9923553,0.120766714,0.023495853,-0.9924028,0.11999315,0.023683317,-0.9924922,0.11901035,0.023690943,-0.9926103,0.118864514,0.023793196,-0.99262536,0.11885707,0.023998534,-0.9926213,0.11917807,0.024214838,-0.9925776,0.11935089,0.024106627,-0.99255943,0.12133961,0.023712276,-0.9923278,0.18149862,-0.015288158,-0.9832724,0.18133791,-0.015248943,-0.9833026,0.18126652,-0.014948928,-0.98332036,0.18155205,-0.014780265,-0.9832702,0.18177636,-0.014880867,-0.98322725,0.18182099,-0.015107458,-0.9832156,-0.1352307,-0.07845061,-0.9877035,-0.13534538,-0.07845061,-0.9876878,-0.13536027,-0.07837931,-0.9876914,-0.13533577,-0.07831466,-0.98769987,-0.13508785,-0.078353755,-0.9877307,-0.13503015,-0.0788839,-0.9876964,-0.13548583,-0.07883637,-0.9876378,-0.13562274,-0.07871741,-0.9876285,-0.13539954,-0.078737855,-0.98765755,-0.13515073,-0.07877184,-0.98768884,-0.13504244,-0.07850505,-0.9877249,-0.13480778,-0.07858146,-0.98775095,-0.13504438,-0.07865288,-0.98771286,-0.15465342,-0.054832764,-0.986446,-0.15473428,-0.054696593,-0.98644084,-0.154808,-0.054434605,-0.9864438,-0.15469356,-0.054340925,-0.98646694,-0.15462245,-0.05451626,-0.9864684,-0.15453486,-0.054722186,-0.9864707,-0.15178113,-0.07790346,-0.9853392,-0.15195097,-0.07782359,-0.9853194,-0.15197554,-0.07765376,-0.98532903,-0.15184832,-0.077487126,-0.9853618,-0.15162541,-0.07744303,-0.98539954,-0.15145916,-0.07757555,-0.9854147,-0.15146051,-0.07775906,-0.9854001,-0.1515834,-0.07787636,-0.9853719,-0.095505506,-0.0817364,-0.99206746,-0.095302716,-0.081505425,-0.99210596,-0.09498526,-0.08123358,-0.9921587,-0.09482233,-0.08119615,-0.99217737,-0.09482434,-0.08127267,-0.9921709,-0.09523536,-0.08170919,-0.9920957,-0.09501963,-0.08161913,-0.9921238,-0.095111504,-0.0817585,-0.9921035,-0.09540757,-0.08182812,-0.9920693,-0.09550652,-0.08184677,-0.9920583,-0.0949549,-0.08133552,-0.9921532,-0.095326826,-0.08168887,-0.9920886,-0.09512806,-0.08148666,-0.99212426,-0.42218626,-0.07139033,-0.9036936,-0.42223305,-0.07128843,-0.9036798,-0.42234772,-0.070730746,-0.9036701,-0.42246073,-0.07048079,-0.90363675,-0.42234236,-0.0702972,-0.90370643,-0.4217745,-0.07042812,-0.90396136,-0.42132664,-0.07059305,-0.90415734,-0.42132998,-0.07071208,-0.9041465,-0.42163664,-0.07099425,-0.9039814,-0.4220002,-0.071250975,-0.9037915,-0.46327257,-0.19862969,-0.86366934,-0.46342286,-0.1983591,-0.8636509,-0.46333838,-0.19790293,-0.8638009,-0.46319783,-0.19753203,-0.86396116,-0.46304107,-0.19751708,-0.8640486,-0.4629242,-0.19781612,-0.86404276,-0.46293628,-0.19819038,-0.86395055,-0.46304324,-0.19853447,-0.86381423,-0.40656373,-0.09813598,-0.9083365,-0.40693656,-0.09804605,-0.9081793,-0.40696523,-0.09791543,-0.90818053,-0.40681347,-0.09777971,-0.90826315,-0.406204,-0.097747445,-0.90853935,-0.4060691,-0.097713515,-0.9086033,-0.4059226,-0.097715296,-0.9086686,-0.4059258,-0.09790523,-0.9086467,-0.40613198,-0.098132536,-0.90853,-0.3853262,0.034350984,-0.92214084,-0.38338053,0.035336364,-0.92291427,-0.3825694,0.035410468,-0.9232479,-0.3846343,0.03395913,-0.9224441,-0.38418713,0.03363805,-0.92264223,-0.38351846,0.03223524,-0.9229704,-0.38234395,0.032905553,-0.923434,-0.3819594,0.033623632,-0.9235673,-0.3811998,0.033190906,-0.9238967,-0.3837842,0.031193515,-0.92289585,-0.38659635,0.030219916,-0.9217537,-0.38772643,0.030361233,-0.9212744,-0.38502547,0.032380003,-0.9223378,-0.35334402,0.066956654,-0.9330942,-0.35201,0.06842504,-0.9334918,-0.3515242,0.068311095,-0.9336832,-0.35117438,0.06800758,-0.933837,-0.35089076,0.067549326,-0.9339769,-0.3514112,0.067085944,-0.9338145,-0.351472,0.06767599,-0.93374914,-0.35246572,0.06666845,-0.93344694,-0.35173443,0.06654082,-0.9337319,-0.35217166,0.066282354,-0.9335854,-0.35311037,0.066214316,-0.93323565,-0.3517814,0.06767599,-0.9336326,-0.35258007,0.06694226,-0.9333842,-0.3522349,0.06737413,-0.9334835,-0.14478955,-0.0485979,-0.98826826,-0.1442292,-0.04826415,-0.9883666,-0.14386266,-0.048177347,-0.98842424,-0.14375395,-0.048289746,-0.98843455,-0.1437103,-0.048398696,-0.9884356,-0.14375821,-0.04852467,-0.98842245,-0.14387307,-0.048477046,-0.9884081,-0.14494868,-0.049544353,-0.9881979,-0.14455383,-0.049277056,-0.9882692,-0.14421056,-0.049238,-0.98832124,-0.14424808,-0.049297534,-0.98831284,-0.14439908,-0.04936909,-0.9882872,-0.14468542,-0.04962436,-0.98823255,-0.14508477,-0.049818434,-0.98816425,-0.14541149,-0.049823552,-0.9881159,-0.14542605,-0.049668655,-0.9881216,-0.14522344,-0.049045593,-0.98818254,-0.14408441,-0.04838167,-0.988382,-0.14523832,-0.049663533,-0.98814946,-0.14439285,-0.0484855,-0.98833185,-0.14465708,-0.048640408,-0.9882856,-0.14521955,-0.049358852,-0.98816746,-0.14487042,-0.048824247,-0.9882453,0.17933162,0.10105291,-0.97858495,0.1789867,0.101578526,-0.97859365,0.1783125,0.10340361,-0.9785256,0.17738037,0.10410635,-0.97862047,0.17722766,0.104774185,-0.9785769,0.17937884,0.10148021,-0.97853214,0.17975625,0.10108932,-0.9785033,0.17782347,0.10413007,-0.97853756,0.17911355,0.102025256,-0.97852397,0.17867601,0.10357577,-0.9784411,0.19240065,0.126953,-0.97306985,0.19214205,0.12722012,-0.97308606,0.19340648,0.1274534,-0.972805,0.19469357,0.12769176,-0.97251695,0.19477102,0.12744406,-0.972534,0.19403012,0.12711193,-0.9727255,0.14473318,0.122330286,-0.98187965,0.14536732,0.12270498,-0.98173916,0.14511281,0.12215092,-0.9818459,0.14474928,0.121993676,-0.98191917,0.14397345,0.12204361,-0.98202693,0.14339395,0.12187181,-0.9821331,0.14276513,0.121464066,-0.98227525,0.14231394,0.121404074,-0.9823481,0.14347075,0.12235904,-0.98206127,0.15347792,0.12426354,-0.98030764,0.15434858,0.12484442,-0.9800972,0.15460463,0.12457309,-0.9800913,0.15359794,0.123762116,-0.9803523,0.15178141,0.12314306,-0.98071307,0.15121782,0.12306014,-0.9808106,0.15073982,0.12306014,-0.9808842,0.15002693,0.12327497,-0.9809665,0.14895543,0.12352446,-0.98109835,0.14849222,0.12379086,-0.981135,0.15135565,0.12337564,-0.9807497,0.22296871,0.1933138,-0.9554657,0.222532,0.19343089,-0.9555438,0.22237134,0.19363567,-0.9555397,0.22255743,0.19369754,-0.95548385,0.22304624,0.19365743,-0.955378,0.22329217,0.19343592,-0.9553655,0.18239443,-0.48524198,-0.85514474,0.1827164,-0.48507956,-0.8551681,0.18300414,-0.48502284,-0.8551388,0.18319474,-0.48523885,-0.8549754,0.18301499,-0.48519278,-0.8550401,0.18291442,-0.48535663,-0.8549686,0.18301171,-0.48549816,-0.8548674,0.18305773,-0.4856159,-0.8547906,0.1830139,-0.48575452,-0.85472125,0.18293652,-0.48590642,-0.8546515,0.1828851,-0.48607334,-0.8545675,0.1827932,-0.48607334,-0.8545872,0.18237488,-0.4860629,-0.85468256,0.18225956,-0.48627877,-0.85458434,0.18226823,-0.48621625,-0.854618,0.18218008,-0.48607334,-0.85471815,0.18202354,-0.48596457,-0.85481334,0.1819089,-0.4857099,-0.85498244,0.1819124,-0.4854521,-0.85512817,0.18210988,-0.48533285,-0.85515374,0.18270433,-0.4859108,-0.8546987,0.18225586,-0.4861596,-0.85465294,0.18222797,-0.4861121,-0.8546859,0.18291862,-0.4852449,-0.8550311,0.18254417,-0.4859229,-0.854726,-0.3222405,-0.36243013,-0.87453157,-0.32273003,-0.36242536,-0.874353,-0.32280475,-0.36228558,-0.87438333,-0.32283565,-0.3617565,-0.874591,-0.32243806,-0.36143708,-0.87486964,-0.3217975,-0.36140373,-0.8751192,-0.3214395,-0.3616326,-0.8751563,-0.32121763,-0.36209813,-0.8750453,-0.32124206,-0.36224425,-0.8749758,-0.3216382,-0.36230934,-0.8748033,-0.0780421,-0.36090305,-0.92933226,-0.078724295,-0.36075363,-0.9293327,-0.07764577,-0.3603021,-0.92959857,-0.07607825,-0.3599857,-0.92985076,-0.076167986,-0.35947993,-0.930039,-0.0754295,-0.36010814,-0.9298562,-0.07583998,-0.3609364,-0.9295016,-0.07796446,-0.362006,-0.92890966,-0.07868466,-0.36266044,-0.92859364,-0.07991546,-0.36098567,-0.9291409,-0.08002852,-0.3604691,-0.9293317,-0.07915065,-0.3606439,-0.9293391,-0.07643081,-0.36021468,-0.9297331,-0.0788798,-0.36112717,-0.9291745,-0.07864879,-0.36112562,-0.9291946,-0.09981042,-0.31961027,-0.94227767,-0.10031432,-0.31909987,-0.94239706,-0.10036067,-0.3187703,-0.9425037,-0.099614464,-0.31838587,-0.9427128,-0.099045604,-0.3184747,-0.9427427,-0.097908,-0.31962484,-0.9424723,-0.09815818,-0.3200075,-0.94231635,-0.09885838,-0.32057586,-0.94205,-0.099154115,-0.32059044,-0.9420139,-0.08243499,-0.3656987,-0.9270755,-0.08260894,-0.36325914,-0.9280186,-0.0824398,-0.3633069,-0.928015,-0.0816128,-0.36406103,-0.9277925,-0.081682585,-0.36458004,-0.9275825,-0.06487684,-0.2307447,-0.9708491,-0.065155394,-0.23060702,-0.9708631,-0.065723814,-0.22950897,-0.97108495,-0.06539943,-0.22871932,-0.97129315,-0.064999945,-0.2290743,-0.97123635,-0.0645746,-0.23007804,-0.97102743,-0.032068282,-0.24742018,-0.9683775,-0.033026453,-0.24730952,-0.9683735,-0.033079937,-0.24705355,-0.968437,-0.032045227,-0.24673147,-0.96855396,-0.031421993,-0.24602777,-0.96875334,-0.03081834,-0.24584277,-0.9688197,-0.030538393,-0.2462459,-0.9687262,-0.031135697,-0.2472006,-0.96846396,0.344076,-0.14818035,-0.9271754,0.34331703,-0.14794597,-0.9274941,0.3440387,-0.14695309,-0.9273846,0.34414652,-0.14633259,-0.92744267,0.3449379,-0.14572902,-0.92724377,0.34559035,-0.1460696,-0.9269471,0.34578216,-0.14696994,-0.9267333,0.34525454,-0.14754653,-0.92683834,0.22294204,-0.2024685,-0.95357394,0.221484,-0.20219146,-0.9539725,0.22241293,-0.2015855,-0.95388454,0.22278036,-0.20071566,-0.95398223,0.22386092,-0.2005871,-0.95375633,0.22456874,-0.20092097,-0.9535196,0.22352564,-0.20240009,-0.9534519,0.23676935,-0.18695436,-0.9534088,0.23545331,-0.18665807,-0.9537927,0.2355184,-0.18644199,-0.9538189,0.2350224,-0.18554771,-0.9541156,0.23563927,-0.18532163,-0.9540074,0.2373494,-0.18500005,-0.9536457,0.23924686,-0.18522616,-0.9531276,0.2400444,-0.18571861,-0.95283115,0.24039635,-0.18670656,-0.9525494,0.24115667,-0.18662785,-0.95237255,0.24112391,-0.18712018,-0.9522843,0.24060567,-0.18813643,-0.95221514,0.23998933,-0.18809123,-0.9523795,0.23919237,-0.18826357,-0.95254594,0.23818266,-0.18702978,-0.9530419,0.23719575,-0.18687074,-0.9533192,0.32660875,-0.2050467,-0.9226498,0.32552657,-0.20445943,-0.9231624,0.3262039,-0.20379204,-0.9230709,0.32770208,-0.20271726,-0.9227768,0.33391914,-0.19924608,-0.92130286,0.33518738,-0.1988886,-0.92091954,0.33538008,-0.19927773,-0.9207652,0.33544132,-0.2000176,-0.9205825,0.3350024,-0.20072898,-0.9205875,0.3336414,-0.20098111,-0.92102665,0.3334145,-0.2012616,-0.9210475,0.3325789,-0.20182918,-0.9212254,0.3291907,-0.202991,-0.9221866,0.32846388,-0.20430587,-0.9221554,0.32765144,-0.20475139,-0.9223456,0.33061364,-0.20217139,-0.92185754,0.31177688,-0.16905217,-0.9349955,0.31205642,-0.16721076,-0.93523335,0.31459343,-0.16278286,-0.9351646,0.31530347,-0.16252387,-0.9349704,0.31459582,-0.16415498,-0.9349239,0.31429517,-0.1652847,-0.9348259,0.3142963,-0.16677552,-0.9345607,0.31425735,-0.1681736,-0.9343233,0.31368887,-0.1688153,-0.93439853,0.3131367,-0.16833659,-0.93467015,0.3118252,-0.16968884,-0.93486404,0.3510131,-0.1586057,-0.92284024,0.35079855,-0.15856369,-0.9229289,0.350096,-0.15805036,-0.92328376,0.35024795,-0.15695132,-0.9234136,0.35109913,-0.15681498,-0.92311347,0.35147956,-0.15645812,-0.9230293,0.35187292,-0.15631494,-0.9229036,0.35268134,-0.1568722,-0.92250043,0.35329762,-0.15772724,-0.9221187,0.3527039,-0.15832475,-0.9222436,0.3517817,-0.15839536,-0.92258364,0.33414212,-0.15659952,-0.9294222,0.33508787,-0.1563571,-0.92912245,0.33621743,-0.15702032,-0.92860246,0.3360265,-0.15782659,-0.92853487,0.33489165,-0.15788381,-0.92893505,0.3335911,-0.15856203,-0.9292874,0.33330992,-0.15924689,-0.92927116,0.33317807,-0.15934117,-0.9293023,0.3327961,-0.15919806,-0.9294637,0.33161667,-0.15955818,-0.9298234,0.33106992,-0.1588531,-0.9301389,0.33257484,-0.15748827,-0.92983407,0.33369255,-0.1565608,-0.9295902,0.37344015,-0.14477119,-0.916288,0.37452206,-0.14335772,-0.9160687,0.37633944,-0.14291918,-0.9153921,0.37701103,-0.14202161,-0.9152555,0.377375,-0.13927613,-0.9155273,0.3791407,-0.13858068,-0.91490316,0.38003662,-0.13890816,-0.91448164,0.38141194,-0.1408389,-0.9136134,0.38165385,-0.14195919,-0.9133389,0.38308844,-0.14282975,-0.91260225,0.38321295,-0.14371365,-0.9124112,0.38292605,-0.14461266,-0.91238964,0.38179266,-0.14493136,-0.9128139,0.37777817,-0.14383681,-0.91465545,0.37760845,-0.14500898,-0.91454047,0.37713146,-0.14686713,-0.9144408,0.37599173,-0.14780438,-0.914759,0.37447888,-0.14821737,-0.9153126,0.3732717,-0.14974272,-0.9155574,0.37308097,-0.14906354,-0.915746,0.37225702,-0.14900284,-0.9160911,0.37211052,-0.14791898,-0.9163262,0.3810693,-0.14392954,-0.9132746,0.37864816,-0.14363602,-0.9143272,0.36731,-0.1534305,-0.91735625,0.3669618,-0.15336488,-0.9175065,0.3661432,-0.15294044,-0.9179044,0.3664491,-0.15237954,-0.9178756,0.3669566,-0.15088344,-0.91792,0.36772487,-0.15274335,-0.9173047,0.37008217,-0.15234914,-0.91642183,0.36858508,-0.15098797,-0.91725004,0.36869246,-0.15033756,-0.91731375,0.36893773,-0.14992635,-0.9172824,0.36929408,-0.14964996,-0.9171842,0.36832005,-0.14878713,-0.917716,0.36876783,-0.1484449,-0.91759163,0.37050897,-0.14795105,-0.9169698,0.3709772,-0.14857304,-0.91667986,0.37142026,-0.14886127,-0.91645366,0.37187952,-0.14894213,-0.9162542,0.3720316,-0.14931463,-0.91613185,0.3722572,-0.15072164,-0.9158098,0.3712582,-0.15188928,-0.9160224,0.38001925,-0.15174612,-0.9124465,0.38003567,-0.15149337,-0.9124816,0.38100272,-0.15041004,-0.9122575,0.38084218,-0.14911234,-0.9125375,0.38028228,-0.14876013,-0.91282845,0.3799244,-0.14737958,-0.91320133,0.38047898,-0.1464439,-0.9131209,0.38101554,-0.14664285,-0.9128653,0.38270152,-0.14815335,-0.91191566,0.38299796,-0.148932,-0.9116643,0.38092634,-0.15126088,-0.91214865,0.39225265,-0.13808103,-0.9094347,0.39196196,-0.137843,-0.90959615,0.39168623,-0.1370461,-0.9098353,0.39047295,-0.13533401,-0.91061276,0.39022437,-0.1343815,-0.9108603,0.39170206,-0.13391192,-0.91029507,0.39301798,-0.1324743,-0.90993816,0.39430302,-0.13180704,-0.90947896,0.3951703,-0.13295248,-0.9089357,0.39497274,-0.13412137,-0.9088498,0.39328206,-0.13581519,-0.9093313,0.39323607,-0.13685538,-0.90919524,0.3928342,-0.13714741,-0.90932494,0.39322272,-0.14256486,-0.9083232,0.39305368,-0.14213808,-0.90846324,0.39299288,-0.14083548,-0.9086925,0.39379343,-0.13846084,-0.9087108,0.3940837,-0.13867182,-0.90855277,0.39418775,-0.13936053,-0.90840226,0.39416915,-0.14043383,-0.908245,0.3844236,-0.14130282,-0.9122784,0.38408986,-0.14104131,-0.9124595,0.3838022,-0.14058739,-0.9126505,0.38371995,-0.13944824,-0.9128599,0.38402036,-0.13815695,-0.91292983,0.3847177,-0.1371441,-0.91278905,0.3854288,-0.1366747,-0.9125594,0.386669,-0.13688916,-0.91200244,0.3876396,-0.13810134,-0.9114074,0.3875781,-0.13942121,-0.91123265,0.38616067,-0.14120334,-0.91156,0.40771887,-0.12396684,-0.9046533,0.4061526,-0.123552464,-0.9054142,0.4058081,-0.12261882,-0.9056955,0.40785524,-0.12140073,-0.9049398,0.40835723,-0.12208936,-0.9046207,0.40872318,-0.12341039,-0.9042761,0.3759021,-0.15288307,-0.9139608,0.37590197,-0.15227668,-0.9140621,0.3762802,-0.15185723,-0.9139762,0.37701225,-0.15132487,-0.91376287,0.37786296,-0.15121034,-0.9134304,0.3790151,-0.15136364,-0.9129275,0.37892044,-0.15178147,-0.9128974,0.37682757,-0.15269446,-0.9136112,0.33787045,-0.16389944,-0.92681205,0.34158787,-0.16113292,-0.9259341,0.34262696,-0.16106397,-0.9255621,0.3435661,-0.16179726,-0.92508596,0.34381744,-0.16253057,-0.924864,0.34362248,-0.16454336,-0.92458045,0.34340632,-0.1656007,-0.92447203,0.34235516,-0.16740233,-0.9245374,0.34105384,-0.16893797,-0.924739,0.34025273,-0.16958134,-0.9249163,0.33940125,-0.17006347,-0.9251406,0.33697885,-0.1704228,-0.9259597,0.33181342,-0.17057562,-0.9277952,0.32913896,-0.17183843,-0.9285144,0.32638824,-0.17242113,-0.9293771,0.32536677,-0.1721676,-0.9297821,0.3239641,-0.17155635,-0.9303847,0.32369852,-0.1712894,-0.93052626,0.32419166,-0.16964853,-0.93065524,0.32493883,-0.16874808,-0.9305584,0.3260922,-0.16834493,-0.9302279,0.32710654,-0.16657722,-0.93018997,0.32878515,-0.16567124,-0.9297598,0.33166295,-0.16369765,-0.9290871,0.33635205,-0.16364719,-0.9274087,0.34014395,-0.14880055,-0.928526,0.34019315,-0.14840104,-0.9285719,0.3407497,-0.14717901,-0.9285623,0.34168676,-0.14618766,-0.9283746,0.34095994,-0.14482167,-0.9288558,0.34788388,-0.13967441,-0.9270749,0.34894556,-0.1390719,-0.92676646,0.35026848,-0.1387613,-0.9263138,0.35176018,-0.13761005,-0.9259202,0.35319784,-0.13750543,-0.9253883,0.35485017,-0.13636236,-0.9249252,0.355506,-0.13552819,-0.924796,0.35733214,-0.134373,-0.92426056,0.35950252,-0.13233075,-0.9237134,0.3640136,-0.1313002,-0.9220924,0.36364222,-0.13186105,-0.9221589,0.3621849,-0.13314506,-0.92254776,0.3615848,-0.13500802,-0.9225125,0.36009654,-0.13602802,-0.92294466,0.35854056,-0.13756447,-0.9233227,0.35765615,-0.13790546,-0.9236147,0.35726067,-0.13847773,-0.92368215,0.35574734,-0.13987696,-0.92405534,0.3533339,-0.1409587,-0.92481667,0.35084558,-0.14256486,-0.92551744,0.34999204,-0.14268804,-0.92582166,0.34893328,-0.14367318,-0.92606896,0.3441371,-0.14559409,-0.9275624,0.3423955,-0.14735764,-0.9279284,0.37922725,-0.12820071,-0.9163794,0.37976813,-0.1275904,-0.91624063,0.3803446,-0.12730132,-0.9160417,0.3853557,-0.123840034,-0.9144203,0.38621834,-0.121128336,-0.91441965,0.3874249,-0.11999819,-0.9140582,0.39175043,-0.11778124,-0.9125016,0.39441624,-0.11564824,-0.9116256,0.39642707,-0.11509123,-0.9108236,0.39683005,-0.11560088,-0.9105835,0.3966902,-0.116934896,-0.91047406,0.39605635,-0.11773886,-0.9106465,0.39273852,-0.12032636,-0.9117445,0.38919175,-0.12499507,-0.9126368,0.38592452,-0.12747383,-0.91368085,0.3836353,-0.12798259,-0.9145734,0.38250846,-0.12778313,-0.9150731,0.38245094,-0.12809242,-0.9150539,0.38207102,-0.12867561,-0.9151308,0.38041222,-0.1292402,-0.9157421,0.38098723,-0.12721346,-0.9157868,0.38221747,-0.12672654,-0.91534156,0.3845994,-0.124646746,-0.91462916,0.32193565,-0.14974272,-0.9348447,0.3262353,-0.14459744,-0.93416387,0.32700366,-0.14464131,-0.9338884,0.32785913,-0.145019,-0.9335298,0.32871884,-0.14484361,-0.93325466,0.32877684,-0.14561261,-0.9331146,0.32662132,-0.1484871,-0.9334185,0.3273896,-0.14989099,-0.93292487,0.32530487,-0.15581156,-0.932684,0.3234804,-0.15913756,-0.93275696,0.3209173,-0.16111268,-0.9333032,0.32060546,-0.16174184,-0.9333015,0.31809136,-0.16320322,-0.93390715,0.31577638,-0.16658898,-0.9340949,0.31501406,-0.16696206,-0.93428576,0.31488338,-0.16631675,-0.93444484,0.31511635,-0.16488117,-0.93462074,0.31706044,-0.16189489,-0.93448526,0.3172034,-0.15974328,-0.934807,0.31803715,-0.15872023,-0.9346979,0.31813976,-0.15802847,-0.93478024,0.3190056,-0.15577625,-0.93486315,0.32097897,-0.15393583,-0.9344925,0.322101,-0.15363264,-0.93415624,0.32257164,-0.15124227,-0.9343839,0.32205147,-0.15065435,-0.9346583,0.3272705,-0.14498362,-0.9337418,0.32264414,-0.15296906,-0.93407774,0.30859673,-0.18030123,-0.9339484,0.30889577,-0.18002626,-0.93390256,0.3096345,-0.17969264,-0.93372214,0.31264853,-0.1777373,-0.9330918,0.31420052,-0.1771804,-0.9326763,0.31546375,-0.17716022,-0.9322536,0.31569898,-0.17850035,-0.9319183,0.31551823,-0.17925674,-0.93183434,0.31382093,-0.17935055,-0.93238926,0.3123418,-0.17985694,-0.9327883,0.31205133,-0.1814562,-0.9325758,0.3113611,-0.1820864,-0.9326837,0.3113075,-0.18337503,-0.93244904,0.307102,-0.18595639,-0.933332,0.3051141,-0.18677026,-0.9338213,0.30286282,-0.18712182,-0.9344835,0.3015023,-0.18779993,-0.93478745,0.30025205,-0.18751527,-0.9352468,0.2985952,-0.18793212,-0.93569356,0.29742673,-0.18777978,-0.9360962,0.29886767,-0.18697286,-0.93579876,0.29894596,-0.1858375,-0.9359999,0.30127576,-0.18233946,-0.93594086,0.30216718,-0.18144283,-0.9358277,0.3034922,-0.18183835,-0.93532205,0.30530244,-0.18114448,-0.93486744,0.3064878,-0.18131036,-0.9344473,-0.13157064,-0.23445627,-0.9631819,-0.12973958,-0.23285533,-0.9638185,-0.12674557,-0.23315373,-0.96414465,-0.12405267,-0.2338498,-0.9643263,-0.1222234,-0.2337304,-0.96458876,-0.12277095,-0.23478097,-0.96426404,-0.12417161,-0.2359025,-0.96381086,-0.12616321,-0.23839286,-0.9629391,-0.12701854,-0.23853688,-0.9627909,-0.12961419,-0.2381048,-0.96255195,-0.13137655,-0.23860633,-0.9621888,-0.13225177,-0.23657818,-0.9625696,-0.1395665,-0.24272233,-0.9600037,-0.14415836,-0.24270903,-0.9593283,-0.14424941,-0.24230228,-0.95941734,-0.14407964,-0.24154316,-0.9596343,-0.14333473,-0.24107346,-0.9598639,-0.14235803,-0.24095765,-0.96003836,-0.14175235,-0.23987563,-0.96039885,-0.13753186,-0.23865438,-0.9613163,-0.1353957,-0.23894726,-0.96154684,-0.13435243,-0.23950168,-0.9615552,-0.1346225,-0.24034394,-0.9613072,-0.13651514,-0.2419501,-0.96063715,-0.13732195,-0.24195668,-0.9605205,0.013797442,-0.14841296,-0.9888292,0.01357197,-0.14822751,-0.98886013,0.013521849,-0.14806564,-0.9888851,0.013608618,-0.14760382,-0.98895293,0.013757707,-0.14722782,-0.98900694,0.01383515,-0.14729197,-0.9889963,0.013844617,-0.14761397,-0.9889481,0.013793317,-0.14801848,-0.9888884,0.013881614,-0.14840953,-0.98882854,0.2259785,-0.009612814,-0.97408485,0.22564925,-0.009016316,-0.9741669,0.22569638,-0.008673722,-0.97415906,0.2259807,-0.008540808,-0.97409433,0.22641207,-0.008711272,-0.97399265,0.2265222,-0.009140765,-0.9739631,0.22636206,-0.009537835,-0.9739966,0.2912411,0.091975056,-0.9522181,0.2913887,0.0928177,-0.95209116,0.29179966,0.09297901,-0.9519495,0.2924244,0.092681915,-0.9517868,0.29228637,0.0923841,-0.9518581,0.65812534,0.16505933,-0.73459274,0.6576016,0.16517444,-0.7350357,0.65712625,0.16586031,-0.7353063,0.65739286,0.16665354,-0.7348885,0.6579103,0.1664864,-0.73446333,0.6583604,0.16591157,-0.7341899,0.65887547,0.16495422,-0.73394364,0.6592655,0.16411361,-0.73378175,0.65925044,0.1636538,-0.73389804,0.47113335,0.12763596,-0.87277865,0.47099283,0.12786415,-0.872821,0.47093356,0.12815239,-0.8728107,0.4710262,0.12843636,-0.872719,0.471224,0.1286299,-0.8725837,0.47158858,0.12860033,-0.87239105,0.4717936,0.12843636,-0.8723043,0.47164294,0.1280552,-0.8724419,0.47209388,0.12795293,-0.87221295,0.47218177,0.12785232,-0.8721801,0.47205886,0.12772393,-0.87226546,0.47157016,0.12836957,-0.87243503,0.4676061,0.12925868,-0.87443507,0.46733823,0.12934993,-0.8745648,0.46683928,0.1297277,-0.8747753,0.46686387,0.1298367,-0.87474597,0.46729478,0.12995666,-0.87449807,0.46754763,0.12994058,-0.87436527,0.4676389,0.12978847,-0.87433904,0.4677275,0.12934567,-0.8743573,0.3678522,0.11824826,-0.92233515,0.3668964,0.11864089,-0.92266536,0.36695296,0.119350836,-0.9225513,0.36651123,0.12001834,-0.9226403,0.36711544,0.12102175,-0.9222689,0.3688404,0.12148359,-0.9215197,0.36969227,0.120913476,-0.9212532,0.3698384,0.12021716,-0.92128575,0.36932138,0.11983904,-0.92154235,0.36902162,0.118425936,-0.9218451,0.22024016,-0.26147208,-0.93974817,0.22163773,-0.25589898,-0.9409529,0.22309825,-0.25434983,-0.9410278,0.22409904,-0.2526862,-0.9412382,0.2247576,-0.25277522,-0.9410572,0.22531427,-0.25476682,-0.9403868,0.22520113,-0.256291,-0.93999964,0.22284436,-0.26238325,-0.93887985,0.22291219,-0.2656581,-0.9379423,0.22168379,-0.26750126,-0.9377096,0.22064584,-0.26836172,-0.9377086,0.22058785,-0.26944354,-0.93741196,0.21947964,-0.2695059,-0.93765414,0.21772562,-0.26855052,-0.9383369,0.21514551,-0.26859805,-0.9389183,0.2135119,-0.26699856,-0.939747,0.21353686,-0.2662807,-0.939945,0.2138992,-0.26538366,-0.94011635,0.21498628,-0.2611002,-0.9410673,0.21540992,-0.26093563,-0.9410161,0.21641989,-0.25838777,-0.9414872,0.21610922,-0.25773397,-0.9417377,0.21692787,-0.25751498,-0.94160944,0.2175554,-0.25780812,-0.94138443,0.21775554,-0.25985947,-0.9407739,0.21608698,-0.26002893,-0.9411118,0.21901065,-0.26146045,-0.9400387,0.21840052,-0.2611644,-0.940263,0.20938726,-0.27724597,-0.9377055,0.21083234,-0.2742395,-0.93826556,0.2122176,-0.27356905,-0.9381491,0.21309623,-0.27370846,-0.9379091,0.21332024,-0.27443784,-0.9376451,0.21367379,-0.27698722,-0.9368146,0.21250437,-0.2782415,-0.9367089,0.21205239,-0.27814645,-0.9368396,0.21095161,-0.27757502,-0.93725747,0.20975551,-0.27975714,-0.936877,0.20925139,-0.28235134,-0.9362113,0.20839243,-0.2840481,-0.9358896,0.2085535,-0.28427032,-0.9357862,0.20829529,-0.2849353,-0.93564147,0.20701596,-0.28525877,-0.93582684,0.20570725,-0.28399244,-0.9365004,0.20326328,-0.28428996,-0.93694353,0.2020757,-0.28317362,-0.9375383,0.20285398,-0.28225163,-0.9376483,0.20318194,-0.28134555,-0.9378495,0.20421696,-0.2808957,-0.9377596,0.20481412,-0.2800058,-0.9378955,0.20545545,-0.2800516,-0.9377415,0.20790184,-0.27842477,-0.93768674,0.20819911,-0.27760947,-0.9378625,0.20861007,-0.27760947,-0.9377712,0.21036047,-0.2782283,-0.9371966,0.19124895,-0.28892577,-0.93805426,0.19175147,-0.28867778,-0.93802804,0.19309378,-0.28834322,-0.9378555,0.19431427,-0.28709605,-0.937986,0.19482993,-0.28687248,-0.9379475,0.19537959,-0.28635144,-0.93799233,0.19599232,-0.28558552,-0.9380981,0.19627063,-0.28568676,-0.938009,0.1969936,-0.28630576,-0.9376686,0.19711955,-0.28719404,-0.93737054,0.1966452,-0.2884591,-0.93708163,0.19606742,-0.2890988,-0.9370056,0.19556053,-0.28913462,-0.93710047,0.19377233,-0.28882787,-0.93756646,0.19147573,-0.28961754,-0.9377946,0.19651759,-0.2814503,-0.93923724,0.19465443,-0.2812785,-0.9396766,0.19467118,-0.2806455,-0.9398624,0.19507003,-0.2800794,-0.9399485,0.1957634,-0.27951655,-0.9399719,0.19648315,-0.27764717,-0.9403757,0.19708692,-0.2770068,-0.94043815,0.1986215,-0.2786769,-0.93962157,0.19991282,-0.27893218,-0.9392719,0.20079088,-0.27947238,-0.93892395,0.20028712,-0.2802021,-0.93881404,0.19918354,-0.28092843,-0.9388318,0.18920638,-0.3037781,-0.9337665,0.19098021,-0.30140796,-0.93417335,0.19267769,-0.3015721,-0.93377167,0.19303651,-0.3014373,-0.93374115,0.19339521,-0.30145344,-0.9336617,0.1937836,-0.3015754,-0.9335418,0.19502309,-0.30311555,-0.93278456,0.1954842,-0.30420852,-0.9323321,0.19508952,-0.3043156,-0.93237984,0.19304301,-0.30479285,-0.93264985,0.19388723,-0.3053757,-0.932284,0.19145387,-0.3058154,-0.93264264,0.18942547,-0.30566287,-0.9331067,0.18855003,-0.30396494,-0.9338384,0.19354206,-0.3041338,-0.93276155,0.19427723,-0.3040006,-0.9326521,0.2029296,-0.26693285,-0.94210744,0.20187108,-0.26616076,-0.94255316,0.20051691,-0.26359034,-0.94356406,0.20339091,-0.26407534,-0.942813,0.20575435,-0.26642364,-0.9416388,0.20497276,-0.266859,-0.9416859,0.19666456,-0.27516225,-0.94106793,0.19639161,-0.2751409,-0.9411311,0.19569267,-0.27488533,-0.9413514,0.19556604,-0.2738298,-0.9416853,0.19732256,-0.2673764,-0.9431721,0.19775411,-0.26659623,-0.9433026,0.19815393,-0.27027884,-0.94217,0.19698727,-0.27439037,-0.94122577,0.19762577,-0.26539835,-0.94366723,0.19739972,-0.26435643,-0.94400686,0.19756064,-0.26213664,-0.9445921,0.19858953,-0.25859022,-0.9453535,0.19894207,-0.2586264,-0.94526947,0.19909309,-0.25909895,-0.9451083,0.19837578,-0.26419204,-0.94384825,0.21321769,-0.2714421,-0.9385401,0.21294728,-0.27100572,-0.9387275,0.21277682,-0.26967657,-0.93914884,0.21469042,-0.26929912,-0.93882155,0.21502288,-0.27035275,-0.93844265,0.20900829,-0.24719563,-0.9461553,0.20836805,-0.24633834,-0.9465201,0.20820688,-0.24503313,-0.9468942,0.2097734,-0.24432911,-0.9467304,0.21086212,-0.24477366,-0.9463736,0.21130303,-0.24526452,-0.94614816,0.21134362,-0.24668689,-0.94576925,0.21088932,-0.2469132,-0.9458116,0.2105124,-0.24051763,-0.94754195,0.21027917,-0.24035054,-0.9476361,0.2101382,-0.2399667,-0.9477647,0.20941654,-0.23977308,-0.94797343,0.20927335,-0.23930804,-0.9481225,0.20929375,-0.23877014,-0.94825363,0.20943053,-0.23813792,-0.9483824,0.21058674,-0.23699883,-0.9484117,0.21178047,-0.23765278,-0.94798213,0.21199252,-0.23833647,-0.94776314,0.21090211,-0.24038687,-0.9474884,0.16516274,-0.3459828,-0.9235893,0.16465452,-0.34507903,-0.9240181,0.16540417,-0.34444556,-0.9241205,0.16577597,-0.34439272,-0.9240736,0.16703784,-0.34453353,-0.9237938,0.16719802,-0.34533346,-0.9234661,0.16603562,-0.3459716,-0.923437,0.17261851,-0.33625433,-0.9258163,0.17188068,-0.3344672,-0.92660064,0.1740929,-0.3331127,-0.92667556,0.17460676,-0.33099702,-0.9273368,0.17535277,-0.33087316,-0.9272402,0.17603454,-0.3312511,-0.9269761,0.17637655,-0.33341804,-0.92613375,0.17558388,-0.33454743,-0.9258771,0.17411953,-0.33583856,-0.9256862,0.1757532,-0.32537964,-0.9291065,0.1750565,-0.32458168,-0.92951703,0.17575301,-0.32336918,-0.9298082,0.17736983,-0.32219476,-0.9299089,0.17651767,-0.32166058,-0.9302559,0.17782003,-0.32102796,-0.9302263,0.17847389,-0.319473,-0.93063635,0.17939696,-0.31924844,-0.930536,0.18053943,-0.3196829,-0.93016577,0.18093738,-0.3207389,-0.92972475,0.18063693,-0.32268202,-0.92911065,0.18076472,-0.3234433,-0.9288211,0.17641135,-0.32529262,-0.92901224,-0.16561276,-0.32784277,-0.93010294,-0.16729768,-0.3269377,-0.93012005,-0.16750106,-0.32627067,-0.9303176,-0.16691817,-0.3250073,-0.9308644,-0.1664681,-0.3250508,-0.93092984,-0.16568018,-0.32540703,-0.93094593,-0.16495463,-0.3267702,-0.93059725,-0.15539953,-0.24800977,-0.9562124,-0.15612248,-0.24786437,-0.95613235,-0.15760252,-0.24669844,-0.95619106,-0.15882085,-0.24643746,-0.9560568,-0.15680723,-0.24627894,-0.9564299,-0.15626529,-0.24659273,-0.95643777,-0.15457672,-0.24720383,-0.95655435,0.7519469,0.052717153,-0.6571124,0.7516829,0.052792866,-0.6574084,0.75151163,0.05306952,-0.6575819,0.7514841,0.05330522,-0.6575942,0.75165886,0.053392,-0.65738744,0.75190204,0.053278793,-0.65711844,0.7520824,0.05302357,-0.65693265,0.7521125,0.052775845,-0.65691817,0.70695204,0.12811433,-0.69556135,0.7061802,0.12848459,-0.69627666,0.7060556,0.12945808,-0.6962228,0.7055348,0.13054894,-0.69654685,0.70494294,0.13335103,-0.69661534,0.70496404,0.1341956,-0.6964318,0.70562696,0.13266434,-0.69605374,0.70574886,0.13252917,-0.6959559,0.70631605,0.13215165,-0.6954521,0.7069158,0.13097228,-0.69506574,0.7071745,0.12943788,-0.69509,0.562464,0.22932811,-0.79438204,0.56187344,0.22935793,-0.7947913,0.5609925,0.23193684,-0.7946652,0.5583859,0.23463847,-0.7957072,0.55875087,0.2351255,-0.79530716,0.5591896,0.23539059,-0.79492027,0.55970776,0.23552139,-0.79451674,0.56057626,0.23390105,-0.79438317,0.5627607,0.23223531,-0.7933266,0.56302035,0.23027864,-0.79371274,0.56289524,0.2298979,-0.79391176,0.5339967,0.32103026,-0.7821682,0.5334656,0.32164603,-0.7822776,0.53340113,0.32210833,-0.7821314,0.5335911,0.3222923,-0.781926,0.53418356,0.32237783,-0.7814861,0.53425926,0.32148293,-0.78180295,0.5409217,0.28120485,-0.79267114,0.5405996,0.28132176,-0.79284936,0.5404398,0.28166768,-0.79283553,0.5407171,0.2820005,-0.79252803,0.54161286,0.28197274,-0.7919261,0.5416174,0.28152952,-0.79208064,0.5413531,0.28126618,-0.7923548,0.55327857,0.24380672,-0.79651815,0.55247635,0.24459846,-0.79683214,0.55241436,0.24497272,-0.7967602,0.5528509,0.24512886,-0.7964093,0.55402917,0.24469174,-0.7957246,0.554021,0.24423978,-0.7958691,0.5537517,0.24397042,-0.79613906,0.53537273,0.30996192,-0.7856842,0.5346415,0.3103273,-0.78603786,0.5336705,0.3112863,-0.7863184,0.53394544,0.31188145,-0.7858958,0.53424734,0.31159568,-0.78580403,0.5432607,0.26106304,-0.7979436,0.54273117,0.2617615,-0.7980751,0.54252064,0.26257068,-0.7979524,0.54194653,0.2632902,-0.7981054,0.5424635,0.26314715,-0.7978013,0.5435891,0.26244655,-0.7972657,0.5442235,0.26092738,-0.79733163,0.5440587,0.2607323,-0.7975079,0.54336524,0.2606262,-0.7980152,0.5456288,0.25746214,-0.7974976,0.54492426,0.25832182,-0.7977013,0.5449053,0.2598215,-0.797227,0.5452173,0.25983304,-0.79700994,0.5458221,0.25933835,-0.79675704,0.545836,0.25879925,-0.7969228,0.81342393,-0.21534792,-0.5403395,0.81346244,-0.21517318,-0.54035115,0.81367594,-0.21514314,-0.54004157,0.8136374,-0.215318,-0.54002994,0.12079692,0.6776284,0.72541565,0.12084184,0.6795107,0.7236452,0.12071202,0.68021566,0.72300434,0.120322295,0.6812987,0.72204894,0.12028305,0.68175584,0.72162384,0.11959906,0.6822725,0.7212491,0.11895173,0.68222016,0.7214057,0.118687905,0.6812806,0.7223364,0.118837774,0.67962134,0.7238732,0.11912223,0.6790172,0.7243932,0.11861952,0.67809075,0.7253429,0.11815287,0.67831933,0.72520536,0.117419034,0.6785341,0.72512364,0.11665067,0.67858166,0.7252031,0.11607619,0.6782235,0.7256302,0.11500279,0.67745787,0.72651577,0.112786576,0.6769775,0.72731054,0.111598715,0.6762302,0.72818846,0.110888414,0.67464465,0.72976595,0.11029171,0.6741129,0.7303475,0.11006118,0.6737572,0.7307105,0.11042525,0.67358965,0.73081,0.1108548,0.67357266,0.73076063,0.11159271,0.6728064,0.731354,0.11077497,0.67247593,0.7317821,0.11031166,0.6719636,0.7323225,0.11068895,0.67121404,0.73295265,0.111452244,0.6706624,0.73334193,0.11181924,0.669073,0.73473656,0.11139201,0.6686003,0.7352315,0.11152817,0.6682314,0.7355462,0.11220726,0.668123,0.73554146,0.11305978,0.6681591,0.7353781,0.113391295,0.66744804,0.7359725,0.112994134,0.66658455,0.7368157,0.11306041,0.6660304,0.7373065,0.113785826,0.6657138,0.7374808,0.115341716,0.6652393,0.73766726,0.1152987,0.6648205,0.7380515,0.114737414,0.66428745,0.7386187,0.11452011,0.6637745,0.73911333,0.115018554,0.66338944,0.7393816,0.11577801,0.66283125,0.7397636,0.11724399,0.6623136,0.7399963,0.11977724,0.6611143,0.74066275,0.12050742,0.66209775,0.73966515,0.12119346,0.6642804,0.7375931,0.12165401,0.6649541,0.73691005,0.12181971,0.66563684,0.736266,0.12179124,0.66877264,0.7334235,0.12305089,0.6708116,0.7313483,0.12306377,0.67121536,0.7309756,0.12191524,0.6762672,0.726498,0.12163798,0.6766908,0.7261499,0.115590245,0.67766786,0.7262267,0.11236503,0.6696896,0.7340912,0.121526726,0.6681731,0.7340136,0.11225215,0.6703697,0.7334875,0.12112171,0.67707604,0.72587717,0.118909106,0.6783287,0.7250729,0.08804333,0.7378355,0.6692138,0.0893755,0.7383697,0.6684476,0.08876641,0.7385323,0.66834915,0.0881702,0.7404954,0.6662527,0.08858036,0.74204206,0.664475,0.08859071,0.743175,0.6632063,0.08841911,0.74497306,0.66120887,0.089231744,0.74640626,0.6594812,0.08968721,0.7479141,0.65770876,0.09012035,0.7505268,0.6546662,0.090975896,0.7512472,0.65372086,0.09294748,0.75325686,0.65112585,0.09310837,0.7534076,0.65092844,0.092883945,0.754407,0.64980197,0.092246465,0.75454795,0.6497292,0.09130011,0.7548348,0.64952964,0.08895365,0.75518906,0.6494434,0.08577312,0.7556977,0.6492795,0.08481164,0.7564496,0.6485299,0.08428506,0.75645965,0.64858675,0.08203715,0.7560091,0.6493998,0.08107902,0.75616807,0.6493351,0.08049789,0.7561374,0.64944315,0.08000645,0.7561212,0.64952266,0.07968092,0.75676554,0.6488119,0.07916851,0.75693375,0.64867836,0.07838846,0.7570808,0.64860153,0.07792517,0.7570173,0.6487314,0.07669761,0.7565455,0.6494278,0.075050354,0.75803035,0.6478869,0.07463455,0.75835824,0.6475511,0.0744995,0.7586598,0.6472134,0.07406457,0.7592108,0.6466168,0.073133014,0.759758,0.64608,0.072254784,0.75993145,0.6459748,0.071044065,0.76015127,0.6458504,0.070623524,0.76034176,0.6456724,0.06992802,0.7603938,0.6456868,0.06925846,0.76023823,0.6459421,0.068785,0.7598915,0.64640045,0.06749142,0.7598915,0.64653677,0.06711511,0.76015127,0.6462705,0.06678782,0.7602897,0.6461416,0.06588828,0.7604635,0.6460294,0.065463915,0.7608397,0.64562947,0.064569086,0.7608502,0.64570725,0.06345188,0.76072574,0.64596456,0.06271088,0.760531,0.64626616,0.06144115,0.7610232,0.6458085,0.060445376,0.7617625,0.6450305,0.059826583,0.76211464,0.6446721,0.059533175,0.7624191,0.6443391,0.05880229,0.762547,0.64425486,0.057741586,0.7629108,0.64392006,0.056991376,0.7633062,0.64351815,0.056358326,0.76355225,0.643282,0.055488396,0.763675,0.6432119,0.054782517,0.76366234,0.6432874,0.054508794,0.7643266,0.6425213,0.054347478,0.7650844,0.6416325,0.053720854,0.76559067,0.6410812,0.054309838,0.7675668,0.63866395,0.053823378,0.7677601,0.6384728,0.05332872,0.76760226,0.638704,0.052636743,0.76713234,0.63932574,0.052339524,0.76657003,0.6400242,0.052176133,0.7660718,0.64063376,0.04649733,0.76631224,0.64078355,0.046844766,0.7666368,0.6403699,0.04689712,0.7670995,0.6398117,0.04647746,0.76749957,0.6393624,0.04621337,0.76765525,0.63919455,0.046278983,0.7680423,0.6387247,0.04652085,0.76852673,0.6381242,0.046552185,0.7688026,0.63778955,0.045028877,0.76963735,0.6368914,0.0439656,0.7698,0.6367692,0.042945124,0.7698294,0.6368033,0.04216484,0.769923,0.6367423,0.04171748,0.76988435,0.6368184,0.040835883,0.76967597,0.6371274,0.040272493,0.7711506,0.6353777,0.03990796,0.771373,0.6351307,0.038576704,0.77161855,0.63491464,0.03678915,0.7717064,0.634914,0.03598924,0.77263564,0.6338288,0.035770383,0.77343035,0.63287127,0.035134185,0.77419037,0.6319769,0.03482191,0.77438074,0.63176095,0.034269758,0.7747177,0.63137794,0.033353195,0.77457917,0.6315969,0.03226856,0.7741391,0.63219255,0.031618696,0.7740172,0.63237464,0.031371485,0.77397025,0.6324444,0.028374512,0.7761759,0.6298776,0.028591454,0.7766544,0.6292777,0.02827836,0.7770204,0.6288399,0.027816264,0.77768946,0.6280329,0.027665759,0.77821153,0.62739253,0.026816236,0.77787584,0.6278456,0.021006694,0.7770429,0.6290969,0.019439459,0.77643913,0.6298924,0.018410558,0.77588135,0.63061017,0.01774542,0.77515936,0.6315165,0.017443795,0.774274,0.6326101,0.017297842,0.769332,0.63861495,0.017772747,0.76886636,0.6391625,0.017285941,0.7686265,0.6394642,0.016911373,0.76834023,0.6398182,0.010386394,0.76503605,0.6439037,0.0069326777,0.76450455,0.6445811,0.0021076603,0.76270247,0.64674604,0.001431606,0.7615559,0.6480976,0.0012383078,0.76105756,0.6486832,0.0014664335,0.7605017,0.64933425,0.003149363,0.75998956,0.6499277,0.0047304425,0.7598206,0.65011555,0.001546168,0.7592885,0.6507523,-0.00012718314,0.7584782,0.6516984,-0.0018606891,0.75809765,0.6521385,-0.0059218383,0.75875473,0.6513496,-0.008701848,0.75881356,0.65124977,-0.010894962,0.75919366,0.65077364,-0.012933885,0.7591337,0.65080625,-0.014308152,0.7615184,0.64798534,-0.01421298,0.7624445,0.64689755,-0.015413346,0.76275045,0.6465093,-0.017938565,0.7623033,0.64697134,-0.019253217,0.7624533,0.6467567,-0.020960014,0.76248527,0.64666593,-0.021196647,0.76189333,0.6473557,-0.021152254,0.761483,0.6478396,-0.02055593,0.76029414,0.64925367,-0.01923018,0.75828433,0.65164024,-0.018051106,0.7570223,0.65313965,-0.017992994,0.7524783,0.65837127,-0.017052734,0.75123656,0.6598128,-0.021044612,0.7504632,0.6605772,-0.021342507,0.75090516,0.6600652,-0.021949502,0.7512309,0.6596744,-0.022753844,0.7505161,0.66046035,-0.02313046,0.74990416,0.661142,-0.023974419,0.75063044,0.6602872,-0.028198542,0.75066817,0.6600774,-0.032222062,0.75012344,0.6605123,-0.034516558,0.75230765,0.6579071,-0.037099745,0.752884,0.65710676,-0.039874524,0.75256366,0.6573112,-0.04076769,0.7520201,0.6578782,-0.04438531,0.75120336,0.65857685,-0.046709064,0.7513507,0.65824795,-0.052224282,0.7503415,0.65898424,-0.054490354,0.7494169,0.6598524,-0.055068426,0.74838,0.6609802,-0.05495081,0.7479141,0.6615172,-0.05466457,0.7473707,0.6621547,-0.05311395,0.74730563,0.66235435,-0.052406095,0.7474772,0.6622171,-0.050889153,0.7474228,0.6623967,-0.050567463,0.7472966,0.66256386,-0.04985245,0.7471844,0.66274446,-0.05216982,0.74662966,0.66319114,-0.052538298,0.74675095,0.6630255,-0.053096652,0.7465225,0.6632382,-0.052761257,0.74602216,0.66382766,-0.05240666,0.7458218,0.6640809,-0.052545,0.74427336,0.6658049,-0.05391359,0.7441459,0.665838,-0.054539107,0.7436059,0.66639006,-0.051691923,0.742782,0.66753495,-0.051166233,0.7417118,0.66876423,-0.050484054,0.741073,0.66952384,-0.0494953,0.7409173,0.6697699,-0.047639776,0.7413653,0.6694087,-0.041136052,0.74025476,0.6710669,-0.040420648,0.7397607,0.6716549,-0.03985023,0.7398708,0.67156774,-0.039066855,0.73978764,0.6717053,-0.038338263,0.7394561,0.6721122,-0.037825935,0.7395623,0.6720245,-0.0370896,0.73956853,0.6720585,-0.036030162,0.7387064,0.67306364,-0.03486718,0.73846793,0.6733865,-0.033628147,0.7386254,0.67327684,-0.03277313,0.73875576,0.67317593,-0.032152053,0.7384766,0.6735121,-0.032941077,0.73771644,0.6743066,-0.032644164,0.73744076,0.6746225,-0.02923823,0.7362499,0.67607784,-0.02988977,0.73587954,0.67645246,-0.029611105,0.7350573,0.67735803,-0.028810387,0.7348076,0.67766345,-0.027854066,0.7346631,0.6778601,-0.021583783,0.7340303,0.67877364,-0.022758467,0.73444855,0.6782826,-0.024005748,0.7346018,0.67807364,-0.024965951,0.73447573,0.67817557,-0.025461499,0.7340135,0.6786575,-0.026065739,0.7332902,0.679416,-0.02544866,0.73285544,0.6799082,-0.024009256,0.7318016,0.68109465,-0.024912354,0.73040676,0.68255794,-0.024964336,0.7297452,0.6832633,-0.024594584,0.72909164,0.683974,-0.023001334,0.7275909,0.68562555,-0.021454053,0.7255527,0.6878321,-0.016773751,0.72357094,0.6900462,-0.015820721,0.72329146,0.6903616,-0.014930036,0.7232626,0.6904117,-0.013661131,0.7223963,0.6913442,-0.013725529,0.72181857,0.6919462,-0.013406989,0.718434,0.6954659,-0.012969026,0.7169795,0.6969736,-0.012678361,0.71657777,0.697392,-0.0125666065,0.7161931,0.6977891,-0.013566092,0.7165273,0.69742715,-0.014729189,0.7165564,0.6973737,-0.014573942,0.71586883,0.6980826,-0.014264124,0.7155213,0.69844526,-0.008986322,0.71183753,0.7022867,-0.007899569,0.70821893,0.7059487,-0.0071794903,0.7077404,0.7064361,-0.008515135,0.7082592,0.7059011,-0.00940916,0.71097565,0.70315367,-0.010129549,0.711789,0.7023203,-0.011528829,0.71272516,0.70134866,-0.013215732,0.71364695,0.70038086,-0.014095093,0.71132255,0.7027244,-0.014632162,0.7090967,0.70495933,-0.015455543,0.7029814,0.71104026,-0.015141297,0.7032287,0.7108025,-0.013362014,0.70326865,0.7107986,-0.014533275,0.70292085,0.71111953,-0.015487642,0.7016541,0.7123494,-0.020672768,0.6875697,0.72582406,-0.022744007,0.68718034,0.7261307,-0.022740342,0.6867394,0.7265479,-0.022257583,0.6861321,0.72713643,-0.021750813,0.6859076,0.72736347,-0.020671269,0.68559563,0.727689,-0.019838229,0.6855541,0.7277514,-0.01811292,0.6838995,0.72935134,-0.01859499,0.6833372,0.72986615,-0.018873492,0.6829059,0.7302625,-0.018629199,0.68265873,0.7304998,-0.018224642,0.6824675,0.7306887,-0.0177831,0.68241453,0.730749,-0.017481511,0.68247813,0.7306969,-0.016565794,0.6832862,0.72996265,-0.016590089,0.68305033,0.7301828,-0.01639085,0.682759,0.7304598,-0.014997717,0.68226814,0.7309482,-0.011929265,0.68135357,0.73185724,-0.0097440705,0.6812295,0.7320051,-0.00946176,0.6808426,0.7323687,-0.0075097634,0.67942816,0.7337036,-0.0070404643,0.6794669,0.73367244,-0.006161634,0.6794325,0.73371214,-0.005101682,0.67954504,0.733616,-0.0038314592,0.6797657,0.7334193,-0.0032788166,0.67949194,0.73367566,-0.0026299763,0.67925304,0.7338995,-0.0017948186,0.67878693,0.7343331,-0.0010452339,0.6782091,0.7348682,-0.0005280657,0.67802,0.7350433,0.0025820625,0.6784076,0.7346812,0.0032771784,0.6780688,0.7349911,0.0040137633,0.6780732,0.7349834,0.0048387684,0.6781615,0.7348969,0.006641438,0.67798364,0.735047,0.008103045,0.67802626,0.73499304,0.008234371,0.67816776,0.73486096,0.008346174,0.6794469,0.73367727,0.012938542,0.6791717,0.7338654,0.014241599,0.67869866,0.73427874,0.015494061,0.6783281,0.7345958,0.017309502,0.67804,0.73482114,0.018349392,0.67682326,0.7359168,0.018734235,0.6771544,0.73560244,0.022369422,0.67631996,0.7362683,0.022042826,0.67592,0.7366453,0.021948962,0.6756329,0.7369114,0.02483297,0.6746415,0.73772776,0.025149444,0.67420924,0.7381121,0.025615057,0.67376727,0.7384995,0.0262125,0.673703,0.7385372,0.027044356,0.674123,0.73812383,0.030598562,0.6741771,0.73793566,0.03311469,0.6736035,0.7383507,0.034196056,0.67353487,0.73836404,0.034805182,0.6744119,0.7375346,0.035414804,0.67447037,0.73745203,0.036257602,0.6746792,0.73722,0.038220864,0.67516845,0.73667276,0.039295625,0.6749107,0.7368524,0.04058583,0.67470187,0.73697364,0.041348174,0.6747038,0.73692954,0.041153856,0.6750905,0.73658615,0.041444756,0.6844607,0.72787076,0.047911372,0.6878685,0.72425234,0.048838545,0.6885616,0.72353137,0.051185217,0.68953186,0.72244436,0.05147803,0.6893899,0.7225591,0.05197331,0.6891522,0.7227503,0.052652124,0.68840086,0.72341686,0.053448915,0.6880967,0.7236478,0.055822026,0.68768597,0.723859,0.05864589,0.686924,0.7243591,0.0597138,0.68674874,0.7244381,0.06068111,0.68682,0.72429013,0.060635127,0.6871054,0.72402316,0.060892913,0.6871537,0.7239557,0.061354704,0.6870107,0.7240524,0.061718024,0.6872348,0.7238088,0.062184617,0.6874292,0.72358423,0.06299362,0.6874292,0.7235142,0.06403302,0.687652,0.7232113,0.06408703,0.68716735,0.72366697,0.06428453,0.68666387,0.72412723,0.064900726,0.6864401,0.72428435,0.06589678,0.68648475,0.72415215,0.067430586,0.68638873,0.72410196,0.06865278,0.6849098,0.7253864,0.07206737,0.684265,0.72566366,0.073910125,0.68324697,0.7264371,0.076708905,0.6832862,0.72611,0.07782682,0.68292147,0.7263341,0.080141164,0.683767,0.7252862,0.082487784,0.68415624,0.7246558,0.0834104,0.68453526,0.72419214,0.08442333,0.6853313,0.7233213,0.08470266,0.6862573,0.7224101,0.08501613,0.68675244,0.7219026,0.086789586,0.6875734,0.7209094,0.090441115,0.6903665,0.71778446,0.091387905,0.6908331,0.71721536,0.09278722,0.69128275,0.7166022,0.09278322,0.69155365,0.71634126,0.09348088,0.6916577,0.7161501,0.09352009,0.69151855,0.7162793,0.094174996,0.69172907,0.71599025,0.09405417,0.69243217,0.71532613,0.09388205,0.69296014,0.7148373,0.09431571,0.69354117,0.7142165,0.09506381,0.6942242,0.71345335,0.09572338,0.6950806,0.71253073,0.0959625,0.6957016,0.7118922,0.0957588,0.69611347,0.7115169,0.095334284,0.6967251,0.7109751,0.094859645,0.69676906,0.71099544,0.08553421,0.6995641,0.7094322,0.08571702,0.70001453,0.7089656,0.08547713,0.70045197,0.70856243,0.08528653,0.7017123,0.70733726,0.085887715,0.7025461,0.7064363,0.08617044,0.7031111,0.7058395,0.0867386,0.70325774,0.70562387,0.08697714,0.7036018,0.7052514,0.08634402,0.70497215,0.7039595,0.086073965,0.7051915,0.70377284,0.085648105,0.70536125,0.7036547,0.085025705,0.7053806,0.7037108,0.083080426,0.70613587,0.70318544,0.08284051,0.7067734,0.70257294,0.08236082,0.70738566,0.70201296,0.083271705,0.7088978,0.70037824,0.08404274,0.7087788,0.7004066,0.085620984,0.7097622,0.6992186,0.08623477,0.7098487,0.69905543,0.08676828,0.7100617,0.6987729,0.08706986,0.71140105,0.6973718,0.08737946,0.7118022,0.6969236,0.087435305,0.7120374,0.6966763,0.08706772,0.71231616,0.6964373,0.08558462,0.71325636,0.69565845,0.08484117,0.7142353,0.69474447,0.08372522,0.7153313,0.6937516,0.08257982,0.71708757,0.69207364,0.08414486,0.71774185,0.69120634,0.08502522,0.71843934,0.69037354,0.08476756,0.71884054,0.6899875,0.084074445,0.7195475,0.68933505,0.08334308,0.719967,0.6889858,0.08281448,0.7204228,0.68857294,0.08212389,0.72092205,0.68813294,0.08166924,0.7213389,0.68775016,0.08204148,0.72266793,0.68630916,0.08159298,0.7231355,0.68587,0.08130974,0.72380084,0.68520147,0.08135783,0.72425175,0.68471915,0.081129506,0.72436166,0.68463,0.07894842,0.72462124,0.6846102,0.0771737,0.72453904,0.68489957,0.075945385,0.724096,0.68550515,0.07498573,0.7233603,0.68638694,0.07487858,0.7232014,0.686566,0.074958,0.72306895,0.6866969,0.07196921,0.7219377,0.6882052,0.072732285,0.7222201,0.68782854,0.07339441,0.7227186,0.68723434,0.07355621,0.7234209,0.6864778,0.07358877,0.7239144,0.68595386,0.072820164,0.7248761,0.6850196,0.07320972,0.7255673,0.6842459,0.07341138,0.7261787,0.6835753,0.07372195,0.726707,0.6829803,0.075104766,0.7275699,0.6819101,0.07648962,0.72843575,0.68083084,0.076604106,0.7293541,0.6798341,0.07658394,0.7304708,0.6786364,0.07676109,0.73073846,0.67832816,0.07867384,0.7314054,0.67738956,0.07913858,0.7316692,0.6770504,0.07934177,0.73204666,0.67661846,0.080748305,0.7332931,0.67510074,0.08213448,0.73452604,0.6735914,0.08239128,0.73493886,0.6731096,0.082618564,0.735181,0.67281735,0.08259206,0.73538136,0.6726015,0.082377896,0.73553616,0.6724586,0.081629716,0.7356389,0.67243737,0.084357,0.7369617,0.67064995,0.08436776,0.7367313,0.6709017,0.084818974,0.7364834,0.67111695,0.08556342,0.73640156,0.6711123,0.08645838,0.73648804,0.6709026,0.0873216,0.7367485,0.6705047,0.087788075,0.7373677,0.66976273,0.08823226,0.73932415,0.6675439,0.08820353,0.74389535,0.6624499,0.089785516,0.749497,0.6558909,0.08329642,0.7561909,0.64902776,0.08018877,0.7559985,0.649643,0.07183552,0.75986993,0.6460939,0.041411966,0.76964116,0.63713235,0.03629548,0.7719746,0.6346163,0.015756665,0.7670367,0.64140975,0.013972466,0.7660247,0.6426593,-0.013968237,0.76034784,0.6493659,-0.01586918,0.7507177,0.6604325,-0.031102508,0.7493813,0.6614078,-0.042752586,0.75138503,0.65847766,-0.0510812,0.74655765,0.6633569,-0.051519178,0.745685,0.66430396,-0.05094926,0.7446472,0.66551083,-0.03140756,0.73758584,0.6745226,-0.028632801,0.73693407,0.67535794,-0.023371601,0.7350411,0.67761964,-0.02472424,0.7326809,0.68012303,-0.0067688846,0.707114,0.70706713,-0.016891465,0.6949121,0.71889627,-0.01870182,0.68540764,0.72791934,-0.017247347,0.6828181,0.7303848,-0.004333738,0.6798101,0.7333754,0.016584184,0.6782874,0.7346095,0.019273104,0.67742467,0.73533964,0.023943525,0.6750377,0.73739463,0.034224544,0.6738139,0.7381081,0.03721671,0.6750245,0.73685604,0.049421746,0.68915284,0.7229287,0.055389192,0.6878023,0.7237817,0.09318544,0.69177645,0.7160739,0.09208709,0.69625604,0.711862,0.08496721,0.70104235,0.70803964,0.08160178,0.7079475,0.7015351,0.08219633,0.7088852,0.7005181,0.08275598,0.7158147,0.69336915,0.08678434,0.7554164,0.64947253,0.046369642,0.76604444,0.6411129,0.041097503,0.769467,0.63736296,-0.01657807,0.7505888,0.6605616,-0.045665085,0.7412446,0.6696798,-0.030090049,0.7375962,0.6745713,-0.02065436,0.73391914,0.6789227,-0.010765584,0.71371734,0.70035106,-0.014883897,0.70372295,0.71031857,-0.018776655,0.6891615,0.7243645,-0.017904295,0.6845104,0.7287832,-0.016806394,0.68323517,0.73000497,-0.010720754,0.68133676,0.7318916,0.022352505,0.6765666,0.73604214,0.02834325,0.6745723,0.7376645,0.039696567,0.67675865,0.73513395,0.09295121,0.6917063,0.7161721,0.0755551,0.722391,0.6873447,0.07276848,0.72451085,0.6854114,0.08394182,0.7371575,0.6704868,0.07764295,0.7566976,0.64913815,0.06809039,0.7597874,0.6465964,0.062315606,0.76052934,0.64630634,0.028588673,0.77578133,0.63035387,0.0049816687,0.76010203,0.6497847,-0.013559285,0.75978017,0.6500386,-0.049196184,0.7466807,0.6633609,-0.050346795,0.74512655,0.66502005,-0.029258732,0.73741436,0.67480665,-0.013818357,0.7231043,0.6906006,-0.014285613,0.7041884,0.70986944,0.0085726185,0.67989886,0.7332558,0.020132866,0.6773256,0.7354079,0.03440386,0.67421234,0.73773575,0.08144463,0.7085611,0.7009336,0.082445614,0.7166681,0.692524,0.07717032,0.7564719,0.64945745,0.050978128,0.76559836,0.6412959,0.046386804,0.76587015,0.6413198,0.029425425,0.7750705,0.6311893,-0.017934507,0.6850569,0.72826874,0.021962332,0.676933,0.73571694,0.09142031,0.6963887,0.71181816,0.081331216,0.73602897,0.6720466,0.08297569,0.7371518,0.67061335,0.049020503,0.7654267,0.6416533,0.030459015,0.77439964,0.6319632,-0.009678833,0.71285903,0.70124054,-0.007817621,0.70768803,0.70648175,0.08390801,0.70566326,0.70356154,0.08252483,0.7161907,0.6930083,0.08203642,0.7367255,0.6711971,0.046536993,0.7657255,0.6414817,0.008917454,0.68001884,0.7331404,0.070850395,0.68994933,0.720382,0.08922214,0.69718647,0.71131605,0.07475341,0.72167647,0.6881824,0.046847593,0.76559836,0.64161086,0.07032939,0.6933689,0.71714246,0.0009327089,0.6936891,0.720274,0.08684492,0.6981657,0.71064943,0.07167388,0.7484068,0.6593558,-0.0027935172,0.70188266,0.7122871,0.009783277,0.67992824,0.73321337,0.06827417,0.6936729,0.71704715,0.06942074,0.74582034,0.66252,0.039899655,0.7647138,0.6431336,-0.002373604,0.7018387,0.712332,0.038927335,0.67992634,0.73224646,0.08593113,0.6988616,0.7100763,0.067822576,0.69402295,0.71675116,0.07345998,0.7211199,0.6889047,0.06793487,0.7438563,0.66487795,0.03892406,0.7637927,0.6442869,-0.011949569,0.7487244,0.66277367,0.02517468,0.6909614,0.7224531,0.01179042,0.7018377,0.71223927,-0.0012116997,0.71255285,0.7016174,0.0676317,0.69437665,0.7164266,0.07250443,0.7210632,0.6890653,0.06778366,0.7435994,0.6651807,0.03357454,0.7601751,0.6488502,-0.009033045,0.7475609,0.66413176,0.008021241,0.707439,0.7067289,0.023207005,0.6938093,0.71978474,-0.006606678,0.7208106,0.69310063,0.06127806,0.7052867,0.70626885,0.067496315,0.7429663,0.665917,-0.0012261784,0.74151623,0.6709338,0.02045591,0.7479231,0.66347015,0.04164577,0.75426096,0.6552527,0.023266196,0.6945371,0.71908057,0.023246488,0.6942946,0.7193154,0.038989574,0.68091434,0.73132443,0.008069394,0.7079153,0.70625126,-0.006578086,0.7210442,0.6928578,0.057442445,0.7029947,0.7088715,0.067085035,0.74154025,0.66754603,0.00082005054,0.7406838,0.6718533,0.00013735199,0.74096143,0.6715476,0.021824406,0.7473741,0.66404486,0.042331602,0.7539895,0.65552104,0.024261301,0.6960953,0.7175394,0.023930104,0.69557625,0.71805364,0.040299233,0.6830285,0.72927904,0.008741635,0.7089354,0.70521927,-0.0062374156,0.72154474,0.69233966,0.07206997,0.72117066,0.68899834,0.05722058,0.7030499,0.7088347,0.067134626,0.7411685,0.66795367,0.015498913,0.7284414,0.6849327,0.030728059,0.71596193,0.69746274,0.0522276,0.7229168,0.68895835,0.046485517,0.70324945,0.7094218,0.057509396,0.74201506,0.6679119,0.036756903,0.73526514,0.6767822,0.052750494,0.7235944,0.68820673,0.057757758,0.7423439,0.66752493,0.047307897,0.7042951,0.70832926,0.047034077,0.7039467,0.70869374,-0.014761057,0.71711254,0.696801,-0.014309791,0.7181755,0.6957149,-0.015578085,0.71937233,0.69444996,-0.016819376,0.71995044,0.69382167,-0.01682705,0.71973926,0.69404054,-0.01660235,0.71894777,0.6948658,-0.015549676,0.71809125,0.6957752,0.6904379,-0.22469534,0.68761,0.6912127,-0.22455584,0.6868767,0.6913591,-0.223594,0.6870432,0.6919087,-0.22236452,0.6868889,0.6919222,-0.22196236,0.6870054,0.69234604,-0.22073403,0.68697417,0.6916808,-0.22006741,0.68785757,0.69140273,-0.22000253,0.68815786,0.6910458,-0.21904641,0.68882096,0.6903161,-0.21986787,0.6892908,0.6905002,-0.2221452,0.68837565,0.6901071,-0.22317545,0.68843657,0.69015265,-0.22424519,0.68804324,0.6906976,-0.22131255,0.68844575,0.7689045,-0.36437377,0.52537376,0.770353,-0.36389115,0.52358323,0.77090514,-0.36289084,0.5234649,0.77178437,-0.36062488,0.5237352,0.77147746,-0.35871804,0.525494,0.7713625,-0.35683987,0.52693945,0.77089715,-0.3564052,0.52791375,0.76962346,-0.3561695,0.5299273,0.7681348,-0.3568049,0.5316571,0.76706094,-0.3584078,0.53212905,0.76661336,-0.3593193,0.53215927,0.76651007,-0.36190742,0.53055185,0.7667017,-0.3628225,0.52964914,0.76805615,-0.36419913,0.526734,-0.8456575,0.24932206,0.47191298,-0.845355,0.2502867,0.4719444,-0.8452579,0.25230107,0.47104493,-0.845297,0.2528214,0.47069567,-0.8455016,0.25352466,0.46994922,-0.84518784,0.2543546,0.47006515,-0.8451805,0.25468928,0.4698971,-0.84538454,0.25470737,0.46952012,-0.8457222,0.2558874,0.46826872,-0.84634817,0.25671598,0.4666815,-0.84679615,0.25665918,0.46589947,-0.847152,0.25626546,0.46546912,-0.8473769,0.25551987,0.4654696,-0.8473282,0.25295416,0.4669573,-0.8471483,0.25242808,0.467568,-0.8464629,0.2521015,0.4689833,-0.84738624,0.2508816,0.4679689,-0.8474514,0.25054166,0.4680331,-0.84740824,0.24982387,0.46849477,-0.8460358,0.24993686,0.4709088,-0.8459097,0.24913388,0.47156033,-0.84339833,0.27931434,0.45898008,-0.8424063,0.2795009,0.46068528,-0.8410508,0.27993125,0.46289533,-0.84217227,0.28256625,0.45924082,-0.8420169,0.28348494,0.45895958,-0.8423681,0.28412643,0.45791718,-0.84280926,0.2836419,0.45740545,-0.84314585,0.28290713,0.45724022,-0.8432384,0.2816751,0.4578299,-0.84381443,0.28066015,0.45739156,-0.8439797,0.27946085,0.4578208,-0.8420632,0.281725,0.45995718,-0.8462946,0.27500078,0.45624566,-0.84545976,0.2757537,0.45733765,-0.8450817,0.27643842,0.45762292,-0.84440565,0.27944607,0.45704377,-0.84403664,0.2801791,0.45727652,-0.8443013,0.2805358,0.45656872,-0.8445097,0.2811018,0.45583448,-0.84522915,0.28159252,0.45419517,-0.8454445,0.28134465,0.45394793,-0.8458288,0.28068304,0.45364165,-0.8465778,0.2766783,0.45470327,-0.8465526,0.27523345,0.45562622,-0.84353524,0.2737248,0.4620856,-0.8430687,0.27379036,0.46289733,-0.84271896,0.27431569,0.46322316,-0.8426287,0.2749647,0.4630025,-0.84273726,0.27574295,0.4623415,-0.8429838,0.27557427,0.4619927,-0.84350544,0.27488032,0.46145362,-0.8436966,0.2738698,0.46170482,-0.7823172,0.0714711,0.6187663,-0.78222543,0.07217226,0.6188009,-0.782271,0.07373961,0.61855847,-0.78256613,0.07474926,0.6180638,-0.7832034,0.07968583,0.6166381,-0.7835823,0.08081977,0.6160089,-0.7841511,0.08078591,0.6152891,-0.78469306,0.07888215,0.61484504,-0.7857211,0.07647938,0.61383486,-0.7854353,0.077239,0.61410546,-0.78515786,0.07870972,0.6142735,-0.7855532,0.08099907,0.61346984,-0.78596324,0.08224089,0.61277914,-0.7875237,0.08476987,0.6104264,-0.78874385,0.083171695,0.60906947,-0.78824204,0.08500161,0.6094663,-0.7881812,0.08615049,0.6093838,-0.7927905,0.091909766,0.60252464,-0.79400414,0.0945435,0.6005155,-0.79771835,0.09659721,0.59524316,-0.79959923,0.096948415,0.59265673,-0.803338,0.10074763,0.5869395,-0.8041014,0.10051789,0.58593273,-0.8049443,0.098903306,0.5850495,-0.80628115,0.09431362,0.5839654,-0.78982097,0.08752667,0.6070601,-0.7848746,0.07734775,0.6148082,-0.78576976,0.07588875,0.61384594,-0.7961995,0.08510482,0.59901875,-0.79824704,0.074041694,0.5977621,-0.78520465,0.07670284,0.61446756,0.4209173,0.73230785,0.5353072,0.42116508,0.73244137,0.5349295,0.42073664,0.73296565,0.53454846,0.4202687,0.73388094,0.53366,0.42048752,0.734168,0.53309244,0.42045587,0.7344295,0.53275716,0.42031583,0.7346383,0.5325797,0.41985875,0.7347689,0.5327601,0.4191555,0.73542064,0.5324145,0.41919655,0.7357861,0.5318769,0.41903943,0.7362026,0.5314242,0.4184744,0.73857254,0.52857345,0.41968396,0.738719,0.52740836,0.42052633,0.7392306,0.52601886,0.42085588,0.73979676,0.5249582,0.42080602,0.74123836,0.52296084,0.42285883,0.74137276,0.5211112,0.42386445,0.7412429,0.5204785,0.42600325,0.74120003,0.5187907,0.42835885,0.7412875,0.5167219,0.42902702,0.74132985,0.5161065,0.42905837,0.7418301,0.5153611,0.42839456,0.74272954,0.51461726,0.42814904,0.7435569,0.5136258,0.4276776,0.74510777,0.5117678,0.4277744,0.74591714,0.51050633,0.42748767,0.7462769,0.51022065,0.4270246,0.7464284,0.5103868,0.4265083,0.7465038,0.51070815,0.42599866,0.7470088,0.5103949,0.4261159,0.7473396,0.5098125,0.42556092,0.7480192,0.509279,0.42479256,0.7487733,0.5088123,0.42410788,0.74945015,0.5083867,0.42324102,0.7497863,0.50861335,0.42150572,0.7525036,0.5060349,0.42260498,0.75234306,0.5053564,0.4231985,0.75249964,0.5046259,0.42324293,0.75266856,0.5043367,0.42286792,0.7530057,0.504148,0.41928497,0.75512815,0.5039658,0.4201973,0.7554426,0.5027332,0.42039946,0.7561943,0.5014325,0.42061955,0.75699836,0.50003266,0.42052132,0.7575827,0.49922967,0.42021686,0.75821656,0.49852324,0.4196724,0.75891733,0.49791524,0.41798398,0.7603727,0.49711436,0.41791597,0.7608895,0.49638042,0.41750008,0.7612764,0.496137,0.4168971,0.76150125,0.49629897,0.4163225,0.7614339,0.49688435,0.41493684,0.7612217,0.4983663,0.41292888,0.7621113,0.49867436,0.41084757,0.76298463,0.49905786,0.40850195,0.7635924,0.50005275,0.40777144,0.76416993,0.49976674,0.40725678,0.76442605,0.4997947,0.406854,0.76426613,0.50036705,0.4062879,0.76400334,0.5012275,0.4035369,0.7647452,0.5023175,0.40183395,0.76551557,0.5025091,0.40097895,0.7655347,0.50316244,0.40001455,0.7656411,0.50376785,0.39758813,0.7666313,0.5041826,0.39715612,0.7666215,0.5045379,0.39709738,0.7663292,0.505028,0.39755175,0.76553416,0.5058755,0.39048252,0.76845044,0.5069589,0.38965175,0.7693086,0.50629616,0.38853633,0.76985335,0.50632536,0.3872641,0.77064085,0.5061019,0.38650966,0.7707093,0.5065743,0.3859131,0.77045727,0.5074117,0.3854475,0.77007794,0.50834066,0.38516998,0.7699735,0.508709,0.38399786,0.76984024,0.50979567,0.38233718,0.7693086,0.5118423,0.38100898,0.7686728,0.51378417,0.3801079,0.7691817,0.51369,0.37880257,0.7693641,0.5143806,0.37755647,0.7695307,0.5150472,0.37662703,0.77015513,0.51479435,0.37564766,0.77060825,0.5148318,0.37458313,0.7707321,0.5154217,0.3733872,0.7709259,0.5159993,0.3727864,0.7705773,0.5169535,0.37122327,0.77016544,0.5186892,0.37025332,0.77095795,0.5182049,0.36958173,0.7711793,0.51835495,0.36746222,0.7732012,0.51684755,0.36740753,0.77364206,0.5162264,0.36705035,0.77414614,0.51572454,0.36653304,0.7745867,0.51543087,0.36598006,0.7749326,0.5153038,0.3648211,0.77609366,0.5143774,0.36418244,0.77659535,0.5140727,0.3638416,0.7770022,0.51369923,0.36380327,0.77737814,0.5131573,0.36342016,0.7776278,0.51305044,0.36301443,0.7776595,0.51328963,0.36239982,0.7776278,0.51377165,0.36105663,0.7784716,0.51343954,0.3603853,0.7791264,0.5129176,0.35995218,0.7793753,0.5128436,0.35930404,0.7793572,0.51332545,0.35831064,0.7792199,0.51422745,0.35703853,0.779034,0.5153926,0.3559401,0.7793721,0.5156411,0.3545458,0.7797431,0.51604074,0.35187227,0.7801778,0.51721233,0.3520767,0.7805577,0.51649946,0.3518068,0.7808687,0.5162132,0.35057852,0.7817373,0.5157339,0.35011077,0.7824351,0.51499295,0.34949973,0.78319246,0.5142563,0.3478214,0.7845508,0.5133229,0.3487776,0.78469235,0.5124569,0.34984225,0.78495485,0.511328,0.34985784,0.7852251,0.51090217,0.3495129,0.7856455,0.51049185,0.34543732,0.7877919,0.50995785,0.34320894,0.7896836,0.50853455,0.34164563,0.7907052,0.50799954,0.34023684,0.79139024,0.50787824,0.33927187,0.7917012,0.50803924,0.3368385,0.791584,0.50983775,0.33522117,0.79179484,0.5105758,0.3340837,0.7916548,0.51153755,0.3300368,0.7910004,0.51516414,0.32858104,0.7913147,0.5156118,0.32793844,0.79130065,0.5160423,0.32763255,0.7911683,0.51643944,0.32754502,0.79092586,0.5168661,0.32460123,0.788772,0.52198935,0.32354525,0.78907776,0.5221827,0.32335964,0.7890956,0.52227074,0.3215784,0.7891709,0.5232557,0.3195157,0.78914165,0.52456194,0.31873617,0.7885503,0.52592355,0.31819114,0.7886866,0.5260493,0.31727257,0.7888369,0.5263787,0.3165839,0.7885068,0.527287,0.31599763,0.7875062,0.5291308,0.31556895,0.78688294,0.53031266,0.31532165,0.78600913,0.53175354,0.31537116,0.78553367,0.5324264,0.31542006,0.784657,0.5336887,0.31559005,0.78365374,0.5350605,0.31629977,0.78295016,0.53567106,0.31710762,0.7822956,0.53614956,0.3176463,0.78158957,0.5368599,0.31819504,0.78103477,0.53734213,0.31793067,0.7806307,0.5380853,0.3179952,0.7800487,0.53889054,0.3155911,0.78070897,0.53934747,0.31485167,0.7815162,0.53861016,0.3136559,0.78207785,0.53849256,0.31292033,0.78236777,0.53849936,0.3119801,0.7824129,0.5389791,0.3088964,0.78195095,0.54142016,0.30748376,0.7818967,0.54230183,0.30686912,0.7816114,0.5430608,0.3040086,0.7825758,0.5432808,0.3029182,0.7834832,0.54258144,0.30230862,0.7838808,0.54234713,0.30192232,0.7839919,0.5424017,0.30154514,0.7839691,0.5426444,0.30126962,0.7836818,0.5432122,0.30111426,0.78338736,0.54372275,0.30070144,0.783283,0.5441015,0.3001051,0.7830445,0.5447735,0.29976642,0.7827206,0.54542506,0.29968104,0.78188396,0.5466706,0.2987326,0.7821357,0.54682946,0.2977046,0.78307104,0.546051,0.2969365,0.7832862,0.5461607,0.29451644,0.78349644,0.5471685,0.29331818,0.78377867,0.547408,0.29298213,0.78371143,0.5476841,0.29197243,0.78325707,0.548872,0.29030547,0.7836109,0.5492511,0.2901153,0.7834488,0.54958266,0.28921118,0.78249884,0.5514095,0.2888125,0.7833943,0.5503461,0.28777823,0.7837109,0.550437,0.2863173,0.7837596,0.55112916,0.28538498,0.7836299,0.55179673,0.2845162,0.7838406,0.5519461,0.28241614,0.78533906,0.55089355,0.28170854,0.785434,0.55112046,0.27875152,0.7855406,0.55247045,0.27656677,0.7858774,0.5530891,0.27540037,0.7860018,0.55349416,0.27464035,0.78633624,0.5533968,0.2733463,0.78645045,0.55387497,0.26968616,0.78708065,0.55477333,0.26827258,0.78719157,0.5553011,0.266274,0.7872015,0.5562481,0.2631543,0.7873413,0.5575334,0.26124385,0.7872636,0.55854076,0.25776097,0.7868088,0.5607952,0.25703117,0.7868219,0.5611116,0.25593022,0.78675246,0.5617119,0.2547106,0.78658515,0.56250006,0.25450024,0.78627145,0.56303364,0.25224286,0.7835314,0.5678486,0.25116584,0.78395325,0.5677438,0.2503741,0.7840955,0.56789696,0.2495096,0.78414106,0.5682146,0.24898124,0.7840062,0.5686323,0.2487038,0.7838072,0.56902784,0.24922128,0.7828839,0.5700715,0.24917763,0.7828028,0.570202,0.2500889,0.7820534,0.57083094,0.2505923,0.7814652,0.57141554,0.25060433,0.7810029,0.5720419,0.25090468,0.7805401,0.57254165,0.2516278,0.7800498,0.5728925,0.25390384,0.7785304,0.57395405,0.2553874,0.77706385,0.5752817,0.25615293,0.7764912,0.5757144,0.2575826,0.77515984,0.5768695,0.25724223,0.7751227,0.57707125,0.2569884,0.77504784,0.5772848,0.25693113,0.7747855,0.57766235,0.25736248,0.7745048,0.57784677,0.25946066,0.7719627,0.58030486,0.25920373,0.7717183,0.5807446,0.25900218,0.7711473,0.5815924,0.2589308,0.7706251,0.58231586,0.25645304,0.7702611,0.5838918,0.2560851,0.769701,0.58479124,0.2551466,0.7686167,0.58662474,0.2544452,0.7679921,0.5877463,0.25350052,0.7668611,0.58962834,0.25205988,0.76491094,0.59277064,0.25156805,0.7640929,0.59403324,0.25124168,0.7634158,0.59504116,0.2501458,0.7616084,0.5978124,0.2498974,0.760848,0.5988836,0.25029773,0.76022106,0.5995123,0.2515828,0.7587464,0.6008411,0.252181,0.757462,0.60220927,0.25222072,0.75691205,0.6028838,0.25236547,0.75666636,0.6031316,0.25311753,0.7562673,0.6033169,0.2543141,0.75563914,0.60360074,0.25298747,0.7551667,0.6047483,0.25151813,0.7555928,0.6048291,0.25110468,0.75554144,0.6050649,0.2509696,0.75451773,0.6063969,0.2506776,0.7539481,0.60722566,0.25052714,0.75325906,0.60814214,0.25046113,0.75110096,0.6108327,0.24941537,0.7497474,0.6129199,0.25010076,0.7478597,0.61494344,0.25108334,0.74795365,0.6144286,0.25113255,0.74793893,0.6144264,0.25139812,0.7478835,0.61438525,0.25179654,0.7473447,0.6148776,0.25184014,0.7473113,0.61490035,0.25223833,0.746955,0.61516994,0.25267133,0.7464828,0.6155653,0.25318256,0.7461277,0.61578566,0.25526038,0.7455385,0.61564153,0.25628597,0.74470806,0.61622024,0.25744447,0.7443627,0.6161546,0.25752085,0.7443536,0.61613363,0.25770217,0.74439347,0.6160097,0.25841555,0.7444236,0.6156743,0.25862864,0.7442557,0.61578786,0.25938487,0.7438486,0.6159616,0.25976565,0.7434897,0.6162344,0.25981367,0.7431106,0.6166714,0.26010185,0.742681,0.6170672,0.26038945,0.7425286,0.6171293,0.26069388,0.7427272,0.6167617,0.26200575,0.7432212,0.61560965,0.26217622,0.7437182,0.6149365,0.26319474,0.7441311,0.6140012,0.2658833,0.7430279,0.61417884,0.2682146,0.7430963,0.6130814,0.26881352,0.74303246,0.61289644,0.26914227,0.7429418,0.61286205,0.27251834,0.74239445,0.6120329,0.2729768,0.74245554,0.6117544,0.27308932,0.74249953,0.61165076,0.27455354,0.74204665,0.61154485,0.27563795,0.7421066,0.610984,0.278694,0.7423391,0.609313,0.2797548,0.74170095,0.60960394,0.28237042,0.7403453,0.61004573,0.28319505,0.7398398,0.6102767,0.28407338,0.7399143,0.6097779,0.28496298,0.7401677,0.6090549,0.28555548,0.7410753,0.60767215,0.2881885,0.7421021,0.60517097,0.29044104,0.74235564,0.6037815,0.29255247,0.742766,0.60225546,0.29507685,0.74305755,0.60066223,0.2954355,0.7438959,0.5994471,0.29558042,0.7444657,0.5986676,0.29535875,0.7455197,0.5974643,0.2966316,0.74582464,0.5964523,0.2978772,0.74603975,0.5955618,0.29829386,0.74617195,0.5951875,0.2999119,0.7476492,0.5925146,0.3005551,0.74747264,0.59241146,0.30169198,0.74743015,0.5918869,0.30394372,0.747467,0.5906872,0.3046934,0.74817705,0.58940065,0.305484,0.7479791,0.5892425,0.3058801,0.74829686,0.5886333,0.30660325,0.7486982,0.58774614,0.3067808,0.7486134,0.58776146,0.3069324,0.7485495,0.58776367,0.30975246,0.74798644,0.58700055,0.31078705,0.7473951,0.5872069,0.31172624,0.74702746,0.58717686,0.31315312,0.74658936,0.5869748,0.31347695,0.74613905,0.58737445,0.3143145,0.74591774,0.5872079,0.31639767,0.74562764,0.58645713,0.31650934,0.74502707,0.5871597,0.3167533,0.7448292,0.58727914,0.31758368,0.7448576,0.58679444,0.31801406,0.7444128,0.5871258,0.31834263,0.7442011,0.5872161,0.32134098,0.7445397,0.58515006,0.32305676,0.743094,0.58604234,0.32392213,0.74257374,0.58622414,0.32454935,0.7423619,0.5861455,0.32507786,0.742588,0.5855659,0.32858032,0.73823,0.5891107,0.32860962,0.7376353,0.58983886,0.3289871,0.7371558,0.5902277,0.3294569,0.7367543,0.590467,0.32994765,0.73662233,0.59035766,0.331752,0.7358103,0.5903591,0.33256352,0.7352462,0.5906052,0.33353153,0.7348273,0.59058076,0.33509547,0.7335584,0.5912724,0.33513954,0.73287576,0.59209335,0.33541447,0.7324373,0.5924801,0.3365637,0.7313147,0.5932147,0.33680406,0.7309252,0.5935582,0.33722985,0.73062503,0.59368604,0.33884624,0.7299584,0.5935857,0.34082547,0.72931385,0.5932447,0.34270784,0.72687435,0.59515125,0.343144,0.7258411,0.5961601,0.3460284,0.72444975,0.5961853,0.34573877,0.72390497,0.59701455,0.34378806,0.7236927,0.5983967,0.34342957,0.72357625,0.5987433,0.34198388,0.72462654,0.5983004,0.3414441,0.7247581,0.59844935,0.33927503,0.724589,0.59988606,0.33881882,0.7248186,0.59986657,0.33853313,0.724845,0.59999585,0.33762357,0.72471404,0.60066617,0.33712673,0.72497296,0.60063285,0.3370565,0.72408307,0.60174465,0.33661318,0.72392315,0.602185,0.33579785,0.7254341,0.6008203,0.33552802,0.7256623,0.6006956,0.33509108,0.72569746,0.60089695,0.33426347,0.7253386,0.6017906,0.333538,0.7248755,0.60275024,0.33342263,0.7244621,0.6033109,0.33383372,0.7237174,0.603977,0.33442375,0.72282755,0.60471576,0.33576745,0.72147584,0.60558474,0.33570176,0.72088546,0.6063237,0.33591926,0.71994513,0.6073197,0.33530936,0.719081,0.608679,0.33438265,0.71857744,0.6097825,0.33479482,0.71754307,0.6107736,0.33448592,0.7168357,0.6117726,0.3337084,0.7161288,0.6130238,0.3333689,0.71527535,0.6142039,0.33416244,0.7141357,0.6150981,0.33421698,0.7137586,0.61550605,0.33432922,0.71346724,0.61578286,0.33409476,0.7133382,0.6160595,0.33241266,0.7132331,0.61709017,0.3320091,0.7130533,0.6175152,0.3316415,0.71264386,0.6181849,0.33338478,0.7113777,0.6187054,0.33515128,0.7107035,0.6185258,0.33883354,0.7099903,0.61733747,0.33908942,0.71007437,0.6171003,0.33905777,0.7102088,0.61696297,0.33905828,0.71093553,0.61612517,0.3399377,0.71067595,0.6159399,0.34118333,0.71105176,0.6148165,0.34790507,0.7109703,0.6111328,0.34881184,0.7103071,0.61138695,0.34852389,0.71133095,0.6103601,0.34670535,0.7137478,0.6085717,0.3456055,0.71447265,0.6083467,0.34553924,0.71635896,0.6061621,0.347119,0.71608365,0.60558456,0.34784263,0.716331,0.60487634,0.3486654,0.7168856,0.60374457,0.3502072,0.7175181,0.6020986,0.35046762,0.7177223,0.6017036,0.35191768,0.7204317,0.59760535,0.3520139,0.7206161,0.5973263,0.35249195,0.7225631,0.5946865,0.35241178,0.72301537,0.59418404,0.35252282,0.723765,0.59320474,0.35236138,0.72505045,0.59172904,0.3551212,0.7268679,0.5878367,0.35708085,0.7267245,0.586826,0.35781878,0.72692,0.5861339,0.3584715,0.7286973,0.5835225,0.35890108,0.7273506,0.58493686,0.360324,0.72708327,0.5843941,0.36164534,0.726954,0.58373845,0.36247364,0.727171,0.5829538,0.3622843,0.72803164,0.58199656,0.3610206,0.7304737,0.57971746,0.36002755,0.7313926,0.5791762,0.35917008,0.73238856,0.57844955,0.35753754,0.7338821,0.57756734,0.35870913,0.7332224,0.57767874,0.3593963,0.7324849,0.57818705,0.36091533,0.7311392,0.57894355,0.36202103,0.72962344,0.5801642,0.36230162,0.7287819,0.581046,0.3631085,0.7278779,0.5816751,0.36426577,0.72708386,0.5819446,0.36541283,0.7265413,0.5819031,0.36793354,0.72615296,0.5807984,0.369854,0.726762,0.5788135,0.36975774,0.7264786,0.5792306,0.3689104,0.72558784,0.5808851,0.36861622,0.72507334,0.58171374,0.36604753,0.72548693,0.5828189,0.36338288,0.72563475,0.5843006,0.36150843,0.7260345,0.58496624,0.35986644,0.72602636,0.585988,0.36086184,0.72549754,0.58603084,0.36203834,0.7250352,0.5858773,0.36492684,0.72355384,0.5859166,0.36419648,0.72352326,0.58640856,0.3636954,0.7232644,0.5870386,0.36450657,0.7227463,0.5871736,0.36543173,0.7228134,0.5865155,0.36673838,0.7224965,0.5860902,0.37062225,0.72091854,0.58559,0.3724374,0.7203537,0.58513325,0.37537506,0.7209321,0.5825379,0.37690017,0.7208388,0.5816681,0.37918225,0.72146696,0.5794016,0.3801467,0.72086185,0.5795228,0.38229978,0.720038,0.5791306,0.382849,0.72029513,0.5784475,0.38368985,0.7205056,0.5776278,0.38394785,0.7211102,0.576701,0.38504505,0.72186035,0.57502866,0.3879661,0.72063243,0.5746052,0.38910347,0.72042763,0.5740928,0.39156199,0.72008604,0.57284844,0.3932019,0.7189234,0.5731854,0.39385507,0.71906024,0.57256484,0.39716285,0.7180329,0.57156837,0.3979449,0.71679807,0.57257354,0.39985412,0.7160423,0.5721888,0.40037203,0.7160995,0.571755,0.39838177,0.7178688,0.57092583,0.39639148,0.72226846,0.56674695,0.39714387,0.7225719,0.5658326,0.39752135,0.72466063,0.56288874,0.39891535,0.7221488,0.5651263,0.39781985,0.7206238,0.5678386,0.3982378,0.72059953,0.5675764,0.39884236,0.7208642,0.56681526,0.3992408,0.7213879,0.5658678,0.39950418,0.7218074,0.5651464,0.39962175,0.7239479,0.5623184,0.40360305,0.72737515,0.5550045,0.4054049,0.7271201,0.5540246,0.40612677,0.7272769,0.55328953,0.40926674,0.7285397,0.5493001,0.41066217,0.7279451,0.54904693,0.41112962,0.72926897,0.54693615,0.41314936,0.7303689,0.5439383,0.4143033,0.73036367,0.5430669,0.41500336,0.73224056,0.53999627,0.41692576,0.7324336,0.53825074,0.41752067,0.7324935,0.5377078,0.41849822,0.73703605,0.53069496,0.4220071,0.7500096,0.50930893,0.4188841,0.75480014,0.5047899,0.41000307,0.7630144,0.49970654,0.4052776,0.76407427,0.50193685,0.3821427,0.76879984,0.5127512,0.38174984,0.7683866,0.51366246,0.37214917,0.76991206,0.51840174,0.36752707,0.7728547,0.51731956,0.35217744,0.7798167,0.51754904,0.3512235,0.78111994,0.51623034,0.34859836,0.78377974,0.51397324,0.33249062,0.79075736,0.51395804,0.3316813,0.7907177,0.5145415,0.3279859,0.7892343,0.5191671,0.31068465,0.78215164,0.5401054,0.29590437,0.7832989,0.5467023,0.29003987,0.7829247,0.5503687,0.2805837,0.78536016,0.55179906,0.26045063,0.78705484,0.55920494,0.2576326,0.7757464,0.57605815,0.2511596,0.75506896,0.60563165,0.25056466,0.751783,0.6099505,0.25403705,0.7459796,0.6156132,0.26250276,0.7441647,0.6142567,0.2686644,0.7430553,0.6129342,0.27654988,0.74242073,0.6101898,0.29831684,0.7465701,0.5946765,0.30846846,0.74837154,0.58718586,0.3125707,0.7468853,0.5869088,0.31566525,0.74592453,0.58647424,0.3171254,0.745035,0.58681715,0.31866205,0.7448974,0.58615893,0.328453,0.7391445,0.588034,0.33411008,0.73480475,0.59028167,0.33619013,0.73191893,0.59268105,0.34216195,0.7280573,0.5940183,0.34120253,0.72437334,0.59905267,0.34011334,0.7242653,0.59980226,0.33823305,0.724616,0.60044163,0.33384606,0.71469027,0.61462563,0.33860758,0.7109205,0.6163902,0.34665734,0.71166813,0.6110296,0.35805246,0.72823197,0.58436006,0.38349265,0.7219966,0.57589436,0.38998422,0.7205642,0.57332325,0.39548862,0.71906024,0.5714377,0.39558023,0.7216381,0.5681151,0.399186,0.7227198,0.5642044,0.4070404,0.7281624,0.55145043,0.40803128,0.7285227,0.550241,0.4118398,0.7298786,0.54558706,0.42038095,0.7334362,0.53418267,0.41922736,0.7351607,0.53271675,0.42137066,0.7414505,0.5222049,0.4262204,0.7466705,0.51070476,0.42153978,0.7533106,0.50480425,0.41854334,0.7596294,0.4977796,0.40933535,0.7631427,0.5000579,0.3975361,0.76536417,0.506145,0.3922266,0.7672668,0.5074051,0.37836868,0.7691817,0.51497245,0.36190796,0.77781534,0.51383454,0.35190535,0.7799431,0.51754355,0.34803307,0.7841807,0.51374465,0.33828345,0.7915715,0.5088997,0.32567263,0.7885116,0.52171534,0.30587357,0.7813306,0.5440256,0.3052176,0.7816624,0.5439174,0.29260436,0.7833143,0.5484537,0.28951082,0.7823688,0.5514368,0.28486964,0.78366536,0.55201256,0.2594711,0.78692555,0.5598419,0.25788635,0.7754403,0.57635665,0.25201383,0.7580793,0.6015022,0.2542302,0.7549471,0.6045013,0.32550502,0.7428579,0.58498603,0.328247,0.7400015,0.5870704,0.33478597,0.7342849,0.5905456,0.341537,0.7287585,0.5935179,0.34079567,0.7241577,0.59954476,0.3368301,0.72389436,0.60209835,0.33873594,0.7103929,0.6169278,0.34278613,0.71206194,0.6127524,0.3446091,0.71226716,0.6114901,0.35209155,0.72599876,0.5907261,0.36559623,0.72374326,0.585265,0.41948166,0.73487353,0.5329128,0.41812804,0.7379747,0.52968127,0.42139405,0.7522088,0.50656587,0.4158108,0.76117253,0.49771255,0.35749292,0.7790025,0.51512516,0.31703708,0.78015,0.5393083,0.29925376,0.7819435,0.5468195,0.2898791,0.78241867,0.55117244,0.25247717,0.7835992,0.567651,0.2579611,0.7740922,0.5781326,0.3259047,0.7427306,0.58492506,0.36355245,0.7249231,0.5850779,0.36566228,0.72401726,0.5848847,0.39711222,0.7191864,0.57015157,0.42129877,0.75171727,0.5073741,0.39732862,0.7652342,0.50650436,0.39559418,0.76564276,0.50724393,0.3276155,0.7889013,0.5199065,0.3263013,0.7884942,0.52134854,0.2544306,0.7855838,0.5640241,0.25903267,0.7729223,0.5792178,0.27759895,0.7425269,0.609584,0.32797703,0.7405114,0.58657813,0.33452854,0.73457116,0.59033537,0.33858582,0.71063036,0.61673665,0.345139,0.71596646,0.6068535,0.36532855,0.72453254,0.584455,0.39903733,0.7231408,0.56377006,0.4202591,0.75372916,0.50524706,0.36826342,0.7720651,0.5179745,0.32699424,0.788554,0.5208238,0.2535377,0.7843938,0.5660786,0.25445357,0.755155,0.6041476,0.32713225,0.7417701,0.58545846,0.39863715,0.72381914,0.5631823,0.40200064,0.7268662,0.5568313,0.42163977,0.7508314,0.5084015,0.3968125,0.7651464,0.5070413,0.25446132,0.75542754,0.6038035,0.3194269,0.74482864,0.58583,0.345102,0.71547955,0.60744846,0.39635825,0.7202313,0.5693567,0.4194594,0.7542464,0.50513965,0.2739589,0.7789164,0.5641239,0.2817535,0.74589276,0.6035387,0.3352562,0.77993274,0.5284962,0.2745807,0.77766746,0.5655429,0.26150987,0.75821966,0.5972567,0.28519356,0.746419,0.60126805,0.40833598,0.73165464,0.5458417,0.40795922,0.7520572,0.5176671,0.34473038,0.7751308,0.5294651,0.28919598,0.7764979,0.55983627,0.28283608,0.76045245,0.5845646,0.34591997,0.72419065,0.59656286,0.3485074,0.7225009,0.5971055,0.39819264,0.7452925,0.53477263,0.34519604,0.77500534,0.5293453,0.28944173,0.77602166,0.56036943,0.28376052,0.76029253,0.58432466,0.39166874,0.7440049,0.54134303,0.39481434,0.75471836,0.5239484,0.38789394,0.7330967,0.5586658,0.35770467,0.7726508,0.5244599,0.3379109,0.77636313,0.53204936,0.377348,0.7689118,0.5161232,0.31382734,0.76444083,0.5631541,0.29897502,0.7623706,0.57393813,0.37892842,0.74976856,0.5424577,0.3814533,0.7360375,0.5592336,0.38850492,0.75755453,0.5245713,0.36860391,0.7418774,0.5601331,0.3321893,0.7526119,0.5685294,0.3251976,0.7665052,0.5538198,0.35484552,0.7568213,0.5489137,0.33630368,0.7685616,0.54425436,0.3763984,0.7609995,0.52839756,0.3881002,0.7574878,0.5249672,0.38823515,0.75751,0.5248352,0.37864694,0.74972343,0.54271656,0.36845744,0.74185455,0.56025976,0.34171632,0.7497611,0.56664646,0.33853996,0.75071293,0.5672925,0.3611032,0.7549362,0.54742646,0.37947622,0.7600648,0.52754086,0.36862007,0.7212126,0.586491,0.36687896,0.7218074,0.5868508,0.36258936,0.7226361,0.58849466,0.36183625,0.7230054,0.5885047,0.3605928,0.7238485,0.5882314,0.3612367,0.7230466,0.58882225,0.3619204,0.72245765,0.5891253,0.3636105,0.7219301,0.5887311,0.36709088,0.7213714,0.58725435,0.32313648,0.78936094,0.52200776,0.32183033,0.7903759,0.52127844,0.3211589,0.79081994,0.521019,0.3186161,0.7936982,0.5181959,0.31879103,0.79384387,0.51786506,0.31735018,0.79476434,0.5173378,0.31681252,0.79546005,0.5165976,0.31697175,0.79580593,0.51596695,0.316782,0.7960995,0.5156305,0.3162312,0.79651135,0.5153324,0.31493866,0.7971817,0.5150873,0.31361267,0.7979359,0.5147284,0.31268448,0.7985283,0.5143743,0.31216365,0.79881084,0.5142519,0.31223962,0.79927456,0.5134848,0.31222445,0.80009276,0.5122182,0.3153083,0.8005659,0.50958306,0.31584933,0.80017555,0.509861,0.31679186,0.7997496,0.5099446,0.3187452,0.7995741,0.5090018,0.3195008,0.799592,0.5084996,0.32018772,0.79998183,0.5074533,0.32112533,0.8008421,0.50550014,0.32215512,0.802077,0.5028802,0.32262424,0.80215436,0.50245595,0.32241076,0.8025201,0.50200874,0.32201403,0.80301964,0.50146425,0.32161543,0.8033182,0.50124186,0.31805983,0.8050728,0.5006953,0.31801334,0.8054457,0.50012475,0.31770775,0.8058551,0.4996592,0.31486386,0.806767,0.49998778,0.31292835,0.8069281,0.50094205,0.3107443,0.807068,0.50207496,0.31066623,0.80752665,0.50138533,0.31044108,0.8083497,0.500197,0.3100605,0.809025,0.49934065,0.30973455,0.80933195,0.4990454,0.309251,0.8095901,0.49892652,0.3074156,0.81015605,0.49914205,0.30321428,0.81199896,0.49871713,0.30201226,0.8130159,0.49778885,0.3010336,0.8136387,0.49736392,0.29967028,0.8142887,0.49712342,0.29961252,0.81523836,0.4955994,0.29948285,0.8153839,0.4954383,0.29904568,0.8156177,0.4953175,0.297512,0.8160962,0.49545294,0.2945752,0.8183001,0.49356902,0.29470453,0.81855816,0.49306363,0.294851,0.81965715,0.49114668,0.29457623,0.82003,0.490689,0.29404804,0.82052714,0.49017444,0.29271975,0.8213826,0.48953632,0.29177535,0.82193244,0.48917705,0.2914521,0.8224447,0.48850837,0.2915782,0.8227437,0.48792928,0.29163527,0.8231107,0.48727572,0.29076025,0.82437664,0.48565593,0.29041344,0.8248177,0.48511413,0.29001018,0.82507783,0.48491302,0.2897056,0.8251876,0.4849083,0.28846094,0.8253315,0.48540512,0.28771275,0.82566005,0.48529053,0.28732243,0.82576627,0.48534098,0.28674352,0.8261011,0.4851134,0.28529924,0.82677436,0.48481804,0.28500545,0.8269512,0.48468915,0.2826952,0.8275239,0.48506463,0.28114092,0.8274377,0.48611382,0.28018025,0.8275243,0.48652083,0.279803,0.8273975,0.48695338,0.27907705,0.82679015,0.48839948,0.27857396,0.8267835,0.48869795,0.2782414,0.82660127,0.48919532,0.27545342,0.82742095,0.48938727,0.2753367,0.8278749,0.48868483,0.2750999,0.8281798,0.48830152,0.27473208,0.828439,0.4880687,0.27374193,0.82872385,0.48814154,0.27169913,0.82924384,0.48839965,0.27122006,0.82925004,0.48865536,0.27063882,0.82905805,0.48930296,0.26974818,0.8284767,0.49077713,0.2684407,0.8290633,0.4905035,0.26756886,0.8296399,0.4900046,0.2667355,0.8299343,0.48996043,0.265413,0.82990533,0.49072713,0.2653008,0.829883,0.49082556,0.2645882,0.8295828,0.49171683,0.26282287,0.8304298,0.49123362,0.26254523,0.83045787,0.49133468,0.261894,0.8303363,0.49188733,0.26111513,0.8297802,0.4932379,0.26027954,0.82846665,0.49588057,0.26002985,0.82817495,0.4964984,0.26025796,0.8271706,0.4980508,0.25916255,0.82711506,0.49871382,0.25886747,0.827139,0.49882734,0.25785345,0.8271189,0.4993856,0.25543895,0.8273803,0.50019276,0.2546852,0.82720745,0.50086254,0.25387335,0.8260392,0.5031974,0.2526332,0.82589793,0.50405264,0.25247678,0.8257788,0.50432616,0.25323236,0.8236132,0.5074787,0.25328013,0.822858,0.5086786,0.2533627,0.82256585,0.5091097,0.25385427,0.82232296,0.5092572,0.25558013,0.82220805,0.5085791,0.25643665,0.82161486,0.50910634,0.25604972,0.8213972,0.5096521,0.25594655,0.821191,0.510036,0.25600055,0.82045305,0.5111951,0.2531768,0.8205471,0.5124491,0.25290546,0.82039654,0.5128239,0.2529481,0.82005334,0.5133515,0.25306112,0.81965613,0.51392984,0.2525125,0.81877446,0.51560235,0.2514501,0.81862277,0.5163619,0.2506755,0.8183432,0.51718104,0.2505016,0.81747925,0.51862955,0.25068682,0.8163178,0.52036655,0.25120592,0.8154919,0.52141005,0.25155815,0.8150305,0.5219614,0.25165716,0.8147662,0.5223262,0.25147107,0.8144781,0.5228649,0.25134236,0.81371397,0.5241151,0.25137046,0.8128675,0.52541345,0.25146165,0.8124076,0.5260807,0.25168422,0.8121924,0.52630657,0.2522331,0.8121864,0.52605295,0.2519573,0.810811,0.5283021,0.25199038,0.81121826,0.52766067,0.25148696,0.8117263,0.5271193,0.2509077,0.81200993,0.5269585,0.25032705,0.8115864,0.5278863,0.24952565,0.8115869,0.5282647,0.24878752,0.8112093,0.529192,0.24804124,0.8103798,0.53081083,0.24633229,0.8105036,0.5314173,0.24608095,0.810236,0.53194165,0.24640115,0.8087569,0.53404003,0.24499542,0.80881006,0.534606,0.24394862,0.8083171,0.53582877,0.24175297,0.8081952,0.5370065,0.2411521,0.8085082,0.53680545,0.24036416,0.80845255,0.53724253,0.23954597,0.8083151,0.53781444,0.23890257,0.8083904,0.53798753,0.23824619,0.80835676,0.53832906,0.2353868,0.8081937,0.5398296,0.23457323,0.8083989,0.5398765,0.23756889,0.8048857,0.5438014,0.24517737,0.7950947,0.5547183,0.24225962,0.79390085,0.5577022,0.24178578,0.7935255,0.55844146,0.24121743,0.79259163,0.5600113,0.24074015,0.79162776,0.56157786,0.24068424,0.79129803,0.5620663,0.24073453,0.7910807,0.56235063,0.24111064,0.7907636,0.56263536,0.24265322,0.79024535,0.5627004,0.24415521,0.78982896,0.5626353,0.24473536,0.7895168,0.56282127,0.24589136,0.78911704,0.5628781,0.24713123,0.7877205,0.5642894,0.24721414,0.78671724,0.56565106,0.24778195,0.7859575,0.56645817,0.24760099,0.7854509,0.5672395,0.24752481,0.78488725,0.56805235,0.247973,0.78389823,0.5692213,0.3205557,0.7910614,0.5210239,0.3193064,0.79256666,0.5195012,0.31210393,0.8005726,0.51154155,0.32105696,0.80146587,0.50455415,0.32169643,0.801905,0.50344795,0.3189782,0.80434424,0.5012817,0.30483,0.8110224,0.4993209,0.29979396,0.8140323,0.49746853,0.2892857,0.82512456,0.48526615,0.27957952,0.8270327,0.487701,0.27745086,0.82594645,0.4907478,0.2756412,0.82692724,0.49011558,0.2691974,0.8286017,0.49086857,0.2648862,0.82954997,0.4916118,0.26021707,0.82706857,0.49824154,0.25421837,0.82618904,0.502777,0.2527421,0.8253368,0.50491637,0.25312448,0.8120119,0.52589417,0.24851501,0.81060344,0.53024745,0.24645811,0.80899894,0.533647,0.242672,0.80791754,0.53700984,0.23707381,0.8081159,0.5392075,0.32013658,0.79135484,0.52083594,0.31849667,0.8046788,0.50105083,0.29153422,0.8222134,0.48884857,0.25301918,0.8245854,0.50600415,0.25663358,0.8218766,0.5085844,0.2529939,0.8191848,0.51471394,0.2521723,0.8106513,0.52844447,0.31448075,0.800741,0.5098192,0.29527023,0.81697637,0.49534345,0.29475164,0.8177575,0.49436238,0.27657235,0.82634264,0.4905768,0.24550307,0.79551166,0.553976,0.31353208,0.8007574,0.5103776,0.29503658,0.8172053,0.49510497,0.25374797,0.8116725,0.52611756,0.25287083,0.8104497,0.5284199,0.31228533,0.80069,0.51124686,0.3114651,0.80687726,0.5019349,0.25636485,0.82207805,0.50839436,0.24123026,0.8014725,0.54722005,0.2467729,0.7884444,0.56343454,0.25385845,0.8104557,0.52793705,0.24279568,0.79981154,0.54895514,0.24642354,0.7887578,0.5631488,0.25414,0.8112801,0.5265335,0.2662576,0.81868005,0.5087925,0.25438938,0.81062436,0.52742213,0.2939668,0.8166165,0.49671024,0.25439656,0.81085736,0.52706045,0.2663956,0.8184725,0.5090541,0.24354105,0.7989247,0.5499156,0.24526465,0.796216,0.553069,0.29272977,0.7865452,0.54374254,0.29466948,0.8125989,0.5028448,0.26639995,0.8183581,0.5092357,0.24444734,0.7976353,0.5513832,0.2449999,0.7967277,0.5524491,0.29203397,0.7866007,0.5440363,0.29632738,0.8064378,0.51171106,0.26219156,0.8120298,0.52140504,0.28952426,0.7866757,0.5452679,0.2884715,0.7992067,0.52730715,0.27998906,0.79185814,0.5427401,0.20315006,0.82201153,0.53200287,0.2037284,0.8219344,0.5319009,0.20404585,0.8226453,0.53067875,0.20400396,0.82400495,0.52858126,0.20369609,0.8247994,0.52745974,0.20343727,0.82527614,0.5268136,0.20336245,0.8249469,0.52735794,0.20361705,0.8231557,0.53005165,0.20363334,0.8238968,0.52889264,0.22484188,0.8131578,0.5368617,0.22550246,0.81266147,0.537336,0.2258271,0.8130581,0.53659916,0.22815242,0.8123674,0.5366616,0.22837989,0.8121263,0.5369298,0.22883075,0.81207806,0.5368107,0.23418543,0.8090781,0.53902674,0.23439936,0.8085955,0.53965753,0.24919473,0.82659405,0.5046229,0.24817015,0.82719934,0.5041357,0.24653994,0.82802975,0.5035721,0.24555053,0.8284528,0.50335956,0.24408476,0.82898223,0.50320077,0.24151793,0.8300593,0.50266355,0.24067973,0.8303059,0.5026583,0.23383777,0.8322018,0.50275254,0.23303525,0.83290374,0.50196207,0.23241253,0.8330292,0.5020426,0.2319116,0.8328816,0.5025189,0.23135342,0.83274055,0.50300974,0.23036817,0.8319182,0.50481945,0.22995363,0.8317999,0.5052032,0.2290271,0.83178955,0.505641,0.22695495,0.8316078,0.5068727,0.22577612,0.8319082,0.50690615,0.22384584,0.83223724,0.5072221,0.22287609,0.83228916,0.5075637,0.22204724,0.83228165,0.5079392,0.21815585,0.8326037,0.5090964,0.2176878,0.8322509,0.5098729,0.21704112,0.8321871,0.5102526,0.21605615,0.8327321,0.50978136,0.21514083,0.83288676,0.5099157,0.21268813,0.83268064,0.5112795,0.2106162,0.83285236,0.5118572,0.20802443,0.8329863,0.5126984,0.20768373,0.8329288,0.5129299,0.20528726,0.8322056,0.51506406,0.20465563,0.83209497,0.5154939,0.20227012,0.8308692,0.51840436,0.2004525,0.8297208,0.5209436,0.20076771,0.8292615,0.5215532,0.20192996,0.8272123,0.52435124,0.20394799,0.82528824,0.5265972,0.20540987,0.82368135,0.52854127,0.20564808,0.82257897,0.53016293,0.20635165,0.8218577,0.53100747,0.20638302,0.8217873,0.53110427,0.20695412,0.8217907,0.53087676,0.20774554,0.82190084,0.5303968,0.20849617,0.82149196,0.5307356,0.20969866,0.8211025,0.5308646,0.21106942,0.82075405,0.53086007,0.21315792,0.82015914,0.53094506,0.21519482,0.81978893,0.53069514,0.2158248,0.81974596,0.53050566,0.21772724,0.8197948,0.5296521,0.21979581,0.8197435,0.5288765,0.22083747,0.8188586,0.5298125,0.22207685,0.8184392,0.52994263,0.22345334,0.81753176,0.530764,0.22345912,0.8154574,0.5339431,0.22360657,0.8147529,0.5349559,0.22394693,0.8140447,0.5358908,0.22651362,0.8130045,0.53639096,0.22788532,0.8125756,0.5364599,0.23375863,0.8098267,0.538087,0.23705338,0.83077484,0.50360584,0.2357134,0.8309882,0.50388265,0.21433733,0.83270186,0.5105557,0.22321108,0.81786144,0.53035784,0.22970687,0.8118945,0.5367142,0.2519991,0.8258268,0.5044864,0.22742254,0.81275874,0.53637874,0.23313542,0.81048614,0.53736407,0.23098591,0.81147534,0.5367991,0.23203196,0.8110688,0.5369624,0.25054854,0.82613575,0.50470304,0.22711007,0.8259282,0.51600736,0.22562528,0.82384056,0.5199808,0.22551516,0.82341474,0.5207025,0.22329186,0.8199926,0.52702266,0.22557876,0.82284296,0.521578,0.4070254,0.68777883,-0.6010746,0.4071393,0.6878419,-0.6009252,0.40728056,0.68782085,-0.6008535,0.40733057,0.68772686,-0.6009273,0.4072452,0.6876427,-0.60108143,0.40726513,0.68750656,-0.6012236,0.40727636,0.6873388,-0.60140777,0.4068466,0.6874125,-0.6016144,0.40671095,0.68742305,-0.6016941,0.40660885,0.68766373,-0.601488,0.40663555,0.68781036,-0.6013023,0.40682822,0.6877893,-0.60119605,0.40712026,0.68737036,-0.60147744,0.40132985,0.68987125,-0.6025048,0.40101507,0.6899404,-0.6026352,0.40098435,0.6901772,-0.6023844,0.40113565,0.6902191,-0.6022356,0.40134963,0.69027466,-0.6020294,0.40171608,0.6901075,-0.60197663,0.40187845,0.6899965,-0.60199547,0.40175733,0.6899404,-0.60214067,0.40590772,0.6871779,-0.60251594,0.40575334,0.68720573,-0.6025881,0.40541625,0.68735987,-0.6026393,0.405192,0.6874577,-0.60267854,0.40496644,0.6875969,-0.6026713,0.40503553,0.6877089,-0.60249704,0.40555587,0.68751335,-0.60237014,0.40586427,0.6873457,-0.6023538,0.39148644,0.81841815,-0.42063057,0.38889197,0.8201563,-0.41965076,0.38898534,0.8202299,-0.4194203,0.38971636,0.82006943,-0.4190552,0.39030498,0.8200792,-0.41848788,0.39258257,0.8192459,-0.41798946,0.39369223,0.81871283,-0.41799015,0.39342266,0.8186115,-0.4184421,0.39227408,0.81875783,-0.4192334,0.3921433,0.81839025,-0.42007267,0.25347516,0.857234,-0.4482189,0.2527751,0.85733575,-0.44841957,0.2511363,0.858022,-0.44802773,0.25105426,0.8582661,-0.44760585,0.25114065,0.8586036,-0.44690967,0.25217858,0.8580399,-0.4474075,0.2534512,0.8576528,-0.4474306,0.25358135,0.85747963,-0.44768873,0.25253257,0.95653343,-0.14584623,0.2512365,0.956762,-0.14658336,0.25104758,0.95685047,-0.14632925,0.25073612,0.957101,-0.14522102,0.25086635,0.9571563,-0.14463034,0.25155306,0.95709455,-0.14384383,0.2523097,0.9569369,-0.14356747,0.25307232,0.9565362,-0.1448895,0.22931239,0.9605266,-0.15749446,0.22911367,0.96053725,-0.15771857,0.22828723,0.9607212,-0.1577963,0.2281609,0.96078104,-0.15761468,0.22794417,0.96094275,-0.15694097,0.22813983,0.9609871,-0.15638424,0.22859672,0.96091634,-0.1561517,0.22884902,0.960829,-0.15631948,0.22925934,0.96065617,-0.1567798,0.19644742,0.97886246,-0.0568914,0.1962044,0.9788895,-0.057264194,0.19536512,0.97902775,-0.05776765,0.19482861,0.97909874,-0.05837392,0.19478796,0.97909874,-0.058509402,0.19430935,0.9792023,-0.05836817,0.19397064,0.97928166,-0.05816154,0.19370143,0.97935086,-0.057893753,0.19382358,0.9793643,-0.057254374,0.1950352,0.97912574,-0.057219256,0.19545515,0.9790975,-0.056261525,0.1962206,0.9789391,-0.056352954,0.1950599,0.97908694,-0.057796743,0.21084884,0.97530955,-0.06568116,0.21070038,0.9753141,-0.06608904,0.20997776,0.9754126,-0.06692964,0.20948352,0.9755338,-0.06671194,0.20920211,0.97560996,-0.06648056,0.20907535,0.9756496,-0.06629713,0.2089215,0.975715,-0.06581829,0.2090668,0.97571313,-0.06538297,0.21011394,0.97549236,-0.06532063,0.2300088,0.9727128,-0.030425213,0.22972912,0.9727733,-0.030604977,0.22803049,0.97320575,-0.029541692,0.22835508,0.9731371,-0.029294904,0.22936207,0.97289246,-0.029551638,0.22995809,0.9727383,-0.029990314,0.2370513,0.9710861,-0.028257636,0.23684284,0.9711308,-0.028467827,0.23615405,0.9712861,-0.02888822,0.23500243,0.9715598,-0.029075464,0.23479103,0.9716127,-0.029017229,0.23434709,0.97172827,-0.02873367,0.23420401,0.97177696,-0.028250258,0.23440014,0.9717341,-0.028096808,0.2347491,0.97164893,-0.0281289,0.23591083,0.97137463,-0.027881103,0.23676859,0.97116315,-0.027978811,0.23694937,0.9711166,-0.028063647,0.1777955,0.98357654,-0.03107962,0.17746171,0.9836162,-0.031725593,0.17642309,0.9837921,-0.032062434,0.1762843,0.9838341,-0.031532776,0.17603132,0.9838882,-0.031255662,0.17627332,0.98385483,-0.030941425,0.17660011,0.98379576,-0.030955976,0.27733627,0.95851934,0.06576719,0.27734426,0.95855063,0.065274976,0.27497834,0.9590933,0.0672833,0.2748632,0.95908844,0.06782046,0.27529672,0.9589361,0.06821521,0.2762443,0.9587017,0.067675896,0.27241036,0.9615328,0.03531809,0.2718968,0.96169764,0.034782723,0.27154505,0.961795,0.034838866,0.27087632,0.961973,0.03512764,0.27060893,0.96203446,0.03550342,0.27072182,0.9619765,0.03620654,0.27099037,0.96188986,0.036497787,0.271554,0.9617376,0.036322083,0.27200487,0.9616254,0.035915766,0.2668007,0.96344095,0.02447334,0.26590908,0.9637028,0.02385875,0.26588038,0.963688,0.024759121,0.26618627,0.9635858,0.025441723,0.2667206,0.96341765,0.026201757,0.26714233,0.9633047,0.026057478,0.267778,0.96316165,0.024791747,0.2586924,0.9658413,0.015128452,0.25848582,0.9658934,0.015332137,0.25891027,0.9657719,0.01581527,0.25931522,0.96564955,0.01662982,0.26005846,0.9654431,0.017005952,0.26081374,0.96524894,0.0164523,0.2609402,0.96523714,0.015082312,0.26129484,0.9651571,0.014027056,0.26079118,0.96529925,0.013613997,0.25950506,0.9656538,0.013035551,0.25877008,0.965847,0.013325411,0.2586001,0.9658894,0.013550003,0.25902244,0.9657584,0.014766814,0.12990177,0.9884735,0.07775392,0.1300021,0.9885077,0.07714945,0.12979059,0.9885599,0.07683559,0.12905559,0.9886677,0.07668593,0.12831149,0.9887504,0.07686889,0.12813647,0.9887351,0.07735615,0.12826708,0.98865265,0.07818867,0.12857412,0.988592,0.0784507,0.12907286,0.98852956,0.07841879,-0.0012634706,0.93320733,-0.35933617,-3.1067043e-7,0.93347687,-0.35863766,3.1701457e-8,0.93193614,-0.3626224,3.651452e-8,0.9085954,-0.41767743,3.685346e-8,0.9068031,-0.42155445,-0.0021637105,0.9076838,-0.41964918,-0.0026665297,0.9081003,-0.41874418,-0.0034940261,0.9091364,-0.41648388,-0.003976977,0.90956503,-0.41554257,-0.004686288,0.9100824,-0.41440082,-0.004731377,0.91050506,-0.41347083,-0.0045644743,0.9109619,-0.41246524,-0.003958745,0.9113159,-0.41168875,-0.0022319495,0.91484785,-0.4037926,-0.0027111382,0.914451,-0.40468758,-0.0040757107,0.9145441,-0.4044657,-0.004745537,0.914696,-0.40411472,-0.0048121912,0.9150992,-0.4032,-0.0049575595,0.91569823,-0.40183607,-0.005660612,0.9157506,-0.40170735,-0.0057515423,0.91603625,-0.40105426,-0.0062537114,0.91598564,-0.4011623,-0.006294925,0.91518444,-0.40298617,-0.006857877,0.9149844,-0.40343097,-0.0076438044,0.9148182,-0.40379348,-0.0079756165,0.9148685,-0.40367317,-0.008303479,0.91497856,-0.40341696,-0.008770732,0.91522187,-0.40285486,-0.009758083,0.9147201,-0.40397012,-0.009226605,0.9144251,-0.40465,-0.008997724,0.9138097,-0.40604293,-0.008891329,0.91364247,-0.40642148,-0.008092646,0.9138118,-0.40605727,-0.0075214095,0.9137779,-0.40614453,-0.007974684,0.9130939,-0.40767133,-0.008626967,0.9125827,-0.4088011,-0.009450855,0.9120869,-0.40988794,-0.010330205,0.9117907,-0.4105252,-0.010778499,0.91137904,-0.4114268,-0.0106297955,0.9106333,-0.4130787,-0.010806378,0.9102304,-0.41396123,-0.011490396,0.9099291,-0.41460466,-0.01223567,0.9098517,-0.41475323,-0.016658882,0.90988666,-0.41452226,-0.018167336,0.9099881,-0.41423613,-0.030608006,0.9070846,-0.41983417,-0.030452348,0.9067071,-0.42066,-0.03054317,0.9063877,-0.4213412,-0.03163437,0.9059098,-0.42228752,-0.03317045,0.905325,-0.42342222,-0.03347028,0.9051877,-0.42369202,-0.03381395,0.9049511,-0.42416996,-0.03418017,0.9048448,-0.4243673,-0.035222128,0.9047824,-0.4244151,-0.03601692,0.90489596,-0.42410627,-0.043345947,0.9031689,-0.42709142,-0.04507446,0.90220153,-0.42895305,-0.045915093,0.9019058,-0.4294855,-0.04725272,0.9015646,-0.4300563,-0.04774388,0.9015104,-0.4301157,-0.048197582,0.901572,-0.42993596,-0.049050022,0.9020482,-0.42883933,-0.049552243,0.90242743,-0.42798287,-0.04995054,0.9028822,-0.42697614,-0.05026433,0.9021541,-0.42847577,-0.04982705,0.9019109,-0.42903844,-0.049926817,0.901492,-0.4299064,-0.050798614,0.90099865,-0.4308375,-0.05170488,0.90092355,-0.43088666,-0.05278603,0.9010578,-0.43047473,-0.05309641,0.9012864,-0.4299576,-0.053347014,0.90160185,-0.42926472,-0.052832007,0.90264064,-0.42714003,-0.054365154,0.9022842,-0.4277005,-0.0545855,0.9019249,-0.42842954,-0.054928437,0.90188587,-0.42846784,-0.05710622,0.9019374,-0.42807448,-0.057239037,0.9020703,-0.42777672,-0.057036474,0.9023948,-0.4271189,-0.05663329,0.9027004,-0.42652622,-0.056195825,0.902917,-0.42612544,-0.0551701,0.90316963,-0.42572397,-0.054147862,0.9033598,-0.42545176,-0.053338163,0.9034095,-0.42544842,-0.052954223,0.90355116,-0.42519537,-0.05297326,0.90381396,-0.42463416,-0.052634664,0.9041193,-0.4240258,-0.052745957,0.9043002,-0.42362604,-0.05335567,0.9045384,-0.42304078,-0.053375177,0.9047566,-0.42257136,-0.052599024,0.9050207,-0.42210287,-0.05183238,0.9051026,-0.42202213,-0.052472167,0.90548885,-0.42111352,-0.053255446,0.90544224,-0.42111546,-0.054671463,0.90562767,-0.42053482,-0.055977024,0.9060475,-0.4194573,-0.05658868,0.9063236,-0.4187783,-0.057156365,0.9066626,-0.41796663,-0.05690718,0.9072549,-0.41671357,-0.056289986,0.9078193,-0.41556662,-0.055573538,0.9079729,-0.41532734,-0.053475864,0.9081325,-0.41525385,-0.05597305,0.9083304,-0.4144912,-0.05620034,0.9085281,-0.4140268,-0.056358337,0.90941906,-0.41204458,-0.0561401,0.90964043,-0.41158545,-0.054956757,0.90977705,-0.41144314,-0.05518466,0.90993226,-0.41106924,-0.053491972,0.91077024,-0.409434,-0.055153925,0.91081,-0.4091249,-0.05551467,0.91055614,-0.40964085,-0.055886067,0.91047055,-0.40978065,-0.057927463,0.9102657,-0.40995225,-0.058075055,0.91001886,-0.4104789,-0.058388747,0.9099319,-0.41062716,-0.06220575,0.910158,-0.40956426,-0.06332091,0.9099814,-0.4097857,-0.06365181,0.9099765,-0.4097454,-0.06408838,0.9100411,-0.40953368,-0.06436111,0.9103225,-0.4088651,-0.063597575,0.910886,-0.40772796,-0.06222679,0.9113924,-0.40680683,-0.061452303,0.9121484,-0.40522698,-0.06263908,0.9116678,-0.40612575,-0.06354298,0.9113675,-0.40665907,-0.06445199,0.91115093,-0.40700114,-0.065250814,0.9109907,-0.40723237,-0.066943474,0.91083884,-0.4072974,-0.06760154,0.91108876,-0.40662912,-0.06759932,0.91147685,-0.40575883,-0.06715042,0.9122888,-0.404005,-0.070897125,0.9137654,-0.400008,-0.07136906,0.91358876,-0.40032744,-0.07180852,0.9135378,-0.40036514,-0.07235659,0.9139575,-0.39930725,-0.071776256,0.91455853,-0.3980337,-0.07094829,0.91470224,-0.39785197,-0.06846537,0.9147432,-0.3981926,-0.06873968,0.91496855,-0.39762717,-0.068507686,0.915216,-0.39709735,-0.06816672,0.9154652,-0.3965814,-0.06773155,0.91562074,-0.39629665,-0.06730678,0.91564786,-0.39630646,-0.06651401,0.91550875,-0.39676148,-0.066067725,0.9155999,-0.3966257,-0.06647309,0.9158047,-0.39608476,-0.066159576,0.91596854,-0.39575824,-0.0658052,0.9160636,-0.39559725,-0.06280711,0.9172669,-0.39328963,-0.061123423,0.91770416,-0.39253405,-0.05947362,0.91828585,-0.3914256,-0.057711117,0.91926384,-0.38938847,-0.055916045,0.92003864,-0.38781732,-0.05422604,0.9203226,-0.38738337,-0.05260311,0.9202699,-0.3877321,-0.05137425,0.92044854,-0.3874728,-0.050126772,0.92068756,-0.38706818,-0.047440324,0.9209468,-0.38678995,-0.047538746,0.92073643,-0.38727832,-0.050485715,0.9203536,-0.387815,-0.047307868,0.92020357,-0.38857096,-0.046626147,0.92049783,-0.38795587,-0.046323627,0.9204612,-0.38807896,-0.04613225,0.9202903,-0.38850695,-0.046323057,0.9198984,-0.3894113,-0.046033885,0.9207441,-0.38744184,-0.04638343,0.92086077,-0.3871228,-0.04641754,0.9209753,-0.38684604,-0.044081215,0.92122054,-0.38653535,-0.043407053,0.92140776,-0.38616526,-0.042758092,0.9214892,-0.38604325,-0.04144667,0.9212291,-0.3868062,-0.037645187,0.9212066,-0.38724825,-0.036971483,0.9211217,-0.38751504,-0.03698391,0.9209342,-0.38795933,-0.037246022,0.92083913,-0.38815978,-0.037860155,0.92076135,-0.38828486,-0.038460363,0.92077565,-0.3881919,-0.038916472,0.9205155,-0.3887631,-0.039824974,0.92038226,-0.38898647,-0.040464733,0.9181191,-0.39423335,-0.03986507,0.9179755,-0.3946287,-0.04019079,0.91762084,-0.39541963,-0.040908795,0.91734254,-0.3959913,-0.042190835,0.9172116,-0.39616013,-0.04269514,0.9157362,-0.39950514,-0.042347956,0.9155697,-0.3999234,-0.042144112,0.91528195,-0.40060312,-0.04167753,0.9151679,-0.4009122,-0.041753802,0.9162405,-0.3984469,-0.041138303,0.91687274,-0.39705426,-0.040331483,0.9167281,-0.39747074,-0.040016126,0.9165615,-0.39788654,-0.0386472,0.9165714,-0.39799917,-0.038384724,0.91700566,-0.39702296,-0.03813415,0.9173239,-0.39631128,-0.037310977,0.9176534,-0.39562625,-0.036854625,0.91777825,-0.39537928,-0.035331484,0.9186182,-0.39356357,-0.03592412,0.9190275,-0.39255303,-0.035645578,0.9199365,-0.3904437,-0.035273943,0.92024124,-0.38975865,-0.034834947,0.9205065,-0.38917133,-0.034238067,0.92188656,-0.38594416,-0.034551997,0.9223258,-0.38486528,-0.034570616,0.92286694,-0.3835642,-0.034030136,0.9232609,-0.38266328,-0.033422984,0.9234615,-0.3822326,-0.033036392,0.9233002,-0.38265553,-0.032704536,0.9230555,-0.38327387,-0.031044528,0.92292404,-0.38372836,-0.031877134,0.92352295,-0.38221616,-0.03173063,0.92402035,-0.38102442,-0.031494845,0.9243231,-0.38030896,-0.031156247,0.92455965,-0.3797614,-0.030822337,0.92506444,-0.37855747,-0.020106679,0.9279608,-0.372135,-0.018343871,0.9283215,-0.37132564,-0.0174934,0.92863166,-0.3705904,-0.016764523,0.9287783,-0.3702565,-0.016037706,0.9287246,-0.37042332,-0.0156046515,0.9286427,-0.37064704,-0.015539999,0.92901087,-0.3697259,-0.015956407,0.92909634,-0.36949348,-0.0149057275,0.9295372,-0.36842695,-0.011172818,0.9306822,-0.36565813,-0.010375413,0.93083704,-0.36528724,-0.010962666,0.93053615,-0.36603585,-0.0137478085,0.9296365,-0.36822137,-0.012563376,0.92890584,-0.37010288,-0.012770593,0.9292793,-0.369157,-0.01254112,0.9297021,-0.36809874,-0.0122082075,0.92993575,-0.36751926,-0.01124427,0.93020403,-0.36687052,-0.007929041,0.93144023,-0.36380792,-0.008826512,0.9310754,-0.36472008,-0.009312072,0.93096435,-0.36499128,-0.008318231,0.9315336,-0.3635602,-0.0071218275,0.93203384,-0.36230132,-0.004055112,0.9326578,-0.3607396,-0.0033228504,0.93303144,-0.35977957,-0.0030480486,0.9330612,-0.35970482,-0.0025413118,0.9329943,-0.35988215,3.617478e-8,0.9103718,-0.41379124,-0.0025753502,0.9118163,-0.41059032,-0.0046313195,0.91557485,-0.40212092,-0.009688544,0.91604924,-0.40094876,-0.009954987,0.91494864,-0.40344748,-0.01056138,0.91179943,-0.41049996,-0.020357037,0.9106956,-0.4125762,-0.054022804,0.90257716,-0.42712525,-0.054824017,0.90959585,-0.41186127,-0.05662598,0.91044515,-0.40973547,-0.059192497,0.91003686,-0.41027933,-0.06140067,0.91177464,-0.4060751,-0.065751016,0.91530395,-0.39736068,-0.040946633,0.9183759,-0.39358488,-0.035099458,0.917915,-0.39522162,-0.015268898,0.9287527,-0.37038535,3.2049225e-8,0.9303785,-0.3666004,3.5834436e-8,0.9121313,-0.40989816,-0.0019434863,0.91214734,-0.40985778,-0.005991132,0.9161883,-0.4007033,-0.0107385125,0.9116934,-0.41073087,-0.03027232,0.9080175,-0.41783696,-0.042408787,0.9036169,-0.42623702,-0.050181463,0.9024909,-0.42777553,-0.051748455,0.90539557,-0.42140362,-0.05483418,0.9079375,-0.41550294,-0.05563315,0.9095831,-0.41178098,-0.05173332,0.9112671,-0.40855342,-0.054234885,0.91118497,-0.4084122,-0.061459072,0.9102007,-0.40958205,-0.07050976,0.9137831,-0.4000361,-0.047985148,0.92010975,-0.38870996,-0.045511827,0.92019653,-0.388802,-0.039384272,0.9160014,-0.39923722,-0.038980756,0.9161668,-0.39889717,-0.03434281,0.9211379,-0.38771826,-0.009759878,0.9304288,-0.36634275,-0.008048014,0.9310113,-0.36490157,-0.0045434684,0.9324827,-0.36118606,3.2396407e-8,0.92880386,-0.3705717,3.5493517e-8,0.91387373,-0.4059985,-0.029650245,0.9088906,-0.41597924,-0.036823705,0.9049286,-0.42396724,-0.05313736,0.90278107,-0.42680526,-0.061121065,0.9121942,-0.40517405,-0.069492325,0.9136026,-0.40062588,-0.050204363,0.91999257,-0.38870704,-0.04546416,0.9198847,-0.38954484,-0.041176245,0.9189882,-0.39212897,-0.039195452,0.91597265,-0.39932173,-0.014190866,0.9293775,-0.3688578,-0.008345056,0.93071145,-0.36565903,3.515188e-8,0.9155999,-0.40209064,-0.0014986676,0.9128404,-0.4083137,-0.010293686,0.9163736,-0.40019172,-0.010275597,0.9157787,-0.4015518,-0.04041007,0.90421504,-0.42516136,-0.051223654,0.9049558,-0.42241108,-0.051311072,0.90517724,-0.42192572,-0.06719859,0.9125876,-0.40332147,-0.06801382,0.9130373,-0.4021654,-0.04668913,0.9195789,-0.39012146,-0.0455426,0.91948813,-0.39047086,-0.041003466,0.91932356,-0.39136037,-0.03553208,0.9178456,-0.39534402,-0.013412283,0.92904556,-0.36972213,3.2742932e-8,0.9272126,-0.3745355,3.4809602e-8,0.9173093,-0.39817545,-0.02120409,0.91078186,-0.41234306,-0.028285481,0.9097516,-0.41418839,-0.038398176,0.9046484,-0.42442524,-0.05416074,0.90798396,-0.41548973,-0.052966647,0.9113317,-0.40825117,-0.05096399,0.92018056,-0.38816288,-0.050811596,0.92003036,-0.38853875,-0.04279047,0.9169785,-0.3966352,-0.032504342,0.92297786,-0.38347796,3.4466748e-8,0.9190017,-0.39425364,-0.046166398,0.9194107,-0.3905798,-0.04035086,0.92011476,-0.38956463,-0.040771887,0.91965353,-0.3906085,3.4123204e-8,0.9206776,-0.39032397,-0.022179803,0.91069347,-0.41248688,-0.05216748,0.9113489,-0.40831572,-0.043358088,0.91660476,-0.39743647,3.3088927e-8,0.92560405,-0.37849322,3.3779042e-8,0.9223367,-0.3863872,-0.024928002,0.91030514,-0.41318658,-0.060949583,0.91207886,-0.4054594,-0.025403013,0.9225688,-0.38499546,3.343433e-8,0.9239786,-0.38244414,-0.0010340906,0.91602015,-0.40113086,-0.019162592,0.9200237,-0.39139402,-0.030765764,0.9138384,-0.4049109,-0.020334046,0.9196311,-0.39225644,-0.0015348432,0.913673,-0.4064472,-0.030985301,0.9138788,-0.404803,-0.0018319173,0.91429466,-0.40504557,-0.04307324,0.9161254,-0.39857104,-0.041954465,0.91516864,-0.40088177,0.56025857,0.6733452,-0.4824071,0.55762297,0.67588544,-0.48190817,0.5574767,0.67760015,-0.47966427,0.5569334,0.677817,-0.47998884,0.555694,0.6773118,-0.48213372,0.5549277,0.677456,-0.48281318,0.5539716,0.6772102,-0.48425385,0.5526008,0.67812645,-0.4845378,0.55153686,0.6790842,-0.4844087,0.5502374,0.679727,-0.48498458,0.5476445,0.68195283,-0.48479465,0.5409069,0.68556464,-0.48725855,0.5428539,0.6841749,-0.4870466,0.5437954,0.68321216,-0.48734772,0.5431065,0.68321526,-0.48811087,0.54220366,0.68351513,-0.48869443,0.5393406,0.6851203,-0.489614,0.53808177,0.6859901,-0.48978117,0.5385318,0.6850389,-0.4906171,0.5419255,0.6805073,-0.49318013,0.54016274,0.6808457,-0.49464467,0.5396748,0.6803574,-0.4958476,0.53848946,0.68041176,-0.4970603,0.5378604,0.6793612,-0.49917382,0.53723425,0.6795088,-0.49964708,0.5365764,0.67954385,-0.5003058,0.5367655,0.6784521,-0.501583,0.53610724,0.67812085,-0.50273365,0.5312213,0.6798026,-0.50564057,0.53012294,0.6798245,-0.50676256,0.5264488,0.6813274,-0.50857115,0.5243427,0.682536,-0.509126,0.517454,0.6856986,-0.51191676,0.5142841,0.68742424,-0.512796,0.5115244,0.68868023,-0.5138699,0.509019,0.69068825,-0.5136627,0.505741,0.69258404,-0.51434755,0.50514895,0.69338703,-0.5138472,0.4960927,0.70015997,-0.51348615,0.49428207,0.70077366,-0.5143943,0.493068,0.7016808,-0.5143229,0.49179843,0.70298266,-0.5137603,0.48860407,0.7049081,-0.5141699,0.48599255,0.70683736,-0.51399636,0.4839352,0.70809376,-0.51420814,0.4825684,0.7092157,-0.5139463,0.4776033,0.7119464,-0.5148081,0.4730213,0.7149608,-0.514861,0.4691771,0.71713394,-0.51535594,0.46749634,0.71847254,-0.5150188,0.46175185,0.7223728,-0.5147455,0.45903224,0.7249289,-0.5135829,0.45721766,0.72589564,-0.513836,0.45502603,0.72831196,-0.5123603,0.45283234,0.7300411,-0.5118426,0.45184204,0.7310706,-0.5112481,0.4506479,0.7320345,-0.5109227,0.44419912,0.73589975,-0.5110173,0.44060326,0.7388655,-0.5098496,0.43664587,0.74182785,-0.5089517,0.43459147,0.7428562,-0.50921017,0.4322431,0.74419373,-0.50925595,0.4307306,0.74524987,-0.5089929,0.42741647,0.7469142,-0.509347,0.42556745,0.7480605,-0.50921285,0.42421237,0.7492295,-0.5086247,0.4216476,0.7521027,-0.5065124,0.4186804,0.75429845,-0.505708,0.418816,0.7546503,-0.5050704,0.41783378,0.7560822,-0.50374067,0.4173012,0.75652933,-0.50351083,0.41664347,0.7572328,-0.5029978,0.41575703,0.75801814,-0.5025481,0.41512528,0.75849265,-0.5023544,0.4121376,0.76149464,-0.50026846,0.41078794,0.763364,-0.49852648,0.41065258,0.76408416,-0.49753386,0.40784752,0.7664184,-0.49624914,0.40742594,0.7666466,-0.49624294,0.40708485,0.7669683,-0.49602568,0.40184054,0.77494663,-0.48783398,0.39917552,0.77700055,-0.48675358,0.3984072,0.7777093,-0.4862509,0.39670488,0.7796908,-0.48446622,0.3938627,0.7816746,-0.48358765,0.39129665,0.7839094,-0.4820509,0.38871196,0.7850768,-0.4822421,0.3864845,0.78651154,-0.4816943,0.3850575,0.78715736,-0.48178208,0.38372865,0.78862524,-0.48043993,0.38185158,0.7899251,-0.47979966,0.382009,0.79052204,-0.47868997,0.38257012,0.7926696,-0.47467363,0.38064456,0.7938858,-0.47418883,0.3795828,0.79497176,-0.47321966,0.37803537,0.7969532,-0.47112086,0.3789217,0.7975582,-0.4693818,0.37884855,0.7995956,-0.4659621,0.3771195,0.798796,-0.46872792,0.3752038,0.799656,-0.46879894,0.37384152,0.8005639,-0.46833748,0.3731234,0.80170023,-0.4669643,0.37461653,0.8033816,-0.46286118,0.37433624,0.8038006,-0.4623602,0.37599134,0.80485684,-0.45916873,0.37677324,0.8070901,-0.4545849,0.3759091,0.8090275,-0.4518483,0.3759485,0.80954564,-0.45088652,0.37706128,0.8111181,-0.44711533,0.37708458,0.81163967,-0.44614828,0.37758026,0.8118507,-0.4453443,0.3827913,0.81124574,-0.44198555,0.38498372,0.81228733,-0.43815154,0.3854809,0.8120666,-0.43812358,0.3857393,0.81129503,-0.43932402,0.386526,0.81052905,-0.4400458,0.38736457,0.8094655,-0.4412644,0.39489138,0.80481535,-0.4430948,0.3932399,0.8056613,-0.4430263,0.39063787,0.80715406,-0.44261092,0.3894478,0.8084746,-0.44124728,0.38963887,0.808605,-0.4408395,0.38990507,0.80860305,-0.4406077,0.39125818,0.80808526,-0.4403581,0.40202776,0.80522084,-0.43588197,0.39976162,0.80600137,-0.43652308,0.39728066,0.8076382,-0.43576205,0.39584956,0.808024,-0.43634892,0.395068,0.80847013,-0.43623084,0.39665037,0.8102824,-0.43140572,0.3962236,0.81035334,-0.43166462,0.39550927,0.8106184,-0.43182206,0.3931459,0.8119134,-0.43154716,0.3941304,0.81199396,-0.43049625,0.39532155,0.8119034,-0.42957383,0.39805272,0.81088233,-0.42898002,0.3989095,0.81033385,-0.42922047,0.39902663,0.8096001,-0.4304944,0.40141165,0.8071837,-0.4328085,0.40218833,0.8074563,-0.43157718,0.4032686,0.8073658,-0.4307377,0.40390593,0.8083116,-0.42836004,0.4023073,0.8096386,-0.4273571,0.3991633,0.8126262,-0.4246261,0.39783096,0.8136322,-0.42394948,0.3967453,0.8147381,-0.42284164,0.3963609,0.81534,-0.42204118,0.39693734,0.81537354,-0.4214341,0.39802855,0.8152655,-0.42061323,0.40052986,0.81526995,-0.41822335,0.40363994,0.8149653,-0.4158201,0.40554821,0.81606174,-0.41179356,0.40620562,0.8162124,-0.41084582,0.40059486,0.8202893,-0.40822682,0.39862648,0.820757,-0.4092126,0.3936816,0.8226628,-0.4101717,0.38941285,0.82488376,-0.4097858,0.38586372,0.8260411,-0.41081047,0.3832997,0.82703406,-0.41121277,0.38107002,0.8279848,-0.41137186,0.37886593,0.8287911,-0.41178387,0.37616497,0.8301301,-0.4115628,0.37504676,0.83039516,-0.41204825,0.36943936,0.8332408,-0.41136876,0.36832288,0.8338731,-0.41108865,0.3671674,0.8347376,-0.4103672,0.3600664,0.83834267,-0.40930885,0.3567139,0.83950734,-0.4098569,0.35350445,0.8411478,-0.40927374,0.35097697,0.84179056,-0.4101266,0.35025418,0.8420601,-0.41019124,0.34851936,0.84297585,-0.40978763,0.3466459,0.8435242,-0.4102482,0.34589523,0.8438536,-0.4102044,0.34357688,0.84514517,-0.40949306,0.33920354,0.8463203,-0.41071028,0.3383711,0.8468011,-0.41040573,0.32968482,0.8518809,-0.40694818,0.32609224,0.8528961,-0.40771574,0.32314935,0.8539963,-0.40775594,0.32117984,0.85486895,-0.40748328,0.31691235,0.8571642,-0.4060001,0.3052524,0.8604764,-0.40792328,0.3031223,0.860241,-0.41000283,0.30004883,0.86084306,-0.41099867,0.29824603,0.86081576,-0.4123658,0.29592898,0.8605311,-0.41462305,0.28780943,0.86086214,-0.41962135,0.2864976,0.8601223,-0.42202932,0.28685057,0.8589455,-0.42418087,0.2862103,0.85869664,-0.42511618,0.2841228,0.8591518,-0.4255965,0.281118,0.8610126,-0.4238278,0.280211,0.86124784,-0.42395046,0.2789272,0.8605016,-0.42630577,0.27722555,0.86043733,-0.4275437,0.27445933,0.85957193,-0.43105474,0.2729758,0.8597691,-0.43160313,0.2676963,0.8608682,-0.4327177,0.26712033,0.8595162,-0.43575066,0.26536167,0.859477,-0.43690106,0.26373905,0.8596982,-0.437448,0.2626839,0.8604677,-0.43656906,0.2630156,0.860742,-0.435828,0.26432782,0.8605068,-0.43549836,0.26268893,0.86191535,-0.43370086,0.26216492,0.8614076,-0.4350247,0.2605412,0.8614565,-0.43590245,0.25993454,0.8615244,-0.43613037,0.25986242,0.86186606,-0.43549782,0.25444818,0.8640149,-0.4344357,0.2510825,0.8629661,-0.43845984,0.25023276,0.86285675,-0.43916038,0.24958056,0.8624317,-0.44036475,0.24821788,0.86212784,-0.4417278,0.24943209,0.8618501,-0.4415859,0.25009197,0.86157936,-0.44174084,0.24898668,0.86168706,-0.442155,0.24837942,0.86135566,-0.44314116,0.24771403,0.8612812,-0.443658,0.2472979,0.86141145,-0.44363728,0.24657315,0.8618333,-0.4432213,0.2421142,0.86184275,-0.4456544,0.241108,0.86005926,-0.44962767,0.24025096,0.8597104,-0.4507522,0.24286832,0.85848296,-0.4516879,0.24454403,0.8586381,-0.45048735,0.24814634,0.8579082,-0.4499077,0.24801837,0.85604244,-0.45351756,0.24508175,0.85596675,-0.45525363,0.24172473,0.85636127,-0.45630535,0.24050407,0.85714054,-0.45548648,0.23842655,0.8574046,-0.45608124,0.23753148,0.8567544,-0.457767,0.23578365,0.8565038,-0.45913762,0.23518062,0.856619,-0.4592319,0.23264468,0.8579025,-0.4581264,0.23161308,0.858015,-0.45843825,0.23101892,0.8579869,-0.4587904,0.22948293,0.85909206,-0.45749143,0.22674534,0.85918105,-0.4586878,0.22590038,0.8581918,-0.4609511,0.22519404,0.85784554,-0.4619401,0.22307645,0.8581419,-0.46241692,0.22151884,0.8588512,-0.46184847,0.22067182,0.85910773,-0.46177682,0.21917303,0.8584349,-0.4637377,0.21790469,0.8588486,-0.46356943,0.21629122,0.8589206,-0.4641913,0.21516034,0.85887176,-0.4648068,0.21471591,0.8595867,-0.4636892,0.21403842,0.8603878,-0.46251532,0.21504591,0.86118245,-0.46056488,0.21758208,0.8619841,-0.45786622,0.21975936,0.86146474,-0.45780382,0.22016639,0.86251664,-0.4556224,0.21931224,0.86302894,-0.45506388,0.21885923,0.86366284,-0.45407826,0.21692753,0.8649479,-0.45255676,0.21647975,0.8650094,-0.4526535,0.21402246,0.86685336,-0.45028836,0.2091268,0.86929363,-0.44787788,0.20445403,0.8707838,-0.44713998,0.2013728,0.8719186,-0.446326,0.19971314,0.8727274,-0.44549024,0.19678444,0.87458247,-0.44314936,0.19357559,0.87592864,-0.4419021,0.19219624,0.8763572,-0.44165453,0.19065855,0.8769152,-0.44121313,0.18786544,0.8790638,-0.43812492,0.18687741,0.8793594,-0.43795416,0.18474518,0.8802761,-0.43701634,0.18213533,0.8808665,-0.4369221,0.18107729,0.88129455,-0.43649846,0.17858168,0.8812643,-0.43758625,0.1767508,0.8809205,-0.43901953,0.17606221,0.8810133,-0.4391101,0.17432006,0.88151515,-0.4387978,0.17276713,0.88139325,-0.4396561,0.17041975,0.8817175,-0.439922,0.16645204,0.8822432,-0.44038686,0.16604154,0.8813698,-0.44228652,0.16561946,0.88115036,-0.44288176,0.16551885,0.8806385,-0.44393626,0.16399492,0.8809601,-0.44386366,0.16466485,0.8773466,-0.45071992,0.16520965,0.87707734,-0.4510444,0.165268,0.87659633,-0.4519573,0.16554482,0.8757058,-0.45357946,0.16705588,0.8747378,-0.4548913,0.1677085,0.8742525,-0.45558354,0.16704084,0.8741404,-0.45604378,0.16574416,0.8746825,-0.45547718,0.16266763,0.87483525,-0.45629215,0.16488735,0.8731905,-0.45863983,0.16561095,0.87232226,-0.4600292,0.1660023,0.87199,-0.4605178,0.16630206,0.8715428,-0.4612556,0.16523984,0.87178755,-0.46117485,0.16437651,0.87214226,-0.46081263,0.16330127,0.87240934,-0.46068934,0.16094352,0.8725243,-0.46130088,0.1590536,0.87371,-0.45970947,0.15772575,0.8743055,-0.45903435,0.14576653,0.8791556,-0.45369324,0.14358461,0.8801636,-0.45243284,0.14264825,0.88022995,-0.45259988,0.14194103,0.88006365,-0.45314533,0.14120626,0.8800847,-0.45333397,0.13972656,0.8805189,-0.4529491,0.13969105,0.8796295,-0.45468488,0.1393577,0.87918484,-0.45564616,0.13888939,0.87926686,-0.4556309,0.1385136,0.879404,-0.4554806,0.1379054,0.8797434,-0.45500952,0.13728888,0.88001996,-0.45466104,0.1365709,0.8804729,-0.45399988,0.13680387,0.88077974,-0.453334,0.13812546,0.88123333,-0.4520499,0.13761173,0.8820534,-0.45060498,0.13600975,0.88335615,-0.44853458,0.13564686,0.88419753,-0.44698396,0.13419102,0.8855025,-0.44483486,0.13373917,0.88569295,-0.4445918,0.13323635,0.88598514,-0.4441603,0.12215311,0.88842094,-0.44247812,0.120835915,0.8875831,-0.4445165,0.119098514,0.8871477,-0.4458525,0.116463356,0.88658386,-0.4476666,0.11747094,0.8867124,-0.44714853,0.11804837,0.8865929,-0.4472332,0.11838636,0.88599306,-0.44833136,0.118894316,0.8862967,-0.4475961,0.12065822,0.88646126,-0.44679758,0.12217809,0.8867994,-0.44571212,0.12275414,0.8867734,-0.4456056,0.12568894,0.88577163,-0.4467784,0.12654355,0.8853306,-0.44741085,0.12862884,0.8833162,-0.450785,0.12940164,0.881912,-0.4533061,0.13047582,0.88056576,-0.45560947,0.13186437,0.8799815,-0.456338,0.13257742,0.8793018,-0.45744026,0.13325311,0.8784952,-0.45879164,0.13208012,0.878149,-0.4597926,0.13347925,0.8766468,-0.4622485,0.13624303,0.87556005,-0.4635002,0.13660501,0.8753327,-0.463823,0.13714838,0.8748365,-0.4645981,0.13634513,0.8739147,-0.46656513,0.13753194,0.8735782,-0.46684703,0.13861804,0.87334543,-0.46696126,0.13976271,0.8729258,-0.46740448,0.14293122,0.8727765,-0.46672457,0.14560586,0.8717229,-0.4678656,0.14981897,0.8706711,-0.4684935,0.15176709,0.8700668,-0.46898878,0.15251221,0.8696687,-0.4694852,0.15469122,0.86804485,-0.47177196,0.15583153,0.86735135,-0.47267133,0.15894018,0.86626387,-0.4736295,0.16172704,0.86467487,-0.47558567,0.16582397,0.8627507,-0.47766474,0.16714795,0.86252826,-0.477605,0.16878614,0.8620484,-0.47789514,0.17120406,0.86068904,-0.47948253,0.17678626,0.85830814,-0.48171955,0.18062265,0.85539734,-0.48545948,0.18236284,0.8544221,-0.48652515,0.18403685,0.8536467,-0.48725536,0.18534948,0.85281736,-0.48820916,0.18733732,0.8519457,-0.4889717,0.19108984,0.85064,-0.48979205,0.19376512,0.8495508,-0.4906308,0.19529817,0.848819,-0.49128905,0.19609986,0.8481311,-0.4921569,0.1965663,0.8482819,-0.49171078,0.19880703,0.847918,-0.49143758,0.20125735,0.8482309,-0.48989776,0.20435326,0.84618634,-0.4921468,0.20648642,0.84597737,-0.49161527,0.2081592,0.84647363,-0.49005312,0.20928566,0.84622717,-0.48999903,0.20978512,0.8460037,-0.4901713,0.210297,0.8457087,-0.49046096,0.21679528,0.83887196,-0.49929315,0.22223374,0.8365883,-0.5007316,0.22277716,0.83630526,-0.5009629,0.22348914,0.8357615,-0.50155294,0.22953828,0.8297417,-0.508764,0.23184924,0.8270173,-0.5121409,0.23529208,0.82262546,-0.51761466,0.23609723,0.8211404,-0.51960224,0.23756048,0.8177938,-0.5241931,0.23878253,0.81433314,-0.52900326,0.240379,0.808279,-0.537497,0.24379492,0.79870373,-0.55012405,0.2444757,0.7972275,-0.55196005,0.24471967,0.7959731,-0.55365974,0.24467929,0.794693,-0.5555133,0.24400818,0.7934529,-0.5575774,0.2446774,0.7919333,-0.5594413,0.24607141,0.7870754,-0.5656511,0.2483589,0.7823375,-0.57119685,0.24866702,0.7813056,-0.5724738,0.248817,0.7805572,-0.5734288,0.24799892,0.77963156,-0.5750401,0.24812281,0.7785074,-0.5765078,0.24842712,0.7776627,-0.57751596,0.24860741,0.77680844,-0.57858706,0.24740124,0.77721834,-0.57855356,0.24272898,0.7794773,-0.57749265,0.23880388,0.7816177,-0.57623464,0.23802035,0.7823895,-0.575511,0.23675172,0.7829836,-0.5752263,0.23443419,0.78375113,-0.5751302,0.23057441,0.7859607,-0.5736735,0.2268612,0.78898615,-0.5709946,0.22446282,0.7912767,-0.56876856,0.22377211,0.7921102,-0.5678798,0.2233094,0.7929313,-0.56691515,0.22265819,0.7946971,-0.56469446,0.22182272,0.795351,-0.5641023,0.22014424,0.79730624,-0.5619958,0.22037438,0.79781723,-0.5611799,0.22144523,0.79818803,-0.5602302,0.21912643,0.7987909,-0.56028277,0.21909681,0.79795647,-0.5614821,0.21862544,0.797678,-0.56206113,0.20697714,0.8010416,-0.56168747,0.205753,0.79994756,-0.5636928,0.2049675,0.7999946,-0.5639122,0.20449881,0.80151373,-0.56192166,0.20501405,0.8026172,-0.5601561,0.20467721,0.8033136,-0.55928034,0.20362085,0.8043984,-0.5581055,0.2036948,0.8051097,-0.5570519,0.1994055,0.8109531,-0.5500841,0.19687195,0.8119636,-0.5495057,0.1940059,0.81341416,-0.5483786,0.18736148,0.81510997,-0.548171,0.18614441,0.8143238,-0.54975176,0.18298696,0.8142803,-0.5508752,0.18194233,0.81444937,-0.5509711,0.17893527,0.8160233,-0.54962546,0.17732663,0.81666315,-0.54919624,0.17698093,0.8180105,-0.5472994,0.17729095,0.819132,-0.5455188,0.17829762,0.82054025,-0.54306877,0.1764406,0.8256538,-0.5358774,0.17422117,0.8274765,-0.533788,0.17161204,0.8299115,-0.5308448,0.17087401,0.83028734,-0.530495,0.168871,0.83086544,-0.5302313,0.16748603,0.8313289,-0.529944,0.16675565,0.83157325,-0.529791,0.16651626,0.83291274,-0.5277582,0.16443738,0.8337903,-0.5270238,0.1625989,0.8336581,-0.5278028,0.16185093,0.8339634,-0.5275503,0.16278392,0.832916,-0.5289161,0.16474178,0.8322528,-0.5293538,0.16595468,0.8312977,-0.53047454,0.16470155,0.82967746,-0.53339356,0.16361333,0.82936716,-0.5342104,0.16286151,0.8294733,-0.5342753,0.16115111,0.8303724,-0.5333967,0.16032673,0.8307293,-0.5330893,0.15939154,0.8313001,-0.53247964,0.15887856,0.8333817,-0.52936995,0.15885743,0.8345071,-0.5276004,0.15821654,0.8356927,-0.5259138,0.15889443,0.8360515,-0.52513856,0.15991792,0.8362029,-0.5245864,0.16113563,0.83602434,-0.5244984,0.16167413,0.83748406,-0.52199805,0.16081825,0.8388928,-0.5199965,0.16053562,0.8396462,-0.5188666,0.15757363,0.84318024,-0.51402104,0.15583794,0.84399897,-0.51320595,0.15481995,0.8446775,-0.512397,0.15437715,0.84513885,-0.5117696,0.1538296,0.84610367,-0.5103381,0.15434782,0.8465399,-0.5094575,0.15765953,0.84754914,-0.5067582,0.1582165,0.847569,-0.5065514,0.15958203,0.84716,-0.5068072,0.16144055,0.8456814,-0.5086844,0.16112104,0.8459919,-0.50826937,0.16278866,0.84646416,-0.50695,0.15658993,0.8545367,-0.49522385,0.15453751,0.85536337,-0.49444076,0.15216286,0.8566208,-0.49299824,0.1513031,0.8568432,-0.4928764,0.15090115,0.8570457,-0.49264747,0.15045746,0.8573485,-0.49225616,0.15059598,0.85819304,-0.49073976,0.14984652,0.8584974,-0.4904368,0.14928053,0.85834616,-0.4908738,0.14693037,0.85987526,-0.48890284,0.142546,0.8650356,-0.48103443,0.14175287,0.8652745,-0.48083904,0.14050846,0.865837,-0.4801913,0.1367499,0.865889,-0.4811816,0.13729176,0.86513,-0.48239097,0.13581473,0.8657965,-0.48161274,0.13220146,0.8660032,-0.48224595,0.13176693,0.8649256,-0.48429444,0.13126487,0.8646342,-0.48495072,0.13041285,0.86465734,-0.4851393,0.1297936,0.86480755,-0.48503762,0.12900043,0.86555034,-0.48392305,0.12831283,0.8668844,-0.48171285,0.12730327,0.86711204,-0.48157102,0.12648517,0.8672003,-0.4816276,0.12511942,0.8678103,-0.48088503,0.12359761,0.8680816,-0.48078883,0.120139465,0.869123,-0.47978303,0.11624359,0.87022513,-0.47874382,0.11686511,0.8696178,-0.4796951,0.11724103,0.8690298,-0.480668,0.118372194,0.8675773,-0.48300898,0.11921381,0.8667995,-0.48419705,0.11988356,0.8658451,-0.48573673,0.1199814,0.8653445,-0.4866039,0.11992382,0.8647087,-0.48774698,0.11916282,0.86476815,-0.48782805,0.11860451,0.8649098,-0.48771298,0.117312886,0.8655627,-0.48686647,0.11173274,0.8686923,-0.48258623,0.10918599,0.86954916,-0.48162502,0.1056229,0.87008864,-0.4814453,0.10448489,0.87043583,-0.48106584,0.098206475,0.8711472,-0.4811008,0.09655101,0.8708957,-0.4818907,0.09555586,0.8709036,-0.48207462,0.091772474,0.8711791,-0.48231196,0.09147185,0.87084204,-0.48297724,0.08890622,0.8698226,-0.48528785,0.08770548,0.86833197,-0.48816732,0.08740891,0.8682009,-0.4884535,0.08721598,0.8679208,-0.4889855,0.08731208,0.8673128,-0.49004605,0.087173484,0.8669337,-0.49074098,0.08679703,0.8666102,-0.49137864,0.085535444,0.8659039,-0.4928429,0.08389342,0.86572444,-0.4934401,0.08338998,0.8661106,-0.49284732,0.083062485,0.8664422,-0.49231955,0.08177052,0.86828125,-0.4892865,0.08091241,0.869002,-0.48814833,0.08077633,0.8694406,-0.4873892,0.078743614,0.87032545,-0.48614103,0.077407345,0.87055284,-0.48594844,0.07236405,0.87228894,-0.4836067,0.07008256,0.8732889,-0.48213577,0.06924441,0.87323993,-0.48234555,0.068451226,0.8734674,-0.48204684,0.06770302,0.87377805,-0.48158932,0.06708619,0.8739052,-0.48144487,0.06568938,0.8746015,-0.48037186,0.064054936,0.87514186,-0.4796079,0.06419778,0.8756045,-0.47874358,0.062934086,0.876188,-0.47784305,0.062193647,0.8762262,-0.4778699,0.06114316,0.876721,-0.47709724,0.06025838,0.8772358,-0.4762629,0.05963756,0.877088,-0.47661301,0.05926782,0.8772435,-0.47637287,0.05939541,0.87856036,-0.4739239,0.05787366,0.8780348,-0.47508484,0.05723227,0.8780384,-0.47515577,0.054819867,0.87928915,-0.47312295,0.052625973,0.8806102,-0.4709099,0.051051375,0.8803068,-0.47165,0.048263397,0.88126355,-0.4701544,0.047030147,0.881448,-0.46993366,0.045139402,0.8814983,-0.47002468,0.04428661,0.8818606,-0.46942583,0.043316614,0.8825203,-0.46827504,0.042654738,0.88244617,-0.46847558,0.039302085,0.88322943,-0.4672912,0.03777914,0.8839398,-0.46607208,0.037151422,0.88399357,-0.46602052,0.035686668,0.8844538,-0.46526122,0.029721642,0.88576686,-0.46317783,0.02878547,0.8862912,-0.46223295,0.02488098,0.88730145,-0.46051827,0.022835784,0.88750184,-0.46023804,0.022570135,0.8877479,-0.45977634,0.024301331,0.8885633,-0.45810997,0.024065422,0.88879496,-0.45767274,0.023753524,0.8892347,-0.45683405,0.023204233,0.889333,-0.456671,0.022584982,0.88901985,-0.4573113,0.021898206,0.8890206,-0.45734322,0.021101788,0.8889129,-0.45758995,0.021489544,0.88849914,-0.4583748,0.021678815,0.8881724,-0.45899877,0.021738684,0.88780755,-0.4597012,0.021276005,0.8877145,-0.45990244,0.008390279,0.88584167,-0.46391183,0.007744516,0.88558567,-0.46441156,0.007128673,0.8855587,-0.4644727,0.006639582,0.8867624,-0.46217787,0.005730512,0.8870942,-0.46155286,0.004196823,0.8879205,-0.45997787,0.003439473,0.8885171,-0.45883062,0.0034294731,0.88920474,-0.4574966,0.0038933153,0.8899168,-0.45610633,0.0049237376,0.8900831,-0.45577168,0.0053060274,0.8914649,-0.45305866,0.0047012707,0.8916216,-0.45275688,0.0048201266,0.8921701,-0.45167395,0.005255783,0.89250857,-0.45099986,0.007625831,0.8932335,-0.44952843,0.008444059,0.89372414,-0.44853747,0.0084507875,0.89415616,-0.44767553,0.009385893,0.89524823,-0.44546884,0.009532626,0.89501417,-0.44593582,0.0094669135,0.89448553,-0.4469966,0.010387408,0.89446616,-0.447015,0.010065236,0.89510196,-0.44574788,0.01046267,0.89537495,-0.44519007,0.010642863,0.89610505,-0.44371435,0.010214092,0.89610505,-0.44372442,0.009820378,0.8962318,-0.4434774,0.010059436,0.8975843,-0.4407281,0.01033852,0.8985282,-0.43879396,0.011842342,0.8988811,-0.43803266,0.011630702,0.89947397,-0.43681952,0.011596673,0.8997702,-0.4362099,0.012266256,0.90078074,-0.4341009,0.012760097,0.901186,-0.43324468,0.013367112,0.9015639,-0.43243945,0.013889566,0.9011457,-0.43329376,0.019403415,0.90313154,-0.4289253,0.018859874,0.90435696,-0.4263599,0.019136861,0.90455467,-0.42592794,0.019426124,0.9046339,-0.42574656,0.02197961,0.904226,-0.4264883,0.024437541,0.90352124,-0.42784598,0.026049739,0.9039514,-0.42684105,0.028883532,0.90322924,-0.42818534,0.028238479,0.90364903,-0.42734182,0.027740385,0.90381247,-0.42702866,0.027193801,0.9041208,-0.42641076,0.027486434,0.9047069,-0.42514697,0.027825326,0.9051464,-0.4241883,0.028356677,0.905456,-0.42349187,0.029167911,0.9056038,-0.4231205,0.030029066,0.90531087,-0.42368677,0.030720232,0.9050149,-0.42426914,0.03472917,0.90443003,-0.4252061,0.036462426,0.90443003,-0.42506096,0.039512515,0.9039441,-0.42582133,0.036416575,0.904655,-0.42458588,0.034193754,0.90470576,-0.42466247,0.031271856,0.90515405,-0.4239319,0.029073028,0.9060191,-0.4222371,0.026461866,0.9052366,-0.42408305,0.025535084,0.905124,-0.42438018,0.023494232,0.90519243,-0.42435205,0.021784142,0.90472794,-0.42543253,0.02117962,0.90486294,-0.4251758,0.020582419,0.90528476,-0.42430627,0.02125085,0.9059166,-0.4229226,0.021843648,0.90630525,-0.4220588,0.022546263,0.9064259,-0.4217627,0.02636954,0.9068325,-0.42066544,0.02484634,0.9065849,-0.4212914,0.022925101,0.9069112,-0.42069763,0.020787021,0.9064118,-0.42188329,0.020297972,0.90596527,-0.4228651,0.019685797,0.90580076,-0.42324635,0.017980842,0.9046626,-0.42574906,0.016777579,0.9042096,-0.42675933,0.012800386,0.9038756,-0.4276039,0.011080812,0.90335757,-0.4287451,0.0097319,0.90356797,-0.4283342,0.006320632,0.9046902,-0.42602313,0.00409679,0.9049906,-0.42541182,0.0025791517,0.9057238,-0.4238605,0.0005885081,0.92056495,-0.39058912,-3.685346e-8,0.9068031,-0.42155445,-3.4123204e-8,0.9206776,-0.39032397,-3.13531e-8,0.93347687,-0.35863766,0.0012719388,0.9065597,-0.4220757,0.00082349096,0.9336598,-0.35816017,0.0044954275,0.93519497,-0.35410473,0.006474445,0.9354181,-0.35348418,0.006623642,0.93560416,-0.3529886,0.006723728,0.9358266,-0.35239655,0.007075836,0.935981,-0.35197955,0.009537891,0.93638444,-0.35084644,0.012629672,0.9366453,-0.35005155,0.01583685,0.93735266,-0.3480218,0.018661687,0.9375615,-0.3473185,0.021650877,0.93830305,-0.34513566,0.023373274,0.9388559,-0.34351605,0.024447747,0.9390661,-0.34286606,0.025456026,0.93911916,-0.3426474,0.028238937,0.9388544,-0.34315437,0.031299107,0.93882805,-0.34296107,0.034046005,0.93898404,-0.3422715,0.036276832,0.9389389,-0.34216624,0.037528023,0.9390409,-0.34175107,0.03918117,0.9393748,-0.3406462,0.03973184,0.93923825,-0.34095886,0.041615546,0.9388838,-0.34170955,0.04261974,0.9392128,-0.34068006,0.044357225,0.9395036,-0.33965483,0.047773585,0.93969464,-0.33866158,0.051858816,0.9401462,-0.33680236,0.054031935,0.94026464,-0.33612943,0.05623552,0.94033307,-0.33557606,0.05646779,0.93932134,-0.3383591,0.057959594,0.93819726,-0.34121346,0.059091564,0.9377872,-0.34214532,0.059490163,0.9374435,-0.34301695,0.057082117,0.93718064,-0.34414253,0.05680418,0.93598723,-0.34742072,0.05609772,0.9352194,-0.34959647,0.06607274,0.9330768,-0.35355636,0.06623106,0.934077,-0.35087544,0.06819966,0.9345982,-0.34910607,0.0701733,0.9350014,-0.34763226,0.071134865,0.9350702,-0.34725133,0.07175627,0.935268,-0.3465903,0.07161331,0.93634796,-0.3436918,0.071655296,0.9371444,-0.34150538,0.07210176,0.93743783,-0.34060478,0.07243033,0.9378839,-0.33930466,0.072882555,0.9380597,-0.33872136,0.07419153,0.9381329,-0.3382341,0.07814467,0.93700457,-0.34046426,0.084656484,0.936953,-0.33904618,0.085801505,0.9371872,-0.33810988,0.09303414,0.9373375,-0.33577237,0.09461312,0.9380056,-0.3334573,0.095783524,0.93810165,-0.33285257,0.098577715,0.9378481,-0.33275118,0.10019774,0.93797815,-0.33189967,0.10183752,0.9377845,-0.33194777,0.105295606,0.93758017,-0.33144572,0.10669572,0.93735236,-0.3316422,0.108310364,0.93694764,-0.3322619,0.11153189,0.9359338,-0.33404872,0.11227524,0.9354446,-0.3351681,0.11278531,0.93483627,-0.33669075,0.114515714,0.93263805,-0.3421584,0.11543249,0.9324689,-0.34231144,0.11712341,0.9313987,-0.34464273,0.11877244,0.9311037,-0.34487537,0.117732115,0.9313984,-0.3444361,0.1151509,0.932986,-0.34099463,0.11493155,0.9334695,-0.3397432,0.115635335,0.9338233,-0.33852988,0.11594281,0.93419325,-0.33740225,0.11500159,0.93565655,-0.3336488,0.11464861,0.93641853,-0.33162633,0.11396329,0.9373206,-0.32930607,0.1146837,0.93761724,-0.3282097,0.11923157,0.93891543,-0.32283375,0.11793611,0.93963283,-0.32121825,0.11746214,0.9401778,-0.31979418,0.116700724,0.9406369,-0.31872123,0.11582722,0.94100714,-0.317946,0.11520345,0.94152737,-0.31662965,0.114825815,0.9421957,-0.31477332,0.11461683,0.942677,-0.3134055,0.114641115,0.9432512,-0.3116642,0.11480336,0.9435102,-0.31081945,0.116027795,0.9443231,-0.30788216,0.11864113,0.94514865,-0.3043325,0.12152262,0.9457414,-0.30133936,0.12439414,0.94594115,-0.2995354,0.12824506,0.94605,-0.29756102,0.13232036,0.94605994,-0.29573962,0.13425146,0.94573784,-0.29589948,0.13720073,0.94571286,-0.2946237,0.14078379,0.94537336,-0.29402235,0.14464445,0.94483453,-0.29388046,0.1463626,0.9448267,-0.29305375,0.15006414,0.9445808,-0.29197243,0.15417461,0.9454189,-0.2870772,0.15282671,0.9455327,-0.2874229,0.15219948,0.9456508,-0.28736708,0.15234697,0.94674945,-0.28364748,0.15268043,0.9471373,-0.2821695,0.15413627,0.94762206,-0.27974,0.15494825,0.9476596,-0.27916354,0.15580127,0.9475616,-0.27902147,0.15939684,0.9470265,-0.27880728,0.15812112,0.9474273,-0.27817133,0.15705672,0.94768953,-0.27788082,0.15580195,0.9480754,-0.27727026,0.15560694,0.9483174,-0.27655116,0.15560348,0.948435,-0.27614957,0.15834895,0.94844174,-0.27456126,0.15840104,0.9487697,-0.27339572,0.15849352,0.94888407,-0.2729447,0.15967512,0.94922805,-0.27105343,0.16070148,0.94935936,-0.269985,0.16195273,0.94950575,-0.26871955,0.16155268,0.9496671,-0.26838988,0.16134435,0.949769,-0.2681544,0.15933928,0.95011115,-0.26814133,0.15637071,0.9502063,-0.26954824,0.1552949,0.95049214,-0.2691619,0.15492809,0.9507891,-0.26832318,0.1547458,0.95101434,-0.26762927,0.15483624,0.9515475,-0.26567483,0.15544593,0.95193875,-0.26391125,0.15715699,0.95240825,-0.26118997,0.15919557,0.95272493,-0.25878945,0.16328593,0.95287836,-0.2556571,0.16417071,0.9528093,-0.25534767,0.16509429,0.9526192,-0.25546136,0.16698703,0.9521161,-0.256106,0.17912804,0.9499377,-0.25599122,0.17852561,0.9501401,-0.25566065,0.17828195,0.95026946,-0.2553497,0.17738003,0.95066285,-0.2545123,0.17704092,0.9504866,-0.25540513,0.17647631,0.9504622,-0.25588602,0.17443435,0.95073944,-0.25625595,0.1736933,0.9511678,-0.2551673,0.17367192,0.95141715,-0.25425074,0.17243233,0.95200974,-0.25287268,0.17216523,0.9521632,-0.2524763,0.17162451,0.952246,-0.25253227,0.17125045,0.95182097,-0.2543818,0.17083031,0.95184344,-0.25458023,0.17049992,0.95179534,-0.25498113,0.17328009,0.9507619,-0.2569549,0.17280251,0.9507593,-0.25728604,0.17067383,0.95124775,-0.25690097,0.16898225,0.95172054,-0.25626743,0.16702338,0.95232433,-0.25530687,0.16637771,0.9526371,-0.25456044,0.16736796,0.95267445,-0.25377035,0.1745983,0.95244825,-0.24971533,0.17837991,0.9524425,-0.2470502,0.17748898,0.95247734,-0.24755724,0.17612116,0.9526907,-0.24771293,0.17258024,0.953152,-0.2484297,0.17176507,0.95299023,-0.24961242,0.16851956,0.95292485,-0.2520622,0.1675845,0.9534133,-0.25083566,0.16805565,0.9535667,-0.24993587,0.1694189,0.9537031,-0.24849074,0.16998631,0.9539376,-0.24719986,0.1709527,0.9540847,-0.24596243,0.17326635,0.954292,-0.24352722,0.17406802,0.95446455,-0.24227613,0.1763941,0.95462155,-0.23996423,0.17683671,0.9547517,-0.23911922,0.18261783,0.9548687,-0.23425743,0.18412597,0.95521986,-0.23163041,0.18424833,0.95557576,-0.23005989,0.18590474,0.95574665,-0.22800836,0.18631263,0.9557419,-0.2276952,0.1866348,0.9556473,-0.22782825,0.18703344,0.95549905,-0.22812277,0.18707526,0.95484895,-0.23079501,0.18794571,0.9543969,-0.23195456,0.18800761,0.954172,-0.23282816,0.19154546,0.9536808,-0.23195536,0.19493093,0.9536964,-0.22905253,0.19576028,0.953541,-0.2289924,0.19857566,0.9528191,-0.22957227,0.19926935,0.9524724,-0.23040843,0.20023985,0.95193434,-0.23178668,0.1992099,0.95193434,-0.23267248,0.1968443,0.951927,-0.2347068,0.19767238,0.9518547,-0.23430385,0.20013258,0.95104754,-0.23548986,0.20179279,0.95079386,-0.23509727,0.20126486,0.9506604,-0.2360873,0.20100872,0.95043415,-0.23721392,0.20310287,0.94942784,-0.23944929,0.20360477,0.9486425,-0.2421208,0.20411709,0.9482766,-0.24312091,0.20563109,0.9482641,-0.24189037,0.20742519,0.9480171,-0.24132623,0.20789115,0.94801736,-0.24092394,0.2075415,0.9486336,-0.23879026,0.20768028,0.9490357,-0.23706576,0.20807219,0.9490676,-0.23659386,0.20945999,0.94867057,-0.23696135,0.20987383,0.9488916,-0.23570679,0.21029037,0.9488558,-0.23547952,0.21109909,0.9486894,-0.23542634,0.21183184,0.9484674,-0.23566265,0.21273991,0.9481214,-0.236236,0.21339574,0.9479341,-0.23639639,0.21393943,0.94767976,-0.23692405,0.21373832,0.9475646,-0.23756523,0.21348059,0.94753766,-0.23790431,0.21294202,0.94735307,-0.23911901,0.21407294,0.9472518,-0.23850963,0.21455328,0.947131,-0.23855771,0.21491222,0.9469909,-0.23879063,0.21599174,0.94679993,-0.23857394,0.21611337,0.9466157,-0.23919384,0.21695414,0.9472048,-0.23608035,0.21669719,0.9475423,-0.23495945,0.21688136,0.9478556,-0.23352137,0.21798716,0.94871473,-0.22895835,0.21868512,0.9489838,-0.22717072,0.21937211,0.9490442,-0.22625408,0.22088866,0.948933,-0.2252428,0.22245055,0.9485643,-0.22525878,0.22410478,0.9484069,-0.22427979,0.22555865,0.9481052,-0.22409786,0.23027796,0.94891286,-0.2157231,0.22956893,0.9497274,-0.21287552,0.22955045,0.9497951,-0.21259297,0.22930141,0.9499651,-0.21210176,0.22861002,0.95036095,-0.21107218,0.22817312,0.9506565,-0.21021253,0.22888358,0.9504903,-0.2101915,0.23182228,0.94956905,-0.21113276,0.23320735,0.9491114,-0.2116646,0.2356335,0.9482349,-0.21290241,0.23763126,0.9474908,-0.21399198,0.23837964,0.9471723,-0.21456888,0.23881644,0.9468967,-0.21529828,0.23980945,0.9466641,-0.2152174,0.24157186,0.9460933,-0.21575545,0.24853794,0.9443968,-0.2152755,0.24713531,0.94515365,-0.21356195,0.24708317,0.94530445,-0.21295404,0.24903263,0.9452188,-0.211055,0.24847843,0.9458895,-0.20869026,0.2487503,0.9461957,-0.20697096,0.24644408,0.94779557,-0.20235832,0.24569438,0.94837254,-0.20055856,0.24493082,0.9488367,-0.19929329,0.24555062,0.9488857,-0.19829477,0.24263293,0.94967085,-0.19812769,0.24191785,0.94964063,-0.19914414,0.24108149,0.9502453,-0.19726527,0.2405041,0.95060754,-0.19622205,0.24034044,0.9508039,-0.19546975,0.24360974,0.9497282,-0.19664846,0.24116263,0.95153177,-0.19086088,0.2401493,0.9523958,-0.1878046,0.23846067,0.9533701,-0.1849918,0.23881073,0.95271254,-0.18790506,0.23872936,0.95237213,-0.18972518,0.23934533,0.9514843,-0.19336855,0.23800334,0.9515517,-0.19468907,0.23661754,0.9519495,-0.19443342,0.23469822,0.9527436,-0.19286369,0.2335629,0.95338935,-0.19104204,0.23349084,0.9536421,-0.18986522,0.23469076,0.95396495,-0.18673827,0.23424624,0.95397973,-0.18722,0.23318684,0.95416665,-0.1875898,0.2310171,0.9546411,-0.18786024,0.23021686,0.9547877,-0.18809766,0.22937578,0.95515305,-0.18726842,0.2288133,0.9556516,-0.18540372,0.2297451,0.95572054,-0.18388961,0.22880182,0.95601475,-0.18353608,0.22804122,0.95616484,-0.18370079,0.2264543,0.9565362,-0.18373081,0.22543645,0.9568762,-0.18321107,0.2256315,0.9568517,-0.18309902,0.22581552,0.957013,-0.18202595,0.22509988,0.9572702,-0.18155925,0.22503774,0.9574878,-0.18048584,0.22511001,0.95763373,-0.17961943,0.2260717,0.95765924,-0.17827053,0.22561555,0.95782614,-0.17795141,0.22517036,0.9579756,-0.17771044,0.22531603,0.9580849,-0.17693529,0.22516826,0.9582765,-0.17608331,0.22479725,0.95845026,-0.1756111,0.22466248,0.95854944,-0.17524211,0.22484155,0.9587282,-0.17403023,0.22609708,0.95905465,-0.17057036,0.22658099,0.9589595,-0.17046323,0.22818716,0.9584928,-0.17094488,0.23037098,0.95799744,-0.17079273,0.23029095,0.95826656,-0.16938502,0.23034495,0.95829356,-0.16915864,0.23010328,0.9584211,-0.16876458,0.22935982,0.95863944,-0.16853632,0.22867927,0.9588509,-0.1682578,0.22841313,0.9590013,-0.16776152,0.22837907,0.9590583,-0.16748199,0.22922355,0.9589063,-0.16719817,0.23012532,0.95881027,-0.16650882,0.23079886,0.9586632,-0.1664233,0.23165281,0.9585587,-0.16583814,0.23060343,0.9589218,-0.16519994,0.23031773,0.9598629,-0.16005287,0.23048289,0.96005607,-0.15865067,0.23085675,0.9600735,-0.15800042,0.2324603,0.9598655,-0.15690885,0.23301284,0.95975286,-0.15677828,0.23425765,0.9594457,-0.15680335,0.23453802,0.9596403,-0.15518504,0.23515297,0.9594954,-0.15515026,0.23690803,0.9589827,-0.15564956,0.23828778,0.95847607,-0.15666075,0.2385942,0.958335,-0.15705682,0.23928635,0.95805943,-0.15768373,0.24015816,0.9576298,-0.15896311,0.241133,0.9572051,-0.16004139,0.24133603,0.9571827,-0.1598694,0.24190418,0.9570375,-0.15988,0.24570027,0.9561242,-0.15955546,0.2458747,0.9564472,-0.15733552,0.24627545,0.9563899,-0.15705654,0.24699153,0.9561549,-0.15736282,0.2469133,0.9559535,-0.1587034,0.2493187,0.9557787,-0.1559719,0.24880725,0.95610493,-0.15478475,0.24905509,0.9561499,-0.15410703,0.25009102,0.9561559,-0.1523825,0.25152412,0.95598125,-0.15111403,0.25193346,0.9562083,-0.14898083,0.25381556,0.95615834,-0.14607821,0.25413865,0.95619804,-0.14525448,0.2537248,0.9566306,-0.14311422,0.25409883,0.95690125,-0.1406195,0.2502228,0.9586431,-0.13561706,0.24951391,0.95864356,-0.13691346,0.24883337,0.9587265,-0.13756984,0.24834952,0.9589107,-0.13715981,0.24815978,0.9590073,-0.13682719,0.24839376,0.9592637,-0.13458736,0.25088647,0.9593099,-0.12953983,0.2515468,0.959688,-0.12539195,0.25362775,0.95981795,-0.12009346,0.25616103,0.95934933,-0.118449904,0.2580447,0.95923835,-0.11521579,0.2592374,0.95898515,-0.114645146,0.2603623,0.9588444,-0.113264695,0.26139897,0.95849013,-0.113873586,0.2618997,0.9582156,-0.11502768,0.26190156,0.95816004,-0.11548569,0.2624578,0.9579556,-0.11591801,0.2627187,0.95791256,-0.1156824,0.2636523,0.9576899,-0.11540151,0.26444134,0.9574839,-0.11530569,0.2657799,0.9570276,-0.11601389,0.26932865,0.955958,-0.11664649,0.270369,0.9556817,-0.11650373,0.27167436,0.9553086,-0.11652695,0.27253184,0.95496225,-0.1173603,0.27276608,0.95481807,-0.117987856,0.27020973,0.9557787,-0.11607654,0.26927778,0.9560077,-0.11635585,0.26744148,0.9565486,-0.116145976,0.2659254,0.95704216,-0.115559205,0.26283827,0.95805335,-0.11423577,0.26175457,0.95861906,-0.11195532,0.25945467,0.959229,-0.11208501,0.25835693,0.95954823,-0.111887835,0.25761116,0.9598416,-0.11108806,0.25588968,0.9604756,-0.10957689,0.25499338,0.96084625,-0.108410664,0.25468647,0.961,-0.10776694,0.25461945,0.96107894,-0.10722015,0.2574261,0.96111023,-0.099994436,0.25645295,0.96128494,-0.10081252,0.25592363,0.9613987,-0.10107211,0.2559963,0.9614892,-0.10002196,0.25627658,0.9615154,-0.099047504,0.25828347,0.96101063,-0.09873277,0.2583072,0.9613455,-0.09535307,0.25896463,0.9612346,-0.094685026,0.26032364,0.9609272,-0.09407729,0.26125836,0.96068835,-0.093925536,0.26271453,0.96029484,-0.09388764,0.26353833,0.9600193,-0.09439535,0.2637967,0.9599157,-0.09472688,0.26345286,0.95984715,-0.09636422,0.26267523,0.9599327,-0.09762689,0.26125672,0.9601959,-0.09883726,0.2625906,0.9597522,-0.09960902,0.26413068,0.95945626,-0.09838,0.26756513,0.9586831,-0.09662105,0.2682219,0.9585914,-0.09570533,0.26820117,0.9587575,-0.09408596,0.26985985,0.9583206,-0.09379364,0.27208886,0.9579179,-0.09143794,0.27258438,0.95787364,-0.090420365,0.2733922,0.95765114,-0.09033831,0.2737297,0.95761114,-0.0897383,0.27431792,0.95749885,-0.089138,0.27644074,0.9571333,-0.086465724,0.27660415,0.9572049,-0.08514098,0.2781317,0.9570133,-0.08226984,0.2788936,0.956846,-0.08163366,0.2797797,0.9566132,-0.08133004,0.28580818,0.95515984,-0.07735219,0.2844413,0.9554898,-0.07830961,0.28214976,0.9560967,-0.079187326,0.27583778,0.9578627,-0.080079146,0.27477896,0.95797616,-0.08232993,0.27387708,0.9582061,-0.0826583,0.26927444,0.9594176,-0.08372063,0.26847905,0.9594371,-0.08602052,0.2667203,0.95977634,-0.08769066,0.25999,0.961417,-0.08990259,0.258405,0.9616878,-0.091561034,0.25665358,0.9620714,-0.09245287,0.25593996,0.9622602,-0.09246645,0.2550351,0.96250886,-0.09237846,0.25419092,0.96279544,-0.09171653,0.25267398,0.96306235,-0.09309553,0.25105578,0.963472,-0.09323483,0.2489116,0.96385443,-0.095014125,0.24650155,0.9643658,-0.0961021,0.24425986,0.9647416,-0.098034695,0.24193774,0.96525943,-0.09869351,0.23814304,0.9659937,-0.10071757,0.2326191,0.9672366,-0.10169441,0.22998121,0.96793157,-0.10108003,0.22947903,0.9681566,-0.1000609,0.22933154,0.96829724,-0.09903278,0.22832873,0.9686327,-0.098064564,0.22832668,0.9686721,-0.09767949,0.2294324,0.96846116,-0.09717884,0.2272295,0.9691778,-0.09519007,0.22623953,0.9695744,-0.09349426,0.22586937,0.9695967,-0.09415542,0.22717096,0.96901006,-0.09702021,0.22704223,0.9689203,-0.09821044,0.22769476,0.968678,-0.09908574,0.22864656,0.9684266,-0.09935162,0.228436,0.9684459,-0.09964732,0.227969,0.96855134,-0.09969163,0.2260092,0.96903634,-0.09944043,0.2234569,0.96968466,-0.09888716,0.22247006,0.9699625,-0.09838652,0.22343074,0.9698365,-0.09744674,0.22023594,0.9707672,-0.09543121,0.21930118,0.97104615,-0.094743475,0.21832082,0.97134894,-0.09390031,0.21852495,0.9713757,-0.09314584,0.21897055,0.9712995,-0.09289331,0.21922615,0.97119766,-0.09335423,0.22241625,0.97052145,-0.092839256,0.22194053,0.97062075,-0.09293931,0.22099705,0.9708406,-0.09289151,0.22019231,0.97107977,-0.09230077,0.21978693,0.9712127,-0.091867566,0.21731251,0.9718934,-0.0905454,0.21724878,0.97199506,-0.0896024,0.21701622,0.97210306,-0.08899189,0.21742307,0.9720593,-0.08847549,0.21841535,0.9718808,-0.08799143,0.2176709,0.9720453,-0.08801898,0.2166126,0.9722897,-0.08793058,0.21569932,0.9725871,-0.08687973,0.21513934,0.9727903,-0.08598921,0.21512069,0.97286606,-0.08517484,0.21441096,0.97312534,-0.083994284,0.21423917,0.9732713,-0.08273178,0.21459197,0.9734128,-0.080110945,0.21601258,0.9732265,-0.078541696,0.21624032,0.9733761,-0.076020174,0.21766087,0.97325957,-0.07341333,0.2180345,0.97325724,-0.07232783,0.21795313,0.9733306,-0.07158195,0.2184576,0.9732529,-0.07109894,0.21948832,0.9730206,-0.07110396,0.22101709,0.9726531,-0.07139616,0.22232467,0.9724111,-0.070628986,0.22266583,0.9724679,-0.06874657,0.2237755,0.97228867,-0.06767001,0.22338001,0.97242975,-0.06694584,0.22373228,0.97241986,-0.0659056,0.22237551,0.9727203,-0.06606279,0.22247733,0.9726681,-0.06648732,0.21957186,0.97330105,-0.06688236,0.21779272,0.9736666,-0.06737744,0.21581376,0.9740809,-0.067755155,0.21494582,0.9743346,-0.06686137,0.21462944,0.9745048,-0.06537968,0.21485096,0.9744947,-0.0648006,0.21523318,0.97442406,-0.06459385,0.2150856,0.9745576,-0.063053034,0.21533856,0.9745476,-0.062339205,0.21652184,0.9743758,-0.060910534,0.21496682,0.9747639,-0.060205474,0.21544263,0.97473127,-0.05902013,0.2157717,0.9748883,-0.05509431,0.21450326,0.97505146,-0.057122678,0.21298875,0.9752955,-0.05860518,0.21075633,0.97573364,-0.059376605,0.20978515,0.9758807,-0.060391054,0.20893054,0.9760977,-0.05984435,0.2083471,0.9762539,-0.05932772,0.2079401,0.97639126,-0.058489498,0.20753898,0.9766525,-0.055474952,0.20673887,0.97686714,-0.05467781,0.2060314,0.9771587,-0.05207605,0.20618607,0.97715855,-0.051463593,0.20821969,0.9767918,-0.05022265,0.20826781,0.9768259,-0.04935237,0.20868099,0.97677135,-0.04868233,0.21107666,0.97632825,-0.047220513,0.21711898,0.975142,-0.044243112,0.21890181,0.97476727,-0.043712586,0.22020124,0.97448206,-0.043544073,0.22098456,0.9743327,-0.042914785,0.22254647,0.97397864,-0.04287931,0.22384016,0.9736685,-0.043187518,0.22446035,0.9735045,-0.04366403,0.22723384,0.97283685,-0.044195514,0.22826663,0.9726006,-0.044073027,0.22864594,0.9724941,-0.044455193,0.22968969,0.97212166,-0.04713913,0.22926244,0.9722839,-0.045855854,0.22948797,0.9722771,-0.044860486,0.22885703,0.9724725,-0.04383794,0.23001522,0.9722849,-0.041893605,0.23011307,0.9723287,-0.040309098,0.23067038,0.9722534,-0.038916707,0.2304934,0.9724089,-0.035968333,0.23101817,0.97229105,-0.0357869,0.23175044,0.97208726,-0.036579337,0.23244911,0.97189665,-0.03720671,0.23403336,0.9714461,-0.03899853,0.23951805,0.97000057,-0.04159313,0.24042788,0.96978974,-0.041259076,0.24167722,0.9694936,-0.040917322,0.24193093,0.96945894,-0.04023444,0.24100201,0.9696678,-0.040772595,0.23919956,0.97011113,-0.040840987,0.23793298,0.970417,-0.04097163,0.23718657,0.97062427,-0.040386196,0.23714826,0.9706423,-0.040177148,0.23673421,0.9707556,-0.039882075,0.23584762,0.9710411,-0.03814535,0.23548,0.9711658,-0.037231766,0.23534139,0.9712342,-0.036312032,0.23509762,0.9713117,-0.035815492,0.23633559,0.9710533,-0.034654554,0.23666157,0.97099423,-0.03408082,0.23731321,0.97085756,-0.03343675,0.23812774,0.970669,-0.03312072,0.23844782,0.97062427,-0.03211155,0.23928796,0.9704183,-0.032088086,0.2401847,0.97021216,-0.03161757,0.23937273,0.9704366,-0.030879611,0.2396972,0.97037464,-0.030304046,0.24219833,0.9698346,-0.027582467,0.24166708,0.9699639,-0.027695559,0.24048844,0.970253,-0.027827963,0.24026906,0.9703192,-0.027411701,0.24187118,0.96998256,-0.025143301,0.24256179,0.9698388,-0.024011325,0.24044006,0.9703365,-0.025212018,0.23918232,0.9706409,-0.025457734,0.23872559,0.9707715,-0.024753772,0.23846114,0.9708727,-0.023291862,0.2385099,0.9708823,-0.022374794,0.23907158,0.97077316,-0.021077836,0.23858824,0.9709331,-0.019094042,0.23935093,0.97074986,-0.018865652,0.23947687,0.9707281,-0.01837748,0.239214,0.9708153,-0.01715691,0.23966566,0.970722,-0.016098706,0.24051635,0.9705239,-0.01533615,0.23980285,0.9707195,-0.014077102,0.23986018,0.97071135,-0.013659223,0.24112998,0.9704047,-0.013079746,0.24032639,0.970612,-0.012475435,0.24196781,0.97020906,-0.012082254,0.24313667,0.9699144,-0.012276055,0.24323879,0.96988344,-0.012690643,0.24304868,0.9699266,-0.013029671,0.24250042,0.9700615,-0.01320259,0.24224333,0.9701223,-0.013450725,0.24316327,0.9698774,-0.014472345,0.24261178,0.97001153,-0.0147346,0.24218997,0.9701109,-0.01512706,0.24274623,0.9699637,-0.015642446,0.24197423,0.97012335,-0.017584149,0.24392305,0.96967655,-0.015131798,0.24540757,0.9693558,-0.01115478,0.24594182,0.96922946,-0.010340358,0.24647057,0.96911776,-0.00794119,0.24776773,0.96879834,-0.006399273,0.24781387,0.9687979,-0.004345895,0.24883972,0.96854436,-0.00080331496,0.2510792,0.96796495,0.0017742966,0.2508667,0.9680169,0.0030201562,0.25252798,0.96757346,0.0055846805,0.25642183,0.96650875,0.010427233,0.2552735,0.96678656,0.01261536,0.25560558,0.9666887,0.013369082,0.25654635,0.96643347,0.0137967095,0.25730294,0.96623284,0.013759111,0.26371798,0.9644764,0.015430017,0.2613407,0.96509063,0.017352413,0.2623035,0.9648214,0.017792221,0.26277503,0.9646873,0.018103642,0.2625158,0.9647425,0.018905962,0.2640828,0.9643042,0.019434666,0.2664182,0.9637351,0.0153611135,0.26769048,0.9633955,0.0145245865,0.26851705,0.9631793,0.013573575,0.26977885,0.9628113,0.014620384,0.26822513,0.9632294,0.015631357,0.26768684,0.9633699,0.016192,0.26754734,0.9633973,0.01685234,0.26793674,0.96327066,0.01787661,0.2696733,0.96276736,0.018850941,0.27034405,0.96259433,0.01806131,0.27190655,0.9621957,0.01569197,0.2773433,0.9606758,0.013517453,0.277919,0.9605176,0.012924035,0.2785607,0.9603459,0.01181545,0.27943534,0.9600787,0.012837985,0.28027546,0.95982826,0.01324474,0.2817334,0.9593881,0.014172838,0.28229746,0.9591603,0.017878056,0.2827972,0.9589914,0.019006087,0.28303558,0.9589145,0.019333234,0.28355953,0.95874953,0.019833757,0.28402844,0.9586038,0.02016528,0.28512052,0.95827484,0.020387385,0.28586525,0.95805824,0.020136058,0.28659007,0.9578563,0.019428821,0.2885028,0.95729804,0.018616648,0.2871513,0.957685,0.019585337,0.28614613,0.95795757,0.020922055,0.2820478,0.95920706,0.01925708,0.28144333,0.9594113,0.017874995,0.27991897,0.95988774,0.016151525,0.27821174,0.96041125,0.014436866,0.27758208,0.96058893,0.014735343,0.2771229,0.9607167,0.015042543,0.27691975,0.9607515,0.01649376,0.2773525,0.9605704,0.019495092,0.2778125,0.9603987,0.021320768,0.27930558,0.9599009,0.024055699,0.2784355,0.9601125,0.025643986,0.27896836,0.9599131,0.027267646,0.27917925,0.95973897,0.030984495,0.27944475,0.95964104,0.031617742,0.27849162,0.95960337,0.040046953,0.278548,0.95951295,0.041784108,0.27905765,0.9591584,0.046281766,0.27992326,0.958894,0.046532176,0.28062716,0.9586909,0.046478167,0.28150964,0.95839095,0.04731919,0.28239784,0.95810705,0.047773916,0.28352278,0.9577706,0.04785785,0.2844916,0.9574765,0.047992956,0.28576842,0.9570933,0.048049588,0.28695273,0.95674294,0.047969654,0.2876682,0.9565553,0.047423687,0.2908819,0.95559156,0.04724947,0.2924722,0.9550674,0.048023175,0.2932318,0.95482314,0.04824849,0.29433927,0.95449,0.048096385,0.2965076,0.9538217,0.048035663,0.29705292,0.9536554,0.047968157,0.29889637,0.9531365,0.046815854,0.29955378,0.9529732,0.045930665,0.30268955,0.952189,0.04141338,0.30448702,0.9516219,0.04127289,0.30506268,0.95144314,0.041142326,0.3077051,0.95065254,0.039715946,0.30814952,0.95053107,0.039173823,0.31504992,0.9484026,0.035722435,0.3157723,0.94814366,0.036214344,0.31879723,0.9470752,0.03764177,0.32154688,0.9461058,0.038619537,0.32355523,0.94545335,0.03781501,0.33418733,0.9417366,0.03809316,0.3344404,0.94159603,0.03932642,0.33501515,0.9413334,0.040696565,0.33593655,0.9410054,0.040687643,0.33700538,0.94062734,0.040590998,0.3346151,0.94139093,0.042613037,0.33277258,0.9421009,0.041332114,0.3300249,0.94310963,0.04034553,0.32817796,0.9437705,0.039955687,0.32620165,0.9444638,0.039757375,0.3248611,0.9449227,0.03982947,0.3237895,0.9452616,0.04050722,0.32390437,0.945189,0.04127598,0.3246516,0.94489145,0.042208225,0.3278122,0.94374377,0.04343869,0.3300536,0.94289523,0.04486904,0.3310219,0.94254184,0.045159273,0.32908913,0.9432119,0.045295034,0.32740158,0.9438398,0.04443692,0.32580847,0.94441867,0.043842968,0.32461575,0.94483143,0.043797396,0.3226236,0.9455055,0.043969322,0.32167858,0.94583744,0.043753974,0.32108632,0.9460484,0.043544114,0.31839427,0.94698626,0.042919304,0.31798196,0.9471704,0.0419017,0.31619886,0.94787925,0.039283942,0.31572282,0.94805396,0.038894255,0.31398395,0.94866896,0.03796474,0.31336996,0.9488881,0.037558362,0.3123293,0.9492509,0.0370573,0.3113853,0.9495378,0.037645143,0.31084207,0.9496919,0.03824296,0.3104334,0.94977623,0.039449118,0.31037703,0.9497461,0.040601436,0.3055782,0.9508957,0.049186125,0.3041648,0.9513489,0.04918363,0.3035483,0.95153624,0.04936801,0.30334407,0.95158523,0.049678747,0.3022481,0.95187896,0.050719846,0.30063117,0.95225227,0.05325879,0.29754603,0.9530891,0.05556562,0.2963634,0.9531641,0.060389463,0.29637486,0.95307153,0.061778873,0.29688713,0.9528137,0.06327773,0.2985701,0.95213693,0.06550674,0.29854375,0.95208746,0.066340916,0.2990842,0.95189726,0.066635415,0.29984134,0.951636,0.06696294,0.30052122,0.9514426,0.06666317,0.30430967,0.9502012,0.067180924,0.30110317,0.9510792,0.06917575,0.30040655,0.95123434,0.070064954,0.30028307,0.9510889,0.07252585,0.3011814,0.95065993,0.07440087,0.30132303,0.95057213,0.07494718,0.3027266,0.95013,0.074897,0.3052252,0.9493315,0.07488169,0.30675748,0.948851,0.07471072,0.30760658,0.94861394,0.07422811,0.3098719,0.9480274,0.07227372,0.31077498,0.94782054,0.071098946,0.31280348,0.947275,0.06945536,0.31325203,0.94721353,0.068261966,0.31439722,0.9470216,0.06560886,0.31749475,0.94601244,0.06525014,0.318612,0.94566274,0.0648721,0.31923008,0.94548386,0.06443944,0.3196723,0.945382,0.06373801,0.31980008,0.94536805,0.06330175,0.31951118,0.94550246,0.06275121,0.31875494,0.9454408,0.06735662,0.31525308,0.94646865,0.06937258,0.314305,0.9465426,0.07259069,0.31507644,0.94624287,0.07315249,0.31364346,0.94666076,0.07389951,0.31254518,0.94675356,0.077286616,0.30800995,0.9479357,0.08091824,0.30716792,0.94829416,0.07991286,0.30660334,0.94851387,0.07947255,0.3047231,0.9491766,0.07878848,0.30182418,0.95004493,0.079477966,0.29952547,0.9508348,0.07872529,0.29930103,0.9509659,0.07799259,0.29649508,0.95197344,0.07640176,0.29562968,0.9523017,0.07566099,0.29535437,0.9524145,0.07531546,0.29472762,0.95264155,0.074898325,0.2937955,0.95292646,0.07493608,0.2932142,0.95309705,0.0750428,0.29193687,0.95349216,0.07500333,0.29106668,0.9537807,0.07471631,0.28995612,0.9541414,0.07442912,0.28811198,0.95468295,0.07464549,0.2861739,0.95526093,0.0747063,0.28498465,0.95555013,0.07554931,0.28468823,0.9555556,0.07658994,0.28483233,0.95547646,0.07704069,0.28515443,0.95533955,0.07754521,0.2869405,0.95481324,0.07743926,0.29817864,0.95082873,0.083751194,0.2983156,0.9505957,0.08588189,0.29902038,0.9502174,0.08759957,0.30445135,0.9480182,0.092579335,0.30550048,0.947686,0.092524186,0.30885524,0.94674206,0.09103835,0.31144384,0.94590825,0.09088645,0.3189361,0.94353306,0.08958322,0.32206902,0.94232327,0.09109543,0.3243637,0.9413107,0.09339342,0.3257211,0.94073695,0.094444714,0.33116543,0.93851095,0.0976047,0.33263865,0.93793267,0.098152295,0.33423024,0.9373859,0.09796831,0.33629632,0.93669605,0.097494945,0.3377446,0.93616986,0.09754296,0.34099242,0.9348148,0.09922443,0.34195894,0.9344733,0.0991151,0.34265026,0.93429565,0.098399386,0.34283397,0.93448174,0.09596225,0.34443063,0.93414575,0.09348391,0.34441164,0.93430597,0.091940135,0.35029665,0.9333215,0.07876083,0.3513361,0.9329857,0.0781061,0.35161898,0.93297255,0.076982416,0.35613257,0.93124974,0.077094525,0.35864934,0.9303041,0.076842986,0.362524,0.92871064,0.07792848,0.36256748,0.92863065,0.07867584,0.36294702,0.92842346,0.079368554,0.36565655,0.92723393,0.08082352,0.36718297,0.92659175,0.081267245,0.36976895,0.9255531,0.08137829,0.3717265,0.9250664,0.07792027,0.3728798,0.92480594,0.07546293,0.37336937,0.92475337,0.07366462,0.3724518,0.9244768,0.08137722,0.37145853,0.924838,0.08181183,0.3703321,0.925201,0.082808845,0.36964756,0.92544556,0.08313355,0.36875233,0.9257288,0.083951645,0.3662982,0.92679775,0.08289533,0.36039898,0.9292331,0.08147699,0.35792968,0.9302228,0.08106689,0.35574478,0.9310315,0.08139988,0.35234204,0.93217796,0.08306253,0.35024253,0.93293846,0.08340232,0.34875074,0.93344444,0.08399048,0.34833038,0.93352723,0.08481063,0.34826887,0.9334285,0.086139314,0.34865206,0.93296087,0.0895864,0.3485344,0.9327128,0.092577554,0.34937143,0.9320156,0.09636685,0.3506518,0.9314303,0.09736986,0.3542269,0.9299088,0.098959185,0.3562706,0.92915237,0.09872738,0.3578037,0.9286044,0.09833774,0.36604914,0.9251741,0.10030401,0.36932722,0.9233048,0.10538325,0.3705026,0.9227244,0.1063363,0.37730345,0.91918236,0.11289792,0.3791928,0.9174826,0.120160446,0.3799504,0.91710556,0.12064429,0.38290387,0.91528845,0.12502658,0.38081086,0.9158991,0.12693274,0.3799593,0.916079,0.12818053,0.37937194,0.9161295,0.12955147,0.37787724,0.91595966,0.13500614,0.37614173,0.9163726,0.1370351,0.37421635,0.9169526,0.1384196,0.37312132,0.9171348,0.14015783,0.3705163,0.91803664,0.14116089,0.36914533,0.9186091,0.14102851,0.36840641,0.9189038,0.14104061,0.36788124,0.91933197,0.1396144,0.36935043,0.91923565,0.13633065,0.36920977,0.9194476,0.13527861,0.36961156,0.9193413,0.13490301,0.37109277,0.91882116,0.13437949,0.3725702,0.91834825,0.13352124,0.37276882,0.9184278,0.1324149,0.37222666,0.9188171,0.1312343,0.3730007,0.91845244,0.1315887,0.3732045,0.91822714,0.13257974,0.3734383,0.91808426,0.13291012,0.37405854,0.9177719,0.13332272,0.37528497,0.9173986,0.13244274,0.37610343,0.91719526,0.13152607,0.3761588,0.9173948,0.12996668,0.3749594,0.91835463,0.12661052,0.37544864,0.91832966,0.12533523,0.37429774,0.9188632,0.12486668,0.3722717,0.9196773,0.124929465,0.37083265,0.92024225,0.12504955,0.3718213,0.9200931,0.12319738,0.37116835,0.9205568,0.12169333,0.36382222,0.9244593,0.11405446,0.36283442,0.9251848,0.11128474,0.36197048,0.92565244,0.11020421,0.36061692,0.92629886,0.1092054,0.35898474,0.9270075,0.108568184,0.352423,0.929974,0.10462509,0.35185692,0.93030167,0.1036125,0.3510337,0.93062603,0.103491694,0.35033506,0.9308934,0.103454515,0.3476249,0.9317342,0.10501557,0.33599943,0.9359269,0.10557074,0.3344597,0.9365745,0.104713134,0.32960248,0.9384521,0.103294864,0.32354343,0.9407181,0.10182856,0.32183185,0.94132304,0.10166199,0.32088855,0.9417383,0.100794666,0.32014105,0.94207746,0.09999902,0.31937602,0.9423926,0.09947456,0.31368327,0.9445075,0.09751147,0.31142658,0.94530946,0.09697178,0.30825794,0.946374,0.09671241,0.30495268,0.9472477,0.09861875,0.3008693,0.94858885,0.09826945,0.30027544,0.94892657,0.09681454,0.2991653,0.94940084,0.095593825,0.2973317,0.9500899,0.094461985,0.29463598,0.9511242,0.09247949,0.29365706,0.9514841,0.09188916,0.28967676,0.9528902,0.0899308,0.28750917,0.95362747,0.08906826,0.2842312,0.9547162,0.08791841,0.28311196,0.9549914,0.08853859,0.2820922,0.95522845,0.08923361,0.28093553,0.9554279,0.0907344,0.28081065,0.95537984,0.09162259,0.27900213,0.95580375,0.092719756,0.2786295,0.9558631,0.09322707,0.27759123,0.9557436,0.09745388,0.27659014,0.955799,0.09973037,0.27638254,0.9557035,0.10121003,0.27520573,0.9559562,0.102026775,0.27491063,0.956082,0.10164352,0.27455378,0.95619005,0.101591386,0.27433845,0.95621246,0.10196115,0.27435678,0.95607746,0.10317089,0.27816403,0.95460457,0.10655964,0.28209442,0.95314604,0.10924909,0.29499233,0.9474777,0.12355394,0.29521337,0.9471116,0.12581214,0.29704747,0.94631064,0.12751074,0.29764768,0.94598013,0.12855919,0.2983682,0.94575524,0.12854348,0.2997197,0.94530445,0.12871529,0.30044663,0.94495225,0.12960346,0.3010107,0.9447471,0.12979022,0.3017713,0.94448256,0.12994923,0.3023637,0.9443612,0.12945297,0.3078285,0.94264203,0.12910295,0.31073117,0.94144183,0.13089488,0.31184575,0.9409985,0.13143077,0.31490722,0.9397261,0.13322258,0.31444404,0.93977773,0.13395076,0.3168169,0.938747,0.13557701,0.31828386,0.93813175,0.13639736,0.31950378,0.9376418,0.13691308,0.32034317,0.9373378,0.13703308,0.32131106,0.9370007,0.13707277,0.32075563,0.93726176,0.13658775,0.31994015,0.93761957,0.13604343,0.32256243,0.9371872,0.13279182,0.32373366,0.9368553,0.13228258,0.32502273,0.9365501,0.13127907,0.32607445,0.9361872,0.1312593,0.32897276,0.93505,0.1321303,0.3320749,0.93400246,0.13177902,0.3340288,0.9333744,0.1312895,0.33489802,0.93312556,0.13084361,0.33528543,0.9330627,0.13029855,0.3350614,0.9333062,0.12912542,0.33563083,0.9332713,0.12789299,0.33738762,0.9324371,0.12934674,0.3407447,0.93084824,0.13196445,0.3434984,0.92922455,0.13620047,0.34164047,0.9298,0.1369444,0.33895975,0.930505,0.13880496,0.33775264,0.93092394,0.13893822,0.3339344,0.9320329,0.14072147,0.33178073,0.9327875,0.14081588,0.33089772,0.9329032,0.1421208,0.32888615,0.9333383,0.14392188,0.32705957,0.93380743,0.1450369,0.3257624,0.93406117,0.14631666,0.32474315,0.93440557,0.14638335,0.3235998,0.9346609,0.14728248,0.32266662,0.9348341,0.14822754,0.3208858,0.93525773,0.14941649,0.32085767,0.9351216,0.15032604,0.31979492,0.9356006,0.14960885,0.3172844,0.9362782,0.15071072,0.31476262,0.93688387,0.15222704,0.31047085,0.93773925,0.15573375,0.307475,0.93814975,0.15916722,0.30476186,0.9382701,0.16361389,0.30131364,0.9388028,0.16691147,0.30106407,0.9387767,0.16750763,0.30115423,0.9386204,0.16821985,0.30224156,0.9378425,0.1705916,0.30196184,0.9376018,0.1724004,0.30251878,0.9372267,0.1734603,0.30492437,0.9364093,0.17366278,0.3108465,0.9342683,0.17469189,0.31093413,0.9344875,0.17335819,0.3150985,0.93168813,0.18074901,0.31416532,0.93173146,0.18214458,0.315493,0.9310872,0.18314144,0.3122129,0.9316361,0.18594971,0.312219,0.93174475,0.18539429,0.3120333,0.93193436,0.1847528,0.3099933,0.93263656,0.18464343,0.3089853,0.9329302,0.18484949,0.30775744,0.9334087,0.18448198,0.3072812,0.9336183,0.18421498,0.30686674,0.93360424,0.18497548,0.3062424,0.93305534,0.18874137,0.3069956,0.9325378,0.19007088,0.3060113,0.9328891,0.18993436,0.30697486,0.93131983,0.19598408,0.30615008,0.9308436,0.19950536,0.30442905,0.931177,0.2005799,0.30314946,0.931209,0.2023615,0.301993,0.93136674,0.20336229,0.30172572,0.93129313,0.20409474,0.3016591,0.9309021,0.20596857,0.3008391,0.93085074,0.20739505,0.30103892,0.93028975,0.20961048,0.30161372,0.9296082,0.21179646,0.30366573,0.92849785,0.21372618,0.30336383,0.92838323,0.21465078,0.30160195,0.92895854,0.21464466,0.30100465,0.92909473,0.21489345,0.30045572,0.92891496,0.21643324,0.30004543,0.92886794,0.2172029,0.29996207,0.92866296,0.21819228,0.29970506,0.9286879,0.21843918,0.2978074,0.92887205,0.22024414,0.29741314,0.92885375,0.22085333,0.29605585,0.9294112,0.22033116,0.29660377,0.9295649,0.21894138,0.2966109,0.9297928,0.21796176,0.2974009,0.929665,0.21742955,0.29709142,0.93000466,0.21639779,0.29571083,0.93065375,0.21549633,0.29384097,0.93127203,0.21538304,0.2931389,0.93174785,0.2142791,0.29213643,0.93233335,0.21309821,0.29214182,0.9323987,0.21280476,0.29186854,0.932603,0.21228376,0.2913245,0.9327727,0.2122854,0.29069805,0.93285716,0.2127725,0.2904291,0.9331206,0.21198325,0.2917697,0.93335974,0.20906943,0.29182267,0.9335325,0.20822264,0.29056364,0.93360114,0.20967029,0.28924987,0.93355477,0.21168375,0.28889596,0.93303233,0.21445224,0.28849015,0.9318889,0.21990116,0.28876564,0.93110776,0.22282907,0.28909284,0.93112075,0.22234978,0.28976798,0.9310076,0.2219445,0.29125956,0.93045694,0.22230114,0.29183617,0.9303154,0.22213726,0.2923701,0.92994833,0.22297056,0.2921851,0.9296616,0.22440411,0.292269,0.9294659,0.22510442,0.29074484,0.92989594,0.22530188,0.29044893,0.9301575,0.22460309,0.28890288,0.9306223,0.22467153,0.28849694,0.9306816,0.22494745,0.28829002,0.9306653,0.22527958,0.28759238,0.930266,0.22780646,0.2874098,0.92979217,0.22996126,0.28686666,0.9295407,0.23164988,0.28606355,0.92945457,0.23298478,0.28590012,0.9292469,0.23401141,0.28597268,0.9286048,0.23645897,0.28576064,0.9283259,0.23780638,0.28586936,0.9276091,0.240458,0.28362095,0.9263297,0.24793638,0.2829283,0.926502,0.24808392,0.28293833,0.92635924,0.24860501,0.28587827,0.9250871,0.24997503,0.28492728,0.9251783,0.25072202,0.2838205,0.9248808,0.2530641,0.28282154,0.9244408,0.25577572,0.28368065,0.9239819,0.2564815,0.28539348,0.9229129,0.2584229,0.28602692,0.9223739,0.25964403,0.28850347,0.9208116,0.26243436,0.28635877,0.9193108,0.26993752,0.28578174,0.91926587,0.270701,0.2857171,0.91913664,0.2712076,0.2852908,0.91926587,0.27121833,0.28429976,0.9194295,0.27170408,0.28001827,0.9204309,0.27275756,0.27685592,0.9217657,0.27147532,0.27371177,0.9224351,0.2723882,0.272381,0.9259903,0.26143938,0.27347583,0.92602664,0.26016453,0.27436474,0.9261922,0.2586348,0.27290276,0.92699057,0.2573181,0.27001935,0.9279589,0.25686932,0.26678368,0.9290768,0.25620848,0.26339537,0.93028754,0.25531927,0.26095507,0.9307149,0.25626588,0.25860956,0.9309167,0.25790527,0.2549261,0.9306843,0.26237252,0.25426278,0.93072957,0.26285532,0.25014237,0.9315633,0.2638534,0.24985065,0.9315754,0.264087,0.2495745,0.93152237,0.2645347,0.25010857,0.93128353,0.264871,0.2506254,0.9311102,0.26499182,0.25732547,0.92930734,0.26489893,0.25954255,0.92819023,0.26664692,0.2599565,0.92791826,0.26718974,0.26050606,0.9276489,0.2675894,0.26409528,0.9250152,0.27313098,0.2658212,0.9234736,0.27665064,0.26675162,0.92273724,0.2782078,0.26752377,0.92223126,0.27914256,0.26861325,0.9217862,0.279566,0.27422297,0.92007977,0.279741,0.27586934,0.9190984,0.28134373,0.27750275,0.9182514,0.28250054,0.27877894,0.9169326,0.2855118,0.27913412,0.9164122,0.28683248,0.2804284,0.9152064,0.2894083,0.28207698,0.9138983,0.29192895,0.28116533,0.91424465,0.29172388,0.28017065,0.9145534,0.29171306,0.27944997,0.9146664,0.29204977,0.2790016,0.91458404,0.29273564,0.2783324,0.9147721,0.29278502,0.27800155,0.9153183,0.2913889,0.27730477,0.91560096,0.2911649,0.276707,0.91581184,0.29107028,0.27405673,0.9164712,0.2915021,0.27283934,0.91650903,0.29252338,0.27192408,0.91644186,0.29358405,0.27075398,0.91651994,0.2944206,0.2693282,0.9169377,0.29442754,0.2682746,0.91716266,0.29468867,0.26769075,0.9171969,0.29511255,0.26761287,0.9168227,0.29634356,0.2670296,0.9136951,0.30635995,0.2657587,0.9134595,0.3081625,0.2655673,0.9132856,0.30884203,0.2657833,0.9117743,0.31309247,0.26454446,0.91066885,0.3173302,0.26499155,0.91021234,0.31826556,0.26569465,0.90958416,0.31947303,0.26696372,0.9088714,0.32044205,0.26848078,0.90817815,0.32113945,0.27181363,0.906774,0.32230154,0.27646202,0.9044915,0.32475203,0.27500638,0.9047083,0.32538334,0.27431187,0.90460956,0.32624304,0.2739303,0.90401185,0.3282145,0.27418572,0.90375704,0.32870266,0.273521,0.90311474,0.3310136,0.26911676,0.9041863,0.33169755,0.26584244,0.90472794,0.33285913,0.26444978,0.9050287,0.3331507,0.2639822,0.9052507,0.3329181,0.2629697,0.9052073,0.33383632,0.26142466,0.9054114,0.33449548,0.25639474,0.9071046,0.33380073,0.25330985,0.90773565,0.33444008,0.25276512,0.90774745,0.33481997,0.25200972,0.907575,0.3358552,0.25289828,0.90583104,0.3398714,0.25216573,0.9058545,0.34035277,0.2529865,0.9051787,0.34153965,0.25381818,0.90475994,0.34203193,0.25447062,0.9044591,0.34234256,0.25595358,0.9039725,0.34252226,0.2594335,0.9025038,0.3437749,0.26105982,0.9018966,0.344137,0.26198676,0.901666,0.3440369,0.2628684,0.9016332,0.3434498,0.26651645,0.9012292,0.34169415,0.26775026,0.90037215,0.34298658,0.26938254,0.8994893,0.3440234,0.270186,0.8984044,0.34622112,0.2687049,0.89797693,0.3484754,0.26829082,0.8973614,0.35037485,0.267834,0.8973873,0.35065782,0.26452014,0.8981006,0.35134643,0.2625811,0.89837337,0.35210294,0.25921425,0.89905685,0.35285223,0.25682366,0.90023524,0.3515936,0.25335953,0.9013444,0.3512651,0.25201443,0.90166897,0.35139975,0.25098157,0.9014307,0.35274762,0.2441953,0.9043708,0.34997454,0.2443246,0.9044995,0.34955138,0.24319525,0.9048285,0.34948742,0.24214679,0.9056628,0.34805155,0.24134181,0.90620434,0.3471999,0.23889884,0.9075439,0.34538594,0.23709688,0.90834713,0.344515,0.23526171,0.9092052,0.34350815,0.23553808,0.9096475,0.34214503,0.2354852,0.910033,0.34115487,0.23468387,0.911145,0.33873042,0.23432413,0.91152036,0.33796868,0.2341014,0.9118929,0.33711705,0.23375988,0.9122371,0.33642206,0.23328188,0.9125814,0.3358196,0.23193581,0.91320336,0.33506033,0.22863431,0.91445476,0.33391443,0.22609122,0.91513735,0.33377597,0.22205438,0.9158098,0.33464053,0.22121964,0.91577214,0.3352957,0.22077379,0.91586965,0.3353232,0.22130176,0.9159911,0.33464286,0.22164711,0.9162549,0.33369085,0.22149749,0.9166603,0.33267516,0.22043979,0.9168608,0.3328251,0.21759349,0.9175734,0.33273426,0.2175713,0.91778135,0.3321748,0.21664995,0.9183078,0.33132103,0.21444623,0.91859394,0.33196083,0.21419464,0.91877,0.33163583,0.21248883,0.91933835,0.3311579,0.21045223,0.9199331,0.3308065,0.20991205,0.92053115,0.3294835,0.2084388,0.92096704,0.32920057,0.20725052,0.92127526,0.32908836,0.20585234,0.92138785,0.32965013,0.21165116,0.9210958,0.32678172,0.21161735,0.9209212,0.3272953,0.21174717,0.9206516,0.32796913,0.21362078,0.9198783,0.3289226,0.21503593,0.9194372,0.32923362,0.21764176,0.91889143,0.329045,0.21787843,0.91889006,0.32889214,0.21935408,0.9187979,0.32816792,0.220517,0.91849285,0.32824248,0.22199224,0.91846895,0.32731366,0.22428215,0.91796094,0.32717764,0.22423387,0.91784596,0.32753316,0.22529797,0.9174101,0.32802376,0.2259438,0.9174745,0.32739878,0.22669591,0.9178318,0.32587394,0.23144402,0.9165629,0.32610756,0.23259959,0.9163333,0.32593042,0.23835167,0.9156787,0.32360634,0.24066886,0.91561735,0.32206106,0.2442724,0.915136,0.32071346,0.24706496,0.91446304,0.32049373,0.2489194,0.91422284,0.3197432,0.25199157,0.9140024,0.31796208,0.2533659,0.9140349,0.31677425,0.25622544,0.91448027,0.31316826,0.25892243,0.9156622,0.30744413,0.25963596,0.9166882,0.30376288,0.2591518,0.9193152,0.29614177,0.25866607,0.91991943,0.29468656,0.25687167,0.9213309,0.29183266,0.25595674,0.9219285,0.29074723,0.2553705,0.92198795,0.29107413,0.25420716,0.92231524,0.29105547,0.25294548,0.9231165,0.2896109,0.25196096,0.9235063,0.28922608,0.24863501,0.9252989,0.2863608,0.24732189,0.9254943,0.28686604,0.246445,0.92569953,0.2869587,0.24562542,0.9258026,0.28732854,0.2444552,0.9260807,0.28743032,0.24243277,0.92680347,0.28681302,0.24081138,0.92728436,0.28662452,0.23908035,0.9279306,0.28598148,0.23827243,0.92816675,0.28588936,0.23784015,0.92824066,0.28600934,0.23857586,0.92791533,0.28645188,0.23788719,0.92765206,0.28787374,0.2315901,0.92929316,0.28771552,0.23075591,0.9294209,0.28797314,0.22925927,0.92949104,0.28894046,0.22829387,0.9298737,0.28847325,0.22236946,0.9316414,0.28739548,0.2137259,0.9336021,0.2875906,0.2080924,0.9347745,0.28791347,0.20443866,0.9352924,0.28884763,0.20424588,0.9352315,0.28918108,0.20272788,0.9349996,0.29099345,0.19943397,0.9354621,0.29178202,0.19871168,0.935525,0.29207295,0.19595052,0.93550724,0.29398906,0.19584697,0.9353771,0.29447168,0.19516744,0.9343093,0.29828817,0.19553702,0.9345269,0.2973629,0.19494075,0.93524295,0.2954974,0.19453625,0.93553823,0.29482847,0.194205,0.9359254,0.29381633,0.19370657,0.93623245,0.29316652,0.19320625,0.9363312,0.2931812,0.19269404,0.9362297,0.2938417,0.19147378,0.93595725,0.2955027,0.19132873,0.93633926,0.29438418,0.19100165,0.9364894,0.29411894,0.19048809,0.9364326,0.2946325,0.18896408,0.93660766,0.29505703,0.18771853,0.93654436,0.29605132,0.18681768,0.9370033,0.2951676,0.18557602,0.93726146,0.2951313,0.18498114,0.9377315,0.29400948,0.18854003,0.9373167,0.29306996,0.18939705,0.9372924,0.29259482,0.18958543,0.9374411,0.29199588,0.18928173,0.93771017,0.291328,0.18879712,0.9380228,0.2906353,0.18819691,0.9382025,0.29044443,0.18580379,0.9385321,0.29091987,0.18437433,0.9389064,0.2906216,0.18156745,0.9394157,0.29074284,0.18183511,0.9391777,0.29134387,0.18282966,0.93870556,0.29224157,0.18288365,0.93855274,0.2926983,0.18208668,0.9386856,0.29276913,0.18176232,0.938588,0.29328316,0.18111813,0.9378259,0.29610595,0.17835733,0.93830746,0.29625627,0.17730741,0.93839324,0.29661465,0.17640908,0.937189,0.3009264,0.17520517,0.9374874,0.3007001,0.17493966,0.9374998,0.30081582,0.17488147,0.93746364,0.3009624,0.17548014,0.93716365,0.30154762,0.17535187,0.9358164,0.30577663,0.17347404,0.93543255,0.3080141,0.17350487,0.93526256,0.30851263,0.17399228,0.9338925,0.31236434,0.17337985,0.9337178,0.31322604,0.1731109,0.9336409,0.31360376,0.17235866,0.93333644,0.31492147,0.17192031,0.93313074,0.31576967,0.17126878,0.9329796,0.31656924,0.17173405,0.93277913,0.31690764,0.17417231,0.9321434,0.31744725,0.17447133,0.93065816,0.32161328,0.17480455,0.93034315,0.32234287,0.17637067,0.9294637,0.3240226,0.17833456,0.92841965,0.32593518,0.18308516,0.9275878,0.32566968,0.18516819,0.92671955,0.3269611,0.18827014,0.9255669,0.32845125,0.19048586,0.9233873,0.33327323,0.19025913,0.9227021,0.33529443,0.19014917,0.92187274,0.33762994,0.19012174,0.9211622,0.3395791,0.19017588,0.92030656,0.34186092,0.19038641,0.9200283,0.3424922,0.19066958,0.919765,0.34304154,0.19116227,0.9194734,0.34354863,0.19356771,0.91841537,0.3450287,0.19465353,0.91787267,0.34586087,0.19588417,0.91728383,0.3467272,0.19709778,0.91663986,0.34774104,0.19803362,0.91606086,0.3487337,0.19916002,0.91549504,0.34957713,0.19979061,0.91520506,0.34997633,0.20075513,0.91479796,0.35048833,0.2020502,0.9141907,0.35132754,0.20279592,0.91370827,0.3521519,0.20561099,0.91202366,0.354876,0.20617075,0.9111927,0.3566811,0.2053149,0.9111418,0.3573044,0.20455506,0.91093135,0.3582755,0.20458236,0.91086066,0.3584396,0.2056707,0.9104582,0.358839,0.20584875,0.9097689,0.36048147,0.20683937,0.90877753,0.3624098,0.20678265,0.90825516,0.36374924,0.20685479,0.9081335,0.36401182,0.20699167,0.9080318,0.3641877,0.2071869,0.90795213,0.36427528,0.20925072,0.9071021,0.3652121,0.20888807,0.90689933,0.3659226,0.20858404,0.9065989,0.36683938,0.20873924,0.9063222,0.36743438,0.2090226,0.90607464,0.36788356,0.20967925,0.90565586,0.3685404,0.21060869,0.90516675,0.36921147,0.21145922,0.90485895,0.36947975,0.21363492,0.90456706,0.3689424,0.21489275,0.90366906,0.3704096,0.21470705,0.9030184,0.37210023,0.21497744,0.9027675,0.37255275,0.21597469,0.9021593,0.37344828,0.21701607,0.90157676,0.37425035,0.2221284,0.8972839,0.38149774,0.22119278,0.896852,0.3830538,0.22120368,0.89675814,0.38326725,0.2219924,0.89640146,0.38364545,0.22588372,0.8949659,0.38472402,0.22816053,0.8942908,0.38495037,0.23124191,0.89337635,0.3852348,0.23337096,0.8926511,0.38563198,0.23435557,0.8921281,0.38624462,0.23555467,0.89154524,0.3868606,0.23837052,0.89009666,0.38846797,0.2385997,0.8892258,0.39031738,0.23890817,0.88855034,0.39166456,0.23877543,0.8855865,0.39840043,0.23773761,0.88399076,0.4025433,0.23759809,0.8835058,0.40368867,0.23718032,0.8826593,0.40578073,0.23667437,0.88095164,0.40976757,0.23647656,0.8805731,0.41069442,0.23599082,0.8792007,0.4139015,0.23558903,0.8787626,0.41505918,0.23532996,0.8783523,0.41607338,0.23373657,0.87604624,0.42179403,0.23267558,0.8751163,0.42430362,0.2325208,0.8746436,0.42536172,0.23212835,0.8742827,0.42631695,0.23158139,0.8739388,0.42731845,0.23139066,0.8737461,0.4278156,0.23056698,0.8724606,0.43087277,0.22938597,0.870666,0.43511236,0.23202884,0.8709652,0.43310767,0.2337741,0.8718753,0.43032917,0.23594972,0.8702835,0.43235904,0.23460986,0.8707004,0.4322487,0.23525599,0.87020916,0.43288636,0.2369523,0.8692818,0.43382335,0.23855472,0.8689042,0.43370175,0.24152502,0.8676913,0.43448535,0.24392158,0.8675566,0.43341425,0.24812372,0.86707807,0.43198413,0.24962519,0.8662554,0.43276885,0.2504334,0.866048,0.432717,0.251884,0.8649201,0.43412867,0.24783145,0.86563826,0.4350287,0.24352984,0.86602324,0.43668863,0.24329488,0.86568475,0.43749008,0.2432282,0.8651651,0.43855375,0.24069118,0.86443335,0.44138724,0.23980351,0.86470956,0.4413294,0.23956221,0.8643999,0.44206646,0.23833625,0.8636126,0.44426247,0.23726544,0.8641564,0.4437778,0.23673403,0.86411273,0.44414663,0.2367947,0.8636135,0.4450843,0.23759542,0.86292994,0.44598243,0.2383928,0.86210716,0.44714665,0.23848367,0.86148983,0.4482866,0.2391207,0.8612141,0.44847697,0.24028696,0.8603648,0.44948262,0.23986231,0.8602375,0.44995284,0.2398516,0.86010015,0.45022106,0.2398024,0.8598675,0.4506914,0.23921987,0.8598257,0.45108053,0.23903684,0.8596529,0.4515067,0.23917016,0.8566722,0.45706713,0.23870793,0.85614336,0.4582981,0.23862867,0.8557375,0.4590966,0.23875792,0.855249,0.45993897,0.23907323,0.8547584,0.46068653,0.24232091,0.8515576,0.46489808,0.24250092,0.8510519,0.46572945,0.24274166,0.8505364,0.46654508,0.24319486,0.85008883,0.46712437,0.24432586,0.84932274,0.46792707,0.24577564,0.8481768,0.46924457,0.2465605,0.84744287,0.470158,0.24715923,0.8471726,0.4703306,0.24785613,0.84657437,0.47104052,0.24640603,0.8461877,0.47249377,0.2464207,0.84586006,0.47307244,0.24650027,0.84549445,0.47368422,0.24613425,0.844952,0.47484106,0.24626799,0.8444452,0.47567245,0.24654432,0.8438627,0.47656226,0.24667485,0.84365505,0.47686234,0.24813451,0.8434679,0.47643593,0.24889664,0.84273237,0.4773391,0.25043413,0.8421525,0.47755837,0.25299376,0.8402534,0.47955012,0.25277758,0.83995247,0.4801909,0.2529453,0.8391895,0.48143488,0.25341406,0.8384621,0.48245487,0.25370857,0.83720034,0.4844869,0.25386217,0.83717704,0.48444667,0.25590017,0.8369952,0.48368803,0.25655687,0.83620065,0.4847134,0.2572294,0.8358429,0.48497394,0.25805384,0.8352829,0.4855004,0.25849983,0.83484644,0.48601362,0.25968203,0.8343258,0.4862774,0.25998765,0.8339888,0.48669198,0.26133385,0.8327943,0.48801455,0.262716,0.83089054,0.49051118,0.42301568,0.7334397,0.53209394,0.42336625,0.73419344,0.5307739,0.42486185,0.7341547,0.5296313,0.42420274,0.73387456,0.530547,0.42384487,0.7331407,0.5318461,0.42496932,0.7330648,0.5310529,0.42712104,0.7334414,0.5288018,0.43133804,0.7318789,0.52754223,0.4301782,0.7316326,0.52882934,0.42810285,0.73023564,0.5324321,0.42678162,0.72984076,0.5340318,0.42546344,0.7291249,0.5360576,0.42563477,0.72751313,0.53810745,0.4243878,0.7277879,0.5387204,0.42380765,0.7276611,0.5393481,0.42257,0.72679067,0.5414886,0.42149588,0.72697973,0.54207164,0.42052263,0.7270078,0.54278946,0.4217392,0.7257596,0.5435154,0.42370433,0.72425,0.5440005,0.42449242,0.7239655,0.54376477,0.42535323,0.7241037,0.5429075,0.43086472,0.7203093,0.54360837,0.4299043,0.7204949,0.5441225,0.42868975,0.7204884,0.5450886,0.42857343,0.7189744,0.5471751,0.42824706,0.7195469,0.5466778,0.42744127,0.7199185,0.5468193,0.42702183,0.71936053,0.5478803,0.4276941,0.71690524,0.55056757,0.4271537,0.7151324,0.553286,0.42728484,0.7140414,0.55459225,0.42775667,0.71324444,0.5552536,0.42809346,0.71308315,0.55520123,0.42904618,0.7117465,0.55618006,0.42581773,0.71093374,0.55968964,0.42561224,0.7104595,0.56044763,0.4243062,0.7108348,0.5609618,0.4224719,0.71182495,0.5610907,0.42105106,0.71235746,0.56148267,0.42047262,0.7121451,0.56218517,0.42003384,0.71168125,0.5630998,0.42061365,0.71139264,0.56303173,0.42116076,0.71129084,0.56275123,0.42242673,0.7102069,0.56317115,0.42041647,0.70939237,0.5656964,0.42075282,0.70897174,0.56597364,0.42116493,0.7086658,0.5660503,0.4244832,0.70796496,0.56444633,0.42905164,0.70593375,0.56353545,0.43059388,0.70449024,0.5641653,0.43157035,0.7038331,0.56423926,0.43269464,0.7033359,0.5639982,0.4336383,0.703033,0.563651,0.4350109,0.7029154,0.56273925,0.43616715,0.7033801,0.5612616,0.44150358,0.6999087,0.56142896,0.44312415,0.69934475,0.5608546,0.45669028,0.6933674,0.5573828,0.45981222,0.6912341,0.5574658,0.46524444,0.68801016,0.55694675,0.5572116,0.66789913,0.49338228,0.5559892,0.6685262,0.49391168,0.5541863,0.6701705,0.49370953,0.55266505,0.6714743,0.4936432,0.5498754,0.6737055,0.49371848,0.54537904,0.67704904,0.49413183,0.543974,0.6779122,0.49449712,0.54267174,0.6795813,0.4936361,0.54122025,0.68076515,0.49359843,0.5385853,0.6824457,0.49415958,0.5373977,0.6847856,0.49221185,0.5369282,0.68544674,0.49180374,0.53374016,0.6906926,0.48791918,0.5331709,0.6922182,0.4863772,0.5326264,0.69320834,0.48556292,0.53236073,0.69257975,0.4867498,0.53399634,0.6890509,0.4899558,0.5317135,0.6918897,0.48843572,0.52923614,0.69457495,0.48731387,0.5277934,0.69595194,0.4869138,0.5263408,0.69706976,0.48688722,0.52481055,0.69793636,0.48729745,0.52323985,0.6989554,0.48752573,0.52192944,0.6995032,0.4881444,0.51833683,0.7036212,0.48604956,0.5187441,0.7044183,0.4844579,0.51857936,0.704951,0.4838591,0.51828724,0.7055757,0.48326108,0.5189375,0.7051033,0.48325276,0.51950127,0.7048446,0.48302436,0.51877743,0.7067318,0.48104072,0.51878566,0.7074062,0.48003957,0.518274,0.7089489,0.47831327,0.51811194,0.7097886,0.47724223,0.51774067,0.7107353,0.47623518,0.51676875,0.71228385,0.47497544,0.51700187,0.712431,0.47450092,0.517083,0.71270066,0.47400734,0.5169682,0.7131393,0.47347254,0.5167306,0.71362007,0.47300723,0.51602995,0.7144935,0.47245327,0.51481026,0.71544504,0.47234398,0.5161406,0.7148911,0.47173044,0.51709133,0.7142776,0.47161844,0.5165569,0.71516514,0.47085854,0.5167061,0.71552426,0.4701487,0.5174088,0.71527773,0.46975094,0.51797837,0.715242,0.46917725,0.5192594,0.7159486,0.46667692,0.5199755,0.7161437,0.4655788,0.52039427,0.7166402,0.4643454,0.5215963,0.71854955,0.46002594,0.522258,0.7181963,0.45982683,0.52283615,0.71799105,0.45949012,0.52308136,0.71808773,0.4590598,0.52301806,0.7183759,0.4586809,0.521261,0.72055995,0.45725307,0.52180064,0.720557,0.45664176,0.5231001,0.7216298,0.45344973,0.5229719,0.72210395,0.45284244,0.5225813,0.72274685,0.45226738,0.52343637,0.7228658,0.4510869,0.5440655,0.6845806,-0.48512074,0.53404117,0.6789784,-0.5037741,0.5041367,0.69430023,-0.5136083,0.41853663,0.75532645,-0.50429064,0.40993908,0.76505035,-0.4966366,0.38235444,0.7909154,-0.47776344,0.37402833,0.80213505,-0.46549135,0.38136217,0.810992,-0.4436833,0.39394072,0.8062011,-0.44141877,0.4032285,0.8046783,-0.43577474,0.39645374,0.8087138,-0.43451864,0.40445128,0.8067745,-0.4307366,0.39085484,0.8242251,-0.4097383,0.33375654,0.8500045,-0.40755242,0.2389291,0.8597683,-0.451344,0.2407493,0.8586027,-0.45259377,0.22048293,0.86140895,-0.45756084,0.22110975,0.8618816,-0.45636666,0.21797572,0.86456746,-0.45278,0.18900655,0.8786556,-0.43845278,0.16808465,0.8823098,-0.43963277,0.16172887,0.8791292,-0.44830307,0.14086297,0.88043696,-0.45275646,0.13331781,0.8866509,-0.4428053,0.11644317,0.8869616,-0.4469229,0.118123524,0.8862502,-0.44789225,0.24100955,0.8063856,-0.5400525,0.21590316,0.79913473,-0.5610432,0.2038657,0.80564564,-0.55621386,0.1609243,0.83409643,-0.5276234,0.16181639,0.8333944,-0.5284593,0.16034386,0.84098184,-0.51675856,0.15968928,0.84205365,-0.51521355,0.16068207,0.8458787,-0.50859654,0.16157152,0.8454225,-0.5090731,0.15019754,0.8583969,-0.4905053,0.13984741,0.8662698,-0.4796032,0.13759904,0.8661766,-0.48042122,0.11769623,0.8701869,-0.4784583,0.08051725,0.86979574,-0.48679805,0.063813575,0.8760323,-0.47801182,0.060736597,0.8772668,-0.4761449,0.038599923,0.8837852,-0.46629798,0.02655455,0.88705724,-0.46089515,0.021557054,0.88929045,-0.45683447,0.00700403,0.88617474,-0.4632983,0.0058650486,0.8910723,-0.45382348,0.0119129615,0.89551044,-0.44488108,0.014180014,0.90058637,-0.4344458,0.024722226,0.90636075,-0.4217808,0.0010369259,0.9206646,-0.39035323,0.0403755,0.93863654,-0.34253654,0.06525989,0.9322356,-0.35591835,0.079850964,0.93666947,-0.3409899,0.097334325,0.9378999,-0.33297127,0.11998723,0.9306625,-0.34564474,0.16043812,0.94679856,-0.27898404,0.15827094,0.9483836,-0.2748068,0.17797868,0.9505213,-0.25462306,0.17788915,0.9519946,-0.24912184,0.17456779,0.95309705,-0.24724902,0.19842911,0.95217025,-0.23237394,0.19582148,0.952083,-0.2349296,0.21609436,0.94647276,-0.23977591,0.21700354,0.94669515,-0.23807102,0.22686045,0.94769496,-0.22451855,0.2448243,0.94495475,-0.21707508,0.2483386,0.9448822,-0.21336716,0.24409617,0.94946694,-0.19730587,0.24118835,0.95039994,-0.19638762,0.23999014,0.95270526,-0.18643337,0.22605671,0.95686734,-0.1824919,0.2407723,0.9572855,-0.16010368,0.2428794,0.95674074,-0.1601774,0.2620483,0.9580519,-0.1160485,0.2714721,0.95543647,-0.115948536,0.26256546,0.9582802,-0.11295337,0.258182,0.9609694,-0.09939773,0.27031848,0.9582149,-0.093553044,0.27569947,0.9571839,-0.08825418,0.2807881,0.956315,-0.08136165,0.2699322,0.9592618,-0.083387606,0.21972306,0.97102803,-0.09394831,0.22250836,0.9727332,-0.06542308,0.21646905,0.9743603,-0.061345045,0.21639673,0.9747682,-0.05476659,0.22568,0.9731949,-0.044273872,0.23450983,0.9713013,-0.0397351,0.2413393,0.9700039,-0.029116364,0.25383213,0.96722555,0.0066303676,0.26446667,0.9642277,0.017954819,0.27105927,0.96242565,0.016241144,0.2781825,0.96045166,0.012130047,0.33188313,0.9422346,0.045250855,0.3108852,0.94946295,0.04325013,0.29824185,0.95228505,0.064846225,0.31311074,0.9473449,0.06707714,0.3199517,0.9451225,0.06613883,0.28854945,0.9543417,0.07727336,0.3430616,0.93506485,0.08923285,0.3468151,0.93431264,0.08233573,0.3623032,0.92887074,0.077042185,0.374063,0.9210832,0.10808583,0.382477,0.91588783,0.12190526,0.3679845,0.91905504,0.14115673,0.3755905,0.91778576,0.12884519,0.35417518,0.92909694,0.10648402,0.34523755,0.9324199,0.10679022,0.33943394,0.93454176,0.106846936,0.28752968,0.9511252,0.1126387,0.29458535,0.94783527,0.12176958,0.29837948,0.94588006,0.12759557,0.30247355,0.9445917,0.12750016,0.31269366,0.9407129,0.1314606,0.31470445,0.9398752,0.13264884,0.329214,0.9332538,0.14371985,0.31571415,0.9318747,0.17870133,0.3070784,0.9307626,0.19845381,0.30094695,0.92897177,0.21550496,0.29114038,0.929611,0.22596598,0.28430465,0.926225,0.2475441,0.28452072,0.9235766,0.25701022,0.28327614,0.9194342,0.2727553,0.2817808,0.9197603,0.27320436,0.26584026,0.9124332,0.31111827,0.2732592,0.9062937,0.32243,0.2653778,0.904762,0.333137,0.2531969,0.90621305,0.3386285,0.2598954,0.8988157,0.35296553,0.24419555,0.9041324,0.3505896,0.21498092,0.9184747,0.33194503,0.21811438,0.91902953,0.3283456,0.22420609,0.9181093,0.3268134,0.2307424,0.92927366,0.28845865,0.20428334,0.9350165,0.28984907,0.18490383,0.93748,0.29485908,0.18195036,0.938016,0.2949917,0.1786969,0.93759644,0.29829568,0.17411593,0.9341859,0.31141663,0.17318135,0.93273675,0.31624418,0.18970098,0.925134,0.32884738,0.23672113,0.8910676,0.38724872,0.23924293,0.8875568,0.3937077,0.23475088,0.8770438,0.41914934,0.2452311,0.8677815,0.43222326,0.25162938,0.865651,0.43281752,0.24188042,0.86433345,0.44093254,0.24000144,0.86076933,0.44886017,0.2392526,0.8588944,0.45283398,0.25181875,0.8416705,0.4776799,0.25497016,0.83740485,0.48347008,0.26248136,0.83157045,0.4894836,0.42656502,0.72815776,0.5364965,0.4272283,0.7273377,0.5370808,0.4289202,0.7193741,0.5463775,0.42893887,0.718549,0.54744756,0.44671875,0.6986403,0.5588776,0.539749,0.68157876,0.49408644,0.5357619,0.68685526,0.49111003,0.51815903,0.70285535,0.48734543,0.5189597,0.7059452,0.4819982,0.5152328,0.71537775,0.47198498,0.52077603,0.71854955,0.46095425,0.5209282,0.7203838,0.45790935,0.497663,0.69933325,-0.5130931,0.4074016,0.76724,-0.49534506,0.3794074,0.7990538,-0.46643654,0.37926787,0.79955775,-0.46568593,0.3973536,0.81004715,-0.4312004,0.39868683,0.80927587,-0.4314179,0.33215037,0.85084283,-0.40711492,0.2866658,0.8605085,-0.42112687,0.27079055,0.8606357,-0.43125242,0.25997734,0.8621495,-0.4348679,0.23850521,0.8596555,-0.45178276,0.23904133,0.8574437,-0.4556858,0.15966998,0.8821501,-0.44307637,0.16410193,0.87502265,-0.4554184,0.13481869,0.8850654,-0.44551453,0.13213871,0.877513,-0.46098837,0.20978071,0.84504634,-0.49182183,0.21430019,0.8401148,-0.4982796,0.21967927,0.79916036,-0.55953884,0.20875692,0.8011253,-0.560909,0.18931197,0.814909,-0.54779947,0.1783723,0.82120216,-0.54204273,0.16164903,0.8363516,-0.5238184,0.16346218,0.84688675,-0.50602657,0.14602244,0.8618064,-0.48576456,0.13839403,0.8663486,-0.47988245,0.13315925,0.8665597,-0.48098123,0.06111167,0.8771056,-0.47639388,0.059728507,0.87777895,-0.47532797,0.023999235,0.8880286,-0.45916137,0.018775776,0.88767725,-0.4600832,0.01593472,0.88738906,-0.46074584,0.009816146,0.8941134,-0.44773304,0.01032401,0.8941722,-0.44760424,0.012098966,0.89575493,-0.44438344,0.019321438,0.9021677,-0.4309526,0.0321088,0.90469676,-0.4248445,0.040622033,0.9039623,-0.42567828,0.026127828,0.9064939,-0.42140973,0.004138262,0.9216262,-0.38805676,0.05681927,0.9388333,-0.33965212,0.11781502,0.93806916,-0.32580045,0.16067286,0.9499489,-0.26792043,0.17963772,0.9497175,-0.25645056,0.17766474,0.950657,-0.25433543,0.1739112,0.95317084,-0.24742731,0.19024096,0.9538163,-0.23247106,0.19778165,0.95226634,-0.23253231,0.24878779,0.9440665,-0.21643248,0.24201274,0.9501061,-0.19679488,0.23514311,0.95390123,-0.18649423,0.22986472,0.95576817,-0.18349217,0.24538729,0.95607424,-0.1603345,0.24892448,0.9556932,-0.15712132,0.26720366,0.95658165,-0.11642075,0.2563772,0.96046704,-0.10850711,0.25860906,0.9607058,-0.10082491,0.22723801,0.96882874,-0.098659955,0.20795058,0.97648156,-0.05692389,0.22839499,0.97251517,-0.045277227,0.24285816,0.96975416,-0.0244282,0.25727984,0.9662515,0.012849918,0.28338304,0.9587839,0.02067584,0.27920344,0.9599747,0.02222712,0.2793232,0.9599107,0.02345255,0.28948206,0.95604503,0.04667019,0.29991022,0.95293546,0.04436056,0.30223686,0.9523295,0.041489463,0.31457856,0.9485651,0.035560932,0.33309984,0.9421649,0.037010755,0.3356903,0.9409855,0.04310819,0.33243483,0.9420323,0.045412667,0.30016115,0.9516711,0.06500317,0.28975672,0.9539726,0.07731306,0.29781008,0.95104045,0.08265129,0.32017422,0.94309914,0.08973554,0.34307197,0.9351464,0.08833402,0.36025476,0.92766386,0.098266184,0.3650944,0.92564857,0.099402435,0.376806,0.91955477,0.11151793,0.3715696,0.91760665,0.14118807,0.3726095,0.91875887,0.13055372,0.27571756,0.95578045,0.10229138,0.29337296,0.9485913,0.118772395,0.30428985,0.9440241,0.12738226,0.3170643,0.9304847,0.18348972,0.3129008,0.9311596,0.18717603,0.2903963,0.93300045,0.2125562,0.2838028,0.9260485,0.24877717,0.28269836,0.91950023,0.27313185,0.27201065,0.92287976,0.27258614,0.27011704,0.92559046,0.26517734,0.26133126,0.9271551,0.26849467,0.28203166,0.914344,0.2905739,0.2829803,0.91360646,0.29196817,0.27883878,0.91441923,0.2934048,0.2682442,0.91537696,0.30021662,0.26807895,0.9144196,0.30326635,0.2745554,0.9031634,0.3300231,0.26450363,0.90180963,0.34172672,0.2455868,0.90303564,0.3524397,0.21967289,0.9169506,0.33308473,0.21816407,0.91728014,0.33316898,0.24207062,0.91547,0.3214289,0.19628975,0.93439347,0.29728645,0.19530919,0.93400943,0.29913315,0.19180855,0.9358588,0.29559743,0.17907457,0.9373173,0.29894575,0.17808007,0.9368711,0.300932,0.17595056,0.93601334,0.30482852,0.17398201,0.932411,0.31676492,0.19061953,0.9241962,0.33094648,0.2064958,0.9112717,0.35629115,0.20848648,0.9078121,0.36388257,0.21458778,0.90399367,0.36979392,0.22234854,0.898392,0.3787517,0.23763514,0.89065224,0.38764438,0.23571122,0.8707239,0.4316018,0.24642494,0.8677248,0.43165785,0.24332666,0.86475533,0.4393066,0.23990487,0.8636955,0.4432559,0.23951204,0.8633297,0.44417992,0.23950742,0.85763437,0.4550819,0.24196176,0.8520492,0.46418396,0.2476901,0.8469747,0.47040778,0.25293645,0.8405144,0.47912288,0.25542268,0.83727443,0.4834571,0.26201448,0.8321049,0.488825,0.42489415,0.7344601,0.52918166,0.4316539,0.7204364,0.5428133,0.4284411,0.71310824,0.55490077,0.4228137,0.710673,0.5622922,0.42777228,0.70676076,0.56347144,0.44774094,0.69826645,0.55852664,0.556613,0.6681439,0.4937263,0.5446509,0.67745095,0.494384,0.5391167,0.6819952,0.49420214,0.5347929,0.6884775,0.48989314,0.5148702,0.7155415,0.47213244,0.5211121,0.7186379,0.46043652,0.54107744,0.68576807,-0.48678273,0.40744403,0.7675094,-0.49489263,0.39585942,0.8041062,-0.4435185,0.3970166,0.8092999,-0.43291047,0.26401052,0.86117285,-0.43437278,0.2598965,0.862783,-0.43365797,0.23816584,0.8591706,-0.4528829,0.16718139,0.8823684,-0.43985954,0.1604987,0.88004345,-0.44694933,0.16334575,0.8749983,-0.45573696,0.14051697,0.88057065,-0.45260394,0.13205862,0.8778846,-0.46030334,0.22728278,0.8245232,-0.51817375,0.21375382,0.7998642,-0.5608267,0.20359118,0.8067916,-0.55465114,0.16016223,0.8413606,-0.516198,0.1344181,0.8665316,-0.48068157,0.05987004,0.87828463,-0.474375,0.024319595,0.88828593,-0.4586465,0.0212352,0.8892675,-0.45689425,0.0055407514,0.8905294,-0.454892,0.011209364,0.89860755,-0.43861014,0.014839296,0.90046746,-0.43467015,0.023594,0.90358806,-0.4277522,0.010241891,0.92964953,-0.36830273,0.00755061,0.9223014,-0.38639754,0.0045593334,0.9146039,-0.40432534,0.079468355,0.93667156,-0.34107354,0.15154666,0.94457406,-0.29122755,0.21630573,0.9463266,-0.24016193,0.21688192,0.9464461,-0.23916939,0.24877442,0.94490623,-0.21275228,0.23522738,0.9536951,-0.1874398,0.24433796,0.95631397,-0.1605072,0.24720293,0.9558263,-0.15901819,0.2518431,0.958159,-0.13603795,0.27279034,0.9546419,-0.119349755,0.2817559,0.9560485,-0.08114728,0.25460592,0.962659,-0.09199726,0.22884949,0.9723108,-0.04732494,0.25764427,0.96616274,0.012206982,0.2652832,0.9640281,0.016570825,0.26921222,0.9629928,0.013026866,0.2897939,0.9569445,0.016633106,0.28816,0.9564335,0.046891503,0.3089078,0.9503785,0.036833443,0.31375667,0.948845,0.035352644,0.33776525,0.9403449,0.04081684,0.30979627,0.94967806,0.046237282,0.30466494,0.9501704,0.06599593,0.31964475,0.94552994,0.06164712,0.2969723,0.95147306,0.080662765,0.36168373,0.9270919,0.09841493,0.37527394,0.92047286,0.10908336,0.3723382,0.91882014,0.13089633,0.35707608,0.9277771,0.108287945,0.35569337,0.9283649,0.10780042,0.3405812,0.9340831,0.107206196,0.30221722,0.9480873,0.09897085,0.2760806,0.9557158,0.10191567,0.30321947,0.94436735,0.12739,0.31375182,0.9403359,0.13163623,0.31535324,0.9322418,0.17741917,0.31525415,0.93006104,0.18868302,0.2962766,0.92920786,0.2208912,0.29173803,0.9294608,0.22581297,0.28496993,0.9263342,0.2463679,0.26991832,0.92164207,0.27878308,0.2825016,0.91400313,0.2911892,0.2622808,0.9052323,0.33431008,0.24992654,0.9015499,0.35319197,0.20507906,0.9216021,0.3295334,0.23929918,0.92756647,0.286978,0.20353074,0.93495727,0.2905687,0.1815422,0.93787026,0.29570553,0.17573951,0.93693334,0.30211177,0.17410612,0.9340271,0.31189814,0.18104523,0.9279532,0.32576916,0.20873883,0.90766984,0.36409277,0.20906079,0.9073749,0.36464283,0.2195248,0.90094393,0.37431127,0.22235185,0.89895165,0.3774197,0.23529194,0.8713079,0.4306509,0.24325389,0.86452717,0.43979576,0.24275944,0.86437935,0.44035918,0.24794613,0.8467204,0.47073054,0.42722228,0.73458564,0.52712905,0.5202433,0.69992083,0.4893442,0.5221236,0.7190514,0.4586416,0.5413416,0.68584317,-0.48638305,0.52124673,0.6901565,-0.5019819,0.47472614,0.7153864,-0.51269615,0.43420666,0.7441789,-0.50760454,0.4044036,0.77213496,-0.4901687,0.38284355,0.7919531,-0.47564808,0.39742213,0.8049307,-0.4406157,0.25743634,0.8636461,-0.43340734,0.24567433,0.8622604,-0.4428895,0.15923716,0.8821585,-0.44321534,0.20971869,0.8444754,-0.49282792,0.22634031,0.8252037,-0.51750255,0.2124567,0.8414182,-0.49686775,0.24183281,0.7941011,-0.5576023,0.19104199,0.8145345,-0.54775596,0.13948886,0.8663839,-0.47950155,0.13382845,0.8666591,-0.48061618,0.01553118,0.90048784,-0.43460378,0.01749509,0.90111285,-0.43323156,0.026922833,0.90665644,-0.4210098,0.022675151,0.93139666,-0.36329886,0.01631846,0.9235259,-0.38318866,0.009179905,0.9152457,-0.40279153,0.119131856,0.9384023,-0.32435888,0.16194896,0.94937325,-0.2691894,0.17176694,0.95226735,-0.25235495,0.21662702,0.94627404,-0.24007961,0.2305545,0.9482736,-0.21822415,0.24502893,0.9492251,-0.19731314,0.24758889,0.9557459,-0.158901,0.25348997,0.9575539,-0.13723467,0.2729697,0.9545225,-0.11989301,0.25932285,0.9604286,-0.101629555,0.26143974,0.96009755,-0.099307574,0.28407562,0.9554674,-0.07989394,0.22046387,0.9708543,-0.09400871,0.2361046,0.9708669,-0.040890116,0.24278149,0.9699268,-0.017297145,0.2583434,0.9659856,0.0114259785,0.26317725,0.96463966,0.014424135,0.28393808,0.9586159,0.020848677,0.30048144,0.95280254,0.043338217,0.309774,0.95012206,0.036168486,0.32736182,0.94418055,0.03684155,0.3380143,0.94024664,0.041019388,0.3007878,0.9515517,0.0638444,0.31127143,0.9470194,0.07914775,0.29615375,0.95183456,0.079397455,0.3603891,0.92962897,0.07687467,0.34406117,0.93279546,0.10730595,0.32143933,0.9412877,0.10321951,0.30139723,0.9483866,0.09860279,0.2919428,0.9493312,0.11635976,0.31755513,0.9302341,0.18391107,0.29213065,0.9293885,0.22560294,0.28546685,0.9254172,0.24922232,0.28908008,0.9203406,0.26345003,0.27019024,0.92513597,0.2666846,0.258319,0.92883384,0.26559177,0.27173412,0.92118305,0.27853608,0.26541317,0.9015783,0.34163204,0.24768898,0.90213567,0.35327238,0.24104916,0.9200886,0.3087593,0.17931445,0.9370459,0.29965204,0.17595662,0.93668205,0.302764,0.17375015,0.9325763,0.3164054,0.21413286,0.9043253,0.36924627,0.22204597,0.8993846,0.37656727,0.2403461,0.8605146,0.44916412,0.24768235,0.84361666,0.4764078,0.25263867,0.8410173,0.47839686,0.51969296,0.7003072,0.4893761,0.5214991,0.71968836,0.4583529,0.54298073,0.68525,-0.48539093,0.5229178,0.6900835,-0.50034165,0.47412696,0.71588016,-0.51256144,0.43025234,0.7487747,-0.50420177,0.39946073,0.8044824,-0.43958977,0.40486723,0.80700254,-0.42991784,0.36650443,0.8351264,-0.41016883,0.15919408,0.88124865,-0.4450372,0.15890323,0.8643307,-0.4771605,0.22525518,0.82607085,-0.5165917,0.2103342,0.84307534,-0.4949581,0.2206733,0.7989754,-0.5594119,0.16047227,0.8521602,-0.49806792,0.019514201,0.91541356,-0.40204132,0.026138637,0.92368567,-0.38225842,0.027329313,0.93147254,-0.36278376,0.024669588,0.9154974,-0.4015668,0.11299286,0.9339799,-0.3389899,0.19584495,0.9521807,-0.23451371,0.2302305,0.94795877,-0.21992745,0.24281846,0.9498761,-0.19691235,0.25753155,0.96015304,-0.1085524,0.24941649,0.9640791,-0.09133952,0.28427902,0.9585135,0.020913167,0.3017123,0.9524779,0.041900095,0.32894224,0.9436406,0.03659878,0.336791,0.9406088,0.042741995,0.30398163,0.9505541,0.06357752,0.3068818,0.9473209,0.09168823,0.31960323,0.9378508,0.13523942,0.3277391,0.93188053,0.15551761,0.31816718,0.9299173,0.18445463,0.31656387,0.92977834,0.18788163,0.2705689,0.92372876,0.27114135,0.22984274,0.9109769,0.34248134,0.23361054,0.9217067,0.30964968,0.2170386,0.9310625,0.2932863,0.17902409,0.9368464,0.30044842,0.17346692,0.9326796,0.3162562,0.1899159,0.92499936,0.32910198,0.22052604,0.900596,0.3745599,0.23444264,0.8716636,0.43039435,0.42879254,0.72226673,0.54264885,0.42889738,0.71239036,0.5554701,0.60467654,0.761154,-0.2345439,0.5196772,0.6926185,-0.5002152,0.43172607,0.74926776,-0.5022056,0.4536376,0.73304766,-0.5068077,0.475631,0.71639955,-0.5104379,0.40279812,0.80426115,-0.43694124,0.38025388,0.82942426,-0.40922162,0.2815969,0.8613797,-0.42276257,0.24517515,0.8623868,-0.44292,0.22090231,0.8614821,-0.45722076,0.15892802,0.88162136,-0.4443936,0.16033359,0.863555,-0.47808558,0.20990294,0.8439624,-0.4936277,0.21909043,0.8098844,-0.54413843,0.21645437,0.82126737,-0.5278896,0.21353593,0.83233243,-0.511493,0.14477916,0.86344326,-0.4832233,0.100993514,0.87099034,-0.4808078,0.02631424,0.9154599,-0.40154803,0.027705114,0.9236499,-0.38223463,0.028073095,0.9314555,-0.36277065,0.027136572,0.91544104,-0.40153614,0.055737935,0.93442047,-0.35178363,0.08950084,0.9331105,-0.3482735,0.13368657,0.93794435,-0.31998172,0.2389846,0.9532602,-0.18488204,0.25803316,0.96003073,-0.10844283,0.25988424,0.96002674,-0.10396579,0.2527487,0.9633499,-0.089861445,0.22585984,0.9696586,-0.093538865,0.22200628,0.97246075,-0.07094588,0.2595515,0.9656584,0.011698382,0.26219544,0.9649197,0.013549279,0.28539443,0.95818126,0.02094583,0.33105364,0.942912,0.036338486,0.33766356,0.94031507,0.04231834,0.31041142,0.94951296,0.045496512,0.30329755,0.95079887,0.06318308,0.29186705,0.9532996,0.0776758,0.30799973,0.9470059,0.091191426,0.34400517,0.9350428,0.0857639,0.3728932,0.9243481,0.08081599,0.3424122,0.93338454,0.10745804,0.31342256,0.9334976,0.17420815,0.32900706,0.9313772,0.15585552,0.31840613,0.92975104,0.18487969,0.31821045,0.9294621,0.18666092,0.2967243,0.92892253,0.22148946,0.27112398,0.92329824,0.27205163,0.2250178,0.91255397,0.34148538,0.23185717,0.9219295,0.3103035,0.20804855,0.9215428,0.3278333,0.22497924,0.9284771,0.2954904,0.1793177,0.9369069,0.30008447,0.17609438,0.9364535,0.3033901,0.20618628,0.9115918,0.3556509,0.2215492,0.89987093,0.37569702,0.24786277,0.8468501,0.47054115,0.4542343,0.69611776,0.5559598,0.5214272,0.8120877,0.26196787,0.60351753,0.76461196,-0.22613092,0.5408564,0.7826543,-0.30810156,0.47549686,0.7266551,-0.4958579,0.4426103,0.746163,-0.49732974,0.5084553,0.70654297,-0.4922096,0.52491635,0.69626546,-0.48956844,0.39507782,0.79252356,-0.4645643,0.40329835,0.8043356,-0.43634245,0.40644917,0.81645507,-0.41012216,0.36610454,0.8358899,-0.40896887,0.27896163,0.8622478,-0.42273995,0.24413498,0.86236566,-0.44353527,0.16128808,0.86313444,-0.47852388,0.21851084,0.8104595,-0.54351485,0.21606757,0.8216403,-0.5274674,0.21334232,0.83251363,-0.51127887,0.2017476,0.80910313,-0.5519511,0.17821111,0.82271993,-0.5397895,0.16534846,0.8334514,-0.5272747,0.16184519,0.83687395,-0.5229227,0.14408281,0.86411184,-0.48223534,0.0788561,0.87473965,-0.47813413,0.034195792,0.92234915,-0.3848411,0.03051872,0.9147595,-0.4028444,0.031157225,0.9308392,-0.36409834,0.03735166,0.91338867,-0.40537143,0.05597388,0.9338635,-0.3532221,0.11381093,0.932986,-0.3414442,0.089822575,0.9326113,-0.34952548,0.13660496,0.93781006,-0.3191415,0.17847936,0.95209,-0.24833383,0.22929214,0.94765115,-0.22222148,0.25931686,0.9598598,-0.10688269,0.25981995,0.95984906,-0.1057517,0.25109088,0.963952,-0.088033386,0.22600742,0.96963197,-0.09345877,0.24193797,0.96943927,-0.04066333,0.30169538,0.95129716,0.063352734,0.37371773,0.9246334,0.07340451,0.36307964,0.92651224,0.09873293,0.31406745,0.9429129,0.11080161,0.28972894,0.95025855,0.11430584,0.31436357,0.93292344,0.17558289,0.32951784,0.931086,0.15651473,0.31852582,0.92965,0.18518154,0.27335212,0.9205335,0.27909994,0.27483132,0.9055413,0.32320687,0.23044671,0.92195904,0.31126493,0.19604726,0.93419325,0.29807463,0.22487324,0.9283728,0.29589862,0.17611577,0.9362612,0.30397084,0.22098662,0.90031874,0.37495473,0.23925583,0.88686085,0.3952651,0.2502317,0.85601586,0.4523505,0.25224537,0.84144765,0.47784734,0.46583536,0.6938318,0.5491766,0.52134025,0.81245285,0.2610072,0.6035716,0.7666598,-0.21893851,0.5692446,0.7696877,-0.28903526,0.54095834,0.7828195,-0.3075023,0.4763258,0.7263752,-0.49547228,0.5088684,0.7063988,-0.49198946,0.44302434,0.7460274,-0.49716452,0.50969434,0.70611036,-0.49154836,0.49301094,0.7163183,-0.4937897,0.5263572,0.6957536,-0.4887485,0.39639682,0.79116875,-0.4657484,0.25617203,0.8639321,-0.4335865,0.27833226,0.8623916,-0.42286155,0.24291603,0.8621702,-0.44458333,0.15873246,0.8820807,-0.44355127,0.16548218,0.86130023,-0.48039317,0.2086408,0.8243305,-0.52625877,0.21472183,0.8118443,-0.54295796,0.20243262,0.836428,-0.50932235,0.20030431,0.8103573,-0.55063534,0.17764015,0.82408804,-0.5378874,0.1434725,0.8645816,-0.48157486,0.07860777,0.8748794,-0.47791925,0.049433764,0.9195789,-0.38978317,0.04560553,0.9282175,-0.3692323,0.05299054,0.92688906,-0.37157592,0.045308907,0.91193575,-0.4078239,0.09014939,0.93243694,-0.34990627,0.13741474,0.93780655,-0.31880417,0.17186761,0.9506353,-0.25836802,0.2723484,0.95512074,-0.11649358,0.261775,0.9599556,-0.09979551,0.2509739,0.9639833,-0.088024564,0.22083457,0.9707756,-0.09395112,0.25325117,0.96738094,-0.0061575766,0.33051756,0.9427083,0.045378592,0.37414274,0.9244736,0.07325159,0.35461998,0.9268865,0.12298843,0.31517538,0.9424466,0.11161945,0.30626553,0.9439078,0.12344854,0.3300686,0.9307411,0.15740323,0.31859842,0.92946523,0.18598236,0.29123983,0.92496985,0.24415179,0.27642828,0.90466875,0.32428667,0.2523042,0.8535077,0.4559245,0.42882985,0.7345457,0.52587783,0.43401903,0.7177798,0.5444443,0.4666001,0.6935995,0.5488206,0.52752113,0.8196974,0.22319874,0.5241264,0.8163335,0.2426749,0.51999706,0.81294173,0.2621618,0.6289152,0.7746225,-0.06652544,0.60504925,0.76756185,-0.21157555,0.5996288,0.7656663,-0.23280966,0.6097163,0.76945066,-0.19024095,0.5700224,0.76984763,-0.28706998,0.54051393,0.78328246,-0.30710462,0.49923113,0.7768106,-0.38384053,0.49588382,0.7515706,-0.43501833,0.42155582,0.76193017,-0.49168396,0.43879864,0.7515326,-0.49259973,0.44161895,0.74786824,-0.49564686,0.45611116,0.7409449,-0.49291304,0.47347218,0.73016983,-0.49262175,0.49086073,0.71920997,-0.49172422,0.5082559,0.70806813,-0.49021983,0.52563626,0.6967472,-0.48810846,0.38915688,0.8076784,-0.44295874,0.39726558,0.7902391,-0.4665857,0.28099632,0.8622092,-0.42146924,0.13273698,0.8871029,-0.44207394,0.17661937,0.83842885,-0.5155993,0.19821118,0.81918687,-0.538187,0.15597337,0.8566787,-0.49170503,0.17592032,0.8524334,-0.49235088,0.08826686,0.8744062,-0.47709832,0.059383284,0.932484,-0.35629663,0.05121957,0.9188231,-0.39133185,0.09135992,0.93181777,-0.3512393,0.14275905,0.9389889,-0.3129211,0.13200535,0.93489003,-0.3294772,0.1742471,0.9500175,-0.2590456,0.25886458,0.95613855,-0.13707024,0.27289385,0.95491725,-0.11688428,0.24838087,0.9646083,-0.088530816,0.22677669,0.97142303,-0.07006912,0.25352946,0.9672178,-0.01457961,0.29438883,0.95246565,0.07838617,0.29536498,0.9521252,0.078848824,0.35456738,0.9268449,0.12345244,0.3677316,0.9192447,0.14057963,0.3319168,0.9294374,0.16117468,0.29359636,0.9246903,0.2423821,0.20521191,0.9132071,0.35205224,0.24310164,0.8774674,0.41346413,0.25232977,0.8536473,0.45564893,0.25191072,0.865189,0.43357697,0.3059048,0.81420755,0.49344534,0.36398327,0.78080726,0.50779545,0.43400177,0.71794236,0.54424375,0.4312906,0.732197,0.5271394,0.4978917,0.6850813,0.53175884,0.4775196,0.6912307,0.5423791,0.45693466,0.6973305,0.5522145,0.62814033,0.77584535,-0.059192084,0.5974187,0.7668811,-0.23448712,0.60361505,0.76836914,-0.2127387,0.59889287,0.76607156,-0.2333704,0.60901946,0.76985306,-0.19084427,0.553865,0.7825681,-0.28428993,0.49912465,0.777018,-0.38355917,0.4952098,0.75180805,-0.43537563,0.39061826,0.80639064,-0.4440174,0.3979817,0.7895704,-0.46710718,0.19818716,0.81252736,-0.5481981,0.16377813,0.84729123,-0.50524676,0.08474147,0.8754494,-0.47582263,0.03093382,0.88748723,-0.45979285,0.06239118,0.93231547,-0.3562236,0.05285957,0.9187311,-0.3913298,0.047075342,0.9114936,-0.40861148,0.11836023,0.93081677,-0.3457904,0.09193294,0.931528,-0.3518579,0.16399588,0.9454665,-0.28142217,0.15152673,0.940723,-0.30344665,0.13684857,0.93578804,-0.32492042,0.19748665,0.94922256,-0.24489902,0.24621446,0.9445385,-0.2173142,0.26160914,0.9551097,-0.13901821,0.22207314,0.9705426,-0.09343738,0.24899682,0.96448046,-0.088193014,0.22720416,0.97132707,-0.07001436,0.26160607,0.9650378,-0.016256973,0.28948963,0.95701873,0.017633159,0.37336734,0.92427427,0.07946011,0.35470766,0.92675453,0.123727754,0.33198282,0.92934495,0.1615716,0.293964,0.9246549,0.24207117,0.27006504,0.8989916,0.3447884,0.20543802,0.91307724,0.35225725,0.23809335,0.8903847,0.38797766,0.24312246,0.87782896,0.41268367,0.25254127,0.8535399,0.45573297,0.3632713,0.7811569,0.5077675,0.4298399,0.73372406,0.52620023,0.47459403,0.70604026,0.52561176,0.45572898,0.70471144,0.5437765,0.496312,0.69258416,0.52345157,0.44353956,0.71859455,0.53562534,0.4529068,0.7192461,0.5268401,0.47534752,0.77787,0.41105112,0.5247349,0.78207654,0.33616892,0.55380297,0.81477815,0.17157759,0.63526726,0.7715186,0.034563377,0.62785536,0.7763183,-0.05592463,0.6038077,0.7732599,-0.19361171,0.59794587,0.76933897,-0.22489616,0.6080263,0.7771514,-0.16229501,0.55415577,0.78247494,-0.28397942,0.49817762,0.7788806,-0.38100404,0.49172387,0.75277436,-0.437651,0.49197927,0.72001797,-0.48941857,0.49160773,0.71974874,-0.49018735,0.47496867,0.731229,-0.48960078,0.50899816,0.7086157,-0.48865595,0.52600515,0.6970254,-0.4873132,0.43955383,0.75204414,-0.4911436,0.45648837,0.7412054,-0.4921717,0.42193446,0.7621813,-0.49096942,0.4572394,0.74172586,-0.4906882,0.51046795,0.7097095,-0.4855253,0.52673924,0.6975814,-0.4857221,0.49271905,0.720556,-0.48788,0.5281928,0.69869214,-0.4825367,0.39340538,0.80458313,-0.44483498,0.39937365,0.78863364,-0.46750152,0.23638956,0.8642913,-0.44398254,0.19566454,0.8147334,-0.54582494,0.035587598,0.8883915,-0.45770526,0.061970606,0.8824664,-0.46627536,0.0893751,0.8763979,-0.47322175,0.06022073,0.9256099,-0.37365732,0.054429542,0.9186876,-0.39121678,0.047893774,0.91147095,-0.4085669,0.092745684,0.93145126,-0.35184768,0.1760353,0.9496799,-0.25907463,0.16537149,0.94520247,-0.2815041,0.15246509,0.9405398,-0.30354452,0.16445415,0.94537854,-0.28145018,0.13732746,0.93569285,-0.32499248,0.19826375,0.9480096,-0.24893618,0.24761297,0.94417834,-0.21729037,0.24803334,0.951257,-0.18327476,0.26129234,0.9551025,-0.13966195,0.24820007,0.95567894,-0.15834936,0.24916181,0.96446884,-0.08785351,0.23349428,0.9700097,-0.06753955,0.26747498,0.96345395,-0.014616468,0.29010034,0.956848,0.01684365,0.3738792,0.9244027,0.075458236,0.31515807,0.928594,0.19593002,0.32580087,0.92880446,0.17656735,0.33525768,0.9290147,0.15663335,0.2971789,0.92441326,0.23904976,0.19085844,0.9256728,0.32665408,0.20855916,0.9184465,0.33609387,0.22681478,0.91089994,0.34469748,0.22587788,0.8996209,0.373713,0.21377072,0.9084713,0.3591407,0.20178048,0.916932,0.34426785,0.24277589,0.879153,0.41006085,0.2662628,0.84688795,0.46030965,0.36364874,0.7811234,0.50754887,0.4310488,0.7326113,0.5267615,0.47447014,0.7062557,0.52543414,0.4528456,0.71935177,0.5267485,0.49624956,0.69269395,0.52336556,0.4527231,0.71956307,0.52656513,0.5057999,0.7220562,0.4720183,0.5187318,0.7844255,0.33999115,0.5529011,0.81611145,0.16811447,0.6029563,0.78950375,0.1145755,0.634899,0.77178824,0.035300974,0.62740207,0.77668345,-0.055941854,0.60404265,0.7774692,-0.17514008,0.6077304,0.7792445,-0.15310726,0.5986293,0.7714638,-0.2156074,0.594881,0.768435,-0.23584795,0.601682,0.7744752,-0.19536342,0.60670626,0.7834046,-0.13485074,0.6057157,0.7804457,-0.15496133,0.60702056,0.7863458,-0.11483165,0.55484915,0.78218937,-0.28341174,0.56975156,0.7753095,-0.2725405,0.49675354,0.77784985,-0.38494873,0.48991078,0.75326914,-0.43883142,0.49500078,0.7200683,-0.48628795,0.45952824,0.74125403,-0.48926094,0.43187812,0.7569058,-0.49048433,0.48726773,0.7251885,-0.4864893,0.3941804,0.8042409,-0.4447678,0.399767,0.7884565,-0.46746415,0.23436041,0.86543757,-0.44282392,0.17742023,0.83577657,-0.5196149,0.1914636,0.82388204,-0.53344166,0.20588808,0.81161314,-0.54671216,0.072237514,0.88065684,-0.46821502,0.09465466,0.87547326,-0.4739062,0.04052847,0.88750994,-0.45900276,0.10528435,0.8736144,-0.47509277,0.10336122,0.9243778,-0.36720857,0.08396156,0.9283586,-0.36207837,0.08455016,0.9178316,-0.38786143,0.07464226,0.9252002,-0.37206596,0.06361245,0.91102576,-0.40741315,0.17929092,0.94940245,-0.25785613,0.16795874,0.9449856,-0.28069916,0.15428388,0.94038945,-0.30309093,0.16623418,0.9451302,-0.28123847,0.13828173,0.9356148,-0.32481235,0.19831374,0.9478819,-0.24938256,0.17968927,0.9494659,-0.25734475,0.24832243,0.94404405,-0.21706408,0.23274969,0.94516456,-0.22911029,0.24834584,0.95079243,-0.18525158,0.2733682,0.9544203,-0.11979859,0.2614944,0.9550518,-0.13963099,0.2737501,0.9545393,-0.11796458,0.25951672,0.9639081,-0.059432622,0.24653937,0.9670283,-0.06383249,0.2673595,0.96348363,-0.01477083,0.32041004,0.9452352,0.062191844,0.3088608,0.94764847,0.08103937,0.3073921,0.92260885,0.2330301,0.32259643,0.92484564,0.20147477,0.33463955,0.9270509,0.16909462,0.20955251,0.9180326,0.3366065,0.22732604,0.91068417,0.3449307,0.19133909,0.92547494,0.32693338,0.22834978,0.9102519,0.34539524,0.24360795,0.87884307,0.41023162,0.26613075,0.847133,0.4599349,0.39764455,0.76913697,0.50030714,0.37843108,0.7766644,0.5035696,0.35928568,0.7840825,0.50609136,0.4734355,0.71106917,0.51984566,0.4522302,0.7219277,0.52374446,0.4957242,0.69515014,0.5205994,0.45119876,0.72663176,0.5180984,0.50607973,0.7214773,0.47260317,0.51868105,0.7016644,0.48850492,0.518187,0.7846303,0.34034917,0.5525842,0.81723106,0.16365832,0.59258455,0.79666567,0.119026765,0.63443303,0.77211463,0.036519904,0.6253421,0.77831215,-0.05636956,0.59370273,0.769074,-0.23673224,0.59764373,0.7720085,-0.21639064,0.59437627,0.76870894,-0.2362274,0.59830093,0.7716454,-0.21586882,0.60088146,0.77492654,-0.1960365,0.60341924,0.7778282,-0.17569429,0.6012018,0.77474606,-0.19576745,0.5947128,0.7685263,-0.23597457,0.60526115,0.7807134,-0.15538836,0.6064121,0.78358203,-0.13514279,0.60556424,0.7805349,-0.1551038,0.606878,0.786434,-0.11498123,0.60136193,0.7746558,-0.19563289,0.55727553,0.78111327,-0.2816133,0.54093975,0.7884449,-0.29281202,0.57332444,0.7736724,-0.2696851,0.48181415,0.75989336,-0.43636823,0.4858449,0.77217585,-0.40951088,0.4884061,0.78417635,-0.3827883,0.48377383,0.72803026,-0.48573118,0.45605102,0.74402404,-0.4883091,0.4301529,0.7582557,-0.48991507,0.48202688,0.72944653,-0.48534307,0.39532298,0.8040945,-0.44401774,0.40036178,0.78838074,-0.46708274,0.235236,0.8653964,-0.44244,0.15684949,0.8842158,-0.43995532,0.16382399,0.8478719,-0.50425684,0.17745462,0.8362269,-0.51887804,0.19148666,0.82419205,-0.53295434,0.17743176,0.8359268,-0.51936924,0.2058997,0.81177294,-0.54647046,0.06315277,0.8951149,-0.44134012,0.055808797,0.8926078,-0.44736645,0.08720437,0.8859001,-0.45560554,0.112683445,0.8763218,-0.46836156,0.12787129,0.92841995,-0.34883422,0.14221168,0.9345369,-0.3262157,0.15820822,0.9393508,-0.30428645,0.16990936,0.94448715,-0.28120255,0.14418909,0.93399465,-0.32689986,0.10929207,0.92262805,-0.3698821,0.08850642,0.91662014,-0.38983864,0.10532883,0.92379665,-0.36811084,0.065586604,0.91039777,-0.40850258,0.19812728,0.94784963,-0.24965304,0.24952811,0.95061904,-0.1845513,0.2795616,0.9550045,-0.099054,0.26440737,0.9626642,-0.058020823,0.27927715,0.96021044,0.00043801666,0.26752427,0.9634391,-0.014690974,0.31225988,0.94933736,0.03538776,0.32059592,0.94514173,0.06265331,0.3094963,0.9474436,0.08100991,0.28889185,0.92002565,0.26475322,0.3073481,0.922376,0.23400801,0.3226311,0.9246926,0.20212069,0.30737773,0.92253125,0.23335595,0.3346882,0.9269755,0.16941147,0.21803102,0.91400206,0.34214428,0.24532616,0.8781606,0.41066906,0.26732042,0.8471328,0.45924485,0.3980965,0.76897067,0.50020325,0.37873176,0.7765551,0.5035121,0.39779523,0.76908153,0.5002726,0.35943544,0.78402865,0.5060684,0.47279322,0.71321577,0.5174841,0.45088008,0.7276813,0.51690155,0.49540412,0.69624835,0.5194352,0.45023453,0.7297752,0.51450664,0.5191164,0.70095056,0.48906693,0.50630707,0.72113055,0.4728889,0.5135472,0.78585684,0.3445262,0.5245142,0.78634566,0.32641286,0.50195396,0.78536755,0.3622707,0.55242735,0.81785876,0.1610312,0.59215283,0.79716116,0.11785207,0.6327212,0.7743682,0.0042064805,0.63103676,0.7752759,0.027200341,0.62851715,0.77618194,0.05007712,0.6246103,0.7788681,-0.056802135,0.5519583,0.794075,-0.2545326,0.5706064,0.78029406,-0.25602636,0.53870493,0.7948712,-0.2792433,0.5640759,0.7932775,-0.22919242,0.5827603,0.7794734,-0.22980782,0.5675219,0.7868293,-0.24252544,0.57502776,0.79247856,-0.2032751,0.5847864,0.7916783,-0.17683427,0.58941925,0.78520834,-0.18982315,0.5933267,0.7908767,-0.14992493,0.60062635,0.7900737,-0.12260343,0.48570174,0.77385235,-0.40650505,0.4882549,0.7849956,-0.3812991,0.4818275,0.7607516,-0.43485543,0.48793894,0.78663003,-0.3783236,0.47734264,0.7332737,-0.4842042,0.45139146,0.74776185,-0.48692703,0.4278413,0.76008207,-0.4891085,0.4750005,0.73517865,-0.4836185,0.40064442,0.78838676,-0.46683013,0.2374173,0.8652721,-0.441517,0.26046327,0.86368215,-0.4315229,0.28309625,0.86208355,-0.42031944,0.13221717,0.8874209,-0.44159123,0.1565758,0.88437676,-0.43972918,0.16375275,0.84875864,-0.5027861,0.17739858,0.836915,-0.5177866,0.19144778,0.82466596,-0.5322347,0.17743613,0.8364564,-0.5185143,0.20587972,0.8120174,-0.54611474,0.087367445,0.88584715,-0.45567727,0.11276916,0.8762944,-0.46839225,0.06322978,0.8950894,-0.4413807,0.11294069,0.8762393,-0.46845388,0.2048647,0.94163054,-0.2671374,0.19007827,0.9368006,-0.2937258,0.18499036,0.9432714,-0.27571297,0.16887887,0.9385064,-0.30114058,0.17227675,0.9317852,-0.31952626,0.15150142,0.9265854,-0.34421927,0.1610644,0.9326732,-0.32276753,0.17494982,0.94408333,-0.2794624,0.1278262,0.92120206,-0.36748773,0.10135737,0.91563636,-0.38902026,0.115465626,0.922154,-0.3691878,0.072232954,0.9098894,-0.408514,0.15544517,0.9331151,-0.32424214,0.24966584,0.9500726,-0.18716043,0.27943495,0.9549454,-0.09997724,0.2917816,0.9560079,-0.03020674,0.26684695,0.96305263,-0.03636342,0.29189083,0.95642895,-0.00659221,0.28975555,0.9555848,-0.053845428,0.27845553,0.95940286,-0.044818625,0.31283355,0.94915,0.03534694,0.3204873,0.9450164,0.065053694,0.37910572,0.92023605,0.09718249,0.34329784,0.9294448,0.13519955,0.30585667,0.92184776,0.23800935,0.321912,0.9243457,0.20483574,0.30685666,0.9222,0.23534247,0.3344663,0.92680466,0.17077886,0.21814466,0.9139301,0.342264,0.26155764,0.86043364,0.43731177,0.272386,0.8443771,0.46133843,0.25021666,0.8756783,0.41301227,0.3145884,0.8085797,0.49722528,0.46903142,0.7197254,0.5118641,0.44836095,0.73295707,0.5116116,0.49353406,0.6995898,0.51671875,0.44457254,0.73927295,0.50579715,0.5065194,0.7104856,0.48851648,0.49999228,0.7257762,0.4725005,0.51252913,0.6948519,0.5044747,0.5091107,0.78596383,0.35080934,0.5224167,0.7863991,0.32963198,0.49494556,0.7855282,0.37144908,0.55249894,0.8178865,0.16064446,0.5921302,0.7972458,0.117392294,0.6283617,0.77685463,0.040724136,0.6316691,0.7751596,0.011035753,0.6236599,0.77854407,0.070124514,0.62263864,0.78033096,-0.05834971,0.537747,0.7955101,-0.27927005,0.5511396,0.7946237,-0.2545945,0.5382945,0.79514515,-0.2792549,0.55168545,0.794258,-0.25455338,0.56339717,0.7937355,-0.22927628,0.57448876,0.79284567,-0.20336773,0.56366867,0.79355234,-0.22924283,0.538568,0.7949626,-0.27924725,0.58438605,0.7919541,-0.17692277,0.5930631,0.79106086,-0.14999649,0.58465296,0.7917702,-0.17686377,0.60049635,0.79016596,-0.122645356,0.56380445,0.7934607,-0.22922605,0.4812292,0.7608665,-0.43531662,0.48532116,0.7739271,-0.40681714,0.48162815,0.76078993,-0.43500918,0.48775768,0.7866665,-0.37848148,0.44109902,0.7562043,-0.48330814,0.42273736,0.76422787,-0.48708194,0.45946282,0.74806535,-0.47884467,0.4043176,0.788467,-0.46351603,0.23364726,0.86711437,-0.439911,0.25789186,0.86491835,-0.43059036,0.23615849,0.86588746,-0.4409854,0.28178534,0.86270565,-0.41992384,0.124466784,0.88858986,-0.44149306,0.15265666,0.8849693,-0.43991506,0.16207458,0.85056204,-0.500276,0.1761002,0.83831614,-0.5159601,0.1905571,0.8256319,-0.53105545,0.1769655,0.8373827,-0.5171784,0.20542262,0.8125161,-0.54554486,0.23524882,0.9396025,-0.24860653,0.21832255,0.9349967,-0.27949315,0.21806712,0.94076544,-0.25962874,0.19959389,0.936202,-0.28928888,0.1975622,0.9302276,-0.3092665,0.17303957,0.925296,-0.33746797,0.18750975,0.93085265,-0.31361347,0.20929329,0.94134283,-0.26470733,0.14488009,0.92020273,-0.36364356,0.13351877,0.92086965,-0.36629477,0.12949023,0.91759586,-0.37583265,0.11326206,0.9149488,-0.3873505,0.09622607,0.9122618,-0.39814436,0.07841579,0.90953505,-0.40816298,0.059867874,0.90676844,-0.4173569,0.18245135,0.9311642,-0.3156655,0.25000465,0.9500371,-0.18688816,0.28524876,0.9552264,-0.07858525,0.2800676,0.9548242,-0.099362224,0.31009993,0.950687,0.0056774267,0.30459267,0.952201,-0.023162972,0.29802758,0.95455354,-0.0026678916,0.29644373,0.95369196,-0.050918818,0.38313097,0.9153348,0.12398738,0.379502,0.9199667,0.098181054,0.30547833,0.9217191,0.23899154,0.32172918,0.9242613,0.20550297,0.3057309,0.92180485,0.23833677,0.3344096,0.9267631,0.17111504,0.28215927,0.9119593,0.29785293,0.27405924,0.8439673,0.46109736,0.2626327,0.8601738,0.43717855,0.2729437,0.84424055,0.4612588,0.2507336,0.8755552,0.41295975,0.3150612,0.80843,0.49716938,0.46876034,0.72009856,0.5115875,0.44443652,0.739454,0.505652,0.4933993,0.69978184,0.5165874,0.44416448,0.7398159,0.5053616,0.49236587,0.7313334,0.47194007,0.50144625,0.71428126,0.48821506,0.49745005,0.7276339,0.4723265,0.5099987,0.69679415,0.5043602,0.52188504,0.7867437,0.32965192,0.5220623,0.78662884,0.3296453,0.50875604,0.7861938,0.3508086,0.49476838,0.7856432,0.37144175,0.592357,0.79718274,0.11667412,0.6298638,0.7766813,0.006143372,0.627315,0.77786624,0.037416965,0.6310719,0.7756673,0.0094018895,0.62321573,0.77904844,0.06845183,0.61964434,0.7825073,-0.061018433,0.5309883,0.7990556,-0.28206682,0.5454653,0.7976701,-0.25727406,0.53485334,0.79703295,-0.28048232,0.54925066,0.7956414,-0.25549656,0.55877906,0.7962805,-0.23173961,0.57089174,0.7948867,-0.20551826,0.5606285,0.7952642,-0.23076089,0.5367829,0.7960183,-0.2796764,0.5817679,0.7934886,-0.17866689,0.591375,0.79208636,-0.15124415,0.5835143,0.79246616,-0.17750624,0.5996831,0.79068,-0.12331027,0.5615521,0.79475516,-0.2302682,0.48102596,0.76082754,-0.4356093,0.48519713,0.77390176,-0.40701327,0.48116142,0.7608535,-0.43541425,0.48770145,0.7866541,-0.37857977,0.4391926,0.7590239,-0.48061693,0.40458673,0.7885055,-0.4632156,0.21809405,0.8742216,-0.43378747,0.24725403,0.8697135,-0.4271579,0.22842528,0.8695037,-0.43793297,0.27635232,0.8651316,-0.41854113,0.17485917,0.8395596,-0.51435775,0.1897048,0.8264904,-0.53002423,0.17568614,0.8387311,-0.5154266,0.20498464,0.8129598,-0.5450483,0.2357255,0.9396229,-0.2480773,0.21878977,0.9350148,-0.27906698,0.23545331,0.9396112,-0.24837981,0.21847843,0.9350027,-0.27935123,0.19799882,0.9302432,-0.30894014,0.17342506,0.92530894,-0.33723456,0.19782424,0.93023694,-0.30907083,0.23531716,0.9396053,-0.24853104,0.14519458,0.9202128,-0.36349273,0.14498492,0.9202061,-0.36359328,0.12976223,0.91760427,-0.37571818,0.11348723,0.9149557,-0.3872683,0.12965341,0.9176009,-0.37576398,0.096400335,0.9122671,-0.39809012,0.078535385,0.90953857,-0.40813214,0.09628419,0.9122636,-0.39812627,0.059929226,0.9067702,-0.41734427,0.12959896,0.9175992,-0.37578693,0.19773695,0.93023384,-0.309136,0.27045488,0.9519286,-0.1438265,0.2654154,0.94937235,-0.16806796,0.25820303,0.9467516,-0.19233468,0.2803925,0.95479083,-0.09876515,0.31079078,0.95046175,0.0056177303,0.30504835,0.9520531,-0.023245208,0.31033027,0.95061195,0.005657589,0.29666722,0.9536192,-0.050980914,0.32915193,0.9419349,0.0664659,0.33325624,0.9190959,0.21024519,0.34038132,0.9242415,0.17296882,0.31098408,0.91911626,0.24189708,0.35231787,0.9190755,0.1765569,0.34848738,0.92423165,0.15605243,0.24952191,0.89464,0.37061846,0.27771005,0.84262764,0.46136296,0.26499626,0.8593251,0.4374212,0.27527508,0.8435213,0.46118918,0.25187936,0.8751535,0.41311398,0.35286477,0.79413295,0.4948124,0.38497898,0.7779707,0.49654084,0.3212973,0.80975217,0.49098825,0.4678825,0.7211503,0.5109092,0.44372514,0.7403259,0.50500053,0.49296215,0.7003235,0.5162706,0.44284585,0.7413448,0.50427717,0.49092865,0.7327746,0.47120106,0.5005037,0.7152676,0.48773792,0.4918869,0.7318141,0.47169414,0.5095354,0.6972998,0.5041297,0.5086094,0.80287117,0.31098923,0.5005155,0.7970204,0.3379981,0.5175486,0.79218185,0.3234058,0.49096087,0.7910938,0.3648671,0.60401046,0.794903,0.057451565,0.61119527,0.78762126,0.07805793,0.61889,0.7852948,0.01695015,0.6252454,0.78041816,-0.0039666127,0.6118041,0.79012316,0.037431676,0.58639485,0.80431587,0.09600557,0.6021035,0.79242635,0.09763126,0.5955325,0.799634,0.076984316,0.5766231,0.80894834,0.11449219,0.52855843,0.8000896,-0.2836946,0.54345065,0.7985593,-0.25877482,0.5299477,0.799499,-0.28276646,0.54479426,0.7979667,-0.25777563,0.55716145,0.79702383,-0.23307528,0.56965,0.79548323,-0.20665252,0.557809,0.79672664,-0.23254196,0.5306415,0.7992034,-0.28230047,0.5808784,0.7939375,-0.17956497,0.5908114,0.7923866,-0.15187299,0.58147156,0.7936383,-0.1789666,0.5994168,0.7908305,-0.12363904,0.55813247,0.79657805,-0.23227488,0.480434,0.76071256,-0.43646246,0.48483634,0.77382696,-0.40758497,0.48082882,0.7607892,-0.43589377,0.48753777,0.7866177,-0.37886608,0.4390639,0.7592707,-0.4803445,0.40556952,0.789888,-0.45998943,0.21480474,0.87545854,-0.4329333,0.24500935,0.8705524,-0.4267422,0.21699607,0.87463456,-0.43350556,0.2752095,0.8655582,-0.41841215,0.1482137,0.8632379,-0.48254842,0.25795394,0.94349396,-0.20803568,0.2624095,0.9464724,-0.1879661,0.26920435,0.94909996,-0.16351855,0.2721492,0.9517959,-0.1414898,0.2644852,0.9463326,-0.18574786,0.24958406,0.9405845,-0.23023598,0.23936082,0.9376042,-0.25219977,0.23407057,0.937905,-0.25601795,0.22728139,0.9345534,-0.27377564,0.21335497,0.93143237,-0.29481083,0.22446439,0.9347074,-0.2755681,0.2421753,0.9410248,-0.23627004,0.18006013,0.9249802,-0.33464903,0.1944472,0.9284021,-0.31663817,0.19760332,0.9282412,-0.3151527,0.16077182,0.9216497,-0.35314906,0.13979706,0.91824985,-0.37050515,0.15731163,0.9218176,-0.35426733,0.11720645,0.91478086,-0.3865729,0.09308247,0.91124314,-0.4012126,0.06751931,0.9076369,-0.4142903,0.30364922,0.95167184,-0.046019763,0.31137577,0.95026827,-0.005949373,0.3132484,0.9495591,0.014591915,0.30816525,0.9509725,-0.026182113,0.2978657,0.95236635,-0.06537872,0.29085797,0.9530559,-0.08417866,0.28267443,0.9537406,-0.10234286,0.3293434,0.9418872,0.06619207,0.33800507,0.94021845,0.041735157,0.33501083,0.91837335,0.21061364,0.35320902,0.9187145,0.17665486,0.31183884,0.9187555,0.24216719,0.3549915,0.9179904,0.17684646,0.34541407,0.91818196,0.19398712,0.36371776,0.91779864,0.15923265,0.2535934,0.89391327,0.36960718,0.2780087,0.84244174,0.46152258,0.26519266,0.85920745,0.43753332,0.27780962,0.84256566,0.46141624,0.25197616,0.8750978,0.4131729,0.46767366,0.7213569,0.5108087,0.44274148,0.74144495,0.50422156,0.49285787,0.70043,0.51622576,0.4425328,0.7416451,0.50411034,0.4857686,0.74098957,0.4636414,0.4972395,0.72090584,0.4827501,0.48922098,0.735525,0.46868527,0.50799185,0.7001976,0.50166494,0.50846493,0.8033053,0.3101031,0.5004518,0.79731363,0.33740017,0.50856143,0.80301595,0.31069377,0.4909455,0.7912424,0.3645655,0.6250705,0.7805552,-0.0045286333,0.6187554,0.78541106,0.016468361,0.62517047,0.78047687,-0.004207538,0.6188452,0.7853335,0.01678953,0.61170465,0.7902191,0.037030574,0.6039408,0.794979,0.057131268,0.61174446,0.7901807,0.03719101,0.62522054,0.7804377,-0.004046953,0.5954876,0.7996904,0.07674476,0.5863698,0.8043531,0.095846504,0.5955175,0.7996528,0.07690444,0.5766129,0.80896676,0.11441308,0.6117643,0.79016155,0.037271276,0.52192116,0.80161595,-0.29156512,0.53809106,0.7998724,-0.26582363,0.5257285,0.80074435,-0.28708535,0.5416745,0.7989974,-0.26113573,0.55298305,0.79812205,-0.23918802,0.5665479,0.79636496,-0.2117223,0.5546626,0.7976831,-0.23675102,0.5276176,0.8003079,-0.28482792,0.5787394,0.79460114,-0.18349302,0.5895151,0.7928306,-0.15456937,0.58016837,0.7941588,-0.18087673,0.59883547,0.7910533,-0.12502281,0.55549836,0.7974634,-0.23552847,0.48006707,0.76042706,-0.4373629,0.48462754,0.7736412,-0.40818548,0.4803119,0.76061743,-0.43676266,0.48745117,0.78652716,-0.37916535,0.43918633,0.7596558,-0.4796233,0.40719113,0.80577445,-0.43002662,0.40709963,0.79482514,-0.45002544,0.4061712,0.7836107,-0.47008428,0.21199757,0.87623703,-0.4327421,0.24311005,0.8710811,-0.42674962,0.21386823,0.87571824,-0.43287173,0.2742508,0.8658273,-0.4184848,0.13777484,0.8699019,-0.47359136,0.30206344,0.9469337,-0.10988309,0.310684,0.94620186,-0.0904294,0.33034292,0.9388947,-0.09669715,0.3180431,0.94546515,-0.07031513,0.32878324,0.9439772,-0.02843803,0.3228585,0.946438,0.004184799,0.33133242,0.94146264,-0.06218424,0.3256899,0.93627334,-0.13159901,0.29952866,0.9457155,-0.12611434,0.31728953,0.9335988,-0.16649508,0.29611507,0.9444838,-0.14235921,0.28662485,0.9419803,-0.17469779,0.3051008,0.93087125,-0.20097807,0.28912762,0.9280908,-0.23463315,0.28929415,0.9352154,-0.20415913,0.28126165,0.94838274,-0.14649937,0.2460714,0.9223718,-0.29779038,0.23358503,0.9306041,-0.2818049,0.2530207,0.9297711,-0.26740643,0.26941922,0.92525756,-0.26704255,0.27156597,0.9289333,-0.2516641,0.23307535,0.9209092,-0.31241333,0.2192261,0.9194336,-0.32646862,0.20274037,0.92411554,-0.32389328,0.2045487,0.9179449,-0.33990726,0.18907084,0.91644317,-0.3526814,0.1558379,0.9134006,-0.37605038,0.16466476,0.91734886,-0.36243147,0.17282285,0.9149284,-0.36474425,0.13815159,0.91185987,-0.38655618,0.11980214,0.91030616,-0.39621976,0.10083027,0.9087395,-0.40500093,0.08127902,0.90716004,-0.41286126,0.06119375,0.90556765,-0.41976497,0.26428065,0.9329289,-0.2445391,0.2736262,0.93601656,-0.22136343,0.27279714,0.94273955,-0.19189548,0.3358716,0.9181387,0.21026574,0.35540292,0.91787285,0.17663026,0.31228387,0.9186384,0.24203771,0.29935586,0.91888773,0.2569659,0.32446682,0.91838866,0.22645862,0.35622537,0.91763747,0.17619601,0.34646744,0.9178882,0.19349802,0.36511824,0.9173863,0.15840152,0.25383213,0.8939001,0.36947507,0.3082657,0.82806593,0.46827236,0.3236812,0.82066506,0.47089207,0.32520285,0.83128655,0.45078346,0.3392656,0.81312394,0.47299924,0.3708729,0.79762596,0.47565332,0.3940931,0.77977985,0.48645043,0.3478922,0.81479967,0.46375912,0.28090256,0.8621448,0.42166337,0.294797,0.8455361,0.44515553,0.3028562,0.8470727,0.43674466,0.25939128,0.8764902,0.40556273,0.293036,0.8353252,0.46514693,0.44469362,0.7513292,0.4875982,0.45733446,0.74142665,0.49105164,0.47175062,0.7412082,0.4775582,0.44629383,0.76085407,0.4710869,0.48266047,0.72113144,0.49699926,0.49532956,0.7107432,0.4994925,0.5086134,0.8035375,0.30925694,0.50058186,0.79747057,0.33683607,0.5085146,0.80338275,0.30982107,0.49102616,0.7913219,0.36428434,0.6049548,0.7954582,-0.035720527,0.6065406,0.79237396,-0.06520793,0.6146697,0.7887837,-0.0011801848,0.6019302,0.798522,-0.0065370095,0.5974924,0.80156523,0.022272097,0.5916707,0.80458784,0.0506382,0.5844976,0.80758977,0.07849465,0.5760088,0.8105709,0.10577679,0.52045107,0.8019221,-0.2933456,0.53690755,0.80013585,-0.26741892,0.5212919,0.80174714,-0.29232904,0.5376971,0.7999602,-0.266356,0.55206376,0.79834247,-0.24057207,0.5658684,0.796542,-0.21287046,0.55243194,0.7982543,-0.24001881,0.5217116,0.80165964,-0.29181993,0.5782735,0.7947344,-0.18438268,0.5892346,0.79291975,-0.15518008,0.57858425,0.79464555,-0.18378974,0.5987109,0.79109806,-0.12533617,0.55261576,0.7982102,-0.239742,0.42946154,0.77901053,-0.4568429,0.45157096,0.7631862,-0.46220174,0.4172595,0.7755842,-0.4736704,0.46327737,0.76669395,-0.44447094,0.44100153,0.78241366,-0.4397118,0.4518723,0.7857936,-0.42230296,0.4620679,0.78915024,-0.40464196,0.47158313,0.7924835,-0.38675472,0.48041397,0.7957933,-0.3686672,0.46600568,0.77326506,-0.4299998,0.1296847,0.8758102,-0.4649068,0.33904734,0.9407629,0.0034810724,0.33519417,0.9416916,-0.029356502,0.33473992,0.94230336,0.0036774168,0.34371504,0.93857527,-0.030600514,0.3407301,0.93794477,-0.06451835,0.34489328,0.93634933,-0.06556337,0.34245458,0.9340851,-0.1010443,0.32610416,0.94532514,0.0040511265,0.3363097,0.9317826,-0.13666362,0.32276896,0.9311194,-0.16981423,0.33438408,0.9326101,-0.13574119,0.32640988,0.92944205,-0.17202929,0.31105307,0.92791814,-0.20546019,0.3127481,0.92706347,-0.20674124,0.2953604,0.924647,-0.24039593,0.33052576,0.9342505,-0.1338984,0.33438903,0.93731105,-0.09814237,0.33446974,0.94030106,-0.06295964,0.33655858,0.93952054,-0.063478015,0.33092216,0.9432202,-0.028742827,0.3239408,0.9460683,0.004140661,0.2743263,0.9221927,-0.27259085,0.24730638,0.92148626,-0.29950404,0.27292743,0.9230744,-0.27100602,0.24976896,0.9197006,-0.30292934,0.2208052,0.9180797,-0.32920334,0.23621945,0.9184405,-0.31728125,0.22185488,0.917171,-0.33102533,0.20622508,0.91635036,-0.34318098,0.2067026,0.9158921,-0.34411576,0.19079266,0.9146039,-0.356508,0.23450673,0.9197916,-0.31462672,0.27012208,0.9248234,-0.26783535,0.13843267,0.91139,-0.38756248,0.15683192,0.9119993,-0.3790264,0.13857305,0.9111547,-0.3880653,0.15650111,0.9124676,-0.37803474,0.17415747,0.91330624,-0.36815873,0.17396717,0.91353893,-0.36767116,0.13885327,0.91068304,-0.38907087,0.120261066,0.9093575,-0.39825404,0.10109702,0.9080226,-0.4065395,0.10100814,0.9082619,-0.4060267,0.08140496,0.90667844,-0.41389307,0.06123073,0.905325,-0.4202826,0.17358638,0.9140032,-0.3666959,0.23393458,0.92023957,-0.31374153,0.21975303,0.91898346,-0.32738045,0.20478863,0.917718,-0.3403752,0.20526804,0.9172633,-0.3413107,0.32859322,0.9350633,-0.1329781,0.327626,0.93546784,-0.13251823,0.31911844,0.9327772,-0.16760094,0.30595303,0.93045306,-0.20161821,0.33237872,0.9410767,-0.062442426,0.30765545,0.92961293,-0.20289867,0.3376587,0.9177602,0.20905222,0.35705552,0.9174478,0.17550191,0.3132324,0.9184498,0.24152727,0.29984185,0.91879356,0.25673568,0.32585016,0.91810536,0.22561969,0.35871196,0.9170678,0.17410448,0.34862345,0.91741437,0.19186613,0.36789402,0.91672057,0.15581205,0.25398394,0.89375836,0.3697136,0.41542178,0.779474,0.46887633,0.42920792,0.77927005,0.45663851,0.41188663,0.79703647,0.44168112,0.4426335,0.779066,0.44399524,0.38486955,0.79742956,0.4647381,0.38146567,0.81432754,0.43744087,0.35149044,0.83092445,0.43129918,0.36826485,0.8145165,0.44826767,0.40128717,0.7796779,0.4806984,0.3220789,0.846813,0.42328808,0.29334685,0.86197984,0.41344696,0.30932787,0.84698623,0.43235472,0.26540735,0.87641186,0.40182236,0.36154866,0.8146109,0.45353243,0.5894341,0.8060443,0.05348066,0.58466125,0.8079283,0.07364174,0.5791964,0.8098042,0.09353482,0.57305247,0.8116718,0.113136075,0.6026938,0.79773396,-0.019513147,0.60045975,0.79965365,0.001469164,0.6058685,0.7935208,-0.056991674,0.5971946,0.8019085,0.017359126,0.5674248,0.8141986,0.122921556,0.5794839,0.810141,0.08871245,0.55334526,0.8182168,0.15598164,0.51612264,0.80246526,-0.29944444,0.5334639,0.80060333,-0.27285647,0.51860493,0.8021549,-0.29596692,0.5357658,0.8002917,-0.2692363,0.5494259,0.7987336,-0.24526677,0.563951,0.79685616,-0.21674745,0.55048585,0.7985772,-0.24339226,0.51983714,0.80199975,-0.29422072,0.57698536,0.79497105,-0.18737388,0.588479,0.7930781,-0.15722458,0.5778458,0.79481333,-0.18538074,0.59838605,0.7911776,-0.12638094,0.55101347,0.798499,-0.24245325,0.45280832,0.7864599,-0.42005402,0.46270615,0.7896466,-0.40294063,0.4719661,0.79281217,-0.38561237,0.48058414,0.79595643,-0.36809266,0.43001658,0.7793484,-0.45574322,0.44125798,0.78258145,-0.43915555,0.41755858,0.77575433,-0.47312793,0.441769,0.7829169,-0.43804252,0.4727236,0.7934687,-0.3833273,0.46312827,0.78997725,-0.40180618,0.48159012,0.7969343,-0.3646459,0.12923858,0.87602836,-0.46461993,0.33234063,0.9424456,0.0366879,0.3402775,0.9403178,0.0036911918,0.34487456,0.9381526,-0.030515503,0.3396215,0.9405554,0.0035789618,0.344212,0.9383943,-0.030564196,0.3459707,0.93595004,-0.06558795,0.34344047,0.9337103,-0.10116192,0.3456391,0.93607306,-0.065580465,0.33929342,0.940674,0.0035229987,0.3427832,0.93396026,-0.101083614,0.33719724,0.9314334,-0.13685709,0.32719472,0.92911935,-0.17228118,0.3368746,0.93156046,-0.13678686,0.32688066,0.9292486,-0.17218052,0.31342816,0.9267684,-0.20703393,0.29593596,0.9243806,-0.2407122,0.31327692,0.92683405,-0.20696901,0.33671317,0.93162394,-0.13675171,0.3438808,0.93851495,-0.030588416,0.3453077,0.9361959,-0.06557294,0.34514192,0.9362573,-0.06556912,0.33912942,0.94073325,0.003495096,0.27480006,0.92195606,-0.27291387,0.25014588,0.91949475,-0.30324313,0.27452937,0.9220913,-0.27272928,0.24989468,0.919632,-0.303034,0.23655047,0.9182504,-0.3175848,0.22214192,0.91699684,-0.3313151,0.23643014,0.9183195,-0.31747448,0.22202711,0.9170666,-0.33119917,0.2069479,0.9157343,-0.3443883,0.19099864,0.9144625,-0.35676017,0.20689344,0.91576934,-0.3443278,0.23636994,0.9183541,-0.31741923,0.27439404,0.9221589,-0.272637,0.17432678,0.91318166,-0.36838758,0.15696731,0.9118918,-0.37922895,0.17423007,0.9132529,-0.36825678,0.15687712,0.91196346,-0.37909392,0.1389578,0.9105928,-0.38924474,0.12033788,0.9092848,-0.39839688,0.13891603,0.9106289,-0.38917518,0.17418176,0.9132884,-0.36819145,0.10114938,0.9079677,-0.40664905,0.08143634,0.90664154,-0.41396764,0.10111455,0.9080043,-0.40657607,0.061244663,0.9053064,-0.4203206,0.13887428,0.910665,-0.3891057,0.23630978,0.91838866,-0.317364,0.22191234,0.9171362,-0.33108327,0.23624966,0.91842324,-0.31730887,0.20673,0.91587454,-0.34414607,0.20678441,0.9158395,-0.3442066,0.33655176,0.9316875,-0.13671644,0.3265669,0.92937756,-0.1720797,0.33639044,0.9317509,-0.13668121,0.3128237,0.9270307,-0.20677376,0.34497622,0.93631864,-0.065565296,0.31297475,0.9269652,-0.20683886,0.3565139,0.93258274,0.05645598,0.34938183,0.91726047,0.19122116,0.34912914,0.9173118,0.19143641,0.33871114,0.91755545,0.20824683,0.35919544,0.91696507,0.1736483,0.368124,0.91666913,0.15557142,0.31379583,0.9183479,0.2411832,0.32612303,0.91805434,0.225433,0.30013165,0.9187428,0.25657895,0.32666865,0.9179521,0.22505893,0.3601606,0.91675943,0.1727325,0.34988666,0.9171579,0.19078973,0.3695007,0.91636,0.15412183,0.2815421,0.8802828,0.3818851,0.2598762,0.885239,0.3857671,0.30992687,0.8660568,0.39228937,0.3307342,0.84895974,0.41216773,0.28910148,0.88219666,0.37168452,0.36872447,0.83540285,0.40760803,0.39038107,0.81667095,0.42503077,0.4208702,0.7994753,0.42861113,0.44719073,0.78033364,0.43714967,0.39469212,0.81783766,0.41875967,0.31768906,0.868074,0.38147238,0.339026,0.8510926,0.40087754,0.34303465,0.8521538,0.39517236,0.29275307,0.88314813,0.3665311,0.56779474,0.8040423,-0.17642303,0.57089347,0.8010388,-0.18004856,0.55236405,0.8088603,-0.2015912,0.5820317,0.7991709,-0.1502162,0.5950094,0.7942465,-0.123029836,0.528528,0.8065958,-0.26469123,0.54677707,0.8017526,-0.24130405,0.51388043,0.8054591,-0.295233,0.54136676,0.80772954,-0.23344174,0.5687337,0.8111128,-0.13652089,0.58815813,0.80032384,-0.11641186,0.5614931,0.8099881,-0.16924779,0.57407176,0.81223464,-0.10352041,0.59048724,0.80089927,-0.09942434,0.57749987,0.8133534,-0.0703566,0.5923259,0.8014739,-0.08239884,0.5889269,0.8078833,0.022127727,0.57862777,0.81558204,-0.0039799693,0.5847565,0.8108401,0.02445894,0.58675456,0.80971456,-0.0090214,0.57901686,0.8144692,-0.03713981,0.5829373,0.8115379,-0.039878417,0.5763443,0.8166918,0.02901388,0.5721839,0.81779855,0.06173382,0.56617063,0.8189023,0.0940733,0.57062775,0.81600255,0.09232474,0.55833435,0.82000303,0.1259276,0.54871076,0.8211008,0.15719427,0.59069496,0.8056137,-0.045454014,0.46337613,0.79012907,-0.4012214,0.4632936,0.79007846,-0.40141633,0.45316932,0.78666383,-0.41928226,0.47287357,0.7935692,-0.38293415,0.48165745,0.79698414,-0.364448,0.4302276,0.7794518,-0.455367,0.44186696,0.7829683,-0.43785185,0.41767162,0.77580637,-0.47294274,0.44206268,0.783071,-0.43747047,0.47317246,0.79377013,-0.38214767,0.48179182,0.7970839,-0.3640521,0.463541,0.7902302,-0.40083155,0.48205954,0.7972833,-0.36326015,0.127937,0.8766222,-0.4638595,0.3410141,0.94005,0.0039258045,0.34557906,0.93789834,-0.030361826,0.34062123,0.94019294,0.0038005474,0.34517652,0.9380437,-0.030449744,0.34663478,0.93570995,-0.06550703,0.34405744,0.933485,-0.10114488,0.34643045,0.93578386,-0.06553198,0.34042487,0.9402643,0.0037380036,0.3436462,0.9336352,-0.10115632,0.3377615,0.93122345,-0.13689443,0.3277019,0.92892545,-0.17236285,0.3375564,0.9312998,-0.13688092,0.32749906,0.92900306,-0.17233025,0.31387553,0.92659116,-0.20714977,0.29632202,0.9242206,-0.24085169,0.31377602,0.9266306,-0.20712405,0.3374538,0.93133795,-0.13687417,0.3449753,0.9381163,-0.03049362,0.34622616,0.9358578,-0.065556906,0.346124,0.93589467,-0.06556932,0.34032667,0.9403,0.0037067782,0.2751248,0.9218139,-0.27306676,0.25041062,0.9193711,-0.30339956,0.27493924,0.92189515,-0.27297947,0.2502342,0.9194535,-0.30329534,0.23678607,0.9181362,-0.31773934,0.22234924,0.9168923,-0.3314654,0.2367004,0.9181777,-0.31768316,0.22226632,0.91693413,-0.3314053,0.20712791,0.91563946,-0.34453213,0.19115247,0.9143776,-0.3568953,0.20708796,0.9156605,-0.34450027,0.23665753,0.91819847,-0.31765506,0.2748465,0.92193574,-0.27293578,0.17445563,0.9131069,-0.36851192,0.15707266,0.9118272,-0.37934065,0.17438202,0.9131496,-0.3684409,0.15700242,0.9118703,-0.3792662,0.13904108,0.9105387,-0.38934168,0.120400764,0.90924114,-0.39847738,0.13900775,0.9105603,-0.38930288,0.17434518,0.913171,-0.36840537,0.10119368,0.9079347,-0.40671167,0.08146386,0.9066195,-0.41401055,0.10116415,0.9079567,-0.40666994,0.061257288,0.9052953,-0.42034262,0.13899109,0.91057116,-0.38928345,0.23661473,0.9182192,-0.317627,0.2221834,0.9169759,-0.33134523,0.2365719,0.91824,-0.31759888,0.2069679,0.91572374,-0.3444043,0.20704795,0.9156816,-0.34446827,0.33735123,0.9313761,-0.13686742,0.3272961,0.9290806,-0.17229758,0.33724856,0.9314143,-0.13686055,0.31347772,0.92674875,-0.20704685,0.34602183,0.93593156,-0.06558176,0.31357723,0.92670935,-0.2070726,0.35417607,0.93360376,0.05425246,0.34220362,0.9172233,0.20395635,0.36168718,0.9165926,0.17041247,0.315754,0.9181826,0.23924902,0.30115914,0.9186603,0.25566858,0.32945138,0.9177036,0.2219952,0.36469525,0.9162585,0.16573374,0.3539656,0.91674155,0.18518433,0.37435335,0.91577417,0.14566144,0.34389412,0.85261834,0.39341947,0.34360853,0.85246354,0.39400393,0.36992332,0.8360534,0.4051808,0.31823334,0.8683679,0.38034815,0.2930098,0.883287,0.36599085,0.4215198,0.799831,0.42730728,0.39500588,0.81800807,0.41813058,0.44752643,0.78051883,0.436475,0.3956305,0.8183486,0.4168718,0.31931126,0.8689547,0.3780979,0.29352075,0.88356453,0.36490998,0.34446248,0.8529276,0.39224997,0.29453203,0.8841187,0.36274657,0.5760783,0.8167981,0.031219624,0.5781845,0.81590164,0.0026864824,0.57594216,0.8168512,0.032321822,0.5783408,0.8157951,0.00046555095,0.5789393,0.81484306,-0.029325018,0.5789569,0.8147897,-0.03044087,0.5779168,0.8137818,-0.061411332,0.57566357,0.8169575,0.034525063,0.5713935,0.8180105,0.06609345,0.56539625,0.8190608,0.09729576,0.5656564,0.819008,0.0962222,0.55769926,0.8201084,0.12803772,0.5483352,0.8211533,0.158227,0.5789855,0.8146829,-0.03267324,0.5622444,0.81015,-0.1659462,0.5619961,0.810096,-0.16704711,0.55361587,0.80907685,-0.19724146,0.5691085,0.8112205,-0.13430077,0.5741959,0.81228834,-0.10240439,0.52940774,0.80670464,-0.262593,0.5417458,0.8077838,-0.23237218,0.5143822,0.8055136,-0.29420868,0.5424975,0.8078924,-0.23023121,0.56983215,0.8114359,-0.12985796,0.57443774,0.81239575,-0.10017216,0.5627345,0.810258,-0.1637434,0.5748951,0.8126105,-0.09570667,0.5637921,0.8193778,0.10372331,0.564335,0.8192721,0.101583414,0.56971276,0.81843406,0.07478705,0.5564051,0.8203192,0.13224892,0.5475781,0.8212584,0.16028976,0.5778462,0.81611454,0.007125005,0.5753765,0.8170636,0.036726706,0.5788978,0.8149498,-0.027093716,0.5747771,0.817276,0.041124806,0.5537214,0.82074034,0.14063399,0.54604065,0.82146853,0.16440488,0.56268215,0.81958884,0.10799495,0.54287314,0.8218885,0.17259231,0.45675024,0.7885076,-0.41186774,0.47468007,0.7946791,-0.3783701,0.43232724,0.7803881,-0.45176056,0.41879764,0.77627814,-0.47116956,0.44498125,0.78446466,-0.43198028,0.4776051,0.7964919,-0.3708018,0.46762678,0.79251677,-0.39146188,0.48668098,0.8004329,-0.3499268,0.07743304,0.8954437,-0.43838882,0.058730282,0.8997459,-0.43244436,0.09669115,0.8910562,-0.44347462,0.38265255,0.9232607,0.03415679,0.35799426,0.93303484,0.035861988,0.37890264,0.9238683,0.053853076,0.36085334,0.9324636,0.017220598,0.3853743,0.9226508,0.014215637,0.3870527,0.9220386,-0.005916538,0.36363342,0.93131405,-0.020613318,0.38767514,0.9214241,-0.02618492,0.38723198,0.92080724,-0.04653391,0.3749026,0.9255517,-0.05293442,0.3857166,0.92018807,-0.066907264,0.38312522,0.91956663,-0.08724827,0.3495979,0.9368522,0.009446618,0.3571687,0.92898685,-0.09702555,0.3794572,0.91894287,-0.10749992,0.37471488,0.9183168,-0.12760499,0.3613158,0.9231334,-0.13143717,0.36890358,0.9176884,-0.14750633,0.36203194,0.9170577,-0.16714695,0.34829456,0.9219103,-0.16962408,0.35411122,0.91642463,-0.18647018,0.34515595,0.91578937,-0.20541964,0.33818054,0.91825116,-0.20603096,0.3351838,0.9151518,-0.22393996,0.3242151,0.91451186,-0.24197645,0.35459697,0.92548895,-0.1331587,0.35613036,0.9324037,-0.06159943,0.36989078,0.92611927,-0.074053615,0.3516397,0.93573916,-0.027235089,0.36868018,0.9278711,-0.055948097,0.34388843,0.938993,0.0057363715,0.31227353,0.9138697,-0.25947532,0.29938546,0.91322523,-0.27638394,0.28546295,0.9181855,-0.274675,0.28558004,0.91257846,-0.29265103,0.27088937,0.9119293,-0.30822697,0.25718537,0.91692543,-0.30512857,0.25534812,0.91127795,-0.32306328,0.23899366,0.91062427,-0.3371134,0.23228902,0.91315764,-0.33494022,0.2218659,0.9099684,-0.3503329,0.20400707,0.90931016,-0.36267915,0.21856105,0.91124386,-0.3490927,0.27856052,0.92061317,-0.27363378,0.185462,0.9086496,-0.37411183,0.16627765,0.9079869,-0.38459274,0.16012,0.9105558,-0.38111645,0.14650297,0.9073218,-0.3940863,0.12618893,0.9066544,-0.40255943,0.1435016,0.908615,-0.3922067,0.17601313,0.91247666,-0.3693314,0.10538844,0.90598476,-0.40998155,0.084156156,0.9053129,-0.41632473,0.10258583,0.90728694,-0.407807,0.0625482,0.9046387,-0.42156434,0.22895998,0.91441125,-0.33381045,0.32774073,0.92187816,-0.20670447,0.34142637,0.9242839,-0.17066716,0.3445008,0.9289562,-0.13549757,0.3346973,0.9194689,-0.20628785,0.35297266,0.93351465,-0.06293358,0.3478682,0.9278093,-0.13475041,0.29605633,0.90587485,0.30288848,0.3139595,0.90724856,0.27987415,0.31567672,0.9146107,0.252657,0.3301064,0.9086126,0.25583762,0.34444162,0.90996706,0.23091099,0.35691965,0.91131186,0.20522916,0.36750472,0.9126471,0.1789289,0.37617126,0.9139727,0.15214847,0.34765548,0.85566884,0.3833621,0.34661397,0.8547577,0.38632628,0.37440118,0.83989054,0.39294735,0.32132033,0.8706893,0.3723619,0.2954722,0.88493866,0.35997182,0.42404622,0.80193627,0.42081234,0.3968474,0.81935763,0.4137212,0.4488553,0.7816165,0.4331333,0.39921066,0.8213681,0.40741298,0.3250694,0.87412614,0.3608786,0.29728618,0.88657063,0.3544199,0.34967017,0.8574831,0.3774302,0.30064985,0.88980144,0.34331194,0.51350594,0.8056207,-0.2954437,0.52866113,0.80680424,-0.26378846,0.51397365,0.80556357,-0.2947853,0.5290881,0.8067473,-0.2631056,0.54187226,0.8079846,-0.23137699,0.55310327,0.8091617,-0.19832818,0.5420649,0.8079562,-0.23102467,0.5142072,0.805535,-0.2944559,0.5534453,0.8091051,-0.19760382,0.56232506,0.81033564,-0.16476266,0.5695159,0.8115063,-0.13080226,0.5624742,0.8103074,-0.16439216,0.5696426,0.81147814,-0.13042459,0.57466155,0.8126736,-0.09656939,0.577755,0.81383777,-0.062186964,0.5747135,0.8126596,-0.096377715,0.56254864,0.81029326,-0.16420677,0.54235345,0.80791366,-0.2304957,0.5293012,0.8067189,-0.2627638,0.5421611,0.80794203,-0.23084834,0.51432383,0.8055208,-0.29429102,0.5787966,0.8149987,-0.027777674,0.57779425,0.8161563,0.006536335,0.57885456,0.8149708,-0.027386855,0.57782894,0.8161285,0.0069287233,0.5747627,0.8173107,0.04063388,0.5697242,0.8184618,0.07439542,0.57476854,0.8172968,0.040830273,0.57888347,0.81495684,-0.027191527,0.5627079,0.8196096,0.10770308,0.5537499,0.8207541,0.14044127,0.56269073,0.81959575,0.10789763,0.542893,0.82189536,0.17249721,0.5747714,0.8172898,0.040928405,0.5747915,0.8126386,-0.096090145,0.5697059,0.811464,-0.13023575,0.56266016,0.8102721,-0.1639288,0.5747396,0.8126526,-0.09628186,0.54240143,0.80790657,-0.23040757,0.56262296,0.8102792,-0.1640215,0.4315238,0.8027017,-0.41165185,0.42987695,0.8134588,-0.39177886,0.44338182,0.80115724,-0.40194482,0.45247057,0.8104407,-0.3720971,0.4550212,0.79960746,-0.39189744,0.47415376,0.80740094,-0.35111526,0.41974267,0.7987805,-0.4310055,0.43834195,0.7936723,-0.42183006,0.09669396,0.89124155,-0.44310126,0.07744897,0.89562553,-0.4380144,0.058744907,0.899835,-0.43225688,0.09669537,0.89133424,-0.44291458,0.39610597,0.91464406,0.08078554,0.39021695,0.9149897,0.10258904,0.3896446,0.9192943,0.055453934,0.4007751,0.91429764,0.058643956,0.4042048,0.91395056,0.036232635,0.39497137,0.9186191,0.011686738,0.4063794,0.9136029,0.013621049,0.40728742,0.9132545,-0.009120419,0.40150997,0.9156134,-0.021017909,0.4069211,0.9129054,-0.03192072,0.4052765,0.9125557,-0.054708328,0.38579735,0.9215725,0.04317986,0.39081576,0.91726077,-0.07678364,0.40235415,0.91220534,-0.07741151,0.39815837,0.91185427,-0.09995855,0.3898705,0.9142314,-0.11037142,0.39269742,0.91150254,-0.12227787,0.38598365,0.91115016,-0.14429839,0.37657267,0.9135364,-0.15376672,0.3780335,0.9107971,-0.16594973,0.36886734,0.91044337,-0.1871624,0.3636777,0.91164494,-0.19142105,0.35850945,0.91008896,-0.20786802,0.3469877,0.9097339,-0.22799945,0.35580242,0.91069186,-0.20986895,0.3706036,0.9125931,-0.17270412,0.38157982,0.91447484,-0.13465746,0.38562235,0.9154084,-0.11542492,0.39218086,0.91909355,-0.03822645,0.38978323,0.9209066,-0.00012858787,0.39848673,0.91678125,-0.026840495,0.38372493,0.9227,0.037146673,0.3343342,0.9093782,-0.24749132,0.3205845,0.9090218,-0.26627997,0.30849993,0.9114353,-0.2722378,0.30577767,0.9086647,-0.28430355,0.2899563,0.90830696,-0.30150253,0.2772514,0.9107296,-0.30610996,0.27316654,0.90794855,-0.31781986,0.25545752,0.9075895,-0.33320087,0.24886735,0.9088092,-0.33485958,0.23688142,0.9072298,-0.34759364,0.21749365,0.90686935,-0.3609494,0.23353924,0.9078417,-0.34825698,0.26344752,0.9097718,-0.32079694,0.29025283,0.9116825,-0.2908408,0.30242795,0.9126305,-0.27503264,0.31375512,0.9135736,-0.25872952,0.19735208,0.90650827,-0.3732223,0.17651728,0.9061466,-0.3843696,0.16968273,0.90737534,-0.38454875,0.15505229,0.9057842,-0.39435235,0.13302228,0.90542114,-0.40313482,0.1516253,0.9064007,-0.39426845,0.18715566,0.90834516,-0.37400776,0.11049442,0.90505743,-0.41068482,0.08753779,0.904693,-0.41697443,0.10708724,0.9056762,-0.41022313,0.06422299,0.904328,-0.42197904,0.24557424,0.9094162,-0.33564195,0.3558051,0.9134328,-0.19759373,0.37178004,0.914718,-0.1583371,0.37912565,0.91715926,-0.12281128,0.361065,0.9122428,-0.1935074,0.39055175,0.9196667,-0.04101797,0.38130736,0.91657764,-0.120375134,0.3570876,0.9113296,0.20485774,0.3570316,0.9113238,0.20498155,0.3447012,0.90999097,0.23042908,0.3675986,0.9126589,0.17867595,0.37620914,0.91397846,0.15201998,0.3141239,0.9072606,0.27965048,0.33018017,0.90861857,0.25572118,0.29614675,0.90588087,0.3027819,0.33032736,0.9086306,0.25548816,0.36778578,0.91268235,0.17816986,0.37628448,0.91399014,0.15176287,0.3571993,0.91134155,0.20460999,0.37643486,0.91401345,0.15124871,0.3988399,0.8218525,0.40679878,0.42295828,0.8034564,0.41900364,0.3986543,0.8220944,0.4064917,0.42332155,0.8029503,0.41960657,0.44761813,0.783468,0.43106365,0.4477954,0.7832039,0.43135938,0.39828277,0.82257783,0.4058775,0.37364316,0.8408116,0.39169705,0.3490908,0.8581381,0.37647656,0.34928408,0.8579199,0.37679446,0.32467657,0.8745385,0.3602326,0.30045053,0.88999516,0.34298408,0.44814932,0.7826754,0.4319508,0.5121616,0.8055326,-0.2980063,0.5275541,0.8067222,-0.26624405,0.51288015,0.80557954,-0.29664037,0.52818805,0.8067691,-0.2648415,0.54098445,0.80790865,-0.23370796,0.5524152,0.80909187,-0.2005188,0.54125863,0.8079321,-0.2329911,0.5132381,0.805603,-0.29595673,0.55287486,0.8091384,-0.1990587,0.56181645,0.81027174,-0.16679911,0.56916565,0.81144834,-0.1326726,0.5620023,0.8102949,-0.1660588,0.5693065,0.8114715,-0.13192457,0.5744478,0.8126217,-0.09826374,0.57765526,0.81379175,-0.06369754,0.57449573,0.8126332,-0.09788726,0.56209487,0.81030655,-0.16568857,0.54166824,0.8079671,-0.23191527,0.52850354,0.80679256,-0.2641396,0.5413955,0.8079437,-0.23263259,0.51341677,0.80561477,-0.29561466,0.57878834,0.81495845,-0.029098645,0.5778544,0.81612194,0.0054088244,0.5787934,0.81498146,-0.0283438,0.5778145,0.8161448,0.0061604986,0.5748685,0.8172821,0.039701637,0.56985277,0.81843895,0.07365808,0.5748264,0.81729347,0.040074542,0.5787956,0.81499296,-0.027966356,0.56283677,0.8195925,0.107158355,0.553857,0.8207427,0.14008494,0.56275094,0.81960386,0.107521474,0.5429569,0.82188964,0.17232308,0.5748052,0.81729925,0.04026104,0.57456714,0.81265056,-0.09732255,0.5693766,0.8114831,-0.1315505,0.56223315,0.810324,-0.16513303,0.5745196,0.812639,-0.09769908,0.5417363,0.8079729,-0.23173581,0.5621871,0.8103182,-0.16531825,0.4292524,0.8142903,-0.3907348,0.42946085,0.8140133,-0.3910828,0.40568146,0.81755537,-0.4086879,0.45202294,0.8109993,-0.37142357,0.4739149,0.80768234,-0.35079044,0.08036052,0.8963292,-0.43604594,0.060210567,0.90018034,-0.43133518,0.10102465,0.8924093,-0.43977225,0.367568,0.9072118,0.20459855,0.36410978,0.90859824,0.20462954,0.35851327,0.90442544,0.23126361,0.37467855,0.90995884,0.1777381,0.3798585,0.91266656,0.15082206,0.32091025,0.9044585,0.28101856,0.3337531,0.9072443,0.2559621,0.29948553,0.904475,0.30369958,0.34062144,0.90444195,0.2568302,0.3884649,0.90439236,0.17654869,0.38670138,0.90994275,0.1498874,0.3744897,0.90440893,0.20445532,0.40036377,0.90437585,0.14769278,0.41012236,0.90435934,0.11804185,0.41676825,0.9085012,0.03049234,0.42301998,0.90432626,0.05699248,0.41988525,0.90711397,0.02899369,0.41490677,0.90986246,0.001644214,0.41660783,0.90713024,0.059603628,0.417688,0.9043428,0.08775443,0.41439822,0.9057496,0.08883525,0.42608917,0.90430975,0.025920514,0.42687905,0.90429324,-0.005295232,0.4253849,0.90427667,-0.03648777,0.41622874,0.9070651,-0.06313919,0.42254707,0.905684,-0.034503326,0.42161426,0.90426016,-0.06749017,0.4130692,0.90565115,-0.095759355,0.41558713,0.90424365,-0.098136544,0.40733522,0.9042271,-0.12826288,0.41683048,0.9084689,-0.030604932,0.40368843,0.91261905,0.06451399,0.4077999,0.9085336,0.09091744,0.4105052,0.9112459,0.03341355,0.39453357,0.91398203,0.094763376,0.36448628,0.90837175,-0.20496468,0.38434413,0.904194,-0.18631372,0.36625555,0.90698355,-0.20793669,0.38044363,0.9069999,-0.18059307,0.39690238,0.90421057,-0.15770783,0.3947581,0.9056183,-0.15498857,0.3697272,0.9041775,-0.21392734,0.35312957,0.9041609,-0.24040082,0.33463967,0.90414435,-0.2655923,0.31227294,0.9069346,-0.28276354,0.33337158,0.9055526,-0.26236975,0.31435615,0.9041278,-0.2893668,0.29160276,0.9055198,-0.30822358,0.29238713,0.9041113,-0.31159672,0.26885012,0.90409476,-0.3321631,0.33076233,0.9083393,-0.2559608,0.24387066,0.9040782,-0.35095546,0.24358673,0.9054869,-0.34750393,0.21758212,0.9040617,-0.36787295,0.19034784,0.905454,-0.37936884,0.19012511,0.9040451,-0.38282484,0.16164628,0.90402853,-0.39573076,0.13229783,0.904012,-0.40652132,0.10223667,0.90399545,-0.41513842,0.071623534,0.9039789,-0.42153564,0.40798244,0.9084365,-0.09106856,0.41106063,0.91121393,-0.026801258,0.39807227,0.82296413,0.40530044,0.42235357,0.80466866,0.41728386,0.39796683,0.82315713,0.40501198,0.4225557,0.80426496,0.41785702,0.44694632,0.784944,0.429071,0.44704267,0.7847335,0.4293556,0.39775544,0.8235429,0.40443507,0.37320322,0.8415467,0.3905362,0.34874773,0.85866106,0.37560108,0.3488623,0.85848683,0.3758929,0.32443932,0.8748679,0.35964593,0.30032775,0.8901501,0.34268934,0.44723517,0.78431195,0.42992496,0.45952109,0.8182442,-0.34542263,0.47725937,0.81134933,-0.3375438,0.43375623,0.81789994,-0.37801492,0.41999894,0.8177277,-0.3936018,0.44693586,0.8180721,-0.36194807,0.471496,0.81841624,-0.32846057,0.4828456,0.8185882,-0.31108445,0.49996483,0.8116991,-0.3019598,0.4935555,0.81876004,-0.29331717,0.50361216,0.8189319,-0.2751824,0.5217169,0.81927526,-0.23790649,0.53734,0.8123978,-0.22644112,0.52105075,0.8156778,-0.25134787,0.51300323,0.81910366,-0.25670403,0.52974236,0.81944686,-0.21881464,0.53706986,0.81961834,-0.1994536,0.55088216,0.81636983,-0.17340438,0.54369015,0.8197898,-0.17984888,0.54959553,0.8199612,-0.16002628,0.55570656,0.8183416,-0.14665341,0.55477864,0.8201325,-0.14001189,0.5592335,0.82030374,-0.11983193,0.5447593,0.8143886,-0.20002143,0.5186367,0.80838764,-0.2784339,0.5286297,0.81039745,-0.2525997,0.50737244,0.80636835,-0.30388036,0.5659385,0.8206459,-0.07908158,0.5691455,0.81706077,-0.09211476,0.5629549,0.82047486,-0.09951293,0.56818104,0.82081693,-0.058564603,0.5696804,0.8209879,-0.037988864,0.5754997,0.81775045,-0.009183091,0.57043505,0.82115877,-0.017381262,0.57044494,0.82132953,0.0032312765,0.5724961,0.81971544,0.017741438,0.56971043,0.8215002,0.023821842,0.56823313,0.82167083,0.044363577,0.5772248,0.8157759,-0.036349867,0.5660157,0.8218414,0.0648297,0.5630618,0.8220119,0.085193574,0.5630081,0.8204006,0.09982365,0.55937564,0.8221823,0.1054287,0.5549628,0.82235265,0.12550879,0.54982966,0.8225229,0.14540772,0.5439836,0.8226931,0.16509971,0.53743273,0.8228632,0.18455924,0.57338136,0.81890595,0.025036737,0.5573084,0.8147359,-0.16004016,0.555236,0.8119233,-0.18025956,0.5586386,0.8175293,-0.13988845,0.5328226,0.8095695,-0.24636838,0.08088438,0.896442,-0.43571714,0.10128431,0.8924668,-0.4395959,0.06047437,0.9002357,-0.43118265,0.10180312,0.8925815,-0.439243,0.123179056,0.88865435,-0.44172433,0.39728275,0.82458305,0.4027769,0.4210034,0.80792683,0.41232303,0.3970444,0.8251021,0.40194818,0.42145878,0.8068435,0.4139758,0.44546622,0.7889093,0.42329893,0.44568166,0.78834486,0.424123,0.39656368,0.826138,0.4002914,0.3721975,0.84352463,0.3872147,0.34795493,0.8600694,0.37310582,0.34822047,0.85960066,0.3739373,0.32388562,0.8757558,0.35798034,0.3000386,0.890568,0.34185585,0.44610858,0.7872139,0.42577156,0.5587723,0.82061505,-0.11985169,0.554721,0.8201715,-0.14001225,0.54948026,0.82003915,-0.16002285,0.55449027,0.8203272,-0.14001378,0.5492496,0.8201949,-0.16001621,0.5435176,0.8199068,-0.17983757,0.5368404,0.8197743,-0.19943029,0.5434025,0.8199847,-0.1798301,0.5543748,0.82040507,-0.14001459,0.5366109,0.81993026,-0.19940706,0.5294569,0.8196419,-0.21877526,0.52137625,0.8195094,-0.23784697,0.52934265,0.81971985,-0.21875954,0.52126265,0.8195874,-0.23782712,0.51260865,0.8193769,-0.25662026,0.503165,0.81924427,-0.2750706,0.5125522,0.81941587,-0.25660837,0.52928555,0.81975883,-0.21875165,0.5432298,0.82010156,-0.17981887,0.54913425,0.8202728,-0.16001286,0.5433449,0.82002366,-0.17982635,0.5543171,0.820444,-0.14001505,0.50294137,0.81940037,-0.27501455,0.49305722,0.81911165,-0.2931735,0.48229823,0.81897897,-0.31090492,0.49294657,0.8191897,-0.29314142,0.48218876,0.8190571,-0.31086886,0.47090152,0.8188463,-0.32824156,0.45888165,0.81871355,-0.3451605,0.47084746,0.8188854,-0.32822156,0.4928912,0.81922877,-0.29312536,0.45877504,0.8187917,-0.34511682,0.44625396,0.8185807,-0.36163938,0.4330344,0.8184478,-0.3776564,0.44620144,0.8186198,-0.3616157,0.43298277,0.8184869,-0.37763083,0.41923994,0.81831497,-0.3931902,0.40488833,0.81818205,-0.40822005,0.4192146,0.8183345,-0.39317644,0.4461752,0.81863934,-0.36160377,0.4707664,0.8189439,-0.32819173,0.48213404,0.81909615,-0.31085086,0.47082055,0.8189049,-0.32821164,0.4928635,0.8192483,-0.29311734,0.5123549,0.81955236,-0.25656644,0.5210923,0.81970435,-0.23779722,0.5124677,0.8194744,-0.25659037,0.5212059,0.8196264,-0.23781714,0.52914274,0.8198563,-0.21873176,0.53649616,0.82000816,-0.1993953,0.52919984,0.81981736,-0.21873972,0.51252407,0.81943536,-0.25660238,0.5431435,0.82016,-0.17981315,0.54907656,0.8203117,-0.16001111,0.543201,0.82012105,-0.17981696,0.5542883,0.8204634,-0.14001524,0.5292284,0.8197978,-0.21874371,0.56801456,0.821826,0.04428847,0.5696551,0.821539,0.02380504,0.57033324,0.82140714,0.0032016798,0.5695446,0.8216166,0.023771448,0.5702216,0.8214848,0.0031720945,0.5702661,0.8212753,-0.017419595,0.5694535,0.8211433,-0.038031828,0.5702098,0.8213141,-0.017432366,0.56948936,0.8216554,0.023754656,0.56934,0.821221,-0.038053293,0.5678957,0.8210113,-0.05860806,0.56559443,0.8208792,-0.07912135,0.5678386,0.82105017,-0.05861674,0.5655371,0.82091814,-0.07912791,0.56255215,0.82074714,-0.09954478,0.56252337,0.8207666,-0.09954701,0.5678101,0.8210696,-0.05862105,0.5701254,0.82137233,-0.017451555,0.57016575,0.8215236,0.0031573058,0.5701817,0.82133347,-0.017438719,0.56946164,0.8216748,0.023746293,0.56582695,0.8219771,0.0647571,0.5629022,0.8221282,0.08512559,0.5659349,0.82189953,0.06479857,0.56300855,0.82205063,0.08517091,0.55924475,0.82227916,0.105367325,0.55485994,0.8224301,0.1254559,0.5592971,0.8222404,0.10539182,0.5659888,0.8218608,0.064819366,0.549754,0.822581,0.14536527,0.5439342,0.8227318,0.16506965,0.54980445,0.82254225,0.14539362,0.53740865,0.82288253,0.18454337,0.5593233,0.82222104,0.105404146,0.5627823,0.82059157,-0.09952669,0.56582385,0.8207237,-0.07909485,0.56800985,0.8209336,-0.058590688,0.5628974,0.8205137,-0.099517554,0.5703788,0.82119757,-0.017394044,0.56806695,0.8208947,-0.058582,0.49344474,0.81883824,-0.2932853,0.48262662,0.81874454,-0.31101272,0.49322337,0.81899446,-0.29322135,0.48240766,0.8189009,-0.3109408,0.47117177,0.8186509,-0.32834116,0.4590948,0.81855714,-0.34524798,0.47106364,0.81872904,-0.32830134,0.4931126,0.8190726,-0.2931894,0.44641125,0.8184634,-0.36171076,0.43313754,0.8183696,-0.37770763,0.4463064,0.8185416,-0.3616632,0.41929057,0.8182758,-0.3932176,0.47100955,0.81876814,-0.32828152,0.5128341,0.8192208,-0.25666815,0.52160335,0.81935334,-0.23788665,0.5295711,0.81956387,-0.21879104,0.51294684,0.8191427,-0.25669202,0.5436327,0.8198288,-0.1798451,0.5296283,0.8195249,-0.21879889,0.41969538,0.81796265,-0.39343724,0.43354994,0.8180565,-0.3779126,0.44662112,0.8183069,-0.36180568,0.41989774,0.817806,-0.39354697,0.4713879,0.8184945,-0.32842082,0.44672593,0.81822866,-0.3618532,0.08151462,0.8964108,-0.43566382,0.10212209,0.8925656,-0.4392013,0.06078492,0.9002204,-0.43117097,0.10275986,0.8925339,-0.43911695,0.39653772,0.8262476,0.4000909,0.42093557,0.8082706,0.41171822,0.3965247,0.8263024,0.3999907,0.42095828,0.808156,0.41191983,0.44539893,0.7893275,0.42258954,0.4454086,0.7892678,0.42269087,0.39649862,0.82641196,0.39979017,0.3721385,0.84373355,0.38681602,0.3479055,0.8602183,0.3728087,0.347922,0.86016864,0.37290773,0.32384923,0.87584966,0.3577835,0.3000187,0.89061224,0.34175807,0.44542783,0.78914833,0.42289346,0.5584626,0.8208149,-0.11992663,0.5542493,0.8204884,-0.14002323,0.548998,0.8203618,-0.16002429,0.5540932,0.8205884,-0.14005505,0.5488409,0.82046175,-0.16005048,0.54302496,0.8202351,-0.17982864,0.5363375,0.8201083,-0.19941027,0.54294604,0.8202851,-0.17983891,0.5540151,0.82063836,-0.140071,0.53617895,0.8202084,-0.19942509,0.52894396,0.8199815,-0.21874337,0.52085346,0.8198547,-0.23780248,0.52886444,0.8200316,-0.21874793,0.5207738,0.81990474,-0.23780417,0.5120762,0.8197278,-0.2565625,0.50262326,0.8196009,-0.27499864,0.5120364,0.8197528,-0.25656193,0.5288247,0.8200566,-0.21875016,0.5428276,0.82036006,-0.17985433,0.5487623,0.82051176,-0.16006361,0.5429065,0.8203101,-0.17984408,0.5539761,0.8206634,-0.14007899,0.50246423,0.8197011,-0.2749907,0.4925065,0.8194739,-0.29308674,0.48173887,0.81934696,-0.31080258,0.49242717,0.81952405,-0.29307988,0.48165983,0.8193971,-0.31079292,0.47033402,0.8192199,-0.32812297,0.45830637,0.8190928,-0.34502488,0.47029468,0.819245,-0.32811674,0.49238756,0.8195491,-0.29307637,0.4582283,0.819143,-0.3450096,0.4456714,0.81896573,-0.36148605,0.43244523,0.81883854,-0.3774845,0.44563264,0.81899077,-0.361477,0.4324068,0.8188637,-0.37747404,0.41864476,0.81871134,-0.3929991,0.40428767,0.81858414,-0.4080092,0.41862568,0.8187239,-0.39299324,0.4456133,0.81900334,-0.36147237,0.4702358,0.81928253,-0.3281073,0.48162046,0.8194221,-0.310788,0.47027504,0.8192575,-0.32811356,0.4923677,0.8195616,-0.29307473,0.5118971,0.8198405,-0.2565599,0.5206544,0.81997985,-0.2378068,0.51197666,0.8197904,-0.25656104,0.5207341,0.8199297,-0.23780505,0.52872527,0.82011914,-0.21875598,0.5360997,0.8202584,-0.19943255,0.5287651,0.8200941,-0.21875368,0.51201653,0.8197653,-0.2565616,0.54276836,0.82039756,-0.17986207,0.54872304,0.82053673,-0.16007021,0.5428078,0.8203726,-0.17985691,0.5539567,0.82067585,-0.14008293,0.528785,0.8200816,-0.21875247,0.56223565,0.8209539,-0.09962772,0.56527144,0.8210929,-0.07921276,0.56238914,0.82085407,-0.09958466,0.56542325,0.820993,-0.07916435,0.5675664,0.8212318,-0.05870865,0.56911814,0.82137066,-0.038142186,0.56764144,0.8211819,-0.05868173,0.56246585,0.82080406,-0.099563256,0.5692661,0.8212709,-0.038082846,0.56992507,0.8215094,-0.01754022,0.56998664,0.82164824,0.0030701538,0.5699979,0.8214596,-0.01750791,0.5700583,0.82159835,0.0031050625,0.56930333,0.82178694,0.023662057,0.56787664,0.82192564,0.044208657,0.56933856,0.821762,0.02368079,0.5700343,0.8214347,-0.017491752,0.56775385,0.82110703,-0.058641236,0.5654991,0.8209431,-0.07914005,0.5676789,0.8211569,-0.05866824,0.56250423,0.8207791,-0.099552475,0.5657088,0.8220643,0.06468298,0.5628033,0.82220286,0.0850584,0.5657763,0.82201445,0.06472534,0.56286925,0.82215303,0.08510323,0.5591644,0.8223414,0.10530842,0.55479735,0.82247984,0.1254065,0.55919653,0.82231647,0.105332,0.5658101,0.8219896,0.06474656,0.5497084,0.8226183,0.14532658,0.5439047,0.82275665,0.1650428,0.5497388,0.8225934,0.14535244,0.53739434,0.822895,0.18452938,0.55921257,0.82230407,0.10534372,0.5693913,0.82172465,0.02370882,0.57009405,0.82157344,0.003122452,0.5700889,0.82139724,-0.017467648,0.56935614,0.82174957,0.023690153,0.5677727,0.8210945,-0.05863449,0.57007074,0.8214097,-0.01747573,0.41894865,0.8185105,-0.3930937,0.43275243,0.81863767,-0.3775682,0.44582644,0.8188653,-0.3615223,0.41910064,0.8184099,-0.39314103,0.45861894,0.81889206,-0.34508616,0.47049126,0.8191196,-0.328148,0.48189694,0.81924665,-0.31082195,0.49258584,0.8194238,-0.29309356,0.4705699,0.8190694,-0.32816046,0.44605905,0.8187147,-0.36157656,0.43290597,0.81853724,-0.37760985,0.445904,0.8188151,-0.3615404,0.4191766,0.8183597,-0.3931646,0.5122354,0.8196276,-0.25656477,0.5210127,0.8197545,-0.237799,0.5290234,0.81993145,-0.21873872,0.5123151,0.81957746,-0.2565659,0.54310393,0.820185,-0.17981832,0.5290632,0.8199064,-0.21873641,0.49270493,0.8193486,-0.29310367,0.48197597,0.81919646,-0.31083158,0.47068775,0.81899416,-0.3281793,0.49262556,0.81939876,-0.29309684,0.44609773,0.8186896,-0.36158574,0.47064853,0.81901926,-0.32817292,0.108851805,0.8929114,-0.43687588,0.07411844,0.898508,-0.43265432,0.14458774,0.88717324,-0.43819857,0.39648953,0.82650983,0.39959678,0.42091855,0.80857754,0.41113243,0.39648497,0.82655877,0.3995001,0.42092428,0.80847526,0.41132766,0.44539097,0.7897009,0.42189968,0.44539213,0.78964764,0.42199817,0.3964758,0.8266566,0.3993067,0.37211332,0.8439201,0.3864331,0.34788132,0.86035115,0.3725244,0.3478894,0.86030686,0.37261912,0.3238295,0.8759335,0.35759595,0.30000696,0.8906518,0.34166524,0.4453945,0.78954095,0.42219526,0.41505864,0.8203754,-0.3933327,0.4289692,0.8204614,-0.37792665,0.43080246,0.81961006,-0.37768853,0.44230852,0.8205474,-0.36202922,0.45505923,0.82063335,-0.34566167,0.44322017,0.820122,-0.3618781,0.41782007,0.8190974,-0.3930723,0.45687023,0.8197824,-0.34529182,0.4672048,0.8207193,-0.32884565,0.4787295,0.82080525,-0.31160358,0.46810305,0.82029414,-0.3286291,0.47961923,0.82038015,-0.31135476,0.48961827,0.8208912,-0.2939585,0.49985725,0.8209771,-0.27593353,0.4900584,0.8206788,-0.29381818,0.4685521,0.8200814,-0.32852012,0.44458768,0.81948316,-0.3616478,0.4317192,0.8191837,-0.37756667,0.44367594,0.8199092,-0.36180177,0.41828042,0.818884,-0.39302722,0.50159556,0.82012683,-0.27530685,0.50943315,0.821063,-0.25755283,0.51833355,0.8211489,-0.23884064,0.5102905,0.8206382,-0.2572092,0.5191779,0.8207241,-0.23846632,0.5265472,0.8212347,-0.21982187,0.53406334,0.82132053,-0.20052163,0.52696234,0.82102245,-0.2196198,0.5107191,0.8204256,-0.25703672,0.5348783,0.82089597,-0.20008735,0.5408726,0.82140636,-0.18096553,0.546966,0.82149214,-0.16117944,0.5412719,0.8211942,-0.18073404,0.5473568,0.82128006,-0.16093369,0.55233616,0.8215779,-0.14118955,0.55697614,0.8216637,-0.12102233,0.55252695,0.8214719,-0.14105982,0.5414716,0.8210881,-0.18061814,0.52758485,0.8207038,-0.21931587,0.5195999,0.8205116,-0.23827846,0.5271698,0.8209163,-0.21951859,0.5109333,0.8203193,-0.2569502,0.4915981,0.8199343,-0.29332405,0.48095337,0.8197417,-0.31097803,0.49071828,0.8203599,-0.2936072,0.4800639,0.8201675,-0.3112297,0.46967453,0.819549,-0.32824558,0.45777565,0.8193562,-0.34510404,0.4692256,0.81976205,-0.3283558,0.49027836,0.8205725,-0.293748,0.4452715,0.8191633,-0.36153108,0.4321776,0.8189704,-0.377505,0.44481555,0.8193766,-0.3616091,0.4185106,0.8187773,-0.39300457,0.4690011,0.8198685,-0.32841066,0.5608801,0.8217494,-0.10070439,0.5640434,0.82183516,-0.08026249,0.56160355,0.8213253,-0.100130916,0.5647455,0.82141113,-0.07966331,0.566462,0.8219208,-0.0597237,0.5681332,0.8220065,-0.039115135,0.5668021,0.821709,-0.05941184,0.56196487,0.8211131,-0.099843554,0.5687901,0.82158273,-0.038466893,0.56905496,0.8220922,-0.018463967,0.56922644,0.8221778,0.0022025593,0.5693716,0.8218804,-0.0181284,0.5695307,0.8219661,0.0025493198,0.56864786,0.8222635,0.022857206,0.5673201,0.8223491,0.043472752,0.5687936,0.8221576,0.023035908,0.5695298,0.8217744,-0.017960478,0.5673118,0.82139087,-0.058943298,0.5650962,0.821199,-0.079363085,0.5669721,0.82160294,-0.059255756,0.56214535,0.821007,-0.09969964,0.56524545,0.82243466,0.06402205,0.5624268,0.8225202,0.08447805,0.56551033,0.82222307,0.064399615,0.56267786,0.82230866,0.08486491,0.5588683,0.8226058,0.10481383,0.55457497,0.8226913,0.12500258,0.5589868,0.82250005,0.10501155,0.5656427,0.8221172,0.064588524,0.5495526,0.82277685,0.14501782,0.54380846,0.8228623,0.16483334,0.54965645,0.8226712,0.14522369,0.53735,0.8229478,0.184423,0.55904603,0.8224472,0.105110444,0.56901217,0.82199883,0.023304103,0.5696828,0.82186013,0.0027228387,0.569767,0.82161546,-0.017708449,0.56886655,0.8221047,0.02312533,0.5673967,0.8213379,-0.058865078,0.5696879,0.82166845,-0.01779246,0.5531945,0.8211006,-0.14060467,0.5479426,0.82096165,-0.16056432,0.54236954,0.82061017,-0.18009521,0.5528131,0.82131284,-0.1408649,0.53528553,0.8206836,-0.1998695,0.5283107,0.8203319,-0.21895999,0.5202327,0.82019264,-0.2379958,0.5116829,0.81994694,-0.25664693,0.52810335,0.82043815,-0.21906175,0.54177094,0.8209288,-0.18044408,0.54755205,0.8211739,-0.16081071,0.54217,0.82071644,-0.1802116,0.5526224,0.8214189,-0.14099492,0.49192804,0.8197746,-0.29321724,0.48117566,0.8196352,-0.31091487,0.47001126,0.81938916,-0.3281628,0.491708,0.81988114,-0.29328856,0.44538543,0.81911004,-0.3615115,0.469899,0.81944245,-0.32819042,0.51136166,0.8201065,-0.25677717,0.5200218,0.82029897,-0.23809013,0.5277923,0.8205976,-0.21921432,0.5115759,0.8200001,-0.25669032,0.5416712,0.8209819,-0.18050212,0.5278959,0.8205445,-0.2191635,0.17136027,0.8929463,-0.41627228,0.1537866,0.8957619,-0.41708547,0.13638736,0.89854205,-0.41715786,0.23018761,0.8929812,-0.38677943,0.1957219,0.898576,-0.39275187,0.25085512,0.89861006,-0.3599607,0.20690268,0.887209,-0.41237295,0.18384866,0.89577913,-0.40469673,0.331881,0.89305085,-0.30383414,0.30061033,0.898644,-0.31948775,0.3439258,0.89867795,-0.27220038,0.3798779,0.8987119,-0.21911111,0.39622027,0.9014878,-0.17415291,0.40243316,0.902862,-0.15128677,0.3886994,0.9001044,-0.19678614,0.3697672,0.89731026,-0.2410529,0.3583832,0.89589953,-0.26253667,0.34574637,0.8944797,-0.28348812,0.30058524,0.89016587,-0.34242254,0.31681624,0.89161295,-0.32350254,0.28322524,0.88870984,-0.36052504,0.26477757,0.88724476,-0.37774274,0.26748976,0.8958308,-0.35487527,0.2452878,0.8857707,-0.39401042,0.22480513,0.8842876,-0.40926528,0.20338278,0.8827956,-0.4234471,0.44421792,0.8931902,-0.06986911,0.4268025,0.89877987,-0.100172006,0.4367775,0.89881384,-0.03686637,0.43741572,0.89884776,0.027206972,0.4262035,0.9016218,0.07367982,0.41875243,0.90299517,0.09615705,0.43243647,0.9002393,0.05067426,0.4411095,0.89744705,0.003347039,0.4434899,0.89603716,-0.020834526,0.44453272,0.8946182,-0.04526482,0.41083848,0.8989156,0.15219231,0.38670152,0.9016888,0.19344047,0.37308615,0.9030617,0.21280567,0.39930338,0.90030676,0.17321815,0.35430747,0.9017223,0.24771568,0.3380163,0.903095,0.26488563,0.3177238,0.9031116,0.28886163,0.29763296,0.9038027,0.3074985,0.33664408,0.90241814,0.26890945,0.37063247,0.90102416,0.22535977,0.38554248,0.9003236,0.20192657,0.37231493,0.90238476,0.21698703,0.39896634,0.8996208,0.17750594,0.4210996,0.8982081,0.12608467,0.42969665,0.89749825,0.09928594,0.4275411,0.9002562,0.08214204,0.43658307,0.8967861,0.071902394,0.44171932,0.89607155,0.044043623,0.435052,0.89817405,0.0633495,0.41921976,0.902318,0.10038445,0.4450727,0.8953546,0.01582181,0.44661766,0.8946355,-0.01264861,0.4424706,0.8967518,0.007479793,0.44633627,0.893914,-0.04125138,0.4344662,0.89173555,-0.1266758,0.44025967,0.8924641,-0.09838347,0.42684984,0.89100474,-0.1546278,0.41743034,0.89027166,-0.18212157,0.41328278,0.8973616,-0.15472402,0.39277074,0.8959339,-0.20744511,0.40623546,0.88953626,-0.20904054,0.39330032,0.8887986,-0.23526992,0.3795648,0.89166546,-0.24670474,0.37866756,0.88805854,-0.2606969,0.36238727,0.88731617,-0.28521127,0.3714714,0.88950086,-0.26607743,0.38666475,0.89380985,-0.22714385,0.39788488,0.89803785,-0.18765843,0.40201193,0.90012133,-0.16783339,0.4051589,0.90218437,-0.14801884,0.3445164,0.88657147,-0.30870607,0.32511878,0.88582456,-0.33107796,0.30879775,0.88872755,-0.3388323,0.3042654,0.88507533,-0.35222748,0.2820337,0.8843238,-0.37205973,0.2958681,0.8865357,-0.3556916,0.32080656,0.8908993,-0.32153004,0.2585069,0.88356996,-0.39048472,0.23377453,0.88281375,-0.4074179,0.2496948,0.88503927,-0.39288422,0.20793132,0.8820553,-0.42278013,0.37257725,0.89308566,-0.25215912,0.39649162,0.8267665,0.39906335,0.42097938,0.8089223,0.4103913,0.39649945,0.82682145,0.3989417,0.42095932,0.80880743,0.41063833,0.44547755,0.7901203,0.42102218,0.44546536,0.79006034,0.42114756,0.39651507,0.8269313,0.3986984,0.37213528,0.8441297,0.38595393,0.34789053,0.8605005,0.37217075,0.34788752,0.86045074,0.3722886,0.32383072,0.8760277,0.35736406,0.30000508,0.89069617,0.34155127,0.44544065,0.7899406,0.42139822,0.3648575,0.8491685,-0.38182712,0.3827619,0.8350165,-0.39527312,0.34873223,0.85000676,-0.39480934,0.3989056,0.834141,-0.38089773,0.38049856,0.84832805,-0.36818522,0.3956284,0.84748554,-0.3539017,0.42954254,0.83238363,-0.35018665,0.41022065,0.84664094,-0.3389958,0.42424986,0.8457941,-0.3234879,0.44102737,0.8382872,-0.3205768,0.43769103,0.84494513,-0.3073993,0.4505202,0.844094,-0.29075226,0.41606292,0.8263841,-0.37944812,0.48348475,0.8288438,-0.28153244,0.4627141,0.84324074,-0.27357027,0.47425044,0.8423854,-0.25587758,0.49038264,0.8348042,-0.25025365,0.48510796,0.8415279,-0.23769948,0.49526617,0.8406683,-0.21906202,0.5109106,0.83305,-0.21212731,0.50470585,0.8398066,-0.19999233,0.5134084,0.83894277,-0.1805182,0.520959,0.83513534,-0.17649554,0.5213569,0.83807683,-0.16066822,0.52853507,0.8372087,-0.14047173,0.49840888,0.8309528,-0.24719629,0.46618098,0.8267228,-0.3149677,0.44655213,0.8245901,-0.34733605,0.44941667,0.8344727,-0.31887293,0.4246643,0.82244563,-0.3784752,0.5349279,0.83633846,-0.11995869,0.5405216,0.8354662,-0.09915976,0.55407995,0.8277372,-0.088580884,0.5453036,0.83459175,-0.07810619,0.5492625,0.8337152,-0.056829736,0.5619325,0.82594943,-0.04515988,0.5523882,0.83283657,-0.03536274,0.5546717,0.83195585,-0.01373803,0.56056815,0.8280747,-0.0074616023,0.5561056,0.83107305,0.008011304,0.5566836,0.83018804,0.029851757,0.56074244,0.8238125,-0.08307151,0.5564007,0.829301,0.05174953,0.55525345,0.8284119,0.07367056,0.56006545,0.8244941,0.080846526,0.5532394,0.82752067,0.09558061,0.5503579,0.8266274,0.11744537,0.5466092,0.82573193,0.1392303,0.54199535,0.82483447,0.16090082,0.53651965,0.8239349,0.18242258,0.5634794,0.82611907,-0.004273252,0.5321886,0.82934844,-0.17016599,0.5186731,0.8291803,-0.20841862,0.51038975,0.8251004,-0.24230473,0.5247154,0.8332164,-0.17442502,0.4703669,0.82476026,-0.31388775,0.50640446,0.8270613,-0.24397586,0.2638228,0.8777863,-0.39986092,0.28433722,0.86926454,-0.40439022,0.29378483,0.8726603,-0.39006984,0.3391003,0.8742303,-0.3474656,0.3107476,0.8793264,-0.36086145,0.3520619,0.88085735,-0.3164534,0.32349402,0.86743623,-0.3780291,0.30258936,0.8760143,-0.37555113,0.41104102,0.8773432,-0.24761713,0.38715595,0.88237923,-0.2674269,0.41552997,0.8838918,-0.2146393,0.43680015,0.88539535,-0.15899928,0.44276956,0.8893251,-0.114262916,0.44405225,0.89126575,-0.091994576,0.44035593,0.88736826,-0.13661721,0.43209416,0.88340634,-0.18135019,0.42623314,0.88140124,-0.20361038,0.41921496,0.87938017,-0.22571957,0.39124694,0.8732213,-0.29053468,0.40171587,0.87529016,-0.26924247,0.36530814,0.8783366,-0.30834195,0.37964523,0.8711366,-0.31143302,0.36692503,0.869036,-0.33187717,0.3531035,0.8669197,-0.35180703,0.33820108,0.86478764,-0.37116355,0.32224178,0.8626398,-0.3898882,0.46827698,0.88345915,-0.014716169,0.45710492,0.88837457,-0.042961948,0.45598915,0.8898503,0.015501661,0.44746822,0.8913169,0.07298232,0.43098816,0.89514875,0.11383262,0.42135233,0.8970403,0.13334486,0.43970615,0.8932409,0.09369714,0.45423862,0.88937664,0.05173433,0.45998394,0.88742024,0.030001441,0.46467292,0.88544774,0.0078338925,0.40925393,0.89422214,0.18132302,0.3832167,0.89800483,0.21617648,0.36909688,0.8998717,0.23237552,0.3966182,0.8961216,0.19914824,0.3502449,0.8994189,0.2614845,0.33425885,0.9012734,0.27563965,0.31493068,0.9019708,0.2954105,0.29605517,0.903235,0.31067324,0.3330172,0.9006987,0.2790006,0.36654627,0.8981313,0.24290736,0.38185605,0.896836,0.22331855,0.39611182,0.8955329,0.2027714,0.42122588,0.8929036,0.1590343,0.43197453,0.8915774,0.13596964,0.43144503,0.8939645,0.12117162,0.44145027,0.89024353,0.11219665,0.44960746,0.88890195,0.08778623,0.4564042,0.88755274,0.06281211,0.46180275,0.8861959,0.037350696,0.46576998,0.88483137,0.011480914,0.4688182,0.88069195,-0.06775838,0.46929955,0.88207936,-0.041157506,0.45452827,0.88566244,-0.094900504,0.46681824,0.879297,-0.09443257,0.46329027,0.8778944,-0.121092975,0.44599018,0.8829198,-0.14678356,0.45822963,0.8764843,-0.1476514,0.4516368,0.8750666,-0.17401913,0.44171923,0.87761897,-0.18619628,0.44351754,0.8736413,-0.20010743,0.4338828,0.87220854,-0.2258274,0.43825117,0.8749274,-0.20600478,0.4442955,0.8802831,-0.16644251,0.44681516,0.88552886,-0.12725873,0.4467842,0.8881104,-0.10790646,0.42274848,0.8707682,-0.25109056,0.41013595,0.8693204,-0.27580893,0.39760137,0.8719271,-0.28575563,0.39607167,0.867865,-0.2998958,0.3805871,0.8664022,-0.32326567,0.3895406,0.86917824,-0.30461013,0.404768,0.87464875,-0.26674405,0.3637188,0.86493194,-0.34583437,0.34550858,0.86345416,-0.36751974,0.35665175,0.8662586,-0.34985077,0.32600266,0.861969,-0.38824183,0.43663624,0.87888587,-0.1921157,0.42566934,0.8156734,0.39176834,0.4277235,0.819008,0.3824637,0.39982238,0.8317818,0.3850728,0.39876795,0.83017194,0.3896135,0.45379737,0.80237406,0.3876388,0.4527559,0.8006435,0.39240545,0.40178755,0.83498067,0.37599736,0.37605554,0.8502791,0.36824954,0.3505928,0.86489093,0.35923302,0.3497389,0.8634347,0.3635427,0.32546407,0.87880427,0.3489644,0.30073294,0.892008,0.33746317,0.45052603,0.7971625,0.40194315,0.4604327,0.7840333,0.4162854,0.34633672,0.85101503,-0.3947458,0.36253655,0.85014683,-0.38186082,0.3475727,0.85049504,-0.39478016,0.36377412,0.8496254,-0.38184434,0.37825614,0.84927624,-0.3683099,0.39346805,0.8484034,-0.35411096,0.37887457,0.84901494,-0.36827666,0.34819102,0.85023475,-0.394796,0.39470232,0.84787923,-0.35399276,0.4081456,0.8475283,-0.3392831,0.42226285,0.8466508,-0.32384658,0.40876037,0.8472656,-0.339199,0.42287415,0.8463874,-0.32373726,0.43579447,0.84577096,-0.30782256,0.44871584,0.84488887,-0.2912334,0.43609783,0.845639,-0.30775547,0.4090678,0.8471341,-0.3391568,0.37980232,0.8486227,-0.36822513,0.364393,0.8493644,-0.38183483,0.37918368,0.8488843,-0.3682597,0.34850022,0.85010445,-0.39480382,0.44991878,0.84435916,-0.29091358,0.46100354,0.8440045,-0.27410236,0.4726351,0.8431178,-0.25645372,0.46159863,0.8437391,-0.27391812,0.47322255,0.84285164,-0.25624496,0.48358843,0.8422288,-0.2383127,0.4938428,0.8413375,-0.2197055,0.4838779,0.84209543,-0.23819633,0.46189615,0.8436062,-0.2738257,0.49441233,0.84107,-0.21944875,0.5033785,0.8404439,-0.20065917,0.5121769,0.839548,-0.18120158,0.50365806,0.8403098,-0.20051917,0.51245064,0.8394136,-0.18105006,0.5202201,0.83864987,-0.16136137,0.52749175,0.8377494,-0.14116806,0.5203539,0.83858246,-0.16128007,0.5037978,0.84024274,-0.20044912,0.48431218,0.8418952,-0.23802134,0.4735163,0.8427185,-0.25614023,0.48402268,0.8420287,-0.23813814,0.4620448,0.84353983,-0.2737794,0.43716,0.8451765,-0.3075187,0.42379126,0.84599197,-0.32357162,0.43655303,0.84544086,-0.30765435,0.4231799,0.8462556,-0.32368225,0.40983626,0.8468054,-0.33905,0.3953196,0.84761685,-0.35393238,0.4095289,0.84693694,-0.33909285,0.4362496,0.84557295,-0.30772173,0.38026637,0.8484263,-0.3681987,0.36470258,0.8492338,-0.38182977,0.37995708,0.84855723,-0.3682163,0.34865484,0.8500393,-0.39480746,0.40937507,0.8470027,-0.33911422,0.53397644,0.83684665,-0.120651685,0.53966004,0.8359416,-0.099842995,0.534484,0.83657575,-0.120282434,0.5401525,0.83567005,-0.09945284,0.54452956,0.8350343,-0.078773454,0.5485731,0.83412474,-0.057475038,0.5447678,0.83489823,-0.07856833,0.5347377,0.8364402,-0.12009749,0.54903287,0.8338518,-0.05704505,0.55178046,0.8332129,-0.035980258,0.5541422,0.8322988,-0.014322139,0.5520015,0.8330761,-0.03575592,0.55435413,0.83216166,-0.014088698,0.5556506,0.8313824,0.007465991,0.5562989,0.83046377,0.029350441,0.55575174,0.83131367,0.007587088,0.55211204,0.8330077,-0.035643652,0.54512507,0.83469397,-0.07826035,0.5403986,0.83553416,-0.09925746,0.54488695,0.83483016,-0.0784657,0.5348645,0.8363724,-0.12000495,0.55608207,0.8295428,0.051297072,0.5549962,0.82861966,0.07327156,0.5562642,0.82940465,0.051555578,0.55516773,0.82848114,0.07353756,0.5530386,0.82769424,0.095239334,0.55020845,0.82676655,0.11716567,0.553119,0.8276248,0.09537579,0.5563553,0.8293356,0.051684894,0.54650575,0.8258366,0.13901582,0.5419323,0.8249044,0.16075502,0.5465747,0.8257668,0.13915879,0.536491,0.82396996,0.18234834,0.5531592,0.82759005,0.095444106,0.55590343,0.83121055,0.007768848,0.55446005,0.83209306,-0.01397181,0.5522777,0.83290505,-0.03547519,0.55580235,0.8312793,0.007647686,0.5451846,0.8346599,-0.07820894,0.5522225,0.83293927,-0.035531398,0.52082205,0.8383466,-0.16099492,0.51286125,0.8392119,-0.18082249,0.5044265,0.83994085,-0.20013312,0.5205546,0.8384814,-0.16115798,0.494697,0.8409361,-0.21932003,0.48481858,0.8416616,-0.23781662,0.47395685,0.84251875,-0.2559827,0.46256536,0.84330726,-0.27361676,0.48467383,0.8417284,-0.23787524,0.5040074,0.8401422,-0.20034389,0.51258755,0.83934635,-0.18097432,0.50428677,0.840008,-0.2002035,0.52042085,0.8385488,-0.16123936,0.43738756,0.8450774,-0.3074676,0.42394418,0.845926,-0.3235438,0.410067,0.8467066,-0.3390176,0.4372359,0.8451435,-0.30750164,0.3803438,0.84839356,-0.36819422,0.40998998,0.8467396,-0.33902833,0.46234232,0.8434069,-0.27368647,0.47381,0.8425853,-0.25603533,0.48445684,0.8418285,-0.23796295,0.46249104,0.84334046,-0.27364007,0.50393754,0.8401757,-0.20037898,0.48452923,0.8417951,-0.2379337,0.31077683,0.8593184,-0.40618923,0.32870373,0.8613934,-0.38724065,0.34814045,0.8628815,-0.36637917,0.36499718,0.86464715,-0.34519893,0.33005345,0.86110526,-0.38673306,0.38305998,0.8658353,-0.32186058,0.39726403,0.86758316,-0.29913327,0.4112807,0.86903995,-0.27498683,0.42329583,0.8706287,-0.25065172,0.39785972,0.86744213,-0.29875028,0.36691317,0.8642195,-0.34423745,0.34945557,0.8625947,-0.36580208,0.36563614,0.86450464,-0.34487957,0.33072838,0.86096096,-0.38647765,0.4359623,0.8716531,-0.22395928,0.4445024,0.8733652,-0.19912511,0.4525633,0.8747919,-0.1729899,0.45866293,0.8763478,-0.14711545,0.44499397,0.87322706,-0.19863252,0.46409392,0.87762266,-0.11998019,0.46718845,0.87916183,-0.093858466,0.4691553,0.88055766,-0.06716781,0.46945146,0.8820126,-0.040855102,0.46737307,0.87909436,-0.09357101,0.4593119,0.8761427,-0.14630988,0.45302582,0.8746544,-0.17247388,0.4588794,0.8762794,-0.14684711,0.44523963,0.8731579,-0.19838583,0.42520776,0.87014,-0.24910781,0.41299483,0.8686187,-0.27374583,0.4241159,0.8704194,-0.24999158,0.41185245,0.8688996,-0.27457428,0.39934754,0.86708915,-0.2977884,0.3842947,0.8655514,-0.3211516,0.3987526,0.8672304,-0.29817405,0.42356926,0.870559,-0.25043187,0.3678702,0.8640054,-0.34375304,0.35011262,0.86245126,-0.36551192,0.36723217,0.86414814,-0.34407628,0.33106542,0.8608889,-0.3863495,0.39845517,0.867301,-0.29836643,0.46935034,0.8829272,-0.0122414995,0.46623918,0.88456696,0.012738147,0.46220222,0.885933,0.038625453,0.4565691,0.8874221,0.063456,0.4664726,0.88443464,0.0133678205,0.44986585,0.8886421,0.08908424,0.44154468,0.89011437,0.11284841,0.4320336,0.891449,0.13662237,0.42123798,0.8928398,0.15936024,0.44159147,0.89004976,0.11317436,0.45681486,0.8872259,0.064422846,0.46240047,0.88580143,0.039263662,0.45665133,0.8873567,0.06377813,0.4665888,0.88436854,0.013682782,0.40923136,0.8939681,0.18262167,0.3960667,0.89540666,0.20341602,0.38177687,0.8967105,0.22395676,0.3664901,0.89806896,0.24322239,0.39604354,0.8953436,0.20373839,0.35009968,0.8992949,0.2621047,0.33292872,0.90063715,0.2793049,0.31482673,0.90190953,0.29570824,0.29599556,0.9032046,0.31081834,0.3328845,0.9006063,0.27945712,0.3664054,0.8979754,0.24369495,0.38173696,0.89664775,0.22427598,0.36646196,0.8980378,0.24337989,0.3960321,0.89531195,0.20389965,0.42127845,0.8926162,0.16050157,0.4321204,0.89125615,0.13760228,0.42125577,0.892744,0.15984924,0.43206283,0.8913847,0.13694896,0.4417075,0.88988805,0.11398997,0.44999364,0.88851196,0.08973402,0.4416612,0.8899528,0.113663666,0.421244,0.89280784,0.15952326,0.4569369,0.8871278,0.064906724,0.46249935,0.8857356,0.039583053,0.45685562,0.8871932,0.06458412,0.466647,0.88433534,0.013840384,0.4416381,0.8899851,0.11350056,0.47058457,0.88151103,-0.03858099,0.47032952,0.8800868,-0.06509479,0.4699817,0.8817786,-0.039795153,0.46965972,0.88035595,-0.06628054,0.46856967,0.87865466,-0.09169795,0.46529412,0.8772146,-0.11830449,0.46820217,0.8787901,-0.09227522,0.469679,0.88191235,-0.040401064,0.46449474,0.8774867,-0.11942248,0.4604974,0.8757666,-0.14482751,0.4541789,0.8743106,-0.17117955,0.46006688,0.8759034,-0.14536737,0.45371816,0.8744482,-0.17169794,0.44634295,0.8728467,-0.19727272,0.4369989,0.871375,-0.2230191,0.44609797,0.872916,-0.19752045,0.4598514,0.8759718,-0.14563686,0.46764994,0.8789929,-0.09313959,0.4693237,0.8804904,-0.06687228,0.46801838,0.8788577,-0.09256355,0.4695274,0.88197917,-0.040703807,0.42616147,0.8698954,-0.24833117,0.4138505,0.8684079,-0.27312177,0.42561668,0.87003523,-0.24877536,0.41328025,0.8685484,-0.2735381,0.40009066,0.8669125,-0.29730484,0.38491172,0.8654093,-0.3207954,0.39979345,0.8669832,-0.29749843,0.42534414,0.8701051,-0.24899703,0.36834857,0.86389834,-0.34350982,0.35044125,0.86237943,-0.36536643,0.3680297,0.8639697,-0.34367207,0.33123422,0.8608528,-0.38628545,0.39964488,0.86701846,-0.2975952,0.44573027,0.8730197,-0.19789171,0.4534875,0.87451696,-0.17195684,0.4595277,0.87607443,-0.14604081,0.4459755,0.8729505,-0.1976443,0.46755773,0.8790267,-0.09328343,0.45963576,0.87604016,-0.14590624,0.4695948,0.8113438,0.34814084,0.47826242,0.81721985,0.32158482,0.45539668,0.83605325,0.30598825,0.46296984,0.8238943,0.32689008,0.4752568,0.7984077,0.36969748,0.4854454,0.8230121,0.29494712,0.49348366,0.8104339,0.31570664,0.4476262,0.83045644,0.33162165,0.42514476,0.8486383,0.31474578,0.4322518,0.8369053,0.33577952,0.4384032,0.8247745,0.35714093,0.39485168,0.86076045,0.32122213,0.41686705,0.84323996,0.33936438,0.45943627,0.80538464,0.3745316,0.36467847,0.87241304,0.3254306,0.35562623,0.86742055,0.34801084,0.37546685,0.8641094,0.33517095,0.33478475,0.8835898,0.3273961,0.38614684,0.8555636,0.34482107,0.30532792,0.89428455,0.32715446,0.40716958,0.83775526,0.36383924,0.401492,0.8494597,0.34237754,0.3339223,0.8561484,-0.39434218,0.35050344,0.85512936,-0.38197005,0.35691288,0.8524816,-0.3819533,0.3666258,0.85410696,-0.36889955,0.3822597,0.8530812,-0.35514775,0.38866037,0.8504164,-0.35459137,0.39737657,0.8520522,-0.34073287,0.4119483,0.85101986,-0.32567436,0.4151212,0.8496817,-0.32513916,0.42594734,0.8499842,-0.30999294,0.43934715,0.8489453,-0.29371053,0.42752302,0.84931374,-0.3096615,0.40216044,0.85004926,-0.34012243,0.37464133,0.85078317,-0.36852658,0.3601246,0.8511495,-0.3819094,0.34513164,0.8515154,-0.39472222,0.44559425,0.8462465,-0.29208332,0.45212197,0.84790313,-0.27685013,0.46424696,0.8468576,-0.25943586,0.46730003,0.84550244,-0.25837255,0.475698,0.84580886,-0.24149282,0.48645228,0.8447568,-0.2230474,0.4772031,0.84512985,-0.2408999,0.4567582,0.84587467,-0.2754414,0.48941252,0.8433931,-0.22172841,0.4964879,0.8437014,-0.20412663,0.50578386,0.84264284,-0.18475868,0.49794137,0.84301823,-0.2034076,0.50720775,0.84195745,-0.18397832,0.5143205,0.8415809,-0.16497254,0.52207917,0.8405158,-0.14479834,0.5150165,0.84123737,-0.16455306,0.49866772,0.84267604,-0.20304592,0.47945905,0.8441087,-0.23999903,0.4688254,0.8448228,-0.25783175,0.4575305,0.8455354,-0.27520135,0.43303746,0.8469561,-0.30845416,0.41988185,0.8476641,-0.32429108,0.41670787,0.8490105,-0.32486254,0.4061499,0.84837073,-0.3395724,0.3918648,0.8490758,-0.35427713,0.37705073,0.8497793,-0.3683855,0.36173227,0.8504814,-0.3818785,0.34593496,0.8511819,-0.39473835,0.52904236,0.83944744,-0.12426669,0.535194,0.83837575,-0.103409074,0.5377501,0.8369869,-0.10137943,0.54051906,0.8373009,-0.0822579,0.54500395,0.8362227,-0.06084602,0.54175633,0.836605,-0.08119173,0.5329925,0.8373683,-0.12138082,0.5473866,0.83482546,-0.058603924,0.5486363,0.83514136,-0.03920691,0.551405,0.83405674,-0.017374821,0.5497826,0.8344413,-0.03803808,0.5525026,0.8333546,-0.016157439,0.5533006,0.83296883,0.004615666,0.55431485,0.83187777,0.026729528,0.5538245,0.8326169,0.0052470216,0.55035436,0.83409077,-0.037451703,0.5436068,0.83555865,-0.07958258,0.53902406,0.83629036,-0.10035654,0.5423739,0.83625656,-0.0806567,0.5336486,0.83702064,-0.120895125,0.5544408,0.8307834,0.048931193,0.5536732,0.8296859,0.07118475,0.5553802,0.830075,0.050281405,0.55455625,0.82897544,0.07257487,0.5520081,0.82858515,0.093454115,0.5494431,0.8274812,0.11570302,0.55242115,0.82822907,0.09416744,0.5558484,0.8297203,0.050958242,0.5459771,0.826374,0.13789482,0.5416108,0.8252636,0.15999287,0.5463298,0.82601583,0.13864194,0.536346,0.8241501,0.1819605,0.5526273,0.82805085,0.094524495,0.5546085,0.83208835,0.0061962856,0.55305004,0.833003,-0.015546874,0.55121064,0.83356434,-0.03656978,0.5540861,0.8324408,0.005563146,0.54391456,0.835384,-0.079313196,0.55092543,0.8337399,-0.03686407,0.50934,0.8409269,-0.18279696,0.5019308,0.8411323,-0.20140013,0.51605946,0.84072137,-0.16392122,0.4908906,0.84270924,-0.22106007,0.4820878,0.84291357,-0.23893124,0.47111183,0.8438008,-0.25700942,0.46023214,0.8443452,-0.2743492,0.48133698,0.8432555,-0.2392381,0.49975625,0.8421622,-0.20250066,0.50791883,0.8416143,-0.18358605,0.51536417,0.84106547,-0.16434287,0.4342191,0.84644866,-0.30818576,0.4206755,0.8473267,-0.32414442,0.4073473,0.84786546,-0.33940002,0.43343136,0.84678704,-0.30836505,0.3774524,0.84961176,-0.3683606,0.4069481,0.84803396,-0.3394578,0.4703499,0.8441418,-0.25728494,0.48021045,0.84376764,-0.23969571,0.45984632,0.84451556,-0.27447194,0.49939352,0.84233356,-0.20268278,0.4805861,0.843597,-0.23954353,0.3133472,0.8585363,-0.4058682,0.33250478,0.860464,-0.38606,0.35169408,0.8619926,-0.36507538,0.36896452,0.8637059,-0.34333268,0.33314022,0.86026937,-0.38594583,0.38611874,0.8650265,-0.32037714,0.4006803,0.86672217,-0.29706562,0.41442487,0.86821854,-0.27285266,0.4264404,0.8698012,-0.2481823,0.40097514,0.866627,-0.2969455,0.369888,0.86341715,-0.34306508,0.35232034,0.861799,-0.3649285,0.36927223,0.86360973,-0.3432437,0.33345792,0.86017203,-0.38588846,0.4380774,0.8710002,-0.22236663,0.44686267,0.8726604,-0.19692025,0.4546777,0.8741253,-0.17080155,0.46073586,0.87567437,-0.14462656,0.4471224,0.8725672,-0.19674362,0.4657475,0.8770312,-0.11787918,0.46878412,0.8785635,-0.091474555,0.47053146,0.8799961,-0.064861275,0.47067907,0.88146585,-0.038459614,0.46889138,0.87851787,-0.09136279,0.46109328,0.8755361,-0.14432451,0.45492703,0.8740325,-0.17061223,0.46085495,0.87562835,-0.14452587,0.44725227,0.87252057,-0.19665532,0.42741585,0.8694714,-0.24765943,0.41528624,0.8679342,-0.27244717,0.42685854,0.8696599,-0.24795856,0.4147121,0.86812377,-0.27271774,0.40171215,0.86638874,-0.29664433,0.38672224,0.86483485,-0.32016647,0.40141752,0.866484,-0.296765,0.4265797,0.86975414,-0.24810778,0.37034997,0.8632726,-0.3429304,0.35263374,0.86170214,-0.3648546,0.37004203,0.863369,-0.3430202,0.33361682,0.86012334,-0.38585958,0.40126997,0.8665317,-0.2968252,0.47004977,0.8825684,-0.01123401,0.46696898,0.8841571,0.014359642,0.46279272,0.88555837,0.040116485,0.45706916,0.88703966,0.06517973,0.46712977,0.8840679,0.014619427,0.45022815,0.8883367,0.0902913,0.4418097,0.88980097,0.11427329,0.4322075,0.89116955,0.13788956,0.42131445,0.8925731,0.16064683,0.4418608,0.8897574,0.114414975,0.45726714,0.8869074,0.06558955,0.4629392,0.8854696,0.040383518,0.4571351,0.8869956,0.0653163,0.4672101,0.8840233,0.0147495,0.4093435,0.893797,0.18320723,0.39607275,0.89522696,0.20419379,0.38176224,0.8965632,0.2245709,0.36641043,0.89793336,0.24384241,0.396093,0.8951844,0.204341,0.35009408,0.8992114,0.26239845,0.33287406,0.9005648,0.2796031,0.3148088,0.90186834,0.29585296,0.29598287,0.9031842,0.31088987,0.3328688,0.90054405,0.2796761,0.36641762,0.89787036,0.2440634,0.3817747,0.8965209,0.2247183,0.36641285,0.8979123,0.24391605,0.39610314,0.8951631,0.20441452,0.4214394,0.89242244,0.16115522,0.43233755,0.8910396,0.13832076,0.42136797,0.8925086,0.16086462,0.4322508,0.8911263,0.13803324,0.44198826,0.88964844,0.11476951,0.45034507,0.88824904,0.090570204,0.44193718,0.8896921,0.11462764,0.4213323,0.8925516,0.1607194,0.45736587,0.88684136,0.06579457,0.4630123,0.88542527,0.040517032,0.45730004,0.8868854,0.06565786,0.46725023,0.884001,0.01481444,0.4419117,0.8897139,0.114556774,0.4713855,0.88112766,-0.03754723,0.4712368,0.8796786,-0.0640424,0.471009,0.8813081,-0.038034193,0.47083396,0.87986004,-0.064510666,0.4695876,0.8782214,-0.090635076,0.4664267,0.87675595,-0.117239684,0.46937355,0.87831265,-0.09085926,0.47082043,0.8813983,-0.038277373,0.46597397,0.8769395,-0.1176663,0.4617479,0.8752823,-0.14376973,0.45554993,0.8738005,-0.17013799,0.46150988,0.8753747,-0.14397168,0.45530078,0.8738934,-0.17032787,0.44783646,0.8723106,-0.19625698,0.43861628,0.87081254,-0.22203906,0.44770655,0.8723573,-0.19634558,0.46139094,0.87542075,-0.14407262,0.46905208,0.87844956,-0.09119511,0.47063228,0.8799508,-0.06474449,0.4692664,0.8783583,-0.090971254,0.4707262,0.8814433,-0.038398843,0.42790335,0.8693063,-0.24739687,0.4157168,0.867792,-0.27224362,0.42762482,0.8694007,-0.24754691,0.41542986,0.86788684,-0.27237934,0.4020806,0.8662695,-0.29649326,0.38702384,0.864739,-0.32006085,0.4019333,0.8663172,-0.29655376,0.42748547,0.8694478,-0.24762194,0.37058073,0.8632004,-0.3428629,0.3527902,0.86165375,-0.36481768,0.3704269,0.8632485,-0.34290797,0.3336961,0.860099,-0.38584527,0.40185955,0.86634105,-0.29658398,0.447512,0.8724272,-0.19647841,0.45517632,0.8739397,-0.17042273,0.46121237,0.87548995,-0.1442238,0.44764167,0.8723806,-0.19638985,0.46899852,0.8784723,-0.09125101,0.46127188,0.8754669,-0.1441734,0.49750036,0.83122885,0.2480968,0.49321806,0.8279634,0.2668568,0.5088286,0.82219136,0.255137,0.47067803,0.8455501,0.2520064,0.51580215,0.8287928,0.21691164,0.5010676,0.83446586,0.22934246,0.48601532,0.84005183,0.24104361,0.46119162,0.8392476,0.28803775,0.43928024,0.85628134,0.27168947,0.4071397,0.8666552,0.2883507,0.43413785,0.85324603,0.28895605,0.48821676,0.8246696,0.28559494,0.47732803,0.833649,0.27782604,0.37452328,0.87666714,0.30197185,0.34169683,0.8863132,0.31255743,0.36812127,0.87383854,0.3176365,0.3089235,0.8955893,0.32013446,0.43131098,0.85171735,0.2975707,0.33046103,0.8574821,-0.39436015,0.34715265,0.8564243,-0.3821289,0.34893903,0.85573435,-0.38204747,0.36339125,0.8553629,-0.36918995,0.37914675,0.8542979,-0.35556003,0.36428308,0.85501695,-0.3691123,0.33314008,0.85645014,-0.39434862,0.3809253,0.85360324,-0.35532725,0.3943899,0.8532292,-0.34125718,0.40909183,0.852157,-0.32630092,0.3952747,0.85288095,-0.3411041,0.40997067,0.8518076,-0.32611027,0.42322454,0.85108125,-0.3107117,0.43676084,0.8500018,-0.29451117,0.42366016,0.850906,-0.31059787,0.3957172,0.8527066,-0.3410268,0.36562148,0.85449725,-0.36899236,0.34983292,0.85538876,-0.38200396,0.36472923,0.8548438,-0.3690728,0.33358702,0.85627776,-0.39434513,0.43848518,0.8492979,-0.29397938,0.44967437,0.84891886,-0.27772227,0.4619395,0.8478323,-0.26036933,0.45052588,0.84856594,-0.27742085,0.4627788,0.8474782,-0.26003158,0.47353178,0.8467422,-0.24247734,0.48442763,0.8456485,-0.22407238,0.4739446,0.84656465,-0.2422908,0.4509516,0.84838927,-0.27726933,0.48523772,0.84529215,-0.2236639,0.49460435,0.84455127,-0.20518196,0.5040406,0.8434505,-0.18583417,0.49500105,0.8443726,-0.2049607,0.5044281,0.84327126,-0.185596,0.5127158,0.8423462,-0.16605824,0.52061105,0.8412383,-0.14588436,0.51290476,0.84225625,-0.16593097,0.49519932,0.8442832,-0.2048499,0.47456357,0.8462981,-0.24201025,0.46319827,0.84730107,-0.25986204,0.47415096,0.84647584,-0.2421974,0.45116436,0.848301,-0.2771934,0.425185,0.8502918,-0.3101961,0.4112891,0.85128266,-0.32582077,0.42431372,0.85064286,-0.3104264,0.4104102,0.85163265,-0.32601422,0.39682347,0.8522705,-0.34083164,0.38181487,0.8532553,-0.35520813,0.39638102,0.85244495,-0.34091008,0.423878,0.8508183,-0.31054088,0.366291,0.8542371,-0.36893088,0.3502799,0.8552158,-0.38198155,0.3658447,0.8544105,-0.36897194,0.33381048,0.8561916,-0.3943432,0.39615968,0.8525322,-0.34094918,0.5277082,0.8401269,-0.12534334,0.5339904,0.83901185,-0.10446699,0.52842015,0.83976465,-0.12476982,0.5346785,0.8386485,-0.10386313,0.5394421,0.83789337,-0.08328788,0.54404926,0.8367713,-0.061839096,0.53977376,0.83771116,-0.08297137,0.52877575,0.8395834,-0.124482505,0.54468596,0.8364057,-0.06117738,0.54779893,0.8356458,-0.040154587,0.5506797,0.8345167,-0.018268885,0.54810375,0.8354624,-0.039810333,0.5509701,0.83433276,-0.017911492,0.5526813,0.8333841,0.003783137,0.55379516,0.832248,0.025965912,0.5528191,0.8332918,0.0039680195,0.548256,0.83537066,-0.03963802,0.54027075,0.8374377,-0.08249591,0.53502226,0.8384667,-0.10356049,0.5399395,0.83762,-0.08281304,0.5289535,0.83949274,-0.12433856,0.5540139,0.83110833,0.048243515,0.553332,0.82996523,0.07057965,0.554258,0.8309227,0.048636336,0.55355954,0.829779,0.07098292,0.55174476,0.8288186,0.09293762,0.5492497,0.8276685,0.11528072,0.55185026,0.8287252,0.09314414,0.55437994,0.83082986,0.04883284,0.5458453,0.8265149,0.13757183,0.5415319,0.8253578,0.1597737,0.5459332,0.82642096,0.1377871,0.53631127,0.82419723,0.18184926,0.5519029,0.82867855,0.09324749,0.5530256,0.8331534,0.004245482,0.55111516,0.8342408,-0.01773272,0.54848415,0.8352331,-0.039379463,0.552888,0.8332457,0.004060462,0.5403536,0.8373921,-0.08241661,0.54840815,0.835279,-0.039465677,0.5135657,0.8419413,-0.1654845,0.5050094,0.843002,-0.18523778,0.49609154,0.8438806,-0.20434964,0.5131882,0.84212124,-0.1657398,0.48564276,0.84511375,-0.22345877,0.47528556,0.84598684,-0.24168134,0.46382758,0.84703505,-0.2596067,0.45190915,0.8479916,-0.27692667,0.4750794,0.8460758,-0.24177541,0.49549684,0.84414905,-0.20468332,0.5046219,0.84318155,-0.18547665,0.49589336,0.8439701,-0.20446093,0.5129993,0.84221125,-0.16586725,0.42551166,0.85016006,-0.31010923,0.4115089,0.85119504,-0.32577205,0.39715537,0.85213953,-0.34077233,0.42529395,0.85024786,-0.31016713,0.3664025,0.85419375,-0.36892042,0.39704472,0.8521832,-0.3407921,0.45158994,0.84812427,-0.2770411,0.46361786,0.84712374,-0.25969198,0.4747699,0.84620917,-0.24191639,0.45180273,0.8480358,-0.2769649,0.49539772,0.84419376,-0.20473889,0.47487307,0.8461647,-0.24186942,0.51287746,0.85844165,0.0058875666,0.4939174,0.86874145,0.036521293,0.52419645,0.85100853,0.031663377,0.53359103,0.84559935,0.015567099,0.4826241,0.8757447,0.012047014,0.49168614,0.8707672,-0.0030524787,0.5038415,0.86156005,0.06211259,0.5340854,0.843401,0.05854518,0.5142706,0.856329,0.047184803,0.5123129,0.8542019,0.08873888,0.5442121,0.8378682,0.04254432,0.5192531,0.8466686,0.11631247,0.5310929,0.84118843,0.10169786,0.524589,0.83896166,0.14474012,0.5371457,0.8333586,0.1303383,0.52825373,0.8310827,0.17392385,0.53302705,0.8422965,0.08011742,0.5424622,0.8356204,0.08644791,0.529657,0.84778345,-0.026956212,0.50818723,0.86053985,-0.034884226,0.51094025,0.85949254,-0.014580557,0.52642107,0.84887016,-0.047961567,0.53716403,0.84232134,-0.044154145,0.4893843,0.8717745,-0.022633469,0.53205013,0.8466932,-0.0057687187,0.5424276,0.84010184,-0.0010840904,0.52235305,0.8499533,-0.06875104,0.517465,0.85103285,-0.08929189,0.50027525,0.8626235,-0.07486885,0.51177055,0.8521087,-0.1095518,0.48630375,0.8727781,-0.042035278,0.5046285,0.8615835,-0.054990966,0.46027726,0.86368316,-0.20541728,0.46157068,0.858489,-0.2234932,0.48123804,0.85637665,-0.18716031,0.5013862,0.8488945,-0.16730224,0.4507075,0.8595396,-0.24094471,0.43918738,0.8605868,-0.25788516,0.4120671,0.85745835,-0.30816537,0.47518912,0.8667472,-0.15147477,0.49802154,0.8542499,-0.14910285,0.49396533,0.85951614,-0.13126421,0.4838585,0.86977893,-0.096776046,0.48923743,0.8646926,-0.11381325,0.4982404,0.8499046,0.17151873,0.49428186,0.8573634,0.14357401,0.4635121,0.8747297,0.14143734,0.4812119,0.8625768,0.1561935,0.51457304,0.83672076,0.18738444,0.4887083,0.86464626,0.11640879,0.50697255,0.85206044,0.13027598,0.46779394,0.86770016,0.16812268,0.43697247,0.88444793,0.16372827,0.45405966,0.87273306,0.1793512,0.4704533,0.86049277,0.19551446,0.44004115,0.8776748,0.18987003,0.50052106,0.8422716,0.20014301,0.47299647,0.8786787,0.0647929,0.49293774,0.8667012,0.07642922,0.48158845,0.87175184,0.09011839,0.45767233,0.88157976,0.115555726,0.46982318,0.87671155,0.10316512,0.3810406,0.8900851,0.2501131,0.37863624,0.8834668,0.27590054,0.39564562,0.88203114,0.25590163,0.41159165,0.8805872,0.23485829,0.41022545,0.87371075,0.26142794,0.4112812,0.8872831,0.20874988,0.34674308,0.89285386,0.28736952,0.36271116,0.88820666,0.28200987,0.44148362,0.8707217,0.21664695,0.4412456,0.8635901,0.24395567,0.4564595,0.8583943,0.23410231,0.4257709,0.88252497,0.19967169,0.42582327,0.8686958,0.2530656,0.47143194,0.8531089,0.22351092,0.48613,0.84773445,0.2121884,0.11846481,0.98717165,0.107043006,0.117086336,0.98728555,0.10750814,0.116927244,0.9872835,0.107699744,0.116787404,0.9871764,0.10882752,0.117109016,0.987011,0.10997606,0.11644972,0.9869547,0.11117511,0.11510207,0.9867207,0.114602886,0.11516014,0.9866043,0.11554273,0.1158048,0.9865685,0.11520315,0.11675742,0.9864588,0.11518164,0.117549375,0.98639184,0.114948906,0.11826635,0.98640305,0.11411426,0.11904602,0.98623884,0.11472128,0.11966914,0.9861317,0.11499373,0.12001786,0.9861608,0.11437887,0.12005397,0.98621505,0.113872536,0.11930468,0.9864617,0.112515375,0.119947754,0.9864639,0.11180992,0.119616434,0.9865979,0.11097981,0.11964501,0.9866147,0.110799305,0.1199597,0.98658985,0.11068048,0.119306356,0.98678374,0.10965341,0.11932347,0.98682165,0.10929268,0.11880395,0.98697376,0.10848254,0.11895644,0.9870139,0.10794885,0.12058651,0.98676574,0.10840774,0.12218211,0.98665553,0.10762145,0.12224004,0.9866668,0.107452534,0.12115213,0.9869058,0.10648525,0.12010194,0.9870778,0.10608036,0.119566046,0.987153,0.10598528,0.11921285,0.9871892,0.106046125,0.11896619,0.9872017,0.106206514,0.11780333,0.986485,0.11388441,0.1187067,0.9870389,0.107994825,0.11945782,0.9864025,0.112871185,0.12177363,0.9874438,0.10062738,0.12128706,0.98748887,0.10077271,0.121060655,0.9874796,0.10113515,0.12073267,0.9873179,0.10308697,0.12083095,0.98719585,0.104135424,0.12207871,0.98688984,0.10557103,0.12289337,0.98673135,0.10610613,0.12374465,0.98630947,0.1089993,0.12279789,0.98645234,0.10877717,0.122541584,0.9864831,0.108787425,0.12245119,0.98646235,0.10907646,0.12249136,0.98641175,0.10948837,0.122082226,0.98636913,0.11032602,0.121982336,0.9862871,0.11116654,0.12219658,0.98612607,0.11235398,0.12250561,0.9857045,0.11566797,0.123229325,0.9855787,0.11597049,0.123703815,0.9855182,0.11597928,0.124681905,0.9853566,0.116304316,0.12523566,0.9853491,0.115772195,0.12532136,0.9853738,0.11546893,0.12499816,0.98549724,0.11476332,0.12628539,0.98544514,0.11379754,0.12655734,0.98526305,0.11506491,0.12687558,0.9851452,0.11572175,0.12747248,0.9850543,0.11583939,0.12779278,0.9850752,0.11530793,0.12782684,0.9851077,0.11499169,0.1276751,0.9851762,0.114572816,0.12768367,0.9852075,0.11429402,0.12859486,0.9850967,0.11422714,0.12857118,0.9851396,0.11388308,0.12808156,0.9852836,0.11318708,0.1278021,0.98535824,0.112852864,0.12770002,0.9853941,0.11265505,0.12856592,0.9852922,0.1125614,0.12882677,0.98527485,0.11241485,0.12890027,0.98529655,0.11214005,0.12838334,0.98542994,0.11155968,0.12789083,0.98553354,0.11120978,0.12752797,0.9856023,0.11101646,0.12731072,0.98563516,0.11097428,0.12668423,0.98567486,0.111338064,0.12606288,0.9859062,0.1099868,0.12728141,0.9859277,0.10837885,0.12703328,0.9860697,0.1073737,0.12658815,0.98636425,0.10517135,0.12765387,0.986402,0.10351661,0.12713693,0.9865834,0.10241745,0.12699619,0.9868208,0.10028254,0.12608182,0.9869705,0.09996342,0.12579116,0.98698145,0.100220986,0.122896835,0.98738736,0.099812604,0.12237656,0.98745286,0.09980406,0.124148406,0.986454,0.107217796,0.12633625,0.98620504,0.10695228,0.12617902,0.98627883,0.10645603,0.12452363,0.986331,0.10791218,0.12520112,0.9855422,0.114154615,0.12577641,0.9855243,0.11367574,0.12609988,0.985861,0.1103492,0.12653488,0.9857036,0.11125344,0.2202067,0.9712906,0.09002016,0.22008598,0.9714865,0.08818218,0.21972297,0.9716048,0.08778346,0.2180881,0.97216344,0.08564967,0.21663824,0.9726663,0.083594576,0.21598265,0.9728183,0.08352269,0.21525036,0.97301686,0.083099104,0.21456441,0.9732096,0.082614176,0.21368302,0.97342145,0.08240321,0.2131674,0.97353745,0.08236843,0.21163262,0.9738597,0.08251584,0.21032684,0.97410905,0.08291042,0.2087443,0.9743332,0.084264934,0.20787314,0.9744155,0.08545911,0.20775814,0.9744005,0.08590774,0.20803912,0.9742276,0.08717969,0.20799571,0.97407013,0.0890233,0.20883721,0.9736627,0.09147664,0.209548,0.97336364,0.09302088,0.21028087,0.9731304,0.09380394,0.21162808,0.9726921,0.09530851,0.21144073,0.9726895,0.09574955,0.21142653,0.9726456,0.096226,0.21191694,0.9723685,0.097932085,0.21174908,0.97235656,0.09841262,0.21172816,0.972306,0.098955505,0.21250534,0.9718713,0.101526186,0.21185832,0.9715885,0.105507866,0.21192724,0.9712868,0.10811522,0.21143977,0.97132224,0.108749114,0.21106818,0.97126096,0.11001051,0.21045054,0.9713072,0.11078293,0.20883541,0.97151196,0.11203707,0.20829684,0.97154284,0.11276932,0.20781317,0.97147477,0.11423843,0.20785013,0.9714396,0.11447011,0.20820668,0.97127134,0.115247615,0.20915966,0.97100526,0.115763,0.21016419,0.9705855,0.11745117,0.20949836,0.97073346,0.11741808,0.20917514,0.9707527,0.11783454,0.20868203,0.9707007,0.11913009,0.2087822,0.97057605,0.11996702,0.20984097,0.97006667,0.12221895,0.20947158,0.9699019,0.12414488,0.20944194,0.9697602,0.12529652,0.20921747,0.96975166,0.12573674,0.20921355,0.9696795,0.12629908,0.21013226,0.96910095,0.12918141,0.21012987,0.9688564,0.13100661,0.21079525,0.96866554,0.13134861,0.21122333,0.96855074,0.1315074,0.21173558,0.96817684,0.13342269,0.21230578,0.96794844,0.13417162,0.21368292,0.96745026,0.13557155,0.21250361,0.96759135,0.13641569,0.21184178,0.967638,0.13711217,0.21173057,0.9675995,0.13755487,0.21171652,0.9674951,0.13830903,0.21195713,0.96739346,0.1386508,0.21272126,0.96716905,0.1390456,0.21443786,0.96635854,0.14201269,0.21360788,0.9665472,0.14197952,0.21299213,0.9666641,0.14210895,0.21236591,0.9667635,0.14236952,0.21194343,0.96679765,0.14276642,0.21201849,0.96668214,0.14343561,0.2123475,0.9664877,0.14425671,0.2128539,0.966334,0.14454028,0.2134048,0.96619064,0.14468598,0.21451877,0.965941,0.14470537,0.21523683,0.96598667,0.14332792,0.21602711,0.9658035,0.14337313,0.21642573,0.9657317,0.14325596,0.21655527,0.9654613,0.14487332,0.217198,0.9649986,0.14697854,0.21848781,0.9643558,0.14926775,0.2186831,0.9642236,0.14983512,0.2192726,0.9640515,0.15008089,0.21988475,0.9638917,0.15021168,0.2203282,0.96382236,0.15000623,0.22201571,0.9635432,0.14931035,0.22090133,0.96333194,0.15229629,0.22092868,0.96325463,0.15274498,0.22379574,0.9618803,0.15716778,0.22400883,0.961721,0.15783794,0.2245853,0.961425,0.15881878,0.2253612,0.96102715,0.16012233,0.22496031,0.96095145,0.16113698,0.22504018,0.9607101,0.16245924,0.22530152,0.96040225,0.16391066,0.22527516,0.9602963,0.16456655,0.22548544,0.9601287,0.16525477,0.2266377,0.9597912,0.16563894,0.22979721,0.9590279,0.16570699,0.23041351,0.9587255,0.16659832,0.23266833,0.9580778,0.16718976,0.23330376,0.9585907,0.16331957,0.23493013,0.9582829,0.16279362,0.23617752,0.95810705,0.16202177,0.23769319,0.9580524,0.16011749,0.23867504,0.9578932,0.15960824,0.2394717,0.95780855,0.15892172,0.23993671,0.957844,0.15800382,0.23996925,0.95815563,0.1560531,0.23849575,0.9588415,0.15408692,0.2378724,0.9593647,0.15177639,0.2374147,0.95960027,0.15100195,0.23596749,0.9600305,0.15053487,0.23454495,0.9603645,0.1506277,0.23480181,0.9604184,0.14988191,0.23591654,0.96017426,0.14969575,0.23616044,0.9601385,0.14954017,0.23640274,0.9601435,0.14912467,0.23612483,0.9603184,0.14843734,0.23555176,0.9605389,0.14792027,0.23482996,0.96076876,0.14757475,0.23296277,0.9613281,0.14688976,0.23302941,0.96187913,0.1431286,0.2320565,0.96234804,0.14154856,0.23128535,0.962641,0.14081705,0.23068152,0.962824,0.14055614,0.2291308,0.96326494,0.14007063,0.22837661,0.9634633,0.1399376,0.22795801,0.96362543,0.13950321,0.22943278,0.9634562,0.13824861,0.22937348,0.963563,0.13760132,0.2292017,0.9636655,0.13716908,0.22866873,0.96387213,0.1366057,0.22685273,0.96452504,0.13501608,0.22883736,0.96415895,0.13427958,0.22907169,0.96414244,0.13399804,0.22886512,0.9642668,0.13345556,0.22850978,0.9643935,0.13314818,0.22726913,0.96476847,0.13255398,0.22782946,0.9647627,0.13163112,0.2278898,0.9648142,0.1311479,0.22761978,0.96500087,0.1302406,0.2272061,0.96518564,0.12959196,0.2269567,0.9653604,0.12872423,0.22666667,0.9654937,0.12823471,0.22595406,0.9656821,0.12807362,0.22511452,0.96579355,0.12870987,0.2244696,0.9661931,0.12682411,0.22480065,0.96617395,0.12638257,0.22474179,0.966235,0.12601998,0.22436121,0.9664247,0.12524122,0.22381447,0.9666612,0.12439124,0.22340205,0.9669239,0.1230842,0.22275503,0.9671836,0.12221353,0.22248183,0.96733344,0.121522985,0.22281756,0.96731573,0.12104792,0.2229604,0.96735466,0.12047273,0.2220405,0.9684777,0.112910874,0.22215855,0.9685965,0.11165299,0.22182745,0.96888083,0.10982925,0.22199811,0.9688975,0.10933628,0.22219545,0.9691005,0.107114136,0.22203968,0.9693949,0.10474662,0.22208126,0.969614,0.10260861,0.22181836,0.9698917,0.10053193,0.22174191,0.9702268,0.09741904,0.22139,0.9704939,0.095540695,0.22138791,0.97060007,0.094461165,0.22121124,0.97075063,0.093320675,0.21182735,0.97244287,0.09738597,0.21220207,0.9720677,0.10027296,0.20992312,0.97079974,0.11610422,0.20983498,0.969346,0.1278189,0.2135248,0.96751726,0.13534212,0.21330664,0.967021,0.13917878,0.22328536,0.9621544,0.1562134,0.2253517,0.96106696,0.15989664,0.23252164,0.9584148,0.16545339,0.23355718,0.96113616,0.14720169,0.22228663,0.9678311,0.11786309,0.22076657,0.97097284,0.092053466,0.21127957,0.97282976,0.094674185,0.20982388,0.9702274,0.1209655,0.2219622,0.9636122,0.14894383,0.23268348,0.95856863,0.16433086,0.23427182,0.96047866,0.15032427,0.22784343,0.9641456,0.13605362,0.22797337,0.9645365,0.13303189,0.2244073,0.96617264,0.1270898,0.2104158,0.97059596,0.116913095,0.21462505,0.966366,0.14167877,0.2208257,0.96382695,0.14924361,0.22710887,0.9643996,0.13548061,0.22465582,0.96595997,0.12826172,0.21026284,0.9706714,0.11656136,0.21482956,0.9689977,0.12203148,0.22094871,0.9678785,0.119969994,0.21541338,0.968876,0.12196881,0.2361943,0.9578641,0.16342781,0.23496112,0.95810705,0.1637808,0.23408158,0.958239,0.16426748,0.23362894,0.95826095,0.16478322,0.23350117,0.958173,0.16547447,0.23306629,0.95770437,0.16876754,0.23209666,0.9578173,0.16946119,0.23184074,0.9577887,0.16997263,0.23186126,0.95751286,0.17149188,0.23158298,0.9574433,0.17225464,0.23181956,0.9572335,0.17310049,0.23213218,0.95705456,0.17367002,0.23268728,0.9568339,0.17414224,0.23407507,0.9563618,0.17487417,0.23461471,0.95616764,0.17521255,0.23574412,0.9558789,0.17527176,0.2355615,0.9558123,0.1758796,0.23507063,0.9558609,0.17627183,0.23472494,0.95586264,0.17672242,0.23456328,0.9557928,0.17731398,0.2345788,0.9556659,0.17797624,0.2349644,0.9552337,0.17977843,0.23517603,0.9551159,0.18012723,0.23551938,0.95495445,0.18053421,0.23620103,0.95478183,0.1805568,0.23673494,0.954669,0.18045405,0.23764685,0.9545992,0.17962268,0.23806216,0.95434093,0.18044332,0.2383843,0.95419466,0.18079117,0.23906147,0.95397824,0.18103915,0.23958422,0.95362747,0.18219244,0.2400823,0.95338553,0.18280189,0.24169448,0.9525767,0.18488209,0.24171084,0.95240825,0.18572664,0.24226432,0.9521119,0.18652326,0.24201874,0.95176136,0.1886192,0.24112597,0.9518795,0.18916582,0.24100639,0.9518202,0.18961608,0.24105856,0.951591,0.19069701,0.24119,0.95143974,0.19128466,0.24204211,0.9509474,0.1926516,0.24250127,0.95070195,0.19328459,0.24386236,0.95011115,0.19447346,0.24452832,0.9498455,0.19493434,0.24644482,0.9491406,0.19595155,0.24771385,0.9487169,0.19640294,0.2486578,0.9484628,0.19643725,0.24951227,0.9482755,0.19625798,0.2501572,0.9481835,0.19588129,0.2507796,0.94826955,0.19466496,0.25097728,0.94852763,0.19314703,0.25226143,0.948355,0.19231987,0.2531729,0.94829607,0.19141075,0.25437573,0.9484903,0.18883602,0.25481683,0.94819754,0.18970972,0.25580817,0.9477638,0.19054131,0.25689414,0.9474346,0.19071715,0.25721234,0.94744796,0.1902213,0.25769693,0.9473934,0.1898367,0.25807318,0.94719166,0.19033179,0.26039106,0.94662833,0.18997696,0.26229665,0.9461149,0.18991335,0.2612944,0.9462977,0.19038366,0.2611469,0.94623625,0.19089082,0.26197332,0.94591796,0.19133534,0.26112956,0.94601136,0.19202577,0.26131207,0.9458153,0.19274183,0.2620137,0.9455224,0.19322556,0.26275367,0.9452388,0.19360812,0.26322713,0.94503254,0.19397154,0.2629191,0.94495225,0.19477884,0.26299074,0.94479764,0.19543104,0.2649269,0.94445926,0.194449,0.26719922,0.94417465,0.19271429,0.26791716,0.94405836,0.19228682,0.26922485,0.94376236,0.19191302,0.26968294,0.94368595,0.1916454,0.2689999,0.9440421,0.19084966,0.2705957,0.9436747,0.19041014,0.27136132,0.94360894,0.18964484,0.27198297,0.94360477,0.18877332,0.27310246,0.94375587,0.18638656,0.2733952,0.94365805,0.1864525,0.27384993,0.9434653,0.18676056,0.27450177,0.94331294,0.18657309,0.2747141,0.9433751,0.1859449,0.27451256,0.9435079,0.18556842,0.27540538,0.94332904,0.18515468,0.27511483,0.94348985,0.18476675,0.27504396,0.9435576,0.18452601,0.27728257,0.9430079,0.18398502,0.27744466,0.94302773,0.18363865,0.2772691,0.94318527,0.1830939,0.27582842,0.9435985,0.18314072,0.27586463,0.94378626,0.18211584,0.27661192,0.9435432,0.18224183,0.2768198,0.9434921,0.18219075,0.27918416,0.9431595,0.18029526,0.27928,0.9432524,0.1796598,0.27890435,0.9434314,0.17930324,0.2791302,0.9435759,0.17818756,0.2787402,0.943967,0.17672068,0.27801266,0.94418,0.17672879,0.27741992,0.94433206,0.17684767,0.25926003,0.94937,0.17742819,0.25777513,0.9498812,0.1768549,0.2563682,0.9503488,0.17638747,0.25493193,0.95070726,0.17653738,0.25408316,0.95113677,0.17544389,0.2529124,0.9516313,0.17445093,0.25215822,0.95203507,0.17333645,0.25170323,0.9522395,0.17287402,0.25007161,0.95273376,0.17251849,0.24916649,0.9530736,0.17194988,0.2486515,0.9532365,0.17179225,0.24786861,0.95353353,0.17127445,0.2475542,0.95372385,0.1706685,0.24685931,0.9539741,0.1702757,0.24661127,0.9541118,0.16986343,0.24680376,0.9542355,0.16888627,0.2460529,0.9546139,0.16783977,0.24541833,0.9548725,0.16729721,0.24481493,0.95510477,0.16685471,0.24477641,0.95522416,0.1662267,0.2455413,0.9552236,0.16509777,0.24541248,0.9553124,0.16477558,0.24497795,0.95552623,0.1641811,0.24425358,0.95581853,0.16355753,0.24175847,0.9568829,0.16102159,0.24158017,0.95701206,0.16052093,0.240807,0.9573254,0.1598126,0.24024725,0.9574482,0.15991932,0.23922673,0.9576023,0.16052535,0.23192994,0.9576229,0.17078307,0.24066523,0.953143,0.18329953,0.2415866,0.95266664,0.18455948,0.2540652,0.94855404,0.18893416,0.2622299,0.94622934,0.1894348,0.26926115,0.9438773,0.19129594,0.24246727,0.956473,0.16238533,0.2380686,0.95766485,0.16186838,0.23344888,0.9578198,0.16757935,0.24124031,0.9528569,0.18402943,0.24258438,0.9518834,0.18727198,0.24263991,0.9517538,0.18785802,0.2754034,0.9436665,0.1834299,0.27524754,0.943967,0.18211289,0.27496383,0.9448119,0.17811616,0.26239312,0.9483655,0.17819276,0.23332755,0.95772886,0.16826664,0.27464297,0.943886,0.1834408,0.2737274,0.945103,0.17847589,0.24309555,0.95621896,0.16294117,0.27477872,0.9439976,0.18266113,0.26986635,0.946127,0.1789297,0.26530975,0.9474652,0.17866303,0.15489419,0.9877703,-0.017820742,0.15412597,0.9878939,-0.017632822,0.15373728,0.9879579,-0.017437587,0.15237027,0.98818547,-0.01651749,0.15225062,0.98820907,-0.016204236,0.15195623,0.98825884,-0.015928304,0.15113522,0.9883896,-0.015623519,0.15082158,0.98844224,-0.015321718,0.15114637,0.98841715,-0.013647861,0.1525941,0.98819655,-0.013513812,0.15395775,0.9879994,-0.012418583,0.15413271,0.98797977,-0.011793543,0.15448809,0.9879314,-0.011182623,0.15546344,0.98779225,-0.009880954,0.15546845,0.9877952,-0.009501667,0.15562041,0.9877747,-0.009132973,0.15640907,0.98765683,-0.00837537,0.15750556,0.987485,-0.00808547,0.1580934,0.98739463,-0.0076342905,0.15846033,0.9873369,-0.0075014913,0.15954307,0.9871642,-0.0072731557,0.16004701,0.9870828,-0.0072469185,0.16023342,0.9870486,-0.007760895,0.15977241,0.98711187,-0.009107497,0.1613339,0.9868641,-0.008401653,0.1628082,0.986625,-0.008038867,0.1649359,0.98628306,-0.006470769,0.16534367,0.98622084,-0.005475417,0.16637814,0.98604983,-0.004902501,0.16742297,0.9858751,-0.0044538104,0.16893788,0.9856149,-0.004829236,0.16969495,0.98547715,-0.006199255,0.17043969,0.9853463,-0.006552291,0.17165707,0.98511565,-0.009003201,0.17313005,0.9848369,-0.01105833,0.17307846,0.98483837,-0.01171544,0.17184979,0.98503727,-0.013007167,0.17093678,0.9851875,-0.013648281,0.1709697,0.9851777,-0.013939806,0.17042176,0.9852601,-0.014794074,0.16971564,0.98533934,-0.017405981,0.1681767,0.9855295,-0.0211717,0.16758922,0.98562324,-0.021464022,0.16668475,0.9857715,-0.021698842,0.1660672,0.9858881,-0.021126986,0.16383511,0.98627573,-0.020450411,0.16345234,0.9863428,-0.020279579,0.16113454,0.9867212,-0.020417126,0.16053395,0.9867938,-0.021606414,0.16015129,0.986852,-0.021787563,0.16011946,0.9868503,-0.02209437,0.15900207,0.9870336,-0.021978294,0.15841909,0.9871315,-0.021790406,0.15798242,0.9872107,-0.021368567,0.15606986,0.987573,-0.018485835,0.15546785,0.98767245,-0.018244734,0.15506987,0.98784727,-0.010541331,0.16430879,0.98638123,-0.007397792,0.16926989,0.98555386,-0.005590426,0.16320115,0.9863878,-0.020112002,0.15782972,0.9872528,-0.020536806,0.1664028,0.9858283,-0.021277778,0.16182867,0.9866122,-0.020194357,0.1534822,0.988066,-0.0129904905,0.17038077,0.98509437,-0.02365323,0.16939643,0.9852836,-0.02282657,0.1692606,0.9853135,-0.02254456,0.16969839,0.985268,-0.02119874,0.1707779,0.9851223,-0.019205926,0.17072639,0.9851395,-0.018780036,0.17098984,0.9850998,-0.018462215,0.17086014,0.98513937,-0.017529536,0.17104225,0.98512614,-0.016462145,0.1716343,0.9850276,-0.016196178,0.17217393,0.98493516,-0.016087232,0.17238875,0.9849001,-0.015935428,0.17133252,0.9850998,-0.0149513995,0.17147282,0.9850771,-0.0148414485,0.17286704,0.98484176,-0.014271282,0.17414358,0.9846313,-0.013238408,0.17608681,0.9842874,-0.013107544,0.17837085,0.98389024,-0.011995175,0.17965919,0.98367083,-0.010688474,0.18205418,0.98324,-0.009766653,0.18265116,0.98312235,-0.01044289,0.18253794,0.9831362,-0.011096431,0.18341288,0.9829429,-0.013529349,0.1850121,0.98263717,-0.013955854,0.18649033,0.982348,-0.014618583,0.18690276,0.9822623,-0.015102599,0.1877798,0.98209333,-0.015212784,0.18800287,0.9820493,-0.015299235,0.18866321,0.9819145,-0.015812708,0.18917777,0.9818022,-0.016618818,0.18919715,0.98179203,-0.016995918,0.18825646,0.9819564,-0.017917858,0.18824752,0.9819524,-0.018229159,0.1896599,0.98166716,-0.018940052,0.18980926,0.9816319,-0.01926835,0.18936913,0.98168,-0.02106502,0.18955716,0.98163724,-0.021362696,0.18971951,0.98157704,-0.022648908,0.190054,0.98150647,-0.022902112,0.19053735,0.9814065,-0.023168609,0.19152695,0.981185,-0.024359003,0.19209719,0.98104507,-0.025479294,0.19202426,0.98104775,-0.02592371,0.19221552,0.98098975,-0.026689801,0.1919625,0.9810263,-0.027163781,0.19229281,0.98093826,-0.027992582,0.19235188,0.98091376,-0.028442252,0.19162887,0.981017,-0.029732613,0.1910262,0.981071,-0.03175967,0.19065718,0.9811335,-0.032044727,0.1886019,0.9814985,-0.033015676,0.18786003,0.98164845,-0.032785505,0.18639801,0.98194504,-0.03224561,0.18623425,0.981984,-0.032003507,0.1859827,0.98205817,-0.031180507,0.18444905,0.9823761,-0.03026216,0.1834778,0.98259014,-0.029197259,0.1831887,0.9826332,-0.029562134,0.18360716,0.9825309,-0.030355772,0.18349671,0.9825368,-0.030829646,0.18262826,0.9826883,-0.031153785,0.1815616,0.9828875,-0.031105284,0.17975679,0.983229,-0.030794825,0.17934719,0.9833032,-0.030813703,0.17844655,0.9834696,-0.030730363,0.17698415,0.9837383,-0.03058787,0.17669767,0.98378795,-0.030645685,0.17548282,0.98400444,-0.030676581,0.17474878,0.9841247,-0.031005524,0.17359437,0.9843466,-0.030442521,0.17282881,0.98449767,-0.029909754,0.17250854,0.98456407,-0.029569738,0.17224345,0.98462933,-0.028935352,0.17178601,0.9847172,-0.028664045,0.17156199,0.9847664,-0.028311774,0.17109078,0.98485726,-0.028001614,0.17080216,0.98494506,-0.026642814,0.17081027,0.9849655,-0.02582191,0.17098537,0.98493963,-0.025651077,0.17159821,0.9848354,-0.025559418,0.17253813,0.98466533,-0.025782997,0.17398171,0.9844239,-0.025298206,0.1736142,0.9845065,-0.024599377,0.17452087,0.9843579,-0.024125822,0.17465937,0.9843511,-0.023388168,0.17383148,0.98449045,-0.023688199,0.1727825,0.984675,-0.023692567,0.17193335,0.9848191,-0.023878336,0.17156182,0.98487693,-0.024165707,0.17243914,0.98491305,-0.014525704,0.17741658,0.9836604,-0.030586619,0.17579451,0.9841381,-0.02384493,0.17739896,0.98405933,-0.012523744,0.18323655,0.9826302,-0.02936415,0.18024461,0.98313856,-0.030830005,0.1737728,0.98445517,-0.025515286,0.18267547,0.9831,-0.0120007,0.17617792,0.98407376,-0.023668844,0.17595924,0.9841181,-0.023450805,0.18143347,0.9825193,-0.04168596,0.18116175,0.9825561,-0.041999165,0.1808511,0.9826099,-0.042078547,0.18035068,0.98271483,-0.04177518,0.17951883,0.9829101,-0.04075222,0.17910054,0.98304176,-0.039393812,0.17923667,0.98303175,-0.03902232,0.17956308,0.98297685,-0.038905255,0.18025634,0.9828498,-0.038909122,0.18127787,0.9826536,-0.039118312,0.18217482,0.9824701,-0.03955826,0.18147333,0.98265046,-0.0382825,0.18054824,0.9828396,-0.03779815,0.18056004,0.98284525,-0.037593786,0.18081515,0.9828111,-0.037258636,0.1810331,0.98277587,-0.037129883,0.18169102,0.98265374,-0.037148032,0.18267693,0.98246485,-0.037309047,0.18319382,0.98239374,-0.036640476,0.18374044,0.9823018,-0.03636858,0.18457028,0.98214597,-0.036374636,0.18519735,0.98203534,-0.036174003,0.18564144,0.9819463,-0.036314305,0.18689197,0.98170465,-0.036432594,0.18721528,0.9816489,-0.036273744,0.18770085,0.98156077,-0.03615013,0.18863672,0.98137933,-0.03620469,0.18911415,0.9812851,-0.0362679,0.1905221,0.9809973,-0.03668171,0.19088796,0.9809161,-0.036951933,0.19102159,0.9808995,-0.036700543,0.19095112,0.98094636,-0.035803244,0.1911777,0.98091376,-0.03548662,0.1918218,0.9807961,-0.035262655,0.19314864,0.98054343,-0.035045292,0.19396487,0.98037964,-0.035118952,0.19493909,0.9801808,-0.03527612,0.19560537,0.980049,-0.035247978,0.19617328,0.97993845,-0.035166338,0.19676137,0.9798218,-0.035131942,0.19903989,0.9793603,-0.035163976,0.20102157,0.9789868,-0.034281556,0.20202577,0.9787908,-0.03397286,0.20368315,0.97845113,-0.0338608,0.2045447,0.9782856,-0.033448216,0.2051133,0.97815007,-0.03392575,0.20546299,0.97806066,-0.03438378,0.20557599,0.9779907,-0.0356755,0.2051213,0.9780568,-0.03647203,0.20360541,0.97831964,-0.03788753,0.20166785,0.9786633,-0.039346185,0.20073366,0.9788386,-0.039761268,0.20034753,0.97884715,-0.04146221,0.19980353,0.97888637,-0.043127768,0.19914754,0.9789551,-0.04457747,0.19948554,0.9788735,-0.04485777,0.19963439,0.9788313,-0.045115434,0.19961855,0.97882414,-0.045340065,0.19832237,0.9790663,-0.045797724,0.19769473,0.9790748,-0.048263483,0.19592571,0.9793467,-0.049931586,0.1954965,0.97939664,-0.050629582,0.19545504,0.97936326,-0.0514291,0.1951587,0.97940904,-0.051682036,0.19229187,0.9799244,-0.05265055,0.19071282,0.9802503,-0.05232584,0.18955068,0.9804988,-0.05189132,0.18849595,0.9807274,-0.0514113,0.18776682,0.98088706,-0.051031273,0.18717584,0.98101896,-0.050665148,0.18688688,0.9811017,-0.05012741,0.18681177,0.98114073,-0.049640622,0.18676117,0.9812255,-0.048133,0.18602203,0.981371,-0.048028734,0.18537228,0.9815068,-0.04776529,0.1851909,0.9815508,-0.04756342,0.18484844,0.98167104,-0.046400238,0.18409811,0.9818349,-0.045914467,0.18315111,0.98203534,-0.045412462,0.18281639,0.98212093,-0.044906657,0.18290402,0.9821234,-0.044495393,0.18348648,0.9820448,-0.04382569,0.18491884,0.98181486,-0.042949233,0.18502453,0.9818124,-0.042547565,0.18579441,0.98167497,-0.042364333,0.1883867,0.98121417,-0.041584473,0.18433465,0.9819787,-0.041696463,0.18312834,0.98221004,-0.041563068,0.18221523,0.9824949,-0.03874858,0.19831845,0.9795063,-0.035174206,0.18735157,0.98107415,-0.04891739,0.18457906,0.98186386,-0.043289628,0.18176135,0.98246324,-0.041578047,0.18694861,0.98145884,-0.04229411,0.18231893,0.9824585,-0.0391807,0.18837465,0.98119605,-0.042062897,0.1891016,0.9810751,-0.041619267,0.15720606,0.9695692,-0.18767479,0.15684642,0.97009724,-0.18523094,0.15687656,0.9703524,-0.18386406,0.15716545,0.97075146,-0.18149552,0.15688026,0.97096795,-0.18058191,0.15678115,0.97112066,-0.17984535,0.15707901,0.97113305,-0.17951818,0.15905938,0.9708425,-0.17934613,0.15992734,0.97077906,-0.17891687,0.160665,0.97063476,-0.17903896,0.16163436,0.9704129,-0.1793686,0.16240557,0.9703619,-0.1789477,0.16318423,0.9702458,-0.17886864,0.16376312,0.97010636,-0.17909566,0.16446967,0.9699131,-0.17949453,0.16516481,0.9695454,-0.18083774,0.16553454,0.969272,-0.18196182,0.16638392,0.96936667,-0.18067828,0.16703631,0.9692284,-0.18081819,0.16944534,0.96838486,-0.18308194,0.17156489,0.9674828,-0.1858563,0.17198935,0.96747375,-0.18551077,0.1723669,0.9675565,-0.1847272,0.17293766,0.96738076,-0.18511358,0.17352611,0.9671363,-0.18583867,0.17379034,0.96697927,-0.18640806,0.17437567,0.96648246,-0.18842709,0.1744142,0.9661702,-0.1899864,0.17414829,0.9659644,-0.19127248,0.17492767,0.96533996,-0.1936985,0.17512985,0.9651399,-0.1945107,0.1751533,0.96500486,-0.19515869,0.17357264,0.96456164,-0.19872926,0.17347059,0.9644361,-0.19942667,0.17325048,0.96435696,-0.19999966,0.1728101,0.96437144,-0.20031078,0.17212655,0.9644967,-0.20029643,0.17107764,0.9647837,-0.19981186,0.1698221,0.9651892,-0.19892265,0.1675955,0.96576196,-0.19802924,0.16746727,0.96544886,-0.1996578,0.16708595,0.9652309,-0.20102648,0.16629936,0.96527255,-0.20147823,0.16533072,0.96538997,-0.2017125,0.16259715,0.965578,-0.20303032,0.1615667,0.96568674,-0.20333545,0.15949637,0.965704,-0.20488206,0.15972595,0.96547085,-0.20580012,0.15986718,0.9652445,-0.20675,0.15975797,0.9651471,-0.2072884,0.15950014,0.9651098,-0.20766012,0.1587702,0.96518743,-0.20785876,0.15790814,0.96532595,-0.20787217,0.1555996,0.9657916,-0.20744969,0.15538055,0.9662071,-0.20567133,0.15041201,0.9684605,-0.19864655,0.15115131,0.9683422,-0.19866236,0.15225218,0.9679238,-0.1998567,0.15328553,0.9674343,-0.20143104,0.1536791,0.96712506,-0.20261243,0.15383114,0.96690106,-0.20356412,0.15396444,0.9664519,-0.20558636,0.15349542,0.9662991,-0.20665231,0.15265422,0.9663041,-0.20725103,0.1516154,0.96612734,-0.20883188,0.15075605,0.96619266,-0.20915163,0.14963192,0.9663864,-0.20906384,0.14627351,0.96713006,-0.20799883,0.14598422,0.96737623,-0.2070552,0.14589982,0.96755755,-0.20626594,0.14362752,0.9681028,-0.20530005,0.14202803,0.9682807,-0.20557387,0.141885,0.968427,-0.20498255,0.1418724,0.9685206,-0.2045484,0.144636,0.9697173,-0.19679612,0.1451009,0.9697034,-0.19652243,0.14633808,0.9695408,-0.19640726,0.14839987,0.9698874,-0.19312167,0.148483,0.97047937,-0.19005957,0.14866467,0.9707502,-0.18852802,0.14920121,0.97087204,-0.18747385,0.15058687,0.97056437,-0.18795857,0.15225692,0.9702491,-0.18824062,0.15267289,0.97014564,-0.18843676,0.15318446,0.96998817,-0.18883187,0.15391079,0.96973085,-0.18956135,0.15463263,0.96944076,-0.19045578,0.15511334,0.9692288,-0.19114237,0.15723285,0.9689717,-0.19071357,0.15644567,0.9694276,-0.18903682,0.15653637,0.96954125,-0.18837772,0.15714748,0.97063553,-0.18212992,0.16122076,0.9704949,-0.179297,0.16897367,0.96549106,-0.198179,0.16042082,0.965847,-0.2034814,0.14937529,0.9687273,-0.19812723,0.15707462,0.96948737,-0.18820697,0.17416723,0.96610886,-0.1905241,0.15948081,0.96588635,-0.20403299,0.15579893,0.96638983,-0.20449287,0.1451333,0.9677798,-0.2057634,0.14810626,0.9697163,-0.19420299,0.15735105,0.9688568,-0.19119921,0.16785808,0.9657633,-0.19780017,0.14904779,0.96884245,-0.19781065,0.16831988,0.96567965,-0.19781615,0.15577587,0.96652514,-0.20387022,0.14685766,0.96950364,-0.19620273,0.14760557,0.9695604,-0.19535916,0.15737236,0.9687736,-0.19160289,0.14871266,0.96907294,-0.19693187,0.15562342,0.9690178,-0.19179624,0.15632427,0.9688085,-0.19228333,0.15729487,0.96873116,-0.19188099,0.15482657,0.9674718,-0.2000676,0.14997216,0.9691057,-0.19581217,0.1567977,0.9687163,-0.1923621,0.15457503,0.96767694,-0.19926852,0.15110546,0.9689799,-0.1955634,0.1540685,0.9679619,-0.19827405,0.15218371,0.96884584,-0.19539165,0.13794896,0.9678351,-0.21039304,0.13718134,0.96819323,-0.20924407,0.13729517,0.9685041,-0.20772564,0.13787435,0.9684015,-0.20782022,0.13894455,0.9680641,-0.20867737,0.14007302,0.96768165,-0.2096944,0.14125727,0.967248,-0.2108971,0.14231004,0.96681577,-0.21216768,0.14102778,0.9664398,-0.21472143,0.14067227,0.96620756,-0.21599591,0.14043114,0.9659187,-0.21743983,0.14013116,0.96585476,-0.21791708,0.13875626,0.9656179,-0.21983811,0.13853619,0.9652783,-0.22146219,0.13835175,0.9651339,-0.22220552,0.13778126,0.9650185,-0.22305967,0.13507907,0.96489036,-0.22525606,0.13292238,0.964891,-0.22653246,0.13177544,0.964995,-0.22675942,0.12922274,0.9653215,-0.22683895,0.12780397,0.9655587,-0.22663304,0.12733102,0.965675,-0.2264036,0.124892145,0.9666293,-0.22367315,0.1250992,0.96665555,-0.2234441,0.12541726,0.9666239,-0.22340265,0.12650006,0.9663754,-0.22386667,0.12665574,0.96652997,-0.22311023,0.12693875,0.96666276,-0.2223729,0.12715964,0.9669091,-0.22117235,0.12870969,0.9670218,-0.21977846,0.13070805,0.9670995,-0.21825208,0.13173088,0.9669487,-0.21830542,0.13254642,0.96730924,-0.21620427,0.13219543,0.9674291,-0.21588267,0.1317833,0.96765393,-0.21512568,0.1318397,0.9677686,-0.21457437,0.13508019,0.9678872,-0.21200873,0.13530083,0.9678761,-0.21191877,0.13739185,0.96755195,-0.21205357,0.13831201,0.9675804,-0.21132441,0.13895038,0.9657401,-0.21917783,0.1329261,0.96714544,-0.21670333,0.12601016,0.96646655,-0.22374964,0.13280731,0.96698534,-0.21748912,0.0069221915,0.94450295,-0.32843,0.0065255626,0.94452786,-0.32836637,0.004844491,0.9448362,-0.32750744,0.0020123043,0.9449428,-0.32722947,0.0006750223,0.94538033,-0.32596874,-2.8472146e-8,0.9454789,-0.3256834,-2.768504e-8,0.94853246,-0.31667995,0.0006282469,0.94845283,-0.31691778,0.0015759838,0.9481363,-0.31786004,0.0025119032,0.9480334,-0.31816098,0.004274851,0.94734734,-0.32017928,0.006226725,0.946824,-0.32169157,0.0065933573,0.94652474,-0.3225638,0.0074377726,0.94611734,-0.32373852,0.007774723,0.9457874,-0.32469344,0.007680066,0.9455219,-0.32546788,0.3527336,0.8104607,-0.4676885,0.35231832,0.81303924,-0.46350732,0.35267955,0.8132644,-0.46283698,0.35500115,0.81186914,-0.4635113,0.35673654,0.811887,-0.4621456,0.35681388,0.81053805,-0.46444803,0.35790274,0.80712533,-0.46952558,0.35890862,0.806308,-0.4701617,0.3585873,0.8062399,-0.47052345,0.3591394,0.8056633,-0.4710897,0.36036897,0.8054386,-0.4705347,0.36128116,0.8047653,-0.47098696,0.36440486,0.8028743,-0.4718071,0.36487347,0.803691,-0.47005114,0.36508462,0.8038112,-0.46968153,0.36687702,0.8034039,-0.4689812,0.36837274,0.8027077,-0.46900094,0.3690417,0.80218744,-0.46936497,0.3706529,0.80008763,-0.47167382,0.37728798,0.7928732,-0.4785456,0.37865236,0.7918542,-0.47915483,0.37957126,0.79093474,-0.4799458,0.38240835,0.78729403,-0.48366514,0.38270107,0.7863615,-0.48494893,0.38307637,0.78533643,-0.48631182,0.38362783,0.7851691,-0.48614717,0.3835988,0.7846702,-0.48697504,0.38565883,0.7771293,-0.49733016,0.38708577,0.77593833,-0.49808064,0.3884375,0.7746848,-0.49897873,0.3899499,0.773071,-0.5003003,0.39086255,0.7717909,-0.5015628,0.39936027,0.7597214,-0.51316154,0.4007771,0.7582716,-0.5142003,0.4030923,0.7556073,-0.51630825,0.40432018,0.7543908,-0.51712644,0.4071443,0.7518409,-0.51862204,0.40747324,0.7512866,-0.51916665,0.40763602,0.7507419,-0.51982635,0.40787202,0.7486908,-0.52259207,0.41136152,0.74200094,-0.5293546,0.41278383,0.7409024,-0.5297859,0.4141982,0.7396385,-0.5304477,0.41557488,0.7383076,-0.5312244,0.41593575,0.73779356,-0.53165597,0.41728732,0.73547894,-0.5337996,0.41779572,0.7342594,-0.53507936,0.4195383,0.7317145,-0.5371978,0.42353565,0.72770315,-0.53950506,0.42578015,0.7247863,-0.54166055,0.4271494,0.72140676,-0.54508317,0.42765912,0.7204093,-0.54600203,0.42793676,0.7195031,-0.54697835,0.42782155,0.7188743,-0.5478946,0.4275767,0.7183332,-0.5487947,0.4262483,0.7193309,-0.5485211,0.4249945,0.7204163,-0.54806936,0.41537246,0.7274214,-0.5461903,0.41530034,0.726817,-0.54704905,0.41509223,0.7266379,-0.5474448,0.4110552,0.7250886,-0.55252165,0.41176802,0.7236721,-0.5538464,0.41232678,0.72202617,-0.55557615,0.41365018,0.71968716,-0.5576234,0.41303486,0.72018164,-0.5574411,0.41250467,0.7207425,-0.5571087,0.41198388,0.7214534,-0.5565737,0.41139293,0.72212464,-0.5561402,0.4097155,0.72369856,-0.55533195,0.40939412,0.7242447,-0.55485684,0.40849403,0.7262759,-0.5528615,0.4076849,0.72839546,-0.550666,0.4077512,0.72887295,-0.5499847,0.40825093,0.7290363,-0.5493972,0.4088679,0.72905666,-0.54891115,0.40992987,0.72890735,-0.54831713,0.40958193,0.731363,-0.5452989,0.40867025,0.733999,-0.54243344,0.40851462,0.73518384,-0.5409441,0.4085409,0.73564637,-0.540295,0.40870008,0.7360001,-0.5396926,0.40399435,0.74602103,-0.5293781,0.39573702,0.75376725,-0.524621,0.39374477,0.75591534,-0.52302676,0.38284615,0.7570925,-0.52937686,0.38245142,0.75550795,-0.5319197,0.38190153,0.75455356,-0.53366673,0.3812568,0.7525855,-0.53689694,0.38180655,0.7510171,-0.5386994,0.38170967,0.75057584,-0.53938276,0.3804182,0.75263935,-0.537416,0.3802232,0.7532333,-0.53672147,0.3804681,0.75397444,-0.53550595,0.38121998,0.7552941,-0.53310615,0.38069692,0.75826323,-0.5292511,0.3800593,0.759635,-0.5277401,0.3795168,0.76096964,-0.5262055,0.37918213,0.76223326,-0.5246154,0.37820345,0.7648736,-0.5214696,0.37725365,0.7692057,-0.5157541,0.3761906,0.77169937,-0.512797,0.37204334,0.7798439,-0.5034156,0.3721931,0.78017986,-0.5027839,0.37215218,0.78042185,-0.5024385,0.3713678,0.78154117,-0.50127774,0.37090653,0.7822982,-0.5004376,0.37083596,0.78283197,-0.49965474,0.37117207,0.7835118,-0.49833772,0.37095305,0.78404427,-0.4976629,0.37007818,0.7852557,-0.49640268,0.36961076,0.7863736,-0.4949793,0.36512738,0.7927464,-0.4880933,0.3642923,0.7931265,-0.48809984,0.36361146,0.79366297,-0.4877354,0.36266974,0.79455847,-0.48697793,0.3618769,0.795474,-0.48607227,0.35975897,0.7982476,-0.48308823,0.3586411,0.8000447,-0.48094174,0.35818255,0.800912,-0.47983867,0.35782734,0.8017344,-0.47872916,0.35615927,0.8069009,-0.47123402,0.35586575,0.807073,-0.47116107,0.3554982,0.8077674,-0.47024772,0.35471714,0.8085614,-0.46947226,0.3537626,0.8093124,-0.46889815,0.35312435,0.80989516,-0.46837267,0.35427135,0.8121203,-0.4636296,0.35703415,0.80794567,-0.4687754,0.36110365,0.8042384,-0.472022,0.37122443,0.7990441,-0.47299156,0.3759591,0.7939438,-0.47781578,0.38245177,0.7857404,-0.48615092,0.3980046,0.7611891,-0.5120386,0.41841453,0.73302126,-0.53629196,0.42201075,0.72366095,-0.54609686,0.41309744,0.7264862,-0.5491524,0.4060838,0.743987,-0.5306404,0.38144958,0.7534894,-0.5354904,0.3693337,0.78741384,-0.4935302,0.35670447,0.80869275,-0.46773702,0.36233792,0.80331105,-0.47265485,0.36400512,0.80284387,-0.47216737,0.3832476,0.7840189,-0.48829877,0.3919069,0.7695345,-0.50420797,0.41559166,0.7279025,-0.5453821,0.409935,0.7294946,-0.5475317,0.35339245,0.8126759,-0.46332675,0.37348396,0.79646134,-0.4755618,0.38303486,0.7828309,-0.49036735,0.39260367,0.7684706,-0.50528735,0.410177,0.74330103,-0.5284491,0.41110152,0.7260826,-0.5511801,0.40910566,0.73628795,-0.5389922,0.36614737,0.79175013,-0.4889457,0.36349392,0.8029292,-0.472416,0.38307336,0.78184044,-0.49191502,0.40839654,0.746523,-0.5252767,0.40934452,0.7367157,-0.5382259,0.368487,0.78890973,-0.49177104,0.39712968,0.762039,-0.51145333,0.4207914,0.72487783,-0.5454234,0.40939203,0.73771244,-0.5368227,0.38323975,0.7575555,-0.5284288,0.35727635,0.80373925,-0.47576976,0.39804938,0.7604732,-0.51306653,0.41951236,0.72603106,-0.5448746,0.41608456,0.7279668,-0.5449202,0.3810661,0.7567728,-0.53111535,0.37111923,0.7939042,-0.48164997,0.40292904,0.75214565,-0.52146435,0.3837748,0.7578647,-0.5275965,0.3838036,0.7795846,-0.4949168,0.3715043,0.79280543,-0.48316056,0.40203446,0.7534328,-0.5202954,0.4108692,0.7398854,-0.53268766,0.3930114,0.7666677,-0.5077033,0.38998932,0.7673277,-0.5090348,0.4049246,0.7470398,-0.5272263,0.37472233,0.7868752,-0.49031693,0.38489008,0.7582321,-0.52625436,0.38972077,0.76764,-0.50876963,0.37458608,0.78702545,-0.4901798,0.4047924,0.7472017,-0.5270984,0.37431368,0.7873258,-0.48990542,0.4167524,0.7277821,-0.5446565,0.38566023,0.758271,-0.5256341,0.40375984,0.7479802,-0.5267861,0.40410393,0.74772084,-0.52689046,0.4181322,0.72710496,-0.5445034,0.38903487,0.76814055,-0.508539,0.37397233,0.78756666,-0.48977903,0.40909302,0.73944294,-0.5346654,0.38903326,0.75802815,-0.5234944,0.40887582,0.74007595,-0.53395516,0.39058533,0.75771123,-0.52279705,0.40782246,0.74179924,-0.53236705,0.3922909,0.7569817,-0.5225769,0.3958629,0.7586602,-0.5174236,0.3985051,0.7551223,-0.5205613,0.38366508,0.7750277,-0.5021287,0.37123704,0.790891,-0.48649198,0.3945406,0.7602548,-0.51609135,0.39498153,0.7597238,-0.51653594,0.38277185,0.77605927,-0.5012163,0.37078488,0.7913908,-0.4860239,0.38241068,0.77016705,-0.5104947,0.38782474,0.76613784,-0.5124693,0.38859373,0.76438457,-0.5145009,-0.0061967326,0.9487495,-0.31596836,-0.005543634,0.9488386,-0.31571287,-0.0048952173,0.94885504,-0.31567413,-0.003299884,0.9486921,-0.31618416,-0.0025012966,0.9487791,-0.31593025,-0.0017041599,0.9487546,-0.31600916,-0.00085678307,0.9486056,-0.31645966,-2.743245e-7,0.94853246,-0.31667995,-2.7630318e-7,0.9477668,-0.31896415,-2.7938884e-7,0.9465605,-0.32252625,-2.8212372e-7,0.9454789,-0.3256834,-0.0015134258,0.94535756,-0.32603195,-0.0028139586,0.94508266,-0.3268193,-0.003333881,0.94505733,-0.32688767,-0.0048052035,0.9451762,-0.32652545,-0.008357195,0.9456026,-0.32521665,-0.010982753,0.9457567,-0.32469022,-0.012331809,0.94590193,-0.3242183,-0.0139481425,0.94646287,-0.32251114,-0.0140517205,0.94675684,-0.3216427,-0.01383134,0.9470035,-0.32092533,-0.013527387,0.9471078,-0.32063046,-0.011277259,0.94771564,-0.31891668,-0.010795314,0.9479775,-0.31815425,-0.010351327,0.9481323,-0.31770742,-0.009894865,0.9482219,-0.31745443,-0.0091028595,0.9484852,-0.3166906,-0.0086253965,0.94855136,-0.3165058,-0.012187419,0.94743377,-0.3197197,-0.0041020093,0.94871986,-0.31609142,0.24618103,0.90735734,0.34073088,0.24562353,0.90764624,0.34036365,0.24496318,0.90775955,0.3405372,0.24461986,0.9074634,0.34157193,0.24439123,0.9075364,0.3415416,0.24419966,0.90741897,0.34199023,0.24490608,0.90699697,0.34260404,0.24560234,0.9067409,0.34278333,0.24596411,0.9067323,0.34254655,0.24730223,0.90613556,0.34316173,0.24745318,0.90631855,0.3425691,0.2470396,0.90657663,0.34218454,0.24684075,0.90688175,0.3415189,0.26824856,0.9183641,0.29094684,0.2682938,0.91845816,0.29060805,0.26781216,0.9186899,0.29031956,0.267002,0.9190131,0.29004285,0.26643255,0.91910446,0.290277,0.2661404,0.9190359,0.2907615,0.26626176,0.9189314,0.2909807,0.2667318,0.91868824,0.29131785,0.2561486,0.9471614,0.19306289,0.25486985,0.94757336,0.19273335,0.253985,0.9477673,0.19294754,0.2537835,0.9477891,0.19310573,0.25392655,0.9477116,0.19329798,0.2544144,0.9475183,0.1936036,0.25366357,0.9476757,0.1938185,0.25328624,0.9476852,0.1942649,0.2529213,0.9475278,0.19550392,0.2531432,0.9473503,0.19607617,0.25370124,0.9471258,0.19643924,0.2540281,0.94704425,0.19640994,0.25490114,0.94686985,0.19611973,0.25516838,0.94693255,0.19546819,0.25673884,0.9465405,0.19531094,0.25777575,0.9461698,0.19574073,0.25831702,0.9460053,0.1958222,0.25987253,0.94558454,0.19579606,0.2605004,0.9453406,0.1961397,0.2606607,0.9454164,0.19556026,0.26038116,0.94551444,0.19545877,0.2597666,0.9456943,0.19540618,0.25939643,0.9458875,0.19496232,0.25859863,0.94642246,0.19342005,0.2578211,0.94673514,0.19292693,0.25729686,0.94688463,0.19289336,0.25712207,0.9468624,0.19323507,0.2591317,0.9458228,0.19562729,0.11989091,0.8142446,-0.5680069,0.12015622,0.8147737,-0.56719166,0.12132953,0.8160415,-0.56511533,0.12278346,0.81684464,-0.56363916,0.12386121,0.8171223,-0.5630005,0.12447208,0.81771725,-0.562001,0.12516405,0.81770647,-0.56186306,0.12489539,0.81709427,-0.5628126,0.123331584,0.81611395,-0.56457716,0.10892661,0.94440997,-0.3102012,0.10846899,0.9445066,-0.3100674,0.108537026,0.9448549,-0.3089805,0.1087427,0.9450846,-0.30820468,0.109316744,0.9451431,-0.30782196,0.10942311,0.9450782,-0.30798337,0.10983758,0.9446689,-0.3090897,0.10964355,0.94448954,-0.30970606,0.11469235,0.93295133,-0.34124395,0.11441969,0.9329596,-0.34131283,0.11404606,0.93312675,-0.34098095,0.11376816,0.93338996,-0.34035265,0.11366028,0.93368053,-0.3395909,0.11342564,0.93479115,-0.3366008,0.11294139,0.9353997,-0.33506954,0.112669185,0.93587106,-0.33384275,0.112300724,0.93614346,-0.3332027,0.111217186,0.9362836,-0.33317223,0.11048402,0.9366778,-0.33230698,0.10996293,0.9372359,-0.33090332,0.110307574,0.93748885,-0.33007103,0.11036891,0.93752176,-0.32995698,0.111146465,0.9372558,-0.33045122,0.11193166,0.936922,-0.33113205,0.11353581,0.9364876,-0.33181405,0.1140375,0.9360943,-0.33275053,0.11394272,0.93565106,-0.33402705,0.114891596,0.9348072,-0.33605865,0.11528445,0.9342683,-0.33742008,0.115164265,0.9340898,-0.3379548,0.11428639,0.93385804,-0.33889192,0.114147395,0.9333677,-0.3402868,0.11378536,0.9342446,-0.33799398,0.11396509,0.9335529,-0.3398395,0.10996879,0.9706569,-0.21385062,0.10931936,0.9708075,-0.21349959,0.10907969,0.9709818,-0.21282846,0.10901817,0.97107244,-0.21244606,0.10907543,0.9711127,-0.21223253,0.109811164,0.9710293,-0.21223485,0.11036651,0.970899,-0.21254256,0.121008165,0.97297066,-0.19668543,0.11831618,0.9730177,-0.19808558,0.117978826,0.9730864,-0.1979489,0.11714964,0.9733681,-0.19705452,0.116372965,0.9735074,-0.19682644,0.119037084,0.97336555,-0.19593276,0.12058296,0.97308624,-0.1963744,0.2143563,0.9478977,-0.23567212,0.21239842,0.9483661,-0.23556028,0.21211626,0.9485603,-0.23503216,0.21198098,0.9487826,-0.2342554,0.21209408,0.94880927,-0.23404504,0.21435949,0.9487654,-0.23215139,0.21507636,0.9486395,-0.2320026,0.21524389,0.94863415,-0.23186922,0.21558794,0.94856,-0.23185286,0.2158048,0.948489,-0.23194164,0.21605751,0.9483358,-0.23233242,0.21581864,0.94807917,-0.23359832,0.21544555,0.9481049,-0.23383814,0.21460353,0.94818294,-0.23429564,0.21464358,0.94795716,-0.23517095,0.21501715,0.94819784,-0.23385574,0.21472481,0.94823223,-0.23398492,0.19682895,0.9784462,-0.062461447,0.1959448,0.97862005,-0.06251703,0.19518806,0.97881573,-0.061816975,0.19519514,0.97882956,-0.06157587,0.19652104,0.97875154,-0.058523096,0.19714604,0.9786521,-0.058081303,0.19726335,0.97849333,-0.060315713,0.19685183,0.9785039,-0.06147782,0.19736825,0.9783567,-0.062160444,0.21463828,0.9725854,-0.089488246,0.2138133,0.97286034,-0.08846831,0.21358305,0.9729527,-0.08800704,0.21415551,0.9728501,-0.08775057,0.21433872,0.9729086,-0.08664692,0.21450788,0.9728816,-0.08653159,0.21482196,0.9727879,-0.08680563,0.21543601,0.9725705,-0.087715276,0.21539426,0.97252446,-0.0883259,0.21609342,0.9723038,-0.08904445,0.21640901,0.972166,-0.0897796,0.21630462,0.9721756,-0.08992733,0.21580733,0.9723004,-0.08977237,0.21550852,0.9723669,-0.08977003,0.21527387,0.9724089,-0.08987819,0.23587139,0.97139937,-0.0273495,0.23566905,0.9714586,-0.026986197,0.23533064,0.9715713,-0.025858955,0.23594885,0.97143275,-0.025428003,0.23573446,0.9715239,-0.023887802,0.2365604,0.9713404,-0.023171745,0.23597957,0.97150385,-0.022223046,0.23646508,0.97139025,-0.022028085,0.23726052,0.97119564,-0.02205648,0.23747003,0.97110784,-0.023613147,0.23796365,0.9709686,-0.024358349,0.23792945,0.9709486,-0.02546423,0.23841116,0.9708075,-0.026323304,0.23744766,0.9710405,-0.026438562,0.23643813,0.97127455,-0.026883218,0.23659994,0.97122264,-0.027332218,0.23686485,0.97118485,-0.026362635,0.22314821,0.9744746,-0.024578433,0.22233526,0.97464883,-0.025034439,0.22128774,0.97487634,-0.02545252,0.22087392,0.97497135,-0.025407217,0.22001868,0.9751707,-0.02517852,0.22212721,0.97475165,-0.022774793,0.22298856,0.9745914,-0.02115991,0.22368096,0.974444,-0.020633366,0.22377087,0.9744153,-0.021010982,0.22348519,0.97445375,-0.022231396,0.22397168,0.9743332,-0.022615245,0.2242015,0.9742716,-0.022989793,0.22363803,0.97438,-0.023866076,0.22376405,0.9743392,-0.02434752,0.22348958,0.9743986,-0.02448998,0.2218045,0.9750874,0.0027118777,0.22173081,0.9751061,0.0018798264,0.22061722,0.9753596,0.0012867666,0.22017777,0.975459,0.0012312874,0.21965346,0.9755769,0.0014713325,0.21980402,0.97554016,0.0027563686,0.22030199,0.97542685,0.0030743196,0.22106752,0.97525287,0.0033118727,0.2213571,0.97518766,0.0031709417,0.28411797,0.9556069,0.0780544,0.28399256,0.9556566,0.07790181,0.28349087,0.9558326,0.07756939,0.2815398,0.9564715,0.07679576,0.28135097,0.9566231,0.0755903,0.28030148,0.95685494,0.07654882,0.2799139,0.956924,0.077101655,0.2795154,0.956968,0.077995874,0.279571,0.95685965,0.07911832,0.280051,0.9566834,0.07955072,0.2808406,0.9564145,0.07999851,0.28169444,0.95617884,0.07981419,0.28313342,0.95583236,0.078867115,0.28376985,0.9556962,0.07822674,0.28243643,0.95614666,0.07754533,0.28309345,0.9559432,0.07765724,0.2756758,0.9586045,0.07127557,0.27603346,0.95861685,0.06970806,0.27576005,0.95872796,0.06926114,0.27484038,0.9590636,0.068262756,0.274653,0.9591162,0.06827785,0.27429956,0.95918393,0.06874573,0.27439666,0.95902085,0.070607655,0.2751791,0.9587076,0.071807005,0.27587095,0.95848334,0.07214527,0.2726954,0.9616062,0.030833375,0.27243763,0.96169084,0.030470388,0.27183256,0.96184814,0.030906653,0.2711433,0.9619877,0.03257281,0.2713788,0.9618794,0.033787917,0.27194947,0.96170115,0.03426951,0.27241975,0.9616233,0.032681875,0.27315733,0.9614517,0.03155395,0.27297705,0.9615098,0.031343132,0.27305576,0.9614944,0.03113106,0.323861,0.9363204,0.13571341,0.32273537,0.9368544,0.13470593,0.3220596,0.9371123,0.13452959,0.32174492,0.9371322,0.13514265,0.32268223,0.93656945,0.13679853,0.32297653,0.93647057,0.13678105,0.3233963,0.93634886,0.13662222,0.3062579,0.94265,0.13272923,0.30563208,0.94288445,0.13250627,0.30302262,0.9437939,0.13202399,0.3019688,0.9442002,0.1315324,0.3018666,0.9442193,0.13162991,0.30205047,0.94413,0.13184859,0.30244717,0.9439583,0.13216847,0.3041599,0.943314,0.13283606,0.3050808,0.94299656,0.13297825,0.30593297,0.9427282,0.13292304,0.3744847,0.9169887,0.13745171,0.37471777,0.91707534,0.13623281,0.37457773,0.9171824,0.13589719,0.3739227,0.91754025,0.13528387,0.3733406,0.9177509,0.1354627,0.37292385,0.917943,0.13530862,0.3719338,0.91841805,0.13480952,0.37132058,0.9185269,0.13575487,0.37066886,0.91869795,0.13637674,0.37019086,0.9187155,0.13755207,0.36973605,0.9187986,0.13821854,0.37018257,0.9185566,0.13863145,0.37288418,0.91751415,0.13829398,0.13216598,0.9849913,0.11101487,0.13214366,0.98503214,0.11067842,0.13171975,0.9851377,0.110243194,0.13136123,0.9853257,0.10898409,0.13116805,0.9853652,0.1088593,0.1306084,0.9854657,0.1086221,0.1297682,0.98549753,0.1093381,0.13007388,0.98528564,0.11087369,0.13043481,0.9852175,0.11105475,0.13669075,0.9846008,0.10898154,0.13647628,0.9846383,0.10891142,0.13594292,0.98472375,0.10880586,0.13526385,0.9848391,0.108607724,0.13478185,0.9849548,0.10815688,0.1335706,0.98509204,0.10840934,0.13368413,0.9849545,0.10951357,0.13346855,0.98491496,0.110130005,0.13345638,0.9847488,0.11162087,0.1349044,0.98457783,0.11138823,0.1360048,0.9846009,0.109835066,0.13683686,0.98456585,0.10911328,0.13552897,0.98478127,0.108801596,0.12036018,0.9878007,0.09880864,0.12051513,0.98781747,0.09845197,0.12024924,0.9878837,0.098112136,0.1200319,0.98798186,0.09738672,0.119345374,0.98809683,0.09706336,0.118805334,0.9881499,0.09718594,0.118610725,0.9881466,0.09745639,0.118640676,0.9881165,0.097724795,0.1187999,0.988079,0.097910345,0.11896942,0.98803055,0.09819315,0.11885316,0.9880206,0.09843414,0.11913131,0.98796725,0.09863303,0.11943461,0.9879176,0.09876306,0.120134085,0.9878124,0.09896695,0.13938057,0.9854874,0.09688964,0.13919368,0.9856264,0.095737845,0.13871597,0.9857101,0.09556956,0.13836142,0.9857554,0.09561597,0.13806328,0.98577803,0.09581347,0.13823551,0.98569036,0.09646456,0.1385978,0.9855751,0.09712048,0.13911001,0.98549205,0.09723072,0.13509108,0.98605806,0.09715905,0.13460678,0.9862071,0.09631452,0.13428134,0.9862818,0.096003816,0.13365047,0.98640096,0.09565918,0.13301073,0.98646295,0.0959114,0.13278697,0.98649895,0.0958509,0.13185416,0.98658717,0.09622994,0.13241063,0.9864666,0.0967011,0.13276862,0.9864077,0.096811,0.13314255,0.98633003,0.09708851,0.13321824,0.9862967,0.0973226,0.13353755,0.986217,0.09769207,0.15049675,0.98457366,0.08924953,0.1505657,0.98467356,0.088022746,0.15033373,0.98479044,0.08710672,0.14885415,0.98505723,0.086629406,0.14792755,0.98516583,0.08698119,0.14805354,0.9849707,0.088954404,0.14813802,0.98493576,0.089200094,0.14894582,0.98476106,0.089781664,0.14953062,0.98469895,0.089490846,0.14987218,0.9846506,0.08945084,0.15015066,0.9846039,0.089498386,0.13388714,0.9876637,0.08120787,0.1329436,0.9878018,0.081077896,0.13248524,0.9878564,0.081162825,0.13155232,0.9879452,0.08159788,0.13113934,0.9879983,0.08161961,0.13100265,0.98800963,0.081702225,0.13170488,0.9877743,0.083401196,0.13112424,0.98781574,0.08382439,0.13126215,0.987735,0.08455722,0.13302864,0.98745555,0.08505842,0.13391784,0.9873836,0.084496506,0.13559203,0.9871177,0.084931806,0.13652222,0.9870381,0.0843651,0.13699883,0.9870467,0.08348701,0.13714708,0.9870787,0.08286319,0.13647741,0.9872245,0.08222917,0.1354638,0.9874073,0.0817088,0.13480937,0.9875064,0.081594154,0.52089006,0.71288294,0.4695439,0.5208468,0.71310645,0.46925238,0.52027136,0.71391135,0.4686665,0.51908326,0.7150472,0.46825212,0.5191091,0.71469444,0.46876186,0.5196506,0.7140092,0.4692058,0.27454615,0.93413514,0.22807017,0.2732622,0.9347364,0.2271469,0.27197775,0.935179,0.22686653,0.27064484,0.9355022,0.22712788,0.26506683,0.9367408,0.22859624,0.26400325,0.9367289,0.22987239,0.26374695,0.93663996,0.23052798,0.2636057,0.9362806,0.23214349,0.26382703,0.9357254,0.23412246,0.26437467,0.9352541,0.2353844,0.26531738,0.93472576,0.23642002,0.26631352,0.9341835,0.2374412,0.26699248,0.9338324,0.2380588,0.26773992,0.93348175,0.23859422,0.26833838,0.93321955,0.23894711,0.2705264,0.93235457,0.23985495,0.2723546,0.9319013,0.2395475,0.2732481,0.931964,0.23828259,0.2739332,0.9321875,0.23661579,0.27475795,0.9327002,0.23362023,0.27420735,0.9334163,0.23139653,0.2738636,0.9341929,0.22865342,0.27471596,0.93381506,0.22917359,0.27479976,0.93388516,0.22878717,0.27354282,0.93391323,0.23017476,0.27333337,0.93436337,0.22859126,0.14426634,0.98684895,0.07291338,0.14446418,0.986856,0.07242483,0.14505799,0.98701155,0.06903894,0.14460355,0.98718894,0.067437544,0.1433646,0.98749846,0.06552427,0.14206196,0.9877107,0.06516087,0.14132625,0.98784274,0.064757824,0.14062256,0.9879502,0.06465012,0.13972163,0.9880785,0.06464342,0.1391607,0.9881467,0.06480972,0.13847071,0.9882211,0.06515333,0.13819295,0.9882243,0.0656916,0.13824938,0.98816204,0.06650475,0.13866407,0.98807955,0.06686613,0.13920248,0.98797697,0.067261785,0.14024583,0.9877857,0.067900434,0.14072119,0.9876368,0.069072776,0.14043294,0.98763615,0.06966648,0.14003792,0.9875975,0.07099669,0.1407879,0.98739666,0.072295114,0.14112437,0.9872838,0.073175125,0.14150819,0.9871972,0.07360075,0.14272188,0.98703194,0.07347366,0.14379573,0.9868919,0.073260784,0.14270526,0.98760086,0.06541974,0.14074253,0.9876838,0.068353936,0.14542642,0.9851215,0.09157956,0.14539585,0.985179,0.09100784,0.1446528,0.9853976,0.089817256,0.14472015,0.98541325,0.08953644,0.14408946,0.9855506,0.08904102,0.1432291,0.98575854,0.0881222,0.1441701,0.98583025,0.08575357,0.1432931,0.98596233,0.085705094,0.1426723,0.9860422,0.08582216,0.14121418,0.9861838,0.08660238,0.13959111,0.98621464,0.0888541,0.13862567,0.98626816,0.089766786,0.13889562,0.98619413,0.09016151,0.14065504,0.9859041,0.090605274,0.14124009,0.9857865,0.090973966,0.14329174,0.98538977,0.092057206,0.14389157,0.98528314,0.092262164,0.1442624,0.98522663,0.092287034,0.14335996,0.985697,0.08859661,0.13934289,0.9861273,0.090202235,0.14021297,0.9859851,0.0904088,0.1415496,0.98712057,0.07454309,0.14085628,0.9872331,0.07436637,0.14028719,0.98732144,0.07426907,0.13966495,0.98737496,0.074728996,0.13922751,0.9873943,0.07528801,0.13882555,0.98714036,0.07925528,0.13822338,0.9872414,0.07904932,0.13786723,0.9872715,0.07929468,0.1375218,0.9872376,0.08031034,0.13764359,0.98718226,0.080779925,0.13807197,0.9870904,0.08117028,0.13824862,0.9870426,0.081450544,0.13889384,0.9868911,0.0821857,0.14018215,0.98662275,0.083213374,0.14082384,0.98649406,0.08365435,0.14160435,0.98634756,0.08406381,0.1419103,0.98630005,0.08410485,0.14344957,0.98608685,0.08399384,0.14359426,0.9861299,0.083238035,0.14341784,0.98626953,0.081876025,0.14494519,0.98609674,0.0812654,0.14565137,0.9860501,0.08056558,0.14467889,0.9862992,0.0792581,0.14465109,0.9863861,0.07822084,0.14398673,0.98653316,0.077589646,0.14388262,0.98657507,0.07724897,0.14405183,0.9866204,0.07634951,0.14308739,0.9868097,0.07571434,0.1424804,0.9869408,0.075147465,0.13906452,0.9871481,0.07873806,0.13930997,0.98731047,0.076228335,0.13919182,0.9872103,0.07772726,0.13764897,0.9874956,0.07684507,0.13775633,0.9875524,0.07591758,0.13727364,0.98771846,0.07462046,0.13680251,0.9878253,0.07406953,0.13584737,0.98797053,0.073889874,0.13495289,0.9879266,0.07608358,0.1354283,0.9877338,0.0777252,0.13559543,0.9876861,0.07803911,0.13578542,0.9876463,0.07821195,0.13657859,0.9875666,0.077836424,0.1360449,0.9853283,0.10305299,0.13706648,0.9853639,0.10134472,0.13678133,0.9854748,0.100649,0.13692069,0.9854919,0.100291826,0.13649343,0.98561025,0.09970922,0.13425608,0.9858978,0.09990419,0.13372892,0.986003,0.09957249,0.13333778,0.9860328,0.09980151,0.13289833,0.986003,0.10067839,0.13340637,0.985843,0.1015695,0.13385075,0.9856944,0.10242305,0.13358141,0.98563373,0.10335442,0.13365014,0.9855966,0.10361971,0.13457274,0.98544717,0.10384633,0.13510221,0.98541343,0.10347855,0.1353504,0.9853816,0.10345689,0.13557073,0.985345,0.10351697,0.13509373,0.98577213,0.10001472,0.13374107,0.9857578,0.10195509,0.1412577,0.9857534,0.0913045,0.14069757,0.98585284,0.091095515,0.14026408,0.98589736,0.09128175,0.13992627,0.98588896,0.09188912,0.14031637,0.98579246,0.0923282,0.13913481,0.9858247,0.09376138,0.13938117,0.9857624,0.09404974,0.14153734,0.98529863,0.095675714,0.14200366,0.9851235,0.096781105,0.1424015,0.98507077,0.09673374,0.14320771,0.9850386,0.09586709,0.14458166,0.9850236,0.09393938,0.14439961,0.98509336,0.093487196,0.14374204,0.98522735,0.09308789,0.14302929,0.9853899,0.092462726,0.14107469,0.9854195,0.09511235,0.12506726,0.98903245,0.07856808,0.12441676,0.9891343,0.07831832,0.12401703,0.989182,0.07835002,0.12396133,0.9891066,0.0793832,0.12349462,0.9891219,0.079918236,0.12377289,0.98904306,0.08046187,0.12467221,0.98881733,0.08183594,0.124744676,0.98872244,0.082865454,0.12558794,0.988502,0.08421088,0.12465801,0.98857147,0.08477497,0.12444827,0.98852336,0.085639656,0.12578996,0.98830324,0.08621839,0.12657069,0.98819757,0.086286634,0.1267734,0.9882923,0.084893055,0.127679,0.9881712,0.08494553,0.12794732,0.98816216,0.08464635,0.12784621,0.9882238,0.08407755,0.12749735,0.98832947,0.083362415,0.12884822,0.9881708,0.08316606,0.12989363,0.98805565,0.0829077,0.12985416,0.98814744,0.08186937,0.12965241,0.9882217,0.08129015,0.12895884,0.98837435,0.08053444,0.12810525,0.9885025,0.08032315,0.12708402,0.98867285,0.079847395,0.1275164,0.9887223,0.07853492,0.12731582,0.98880434,0.07782416,0.1264691,0.9889232,0.07769472,0.12560958,0.988974,0.078438975,0.12397699,0.98912615,0.07911461,0.12859419,0.98774254,0.08847719,0.12606975,0.98800296,0.0891998,0.12597655,0.98799545,0.089414455,0.12741265,0.9876515,0.09116201,0.12849253,0.9874243,0.09210264,0.12831578,0.98741895,0.092406355,0.1284172,0.98733634,0.09314515,0.12926574,0.9871743,0.09368767,0.13014321,0.9870999,0.09325561,0.13084975,0.987039,0.09290987,0.1312957,0.9869645,0.0930721,0.131834,0.9870017,0.0919099,0.13319966,0.9868651,0.0914066,0.13441269,0.9866783,0.091647156,0.13481215,0.98665303,0.09133165,0.13543342,0.98666567,0.09026985,0.13577142,0.9867529,0.08879643,0.1356104,0.98701173,0.086126156,0.1352451,0.9871147,0.08551775,0.13465707,0.98719126,0.08556226,0.13232042,0.98744935,0.08622678,0.13043195,0.98768353,0.08642185,0.1295318,0.9877678,0.086811855,0.13045333,0.9870888,0.092938796,0.13082002,0.9892636,0.065143175,0.13076176,0.9892961,0.06476576,0.130283,0.98939896,0.06415683,0.13004375,0.9894353,0.06408144,0.12962063,0.9894938,0.06403556,0.12809595,0.9895735,0.065846734,0.12769334,0.98954225,0.06708604,0.12789997,0.9894737,0.06770113,0.12868938,0.98942256,0.066947974,0.12889363,0.98939186,0.06700845,0.12915656,0.98935646,0.06702549,0.12989092,0.989295,0.066511564,0.12259065,0.989564,0.07572709,0.123321116,0.98967385,0.073058486,0.12299506,0.98972875,0.0728642,0.12239919,0.98983943,0.072362185,0.12178654,0.9899107,0.07242138,0.12072287,0.98984575,0.075042345,0.12098003,0.9897688,0.07564089,0.12164727,0.989646,0.076175764,0.12197898,0.9895809,0.07648976,0.12216133,0.9895522,0.07657045,0.12243771,0.9895148,0.07661207,0.17906058,0.98380846,-0.0076320563,0.1788599,0.98383886,-0.008383182,0.17849211,0.98389906,-0.009124062,0.17788658,0.9840021,-0.009805506,0.1770527,0.98414576,-0.010463151,0.1764475,0.9842473,-0.011112003,0.17490277,0.98451704,-0.011626616,0.17433791,0.98462874,-0.010606589,0.17352995,0.98479724,-0.007858026,0.17274246,0.98494524,-0.0065558935,0.17266852,0.98496586,-0.0052813906,0.1727487,0.98495656,-0.0043002516,0.17308044,0.9849007,-0.0037140683,0.17393593,0.9847516,-0.0032495877,0.17524824,0.98451823,-0.0034447236,0.17642404,0.98430514,-0.004238605,0.17717013,0.98416644,-0.005207519,0.17893904,0.9838371,-0.006729373,0.15529887,0.987862,-0.003315016,0.15394214,0.9880709,-0.0042117704,0.15321197,0.98818547,-0.0039526727,0.1529724,0.988226,-0.0029612214,0.15274909,0.988265,-0.00018641342,0.1534909,0.98815,0.00026475897,0.15386991,0.9880911,0.00021636418,0.15448394,0.9879953,0.00006529611,0.17616796,0.9608694,-0.21376371,0.17343156,0.9612591,-0.21424852,0.17275734,0.96150374,-0.2136948,0.1713307,0.9620649,-0.2123132,0.17095934,0.96226233,-0.21171717,0.17075787,0.96242076,-0.21115889,0.17087285,0.9625246,-0.2105918,0.17112535,0.9625678,-0.21018885,0.1728194,0.9625332,-0.20895787,0.1733088,0.9624895,-0.20875366,0.173918,0.9623923,-0.2086951,0.17481777,0.96214324,-0.2090913,0.17645098,0.96128374,-0.21165681,0.17649998,0.96088403,-0.21342364,0.16956286,0.96054435,-0.22046077,0.17006817,0.9607593,-0.21913104,0.17083734,0.96085143,-0.21812645,0.1718988,0.96079946,-0.21752058,0.17363873,0.96064293,-0.21682896,0.1740517,0.96066517,-0.21639886,0.17456026,0.9606138,-0.21621726,0.17530407,0.96044713,-0.21635574,0.17625174,0.9601842,-0.21675235,0.1824271,0.95860887,-0.21860786,0.18341869,0.95856446,-0.21797194,0.18455677,0.9584508,-0.21751066,0.18493828,0.958099,-0.21873294,0.18440495,0.958099,-0.21918273,0.18394849,0.95813,-0.2194308,0.18175656,0.95849866,-0.2196472,0.17919376,0.95826876,-0.22273444,0.17839389,0.9578768,-0.22505026,0.17660488,0.9577306,-0.22707452,0.17604242,0.9575859,-0.22811927,0.17506202,0.9575881,-0.22886331,0.17412876,0.95754534,-0.22975238,0.17295635,0.9574241,-0.23113884,0.17180799,0.9574772,-0.23177435,0.17149632,0.95755345,-0.23169044,0.16949189,0.95861566,-0.22875415,0.16908628,0.95892304,-0.22776403,0.16887382,0.95915985,-0.22692297,0.16926968,0.9603087,-0.22170942,0.18025388,0.9585518,-0.22065115,0.18129343,0.95873547,-0.21899554,0.1785302,0.9594575,-0.21810153,0.17961204,0.9591391,-0.21861315,0.1805417,0.95858145,-0.22028677,0.17611688,0.96762985,-0.18076314,0.17515221,0.96775126,-0.1810503,0.17458701,0.9678778,-0.18091972,0.17372338,0.96824336,-0.17979155,0.17216116,0.9686073,-0.17933334,0.17205673,0.9686941,-0.17896432,0.17170231,0.9691417,-0.17686914,0.17107356,0.96943885,-0.17584686,0.17079572,0.9696388,-0.17501251,0.17198886,0.9693009,-0.17571431,0.1727647,0.96905863,-0.17628863,0.17368764,0.9687413,-0.17712408,0.17430031,0.96848094,-0.1779441,0.17546976,0.9681295,-0.17870548,0.17601328,0.96798676,-0.17894393,0.17695227,0.96766317,-0.17976616,0.1719411,0.9689915,-0.17745908,0.17420107,0.968087,-0.18017094,0.19238909,0.9607066,-0.20007332,0.19179223,0.96084505,-0.19998133,0.19074936,0.9611893,-0.19932327,0.19029404,0.9616951,-0.19730887,0.19017436,0.9623126,-0.1943918,0.19059682,0.9624712,-0.19318919,0.19115408,0.9622261,-0.19385837,0.19125712,0.96212137,-0.19427598,0.19131345,0.9618437,-0.19559085,0.1917619,0.9615475,-0.19660556,0.19212101,0.96091986,-0.1993051,0.38335213,0.8200782,-0.42486805,0.3834079,0.8202523,-0.42448157,0.38502893,0.82111955,-0.4213258,0.3856048,0.82078135,-0.4214581,0.3878232,0.81931233,-0.4222801,0.38834864,0.81915885,-0.42209494,0.39021537,0.8180595,-0.4225051,0.3915002,0.81705004,-0.42326918,0.39116374,0.8170682,-0.42354515,0.38899344,0.8174046,-0.4248926,0.3896434,0.815666,-0.42762947,0.38909733,0.8157666,-0.42793474,0.38826135,0.81610656,-0.42804587,0.38716105,0.8166371,-0.42803055,0.38611636,0.81703436,-0.42821607,0.3855766,0.8173531,-0.42809418,0.383166,0.8190611,-0.42699268,0.38194177,0.8194877,-0.42727083,0.38194287,0.8197528,-0.42676112,0.38305506,0.81968546,-0.4258927,0.38462135,0.8181585,-0.4274144,0.38900077,0.81788254,-0.42396528,0.06710372,0.93710804,-0.34252822,0.065371096,0.9371631,-0.3427126,0.065038726,0.9372888,-0.34243196,0.06484957,0.93745655,-0.3420085,0.06431393,0.93809927,-0.34034324,0.064010546,0.93830955,-0.33982024,0.06347299,0.9383676,-0.33976084,0.06322242,0.9386868,-0.33892488,0.06322687,0.9388304,-0.33852607,0.06341778,0.93898994,-0.3380475,0.06896695,0.93978614,-0.3347321,0.06993527,0.93974274,-0.334653,0.07084731,0.9395427,-0.3350226,0.07224055,0.9391007,-0.33596316,0.072635196,0.9389325,-0.33634794,0.072907895,0.938715,-0.33689553,0.07277687,0.93861127,-0.3372128,0.0719171,0.9383473,-0.33813062,0.07123202,0.9379696,-0.3393214,0.07018708,0.9376729,-0.34035757,0.1402087,0.85570836,-0.4981011,0.13708898,0.85613716,-0.4982326,0.13635309,0.85690427,-0.4971146,0.13607244,0.85817426,-0.4949962,0.13612737,0.85914874,-0.49328768,0.13658069,0.85919887,-0.49307504,0.13982417,0.85803074,-0.49419877,0.14396523,0.8573024,-0.49427372,0.14409491,0.85691875,-0.49490088,0.14713317,0.8539222,-0.49916804,0.14869836,0.85335934,-0.49966648,0.14879766,0.85306066,-0.5001468,0.14875413,0.8528649,-0.50049335,0.14860812,0.8527256,-0.500774,0.14336668,0.8548553,-0.4986667,0.14411856,0.856535,-0.4955578,0.14516857,0.85535103,-0.4972934,0.14678174,0.8535814,-0.49985382,0.1334941,0.81607795,-0.56231314,0.13296609,0.81753767,-0.5603143,0.13345186,0.8182271,-0.5591914,0.13569987,0.82157063,-0.55372125,0.1350202,0.8222628,-0.55285925,0.13559523,0.82238215,-0.55254096,0.13820432,0.822655,-0.5514873,0.13933067,0.82221293,-0.55186313,0.14013906,0.8220897,-0.55184203,0.13817954,0.82105434,-0.5538738,0.13764897,0.8205081,-0.5548145,0.13769755,0.81991774,-0.5556746,0.13749331,0.8194559,-0.5564059,0.1367426,0.8185161,-0.55797213,0.13606097,0.8177938,-0.55919653,0.13559413,0.8175279,-0.5596985,0.13483112,0.81741494,-0.5600477,0.13446485,0.816819,-0.56100434,0.13426575,0.8186502,-0.5583767,0.13578722,0.8208047,-0.55483466,0.13481133,0.8192082,-0.55742604,0.27870926,0.7577663,-0.5900097,0.27747476,0.758271,-0.58994305,0.27707258,0.7586792,-0.58960724,0.2766768,0.76004606,-0.5880306,0.27529266,0.76115817,-0.5872412,0.27476487,0.7618817,-0.58654964,0.2754358,0.7620688,-0.5859917,0.2791168,0.7590511,-0.5881626,0.27962932,0.7580665,-0.5891881,0.25428188,0.77310777,-0.5810724,0.25375107,0.77337146,-0.58095354,0.25245517,0.77440614,-0.5801392,0.2519156,0.7754182,-0.5790208,0.25214556,0.77560115,-0.5786756,0.25293338,0.77562916,-0.5782942,0.25500366,0.77477586,-0.57852876,0.25574777,0.7741926,-0.57898104,0.2556237,0.7738639,-0.5794749,0.25465542,0.7731661,-0.58083105,0.2624621,0.76830643,-0.583797,0.2606017,0.769424,-0.58315814,0.25852937,0.7710887,-0.58188033,0.25737223,0.7722822,-0.58080953,0.2565349,0.7735227,-0.57952785,0.25624704,0.7746341,-0.57816905,0.25728962,0.77446914,-0.577927,0.25886998,0.7736648,-0.5782985,0.26111615,0.77142936,-0.58027154,0.2625061,0.77052134,-0.5808506,0.26517808,0.77016765,-0.5801055,0.26668683,0.7693244,-0.5805326,0.2677588,0.76937556,-0.5799711,0.26818153,0.76900417,-0.58026826,0.26798666,0.76842636,-0.58112305,0.26864973,0.767105,-0.58256096,0.2683732,0.76673037,-0.58318126,0.26737925,0.7665071,-0.5839308,0.2666486,0.76691633,-0.58372754,0.2644817,0.7680292,-0.5832499,0.2655846,0.76767546,-0.5832145,0.28796637,0.7523031,-0.59254986,0.28630674,0.75307184,-0.59237766,0.28586182,0.75347257,-0.59208286,0.28609207,0.75361997,-0.59178406,0.2868451,0.75361437,-0.5914265,0.28761813,0.75278413,-0.59210795,0.28898844,0.75209874,-0.5923117,0.28899825,0.7519055,-0.5925522,0.28865823,0.75171053,-0.5929652,0.2615017,0.77506137,-0.57523626,0.26052147,0.77518624,-0.5755127,0.26030236,0.7754446,-0.57526374,0.26007888,0.7761619,-0.5743967,0.26065698,0.7764257,-0.57377785,0.2617873,0.77619576,-0.57357436,0.261873,0.77571195,-0.5741894,0.26176068,0.7753558,-0.5747214,0.30494237,0.73970276,-0.599875,0.30411515,0.7403699,-0.59947175,0.30407602,0.740907,-0.59882766,0.30445904,0.7407696,-0.598803,0.30554208,0.73995906,-0.59925336,0.30541936,0.7397893,-0.59952545,0.32339618,0.7288146,-0.6035265,0.320773,0.73012847,-0.6033383,0.31629395,0.7330439,-0.6021668,0.3168561,0.7330584,-0.60185355,0.31777588,0.73266697,-0.60184515,0.31967026,0.73153204,-0.6022224,0.3223913,0.72979236,-0.6028822,0.32405666,0.72959775,-0.60222447,0.3241155,0.7293127,-0.60253805,0.32403675,0.72882915,-0.6031652,0.35475162,0.71436715,-0.603184,0.35286456,0.71498585,-0.60355765,0.34991637,0.71670556,-0.60323435,0.34892538,0.7171838,-0.60323995,0.34767705,0.717511,-0.6035716,0.3456962,0.7185294,-0.6034978,0.34478664,0.7194889,-0.60287464,0.34021604,0.7218634,-0.60263276,0.34233418,0.7219224,-0.6013613,0.34283397,0.7217643,-0.60126626,0.34758705,0.7196055,-0.6011249,0.35024777,0.7178356,-0.6016964,0.35184553,0.7173946,-0.60129005,0.3557049,0.7143916,-0.60259336,0.36636662,0.71101576,-0.6001933,0.3643207,0.7110937,-0.6013453,0.36358505,0.7115687,-0.60122865,0.3636154,0.71219176,-0.60047215,0.3631082,0.71271086,-0.6001631,0.36290565,0.71308017,-0.5998467,0.3628976,0.7133728,-0.5995035,0.3632052,0.7135741,-0.5990776,0.3639327,0.713503,-0.5987206,0.36515138,0.7130628,-0.598503,0.37240723,0.7103341,-0.59727573,0.37259957,0.71175313,-0.59546375,0.3729838,0.7118213,-0.59514153,0.37406537,0.71080303,-0.5956795,0.37442338,0.7098859,-0.5965477,0.37586212,0.7094566,-0.59615344,0.37766847,0.7082538,-0.596442,0.37891266,0.70787704,-0.59610003,0.38101545,0.7064303,-0.5964758,0.38352212,0.70532805,-0.59617376,0.38507617,0.7042156,-0.596487,0.38590595,0.7029396,-0.597455,0.38829467,0.7017269,-0.59733284,0.3890707,0.70107216,-0.59759676,0.39017278,0.69971687,-0.598466,0.38722804,0.7012981,-0.59852767,0.38594094,0.7015757,-0.5990335,0.38404474,0.7031172,-0.5984445,0.3803584,0.70507425,-0.59849626,0.3795362,0.7057055,-0.5982742,0.37843496,0.70682466,-0.59765023,0.37723902,0.70659554,-0.59867644,0.37567464,0.70698804,-0.59919655,0.37054992,0.70977783,-0.59908944,0.36875895,0.71015054,-0.5997525,0.36947542,0.7105836,-0.5987978,0.3741953,0.70797217,-0.59896016,0.37166083,0.71028614,-0.5977975,0.3790239,0.7064243,-0.5977504,0.3964882,0.69143486,-0.60391635,0.3941376,0.6921954,-0.6045833,0.39413026,0.69251025,-0.6042275,0.39454973,0.69290483,-0.6035009,0.39699763,0.69230676,-0.6025813,0.39719316,0.6921056,-0.60268354,0.39762026,0.691393,-0.60321957,0.3969963,0.69108874,-0.60397875,0.39567396,0.6999701,-0.5945451,0.39671525,0.70088005,-0.59277666,0.3976859,0.70091105,-0.5920892,0.40101355,0.6980736,-0.5931958,0.4016976,0.69777274,-0.593087,0.40247342,0.6970777,-0.5933783,0.40372497,0.69627625,-0.5934691,0.40437678,0.69555587,-0.59386986,0.40572244,0.69464666,-0.59401625,0.40872094,0.6930357,-0.59384227,0.4095046,0.69227356,-0.59419125,0.4098709,0.69134986,-0.5950136,0.4091535,0.6904356,-0.59656703,0.40759954,0.6927113,-0.5949905,0.40507576,0.69391376,-0.5953128,0.40309706,0.6952576,-0.5950879,0.39863014,0.69802356,-0.5948589,0.39726654,0.69817734,-0.59559023,0.3951679,0.69936,-0.5955988,0.39434606,0.69934726,-0.5961582,0.39336678,0.7001673,-0.59584254,0.40243837,0.69595927,-0.59471345,0.3994137,0.6977398,-0.5946662,0.2476153,0.9629415,-0.10691226,0.24681953,0.9631646,-0.10674292,0.24638063,0.9633548,-0.10603807,0.24639812,0.9635352,-0.104345046,0.24686795,0.9638585,-0.10016474,0.2473486,0.96375513,-0.099973574,0.2478564,0.9636129,-0.10008691,0.2501133,0.96299255,-0.1004424,0.25037178,0.9630419,-0.09931882,0.25058237,0.96301365,-0.09906142,0.2509357,0.962942,-0.0988635,0.25194559,0.9625639,-0.09997093,0.25231028,0.96230936,-0.10149003,0.25283846,0.96204305,-0.10269315,0.25293967,0.9619621,-0.10320116,0.25266185,0.9617177,-0.10611805,0.25248665,0.9617553,-0.10619434,0.25072595,0.9622029,-0.106311396,0.24967389,0.96240455,-0.106960006,0.24903005,0.96256274,-0.107037514,0.24826904,0.9627726,-0.10691753,0.24960239,0.96310985,-0.10058867,0.2484906,0.96342635,-0.10031,0.17518312,0.9836194,0.042470083,0.17449331,0.983732,0.04270171,0.17419523,0.9837739,0.0429527,0.17445104,0.9837121,0.043328814,0.1747845,0.9836521,0.043345857,0.17562754,0.9835045,0.043288738,0.17641032,0.9833992,0.042490415,0.17655936,0.98339593,0.04194345,0.17742084,0.9832339,0.042105626,0.17760347,0.9832215,0.041623306,0.17794494,0.983261,0.03915965,0.17754066,0.98333246,0.039199512,0.17686726,0.9834352,0.039663676,0.174787,0.9837072,0.042067897,0.15679197,0.98716986,0.030197531,0.1566482,0.98727024,0.02754615,0.15646286,0.9873251,0.026618714,0.15622637,0.9873658,0.026498483,0.15548557,0.9874901,0.026220461,0.15504147,0.9875509,0.026558565,0.15438291,0.98762107,0.027759394,0.1543439,0.9875798,0.029394154,0.15491077,0.9874788,0.029803466,0.15611602,0.98727053,0.03040913,0.15635853,0.9872332,0.030373665,0.27445823,0.9571299,0.092601895,0.27470967,0.9571881,0.09124439,0.27391052,0.95744455,0.09095615,0.2729202,0.957738,0.09084375,0.27175584,0.9580333,0.09121883,0.27112898,0.9581839,0.09150228,0.26974112,0.95856035,0.091661185,0.2691176,0.9587105,0.091923356,0.26851285,0.95884055,0.09233455,0.26821736,0.9588911,0.0926677,0.267828,0.9587088,0.095632695,0.2680098,0.95854527,0.09675583,0.26909077,0.95811975,0.09796283,0.27125162,0.95744205,0.098627,0.27205914,0.95716417,0.09909864,0.2726322,0.9569485,0.09960538,0.27327463,0.956735,0.099895544,0.27422756,0.95649415,0.09959,0.27406228,0.95659155,0.099108264,0.27455747,0.95653147,0.09831478,0.27464116,0.9565498,0.09790134,0.274367,0.9569131,0.0950793,0.2743998,0.9567883,0.09623364,0.29670727,0.9525653,0.06770652,0.29711962,0.9526151,0.065149225,0.2970065,0.9527068,0.064318925,0.29589278,0.9531509,0.06285493,0.2956542,0.95328027,0.062010486,0.29481366,0.95362467,0.06070352,0.29444423,0.95373946,0.060692836,0.29356822,0.9539958,0.06090672,0.29172254,0.95440304,0.06334698,0.29153907,0.95440125,0.0642126,0.2923779,0.95405895,0.065472975,0.29352835,0.95364416,0.06636241,0.29416066,0.95339733,0.067104295,0.29506254,0.95300883,0.06864626,0.29581022,0.9527518,0.06899453,0.29616606,0.952649,0.06888755,0.29215443,0.9548163,0.054513384,0.29203746,0.9548745,0.054118235,0.29129475,0.95511997,0.05378908,0.28884915,0.9558887,0.053319648,0.28767142,0.9562185,0.05377129,0.28670806,0.9565016,0.053881045,0.285612,0.95678484,0.054668084,0.288423,0.9557534,0.057858605,0.28907862,0.9555398,0.058114167,0.28990996,0.955296,0.05798112,0.2909484,0.95502824,0.05718431,0.24939631,0.9677944,0.034285594,0.24778152,0.9682159,0.034093305,0.2477311,0.9682065,0.03471988,0.2479284,0.9681376,0.035228964,0.24855709,0.96797264,0.03533169,0.24940115,0.96774006,0.03575182,0.24857746,0.96793497,0.03620989,0.24983685,0.96756786,0.03733577,0.25033125,0.9674427,0.037268743,0.25050536,0.9674047,0.03708392,0.25125623,0.96721864,0.036856856,0.25142407,0.9671814,0.03668932,0.25092593,0.96734077,0.035888344,0.25185144,0.96710277,0.03582098,0.252159,0.96703315,0.03553508,0.2506342,0.96744895,0.03500088,0.25074595,0.9674401,0.03444022,0.25057772,0.9674912,0.03422871,0.24996063,0.9676518,0.034201268,0.24940455,0.967753,0.03537757,0.29925588,0.9390072,0.16944419,0.29846275,0.93930316,0.16920274,0.29789904,0.93946797,0.16928124,0.2963858,0.93982893,0.16993232,0.29452756,0.9403377,0.17034826,0.2923169,0.94086313,0.17125227,0.29126054,0.94117,0.17136636,0.29007515,0.9415349,0.17137247,0.28901017,0.94183284,0.17153439,0.28728047,0.9422745,0.17201363,0.2868297,0.9424111,0.17201748,0.28663513,0.9424385,0.17219186,0.2864523,0.94225025,0.17352103,0.28713056,0.9418205,0.17472899,0.28706178,0.94176924,0.17511784,0.28722554,0.9415782,0.17587471,0.2878024,0.9412753,0.17655182,0.28965276,0.9406184,0.17702647,0.2901394,0.94046146,0.17706317,0.29080468,0.940217,0.17726989,0.2914653,0.93999684,0.1773525,0.29452926,0.93905085,0.17730188,0.2948209,0.93899405,0.17711823,0.29471004,0.9392257,0.17607139,0.29542172,0.9390848,0.1756293,0.29588097,0.93903685,0.17511222,0.29789627,0.93843794,0.17490578,0.29862478,0.9381226,0.17535472,0.29905283,0.9380163,0.17519367,0.29953024,0.9379265,0.17485881,0.29994825,0.9378626,0.17448439,0.3002541,0.93787056,0.1739145,0.30029273,0.93799204,0.17319122,0.30128148,0.9378144,0.1724344,0.3012233,0.9379814,0.17162563,0.30140993,0.9380458,0.17094482,0.3005545,0.93845505,0.17020316,0.29659244,0.9388914,0.17468792,0.29467678,0.9391589,0.17648251,0.20330061,0.8209862,0.5335265,0.20014432,0.8186639,0.5382673,0.1974005,0.8187162,0.53920007,0.19631961,0.8183623,0.5401312,0.19656089,0.8174513,0.54142153,0.19686645,0.8166415,0.5425313,0.19609492,0.81456953,0.545915,0.19503425,0.81370157,0.5475869,0.1954728,0.8135787,0.5476131,0.19821064,0.81344587,0.5468257,0.2009825,0.8133115,0.54601324,0.20539747,0.81316817,0.54458183,0.20998849,0.81301737,0.5430539,0.21473974,0.81286156,0.5414268,0.21986791,0.81269276,0.5396189,0.22521672,0.8125934,0.53755873,0.20707452,0.82022935,0.5332391,0.20496082,0.81824476,0.5370909,0.20370644,0.8186213,0.5369943,0.2027601,0.81870794,0.5372203,0.2029265,0.8214681,0.5329268,0.20765013,0.81850284,0.53566265,0.20184822,0.8189755,0.5371558,0.20108686,0.8191007,0.5372505,0.196621,0.81546974,0.5443798,0.2020288,0.82017815,0.5352496,0.2060113,0.8181766,0.5367926,0.3845602,0.71973807,0.5780057,0.3827956,0.7164874,0.58319235,0.38150138,0.7162924,0.58427894,0.37934822,0.7143874,0.5880013,0.3773239,0.7120727,0.5920972,0.37813395,0.7114178,0.59236765,0.3788979,0.71114403,0.59220815,0.38035616,0.71152323,0.59081626,0.3819336,0.7113902,0.5899582,0.38573256,0.70950645,0.5897551,0.38666326,0.70921093,0.5895009,0.39277765,0.7023842,0.5936179,0.3926283,0.70211357,0.5940367,0.39279523,0.70157695,0.59456015,0.3957384,0.70007724,0.59437615,0.3970058,0.6996499,0.594034,0.39868125,0.6995086,0.59307754,0.40013397,0.69996035,0.59156424,0.40148252,0.70138747,0.5889545,0.402143,0.7036636,0.58578026,0.40568805,0.7049262,0.58180434,0.4078636,0.7046668,0.5805962,0.40787908,0.7058263,0.57917523,0.40934327,0.70684034,0.5769011,0.4096373,0.70832115,0.5748725,0.41271052,0.70798063,0.5730912,0.41337773,0.7075953,0.5730862,0.41429064,0.70717245,0.5729489,0.41594988,0.7074869,0.57135624,0.4177293,0.70742726,0.5701306,0.41906554,0.70791316,0.5685446,0.41876802,0.70899576,0.5674137,0.41840786,0.7099681,0.5664628,0.41850814,0.7108456,0.5652871,0.41844288,0.711947,0.5639477,0.41669223,0.7124334,0.56462926,0.41517082,0.712721,0.56538653,0.4140144,0.71267617,0.5662904,0.41330317,0.7123216,0.5672552,0.41304988,0.71167886,0.56824553,0.41105095,0.7120458,0.5692345,0.4103197,0.7118956,0.5699495,0.4008157,0.7157046,0.5719385,0.3854409,0.7186978,0.5787131,0.38789323,0.70942116,0.588439,0.39275974,0.70315295,0.5927189,0.40406615,0.70472246,0.58317816,0.40896443,0.7109331,0.57212085,0.40500915,0.7126008,0.5728592,0.38418645,0.71737206,0.5811868,0.41166598,0.7083645,0.573368,0.3920617,0.70596814,0.5898276,0.40681714,0.7114573,0.5729994,0.39144534,0.7068783,0.5891465,0.41045973,0.708578,0.5739687,0.39017928,0.7083109,0.588265,0.40792137,0.7109996,0.57278246,0.20933081,0.7605105,0.6146579,0.20959438,0.76052827,0.6145462,0.20943719,0.7608607,0.6141881,0.20888229,0.7616935,0.6133443,0.20599668,0.7633205,0.6122966,0.20546602,0.76399785,0.6116298,0.2054561,0.764259,0.61130685,0.20513636,0.7646891,0.61087614,0.20454611,0.7649483,0.61074954,0.20264149,0.76525664,0.6109981,0.2017636,0.7652616,0.6112823,0.20096846,0.7656488,0.6110594,0.19972067,0.7659633,0.6110743,0.19953755,0.76612604,0.61093014,0.1990282,0.76640254,0.6107494,0.19878852,0.7664398,0.6107808,0.1987048,0.7662717,0.6110189,0.19638157,0.76611835,0.61196154,0.19569497,0.76668113,0.61147654,0.19481665,0.7671738,0.6111389,0.19360884,0.76780814,0.610726,0.19473954,0.7682115,0.6098587,0.19486609,0.76862705,0.6092944,0.19442576,0.76938426,0.6084788,0.1942011,0.7694796,0.6084301,0.19136135,0.7688952,0.61006635,0.18806669,0.77027196,0.6093538,0.18609679,0.7706924,0.6094269,0.18498284,0.77081406,0.60961217,0.18491547,0.7706745,0.6098091,0.1856718,0.76990336,0.61055285,0.18684489,0.7689502,0.61139554,0.1860236,0.7683053,0.61245584,0.18551064,0.7681351,0.61282486,0.18494959,0.7678032,0.61341006,0.18313524,0.7674105,0.614445,0.18148391,0.76882386,0.61316675,0.17965005,0.76990336,0.6123517,0.17939381,0.77014476,0.61212325,0.17891699,0.7702002,0.61219305,0.17840385,0.77143586,0.61078537,0.17912756,0.77163,0.6103282,0.1793045,0.7718121,0.6100459,0.17935076,0.77208674,0.60968465,0.17952088,0.7724414,0.60918516,0.17940016,0.77256906,0.6090588,0.17870395,0.77297044,0.6087542,0.17774835,0.7733493,0.6085527,0.17555074,0.77306503,0.60955095,0.17498918,0.77286226,0.60996944,0.17454512,0.7731261,0.60976225,0.17414682,0.77351135,0.60938746,0.17354159,0.7735848,0.60946685,0.17262974,0.7739363,0.60927963,0.17157303,0.7742788,0.60914284,0.17061846,0.7743802,0.609282,0.16854158,0.7748766,0.60922897,0.16779546,0.77490354,0.6094007,0.16623533,0.7758593,0.6086117,0.1657699,0.7766904,0.6076778,0.16424148,0.7770676,0.60761064,0.16276343,0.7773036,0.60770655,0.16270338,0.7771835,0.6078762,0.16225721,0.77562106,0.6099873,0.16134518,0.7755947,0.6102627,0.16127586,0.77541125,0.61051416,0.15927045,0.77555704,0.6108553,0.15917741,0.7762087,0.61005133,0.15885958,0.7762511,0.6100802,0.15835729,0.77665067,0.6097021,0.15807582,0.77707946,0.6092287,0.1576136,0.7772543,0.60912544,0.15606913,0.7774344,0.60929316,0.15552464,0.7775609,0.60927105,0.15516402,0.77746975,0.6094792,0.15496546,0.7771663,0.60991657,0.15523496,0.7768922,0.6101972,0.15559408,0.7766249,0.610446,0.15655072,0.7762012,0.61074024,0.1565169,0.7760324,0.6109633,0.15485701,0.77561945,0.61191,0.15385924,0.7751954,0.61269844,0.15288134,0.7749569,0.61324483,0.15194125,0.7745172,0.6140334,0.14997064,0.7740226,0.6151405,0.14845496,0.77389145,0.6156729,0.148168,0.77376086,0.6159062,0.14708094,0.77283686,0.6173252,0.14675604,0.7729742,0.61723053,0.14642619,0.7728601,0.6174517,0.14576408,0.7724722,0.61809343,0.14541957,0.772476,0.6181698,0.14501306,0.7717411,0.61918247,0.14329311,0.77151775,0.6198609,0.14318784,0.77113646,0.62035936,0.14274834,0.7705849,0.6211456,0.14189424,0.7707603,0.6211237,0.14075325,0.7708575,0.6212626,0.13944429,0.77048063,0.6220249,0.13851549,0.77043986,0.6222828,0.13759483,0.7699545,0.6230872,0.13679202,0.76910114,0.6243167,0.13640833,0.7683473,0.62532806,0.1361684,0.7680761,0.62571335,0.1354837,0.7687846,0.62499154,0.13474582,0.76926994,0.6245537,0.13424674,0.7695215,0.6243513,0.13385816,0.769522,0.62443405,0.13378194,0.76941913,0.62457716,0.13387425,0.7690488,0.6250133,0.13444507,0.76843345,0.62564725,0.13506639,0.7680134,0.62602913,0.13522711,0.76770276,0.6263754,0.13564676,0.7671373,0.6269772,0.13655493,0.7665191,0.62753576,0.13785993,0.7660285,0.62784946,0.1395226,0.76439357,0.6294727,0.13930666,0.76413476,0.6298347,0.13915437,0.76379764,0.6302771,0.13867092,0.7631157,0.631209,0.13894136,0.7628171,0.6315104,0.14096722,0.7612538,0.6329462,0.1421395,0.7599663,0.6342299,0.1428192,0.75943595,0.6347122,0.1436992,0.75888735,0.6351697,0.14453377,0.7584682,0.6354809,0.1470723,0.75768006,0.63583857,0.14867382,0.75651985,0.6368467,0.14978504,0.75598675,0.6372193,0.15183394,0.75480235,0.6381378,0.15212177,0.7544529,0.63848245,0.15262988,0.7542005,0.63865924,0.15673374,0.7525984,0.6395547,0.15738773,0.7520347,0.6400569,0.15772742,0.75195324,0.640069,0.15956733,0.75117695,0.6405244,0.16052797,0.7501398,0.6414991,0.16217983,0.74986356,0.6414065,0.16417633,0.7498365,0.64093006,0.16475567,0.7502987,0.6402402,0.16536902,0.7504057,0.6399565,0.16613773,0.7502649,0.6399226,0.16771871,0.750102,0.63970107,0.1685898,0.75211614,0.6371018,0.16971803,0.7520858,0.6368381,0.16980284,0.75273365,0.63604957,0.17145118,0.7543583,0.6336782,0.17177352,0.75409424,0.6339052,0.17218629,0.75411546,0.6337679,0.17440194,0.75422126,0.6330358,0.17682296,0.753407,0.6333337,0.17803541,0.7531094,0.6333479,0.17939588,0.7531554,0.6329092,0.18235593,0.75189483,0.63356173,0.18420413,0.7517178,0.633237,0.18584028,0.7517128,0.6327648,0.18624267,0.7520937,0.63219357,0.18825865,0.75220656,0.6314618,0.1896694,0.75165826,0.63169247,0.19028614,0.7515177,0.6316742,0.19167003,0.7513069,0.63150656,0.19247787,0.7503522,0.6323953,0.1928359,0.7500975,0.6325884,0.19441664,0.753115,0.6285061,0.19567615,0.752907,0.6283645,0.19777153,0.7527342,0.6279154,0.19927962,0.7528958,0.6272444,0.20055069,0.7534272,0.6262004,0.20117836,0.7538916,0.6254397,0.20168106,0.75437903,0.6246896,0.20203924,0.7548465,0.6240088,0.20313828,0.7551276,0.62331146,0.20340255,0.7554549,0.6228285,0.20333754,0.75607437,0.62209755,0.20319337,0.7567645,0.62130505,0.20342647,0.75764894,0.62014973,0.20530348,0.7585465,0.6184317,0.20538495,0.75886124,0.6180183,0.20562477,0.7591681,0.6175615,0.20614739,0.7595108,0.61696565,0.20659336,0.76000565,0.61620665,0.2071459,0.7603091,0.61564654,0.2080146,0.7602753,0.6153953,0.20878074,0.7603378,0.6150585,0.20224729,0.76507944,0.61135054,0.19417717,0.76734877,0.6111228,0.1868947,0.7686958,0.61170024,0.16674607,0.7754489,0.60899484,0.1630285,0.7763462,0.60885817,0.16102882,0.7751464,0.61091554,0.14782603,0.7729212,0.6170415,0.14748348,0.77274543,0.6173436,0.14612731,0.77258205,0.61787033,0.14298032,0.77069354,0.6209574,0.14017819,0.7706148,0.6216936,0.15050577,0.75582445,0.637242,0.15117663,0.7554052,0.6375803,0.15873435,0.75158685,0.6402504,0.16764809,0.7509406,0.63873494,0.16954741,0.75452554,0.63399124,0.1705466,0.7546849,0.63353336,0.1787278,0.7531666,0.63308483,0.19107327,0.7514289,0.63154227,0.19289184,0.750998,0.631502,0.20179394,0.75469506,0.6242713,0.19378947,0.7692237,0.6088847,0.1845366,0.76734495,0.61410743,0.17818643,0.7704475,0.61209494,0.16731206,0.77507424,0.60931647,0.16309622,0.7758986,0.60941046,0.13878872,0.7655451,0.6282343,0.13957538,0.76244,0.6318258,0.14016783,0.76198715,0.6322409,0.14567617,0.75848097,0.63520473,0.1538089,0.75424755,0.6383208,0.15559636,0.7532961,0.63901085,0.16827947,0.7518094,0.63754576,0.17271939,0.75429565,0.63340825,0.18683428,0.752416,0.6316353,0.1933519,0.7521936,0.6299363,0.19846316,0.766034,0.61139536,0.19280708,0.76899874,0.60948044,0.1780649,0.77112126,0.61128134,0.1396163,0.76466775,0.62911886,0.17332745,0.75441206,0.63310355,0.19186248,0.7688952,0.60990894,0.1778571,0.77077717,0.61177564,0.1598248,0.77530414,0.61103153,0.13955785,0.76487416,0.6288808,0.18757203,0.75237167,0.6314694,0.20325492,0.75727504,0.6206625,0.19740984,0.7657332,0.61211276,0.19375551,0.7676072,0.61093205,0.1697244,0.7547224,0.63370955,0.19391397,0.7528868,0.62893474,0.16058095,0.77510655,0.6110839,0.19689931,0.76585704,0.6121223,0.18366659,0.7671892,0.61456275,0.18411297,0.7671367,0.6144947,0.109552756,0.73844266,0.66535753,0.11173235,0.7375628,0.6659707,0.11200082,0.73767847,0.6657975,0.11319958,0.7375824,0.6657012,0.113895394,0.73787576,0.6652572,0.118337564,0.73643386,0.66607916,0.11832457,0.7360186,0.66654027,0.1187066,0.73585594,0.66665196,0.119951,0.73566484,0.66664004,0.11988666,0.735118,0.6672547,0.11994182,0.73466367,0.6677449,0.12060113,0.73472667,0.6675568,0.1213746,0.73507345,0.6670346,0.12190894,0.735696,0.6662504,0.12219504,0.7362978,0.6655328,0.12229423,0.737885,0.66375434,0.12281938,0.73776996,0.6637853,0.124843486,0.7378338,0.6633366,0.12585866,0.73756164,0.6634474,0.12738988,0.7375156,0.6632063,0.12740877,0.7372865,0.6634573,0.12775275,0.7369289,0.6637884,0.12853386,0.7364125,0.66421056,0.12893659,0.73607516,0.66450644,0.12965791,0.73601574,0.66443187,0.13070916,0.736202,0.6640193,0.13130787,0.73639464,0.6636875,0.13157661,0.736258,0.66378593,0.1325448,0.7363912,0.6634455,0.13333707,0.7368085,0.66282314,0.13348675,0.7371259,0.66244,0.13432786,0.7373493,0.6620212,0.1354166,0.7378637,0.6612258,0.13697672,0.73826104,0.6604605,0.14227855,0.73868513,0.6588634,0.14241329,0.73900497,0.6584756,0.14228089,0.7398456,0.65755963,0.14300148,0.7396632,0.6576085,0.14412983,0.73949224,0.6575544,0.14502376,0.7392329,0.65764946,0.14564544,0.73889416,0.6578927,0.1461499,0.7388804,0.6577963,0.1493269,0.738538,0.6574671,0.14920166,0.73834264,0.65771496,0.14929561,0.73803335,0.6580407,0.1496634,0.73777455,0.6582474,0.15056466,0.7373533,0.6585138,0.15167803,0.7369905,0.65866435,0.15220319,0.73701876,0.65851164,0.15231387,0.73737174,0.6580907,0.15229549,0.73820984,0.6571547,0.15214482,0.73910373,0.65618414,0.15178305,0.73961616,0.6556904,0.15120213,0.73974174,0.6556829,0.15053503,0.7397819,0.6557911,0.15021305,0.7401688,0.65542823,0.15055852,0.74089557,0.65452725,0.15031035,0.7418661,0.6534841,0.15126228,0.74652135,0.6479395,0.15207246,0.7466603,0.6475897,0.1532004,0.7470009,0.6469307,0.15369385,0.74735034,0.6464098,0.15398693,0.74773014,0.64590067,0.1540377,0.74970174,0.64359903,0.15414825,0.7497857,0.6434747,0.15428549,0.74990135,0.64330703,0.15658376,0.74922216,0.64354306,0.15674452,0.74933445,0.64337313,0.15707104,0.7494456,0.643164,0.15761994,0.7499662,0.64242244,0.15766416,0.7503612,0.6419502,0.15744653,0.7511077,0.6411301,0.15731658,0.75181115,0.64033705,0.16135342,0.775734,0.61008346,0.16197394,0.77724195,0.6079962,0.16216338,0.7781896,0.6067322,0.16216645,0.7799143,0.60451275,0.16105928,0.7812715,0.60305446,0.16066964,0.78190523,0.6023367,0.16026029,0.7822096,0.60205054,0.15792714,0.78309596,0.6015146,0.15793219,0.78398764,0.60035056,0.15766762,0.7843621,0.5999308,0.1557872,0.7862061,0.59800524,0.1562995,0.78698707,0.59684324,0.15630235,0.7875593,0.59608716,0.1563789,0.7883422,0.59503126,0.15648133,0.7887709,0.5944359,0.15648825,0.7888893,0.594277,0.1556259,0.78962034,0.5935321,0.15555948,0.79023486,0.592731,0.15514709,0.7906896,0.5922326,0.15337868,0.7926207,0.5901079,0.15355025,0.7936562,0.58866984,0.15206057,0.7948978,0.5873798,0.14762545,0.79844975,0.583682,0.14848605,0.79891646,0.5828245,0.14897996,0.799743,0.58156353,0.14908527,0.8007211,0.580189,0.14903747,0.8009064,0.57994545,0.14882782,0.80160344,0.5790356,0.14671221,0.80444247,0.5756283,0.14628617,0.8051501,0.5747466,0.14586265,0.8060019,0.5736593,0.1457123,0.8062344,0.5733708,0.14561558,0.8062576,0.5733627,0.14324163,0.8066244,0.5734447,0.1413549,0.8075101,0.572666,0.14036402,0.80921227,0.57050276,0.13893756,0.810586,0.5688996,0.13278687,0.8119074,0.568484,0.13119712,0.8132128,0.5669852,0.1298679,0.8133309,0.56712186,0.12861791,0.81356484,0.5670712,0.1265339,0.8137848,0.5672244,0.1249503,0.81256217,0.5693244,0.124324016,0.8119184,0.5703789,0.123226,0.81132793,0.5714564,0.122825176,0.8107401,0.5723761,0.11974223,0.8105066,0.57335925,0.118875965,0.81018,0.5740008,0.11633062,0.80844855,0.5769559,0.11317987,0.8091111,0.5766537,0.111339085,0.8089689,0.5772114,0.110049106,0.8097872,0.5763106,0.11175227,0.8108713,0.57445556,0.11204124,0.81188506,0.5729655,0.11126425,0.81288886,0.5716922,0.1107006,0.8128536,0.57185173,0.10861687,0.81224906,0.5731089,0.104591236,0.81349,0.57209677,0.10318663,0.81319153,0.5727758,0.10266728,0.81361043,0.57227397,0.10229852,0.8139982,0.5717884,0.0995938,0.8138363,0.572496,0.10021622,0.81426394,0.5717788,0.10092428,0.81493866,0.5706919,0.100628726,0.8158745,0.5694055,0.099790834,0.81652343,0.56862223,0.099076524,0.8169498,0.56813455,0.09756055,0.81721705,0.56801254,0.09745524,0.8174017,0.5677649,0.09730911,0.8174017,0.5677899,0.09665594,0.8174906,0.5677735,0.096155755,0.81770205,0.5675539,0.09503101,0.81755143,0.5679602,0.09268831,0.81722546,0.5688159,0.091918305,0.8175941,0.5684109,0.08899514,0.8181188,0.568121,0.0885327,0.81816095,0.5681326,0.086677976,0.818183,0.56838673,0.08667389,0.81818396,0.56838596,0.08703339,0.81706285,0.5699417,0.08830968,0.81609666,0.5711283,0.0894439,0.8150665,0.57242143,0.09032893,0.8145038,0.5730831,0.08930933,0.8133805,0.5748357,0.0875356,0.8130769,0.57553756,0.087404914,0.8126327,0.57618445,0.087723106,0.8120323,0.576982,0.08863999,0.8120348,0.5768383,0.09043273,0.811684,0.5770538,0.090971485,0.80902,0.58069867,0.09121923,0.80866116,0.58115935,0.091890715,0.8082594,0.5816122,0.092875704,0.8079994,0.5818171,0.09543152,0.8075694,0.58200043,0.09928238,0.8048958,0.5850519,0.10095033,0.8044237,0.58541566,0.098813005,0.8048988,0.58512723,0.095636904,0.80709916,0.5826187,0.09435727,0.8075367,0.5822209,0.09127218,0.80732805,0.5830015,0.088351145,0.8077327,0.58289105,0.08798675,0.8073567,0.5834667,0.08762625,0.80676544,0.5843382,0.08762983,0.805626,0.5859077,0.08809033,0.8027575,0.58976305,0.08781546,0.80400586,0.58810127,0.08731437,0.80439335,0.58764577,0.08599836,0.804958,0.5870664,0.08571189,0.8047294,0.58742154,0.08396254,0.80352116,0.58932513,0.08441422,0.8043072,0.58818716,0.08250542,0.8058324,0.58636767,0.07860168,0.80590004,0.5868108,0.07510606,0.8057355,0.58749413,0.074345194,0.8054583,0.58797085,0.07349547,0.804448,0.5894589,0.07329501,0.8036246,0.5906059,0.0732538,0.8025659,0.5920489,0.07490508,0.8015907,0.59316236,0.07498548,0.80059755,0.594492,0.075323455,0.79863036,0.5970895,0.07527255,0.7982804,0.5975637,0.07475834,0.79744714,0.5987397,0.07430916,0.7959468,0.60078853,0.07410242,0.79477006,0.60236984,0.07131738,0.7947758,0.6026984,0.070947126,0.794604,0.60296845,0.070923336,0.7943898,0.6032535,0.07110324,0.7941345,0.6035684,0.07107513,0.79388064,0.6039055,0.07088733,0.7936738,0.60419935,0.07105683,0.793345,0.6046111,0.07159841,0.79297084,0.6050379,0.07251789,0.7927397,0.6052313,0.07346708,0.7927184,0.60514474,0.073947504,0.7927589,0.60503316,0.072719656,0.7892044,0.60980994,0.07219323,0.78906995,0.61004657,0.07196199,0.788872,0.6103298,0.0718768,0.7886216,0.6106633,0.07193822,0.78839934,0.61094296,0.07011029,0.7864389,0.61367613,0.0691118,0.7864868,0.61372805,0.06858907,0.78618085,0.6141785,0.06842031,0.7861229,0.61427146,0.067752846,0.78640413,0.6139855,0.06630923,0.7867278,0.61372834,0.06579609,0.7866162,0.61392653,0.06552706,0.7864389,0.6141824,0.06467425,0.78622353,0.61454844,0.06408711,0.7858859,0.6150417,0.06414226,0.7854509,0.61559135,0.06541212,0.7843245,0.61689246,0.065836094,0.784103,0.6171289,0.06591145,0.7836818,0.61765563,0.066527136,0.78315216,0.6182612,0.06707897,0.7810284,0.62088245,0.066288434,0.77960163,0.6227577,0.066312894,0.7793273,0.62309843,0.06642317,0.77911896,0.6233471,0.066767596,0.77906126,0.62338245,0.06698784,0.77876246,0.62373203,0.06527636,0.7777682,0.6251524,0.06506103,0.7775941,0.6253915,0.06428088,0.7776434,0.62541085,0.06418359,0.7774767,0.62562805,0.06432308,0.77720815,0.62594736,0.0646538,0.77697265,0.62620556,0.06644683,0.77610016,0.6270992,0.066068605,0.7743975,0.62924045,0.066226274,0.7741963,0.6294713,0.06754912,0.7736107,0.6300505,0.06799539,0.7731461,0.6305725,0.06895114,0.77269673,0.6310194,0.06828224,0.77212787,0.63178796,0.06842844,0.77187437,0.6320819,0.068730734,0.7716148,0.63236594,0.06976499,0.7714635,0.6324373,0.07032283,0.7710887,0.6328324,0.07042961,0.7705159,0.63351786,0.07078487,0.7695797,0.6346153,0.06880771,0.7686483,0.63596004,0.068343826,0.76760554,0.63726825,0.06831681,0.76740015,0.63751847,0.068263665,0.76710063,0.63788456,0.06836524,0.76642996,0.6386793,0.068767875,0.7657562,0.6394438,0.06959767,0.7650915,0.6401493,0.07023188,0.7646084,0.6406571,0.07104875,0.7642227,0.6410271,0.07239859,0.76385593,0.6413131,0.07292807,0.7637789,0.64134485,0.073036075,0.76275647,0.64254826,0.07262445,0.7624654,0.6429403,0.07225426,0.76204675,0.64347816,0.072002105,0.76153386,0.6441133,0.071793795,0.76054984,0.645298,0.09037642,0.73810065,0.66861016,0.09305873,0.7380299,0.66832024,0.09498045,0.7381748,0.6678897,0.096141815,0.7385369,0.667323,0.0976509,0.7385369,0.6671038,0.09869543,0.73833287,0.66717595,0.09886917,0.7383628,0.6671172,0.09914006,0.7384105,0.66702414,0.099383816,0.7386047,0.6667728,0.100314334,0.738738,0.6664858,0.100416236,0.73889995,0.6662909,0.10034937,0.7390659,0.66611683,0.10016407,0.7391508,0.66605043,0.10071877,0.74040717,0.6645698,0.10212915,0.73963165,0.66521776,0.10244034,0.7396081,0.66519606,0.10331583,0.7396735,0.664988,0.10389484,0.7391927,0.6654322,0.103990175,0.73911864,0.6654995,0.10746309,0.73928684,0.6647606,0.11423369,0.73816735,0.6648756,0.11944351,0.735793,0.66658974,0.12221348,0.7377613,0.6639067,0.1421636,0.73973775,0.6577063,0.14687005,0.7391175,0.6573693,0.15016025,0.73988795,0.6557573,0.15814477,0.7828675,0.6017547,0.15708497,0.7847568,0.59956735,0.15589169,0.78919345,0.59402984,0.15438652,0.79098475,0.5920371,0.15347102,0.7918599,0.59110445,0.13623443,0.8104597,0.5697326,0.11689367,0.80865514,0.57655245,0.09355598,0.81720823,0.5686985,0.09043165,0.81378675,0.5740847,0.08904777,0.8122162,0.5765199,0.074280545,0.79495883,0.60209876,0.06717473,0.7824877,0.61903197,0.10259499,0.7397475,0.66501725,0.10682173,0.73928684,0.66486394,0.118124515,0.7366765,0.6658486,0.14894998,0.7389189,0.65712464,0.14885692,0.7429674,0.65256494,0.15064667,0.746349,0.6482814,0.15623277,0.7855416,0.59876174,0.14892185,0.7963454,0.58622205,0.14723559,0.79792976,0.5844911,0.09438781,0.8078995,0.5817125,0.09979172,0.8045376,0.5854578,0.08819691,0.804447,0.5874405,0.08562807,0.8039729,0.5884687,0.08498216,0.8031547,0.58967835,0.074359104,0.80205667,0.5926009,0.073261276,0.78946763,0.6094043,0.067285836,0.7816358,0.62009525,0.099008515,0.7390647,0.6663188,0.10284824,0.7398255,0.6648914,0.11776997,0.7369658,0.66559124,0.1475722,0.7440314,0.6516438,0.15382873,0.7913746,0.5916612,0.14237958,0.80697435,0.573167,0.089793436,0.812079,0.5765976,0.085413516,0.8032887,0.58943343,0.07444375,0.790214,0.60829264,0.067037985,0.7789533,0.6234883,0.065329224,0.77684873,0.6262891,0.07306667,0.763282,0.64192045,0.1478839,0.73927075,0.65696967,0.1487639,0.74551916,0.6496696,0.14731666,0.7973546,0.5852551,0.110663936,0.8091176,0.5771327,0.07295511,0.78779763,0.61159825,0.0724195,0.7870523,0.6126207,0.06592758,0.7765959,0.62653995,0.09854048,0.7391927,0.6662461,0.100175954,0.74051887,0.66452736,0.116973154,0.73734003,0.6653172,0.14794399,0.7450202,0.6504287,0.072954044,0.7876601,0.6117755,0.09837846,0.73948765,0.66594267,0.11533182,0.73789364,0.66498995,0.07434558,0.79249185,0.60533416,0.14748658,0.7443929,0.6512503,0.07476306,0.792079,0.60582286,0.06729224,0.7820646,0.6195537,0.13418788,0.79621446,0.5899459,0.074818656,0.7915595,0.60649455,0.072732195,0.7873471,0.6122047,0.098671645,0.7399992,0.6653308,0.1342912,0.7961033,0.59007233,0.075902864,0.76919204,0.63449377,0.09946432,0.7404163,0.6647485,0.12399165,0.742459,0.65831655,0.122411944,0.78965354,0.60121757,0.09353155,0.8003486,0.5921942,0.07868676,0.7721265,0.63057834,0.1216314,0.7503238,0.6497846,0.12237544,0.7896041,0.6012899,0.074791685,0.79086065,0.607409,0.09353572,0.80000585,0.5926565,0.07880107,0.7722879,0.6303664,0.11772779,0.7571935,0.64249367,0.122420564,0.78942627,0.6015143,0.09338219,0.799689,0.5931082,0.079572156,0.7736064,0.6286505,0.11693447,0.7574064,0.6423876,0.10369729,0.7797428,0.6174529,0.09848923,0.7898203,0.605379,0.08271651,0.77282465,0.6292059,0.11538419,0.7588402,0.64097434,0.105921894,0.7768447,0.6207197,0.10604784,0.77669924,0.6208801,0.13849108,0.8122406,0.56664395,0.13801768,0.8129251,0.5657773,0.13681602,0.81335616,0.5654495,0.13661993,0.8139957,0.5645759,0.13712506,0.81447464,0.5637622,0.13691531,0.81471884,0.56346023,0.13664462,0.8148952,0.56327087,0.13509305,0.81528324,0.5630835,0.13457565,0.81562907,0.56270653,0.13414279,0.8161307,0.56208223,0.1333068,0.8161085,0.5623133,0.13254726,0.8155161,0.56335133,0.132645,0.81495345,0.564142,0.13223039,0.81456363,0.564802,0.1323899,0.81420654,0.56527925,0.13250642,0.81306946,0.5668863,0.132668,0.8127404,0.5673202,0.13307045,0.8123445,0.5677928,0.13505863,0.81153166,0.5684853,0.13554442,0.81156945,0.5683157,0.1359234,0.81246424,0.566945,0.1370376,0.8124722,0.5666653,0.13834059,0.8118915,0.5671808,0.13647552,0.81375015,0.5649648,0.14445083,0.80818564,0.57093775,0.14447379,0.80850726,0.5704765,0.14246656,0.8093715,0.5697553,0.14005299,0.8103203,0.5690045,0.14009652,0.8099682,0.56949496,0.1402758,0.80962765,0.56993484,0.1408054,0.809389,0.5701432,0.14142986,0.80898243,0.5705656,0.14143088,0.8083904,0.5714038,0.14186993,0.80777436,0.5721656,0.14314811,0.8076101,0.5720791,0.14434525,0.80772614,0.5716143,0.14477177,0.80768895,0.571559,0.11231967,0.8132634,0.57095265,0.11384363,0.81328326,0.57062244,0.11376165,0.8134905,0.5703433,0.113122925,0.81412834,0.5695597,0.111557245,0.81445384,0.5694031,0.11119354,0.81427234,0.56973374,0.111011766,0.8137724,0.57048297,0.11162669,0.8136694,0.57050997,0.08312656,0.81681365,0.57088125,0.083315246,0.8170137,0.5705674,0.083584465,0.81762356,0.5696537,0.08606334,0.81780213,0.56902796,0.086294904,0.81806684,0.5686122,0.083799586,0.8192996,0.56720877,0.084183045,0.81970596,0.5665645,0.083718255,0.81973964,0.5665847,0.0829458,0.818233,0.5688715,0.083799094,0.81814826,0.56886834,0.08372363,0.81901467,0.56763136,0.08365137,0.8184446,0.5684636,0.08592581,0.8160184,0.57160366,0.08626238,0.8162656,0.5711999,0.08604174,0.81662875,0.5707139,0.085384995,0.8167453,0.5706457,0.084974736,0.81671625,0.57074845,0.084510885,0.8165274,0.5710875,0.08438973,0.8162799,0.5714592,0.084970735,0.81604743,0.571705,0.24648131,0.8436303,0.47700608,0.2385024,0.8613617,0.44852272,0.23803754,0.8608682,0.44971552,0.23340617,0.8611902,0.45152298,0.23055461,0.8611915,0.45298314,0.22944081,0.861379,0.4531921,0.2270895,0.86210626,0.45299348,0.22579068,0.86210626,0.45364225,0.21996482,0.8628197,0.45514578,0.21859595,0.8627568,0.45592383,0.21767414,0.862858,0.45617324,0.2179253,0.86249596,0.45673764,0.21791446,0.8618164,0.45802382,0.21337171,0.8618246,0.46014223,0.21142365,0.86123616,0.4621389,0.20967771,0.86138684,0.4626532,0.20861647,0.86052805,0.46472642,0.20765035,0.8604959,0.4652183,0.20838483,0.85978,0.46621248,0.20603506,0.8596307,0.4675303,0.20507316,0.859338,0.4684904,0.204157,0.858921,0.46965373,0.20486854,0.8581327,0.4707835,0.20479207,0.857793,0.47143552,0.20491354,0.8574564,0.47199467,0.20552115,0.85681194,0.47289988,0.20528238,0.8564532,0.4736529,0.20642304,0.8555408,0.4748047,0.20665324,0.8552724,0.47518796,0.206949,0.8552008,0.475188,0.20805927,0.8549494,0.4751556,0.20731589,0.8546062,0.47609696,0.20748147,0.8540827,0.47696352,0.20841953,0.8533309,0.47789916,0.2099126,0.85269135,0.478387,0.21046838,0.8520286,0.47932273,0.2114153,0.85136855,0.48007825,0.2137801,0.850872,0.47991142,0.2148959,0.8505001,0.48007214,0.21576476,0.8507152,0.47930068,0.21596101,0.851068,0.4785855,0.2160493,0.8515567,0.47767538,0.21831258,0.8506552,0.47825238,0.2180414,0.8504589,0.47872493,0.21879998,0.8490266,0.4809162,0.2188894,0.84721243,0.48406455,0.21904778,0.8468492,0.48462823,0.21941265,0.8468079,0.48453525,0.21997227,0.8471948,0.4836044,0.22216386,0.84791166,0.48134086,0.22267379,0.8479438,0.48104864,0.22318143,0.8480905,0.4805544,0.22521874,0.8483451,0.4791525,0.22589046,0.8480165,0.47941792,0.22614081,0.8480124,0.47930714,0.22617726,0.8481348,0.4790733,0.2259994,0.848346,0.47878322,0.22654995,0.84841275,0.47840458,0.22909655,0.8475184,0.47877693,0.22998366,0.8473089,0.47872242,0.23053183,0.84725,0.47856295,0.2314313,0.8468301,0.47887194,0.2332761,0.8465481,0.4784752,0.2336294,0.8463302,0.4786882,0.23394512,0.84605867,0.47901395,0.23628826,0.8449142,0.47988316,0.23738605,0.84433794,0.48035538,0.23913206,0.8438083,0.48042005,0.23981172,0.84368205,0.48030296,0.24183191,0.84422237,0.47833657,0.24291608,0.8444133,0.47744954,0.24368079,0.8441292,0.47756207,0.24523315,0.8437507,0.4774363,0.21828252,0.8621555,0.4572096,0.20549957,0.8571603,0.47227767,0.20813753,0.8552481,0.47458345,0.21829598,0.8508532,0.47790763,0.22448535,0.8486342,0.4789847,0.22601324,0.8484962,0.47851038,0.24236645,0.84441006,0.47773442,0.21648127,0.85159963,0.47740334,0.21781787,0.8513082,0.47731507,0.20098041,0.8535237,0.48073304,0.20024581,0.85374385,0.48064858,0.19961981,0.85379976,0.4808096,0.19913901,0.85359514,0.48137197,0.19804525,0.8533767,0.48220983,0.19793859,0.85271275,0.48342663,0.19734797,0.8528351,0.48345217,0.1970669,0.8527844,0.48365626,0.19654138,0.8524406,0.48447546,0.19568993,0.8527337,0.4843044,0.19501293,0.85277015,0.4845132,0.1945823,0.85261434,0.48496038,0.19622779,0.851605,0.48606956,0.19589265,0.8508532,0.48751912,0.19559802,0.8508263,0.4876843,0.19605073,0.85046566,0.48813143,0.19762142,0.8500157,0.48828173,0.19844906,0.84963214,0.48861358,0.19925629,0.8494725,0.48856252,0.19917786,0.84911305,0.48921892,0.19841412,0.8480033,0.4914491,0.19852619,0.8477083,0.4919126,0.19886492,0.8474125,0.49228525,0.19952083,0.8474559,0.49194497,0.20000307,0.8477408,0.4912578,0.2001691,0.8485269,0.48983106,0.20143831,0.8502257,0.4863526,0.20343651,0.85017455,0.48560977,0.20348972,0.85045224,0.48510098,0.20428307,0.8509145,0.4839555,0.20477794,0.85139626,0.4828979,0.20519702,0.8514736,0.48258352,0.20544173,0.85171306,0.4820566,0.20559734,0.85205585,0.48138404,0.20715623,0.85219145,0.48047477,0.20670937,0.8524896,0.4801382,0.20324227,0.8536027,0.47964048,0.20194358,0.85374653,0.47993296,0.19611426,0.85095656,0.4872495,0.19991633,0.8495314,0.4881904,0.19627655,0.85125864,0.48665622,0.20046966,0.8500503,0.487059,0.20148508,0.8535934,0.48039782,0.20161788,0.8556074,0.47674543,0.20228355,0.8556709,0.47634926,0.20155764,0.8564457,0.47526342,0.20054653,0.85708827,0.47453222,0.19888046,0.8573029,0.4748456,0.1986728,0.8574546,0.47465855,0.19834511,0.8578355,0.4741071,0.19783466,0.8579494,0.4741143,0.1973538,0.8578963,0.47441056,0.19698311,0.8574051,0.47545153,0.19693266,0.85693634,0.47631675,0.19372214,0.8566599,0.47812712,0.19485798,0.8562534,0.47839364,0.19832776,0.8549463,0.4793046,0.19851352,0.8545681,0.47990173,0.19922194,0.85436803,0.47996444,0.20011012,0.854542,0.4792848,0.20035008,0.85555315,0.47737685,0.20070021,0.8553391,0.47761327,0.20122181,0.8551602,0.47771418,0.19608945,0.8562261,0.47793913,0.19713618,0.8559367,0.47802687,0.20610479,0.8530046,0.47948304,0.20673978,0.85309887,0.4790417,0.20669879,0.8533283,0.4786507,0.20607027,0.8539923,0.47773653,0.20450053,0.85426044,0.47793168,0.20414099,0.8540889,0.47839168,0.20404123,0.8536515,0.47921422,0.21939594,0.8460455,0.48587283,0.21479908,0.8395226,0.4990622,0.21213806,0.84173536,0.4964665,0.21088712,0.842378,0.49590915,0.20636189,0.8442845,0.49456897,0.20577234,0.84480613,0.49392343,0.20482075,0.845488,0.49315155,0.20235692,0.844952,0.4950836,0.2002364,0.8443078,0.49704096,0.1985279,0.84405655,0.49815178,0.19751991,0.8417224,0.50248307,0.1976538,0.8409053,0.5037969,0.19807073,0.83991367,0.50528514,0.19782034,0.8380309,0.50849915,0.1967404,0.836991,0.5106264,0.1973654,0.83519906,0.5133122,0.19918734,0.8315562,0.5184966,0.22076163,0.8447514,0.48750314,0.19819626,0.8388385,0.50701886,0.22305162,0.8417464,0.4916411,0.2186316,0.8383952,0.49929324,0.22087619,0.83875126,0.4977047,0.22332919,0.8410394,0.49272373,0.22160147,0.8392984,0.49645835,0.22292615,0.84030473,0.4941578,0.12526622,0.93378854,0.33518255,0.12600696,0.93381083,0.33484265,0.1261331,0.9340143,0.33422703,0.12736559,0.9340265,0.3337252,0.12856673,0.9338413,0.33378288,0.12871808,0.9339205,0.33350283,0.12869897,0.93408495,0.3330494,0.12764218,0.9347424,0.33160836,0.13226476,0.9345433,0.3303556,0.13393494,0.93383735,0.33167642,0.13475329,0.9335352,0.33219513,0.13784961,0.93217605,0.33473158,0.1383652,0.9318171,0.33551735,0.13888845,0.9318193,0.33529505,0.14251515,0.93152857,0.33458027,0.14314237,0.9313267,0.3348743,0.14415073,0.93136734,0.33432832,0.14477284,0.9315494,0.3335516,0.14595819,0.9317791,0.33239117,0.14604625,0.93206096,0.33156118,0.14823437,0.9320767,0.33054438,0.14959095,0.93176425,0.33081397,0.15065956,0.93161935,0.3307371,0.15212978,0.93139184,0.3307049,0.15301822,0.93109715,0.3311247,0.15391152,0.93101287,0.33094755,0.15443222,0.93130773,0.32987356,0.15405746,0.9321045,0.3277918,0.15500988,0.93283165,0.32526454,0.15549979,0.9328728,0.32491255,0.15567903,0.93307376,0.32424903,0.15575173,0.9335187,0.3229307,0.15525426,0.9340557,0.32161477,0.153784,0.935337,0.31858298,0.15364845,0.93585366,0.3171278,0.15267497,0.93721277,0.31356436,0.15254158,0.9378378,0.3117553,0.15282983,0.93797785,0.31119215,0.15316717,0.93838406,0.30979857,0.1554581,0.9392628,0.30597082,0.15656386,0.9391223,0.3058382,0.15665093,0.93913317,0.30576026,0.15697624,0.93920636,0.30536845,0.15742314,0.93945396,0.30437517,0.15951517,0.9400602,0.30139968,0.16103618,0.93952346,0.3022632,0.16298376,0.93892276,0.30308464,0.16411696,0.9386301,0.30337963,0.16689125,0.9380795,0.30356914,0.17187074,0.93585485,0.30762988,0.17159754,0.9353699,0.3092531,0.17150721,0.9346825,0.3113743,0.17188843,0.93432266,0.31224272,0.17267141,0.9339589,0.31289834,0.17640041,0.9384671,0.29692152,0.175829,0.9384306,0.29737538,0.17521355,0.93846214,0.29763916,0.17552449,0.9380237,0.2988357,0.1752751,0.9380874,0.29878184,0.17418036,0.9387012,0.29749167,0.17337447,0.93886733,0.29743803,0.17324911,0.93874085,0.29791,0.1739031,0.9381668,0.29933384,0.17378633,0.9379953,0.29993853,0.17311709,0.93811077,0.29996446,0.17214967,0.9380576,0.30068654,0.17006949,0.9389386,0.29911643,0.16963801,0.9393561,0.29804885,0.16913347,0.9395538,0.2977122,0.16352217,0.9405576,0.2976776,0.16983712,0.9402672,0.2950473,0.17133668,0.9404348,0.29364288,0.1717822,0.940868,0.2919901,0.17355128,0.94131994,0.28947672,0.17304772,0.94172823,0.2884484,0.17239119,0.942064,0.2877441,0.16970262,0.94277936,0.28699836,0.16863546,0.942916,0.28717867,0.16761927,0.94289356,0.2878464,0.16741104,0.9430039,0.287606,0.16708873,0.9433511,0.28665322,0.16555795,0.9438181,0.2860034,0.16510043,0.94376856,0.28643113,0.16470982,0.9434689,0.28764048,0.16437851,0.9434938,0.28774846,0.16412312,0.9436194,0.28748226,0.16340981,0.94382995,0.2871972,0.16135806,0.94415504,0.2872888,0.16029294,0.944548,0.28659245,0.15946424,0.94472444,0.28647313,0.15808286,0.9447429,0.28717703,0.1578511,0.94461435,0.2877269,0.15779133,0.9441446,0.28929716,0.15826836,0.9433316,0.29167897,0.15894707,0.9426495,0.29350954,0.15874864,0.9423093,0.29470667,0.15890433,0.94207746,0.29536334,0.15864982,0.9418254,0.29630253,0.15815938,0.94229245,0.2950771,0.15715665,0.94308865,0.29306233,0.1567995,0.94361603,0.29155222,0.15623045,0.94382596,0.29117787,0.15478164,0.9439023,0.29170376,0.15578566,0.9443646,0.28966594,0.15585046,0.9445209,0.28912097,0.15578553,0.9447742,0.2883272,0.15500338,0.9453781,0.28676504,0.1532206,0.94576275,0.28645474,0.15145895,0.94585544,0.2870848,0.15088518,0.9459771,0.28698614,0.1501215,0.94603616,0.2871917,0.14950623,0.94549996,0.28927097,0.14939326,0.94521827,0.29024842,0.14984557,0.9450061,0.29070577,0.15192817,0.94453347,0.29116032,0.15205985,0.9443993,0.29152653,0.1508554,0.9443968,0.2921597,0.15066227,0.9440547,0.29336244,0.15094812,0.94369245,0.29437938,0.15110287,0.9432716,0.2956461,0.15140496,0.9427077,0.2972855,0.14944564,0.94266164,0.2984208,0.14923632,0.94293755,0.29765302,0.14869195,0.9434325,0.2963542,0.14800248,0.94362277,0.29609343,0.14807709,0.944037,0.29473257,0.14754307,0.9446834,0.2929238,0.14653373,0.94517565,0.29184043,0.14594519,0.9450219,0.29263207,0.14548212,0.9442765,0.29525715,0.1453646,0.94336975,0.29819897,0.14467989,0.941709,0.30372995,0.14514703,0.94109046,0.3054196,0.14299962,0.94098836,0.3067442,0.14307497,0.94161177,0.30478978,0.14225122,0.94257975,0.30217224,0.14260136,0.9442451,0.29675925,0.14291672,0.94447273,0.2958819,0.14258741,0.94468117,0.29537496,0.14217892,0.9447759,0.29526883,0.14183246,0.94479656,0.2953693,0.1412259,0.9449528,0.29516006,0.14045659,0.9450166,0.29532272,0.14028627,0.94490284,0.29576737,0.14032705,0.94465965,0.296524,0.13936996,0.944789,0.2965632,0.13830684,0.94511217,0.2960307,0.1368757,0.9453936,0.29579708,0.13631998,0.94556653,0.29550081,0.13582034,0.9455244,0.29586563,0.13545018,0.94490063,0.2980202,0.13496402,0.9445273,0.29942092,0.13535169,0.9442196,0.3002154,0.13662852,0.9438125,0.30091637,0.13634032,0.9437697,0.3011812,0.13619012,0.94358385,0.30183065,0.13607441,0.9425561,0.30507657,0.13536552,0.9425177,0.3055104,0.13462776,0.942056,0.30725533,0.13410792,0.94116104,0.31021115,0.13409728,0.94092345,0.31093556,0.13452804,0.94031686,0.31258032,0.13492809,0.9400715,0.31314522,0.13323912,0.94029915,0.313185,0.13202615,0.9410979,0.3112937,0.13136327,0.9414998,0.31035748,0.13065149,0.94170845,0.31002483,0.1295295,0.94190955,0.30988464,0.12833665,0.9416915,0.31104144,0.12851347,0.9413395,0.31203252,0.12825403,0.9412615,0.31237435,0.12741716,0.94152457,0.31192374,0.12672302,0.94132906,0.3127952,0.1262945,0.94143146,0.31266043,0.12550598,0.9410573,0.31410095,0.12401338,0.94122124,0.31420264,0.12315431,0.94107807,0.3149684,0.12325259,0.94092953,0.31537345,0.12375278,0.9407297,0.31577352,0.12535617,0.94027734,0.31648746,0.12662795,0.9400863,0.31654868,0.12887955,0.9385815,0.3200855,0.12758681,0.93901896,0.3193196,0.1262257,0.9393222,0.31896853,0.124899104,0.9397713,0.31816688,0.1239626,0.93971187,0.31870818,0.12341033,0.93901896,0.32095686,0.1229008,0.93919027,0.320651,0.12221939,0.9391381,0.32106382,0.12095737,0.9391777,0.32142586,0.12089194,0.93880045,0.3225506,0.121728994,0.9378425,0.3250131,0.12224004,0.93748146,0.32586175,0.12389633,0.93679744,0.32720056,0.12232833,0.93692917,0.32741332,0.12164067,0.93588096,0.33065137,0.12083757,0.935787,0.33121136,0.12116535,0.9368911,0.3279544,0.121055275,0.93738323,0.3265859,0.12068121,0.93774927,0.3256721,0.11990309,0.9388999,0.32263017,0.119413145,0.9392257,0.3218628,0.119106054,0.9393657,0.3215677,0.118640706,0.93925726,0.3220562,0.118381724,0.9390746,0.3226835,0.11802014,0.93899494,0.32304764,0.11773789,0.9386412,0.32417658,0.11776547,0.9380228,0.32595173,0.11824409,0.93669546,0.32957545,0.11768555,0.93669546,0.3297753,0.117407724,0.93736064,0.3279793,0.11662731,0.9383823,0.32532555,0.11629855,0.93852156,0.3250414,0.113822356,0.9381783,0.3269035,0.11338234,0.93764895,0.32857105,0.113422655,0.93742627,0.32919186,0.112576924,0.9367763,0.33132547,0.11202405,0.9367966,0.33145553,0.11183481,0.9366146,0.33203334,0.11218588,0.9362705,0.33288428,0.113209136,0.9359269,0.33350334,0.11172182,0.93584347,0.3342383,0.11072917,0.936304,0.33327758,0.11005058,0.93651986,0.33289543,0.10987953,0.9364924,0.3330293,0.10965068,0.93626267,0.33374983,0.10956356,0.9355997,0.33563235,0.11001327,0.93502766,0.33707625,0.11055349,0.9345546,0.33820957,0.10848715,0.93420476,0.3398412,0.108033895,0.93358743,0.34167695,0.10703061,0.93164974,0.34723654,0.10557389,0.9315986,0.34781918,0.10443744,0.9312199,0.3491738,0.104152255,0.9310091,0.34982038,0.10402967,0.93062574,0.35087544,0.10429019,0.9303579,0.3515079,0.104767814,0.93020284,0.35177603,0.108587235,0.9301568,0.35073787,0.10984641,0.93030196,0.34996006,0.11021339,0.93025315,0.34997442,0.110413395,0.9301684,0.35013658,0.11090079,0.9300811,0.35021442,0.1108923,0.9299452,0.35057795,0.11043726,0.92994547,0.35072076,0.1096426,0.92984295,0.35124153,0.1070096,0.92948884,0.35298645,0.10525572,0.9298169,0.35264954,0.10391004,0.9297093,0.35333169,0.103103876,0.9292406,0.35479784,0.10308462,0.9290115,0.35540283,0.10423191,0.92812586,0.35737672,0.10479745,0.9278477,0.35793316,0.105310366,0.92758745,0.3584567,0.10503216,0.9274167,0.3589798,0.10487422,0.9271918,0.35960636,0.103891686,0.9273625,0.35945135,0.10276542,0.92848516,0.35686767,0.1025188,0.92860353,0.35663065,0.10228382,0.9286718,0.35652027,0.10151473,0.92837024,0.35752404,0.10037762,0.9282546,0.35814488,0.09958171,0.92785466,0.35940114,0.09865565,0.9276327,0.36022866,0.09864792,0.92742217,0.36077243,0.09919212,0.92720747,0.36117485,0.10082816,0.92710465,0.36098576,0.09982994,0.92665744,0.36240858,0.098853745,0.9269282,0.36198348,0.097918384,0.9270053,0.36204037,0.097447015,0.92689437,0.36245131,0.09647251,0.92593205,0.36516145,0.09685956,0.92553955,0.36605301,0.09691444,0.9250434,0.36729053,0.09743239,0.92496663,0.36734673,0.098544635,0.92509425,0.36672825,0.099874906,0.9256415,0.36498338,0.10027367,0.9254375,0.365391,0.0999927,0.9252624,0.36591113,0.09979765,0.9249139,0.36684433,0.100216165,0.9245603,0.36762074,0.10114007,0.92417276,0.36834142,0.10212231,0.92397827,0.3685582,0.1031192,0.9241653,0.36781102,0.103406414,0.92402226,0.36808956,0.102997795,0.92350405,0.36950204,0.10353157,0.9228646,0.37094754,0.10324891,0.9228863,0.37097242,0.10225553,0.9235514,0.36958978,0.10179497,0.9237069,0.3693283,0.10098163,0.923767,0.36940122,0.099591486,0.92424667,0.36857793,0.098490775,0.92437476,0.3685524,0.097468145,0.923873,0.37007925,0.09678626,0.9231165,0.37214014,0.09670131,0.92280555,0.3729327,0.09629489,0.9225236,0.3737345,0.09635784,0.9223452,0.3741583,0.096665435,0.92224115,0.37433544,0.0972868,0.9223186,0.37398362,0.10299922,0.92187965,0.3735359,0.098852195,0.9218258,0.3747871,0.097791225,0.92168635,0.3754079,0.09707756,0.921475,0.37611145,0.09614391,0.92158514,0.37608132,0.09544732,0.92126167,0.37705007,0.094778925,0.92131597,0.37708592,0.09438978,0.92100257,0.37794825,0.09386862,0.92026526,0.3798691,0.093408406,0.92023724,0.3800504,0.092952825,0.92008173,0.3805382,0.0925713,0.91986996,0.3811428,0.09313153,0.9194901,0.38192204,0.09395515,0.91901475,0.38286334,0.09279285,0.91909975,0.38294277,0.09231785,0.91873366,0.3839347,0.09194733,0.91855353,0.38445434,0.09106768,0.9184592,0.3848888,0.09061673,0.9180373,0.38600016,0.090862066,0.91731846,0.38764796,0.09026577,0.9173341,0.38775033,0.090411544,0.9165779,0.3895007,0.091482215,0.9151755,0.3925364,0.09305681,0.91521806,0.39206675,0.0934383,0.91532964,0.39171532,0.0940049,0.91532487,0.39159098,0.095169276,0.91547716,0.39095312,0.09686913,0.9152929,0.39096704,0.095903225,0.91510785,0.3916379,0.09547543,0.9148186,0.39241743,0.09349619,0.9148382,0.39284796,0.089645185,0.91425705,0.39509213,0.08983272,0.91403526,0.39556247,0.09126164,0.9136816,0.3960521,0.09158745,0.9131304,0.39724627,0.0903948,0.91321063,0.39733502,0.089684814,0.91284984,0.39832374,0.08959416,0.91216415,0.39991185,0.08821699,0.91090107,0.40308437,0.0879201,0.910454,0.40415794,0.08772543,0.90986156,0.405532,0.08754309,0.90896237,0.4075826,0.08790383,0.908356,0.40885478,0.08848562,0.90810996,0.4092757,0.08946127,0.9080754,0.40914035,0.08983552,0.9077285,0.40982753,0.0902511,0.9076609,0.4098859,0.09088591,0.9077431,0.4095634,0.092092976,0.90826267,0.4081395,0.089787684,0.906941,0.4115777,0.08901399,0.90737706,0.4107839,0.08842223,0.90762335,0.41036734,0.08425575,0.9061294,0.4145244,0.08346414,0.9056125,0.4158121,0.083364435,0.9050454,0.41706505,0.083546184,0.9044907,0.41823024,0.08418785,0.9046263,0.4178082,0.085278325,0.9049627,0.41685742,0.08401201,0.9039776,0.41924515,0.083256334,0.90392953,0.41949946,0.082465,0.9034442,0.42069957,0.08141387,0.9031685,0.4214955,0.080936894,0.90254384,0.42292303,0.07917509,0.9019705,0.42447668,0.07740049,0.90016407,0.42861855,0.07597058,0.8994293,0.43041304,0.075715564,0.8986542,0.43207374,0.07532159,0.8981644,0.43315977,0.074278474,0.8977578,0.43418157,0.07375495,0.89721847,0.43538395,0.07362498,0.89653397,0.43681368,0.07390436,0.8963236,0.43719807,0.07516841,0.89648265,0.43665615,0.07588425,0.8958398,0.43785003,0.07645435,0.8955271,0.43839014,0.07684006,0.8951039,0.43918636,0.07786921,0.8950332,0.4391492,0.07988198,0.8954869,0.4378608,0.08383901,0.8970287,0.43394762,0.08446509,0.8976065,0.43262947,0.083688684,0.8980396,0.43188095,0.08707009,0.8988168,0.4295895,0.086015984,0.89839727,0.43067804,0.085270815,0.89801896,0.43161425,0.08562243,0.8978595,0.43187624,0.08633632,0.89784116,0.43177232,0.08703065,0.8972956,0.43276584,0.08606077,0.8969794,0.43361455,0.085378654,0.89663476,0.4344613,0.08418704,0.89647245,0.43502837,0.08300811,0.8961085,0.43600366,0.082674034,0.8959057,0.43648368,0.08247441,0.8953856,0.43758714,0.083417214,0.89463264,0.43894652,0.08298407,0.8946505,0.43899214,0.08216067,0.8945229,0.43940684,0.08017389,0.8946954,0.43942264,0.07905216,0.894582,0.43985662,0.07828314,0.8944098,0.4403441,0.077939056,0.8940825,0.4410692,0.07760528,0.8941172,0.44105768,0.07704781,0.8947696,0.4398306,0.07667057,0.8948723,0.43968752,0.076129936,0.89512247,0.4392721,0.07482774,0.8959022,0.4379041,0.074143484,0.895786,0.4382581,0.07358142,0.8956007,0.4387313,0.07211079,0.8954816,0.4392183,0.07110187,0.8946174,0.44113973,0.07038333,0.8949374,0.44060552,0.07085178,0.89544976,0.43948802,0.07061302,0.8956625,0.43909287,0.068237595,0.8960676,0.4386416,0.06700032,0.8958871,0.43920076,0.06630311,0.89572084,0.4396454,0.065087534,0.8952076,0.4408707,0.06488203,0.8949256,0.44147313,0.06520277,0.8945077,0.4422721,0.06597417,0.894343,0.4424907,0.0668466,0.8943583,0.4423289,0.067004226,0.8934763,0.44408396,0.06467082,0.893266,0.44485217,0.06410623,0.892873,0.44572207,0.06406614,0.89228284,0.44690812,0.06484477,0.89165676,0.44804394,0.06842723,0.88978493,0.4512211,0.06569652,0.8907332,0.44975364,0.064849466,0.89097095,0.44940555,0.063773,0.8917262,0.44805962,0.061847333,0.8918985,0.44798657,0.060893893,0.891828,0.4482575,0.06024332,0.89186996,0.44826186,0.059618242,0.89179367,0.44849718,0.058339458,0.89119095,0.44986126,0.05547466,0.89067084,0.45125166,0.054989625,0.8904549,0.4517369,0.054945357,0.89023453,0.45217636,0.05399497,0.8893338,0.45405948,0.053751264,0.8887829,0.45516565,0.05414546,0.88862306,0.4554309,0.056038532,0.8888477,0.45476308,0.057715926,0.8890358,0.45418513,0.05911519,0.8887114,0.45463997,0.06403772,0.8891868,0.4530408,0.064519145,0.88887197,0.45359007,0.062238835,0.88878524,0.45407832,0.06022719,0.8883935,0.455115,0.060120497,0.88818055,0.4555445,0.060265735,0.8878981,0.45607567,0.060118303,0.8873556,0.45714957,0.05834144,0.88783383,0.45645085,0.05572413,0.8880302,0.45639592,0.053978883,0.8881195,0.45643187,0.05300251,0.8879863,0.45680526,0.051596083,0.887893,0.4571475,0.05090316,0.88790476,0.45720232,0.050310332,0.8876855,0.4576935,0.050135475,0.8871713,0.4587085,0.04961532,0.8868691,0.459349,0.049302347,0.8865847,0.4599314,0.049509875,0.88626397,0.4605268,0.05050427,0.88633543,0.46028128,0.048672855,0.8860069,0.4611104,0.04825357,0.8862612,0.46066543,0.04766464,0.88633305,0.46058854,0.046813082,0.88607955,0.46116328,0.046193097,0.88603294,0.4613153,0.044805836,0.8854819,0.46250862,0.04451607,0.8848991,0.46365067,0.04406133,0.884641,0.4641863,0.043617778,0.8841876,0.46509123,0.043096185,0.88420546,0.46510577,0.042617492,0.88448876,0.46461102,0.041864537,0.88425446,0.4651252,0.041668154,0.88316596,0.46720627,0.042279106,0.8825948,0.46822947,0.04318634,0.8824193,0.46847746,0.044856943,0.8825015,0.46816555,0.0464552,0.88231504,0.4683611,0.05038446,0.8817356,0.46904555,0.05255375,0.8817235,0.4688302,0.047656868,0.8815268,0.46972257,0.044865314,0.88210154,0.46891788,0.04202945,0.8820068,0.46935862,0.04092844,0.88213044,0.4692235,0.04050743,0.88194853,0.4696019,0.040436294,0.88138235,0.47066978,0.040710494,0.88056576,0.47217217,0.04136545,0.88002366,0.47312504,0.04224792,0.8798159,0.47343332,0.042917315,0.8791779,0.47455692,0.043799497,0.8788589,0.4750669,0.04379223,0.878446,0.4758308,0.043077,0.8784598,0.47587052,0.041698605,0.8782635,0.4763554,0.04166677,0.8777965,0.47721824,0.04210145,0.8767317,0.47913364,0.042898543,0.8762019,0.48003116,0.044836063,0.8755341,0.48107144,0.045908,0.8754843,0.481061,0.047481168,0.8758658,0.48021317,0.051099967,0.87603146,0.479539,0.05367505,0.8757502,0.4797714,0.05455258,0.8759246,0.4793539,0.055447556,0.87697256,0.4773308,0.055405803,0.8765512,0.4781089,0.05583604,0.876362,0.4784056,0.057011664,0.87622577,0.47851652,0.05830469,0.8759747,0.4788203,0.060223963,0.8760204,0.4784991,0.061050374,0.8761465,0.47816336,0.061171085,0.8764212,0.47764423,0.06205043,0.87814367,0.47435585,0.061405513,0.8771511,0.4762724,0.06203663,0.876493,0.47740078,0.063302636,0.8761145,0.4779291,0.059249867,0.87539,0.4797727,0.059446834,0.87474895,0.48091614,0.058931086,0.87457013,0.48130473,0.05874515,0.87509274,0.48037663,0.058084697,0.8754826,0.47974613,0.056960348,0.8758222,0.4792609,0.055564642,0.87577647,0.4795082,0.05300233,0.8753038,0.48065996,0.050354805,0.87561065,0.48038563,0.046429172,0.875094,0.4817207,0.04380197,0.87507373,0.48200345,0.042961385,0.8752226,0.48180878,0.04227549,0.8749426,0.4823777,0.04254674,0.87407875,0.48391747,0.042532966,0.87342006,0.4851065,0.043060366,0.8721335,0.48736945,0.043724753,0.87152195,0.48840314,0.04490994,0.870953,0.48930967,0.04657709,0.87136227,0.48842436,0.04767334,0.8720205,0.4871422,0.04741137,0.87142414,0.4882337,0.044377904,0.87022513,0.4906514,0.044165276,0.86988777,0.49126846,0.044751905,0.8687041,0.49330562,0.04577551,0.86781496,0.49477446,0.0469851,0.8673671,0.49544603,0.04833127,0.86740524,0.49524972,0.046754427,0.86661154,0.4967881,0.0457649,0.866779,0.49658808,0.045244865,0.8667918,0.4966134,0.04503161,0.86642396,0.49727428,0.04551523,0.86583996,0.4982464,0.045331188,0.86521333,0.49935055,0.044838477,0.86457044,0.5005072,0.04484996,0.86367446,0.5020507,0.04498703,0.86311203,0.5030047,0.045333993,0.8628563,0.5034122,0.04568277,0.86288685,0.50332826,0.046040215,0.8633233,0.5025467,0.046987336,0.8639243,0.5014249,0.048127577,0.86449933,0.50032455,0.048553195,0.86521935,0.4990371,0.04963468,0.8661127,0.4973783,0.050495718,0.86625415,0.49704525,0.051084425,0.86663574,0.4963193,0.051657796,0.8678137,0.49419722,0.05268047,0.8685462,0.4928005,0.053032752,0.8690311,0.49190706,0.05962232,0.87016845,0.48913392,0.058277283,0.8699609,0.48966497,0.05776687,0.8696515,0.49027473,0.057351764,0.86921227,0.4911016,0.056571502,0.86735684,0.49446106,0.056462828,0.86788356,0.49354845,0.056614913,0.869155,0.49128848,0.056057524,0.8695601,0.49063504,0.054698806,0.86908925,0.49162173,0.053105727,0.8680558,0.4936181,0.052911267,0.8674629,0.49468026,0.05302188,0.8671757,0.49517173,0.052183982,0.8663001,0.49679065,0.05051848,0.86526334,0.49876565,0.05013094,0.8648281,0.49955907,0.050502338,0.86434424,0.50035846,0.051138315,0.86422807,0.5004945,0.052268468,0.8643905,0.5000971,0.053072643,0.8644115,0.49997607,0.05437793,0.86455375,0.4995897,0.052588534,0.86378866,0.5011023,0.05152276,0.86369467,0.5013751,0.050801054,0.86305135,0.5025551,0.04907315,0.8632777,0.502338,0.048598036,0.8635107,0.5019835,0.048096642,0.8635107,0.5020318,0.047573835,0.8630057,0.5029492,0.046726312,0.86288947,0.503228,0.04628329,0.86219823,0.5044523,0.04593067,0.8612184,0.50615543,0.045763846,0.85919625,0.5095954,0.046220224,0.85862505,0.51051617,0.047899228,0.8586591,0.5103041,0.048783276,0.8589939,0.5096564,0.04951434,0.85977393,0.5082688,0.05031342,0.8599436,0.5079031,0.0508217,0.860118,0.5075571,0.051912654,0.8603283,0.50709,0.05334015,0.8608704,0.5060207,0.056630533,0.86204624,0.50365585,0.05573505,0.8616784,0.50438464,0.054904863,0.8610802,0.50549614,0.05370754,0.860459,0.5066812,0.052941047,0.85984397,0.50780463,0.05291309,0.8592634,0.50878936,0.05326519,0.8588359,0.509474,0.05316762,0.85838246,0.5102477,0.05269472,0.85804653,0.51086146,0.052752264,0.8577106,0.51141936,0.054007355,0.8570566,0.5123838,0.05480117,0.85673505,0.5128371,0.05708118,0.85717565,0.5118512,0.055839896,0.85666955,0.5128344,0.05526382,0.8560385,0.5139494,0.054927394,0.8559989,0.5140515,0.052595235,0.85680276,0.51295495,0.050349258,0.8572831,0.5123774,0.04989731,0.8569442,0.5129882,0.04982028,0.855569,0.51528597,0.049911685,0.85469913,0.5167187,0.05068476,0.85373634,0.5182328,0.051921483,0.8528556,0.5195589,0.054508235,0.85202235,0.5206599,0.055307776,0.85149956,0.5214303,0.058527008,0.85051715,0.5226807,0.059475776,0.8504387,0.52270126,0.06061384,0.85050285,0.5224662,0.061005715,0.85046923,0.5224753,0.06120973,0.8502033,0.522884,0.06137011,0.8501135,0.5230112,0.06065976,0.84967524,0.5238056,0.060285967,0.84918773,0.5246387,0.06065498,0.8489469,0.52498585,0.061996356,0.84867924,0.5252619,0.062297326,0.84880143,0.52502877,0.062248155,0.84926873,0.52427834,0.0635211,0.84936684,0.5239666,0.06340508,0.849163,0.524311,0.06339142,0.8489928,0.5245881,0.063568726,0.84869957,0.52504104,0.06458202,0.848272,0.52560806,0.06627438,0.8484885,0.5250476,0.06881552,0.84824175,0.52511936,0.07244858,0.84878695,0.5237479,0.07378805,0.8494073,0.5225539,0.074965864,0.8493893,0.52241546,0.076127976,0.85011756,0.5210611,0.07786234,0.8508165,0.51966214,0.08093032,0.8532776,0.5151385,0.08292499,0.854232,0.51323587,0.08297713,0.85456634,0.51267064,0.08331403,0.8548123,0.51220566,0.08404671,0.85488975,0.51195675,0.08455602,0.8554154,0.5109939,0.08562483,0.8565645,0.5088867,0.086190686,0.8566819,0.5085935,0.08646912,0.8569082,0.5081647,0.08671935,0.8572546,0.5075374,0.085962884,0.85777724,0.50678265,0.08759723,0.8574103,0.50712353,0.08814763,0.85679394,0.508069,0.089159735,0.8568814,0.50774485,0.09009556,0.85742617,0.5066588,0.09099856,0.85725063,0.5067944,0.09114865,0.85751474,0.5063205,0.09142208,0.8577246,0.50591546,0.09249283,0.85967076,0.5024055,0.09243007,0.86054194,0.5009234,0.09217826,0.8611291,0.49995983,0.09155175,0.8618004,0.49891725,0.092323385,0.8619966,0.49843583,0.09285668,0.86239976,0.49763867,0.09258905,0.8639634,0.49496916,0.0929028,0.8632196,0.49620658,0.093377076,0.86253566,0.4973057,0.09383196,0.8609922,0.499888,0.09406106,0.8606461,0.50044054,0.09517476,0.85981655,0.5016545,0.09629514,0.85881627,0.5031519,0.09730298,0.85869926,0.50315773,0.09779463,0.85864204,0.5031601,0.098666795,0.85843927,0.5033357,0.099025555,0.85845196,0.50324357,0.101487264,0.8577575,0.5039369,0.10158989,0.8574954,0.5043621,0.102693066,0.85635287,0.506077,0.103385806,0.85620415,0.50618756,0.104162514,0.85650206,0.50552386,0.104493976,0.8573349,0.5040415,0.10441908,0.8585804,0.5019326,0.104418844,0.8597622,0.4999057,0.103508174,0.8610212,0.49792418,0.10247434,0.86244553,0.49566796,0.10347811,0.86337054,0.49384564,0.10361817,0.86412084,0.49250218,0.104196884,0.8650753,0.4907013,0.1048928,0.8651305,0.49045566,0.10567743,0.8652642,0.49005118,0.106552325,0.86573935,0.48902145,0.107255146,0.8663746,0.48774114,0.10775251,0.86695576,0.48659748,0.10756132,0.8681024,0.48459142,0.10735329,0.86867666,0.48360744,0.10750327,0.86910236,0.48280862,0.10748693,0.86993194,0.4813159,0.10688065,0.87074775,0.47997385,0.10549963,0.8719808,0.4780369,0.10452736,0.8749706,0.4727583,0.10628633,0.8750156,0.47228268,0.10643249,0.87512577,0.47204563,0.106626056,0.8760877,0.47021395,0.10688907,0.8764901,0.46940362,0.106946245,0.8770647,0.46831614,0.10687426,0.8775841,0.4673586,0.10555267,0.8783645,0.46619147,0.103919014,0.8791609,0.46505588,0.10292669,0.87942433,0.46477836,0.099556364,0.88275784,0.4591591,0.099397875,0.8843157,0.45618612,0.09932012,0.884693,0.45547095,0.09910079,0.88527673,0.45438328,0.09660706,0.88775027,0.45007396,0.09644289,0.8882969,0.44902942,0.0963837,0.888788,0.4480693,0.0958848,0.88962317,0.44651628,0.09565312,0.89059293,0.44462878,0.096078046,0.89101154,0.4436975,0.0952405,0.89165944,0.44257504,0.093444824,0.8933063,0.43962705,0.094410494,0.89487386,0.43621945,0.09378766,0.89568025,0.43469614,0.09449841,0.89626354,0.43333787,0.09565743,0.8975937,0.43031988,0.10057423,0.8993656,0.4254719,0.1034546,0.89910465,0.42533284,0.10570564,0.8989012,0.42520925,0.1059173,0.89910537,0.4247247,0.10615711,0.8995235,0.4237784,0.10643401,0.90011764,0.42244533,0.106151104,0.9007763,0.42111033,0.10545536,0.9017401,0.4192184,0.10485386,0.9023147,0.41813138,0.10129531,0.90319705,0.41710234,0.102475315,0.9048031,0.41331613,0.10327215,0.90591013,0.41068444,0.104090706,0.9075639,0.40680808,0.10424566,0.908248,0.40523863,0.104476325,0.90851885,0.40457162,0.10359341,0.91101784,0.39914277,0.103529096,0.9117109,0.3975738,0.10359548,0.9120719,0.39672774,0.10339131,0.9124419,0.3959293,0.10286659,0.913064,0.39462966,0.101617895,0.9144613,0.3917069,0.1040773,0.91463333,0.3906582,0.10485213,0.9147308,0.39022255,0.105525225,0.91489667,0.38965175,0.106773086,0.9153259,0.38830152,0.107280865,0.91570437,0.38726774,0.10608748,0.9169893,0.38454646,0.10671979,0.91742224,0.38333702,0.10795617,0.918921,0.3793806,0.10936328,0.92034394,0.3755086,0.11009311,0.92087936,0.3739796,0.110030904,0.92114025,0.3733548,0.10983857,0.92155904,0.3723768,0.10892063,0.92221445,0.37102124,0.10813722,0.9226193,0.37024316,0.106631935,0.92338336,0.368772,0.106700666,0.9239141,0.36742035,0.1073589,0.9240171,0.36696932,0.10817692,0.92422485,0.36620516,0.10861228,0.9246762,0.36493462,0.10864481,0.92473423,0.36477783,0.10866091,0.9264959,0.36027512,0.11044604,0.9273807,0.35744476,0.11105178,0.92786103,0.3560076,0.11281346,0.9275002,0.35639375,0.11541649,0.9269541,0.35698053,0.11577402,0.9277571,0.35477203,0.115864694,0.9280538,0.3539654,0.11584423,0.9284899,0.35282657,0.115236394,0.9308162,0.34684557,0.11792779,0.9304179,0.34700954,0.11851816,0.93042475,0.34678996,0.12408127,0.92972785,0.3467131,0.12532909,0.9295338,0.34678462,0.12596545,0.92949605,0.3466552,0.12629734,0.9297147,0.3459474,0.12691875,0.9302738,0.3442126,0.12493036,0.93068624,0.3438249,0.12563626,0.93110245,0.342438,0.12581927,0.9315209,0.34123072,0.12583509,0.9320335,0.3398222,0.12546907,0.932631,0.3383148,0.12511635,0.93295133,0.33756137,0.124597795,0.933169,0.33715123,0.12313759,0.93371105,0.33618563,0.13687797,0.9326759,0.3337365,0.14620484,0.93236107,0.33064637,0.14708109,0.9323139,0.33039048,0.15443373,0.9327174,0.32586572,0.154044,0.93502045,0.31938577,0.15336642,0.9391844,0.30726436,0.1705198,0.93860275,0.29991317,0.161963,0.9439976,0.2874655,0.15965725,0.94116765,0.2978473,0.14972167,0.9423721,0.2991961,0.14232336,0.94363916,0.298813,0.13570486,0.9398106,0.31359252,0.123080686,0.937189,0.32638624,0.12128559,0.93569803,0.33129898,0.11358884,0.9372071,0.32975814,0.11321539,0.9368148,0.33099905,0.11440117,0.9356634,0.3338358,0.11052171,0.93470913,0.3377926,0.10829737,0.93282,0.3436837,0.10835755,0.92957336,0.35235208,0.105298296,0.9277816,0.3579576,0.10575545,0.92640674,0.36136734,0.09505469,0.9190964,0.38239563,0.09698102,0.9158009,0.3897478,0.08890524,0.90818775,0.40901205,0.056676015,0.88903314,0.45432144,0.049181614,0.8857957,0.46146187,0.049544916,0.8812003,0.47013962,0.044416804,0.8786963,0.4753104,0.05481821,0.8766808,0.477939,0.06373109,0.87639534,0.47735682,0.05980123,0.87433445,0.48162544,0.05404844,0.8753319,0.48049232,0.044616222,0.8750185,0.4820291,0.04906203,0.8673671,0.49524468,0.04627319,0.8634815,0.50225335,0.051200025,0.8673369,0.49508104,0.054440737,0.8644359,0.4997867,0.08366673,0.85587764,0.5103659,0.085233025,0.8581787,0.50622594,0.085908756,0.85822415,0.5060346,0.091802925,0.86123616,0.49984452,0.09224782,0.86335856,0.4960871,0.10119234,0.8581056,0.5034033,0.10262116,0.86212265,0.49619895,0.103802174,0.86483324,0.49121132,0.10644902,0.8755341,0.471284,0.10108346,0.880092,0.4639183,0.099758476,0.880649,0.4631475,0.09549397,0.8903676,0.44511387,0.09629894,0.89833814,0.42861995,0.11512968,0.9292412,0.35107824,0.119678,0.93037105,0.34653565,0.12107196,0.9301956,0.34652227,0.14085959,0.9316615,0.33491114,0.15410459,0.9324584,0.32676148,0.1543846,0.9392924,0.30642334,0.16917486,0.9377158,0.30342856,0.17190601,0.93602234,0.3071002,0.16406056,0.9402437,0.29837206,0.15543753,0.9435946,0.2923499,0.14005418,0.9446258,0.29676068,0.13624704,0.944062,0.30030593,0.12413148,0.93903124,0.32064262,0.12383302,0.93688303,0.32697952,0.11813398,0.93620694,0.33099985,0.113639735,0.9370453,0.3302001,0.11289595,0.93557894,0.3345842,0.10808829,0.9323198,0.34510392,0.107544705,0.9294851,0.35283375,0.10540698,0.9264404,0.36138275,0.10047023,0.92670065,0.362121,0.09467451,0.91926855,0.382076,0.09188211,0.9132346,0.39693865,0.0911911,0.9070397,0.41105133,0.08581006,0.9049305,0.41681835,0.08523567,0.90441334,0.4180567,0.07433379,0.89646566,0.43683392,0.0867575,0.8975486,0.43229574,0.07053831,0.8946493,0.44116542,0.067365564,0.8937031,0.44357258,0.061616447,0.88769966,0.45628142,0.054832257,0.88202006,0.46801075,0.055212922,0.8770594,0.47719845,0.061937425,0.87827206,0.47413287,0.059496235,0.8742211,0.48186892,0.048184257,0.8719666,0.48718837,0.047773577,0.8666383,0.49664444,0.05995255,0.8704585,0.48857722,0.05273753,0.8667531,0.49594137,0.054465868,0.86153746,0.5047641,0.103751265,0.8737055,0.47526243,0.10364744,0.8748158,0.47323826,0.09517276,0.8917119,0.44248393,0.09985946,0.8993678,0.42563552,0.10317653,0.90268725,0.41774437,0.1535994,0.93925196,0.30694127,0.1717796,0.936507,0.30569002,0.17090647,0.9383732,0.3004109,0.1592142,0.94139785,0.2973566,0.1548177,0.94367355,0.29242384,0.15004963,0.942116,0.29983747,0.1447351,0.9405046,0.30741316,0.14214754,0.9429463,0.30107528,0.13442205,0.93986595,0.31397888,0.09886757,0.92232454,0.37355414,0.092657305,0.9086356,0.4071805,0.08323539,0.8981895,0.4316567,0.08279018,0.89521706,0.43787238,0.06574362,0.89134055,0.44854185,0.061361544,0.88752615,0.45665315,0.052018475,0.88659215,0.45961764,0.05018687,0.88582146,0.46130425,0.053208522,0.88136464,0.46943077,0.04937598,0.86709845,0.4956837,0.055448417,0.8619348,0.503978,0.11431241,0.9302113,0.34876874,0.12755866,0.9349131,0.33115903,0.1304239,0.93526316,0.3290477,0.1580918,0.9399445,0.30250844,0.17150252,0.9381586,0.30074143,0.13568796,0.93959343,0.31424978,0.13509706,0.9396527,0.31432724,0.1210285,0.93564534,0.33154163,0.11418097,0.93553317,0.334276,0.101099096,0.9268454,0.36157513,0.09326012,0.9087942,0.40668854,0.0842456,0.8987032,0.43038958,0.06823743,0.8900582,0.45071056,0.060853273,0.8770115,0.47660023,0.056678712,0.8573152,0.51166224,0.062499385,0.8494743,0.52391535,0.063184746,0.84943926,0.5238899,0.10322201,0.87464243,0.4736516,0.09834156,0.89917994,0.4263852,0.12781212,0.93511826,0.3304813,0.15874295,0.9400791,0.30174822,0.15038751,0.9421843,0.29945338,0.102013804,0.92224777,0.37289715,0.097482085,0.9156455,0.38998803,0.08515551,0.8990274,0.42953265,0.06729127,0.8940924,0.44279864,0.060732182,0.8873989,0.45698446,0.053077012,0.88626236,0.46013242,0.061137646,0.8777491,0.47520384,0.09706656,0.898794,0.4274896,0.114099994,0.9305992,0.34780213,0.10293389,0.92217857,0.3728154,0.09243869,0.9078829,0.4089055,0.0538692,0.8867533,0.45909336,0.055258993,0.88187826,0.46822774,0.056506827,0.86216885,0.5034598,0.096446596,0.898468,0.4283145,0.11481433,0.93077165,0.34710497,0.13024566,0.9352809,0.32906783,0.12750226,0.93971795,0.3172906,0.053369198,0.8863918,0.45984918,0.12946087,0.93530506,0.32930884,0.1434526,0.9405492,0.30787754,0.12899774,0.9387012,0.31968683,0.14402394,0.9403418,0.30824423,0.09507702,0.9108024,0.40174532,0.09339336,0.8790512,0.46748972,0.0992661,0.9065651,0.4102266,0.12836514,0.9352816,0.32980415,0.08579661,0.89916766,0.42911127,0.09536955,0.9108686,0.40152597,0.06960457,0.88841015,0.45374292,0.07771692,0.88214195,0.46452743,0.09815006,0.90529203,0.41329518,0.15248926,0.9376018,0.3124898,0.08679006,0.8989815,0.42930147,0.0958439,0.9107808,0.4016122,0.06981668,0.88834107,0.45384553,0.054572828,0.8696594,0.49062645,0.076963276,0.88209593,0.4647402,0.058357663,0.8703624,0.48894134,0.09598327,0.9107032,0.4017548,0.07316757,0.886591,0.45673063,0.07728767,0.8833435,0.4623103,0.09604313,0.90998757,0.4033588,0.075165235,0.8879738,0.45371005,0.07956456,0.8862298,0.45636198,0.076092295,0.8870728,0.45531508,0.0992679,0.9092303,0.40428483,0.041065764,0.8752276,0.48196498,0.041794103,0.8753343,0.48170856,0.041832075,0.8758711,0.48072845,0.041280016,0.8763013,0.47999164,0.040836364,0.876255,0.4801142,0.040544674,0.8761235,0.48037878,0.040453915,0.8753187,0.4818513,0.044098746,0.867668,0.49518436,0.043911323,0.8686969,0.49339384,0.043495677,0.8693998,0.49219117,0.042900626,0.86994326,0.49128222,0.042620525,0.8699021,0.4913796,0.042433616,0.86959887,0.49193215,0.042704195,0.8689872,0.49298844,0.042731844,0.8683928,0.49403232,0.042873506,0.8681409,0.49446264,0.04329094,0.867746,0.495119,0.17169154,0.93829715,0.3002007,0.1724466,0.9384736,0.29921487,0.17262214,0.9387241,0.2983265,0.17201254,0.9389337,0.2980189,0.17136279,0.9391089,0.297841,0.17093107,0.9391276,0.29803002,0.17129426,0.93866795,0.29926696,0.17138077,0.9384424,0.29992417,0.085211046,0.91065264,0.40429053,0.08557594,0.9108747,0.4037128,0.085649304,0.91125554,0.40283686,0.085359335,0.9114145,0.4025387,0.08466369,0.9114457,0.40261498,0.084208235,0.9112875,0.40306833,0.084131815,0.91090673,0.40394402,0.08431049,0.91071635,0.4043358,0.06446977,0.896214,0.43891242,0.0653425,0.8962321,0.43874627,0.06767235,0.8965132,0.43781787,0.06783476,0.8966872,0.43743622,0.06768254,0.8970381,0.43673986,0.06726387,0.89729404,0.43627852,0.0670338,0.8972685,0.4363665,0.06691112,0.89706033,0.43681306,0.06504417,0.89673245,0.4377673,0.0638904,0.89638704,0.43864363,0.06248936,0.89366066,0.44437113,0.06324819,0.893666,0.4442529,0.06348061,0.8938915,0.44376588,0.06330011,0.89439905,0.44276795,0.06272982,0.89470685,0.4422269,0.061731745,0.8945431,0.44269833,0.0607694,0.8942629,0.44339696,0.060918298,0.8940374,0.44383112,0.06155339,0.8937815,0.44425884,0.13082081,0.94428694,0.3020068,0.13071877,0.9444668,0.30148798,0.13030685,0.9446205,0.30118474,0.1298942,0.9444495,0.30189845,0.12947859,0.94446516,0.3020279,0.1288782,0.9438643,0.3041555,0.12820657,0.9439648,0.30412763,0.126877,0.9437846,0.30524224,0.12604497,0.9438159,0.30549026,0.12594926,0.9435565,0.30632985,0.12526235,0.9436098,0.30644724,0.1249933,0.94354856,0.30674547,0.12404806,0.9435534,0.30711412,0.124647036,0.9432999,0.30764985,0.12557162,0.94300276,0.30818424,0.12688877,0.9427277,0.30848634,0.12731987,0.9426949,0.3084087,0.12795174,0.9427339,0.3080278,0.12809962,0.9428345,0.30765828,0.12820771,0.9429849,0.3071519,0.1292464,0.9428833,0.3070284,0.12946804,0.9429529,0.30672127,0.12957594,0.94306916,0.30631796,0.1301875,0.94318837,0.30569085,0.13061965,0.9439259,0.30322003,0.13084231,0.9441115,0.30254546,0.14122348,0.94610715,0.2914398,0.13959022,0.94632304,0.29152578,0.1390776,0.94607073,0.2925878,0.13883851,0.9458192,0.29351312,0.13897002,0.9457123,0.29379502,0.13992952,0.9456298,0.29360527,0.14086068,0.9452955,0.29423568,0.14182478,0.94525576,0.29390004,0.14192215,0.9453053,0.29369375,0.14289834,0.945377,0.2929888,0.14343312,0.9454947,0.2923469,0.14318205,0.9457428,0.29166672,0.14287554,0.9457068,0.2919336,0.14168312,0.94611156,0.2912023,0.13380395,0.9426563,0.30577064,0.13339601,0.94292843,0.30510888,0.13291013,0.94318587,0.30452484,0.1325847,0.94332165,0.3042459,0.13172448,0.94267136,0.30662584,0.13117379,0.942735,0.30666617,0.13063337,0.9425652,0.3074178,0.13046771,0.94231814,0.30824456,0.13052087,0.9421555,0.30871895,0.1307268,0.94196767,0.30920455,0.13140684,0.9417807,0.30948567,0.13192093,0.9418162,0.3091587,0.13228175,0.94144756,0.31012583,0.13268751,0.9413682,0.3101933,0.13320103,0.9414498,0.30972517,0.13348079,0.9415604,0.30926833,0.13328627,0.941676,0.30900002,0.13396381,0.9421052,0.30739483,0.13409589,0.9424314,0.30633545,0.13170384,0.9419264,0.3089154,0.1346682,0.94280154,0.30494225,0.13541374,0.9430334,0.30389327,0.13517696,0.94351554,0.3024989,0.13420537,0.94379866,0.30204794,0.13355659,0.9438837,0.30206978,0.13337459,0.9439704,0.30187935,0.132949,0.94407386,0.30174348,0.13264135,0.9439324,0.30232084,0.1328192,0.94365805,0.30309823,0.13337217,0.94320565,0.30426136,0.13385203,0.94300133,0.30468357,0.089228086,0.92879814,0.35968366,0.08878826,0.92890865,0.3595071,0.088189475,0.9289784,0.35947433,0.087595105,0.92896074,0.3596652,0.0867475,0.92880327,0.36027685,0.0863831,0.92824733,0.361794,0.08598706,0.92826885,0.36183307,0.085581735,0.9282293,0.36203068,0.08545019,0.9279703,0.36272493,0.08521613,0.9277532,0.36333477,0.08574603,0.92715347,0.36473826,0.08647318,0.92724705,0.3643286,0.08668065,0.9273226,0.36408678,0.08665729,0.927724,0.36306843,0.08722463,0.9275212,0.36345044,0.087627195,0.9277962,0.36265093,0.0880421,0.9278674,0.3623682,0.08881443,0.92786866,0.36217648,0.0890403,0.9279735,0.36185214,0.08925805,0.92828155,0.36100748,0.09007517,0.9284051,0.36048645,0.09037709,0.92860633,0.35989195,0.09040414,0.928789,0.3594135,0.090183474,0.9288304,0.35936207,0.08661453,0.9275801,0.36344606,0.083788365,0.92601055,0.36808145,0.084545396,0.9263586,0.36703107,0.08498286,0.9267554,0.36592656,0.085053585,0.92689884,0.36554682,0.084880926,0.9272014,0.3648188,0.08486902,0.92750657,0.36404508,0.084440626,0.92764956,0.36378032,0.08394258,0.927285,0.36482343,0.083786786,0.9266453,0.36648095,0.09424632,0.93322414,0.34671357,0.09389157,0.93346494,0.34616128,0.093509495,0.93360513,0.34588644,0.09333368,0.9336305,0.34586546,0.09297849,0.9335838,0.34608716,0.09342574,0.9329176,0.34775904,0.09234121,0.9330406,0.34771866,0.092245996,0.93286973,0.3482021,0.09191494,0.9323244,0.34974682,0.09164604,0.9324165,0.34957182,0.09079466,0.9324427,0.3497241,0.09063783,0.9321462,0.35055426,0.090127684,0.9317636,0.35170096,0.09051444,0.9314579,0.35241073,0.09135141,0.9312661,0.35270143,0.09189171,0.9312997,0.35247236,0.09288145,0.9314899,0.35170966,0.09307314,0.93129754,0.352168,0.093715824,0.93112576,0.3524517,0.094576724,0.9310962,0.35229972,0.0957328,0.9311596,0.3518196,0.09626713,0.9315162,0.35072815,0.09608172,0.93222016,0.34890378,0.09546683,0.9325913,0.34807968,0.09247506,0.9326236,0.34880018,0.09242435,0.9322668,0.34976622,0.09253872,0.93154657,0.3516498,0.11446972,0.9409795,0.318519,0.11368962,0.941315,0.3178061,0.1132602,0.9412713,0.31808874,0.1136,0.94099355,0.31878856,0.11443929,0.9406756,0.3194261,0.11494318,0.9403505,0.32020164,0.11531777,0.940154,0.32064348,0.11601912,0.9401006,0.3205471,0.11658345,0.94014674,0.3202068,0.1168989,0.9403003,0.31964043,0.116726026,0.9404577,0.3192403,0.11610747,0.9405804,0.3191042,0.11534689,0.94089204,0.3184608,0.1150568,0.9409532,0.31838503,0.11481778,0.9409102,0.31859833,0.12065068,0.940089,0.31886697,0.12081532,0.9402272,0.31839675,0.120363705,0.9409131,0.31653622,0.12009722,0.94099617,0.31639042,0.119307026,0.94106305,0.31649035,0.118569426,0.9409004,0.3172503,0.11839789,0.9406137,0.31816316,0.11856557,0.94040173,0.31872675,0.119139016,0.9401488,0.31925878,0.11991375,0.9401183,0.3190584,0.120245025,0.9400326,0.31918627,0.11950622,0.94017464,0.31904528,0.11243022,0.9400884,0.32185906,0.11179153,0.94075394,0.3201323,0.111213975,0.94116104,0.3191353,0.11078629,0.9411414,0.31934187,0.11079703,0.9406831,0.3206856,0.110917315,0.9404939,0.3211986,0.111314125,0.9402031,0.321912,0.11143597,0.9399183,0.32270056,0.11094458,0.9399491,0.32278,0.110635445,0.93975556,0.3234491,0.11056711,0.9394542,0.3243465,0.11015292,0.9390397,0.325685,0.11022148,0.93887997,0.32612213,0.11065509,0.9383823,0.3274051,0.11020677,0.9385716,0.32701364,0.110010214,0.9385327,0.32719123,0.10979863,0.93830395,0.3279176,0.10912425,0.93838173,0.32792017,0.10886885,0.93829924,0.328241,0.108942,0.9379826,0.32912037,0.10874456,0.9378999,0.3294214,0.108663365,0.93774813,0.32987985,0.108846925,0.9374992,0.3305262,0.10806505,0.9374408,0.33094817,0.108059965,0.9372947,0.33136323,0.1086804,0.93702537,0.33192176,0.10963031,0.936889,0.33199435,0.11032927,0.93699473,0.33146396,0.112355664,0.9371542,0.33033046,0.11230844,0.9373146,0.329891,0.113107406,0.93855596,0.3260666,0.11354145,0.9384918,0.32610032,0.11421387,0.9386151,0.3255103,0.11434432,0.9391446,0.32393327,0.11485188,0.9395144,0.32267904,0.11466981,0.9398068,0.32189134,0.113903664,0.9399782,0.32166275,0.1136581,0.9399177,0.3219263,0.11056488,0.9386427,0.32668838,0.11322404,0.939764,0.3225274,0.11216261,0.93752414,0.32934484,0.113637455,0.93979514,0.3222912,0.11239561,0.93792945,0.32810917,0.11267828,0.9382491,0.32709658,0.08789143,0.91282755,0.39877433,0.088438734,0.9128481,0.39860627,0.08967549,0.9132888,0.3973184,0.08999448,0.9134865,0.39679143,0.08970544,0.9136262,0.3965352,0.088990636,0.9136061,0.39674246,0.088365704,0.91355896,0.39699054,0.087946974,0.9133828,0.3974886,0.08775601,0.9131186,0.39813727,0.086712256,0.9138052,0.39678842,0.08733047,0.91385233,0.39654425,0.088313356,0.9140553,0.3958581,0.08845692,0.9144127,0.39499974,0.08825066,0.9148041,0.3941386,0.08749534,0.91503394,0.39377338,0.08712891,0.91485405,0.39427227,0.087042525,0.9144141,0.3953106,0.08666857,0.9141179,0.39607716,0.08714202,0.91461647,0.39482024,0.082431436,0.90510947,0.41711134,0.08272752,0.90531594,0.4166044,0.08270517,0.9056273,0.41593146,0.081672154,0.9061319,0.4150357,0.080855764,0.9061507,0.41515455,0.07951613,0.9057408,0.41630614,0.07913694,0.9053489,0.41722986,0.079892464,0.9051472,0.41752332,0.08151533,0.90527534,0.41693136,0.10583421,0.93691075,0.33316275,0.104853705,0.9372591,0.33249223,0.104813665,0.93720204,0.3326657,0.104890965,0.9368565,0.33361322,0.10433472,0.936838,0.33383954,0.103844,0.93669546,0.3343921,0.103841655,0.9365357,0.33483988,0.10486974,0.93629795,0.33518422,0.10507575,0.9359458,0.33610192,0.10336154,0.9360523,0.33633682,0.10306078,0.93582547,0.33705962,0.103182666,0.9356312,0.33756116,0.10326622,0.9353497,0.338315,0.10385351,0.93476754,0.33974126,0.10395168,0.9344402,0.3406106,0.103304036,0.93428135,0.34124276,0.10322363,0.93417406,0.34156072,0.10330904,0.93402195,0.34195065,0.104208425,0.9340137,0.34170014,0.105014294,0.93387175,0.34184143,0.105204694,0.93366593,0.3423448,0.105614215,0.93374246,0.34200966,0.10672672,0.934806,0.33874357,0.10738057,0.93457997,0.3391602,0.1085377,0.93465215,0.33859256,0.10945271,0.93481416,0.33785,0.10889338,0.9352855,0.3367243,0.10874551,0.935621,0.33583885,0.109102905,0.9357497,0.33536404,0.109194785,0.9360334,0.33454132,0.10873889,0.9364123,0.33362842,0.10821871,0.9367026,0.33298182,0.10776474,0.93671274,0.33310053,0.10720662,0.9369346,0.33265653,0.10664702,0.9370569,0.33249173,0.106061965,0.9370173,0.33279032,0.10486863,0.9370974,0.33294308,0.10607958,0.9343913,0.34008822,0.1051014,0.93616205,0.33549118,0.09921653,0.9311643,0.35084063,0.09953813,0.9319016,0.34878594,0.099127576,0.9324449,0.3474483,0.09862196,0.9330069,0.34608075,0.09795436,0.93333465,0.3453858,0.09753952,0.9337318,0.34442842,0.09822968,0.9342832,0.3427329,0.09849046,0.9349273,0.3408967,0.09831682,0.93528306,0.33996972,0.097706534,0.93545663,0.3396679,0.09721607,0.93545663,0.33980858,0.09689315,0.93530744,0.3403111,0.09647318,0.93464273,0.34225115,0.09608756,0.93440706,0.34300235,0.09547819,0.93385196,0.34468016,0.09549178,0.9334463,0.34577358,0.095780544,0.93307406,0.34669715,0.09670874,0.9327884,0.34720787,0.09655149,0.9323574,0.34840712,0.0969043,0.9311565,0.35150692,0.09569403,0.93004227,0.35477325,0.092703484,0.9297787,0.35625508,0.09202045,0.9294005,0.3574171,0.091231555,0.9288544,0.35903528,0.091497496,0.92842597,0.36007416,0.0921257,0.9283449,0.360123,0.093797944,0.92847604,0.35935253,0.095213965,0.9291751,0.35716656,0.09600519,0.92902094,0.35735568,0.09635412,0.9290629,0.35715267,0.096824,0.9291997,0.35666943,0.0971242,0.9296082,0.3555214,0.09746096,0.9296365,0.35535523,0.09771539,0.92929566,0.35617584,0.09836638,0.9292154,0.35620612,0.09969948,0.92949355,0.35510808,0.099968396,0.92983484,0.35413772,0.10042428,0.9298345,0.35400966,0.100708336,0.9297394,0.35417852,0.100976154,0.9297074,0.35418627,0.10130516,0.92979246,0.3538689,0.10148231,0.93018496,0.35278496,0.10203913,0.93066347,0.35135955,0.10278779,0.93085104,0.35064363,0.103595555,0.93126583,0.34930202,0.10338014,0.93179613,0.34794906,0.1025705,0.93234223,0.34672353,0.10206295,0.9325858,0.346218,0.101321846,0.93280464,0.3458459,0.10103648,0.9327543,0.34606513,0.100812465,0.93266267,0.34637725,0.10039865,0.932591,0.34669015,0.100412786,0.9323198,0.34741482,0.10069227,0.9319853,0.34823048,0.10048266,0.93178004,0.34883985,0.100576244,0.9315676,0.34937966,0.09978907,0.931377,0.35011292,0.099381655,0.93076384,0.35185507,0.09927688,0.93080866,0.351766,0.09632651,0.93303144,0.3466606,-0.051621057,0.9445637,0.32424477,-0.051082347,0.94460094,0.32422167,-0.04903014,0.9451795,0.3228493,-0.04705588,0.9454114,0.322464,-0.045227345,0.9457528,0.32172376,-0.044923235,0.9461808,0.3205055,-0.04490964,0.94652367,0.3194934,-0.046907768,0.946312,0.31983313,-0.048163958,0.94569266,0.32147416,-0.050947823,0.9450398,0.32296148,-0.051863484,0.94469094,0.32383522,0.08825205,0.96293765,0.2548778,0.08857417,0.9631204,0.25407425,0.08845494,0.9634284,0.25294557,0.08827349,0.9635322,0.25261322,0.08771151,0.96371394,0.25211525,0.08631509,0.9636965,0.2526635,0.0861881,0.9635637,0.25321266,0.08712788,0.9632125,0.25422516,0.08854435,0.9804312,0.1758253,0.088974714,0.9804396,0.17556114,0.08900028,0.98060614,0.1746155,0.08812851,0.98069656,0.17454979,0.086839646,0.98099405,0.17352113,0.08645264,0.9809907,0.17373297,0.08650621,0.98090196,0.17420673,0.087152444,0.9806839,0.1751101,0.090198316,0.9850536,0.14674357,0.09226622,0.9851667,0.14468415,0.094102874,0.98540235,0.14186902,0.09409898,0.9854596,0.14147335,0.09325671,0.98553336,0.14151728,0.09267867,0.98549306,0.14217623,0.09258202,0.98546124,0.14245962,0.089715496,0.98513305,0.14650606,0.07340665,0.98017454,0.18403624,0.072815605,0.9802563,0.18383522,0.07231178,0.98026276,0.18399984,0.07125081,0.9801216,0.18516178,0.06928439,0.9799761,0.18667202,0.06906366,0.9798475,0.18742755,0.069929026,0.97961736,0.18830754,0.070500635,0.9796432,0.18795969,0.07095817,0.97931325,0.18950064,0.072256505,0.9790531,0.19035242,0.072975345,0.9787454,0.19165616,0.0742663,0.9783618,0.19311312,0.07518576,0.9781685,0.19373567,0.07719821,0.9778693,0.19445346,0.07709335,0.977842,0.19463222,0.077138,0.9774605,0.19652134,0.07705659,0.9773117,0.1972921,0.07714782,0.9770862,0.19837026,0.077537216,0.97674525,0.19989176,0.0767208,0.9765422,0.20119481,0.07755697,0.9761434,0.20280285,0.07810227,0.9760725,0.20293489,0.08061282,0.97627383,0.200975,0.081271246,0.9763004,0.2005803,0.0817844,0.9764049,0.19986202,0.082184255,0.976564,0.1989184,0.08292241,0.97648305,0.19900937,0.08312261,0.9764977,0.1988538,0.083450876,0.97629654,0.19970223,0.08308662,0.9760284,0.20115979,0.08369261,0.97576463,0.20218535,0.083818674,0.9756537,0.20266779,0.083769105,0.9755956,0.20296802,0.08453965,0.9754064,0.20355684,0.08535986,0.9754415,0.20304562,0.08547035,0.9755782,0.20234147,0.085690334,0.9758598,0.20088491,0.08670128,0.97584176,0.20053862,0.08699287,0.97592217,0.20002049,0.087380625,0.97615355,0.19871801,0.08750111,0.9762875,0.19800572,0.087479234,0.9765135,0.19689777,0.08733991,0.97678685,0.19559953,0.08737889,0.9768901,0.19506584,0.089293286,0.9772555,0.19234961,0.08763062,0.9775427,0.19165382,0.08606551,0.97777784,0.19116274,0.08511195,0.97765404,0.19221993,0.084370434,0.97769326,0.19234727,0.0826253,0.9779944,0.19157241,0.08168416,0.97811675,0.19135128,0.08115353,0.9784661,0.18978475,0.0816379,0.97858274,0.18897386,0.08172894,0.97868663,0.18839557,0.08114971,0.9788184,0.18796085,0.08003546,0.979005,0.18746607,0.07951973,0.9790524,0.18743798,0.07876637,0.9790097,0.1879784,0.07741306,0.9789678,0.1887571,0.0759497,0.97960216,0.18604107,0.07432976,0.9801916,0.18357435,0.0820139,0.9765601,0.19900759,0.07799072,0.9789217,0.18875834,0.08337988,0.9764444,0.19900773,0.085484624,0.97576725,0.2014216,0.059546787,0.9856996,0.15764044,0.05850868,0.98591334,0.15668964,0.058014527,0.98599875,0.15633556,0.057146117,0.98608315,0.15612283,0.056214955,0.9862025,0.15570657,0.05585593,0.9862217,0.15571433,0.055620827,0.9861775,0.15607768,0.05617956,0.98600286,0.15697844,0.056720715,0.98555607,0.1595682,0.05563284,0.9857713,0.15861887,0.05538334,0.9858091,0.15847117,0.05517207,0.9857961,0.15862584,0.055280447,0.98570895,0.15912884,0.0555946,0.98559517,0.15972309,0.056493208,0.9853645,0.16082701,0.056162074,0.98522514,0.16179386,0.055448625,0.98533297,0.16138291,0.05483044,0.9853886,0.16125433,0.05300441,0.98532206,0.16226834,0.05266372,0.98523843,0.1628858,0.053533714,0.98508954,0.16350156,0.05432811,0.98498774,0.1638523,0.055553786,0.98470664,0.16512594,0.05477698,0.9845924,0.16606408,0.055087745,0.98446447,0.16671863,0.055353228,0.98437965,0.16713092,0.05584574,0.9842713,0.1676047,0.05706533,0.98407406,0.16835035,0.057838924,0.9839982,0.16852957,0.05923963,0.98396784,0.16822004,0.059926316,0.9839742,0.1679393,0.060598347,0.9840226,0.16741356,0.06105161,0.98412925,0.16662014,0.06312005,0.9839074,0.16715868,0.062864505,0.9838555,0.1675604,0.06300291,0.9836745,0.16856763,0.062103633,0.983673,0.16890998,0.06154875,0.98369795,0.16896759,0.061015394,0.98367727,0.1692812,0.060886364,0.98362803,0.16961348,0.06082791,0.98354363,0.1701233,0.061832458,0.9833622,0.17080846,0.062772736,0.9832218,0.1712731,0.06373983,0.9831382,0.1713957,0.064952455,0.98306835,0.17134123,0.06528111,0.9829659,0.17180346,0.065519005,0.98292845,0.17192718,0.06876696,0.98287445,0.17096464,0.07139884,0.9829734,0.16930884,0.07144477,0.9827068,0.17083022,0.07215313,0.9824971,0.17173645,0.07272114,0.98238736,0.17212394,0.07545477,0.9823056,0.17141268,0.07609849,0.9822686,0.17134032,0.07650327,0.98233783,0.170762,0.077519864,0.98283,0.1674392,0.0786088,0.9827385,0.16746838,0.07883792,0.9827585,0.16724305,0.07957962,0.982945,0.16578935,0.07955248,0.9830627,0.16510336,0.079172455,0.98381454,0.16075024,0.0801034,0.98439705,0.15667139,0.08010427,0.98452336,0.1558752,0.078770384,0.9849867,0.15361111,0.077901065,0.9851857,0.15277614,0.07721569,0.98528886,0.15245861,0.07596654,0.985335,0.15278767,0.07403923,0.98537236,0.1534912,0.07365153,0.9854369,0.15326314,0.07295523,0.98550606,0.15315129,0.07112792,0.98563474,0.15318277,0.07063077,0.9857055,0.15295757,0.070493735,0.98570734,0.15300876,0.070030876,0.9856892,0.15333755,0.06921859,0.98586524,0.15257287,0.06890167,0.98588055,0.15261763,0.068948716,0.9856892,0.15382718,0.068372294,0.98571694,0.15390684,0.06830601,0.98553944,0.1550687,0.06690732,0.98536915,0.15675169,0.066321954,0.98575526,0.15455735,0.06596122,0.9859403,0.15352817,0.06583393,0.98606944,0.15275145,0.065517485,0.98613155,0.15248604,0.064685605,0.9862105,0.15233053,0.06442337,0.9861961,0.15253468,0.06419821,0.9860328,0.15368114,0.06384234,0.9860439,0.15375829,0.0636725,0.98600256,0.15409328,0.06382495,0.9858955,0.15471396,0.06427706,0.985728,0.1555917,0.0651963,0.9849882,0.15983652,0.06391301,0.9852066,0.15900661,0.063547745,0.98522544,0.15903632,0.063184775,0.98528636,0.1588031,0.062692754,0.98546267,0.15790175,0.062246878,0.98553514,0.15762569,0.057132475,0.98529845,0.16100565,0.055917937,0.98491853,0.16373353,0.055770587,0.98479635,0.16451684,0.0765343,0.98249424,0.16984573,0.074363925,0.985334,0.15358059,0.070276916,0.9856618,0.15340137,0.069075435,0.9857895,0.15312637,0.06913701,0.98571265,0.15359241,0.06438551,0.986092,0.15322262,0.060754083,0.985523,0.15828268,0.060407802,0.9855559,0.1582102,0.056699827,0.98586,0.15768711,0.056854412,0.9851585,0.16195771,0.077269,0.9828215,0.16760492,0.07902272,0.9836251,0.16197854,0.06833747,0.9854273,0.1557658,0.057361577,0.9854886,0.1597558,0.076639324,0.98261803,0.16908066,0.079146534,0.9834496,0.162981,0.06504283,0.985379,0.15747271,0.06315141,0.98403627,0.1663865,0.06761519,0.985345,0.1565994,0.056946088,0.9857822,0.15808421,0.06551927,0.9850783,0.15914796,0.0571107,0.985688,0.15861157,0.062054906,0.98411715,0.16632071,0.06554226,0.98495656,0.15989003,0.050614215,0.9845238,0.16778293,0.049288306,0.98486984,0.1661387,0.04873416,0.9849667,0.16572732,0.048341453,0.9849573,0.16589831,0.04810237,0.98482996,0.16672178,0.048247803,0.9846679,0.16763447,0.04870657,0.98445547,0.16874571,0.04851394,0.98430395,0.16968256,0.04866227,0.9839897,0.17145339,0.048719436,0.9839132,0.17187561,0.04881773,0.9838283,0.1723332,0.049336795,0.98353004,0.17388071,0.049758613,0.98331606,0.17496754,0.05106176,0.9827499,0.17775103,0.052867465,0.9819986,0.18133864,0.053627323,0.98156404,0.18345615,0.05139209,0.9821559,0.18091062,0.05102698,0.982203,0.18075821,0.05041866,0.9824011,0.1798501,0.048954412,0.9829571,0.1771969,0.047732294,0.9833992,0.17506474,0.04654514,0.983808,0.17307621,0.045478396,0.9840916,0.17174236,0.04462415,0.98419166,0.17139259,0.04429442,0.983966,0.17276841,0.044138122,0.98363036,0.17470886,0.043853126,0.98352623,0.17536567,0.043987162,0.9833777,0.1761632,0.044196185,0.9831974,0.1771146,0.044462193,0.98302925,0.17797914,0.04408334,0.98285717,0.17902069,0.043498684,0.9830288,0.17821962,0.043027777,0.9831186,0.17783825,0.04225837,0.98319364,0.17760766,0.041731734,0.98349196,0.17607377,0.04131491,0.9835339,0.17593795,0.040398635,0.9838387,0.17444032,0.042519752,0.9839327,0.17340285,0.04275916,0.98404753,0.17269087,0.042762205,0.9840771,0.17252165,0.042645045,0.9841752,0.17198999,0.04251323,0.9842479,0.17160611,0.041671008,0.9843835,0.17103383,0.0400355,0.9842935,0.17194009,0.03918458,0.98412067,0.1731216,0.038737494,0.9841128,0.1732669,0.037605654,0.9842449,0.17276509,0.037487864,0.9841891,0.17310824,0.03774114,0.9840407,0.17389518,0.038005084,0.983926,0.17448565,0.037350453,0.984002,0.17419823,0.035845857,0.9842592,0.17305744,0.034833346,0.9841938,0.17363529,0.03460004,0.9841488,0.17393686,0.034616243,0.9839488,0.17506127,0.03452124,0.983938,0.17514077,0.034070544,0.9840727,0.17447108,0.033393554,0.98418504,0.17396751,0.033198465,0.98419183,0.1739664,0.03305588,0.98416054,0.17417027,0.03295738,0.9840663,0.1747207,0.033048414,0.9839897,0.17513447,0.033727396,0.98370016,0.1766253,0.033689678,0.9835136,0.1776684,0.033735882,0.98343104,0.17811607,0.03388809,0.983319,0.17870478,0.03437478,0.98313653,0.17961338,0.034696806,0.98298484,0.18037997,0.035027582,0.9827751,0.18145588,0.035332642,0.9826286,0.18218844,0.03598935,0.9823949,0.18331687,0.03665634,0.9820564,0.18499066,0.037147548,0.98198885,0.18525122,0.037592586,0.98212755,0.1844243,0.03771262,0.98230445,0.18345484,0.038963616,0.98233,0.18305624,0.038784053,0.98213106,0.18415864,0.03895664,0.98199785,0.18483128,0.0391558,0.9818835,0.18539567,0.039522287,0.9817113,0.18622802,0.039880846,0.981571,0.1868899,0.0400451,0.98154414,0.18699585,0.040914293,0.98130774,0.18804559,0.038254824,0.98157036,0.18723284,0.03798998,0.98153716,0.18746094,0.037769433,0.9814616,0.18790056,0.03880698,0.9812354,0.18886817,0.039810475,0.98106307,0.18955302,0.039530713,0.9809947,0.18996516,0.039659508,0.9808406,0.19073239,0.039925303,0.98067075,0.1915487,0.040380284,0.9805264,0.1921912,0.040815804,0.98041713,0.1926561,0.04154192,0.9802902,0.19314604,0.041984476,0.9802528,0.1932401,0.04299225,0.9798654,0.1949758,0.044142287,0.97952175,0.19643983,0.0450482,0.9793333,0.19717254,0.04531232,0.9792266,0.19764118,0.046378013,0.97900105,0.19850968,0.04809418,0.9790283,0.19796613,0.048877962,0.97910494,0.19739413,0.049559146,0.97911966,0.19715105,0.04983512,0.9792577,0.1963946,0.050376847,0.9795485,0.19479966,0.0507525,0.9796265,0.19430953,0.05023475,0.9797921,0.19360751,0.049634326,0.98006684,0.19236799,0.049624316,0.98020405,0.19167003,0.049376283,0.9803763,0.19085146,0.05000411,0.9806337,0.18935987,0.050332345,0.98049676,0.189981,0.050623372,0.98040706,0.1903663,0.051078282,0.980375,0.19040993,0.051327754,0.98049223,0.18973786,0.052031364,0.98048836,0.1895661,0.052002408,0.9802998,0.1905468,0.05205326,0.98023343,0.19087401,0.05229481,0.9801125,0.1914281,0.052865468,0.97988135,0.19245206,0.05312334,0.9798315,0.19263478,0.05401677,0.97982484,0.19242002,0.05479887,0.9799004,0.19181319,0.05529843,0.9800572,0.19086654,0.05672428,0.9803156,0.18911286,0.0564349,0.9799371,0.19115016,0.05699033,0.9797464,0.19196112,0.057835836,0.9796004,0.19245267,0.05816917,0.9795656,0.1925292,0.058759525,0.97957695,0.19229221,0.059279907,0.97963536,0.19183458,0.05828505,0.97940093,0.19333042,0.05615547,0.9794096,0.19391617,0.05528881,0.979361,0.19440976,0.055034343,0.97931844,0.19469622,0.054732773,0.9792193,0.19527882,0.05489641,0.97909766,0.19584209,0.05520248,0.97896576,0.19641478,0.054566488,0.978984,0.19650158,0.054008864,0.9789421,0.19686408,0.053124893,0.97869295,0.19833782,0.05087165,0.9784059,0.2003348,0.051357985,0.978166,0.20137927,0.050189503,0.9783895,0.20058674,0.049724426,0.9784569,0.2003734,0.049331732,0.978455,0.20047991,0.049185377,0.9784175,0.2006988,0.049070474,0.9783562,0.20102562,0.04905936,0.97824955,0.20154665,0.049617387,0.97785425,0.20332031,0.04988973,0.9777221,0.2038885,0.050157372,0.9776139,0.20434105,0.051005382,0.97740203,0.2051433,0.051564734,0.97731024,0.20544046,0.053426724,0.977292,0.20505103,0.054242432,0.9773371,0.20462139,0.054999825,0.9774492,0.20388262,0.056460455,0.9776702,0.2024184,0.05741416,0.97758913,0.2025415,0.05823952,0.97758937,0.20230475,0.059770018,0.97771084,0.20126867,0.060714543,0.9778255,0.20042692,0.06099574,0.97777593,0.20058362,0.06146632,0.97757035,0.20144017,0.061914317,0.9774074,0.20209244,0.06044713,0.97741103,0.20251872,0.05906232,0.9773512,0.20321497,0.054900937,0.977004,0.20603186,0.054796793,0.97639054,0.20894696,0.05438131,0.9764391,0.20882852,0.05384546,0.97656286,0.2083881,0.053407516,0.9765959,0.2083461,0.052357115,0.9765376,0.20888536,0.052270517,0.9764663,0.20923989,0.052311942,0.97632694,0.20987879,0.05260277,0.9760886,0.21091233,0.05294645,0.975929,0.21156378,0.053578336,0.97567093,0.21259257,0.05418168,0.9754659,0.213379,0.054823272,0.9752825,0.21405259,0.05542649,0.9751456,0.21452042,0.056526586,0.97500354,0.21487853,0.058314893,0.97470313,0.21576194,0.060810063,0.97392225,0.21858086,0.06314317,0.97342217,0.22014126,0.06432148,0.97318494,0.22084795,0.065007746,0.97295666,0.22165127,0.06562737,0.9728136,0.22209632,0.06669812,0.9726921,0.22230951,0.06747526,0.97280073,0.22159828,0.06770514,0.97301394,0.22058992,0.067295216,0.9732605,0.21962528,0.066616714,0.9736252,0.21821132,0.06682885,0.97395587,0.21666542,0.066859044,0.97424895,0.21533428,0.066096425,0.9745618,0.21415085,0.06628129,0.9749823,0.21217026,0.06627997,0.97524685,0.21095142,0.06635071,0.9762838,0.20607646,0.06733967,0.97632253,0.20557147,0.067581385,0.9763813,0.20521276,0.06753548,0.9765919,0.2042236,0.06720368,0.9769796,0.20247097,0.06675112,0.9773935,0.20061447,0.0660732,0.97793674,0.19817668,0.06596701,0.97832143,0.19630474,0.06648191,0.9782928,0.19627355,0.066848926,0.97829866,0.19611977,0.06721978,0.9784423,0.19527449,0.06698356,0.978625,0.19443856,0.06627357,0.9798543,0.18839692,0.06658213,0.9801404,0.1867929,0.066495515,0.98026377,0.18617557,0.06672123,0.9803494,0.18564296,0.06859797,0.9804201,0.18458246,0.0695091,0.98051983,0.1837099,0.07067432,0.9805334,0.1831921,0.07100269,0.98061264,0.18264025,0.0712081,0.98075265,0.18180652,0.07089622,0.9808602,0.18134788,0.07062027,0.98094106,0.18101765,0.069566734,0.98113316,0.18038341,0.06693648,0.9815652,0.17902324,0.06729621,0.98182356,0.1774646,0.06652568,0.9819806,0.17688526,0.06591818,0.9820551,0.17669903,0.06490903,0.98210907,0.17677267,0.06488192,0.9820411,0.1771597,0.065164454,0.98188174,0.17793772,0.06459963,0.98181385,0.17851725,0.063630044,0.98211294,0.1772158,0.062658176,0.9822076,0.1770371,0.06105671,0.982219,0.17753287,0.060444266,0.98239917,0.17674376,0.05996825,0.98248374,0.17643547,0.059690434,0.98255277,0.17614509,0.0598392,0.9826231,0.1757019,0.059701473,0.9827314,0.17514193,0.059464104,0.98288643,0.1743512,0.05918002,0.98302084,0.17368877,0.058901608,0.9831293,0.1731684,0.058638167,0.9832173,0.17275794,0.057678323,0.9834818,0.17157142,0.05694477,0.9835878,0.17120859,0.05672354,0.98360515,0.17118235,0.05659494,0.9835733,0.17140752,0.05590494,0.9828902,0.17550376,0.055812713,0.98303396,0.17472598,0.055606104,0.98319554,0.17388079,0.05514099,0.9834753,0.17244056,0.055178788,0.9836816,0.17124785,0.05510028,0.9838983,0.17002386,0.054235443,0.98419577,0.1685741,0.05349716,0.98437136,0.16778277,0.053041648,0.98445624,0.16742922,0.05170677,0.9846277,0.16683725,0.050878413,0.98468304,0.16676544,0.050837025,0.9846359,0.16705611,0.042446606,0.9831622,0.17773676,0.039355677,0.98347515,0.17671362,0.037731823,0.98394454,0.1744403,0.033395976,0.98385483,0.1758248,0.038985007,0.9825074,0.18209714,0.04480853,0.97940457,0.19687286,0.05005124,0.9794343,0.19545664,0.049720146,0.9798985,0.19320145,0.05675752,0.98049,0.1881963,0.055665106,0.9776256,0.20285371,0.06370634,0.97333336,0.22037177,0.06678892,0.9734967,0.21873137,0.06642095,0.97441185,0.21473208,0.066047944,0.9759143,0.2079156,0.065783575,0.97811335,0.19739991,0.06649874,0.9803042,0.18596146,0.061522853,0.98214644,0.17777322,0.059669346,0.9824885,0.17651033,0.055193853,0.9833608,0.17307556,0.044746235,0.98288107,0.17872487,0.044618312,0.98274106,0.1795251,0.049057573,0.9805304,0.1901407,0.049775712,0.98068625,0.18914783,0.05191076,0.980687,0.1885688,0.05577344,0.98040384,0.1889382,0.06562704,0.9782384,0.19683175,0.066079296,0.97950286,0.19028318,0.05622461,0.9830541,0.17448035,0.050870143,0.98455036,0.16754937,0.050775487,0.9845178,0.16776925,0.05380867,0.9815476,0.18349107,0.04058525,0.981545,0.18687518,0.051313154,0.98072505,0.18853483,0.058952384,0.9794677,0.19278932,0.06653166,0.97880477,0.19368729,0.068075,0.98131514,0.17996228,0.04101564,0.981515,0.18693872,0.04103786,0.9813405,0.18784742,0.049596444,0.98068625,0.18919492,0.051659264,0.9808574,0.18775024,0.06633246,0.97898936,0.19282065,0.0373261,0.98255926,0.18216488,0.041156363,0.98147106,0.18713817,0.049296565,0.98063165,0.18955569,0.051412683,0.98089135,0.18764031,0.06610163,0.97928977,0.19136892,0.044826325,0.98275554,0.17939384,0.037615832,0.9825841,0.18197107,0.055964407,0.98046494,0.18856439,0.038559616,0.98258907,0.18174684,0.03879547,0.9800695,0.19482975,0.03852633,0.98030806,0.19367976,0.03810517,0.98041093,0.19324195,0.03769679,0.98056686,0.19252945,0.037820578,0.9806982,0.19183488,0.037627984,0.98079675,0.1913684,0.036780335,0.98111206,0.1899113,0.03602542,0.98125064,0.18933924,0.035267424,0.9813025,0.18921311,0.0354708,0.9810821,0.19031502,0.035970066,0.9807984,0.19167851,0.036722425,0.9805685,0.19270912,0.037031032,0.9804252,0.19337843,0.038576532,0.9797967,0.19624025,0.038916543,0.97971976,0.19655697,0.03951909,0.97971106,0.1964802,0.041217633,0.97932535,0.19804797,0.04230704,0.978956,0.19963789,0.04280663,0.97898346,0.19939649,0.0423362,0.9792427,0.19822073,0.041652735,0.97948706,0.19715507,0.04137829,0.97960794,0.19661146,0.041081443,0.9797017,0.19620638,0.040229842,0.97983795,0.1957017,0.03932456,0.9800934,0.1946035,0.040426426,0.9795339,0.19717763,0.053829495,0.9855431,0.16064642,0.054130625,0.9857062,0.15954052,0.053252243,0.98584527,0.15897587,0.05256614,0.98587453,0.1590226,0.052469816,0.9857968,0.1595356,0.05258291,0.9856687,0.16028808,0.09337455,0.98133314,0.16812627,0.09229578,0.98152995,0.16757205,0.091345906,0.9815182,0.1681603,0.09111105,0.9814985,0.16840275,0.09127116,0.98138344,0.16898556,0.09067421,0.98132104,0.16966803,0.090437606,0.98113155,0.17088579,0.09106986,0.98105234,0.17100458,0.09195192,0.98124963,0.16939293,0.09315183,0.98122567,0.16887553,0.09464935,0.9811314,0.16859043,0.095336825,0.9813086,0.16716576,0.0950432,0.98136526,0.16699995,0.09430158,0.981312,0.16773182,0.1733744,0.8463057,0.5036943,0.17398632,0.8465272,0.50311077,0.17262448,0.8471219,0.5025787,0.17206028,0.8472654,0.5025302,0.17161153,0.84712374,0.50292236,0.17161547,0.84650135,0.5039679,0.17073756,0.84678525,0.503789,0.16927041,0.8464773,0.50480056,0.16844878,0.84579146,0.506223,0.16784148,0.8448431,0.5080053,0.16735066,0.84442973,0.5088538,0.16699225,0.84392214,0.5098127,0.1674167,0.84291446,0.5113383,0.16812673,0.8418789,0.5128093,0.16801383,0.8412455,0.51388466,0.1688171,0.8406774,0.5145506,0.16958602,0.83993536,0.5155086,0.17049807,0.83946055,0.515981,0.17012243,0.83876705,0.5172312,0.16998781,0.8379141,0.5186561,0.17086521,0.8380192,0.5181977,0.17147592,0.8384635,0.51727647,0.17224586,0.8405375,0.513642,0.1734768,0.8409703,0.51251805,0.17347983,0.8417326,0.5112641,0.17408009,0.8423252,0.5100827,0.17459553,0.8424368,0.5097222,0.17315271,0.8432329,0.5088972,0.17275128,0.84553856,0.50519454,0.1732848,0.84564954,0.50482595,0.17185523,0.84021693,0.5142969,0.17367683,0.84208626,0.5106145,0.17229638,0.8453196,0.505716,0.17139453,0.8395027,0.5156153,0.1576184,0.8313744,0.5328912,0.15788822,0.83186233,0.5320492,0.15804012,0.8368142,0.5241806,0.15844189,0.8371514,0.5235205,0.15824233,0.8385299,0.52137035,0.1588295,0.8406423,0.5177777,0.15878043,0.84084296,0.5174667,0.1584894,0.84132653,0.5167695,0.15892603,0.84169763,0.51603067,0.15861632,0.84181494,0.5159345,0.15798607,0.8419354,0.51593137,0.1578386,0.8416783,0.5163958,0.15781206,0.84104085,0.51744145,0.1575982,0.8403264,0.51866585,0.15762097,0.8395314,0.51994485,0.1571729,0.8377378,0.5229647,0.1563892,0.83749807,0.52358323,0.15566458,0.8345498,0.5284838,0.15584774,0.8337282,0.5297252,0.15662274,0.83205956,0.53211486,0.15718047,0.831409,0.5329666,0.10062376,0.8579472,0.5037872,0.0997736,0.8578701,0.5040874,0.09961413,0.85757655,0.50461817,0.09960508,0.85706496,0.5054883,0.09998987,0.85647166,0.50641716,0.10049604,0.85596406,0.50717455,0.101178646,0.8542768,0.50987655,0.10219832,0.8524178,0.5127761,0.10217315,0.851947,0.51356304,0.10229828,0.8514446,0.5143707,0.10402916,0.85117763,0.5144653,0.104841545,0.84914094,0.51765615,0.10608956,0.84805936,0.5191727,0.107570566,0.8478,0.5192915,0.10843227,0.8458624,0.5222636,0.1086261,0.8454266,0.52292854,0.110053815,0.84507006,0.52320623,0.11031448,0.8444466,0.5241571,0.11088269,0.843597,0.5254038,0.11158336,0.84269744,0.5266974,0.11236198,0.8428938,0.52621746,0.113948196,0.8408213,0.5291837,0.117447264,0.83777964,0.5332273,0.11911814,0.8369868,0.53410107,0.12098421,0.8354511,0.5360823,0.12173546,0.83531994,0.5361167,0.12297431,0.8334269,0.53877354,0.12217084,0.8334594,0.53890604,0.12112136,0.8333129,0.5393693,0.121627055,0.83277076,0.5400924,0.122228794,0.8324078,0.54051596,0.122247905,0.8313242,0.54217666,0.12017889,0.831886,0.5417773,0.11984764,0.83186233,0.54188704,0.120460145,0.8314265,0.54241985,0.12147905,0.83037806,0.5437969,0.12459689,0.8278825,0.5468877,0.12669736,0.8252377,0.55039126,0.12671687,0.82445425,0.5515596,0.12690099,0.82394415,0.55227906,0.12659794,0.8232491,0.553384,0.13101599,0.8226046,0.55331403,0.13541289,0.82341933,0.551039,0.13817012,0.8230589,0.5508929,0.13905571,0.82310295,0.5506042,0.14020239,0.82440025,0.5483681,0.1391922,0.825472,0.54701144,0.14038737,0.8295119,0.5405566,0.1414072,0.8292319,0.5407203,0.14229457,0.82936096,0.5402894,0.14456439,0.8307146,0.53760064,0.14722861,0.83050674,0.53719854,0.14881986,0.8308194,0.53627574,0.1508826,0.8306368,0.5359823,0.15201408,0.8302551,0.53625387,0.15272172,0.8306676,0.53541327,0.15321451,0.8312039,0.5344394,0.1535259,0.8338938,0.53014237,0.15377223,0.83475167,0.528719,0.15450247,0.83589625,0.5266939,0.15463556,0.83684736,0.5251422,0.15460205,0.8379741,0.5233523,0.15465643,0.8393179,0.5211783,0.1541628,0.84001493,0.52020067,0.15336454,0.8411819,0.5185483,0.15407161,0.842736,0.51580805,0.15396681,0.84339786,0.51475656,0.15275857,0.8447181,0.51294845,0.15227847,0.8458296,0.51125675,0.15178715,0.8463071,0.51061225,0.15173304,0.84724146,0.5090766,0.1525834,0.84728444,0.50875074,0.15159427,0.8495318,0.5052869,0.15198115,0.85002375,0.5043425,0.15113331,0.8508375,0.5032238,0.15000571,0.85204065,0.50152266,0.15140489,0.8522717,0.50070906,0.15213154,0.85257244,0.49997625,0.15055151,0.8534166,0.49901333,0.14957109,0.85354763,0.4990841,0.14772867,0.853668,0.49942687,0.14701475,0.85356766,0.4998089,0.14626919,0.8538082,0.4996167,0.145329,0.85388404,0.49976146,0.1461018,0.8541288,0.49911752,0.14897098,0.8540157,0.4984624,0.15190265,0.85404277,0.49753046,0.15273657,0.85455704,0.49639073,0.15454625,0.8551881,0.49474117,0.15513904,0.85589176,0.49333677,0.15670884,0.8564131,0.49193382,0.1573084,0.8568528,0.4909759,0.1579009,0.8567588,0.49094975,0.15892628,0.85719097,0.48986334,0.1597047,0.8577269,0.48867068,0.16107939,0.8581489,0.48747712,0.16128333,0.8583536,0.4870491,0.161493,0.8587787,0.48622945,0.16131878,0.85976607,0.4845395,0.16202448,0.85978043,0.4842785,0.16286124,0.8600932,0.48344177,0.16205516,0.860693,0.48264444,0.16155814,0.8608127,0.4825976,0.16119285,0.8607129,0.48289767,0.16079186,0.86046296,0.48347646,0.16025564,0.8605228,0.48354793,0.15974113,0.8604499,0.4838479,0.15854172,0.8610117,0.48324257,0.1590377,0.8609241,0.48323557,0.15945925,0.8610763,0.48282546,0.159793,0.8614241,0.48209417,0.16027018,0.8615439,0.48172143,0.1613852,0.86221117,0.48015273,0.16173401,0.8625218,0.479477,0.1621206,0.86301994,0.47844905,0.16322781,0.8636856,0.47686875,0.16373214,0.86389905,0.476309,0.16355143,0.86451864,0.4752457,0.16251577,0.8655213,0.47377372,0.1619259,0.8658523,0.47337067,0.161442,0.8662512,0.4728059,0.16063847,0.86671823,0.47222322,0.15821053,0.8673564,0.471871,0.15790695,0.8682297,0.47036433,0.15621343,0.8689522,0.46959493,0.15220618,0.87045383,0.4681275,0.15138492,0.87112635,0.46714184,0.15074378,0.871043,0.46750435,0.14923276,0.8706576,0.46870553,0.14875364,0.87108743,0.46805882,0.14825065,0.87145084,0.4675416,0.14787483,0.8715796,0.46742067,0.14707579,0.87157166,0.4676875,0.1449284,0.8726084,0.46642286,0.1448507,0.8730256,0.46566582,0.1436031,0.874212,0.46382272,0.1435303,0.8744998,0.46330243,0.14258549,0.8758567,0.4610254,0.14207344,0.8767206,0.45953903,0.1418148,0.876964,0.4591544,0.14194867,0.8772464,0.4585731,0.14156866,0.8776286,0.45795885,0.14114073,0.8778299,0.4577051,0.14100403,0.8784696,0.45651838,0.14065368,0.8788557,0.45588285,0.14020649,0.87944704,0.45487916,0.1405137,0.8801159,0.4534886,0.14005154,0.8806805,0.45253444,0.14129303,0.8804086,0.45267752,0.14235987,0.8803488,0.45245954,0.14064132,0.88266975,0.4484575,0.14065066,0.8831331,0.4475414,0.14048052,0.88430655,0.44527206,0.14067599,0.8846811,0.44446552,0.14112826,0.8848495,0.44398665,0.1402226,0.8850987,0.44377694,0.13900095,0.8868699,0.44061375,0.13962188,0.8866158,0.44092867,0.14020565,0.8866146,0.44074583,0.14051914,0.8870179,0.43983355,0.14140593,0.88703287,0.4395192,0.14190799,0.8876423,0.43812463,0.14249195,0.88781965,0.4375755,0.1421337,0.8880263,0.4372726,0.14118524,0.88829255,0.43703893,0.14137527,0.8884561,0.43664494,0.14143498,0.8887856,0.43595442,0.1408082,0.8893057,0.4350959,0.14031312,0.8896597,0.43453172,0.1401282,0.8901076,0.4336734,0.14071761,0.8896865,0.43434593,0.14178695,0.88970363,0.433963,0.14178456,0.88951176,0.43435693,0.14186044,0.88934195,0.4346798,0.14259195,0.8893314,0.43446192,0.14282164,0.88951373,0.434013,0.14289317,0.8898075,0.4333868,0.14428858,0.8901798,0.43215823,0.14427593,0.89043784,0.43163046,0.14415912,0.89067817,0.4311734,0.14412367,0.89091825,0.430689,0.14266424,0.89097786,0.4310515,0.14272511,0.8912609,0.4304457,0.14317548,0.8913035,0.43020797,0.14396966,0.8915093,0.42951587,0.14400987,0.89200604,0.42846984,0.14396764,0.89241475,0.4276321,0.14442945,0.89240134,0.42750442,0.14500996,0.892572,0.42695126,0.14546087,0.8925643,0.4268139,0.14570852,0.89263767,0.42657596,0.14555481,0.89277554,0.42633975,0.1450535,0.8928857,0.42628002,0.14513794,0.8930376,0.4259329,0.14685532,0.89288265,0.42566904,0.14779171,0.8937425,0.42353514,0.14799035,0.894759,0.4213137,0.1492986,0.89434457,0.42173186,0.14908461,0.8946242,0.4212141,0.14967144,0.89483505,0.42055756,0.15030734,0.8946071,0.42081568,0.15076624,0.8946486,0.42056325,0.15138832,0.8957936,0.41789404,0.15322861,0.8961958,0.416358,0.1541101,0.8966634,0.41502383,0.15442821,0.8970558,0.41405648,0.15575475,0.89746064,0.41268006,0.15613644,0.89778036,0.41183963,0.15721995,0.9010707,0.4041701,0.1582322,0.9016785,0.40241575,0.15822728,0.901954,0.40179983,0.15813336,0.9023077,0.40104192,0.15678565,0.90291816,0.4001963,0.1558629,0.90355486,0.39911824,0.15495288,0.9042668,0.39785832,0.15415345,0.9046361,0.39732888,0.153811,0.905874,0.394632,0.15430123,0.9064014,0.3932272,0.1546654,0.90723336,0.3911602,0.15450746,0.9074902,0.39062637,0.15400232,0.90782857,0.39003918,0.15350942,0.90810925,0.3895798,0.15282534,0.90838385,0.3892084,0.15266737,0.9086602,0.38862503,0.15386754,0.90817636,0.38928208,0.15411489,0.90822625,0.38906762,0.15391836,0.90850174,0.38850188,0.15370338,0.9086288,0.3882897,0.15296301,0.90929496,0.38702065,0.1537682,0.9092606,0.3867823,0.15498798,0.9094106,0.38594186,0.15513869,0.90950555,0.38565743,0.15518717,0.9097466,0.38506886,0.15461867,0.9101954,0.3842361,0.15574811,0.91017985,0.38381654,0.15601984,0.91034365,0.38331747,0.15581803,0.91046804,0.383104,0.15549204,0.91056675,0.3830019,0.15526256,0.9107625,0.3826293,0.15646285,0.91066605,0.38236988,0.15640251,0.91083884,0.3819828,0.15576373,0.9117665,0.38002554,0.15583916,0.91205686,0.37929732,0.1557281,0.91242516,0.37845618,0.15632005,0.91249627,0.37804043,0.15716025,0.9120796,0.37869707,0.1576256,0.9121669,0.37829313,0.15806238,0.912627,0.37699905,0.15972215,0.9120233,0.37775955,0.16124716,0.911657,0.37799588,0.16150077,0.91176134,0.3776358,0.16171162,0.91202086,0.37691814,0.16289313,0.91215116,0.37609315,0.16402654,0.9121582,0.37558326,0.16452895,0.912324,0.37496018,0.16612948,0.9119929,0.3750599,0.16771191,0.91215783,0.37395298,0.16581854,0.91347337,0.3715786,0.16500846,0.9139734,0.37070858,0.16387503,0.91459477,0.36967742,0.16259281,0.91489744,0.36949465,0.16186811,0.91533,0.3687407,0.16149305,0.9156927,0.36800393,0.16087583,0.9162279,0.36694068,0.16040756,0.9169261,0.36539835,0.16067402,0.91710085,0.36484233,0.16083421,0.9175924,0.36353335,0.16062962,0.9179487,0.36272335,0.16017026,0.91849387,0.36154452,0.16000448,0.9189684,0.3604104,0.16009007,0.9192078,0.35976124,0.15983109,0.91939795,0.35939032,0.15935813,0.9196696,0.358905,0.15853901,0.9200543,0.35828117,0.1550545,0.9223212,0.35395154,0.15542172,0.92260873,0.3530399,0.15539017,0.9227307,0.35273507,0.15452443,0.92336375,0.35145646,0.15396717,0.92347854,0.3513994,0.15314919,0.92353964,0.35159612,0.1527204,0.9235449,0.35176888,0.1522224,0.9242941,0.35001248,0.15223914,0.92448205,0.3495085,0.1521112,0.92464113,0.3491432,0.15019019,0.9263657,0.3453832,0.15060376,0.9267465,0.34417936,0.15050212,0.92688537,0.34384978,0.14793794,0.9277625,0.3425947,0.14745018,0.92803353,0.3420705,0.14659745,0.9280745,0.3423259,0.14532253,0.9288585,0.3407393,0.14422122,0.9292387,0.34017006,0.14318027,0.92956644,0.3397141,0.14260633,0.92971873,0.3395386,0.13966067,0.93018746,0.33947924,0.13858527,0.93027663,0.3396756,0.13715337,0.9305493,0.33950981,0.13595675,0.9308909,0.33905438,0.13500275,0.9311102,0.33883333,0.13410974,0.93138003,0.3384461,0.1329836,0.93163204,0.33819678,0.13252777,0.93184716,0.33778286,0.13119802,0.93224454,0.33720496,0.13050525,0.9325055,0.33675197,0.12849316,0.93299705,0.33616364,0.12825793,0.93319046,0.33571637,0.12807363,0.93337685,0.33526823,0.12793213,0.9334542,0.3351068,0.10299933,0.85154694,0.5140613,0.12268456,0.8350181,0.53637046,0.12586714,0.8271399,0.54771984,0.12657529,0.8260373,0.54921865,0.14153814,0.8303444,0.5389761,0.14990358,0.8308446,0.5359349,0.15371875,0.8404502,0.5196287,0.15325055,0.8440314,0.5139312,0.15940219,0.8601323,0.48452392,0.15487155,0.86916304,0.4696493,0.15393075,0.86956304,0.46921787,0.1451267,0.8720759,0.46735623,0.14172105,0.88081366,0.4517548,0.13812163,0.88707846,0.44047043,0.1477547,0.89437884,0.42220262,0.14891401,0.8950047,0.42046556,0.15622786,0.90015143,0.40659595,0.1535046,0.9053977,0.3958425,0.1558348,0.9115827,0.38043723,0.15740503,0.92052245,0.35757804,0.15226816,0.92399883,0.35077143,0.14910772,0.9272971,0.3433467,0.12305671,0.8316045,0.5415635,0.13816191,0.82638484,0.5458932,0.13970597,0.8291776,0.5412455,0.14987643,0.87069327,0.46843383,0.14628683,0.8715633,0.46795034,0.14138055,0.8811556,0.45119438,0.14148447,0.88814145,0.4372492,0.13998817,0.88999957,0.43394017,0.15080771,0.8952315,0.41930607,0.15349439,0.9048916,0.39700204,0.15327413,0.9087353,0.38821036,0.15464704,0.91002166,0.38463596,0.15583913,0.9125639,0.37807578,0.15508422,0.9220925,0.3545339,0.15133351,0.9251845,0.34804,0.15061186,0.925848,0.34658548,0.12335271,0.8340358,0.53774375,0.12266491,0.83139336,0.54197645,0.12636001,0.82657146,0.548464,0.13791059,0.8274004,0.5444164,0.15718861,0.8603809,0.48480564,0.15891413,0.86706406,0.47217184,0.14080669,0.88184977,0.4500161,0.13907056,0.88567513,0.4429887,0.15243937,0.90863526,0.38877267,0.15243079,0.92374057,0.35138047,0.13816047,0.82793844,0.54353434,0.13821623,0.88641787,0.44176877,0.1529669,0.908935,0.38786376,0.16052553,0.9166658,0.36599916,0.15538664,0.9217558,0.35527635,0.1420756,0.83061445,0.5384182,0.15286613,0.9091385,0.38742635,0.15647246,0.9209687,0.35683754,0.15585414,0.9213849,0.3560328,0.14396621,0.84244573,0.51919067,0.1622404,0.9150683,0.36922628,0.15257335,0.92361385,0.35165164,0.11344298,0.8463623,0.520386,0.14371225,0.842315,0.51947296,0.15881416,0.8599967,0.4849575,0.13808772,0.88671076,0.44122085,0.14729063,0.89762586,0.4154194,0.120903,0.8429513,0.5242285,0.14285356,0.8417512,0.52062243,0.15746054,0.860111,0.4851961,0.14722806,0.89757365,0.4155544,0.106927104,0.88912034,0.4450075,0.12258368,0.84802186,0.5155892,0.14260256,0.8415741,0.52097756,0.13916773,0.82881063,0.5419458,0.1468735,0.89952207,0.41144654,0.14646685,0.92180467,0.35892004,0.116516925,0.9193342,0.37583044,0.106973045,0.88887256,0.44549114,0.12222115,0.85345,0.506641,0.13011198,0.8409279,0.5252724,0.11449647,0.8654978,0.48765156,0.14213793,0.84115326,0.5217834,0.14520027,0.92026156,0.3633669,0.12273606,0.919897,0.37245852,0.122553654,0.86629176,0.4842718,0.13042666,0.84766906,0.5142431,0.114552416,0.8837822,0.45365927,0.14419103,0.8616067,0.48666498,0.1427147,0.85075754,0.5058103,0.14070266,0.8395331,0.5247732,0.1449773,0.9199517,0.36423957,0.11609223,0.9082184,0.40207204,0.12443785,0.9159925,0.38140923,0.13146041,0.92343706,0.36053047,0.12518221,0.8865038,0.4454665,0.14034805,0.911381,0.3868942,0.13919623,0.9212448,0.36322498,0.14061081,0.9009638,0.41047886,0.12447042,0.88751554,0.44364765,0.13973975,0.9100662,0.3901952,0.1402317,0.900272,0.41212302,0.13897386,0.9206245,0.3648791,0.13945395,0.8988816,0.4154087,0.123320654,0.88923764,0.4405093,0.12373281,0.9051539,0.40667754,0.12288682,0.8900111,0.43906623,0.1742672,0.8473315,0.5016575,0.17560221,0.8477047,0.50056034,0.17509118,0.8478403,0.5005097,0.17379424,0.8478755,0.5009019,0.17329746,0.84722424,0.5021744,0.17393427,0.846797,0.5026746,0.17441207,0.84675306,0.50258297,0.16223903,0.85734326,0.48850897,0.162572,0.8574288,0.48824814,0.1628044,0.858106,0.48697925,0.16261372,0.85813534,0.48699123,0.16212949,0.8579673,0.48744857,0.16205144,0.85778725,0.4877913,0.1620374,0.85737044,0.48852816,0.16212164,0.8615599,0.4810728,0.16258754,0.86184704,0.48040083,0.16254336,0.8619357,0.48025677,0.16182996,0.86205226,0.4802884,0.16152833,0.86185783,0.48073867,0.1615757,0.86150324,0.48135793,0.16152926,0.86143273,0.4814997,0.16193524,0.86107284,0.48200685,0.16198768,0.86136645,0.4814642,0.16820084,0.9122085,0.37360966,0.16949752,0.9119803,0.37358072,0.17005908,0.9122776,0.37259835,0.17058404,0.9123467,0.3721889,0.1708069,0.9118131,0.37339237,0.17198904,0.9111927,0.37436286,0.172668,0.91108984,0.37430084,0.17313203,0.91111827,0.37401712,0.17767659,0.909811,0.37506667,0.17827342,0.90889233,0.37700564,0.17894934,0.9080935,0.378607,0.1793474,0.9073617,0.3801701,0.18020949,0.907034,0.38054428,0.18102941,0.9063776,0.3817171,0.18052262,0.90619177,0.38239777,0.18045925,0.9059462,0.38300902,0.18102412,0.90522397,0.3844475,0.18034147,0.905385,0.384389,0.17899285,0.9054505,0.3848648,0.17789568,0.90521383,0.38592884,0.17759149,0.90487385,0.38686514,0.1769526,0.9048346,0.38724932,0.17717385,0.9043708,0.38823056,0.17694907,0.90393424,0.38934803,0.17691404,0.90270007,0.3922168,0.17598829,0.9017268,0.39486316,0.17603001,0.90088105,0.39677045,0.17569196,0.90076077,0.39719316,0.17502756,0.8998182,0.3996156,0.17523694,0.89910686,0.40112197,0.17454202,0.8990576,0.40153518,0.17367822,0.8979979,0.4042717,0.17305759,0.8977582,0.40506953,0.17247896,0.8974265,0.40605015,0.17148583,0.89635766,0.4088222,0.17009956,0.89608276,0.41000223,0.17047253,0.89555633,0.4109963,0.1700713,0.8948655,0.41266382,0.16942084,0.89496857,0.41270795,0.16956599,0.89472055,0.41318583,0.16998596,0.8944852,0.4135227,0.16938733,0.894582,0.413559,0.1692705,0.8944505,0.41389108,0.16993539,0.8939759,0.4146432,0.17034414,0.8937291,0.4150074,0.1680809,0.89266646,0.418205,0.16722617,0.8928822,0.41808698,0.1655529,0.8926196,0.4193119,0.165862,0.89223546,0.42000675,0.16624366,0.89190584,0.42055562,0.167275,0.8913177,0.42139265,0.16600363,0.89126986,0.42199627,0.16635923,0.89061,0.4232475,0.16531904,0.8893408,0.42631277,0.16521603,0.8889371,0.42719364,0.16530804,0.8885312,0.42800176,0.16556947,0.88799965,0.42900276,0.16646257,0.88713,0.4304539,0.16720153,0.88631725,0.43183953,0.1687923,0.8857388,0.43240714,0.16968882,0.88477486,0.4340267,0.16991785,0.8838689,0.43577942,0.17025769,0.88286275,0.43768218,0.17408954,0.88049996,0.4409225,0.17434019,0.8802029,0.44141635,0.17518269,0.8795784,0.4423266,0.17520975,0.8793845,0.44270122,0.17467538,0.87937564,0.44293,0.17457359,0.8792494,0.44322073,0.17495473,0.879011,0.44354317,0.17523116,0.87889636,0.44366115,0.17547148,0.8786865,0.4439817,0.17501888,0.8786865,0.44416034,0.17514595,0.87844193,0.44459388,0.17658707,0.8756934,0.44941974,0.17639071,0.8751204,0.4506114,0.17676574,0.87434435,0.45196882,0.17756343,0.8733479,0.45357993,0.17822146,0.8726446,0.45467404,0.1786767,0.8720421,0.45565024,0.1789991,0.8715303,0.45650217,0.1794269,0.8711828,0.45699722,0.18030377,0.8709602,0.45707652,0.18120609,0.8706216,0.45736456,0.18182236,0.87106735,0.45627,0.18238093,0.87116355,0.45586318,0.18327281,0.8704023,0.45695838,0.1839373,0.87035817,0.45677534,0.18708819,0.8695029,0.4571244,0.18932293,0.8692928,0.45660362,0.1898659,0.86914194,0.45666528,0.18981038,0.8684702,0.45796457,0.18995349,0.86830914,0.45821053,0.19029403,0.8677561,0.45911604,0.18993343,0.8677769,0.45922604,0.1899735,0.8673912,0.45993757,0.19025894,0.8673051,0.45998195,0.19032528,0.86681217,0.46088278,0.19042931,0.86665535,0.46113473,0.19087227,0.8662801,0.46165633,0.19235662,0.8662698,0.46105906,0.1927125,0.8663533,0.46075362,0.19301905,0.86652476,0.4603026,0.19325523,0.86669487,0.45988303,0.19331726,0.8669086,0.45945385,0.19342083,0.8678497,0.45763007,0.19473642,0.866884,0.45890075,0.19572929,0.86643755,0.4593212,0.1968126,0.8652625,0.46107006,0.19621867,0.8648782,0.46204323,0.19609834,0.8645061,0.46278998,0.1966231,0.86441535,0.46273687,0.19774413,0.8646689,0.46178457,0.19916587,0.8659052,0.45884764,0.20030852,0.86574745,0.45864788,0.2013566,0.8657257,0.45822984,0.20583194,0.8663946,0.4549655,0.20678142,0.8662111,0.45488432,0.2071989,0.86642903,0.4542789,0.20910542,0.867404,0.4515366,0.20996876,0.8673963,0.45115048,0.21129276,0.8677142,0.44991937,0.21182117,0.86818445,0.4487623,0.2132077,0.868296,0.4478889,0.21366064,0.868653,0.4469799,0.21430273,0.8689185,0.4461558,0.2151946,0.86834973,0.44683337,0.21552597,0.86835057,0.44667202,0.21646386,0.8690357,0.4448824,0.21719708,0.8689902,0.4446139,0.21703085,0.8692498,0.44418728,0.21641,0.8697128,0.44358346,0.2156954,0.87013406,0.44310525,0.21630992,0.8701399,0.44279402,0.21807034,0.8695517,0.44308597,0.21928966,0.8697024,0.44218755,0.21960795,0.87007016,0.44130516,0.21933486,0.87080055,0.43999842,0.21985,0.8711762,0.43899667,0.21979946,0.87075067,0.43986523,0.22006273,0.87011135,0.44099727,0.22057581,0.869606,0.4417371,0.22096793,0.8698197,0.44112006,0.221727,0.8699693,0.44044355,0.22337796,0.87011045,0.43932912,0.22396034,0.87057173,0.43811715,0.22513704,0.87068784,0.43728253,0.22733548,0.87005335,0.43740794,0.227632,0.87027633,0.43680975,0.22867306,0.87034684,0.43612495,0.22913544,0.87063795,0.43530053,0.17020181,0.9125371,0.371897,0.17043273,0.912543,0.37177676,0.18104546,0.9056902,0.3833377,0.17166156,0.88224965,0.43836954,0.17554496,0.8780735,0.4451639,0.17656498,0.8760585,0.44871622,0.19056469,0.8682478,0.4580729,0.19066647,0.8678133,0.45885336,0.1963118,0.86638564,0.45917052,0.20351267,0.8661055,0.4565565,0.20742495,0.8670207,0.4530452,0.21589905,0.8687577,0.44569904,0.1805832,0.90678763,0.38095397,0.18147352,0.905275,0.38411525,0.1705781,0.8934533,0.41550487,0.16952017,0.8929329,0.4170536,0.17289841,0.88139963,0.43959162,0.17621315,0.87698853,0.44703475,0.18959121,0.8693657,0.4563535,0.18981312,0.8693273,0.4563343,0.19682847,0.86621577,0.45926982,0.19704387,0.8657828,0.45999327,0.2196658,0.871453,0.43853924,0.22482423,0.8707289,0.43736166,0.17652796,0.91029596,0.37443176,0.16930929,0.8852101,0.4332868,0.1751989,0.87946486,0.44254598,0.19073915,0.8680114,0.45844823,0.21940461,0.87142414,0.4387272,0.19843125,0.86537695,0.46016058,0.17617844,0.89547,0.40877202,0.19301906,0.8676494,0.45817924,0.17924406,0.89278996,0.41327676,0.22151333,0.88422894,0.4111825,0.16332123,0.9187935,0.35936698,0.19081002,0.87760717,0.43976945,0.18814988,0.8872,0.42127877,0.18503779,0.8964239,0.40272224,0.19302836,0.86790264,0.4576954,0.2211154,0.88441694,0.4109923,0.16387653,0.9185625,0.35970473,0.18798861,0.8877997,0.42008567,0.18494244,0.8967121,0.40212396,0.19074458,0.8779189,0.43917522,0.18475032,0.8972873,0.40092736,0.20912668,0.88274664,0.42074263,0.21566907,0.8898573,0.40204585,0.20157836,0.8754279,0.43930873,0.1728439,0.9265644,0.334071,0.19074105,0.8781018,0.4388109,0.19074224,0.8780409,0.43893227,0.18797924,0.8879169,0.4198421,0.18474212,0.8973435,0.40080538,0.20687412,0.89710623,0.3903889,0.20349178,0.887752,0.41290125,0.19887549,0.8780161,0.43535766,0.17223832,0.92564404,0.33692294,0.19218047,0.8972645,0.3974709,0.18093008,0.91916287,0.34986278,0.18065596,0.9190035,0.35042256,0.17895432,0.9167912,0.3570283,0.18478969,0.8689105,0.45918122,0.18534768,0.8689484,0.45888445,0.18512656,0.8691087,0.45867014,0.1843355,0.86943597,0.45836836,0.18462682,0.86950964,0.4581113,0.18407106,0.86982644,0.4577333,0.18325755,0.87009704,0.45754546,0.18329383,0.8699454,0.45781916,0.18373193,0.8696022,0.45829526,0.18347259,0.8695054,0.4585827,0.18368585,0.8693383,0.45881417,0.16287465,0.8930506,0.419443,0.16287611,0.8931967,0.41913128,0.1617615,0.89319515,0.41956604,0.16267952,0.8925815,0.42051578,0.16371123,0.8922078,0.42090842,0.1640646,0.892292,0.42059213,0.16403331,0.89242435,0.42032355,0.16423331,0.8926427,0.4197815,0.16435531,0.8925797,0.41986766,0.16464423,0.8925651,0.41978556,0.16441453,0.8929467,0.41906333,0.16391508,0.89307135,0.41899338,0.16294585,0.89291066,0.4197133,0.16312979,0.89276403,0.41995367,0.16353016,0.8928043,0.41971216,0.18774526,0.86904246,0.45773023,0.18660012,0.86924267,0.45781836,0.18629184,0.86911416,0.4581877,0.18638432,0.8687602,0.45882076,0.18629837,0.8685133,0.45932302,0.18692882,0.86832774,0.45941764,0.18747102,0.8680842,0.4596569,0.18786968,0.86773914,0.46014535,0.1884423,0.8674671,0.46042398,0.18926392,0.8674667,0.4600877,0.18893495,0.86779,0.459613,0.1882808,0.8683717,0.45878202,0.18890926,0.8686606,0.45797592,0.18812245,0.86911416,0.45743912,0.18846184,0.8680131,0.45938584,0.18006332,0.87021005,0.4585975,0.17991659,0.8706098,0.45789573,0.17835607,0.87117577,0.4574297,0.17785528,0.8715416,0.4569275,0.17760678,0.8713903,0.45731258,0.17761786,0.8712469,0.4575815,0.17828469,0.8705788,0.4585925,0.17898498,0.8701819,0.45907277,0.17949134,0.8702545,0.45873737,0.18454736,0.8669502,0.46296823,0.18516243,0.8672491,0.4621622,0.18506815,0.8677811,0.46120033,0.18427885,0.8677553,0.46156484,0.18394813,0.86752516,0.4621289,0.1841937,0.86702156,0.46297547,0.18303688,0.86687845,0.4637017,0.1836911,0.86696464,0.4632816,0.18366683,0.86725205,0.46275303,0.18339626,0.8674964,0.46240228,0.1828441,0.86752516,0.46256682,0.18248273,0.86731696,0.46309966,0.18243477,0.86712986,0.46346888,0.17686988,0.9059963,0.3845617,0.17765078,0.90624154,0.38362288,0.17770764,0.9065014,0.38298193,0.17833102,0.90659314,0.38247466,0.17804016,0.90671545,0.38232034,0.17660132,0.9069442,0.382445,0.17578283,0.90685266,0.3830388,0.17548856,0.9066238,0.38371488,0.17592545,0.9061496,0.38463372,0.06824113,0.76743126,0.63748914,0.06796373,0.76777595,0.63710356,0.06758298,0.7677727,0.6371481,0.06669182,0.7679168,0.63706833,0.06559108,0.76697266,0.63831866,0.06513454,0.76618683,0.6393084,0.06487702,0.7656093,0.6400261,0.06444064,0.765142,0.6406287,0.06440105,0.7646474,0.64122295,0.064487986,0.76443976,0.64146173,0.06435133,0.7641716,0.6417949,0.0643759,0.7638895,0.64212817,0.0651482,0.76333266,0.64271224,0.06536054,0.7630314,0.6430483,0.06634003,0.76204455,0.6441173,0.06611548,0.7616835,0.64456725,0.06594901,0.761293,0.6450455,0.065732434,0.76101553,0.6453949,0.04686586,0.7811013,0.62264305,0.04598962,0.78137314,0.6223672,0.04586724,0.7809619,0.62289226,0.04130054,0.77970093,0.6247886,0.04099479,0.77993727,0.6245136,0.040171813,0.78016496,0.62428266,0.039056223,0.7802796,0.62421024,0.038386688,0.78003323,0.6245595,0.036870994,0.7803334,0.6242758,0.03647539,0.7812774,0.62311727,0.035136934,0.7809933,0.62355024,0.032312777,0.78005296,0.6248786,0.06495103,0.77442086,0.629328,0.06273612,0.7746659,0.62925106,0.0624263,0.77501017,0.62885785,0.0620504,0.77542526,0.6283832,0.0621086,0.7756791,0.62806404,0.06299616,0.7763999,0.62708426,0.06311798,0.7765991,0.6268253,0.06306352,0.77702254,0.62630576,0.06367743,0.77809435,0.6249115,0.06372028,0.77852404,0.6243717,0.06334845,0.7788245,0.62403476,0.06284533,0.7790041,0.6238615,0.060445786,0.77976763,0.62314427,0.06005501,0.78015745,0.6226939,0.059694875,0.7802673,0.6225909,0.055163004,0.7815949,0.62134254,0.054955848,0.7820986,0.6207267,0.054627802,0.7822722,0.62053686,0.054240324,0.78201413,0.6208961,0.0537575,0.78160495,0.621453,0.052415714,0.78165174,0.6215088,0.052341096,0.78187764,0.6212309,0.052259,0.7820943,0.62096494,0.051945146,0.78236246,0.62065345,0.051620718,0.78251153,0.6204925,0.049240112,0.7820492,0.62126845,0.048906077,0.78233325,0.6209371,0.04824446,0.7821713,0.6211928,0.047669265,0.7818208,0.62167835,0.047941368,0.78116196,0.62248504,0.04762398,0.78104115,0.62266093,0.03714113,0.78003323,0.62463486,0.0639037,0.7744428,0.62940824,0.06300445,0.77670544,0.626705,0.059198916,0.78013563,0.6228032,0.05552315,0.7809374,0.62213665,0.049888656,0.7817591,0.62158173,0.045485977,0.7805076,0.62348926,0.041851703,0.7794757,0.62503284,0.03747934,0.779838,0.6248583,0.063344374,0.7744983,0.62939644,0.061243556,0.77932084,0.62362504,0.050379373,0.781757,0.6215448,0.044101354,0.77985245,0.62440795,0.037912495,0.77979964,0.6248801,0.057922594,0.7799906,0.6231049,0.05684729,0.7802007,0.62294084,0.052722443,0.78155607,0.62160313,0.062737316,0.7746649,0.62925225,0.04263392,0.77942175,0.6250472,0.27274585,0.67226523,0.68823636,0.2720527,0.6723346,0.6884428,0.2720321,0.6723365,0.6884491,0.27009183,0.6719768,0.6895633,0.26953524,0.6715545,0.6901922,0.2693663,0.670816,0.6909759,0.26936054,0.6704317,0.6913511,0.2682672,0.67080146,0.69141746,0.26730534,0.67139727,0.6912117,0.26632285,0.6713492,0.6916374,0.26333612,0.6700515,0.69403535,0.26321834,0.6693687,0.6947386,0.26175693,0.66739345,0.69718665,0.26157662,0.66749054,0.69716144,0.2614637,0.6673433,0.69734466,0.26151496,0.665315,0.69926095,0.26197746,0.66427916,0.70007217,0.2621851,0.66359663,0.7006415,0.2617719,0.6633269,0.70105124,0.26157477,0.6628983,0.70153016,0.26263574,0.66119933,0.702736,0.2627932,0.6604746,0.70335835,0.26307315,0.6596424,0.70403445,0.26462722,0.6577412,0.70522976,0.26538137,0.6571523,0.70549524,0.26598006,0.65687096,0.70553184,0.26717502,0.65511495,0.70671207,0.26765755,0.6548103,0.7068118,0.27047998,0.6543652,0.7061492,0.27063814,0.6540797,0.7063532,0.27228513,0.65416217,0.7056435,0.27284202,0.6542543,0.7053428,0.27499285,0.6543072,0.70445794,0.27581385,0.65483546,0.70364565,0.276511,0.65478843,0.7034158,0.27808157,0.654331,0.7032222,0.2786014,0.6546925,0.7026799,0.2802345,0.65540594,0.70136416,0.28139803,0.65747285,0.6989597,0.2820758,0.6577823,0.6983951,0.28380713,0.6579081,0.6975747,0.28428373,0.65814614,0.69715595,0.28494626,0.6581006,0.69692844,0.28706792,0.6576828,0.69645196,0.28821668,0.6576186,0.69603807,0.2894575,0.6579036,0.6952534,0.29075736,0.6584073,0.6942334,0.29167575,0.6604913,0.6918646,0.29236552,0.6604772,0.69158673,0.29244152,0.6607369,0.69130653,0.29157943,0.6639995,0.68853915,0.2917258,0.6654511,0.6870741,0.2915973,0.6657494,0.68683976,0.2913793,0.6659751,0.68671346,0.29072213,0.6662084,0.6867657,0.2900331,0.6669904,0.6862978,0.28844935,0.6690476,0.6849615,0.28781727,0.66946363,0.6848209,0.28362924,0.671269,0.6848009,0.28112116,0.67319274,0.68394625,0.28076828,0.67329293,0.6839926,0.28016138,0.6736558,0.68388414,0.2796791,0.67376286,0.68397605,0.27767313,0.67307234,0.68547153,0.2767136,0.6732715,0.685664,0.27582574,0.67329735,0.68599623,0.27527395,0.67312086,0.68639094,0.27483714,0.67305285,0.6866327,0.2740874,0.67259574,0.6873799,0.26899898,0.6704202,0.6915029,0.263614,0.66788834,0.6960121,0.2632239,0.6672322,0.69678855,0.26920158,0.6549772,0.70607036,0.27004167,0.654782,0.7059306,0.29078907,0.6604209,0.6923048,0.27871466,0.67333513,0.6847904,0.26350832,0.6674887,0.6964354,0.2905267,0.6601687,0.6926554,0.28630614,0.66989714,0.6850304,0.28490946,0.6704892,0.68503344,0.24649079,0.66807735,0.70207906,0.24664454,0.6674309,0.70263964,0.24823788,0.66726273,0.70223814,0.25019586,0.66388476,0.70474046,0.24973193,0.66343915,0.70532435,0.24956423,0.6616359,0.7070754,0.25012076,0.6602769,0.70814836,0.25077513,0.659167,0.7089504,0.25097662,0.65745485,0.7104674,0.2517001,0.65518,0.71231055,0.25127864,0.653298,0.7141854,0.2511789,0.6516195,0.7157522,0.25142515,0.65106666,0.7161687,0.25318083,0.6490533,0.7173767,0.25290853,0.6480361,0.71839154,0.2524015,0.64823604,0.7183895,0.25195214,0.648214,0.71856713,0.25264984,0.6474246,0.7190337,0.25336224,0.6465882,0.7195354,0.25472903,0.6455904,0.71994865,0.26270917,0.6401234,0.72195977,0.26313022,0.6388943,0.72289455,0.26339397,0.63891137,0.72278345,0.26390752,0.638756,0.7227334,0.26495042,0.63825226,0.7227969,0.26593736,0.63814336,0.72253054,0.26636362,0.63847727,0.7220784,0.2665758,0.6387835,0.72172916,0.26662678,0.6392856,0.7212656,0.26653644,0.6398713,0.7207795,0.26663518,0.6400652,0.7205708,0.26738253,0.639999,0.7203526,0.26757097,0.640145,0.72015285,0.2674087,0.64066994,0.7197462,0.2667489,0.64132404,0.71940845,0.26598778,0.6425127,0.71862924,0.2662854,0.6426681,0.71838,0.26675016,0.64301735,0.71789485,0.26746672,0.6436639,0.71704835,0.26834348,0.64370304,0.71668553,0.2692779,0.6438921,0.716165,0.2697797,0.64435565,0.715559,0.26973718,0.6448143,0.7151618,0.26983583,0.6466923,0.71342677,0.27008754,0.64725435,0.7128215,0.27008754,0.64801216,0.7121327,0.27032006,0.6487239,0.7113961,0.27116764,0.64902216,0.7108012,0.2719107,0.6493735,0.7101962,0.27227166,0.65028876,0.70921975,0.27238867,0.6510718,0.70845604,0.27224347,0.651551,0.7080712,0.271469,0.6523335,0.7076479,0.27083778,0.6530941,0.70718807,0.26158273,0.66805893,0.6966145,0.2611168,0.66930026,0.695597,0.25982916,0.6713518,0.6941006,0.25916305,0.67202294,0.6937,0.25801775,0.6726891,0.69348127,0.2571525,0.673126,0.69337875,0.25572583,0.6735153,0.6935282,0.25470972,0.6746358,0.6928127,0.25331503,0.67590743,0.69208425,0.25274572,0.6761982,0.6920084,0.2525145,0.6762321,0.6920597,0.24889036,0.6759137,0.6936817,0.24859968,0.67696506,0.6927601,0.24833375,0.67731935,0.6925092,0.2479851,0.6774917,0.69246536,0.24747081,0.6772428,0.6928928,0.24703114,0.67643166,0.69384134,0.24668013,0.6754865,0.69488627,0.24601755,0.6745006,0.6960779,0.24550843,0.6735531,0.6971742,0.24500921,0.6723573,0.6985028,0.24471682,0.6713657,0.69955826,0.24610418,0.67002624,0.7003553,0.24616536,0.6694421,0.7008922,0.24637698,0.6691014,0.7011431,0.25039405,0.6644537,0.7041336,0.25355297,0.64779663,0.71838045,0.26692843,0.64344865,0.71744204,0.26204956,0.6410782,0.7213521,0.25139982,0.6756762,0.6930077,0.249205,0.6755506,0.6939224,0.24549735,0.6708059,0.6998218,0.24984449,0.6663698,0.7025162,0.25367498,0.6481913,0.7179813,0.26610178,0.6421293,0.71892965,0.26976016,0.64607584,0.71401364,0.2599745,0.64336973,0.72006154,0.249697,0.6752835,0.6940054,0.25052202,0.6754142,0.6935808,0.25497434,0.67979884,0.6876493,0.25354233,0.6794263,0.6885465,0.25345203,0.6788601,0.6891378,0.25267804,0.6789259,0.68935734,0.25176606,0.6789296,0.68968725,0.25158116,0.6785704,0.69010806,0.2522051,0.677978,0.6904625,0.2527826,0.67632437,0.6918716,0.27165806,0.6727647,0.6881784,0.27122015,0.67365766,0.6874773,0.27201614,0.6741406,0.68668896,0.27197093,0.67460185,0.68625367,0.27255538,0.6768176,0.68383586,0.2725663,0.67753744,0.68311834,0.27249533,0.67777246,0.6829135,0.27209517,0.6779285,0.68291813,0.26781923,0.6788189,0.68372345,0.26762056,0.6798451,0.682781,0.26648208,0.6803974,0.6826762,0.26529086,0.68088996,0.68264896,0.26493374,0.68143904,0.6822397,0.2634225,0.6825473,0.68171686,0.26238072,0.68316793,0.68149686,0.2612138,0.6834778,0.68163437,0.2590859,0.68472475,0.6811949,0.25898403,0.6850296,0.68092704,0.2586095,0.68532383,0.6807734,0.2581779,0.6852922,0.680969,0.25756764,0.68488246,0.68161196,0.2567629,0.6845297,0.68226963,0.2566874,0.6842724,0.6825561,0.25722227,0.6836607,0.68296766,0.2575893,0.6832719,0.68321836,0.25746438,0.6824345,0.68410176,0.2560232,0.6813985,0.68567353,0.25594166,0.6810348,0.6860652,0.25634363,0.6801825,0.68676025,0.25270927,0.6772811,0.6909619,0.27136618,0.67792225,0.68321437,0.25647113,0.680453,0.68644464,0.27118078,0.67337924,0.6877655,0.25950313,0.68420905,0.6815542,0.25760254,0.6829034,0.68358165,0.2601464,0.6839318,0.6815872,0.021410955,0.6246818,0.7805858,0.021716934,0.62486213,0.780433,0.021690728,0.62526256,0.780113,0.02038334,0.6254049,0.7800341,0.01954362,0.6261713,0.7794405,0.019290952,0.62578255,0.779759,0.01909116,0.6253982,0.78007215,0.019153833,0.6248475,0.78051186,0.020505412,0.6248475,0.7804775,0.04231116,0.64059997,0.7667082,0.04272696,0.6409323,0.7664074,0.04281238,0.6413136,0.76608354,0.04233412,0.6417738,0.7657246,0.042753506,0.6422671,0.7652876,0.042228535,0.64239323,0.7652109,0.03887242,0.64156073,0.76608664,0.03729927,0.64084464,0.7667639,0.031873953,0.63759995,0.769708,0.031875763,0.6370483,0.77016455,0.03221733,0.6366219,0.77050287,0.033088796,0.63648844,0.7705762,0.033661928,0.6357803,0.7711357,0.034663375,0.63649106,0.7705048,0.03696179,0.6362163,0.7706249,0.037335876,0.63486874,0.7717174,0.03775331,0.634529,0.7719765,0.03911391,0.6343037,0.7720939,0.04148147,0.633398,0.77271354,0.04256432,0.63382983,0.7723004,0.043745805,0.63455003,0.7716428,0.044337913,0.63576907,0.77060485,0.04503687,0.6368275,0.7696898,0.045874998,0.637789,0.7688437,0.04646043,0.6387376,0.76802063,0.04624504,0.63958967,0.7673242,0.045524232,0.63980514,0.76718765,0.04479889,0.63993156,0.76712495,0.043464508,0.63952875,0.7675375,0.042378265,0.6415529,0.7659073,0.035433024,0.63683474,0.77018565,0.042160638,0.63997674,0.76723677,0.03633433,0.6366455,0.77030015,0.05724933,0.6405155,0.7658083,0.05748503,0.6406706,0.76566094,0.057817847,0.64141625,0.7650113,0.05770865,0.64168036,0.76479805,0.05642071,0.6432203,0.7635996,0.054166157,0.6437911,0.7632818,0.05143381,0.64363,0.7636066,0.051347088,0.64327514,0.76391137,0.051355828,0.64247155,0.76458675,0.051696245,0.64223576,0.76476187,0.053047437,0.6420633,0.76481414,0.019622965,0.628217,0.77779067,0.020288477,0.6284046,0.77762204,0.022007527,0.6298467,0.7764076,0.021850888,0.63050514,0.7758775,0.02118088,0.63096076,0.7755255,0.01826993,0.6304158,0.77604264,0.01765802,0.6297428,0.776603,0.01763327,0.6290726,0.7771465,0.01704451,0.6289593,0.77725136,0.016614344,0.6280154,0.77802354,0.017076487,0.6276778,0.7782859,0.019147683,0.6273825,0.7784758,-0.023183376,0.68709797,0.7261948,-0.02966412,0.6861743,0.72683215,-0.033042338,0.68724906,0.72567,-0.03641078,0.6877776,0.7250078,-0.03733923,0.6875907,0.72513777,-0.03862161,0.68672705,0.72588867,-0.04327975,0.68774295,0.724663,-0.044573534,0.6884942,0.7238708,-0.045590527,0.68860114,0.7237057,-0.04776273,0.68807447,0.7240665,-0.049202576,0.68834716,0.7237108,-0.05082424,0.6878871,0.7240361,-0.06454616,0.68837804,0.7224746,-0.06714225,0.6890274,0.72161835,-0.071515515,0.68939793,0.7208439,-0.073713794,0.69018894,0.71986496,-0.076710165,0.68955535,0.72015905,-0.07850815,0.68966824,0.7198571,-0.081701845,0.68935287,0.71980375,-0.08346184,0.6895232,0.7194386,-0.087029055,0.68943805,0.71909744,-0.09154791,0.6895516,0.7184271,-0.09311295,0.6908294,0.716997,-0.094348446,0.69138616,0.71629846,-0.09550566,0.6912273,0.71629846,-0.09674009,0.69169647,0.71567965,-0.09876562,0.6909705,0.71610415,-0.10068558,0.6908115,0.7159901,-0.10245214,0.68998665,0.71653473,-0.10403237,0.6893652,0.7169051,-0.10450421,0.6888557,0.71732605,-0.10558707,0.68704724,0.71890014,-0.10643584,0.6869079,0.71890813,-0.10797133,0.68628895,0.7192702,-0.10962194,0.6860292,0.7192684,-0.11220015,0.68625546,0.7186547,-0.11427079,0.6850426,0.71948504,-0.11520961,0.6847278,0.719635,-0.11632252,0.6842165,0.71994233,-0.117310405,0.68245506,0.72145224,-0.1174174,0.68170345,0.7221451,-0.11683956,0.6808613,0.72303283,-0.1162664,0.6802762,0.72367555,-0.11528069,0.6796207,0.72444886,-0.11386233,0.67942315,0.72485834,-0.11404768,0.67901474,0.7252118,-0.11548006,0.6776766,0.7262361,-0.11558242,0.6767969,0.7270396,-0.11502255,0.6766915,0.7272265,-0.112685725,0.6773939,0.72693837,-0.11261135,0.6768747,0.7274333,-0.11280636,0.67639214,0.7278519,-0.11300103,0.67520493,0.7289232,-0.11260717,0.6747509,0.7294044,-0.112060994,0.6744534,0.7297636,-0.11265831,0.67376286,0.7303093,-0.11321812,0.6734574,0.7305045,-0.113381445,0.6728221,0.7310644,-0.11180717,0.67267895,0.73143846,-0.112961784,0.67185754,0.7320158,-0.11461817,0.6704949,0.733007,-0.11479012,0.66844124,0.7348534,-0.11449278,0.66818196,0.7351355,-0.11350269,0.6683658,0.73512197,-0.11217524,0.6692408,0.73452944,-0.11021204,0.6700294,0.7341076,-0.10737232,0.67062193,0.73398733,-0.106611006,0.6709108,0.7338343,-0.10593861,0.6708628,0.7339756,-0.10586124,0.67058027,0.7342449,-0.105539545,0.67003006,0.7347933,-0.10506498,0.6693661,0.73546606,-0.10628662,0.66818446,0.7363644,-0.106485575,0.6677786,0.7367038,-0.10602377,0.6670132,0.7374634,-0.10595259,0.6667922,0.73767346,-0.10569484,0.6666881,0.7378046,-0.10494351,0.6667173,0.7378854,-0.10354984,0.66720754,0.7376392,-0.10259611,0.66762,0.73739916,-0.102302216,0.66744995,0.73759395,-0.09965619,0.6676828,0.7377454,-0.09905558,0.66749436,0.7379968,-0.098667055,0.6672862,0.738237,-0.09741189,0.66700053,0.73866177,-0.096010126,0.66697073,0.7388722,-0.09422293,0.66736996,0.7387417,-0.09341787,0.667771,0.7384815,-0.09322264,0.66821426,0.7381052,-0.09248762,0.66888607,0.73758894,-0.09189413,0.6686662,0.7378624,-0.09102933,0.66849005,0.7381292,-0.08891155,0.6684203,0.7384504,-0.08846869,0.6686656,0.73828155,-0.087756045,0.6685921,0.7384331,-0.086838946,0.6682815,0.7388226,-0.08572775,0.6683829,0.73886067,-0.08508395,0.66639644,0.740727,-0.08528013,0.66528314,0.7417046,-0.085104406,0.66487205,0.7420933,-0.08436999,0.6647663,0.7422718,-0.0831642,0.66477907,0.7423965,-0.08100908,0.6630386,0.7441891,-0.08144284,0.6628281,0.7443292,-0.08210479,0.662032,0.7449647,-0.08368641,0.6609896,0.74571395,-0.08589934,0.6600503,0.74629414,-0.08763673,0.6588799,0.74712586,-0.08889816,0.65747666,0.7482122,-0.090357974,0.6568806,0.7485608,-0.09081901,0.6565599,0.7487864,-0.09102806,0.65617925,0.7490946,-0.09028161,0.6544547,0.75069183,-0.09006939,0.6514902,0.7532914,-0.09026751,0.65102714,0.753668,-0.090528175,0.6492244,0.75519025,-0.09079767,0.6486947,0.75561297,-0.090787135,0.64826584,0.7559822,-0.091080256,0.6467995,0.7572019,-0.092330664,0.6461454,0.7576088,-0.09326629,0.64556897,0.75798553,-0.093559116,0.6450299,0.7584083,-0.09353061,0.6446925,0.75869864,-0.09535974,0.63852185,0.76367295,-0.09984365,0.6385081,0.7631112,-0.100958146,0.6382516,0.7631791,-0.10082986,0.6380252,0.76338524,-0.099932306,0.6365653,0.7647209,-0.09891447,0.6357862,0.7655011,-0.0985691,0.63560855,0.76569307,-0.098351255,0.63389575,0.7671396,-0.09684528,0.6311525,0.7695892,-0.096634775,0.62697035,0.77302647,-0.09798631,0.6262025,0.7734786,-0.09889559,0.6254408,0.773979,-0.099430084,0.6234272,0.7755335,-0.099924654,0.62253463,0.7761866,-0.10008369,0.62193286,0.7766484,-0.09724549,0.61814785,0.78002346,-0.095436156,0.618332,0.78010094,-0.09698436,0.6160744,0.7816946,-0.098556854,0.61574876,0.78175443,-0.10014984,0.6143739,0.7826332,-0.10149872,0.6127191,0.78375596,-0.10246879,0.6119173,0.7842559,-0.10348291,0.6099446,0.78565824,-0.10346639,0.6090879,0.7863248,-0.10320222,0.6077643,0.7873829,-0.10270232,0.60431325,0.7900998,-0.0994746,0.60472125,0.7902006,-0.0967249,0.60457736,0.790652,-0.09608058,0.6048068,0.79055506,-0.09506988,0.6052824,0.7903131,-0.095487595,0.604519,0.790847,-0.09035714,0.6011825,0.79398686,-0.08916691,0.59946567,0.79541826,-0.08803364,0.60053873,0.7947347,-0.086583085,0.6006096,0.7948406,-0.08719109,0.6004059,0.79492795,-0.08820558,0.59969616,0.7953517,-0.08950988,0.59802884,0.7964606,-0.08922539,0.59674335,0.7974561,-0.08754755,0.59573215,0.7983976,-0.08770533,0.59519464,0.798781,-0.08726515,0.59379053,0.7998735,-0.08658909,0.5924883,0.80091196,-0.08493257,0.59044266,0.8025983,-0.08381928,0.5903484,0.80278456,-0.08178244,0.5890317,0.80396104,-0.07927831,0.5881513,0.8048559,-0.07822286,0.5883332,0.8048262,-0.07694165,0.58882654,0.8045889,-0.076082915,0.59002644,0.8037911,-0.07574724,0.58967686,0.80407935,-0.075456575,0.58968854,0.8040981,-0.06915462,0.5948515,0.80085534,-0.065499514,0.5949132,0.8011168,-0.062995896,0.5966332,0.80003774,-0.050021995,0.5981825,0.7997971,-0.047981992,0.59773576,0.80025595,-0.045549378,0.5984051,0.79989785,-0.040567312,0.59822893,0.8002977,-0.038985044,0.5978314,0.8006733,-0.037334792,0.59829044,0.800409,-0.032204174,0.59930056,0.79987603,-0.030588241,0.59826106,0.80071723,-0.029511694,0.59869736,0.80043143,-0.027045721,0.6010599,0.7987462,-0.024975482,0.6050558,0.7957912,-0.018365236,0.6096075,0.7924906,-0.012976327,0.6097487,0.7924885,-0.011371539,0.6098791,0.7924129,-0.010673753,0.6100931,0.79225785,-0.009973653,0.6105744,0.7918961,-0.011238854,0.61249214,0.79039675,-0.010373451,0.6135997,0.7895491,-0.010214388,0.6140942,0.7891666,-0.009397151,0.61555195,0.7880403,-0.008876737,0.6177478,0.78632617,-0.00755262,0.61845124,0.78578687,-0.007131575,0.62001574,0.7845569,-0.005212139,0.62163514,0.78328955,-0.00071944576,0.6236844,0.781676,0.0018570182,0.6251987,0.7804634,0.00274322,0.6260484,0.7797794,0.0021059865,0.6269391,0.7790654,0.00057568,0.64297426,0.76588756,0.0021144745,0.6442116,0.7648444,0.0048394655,0.6470432,0.76243794,0.008307908,0.6510685,0.7589735,0.0087450165,0.6509508,0.75906956,0.009544702,0.6511779,0.7588651,0.011370539,0.65191615,0.75820583,0.0117867235,0.65239424,0.7577881,0.010517093,0.65347093,0.75687855,0.00943848,0.65372247,0.75667554,0.010777583,0.65463,0.7558726,0.013592112,0.6568761,0.7538761,0.015859077,0.6573431,0.7534245,0.020571614,0.65863174,0.75218415,0.027306607,0.6598364,0.75091296,0.028117726,0.66027373,0.75049853,0.030215409,0.6621821,0.7487335,0.039098494,0.6661086,0.74482924,0.040884443,0.66732615,0.74364257,0.04214254,0.668407,0.74260086,0.041922387,0.6701964,0.74099886,0.04172907,0.67057073,0.74067104,0.041074157,0.6708925,0.7404162,0.040882546,0.67245066,0.739012,0.04155387,0.6725005,0.7389292,0.042670462,0.67287004,0.738529,0.042390633,0.6735764,0.73790103,0.041755766,0.67388815,0.7376525,0.021597058,0.6755474,0.73700017,0.018386452,0.6750924,0.73750407,0.018403362,0.6755625,0.737073,0.01828693,0.6759865,0.736687,0.018190147,0.6762126,0.7364819,-0.054626122,0.68727446,0.724341,-0.05728288,0.68728685,0.72412395,-0.08908747,0.6890373,0.7192294,-0.104119934,0.6883156,0.7179002,-0.10514867,0.66964847,0.73519707,-0.08503528,0.66749626,0.73974174,-0.09048844,0.64780444,0.7564134,-0.09514435,0.6307717,0.7701134,-0.099051066,0.62455267,0.77467597,-0.096287504,0.6162764,0.78162146,-0.09509294,0.6056955,0.7899939,-0.07492149,0.5911089,0.8031046,-0.061997663,0.59762853,0.79937255,-0.05348567,0.59840924,0.79940337,-0.044012576,0.5984434,0.79995525,0.00789745,0.65096635,0.75906557,0.02042576,0.67502326,0.73751366,-0.02526982,0.6863906,0.72679394,-0.10417681,0.687587,0.7185898,-0.11227294,0.6728448,0.73121446,-0.09013258,0.65312314,0.75186855,-0.090379454,0.6473635,0.7568038,-0.09439051,0.6388425,0.7635252,-0.09460708,0.63008565,0.77074087,-0.09545526,0.62805855,0.77228934,-0.08766782,0.596179,0.79805076,-0.076601334,0.58990943,0.80382776,-0.07252845,0.59375286,0.801372,-0.036260508,0.5991143,0.799842,-0.034254894,0.5994589,0.79967225,-0.011364331,0.6116875,0.7910179,-0.0004636536,0.6278436,0.7783394,-0.11090164,0.6698143,0.7342,-0.08521338,0.66800255,0.7392641,-0.092171095,0.6435472,0.75983655,-0.07340143,0.5930484,0.8018141,0.040736575,0.6712349,0.74012446,0.019756477,0.6748396,0.7377,0.018660052,0.6747849,0.7377785,-0.0278854,0.6860967,0.72697574,-0.09314652,0.66854966,0.737811,-0.08210989,0.66447663,0.7427845,-0.091948904,0.64307934,0.76025945,-0.09423654,0.6389553,0.7634498,-0.09481417,0.62912035,0.7715036,-0.095616885,0.6173376,0.780866,-0.0018154631,0.62890637,0.77747893,0.019142574,0.6747465,0.7378012,-0.08077712,0.68743694,0.7217378,-0.09289805,0.66876316,0.7376488,-0.08131884,0.6639498,0.7433424,-0.092263415,0.6419464,0.76117826,-0.09521003,0.61824226,0.7801997,-0.061034467,0.5978786,0.79925966,-0.022753099,0.607195,0.79422694,-0.0010065313,0.6411272,0.76743394,-0.08549653,0.6833649,0.7250536,-0.09330486,0.6400881,0.7626149,-0.04182279,0.6025471,0.7969868,-0.07081453,0.68276703,0.7271963,-0.092333175,0.68109685,0.7263481,-0.049325578,0.6844337,0.72740465,-0.031007307,0.6135109,0.7890773,-0.0660929,0.6809468,0.72934437,-0.09000287,0.6801854,0.7274939,-0.042158216,0.68170756,0.7304091,-0.0877355,0.646713,0.7576706,-0.078619584,0.61398685,0.78539103,-0.03147948,0.6133877,0.78915435,-0.060846988,0.6794256,0.7312171,-0.039511554,0.680948,0.7312651,-0.0874125,0.6794244,0.7285201,-0.034200978,0.6794269,0.7329457,-0.07198676,0.63089436,0.772522,-0.06710924,0.614398,0.7861371,-0.07662252,0.6471103,0.7585362,-0.002777176,0.63016903,0.776453,-0.03194923,0.6140293,0.7886364,0.012565494,0.6576016,0.7532611,-0.057417843,0.6787219,0.73214734,-0.032471493,0.6790751,0.7333503,-0.08571701,0.6790726,0.7290494,-0.02900731,0.678371,0.73414665,-0.07203412,0.6310867,0.7723605,-0.076644845,0.6472048,0.75845337,-0.067134246,0.6144958,0.7860584,-0.076689444,0.6473938,0.7582875,-0.081092656,0.6634098,0.7438491,-0.004435422,0.63496095,0.7725315,-0.032723658,0.616468,0.7866997,0.009025426,0.6581205,0.7528586,-0.04799052,0.6771074,0.7343178,-0.024258371,0.6775638,0.7350638,-0.08105766,0.67826605,0.73033196,-0.014728539,0.675947,0.736803,-0.043452267,0.6492989,0.75929105,-0.038202237,0.6330258,0.7731875,-0.024107184,0.64215803,0.76619315,-0.06245311,0.6563831,0.75183827,-0.052548196,0.6238046,0.77981186,0.0073907147,0.6557779,0.7549177,-0.0044025793,0.6363458,0.77139133,-0.059556656,0.6699881,0.739979,-0.03341304,0.67159015,0.74016905,-0.0073298784,0.6731891,0.73943406,-0.043580864,0.6495734,0.7590488,-0.062513605,0.65651923,0.7517144,-0.02417519,0.6422964,0.766075,-0.06263454,0.65679145,0.7514666,-0.019216912,0.65414554,0.75612456,-0.013209404,0.6637211,0.74786353,-0.045900065,0.65251017,0.75638855,-0.06603335,0.6604834,0.7479313,-0.025349157,0.644464,0.7642144,-0.04567491,0.6516363,0.7571552,-0.063648365,0.65781504,0.75048536,-0.025256872,0.6433368,0.7651666,-0.06566751,0.6598585,0.74851483,-0.045948405,0.6518302,0.7569717,-0.025365254,0.644121,0.76450294,-0.066065766,0.66014665,0.7482257,-0.02539744,0.6434346,0.7650797,-0.065800294,0.65995455,0.7484185,-0.24744283,0.47531608,0.8443025,-0.24392553,0.47759232,0.8440414,-0.24388118,0.4783236,0.84364,-0.246798,0.4780512,0.8429459,-0.25006032,0.47581902,0.8432473,-0.25361377,0.47516084,0.84255695,-0.25493672,0.47525755,0.84210306,-0.25593966,0.47469652,0.8421153,-0.25547314,0.47398457,0.84265774,-0.2547681,0.47176868,0.8441134,-0.25308755,0.4695821,0.84583646,-0.25132772,0.46996582,0.846148,-0.25057092,0.47042537,0.8461171,-0.2492104,0.47180328,0.84575164,-0.25066906,0.47563165,0.8431723,-0.20755798,0.4834539,0.850407,-0.20506646,0.4842019,0.8505859,-0.20383531,0.4849102,0.85047823,-0.2031908,0.48711845,0.8493698,-0.2026429,0.48782167,0.84909713,-0.20316614,0.48842636,0.84862435,-0.20377827,0.4880307,0.8487051,-0.20440988,0.4870106,0.84913915,-0.20616509,0.486625,0.84893584,-0.20833766,0.48566577,0.8489548,-0.20894945,0.48501298,0.8491776,-0.2097789,0.48281002,0.85022783,-0.20869945,0.48244876,0.85069835,-0.21620429,0.4720782,0.8546332,-0.21202603,0.47337294,0.8549638,-0.21074608,0.4757673,0.85395056,-0.20986849,0.4784643,0.85265887,-0.2096499,0.48008895,0.851799,-0.210003,0.48080572,0.8513075,-0.21042126,0.48090732,0.85114694,-0.2114359,0.480858,0.85092336,-0.21223734,0.48032588,0.85102427,-0.21278977,0.47895893,0.8516565,-0.21506509,0.47572613,0.8528961,-0.21663505,0.47279403,0.85412824,-0.21865283,0.4714689,0.8543465,-0.22074275,0.47102612,0.85405326,-0.22043511,0.4707404,0.85429025,-0.21846053,0.47033438,0.8550209,-0.23441786,0.4705577,0.85066074,-0.23415941,0.47174093,0.8500763,-0.23435418,0.471925,0.8499206,-0.23462094,0.47184688,0.8498903,-0.23495667,0.47158012,0.84994566,-0.23832823,0.47184384,0.84885985,-0.23909418,0.47045997,0.8494123,-0.24056199,0.46938646,0.84959185,-0.24076833,0.46773767,0.8504423,-0.23955622,0.46614084,0.8516605,-0.23880176,0.46574423,0.8520892,-0.2373929,0.46556774,0.8525792,-0.23542994,0.4665517,0.8525857,-0.23458299,0.46753958,0.8522779,-0.23423746,0.46936086,0.85137135,-0.26143566,0.4696799,0.8432391,-0.26081577,0.46981007,0.8433585,-0.25943667,0.470757,0.8432558,-0.2594093,0.47118324,0.8430262,-0.25968137,0.47187316,0.8425564,-0.26082125,0.47253948,0.8418306,-0.26146156,0.47259957,0.84159815,-0.26199356,0.47218645,0.8416646,-0.26264513,0.47128394,0.84196734,-0.26208958,0.47006136,0.84282345,-0.27351198,0.4640133,0.8425455,-0.27168068,0.46653438,0.8417454,-0.27211618,0.46716058,0.8412573,-0.27406746,0.46589425,0.8413261,-0.2758045,0.4657917,0.84081507,-0.2755282,0.4652736,0.8411924,-0.27514896,0.46495742,0.84149134,-0.26955378,0.47693926,0.8365821,-0.26916814,0.47705463,0.83664054,-0.26786128,0.47821808,0.83639574,-0.26754293,0.47893718,0.8360861,-0.26746327,0.48004857,0.83547395,-0.26700637,0.4805979,0.8353043,-0.26710936,0.4815483,0.8347238,-0.267727,0.4824689,0.833994,-0.26964247,0.4824353,0.83339614,-0.27091342,0.48111498,0.83374715,-0.26968405,0.4781492,0.8358492,0.12270006,0.8259503,0.5502279,0.12236242,0.8269339,0.5488239,0.12152359,0.8282409,0.5470366,0.12156975,0.82863706,0.54642606,0.12195987,0.82935953,0.5452417,0.12157943,0.82966226,0.54486597,0.12101531,0.8298506,0.54470474,0.120017625,0.8300693,0.54459226,0.118969314,0.83022755,0.54458106,0.11798844,0.83019376,0.5448458,0.116483785,0.82954615,0.54615444,0.11508178,0.8287267,0.5476935,0.11603207,0.8273559,0.5495624,0.11573966,0.82715863,0.54992086,0.11558704,0.8268045,0.55048513,0.113726415,0.82736975,0.55002326,0.11362799,0.8281377,0.5488867,0.1128322,0.8286165,0.548328,0.11140593,0.8284853,0.54881763,0.111365005,0.828131,0.54936045,0.10960408,0.82640505,0.55230576,0.107893564,0.8264938,0.5525097,0.10726304,0.82631,0.5529072,0.10776363,0.8255514,0.55394214,0.10840027,0.82540226,0.5540402,0.10896969,0.8251207,0.55434775,0.10905177,0.82477874,0.5548403,0.109221,0.8244697,0.55526614,0.11001205,0.8237862,0.55612373,0.11020853,0.8224282,0.55809134,0.11168312,0.82119346,0.55961436,0.111935325,0.8211278,0.55966026,0.11283067,0.82129604,0.5592334,0.11600403,0.8201119,0.560321,0.11623585,0.81954384,0.56110346,0.11678467,0.8188762,0.56196356,0.11696128,0.8183035,0.5627605,0.11857194,0.8168692,0.56450456,0.12029721,0.81729907,0.56351644,0.1201991,0.81824034,0.5621698,0.120037936,0.81891924,0.56121486,0.11968576,0.8198514,0.5599277,0.11956981,0.821031,0.55822146,0.1216844,0.82151866,0.5570458,0.12241404,0.8220067,0.5561653,0.12183666,0.82299405,0.55483025,0.12068612,0.8232776,0.554661,0.12133672,0.82527375,0.55154383,0.122234695,0.8254744,0.55104506,0.12254185,0.8256634,0.5506936,0.11561728,0.82842517,0.5480368,0.1154357,0.8260752,0.55161065,0.11410371,0.8263834,0.5514262,0.11148454,0.8278577,0.549748,0.115949355,0.82802016,0.5485785,0.110081494,0.82645684,0.55213326,0.11532077,0.8210188,0.5591326,0.119942926,0.8237949,0.55405384,0.12059101,0.82499355,0.5521262,0.11048673,0.8266147,0.551816,0.11351367,0.82126397,0.5591423,0.11999996,0.82450056,0.55299085,0.11507601,0.8261146,0.5516268,0.096866265,0.8184338,0.5663771,0.09703778,0.81883174,0.5657723,0.09652458,0.8191535,0.56539416,0.0960482,0.8193802,0.5651467,0.09528545,0.8195575,0.5650187,0.09444,0.82031417,0.56406176,0.09559067,0.8211964,0.5625824,0.09571445,0.8218101,0.56166434,0.09522724,0.82257754,0.5606229,0.094916,0.82327086,0.5596571,0.09438851,0.82405907,0.5585852,0.09491876,0.82469386,0.5575575,0.09588281,0.8251939,0.55665207,0.096138224,0.8256158,0.555982,0.0968583,0.8261727,0.555029,0.09775682,0.8264477,0.5544617,0.09792997,0.82670194,0.554052,0.09720504,0.8272089,0.5534226,0.096568026,0.8275004,0.5530983,0.09845274,0.82781035,0.5523016,0.09900708,0.82760805,0.5525057,0.0992059,0.8277195,0.552303,0.100479364,0.8317233,0.5460222,0.101747885,0.83098775,0.54690653,0.10252797,0.8310048,0.54673487,0.10368146,0.83139193,0.54592824,0.104516655,0.8319106,0.544978,0.10470356,0.8325253,0.54400253,0.1047728,0.83333886,0.5427422,0.10422578,0.8338171,0.5421125,0.10379746,0.83409506,0.5417671,0.09821044,0.83504486,0.5413454,0.097924136,0.8365818,0.5390193,0.097723536,0.83698356,0.53843164,0.09734844,0.8386622,0.5358815,0.09768644,0.8388733,0.5354894,0.09820565,0.84030426,0.5331457,0.098826885,0.8409749,0.53197217,0.09840113,0.8422581,0.53001744,0.09839573,0.8429085,0.52898353,0.09723844,0.84397423,0.5274961,0.09734103,0.8447829,0.52618116,0.09828587,0.8456059,0.5246814,0.09758785,0.8455918,0.5248344,0.09538577,0.84448725,0.5270131,0.0927467,0.8441498,0.52802384,0.09164752,0.843189,0.5297481,0.08765789,0.8400607,0.5353635,0.08518376,0.8401448,0.5356308,0.084408656,0.8400991,0.53582525,0.08318338,0.8397152,0.536618,0.08137293,0.83972675,0.53687745,0.07985031,0.8385225,0.53898424,0.07878344,0.8372642,0.54109323,0.07869334,0.8369108,0.54165274,0.078840576,0.83632445,0.54253626,0.0796718,0.8359234,0.5430327,0.080927014,0.8354675,0.5435484,0.08210523,0.835907,0.54269534,0.083671026,0.8360496,0.5422363,0.08429109,0.8375972,0.53974617,0.08756489,0.8387819,0.53738,0.08761664,0.83684456,0.54038364,0.08774038,0.83582324,0.541942,0.087097056,0.83629036,0.54132485,0.08630514,0.83670545,0.5408099,0.08566366,0.8365234,0.5411934,0.08474771,0.83614314,0.5419248,0.08354857,0.8351114,0.54369897,0.08356075,0.8343122,0.5449227,0.082575046,0.83402544,0.54551154,0.08195515,0.8344662,0.5449307,0.08118525,0.8345156,0.5449704,0.07925386,0.83500826,0.5444998,0.078778595,0.8350214,0.5445487,0.078157544,0.83491397,0.5448028,0.078421235,0.8321592,0.5489637,0.07871237,0.8304004,0.5515791,0.07981612,0.82886547,0.55372506,0.07978028,0.8280718,0.55491644,0.079918586,0.82511157,0.5592888,0.08218597,0.824228,0.56026214,0.085029505,0.8233168,0.56117684,0.08612524,0.8207073,0.5648203,0.085215785,0.820494,0.565268,0.086050995,0.8196078,0.56642586,0.0864082,0.8190112,0.5672339,0.09411746,0.8195478,0.56522864,0.09926681,0.82909,0.5502326,0.09724225,0.84446394,0.5267111,0.08983484,0.8408734,0.53372425,0.0850956,0.8388237,0.53771144,0.097581595,0.82782614,0.5524326,0.08322631,0.83384395,0.5456901,0.100036435,0.83148474,0.5464667,0.0888501,0.8403236,0.534754,0.085567474,0.82242775,0.56239736,0.099612504,0.8311096,0.54711443,0.100435674,0.8340833,0.54241836,0.08613594,0.8390853,0.5371373,0.09933586,0.83441365,0.54211277,0.10488094,0.8246953,0.5557676,0.10433759,0.8252103,0.5551051,0.104112886,0.8252401,0.555103,0.10232364,0.8247223,0.5562041,0.101540096,0.8251034,0.5557823,0.10085494,0.82522035,0.55573344,0.098211184,0.824475,0.557311,0.096960306,0.8242791,0.5578195,0.0973336,0.8227122,0.56006324,0.09834595,0.821437,0.56175554,0.098769836,0.82120365,0.56202227,0.099084705,0.8207823,0.56258214,0.10188563,0.8200309,0.5631773,0.10383622,0.81964004,0.5633899,0.10560636,0.81967664,0.56300753,0.106975324,0.82048523,0.56156945,0.10701511,0.82117933,0.5605464,0.10661053,0.82184356,0.5596493,0.10680118,0.8223613,0.55885184,0.10567644,0.82359535,0.55724615,0.1031164,0.82469964,0.55609125,0.11329799,0.8180659,0.5638544,0.11211712,0.81866926,0.56321436,0.11018219,0.8185567,0.56375957,0.11014511,0.81808305,0.5644539,0.11041295,0.81687415,0.56614983,0.114986666,0.81541944,0.56733525,0.116162874,0.8157587,0.5666074,0.11712178,0.8156705,0.56653696,0.1178928,0.8159302,0.5660028,0.11756812,0.81681955,0.5647863,0.11726123,0.81721956,0.5642712,0.116384834,0.8174783,0.5640778,0.11521604,0.8174425,0.5643697,0.107068144,0.81659186,0.5671985,0.107491985,0.8166489,0.56703615,0.10766997,0.8171415,0.5662924,0.10849687,0.8197733,0.5623168,0.108538084,0.8207127,0.5609369,0.10827829,0.82072926,0.5609629,0.1078948,0.8196742,0.56257707,0.10697171,0.81877154,0.56406575,0.10667646,0.8181825,0.5649757,0.10611469,0.8176618,0.56583464,0.106258534,0.81740713,0.5661755,0.1244046,0.81865996,0.5606419,0.12473196,0.8188092,0.56035113,0.124282785,0.8191251,0.5599891,0.1237929,0.819327,0.5598023,0.123239234,0.8194642,0.55972356,0.12216284,0.8195614,0.5598172,0.1217402,0.8197933,0.5595697,0.121722065,0.8193631,0.5602034,0.12142521,0.819088,0.56066996,0.1209122,0.81889975,0.56105566,0.120783724,0.8187383,0.5613189,0.12067354,0.8182942,0.5619897,0.12138323,0.8180742,0.56215715,0.12286856,0.8187696,0.5608205,0.12311439,0.82465965,0.55206823,0.123887055,0.8250793,0.55126774,0.12356227,0.82557446,0.5505989,0.12318661,0.8258951,0.55020213,0.1229841,0.8259037,0.55023444,0.12279723,0.8256071,0.55072105,0.122431196,0.8252574,0.5513264,0.12290788,0.8246818,0.5520811,0.104132265,0.81751853,0.5664097,0.10476842,0.8176231,0.5661414,0.10493726,0.81775355,0.5659216,0.1039426,0.81811786,0.5655786,0.10326071,0.81820947,0.56557095,0.10234754,0.8186394,0.5651146,0.10166498,0.8187789,0.56503576,0.10187522,0.8185606,0.565314,0.10331759,0.81773734,0.56624293,0.09949287,0.81787324,0.56673145,0.10048771,0.81801295,0.5663542,0.100399256,0.8182291,0.56605756,0.099622525,0.8190166,0.565055,0.09778551,0.81973475,0.5643341,0.097275436,0.8198426,0.56426555,0.09719854,0.8197514,0.56441134,0.09791856,0.81820995,0.56651956,0.09890704,0.8181159,0.56648374,0.10339539,0.8267379,0.5530044,0.10351165,0.8269143,0.5527188,0.10356943,0.82741284,0.55196136,0.10378379,0.8278409,0.5512788,0.103441924,0.82819885,0.55080533,0.102378756,0.8289589,0.5498597,0.1021689,0.8286327,0.5503901,0.10257745,0.8281248,0.5510782,0.102499664,0.8275559,0.5519466,0.10273429,0.82692146,0.5528531,0.10338729,0.84084165,0.53131574,0.10369894,0.84106296,0.53090453,0.10385915,0.8412929,0.5305087,0.10463227,0.84172666,0.52966815,0.10379167,0.8417929,0.5297283,0.10245312,0.8415918,0.53030807,0.102019206,0.8411547,0.5310846,0.1489252,0.81920135,0.5538325,0.14921889,0.819371,0.55350244,0.14945231,0.8200236,0.552472,0.14919458,0.8205963,0.55169076,0.14509895,0.82211155,0.550526,0.14481634,0.8215279,0.5514709,0.14502561,0.8201743,0.5534273,0.14722443,0.81948185,0.5538723,0.33072996,0.71341884,0.6177793,0.32985938,0.7140957,0.61746264,0.3293708,0.7146283,0.6171072,0.32971585,0.7148178,0.6167033,0.32991594,0.71504784,0.6163295,0.32948944,0.7158522,0.61562353,0.32881394,0.7167751,0.6149104,0.3283891,0.7172212,0.61461717,0.32802868,0.7179204,0.613993,0.32735118,0.71900755,0.6130818,0.3261892,0.72354037,0.6083502,0.32604367,0.7247886,0.6069406,0.3254741,0.72547114,0.60643077,0.3248556,0.72706395,0.6048527,0.32409504,0.7278493,0.604316,0.32300416,0.7288741,0.6036646,0.3210626,0.7310967,0.60201037,0.319649,0.7318678,0.60182554,0.31709617,0.7333539,0.6013668,0.31638166,0.7340569,0.6008852,0.31527814,0.73475385,0.60061336,0.31409517,0.73539406,0.6004497,0.31226313,0.7369899,0.5994477,0.31136742,0.7377095,0.5990284,0.31110635,0.7379034,0.5989252,0.30941916,0.7389229,0.59854215,0.30764922,0.7405962,0.59738535,0.30711678,0.74129385,0.5967938,0.30560103,0.742669,0.5958613,0.30433348,0.7437011,0.5952225,0.3032545,0.7444339,0.5948571,0.30266538,0.7449526,0.59450763,0.30150703,0.74560547,0.5942777,0.3000653,0.74612486,0.5943555,0.29925737,0.7462139,0.594651,0.25793788,0.7403304,0.620789,0.25709897,0.74048275,0.6209552,0.25634643,0.74036646,0.6214049,0.25576004,0.74005646,0.6220154,0.25514057,0.7399579,0.62238705,0.25479454,0.7395886,0.6229674,0.25395456,0.738126,0.6250417,0.25331894,0.737709,0.6257915,0.2530531,0.7373366,0.62633765,0.25323316,0.7356747,0.6282163,0.25278085,0.73529994,0.6288369,0.25258654,0.7349689,0.6293018,0.2520066,0.73236245,0.6325646,0.25153312,0.73187596,0.6333156,0.251599,0.73143154,0.63380265,0.25145584,0.72990423,0.6356176,0.25087327,0.7288461,0.63706046,0.25084937,0.7284112,0.637567,0.25017458,0.72682345,0.63964087,0.24977522,0.72666836,0.63997304,0.2496511,0.72624433,0.6405026,0.24957356,0.72521067,0.64170283,0.24987435,0.72474635,0.64211017,0.25005117,0.7243199,0.64252245,0.24932992,0.72407013,0.643084,0.24926719,0.7236021,0.6436349,0.24830018,0.7222702,0.645502,0.24593508,0.7224812,0.6461709,0.24512942,0.7223186,0.6466587,0.24499983,0.72197133,0.6470954,0.24504967,0.721693,0.64738697,0.2439742,0.7209563,0.64861286,0.24263123,0.72136074,0.6486669,0.24020576,0.7209504,0.6500244,0.23986769,0.7206551,0.6504766,0.24079645,0.71995395,0.6509096,0.24177495,0.71904254,0.65155405,0.2428297,0.7186213,0.65162665,0.24477126,0.7177555,0.6518544,0.24598318,0.7166598,0.6526032,0.24682225,0.7161223,0.6528764,0.24702416,0.7161485,0.65277135,0.24718986,0.71628946,0.652554,0.2475065,0.71629953,0.6524228,0.2476364,0.715967,0.65273845,0.24794449,0.71522945,0.6534296,0.24807633,0.71444166,0.654241,0.24857688,0.7136965,0.654864,0.2486664,0.7134642,0.65508306,0.2485824,0.7132516,0.6553464,0.2486717,0.71305984,0.6555213,0.2489716,0.7128573,0.6556277,0.2500284,0.7123634,0.65576226,0.25111708,0.711601,0.6561739,0.25225133,0.71106374,0.6563213,0.25324753,0.7107203,0.6563096,0.25380474,0.7106981,0.65611833,0.25493118,0.71007854,0.65635246,0.25687262,0.7096332,0.6560772,0.25850788,0.70861405,0.6565362,0.25828984,0.70846134,0.6567868,0.25806376,0.70803356,0.6573367,0.2578597,0.7073809,0.6581191,0.2575785,0.70737064,0.6582402,0.25742555,0.7072176,0.6584644,0.25755456,0.7069928,0.6586553,0.25787047,0.7067789,0.65876126,0.25831175,0.7065847,0.6587967,0.25909558,0.7063905,0.6586971,0.2590621,0.7055425,0.65961856,0.25841132,0.7055014,0.65991765,0.2581435,0.70539933,0.66013163,0.25832585,0.7049643,0.6605249,0.26036996,0.7045114,0.66020536,0.2613784,0.70408183,0.66026515,0.26203215,0.7035243,0.66060024,0.2633674,0.70315474,0.66046274,0.26694885,0.70239997,0.65982765,0.2680691,0.7014312,0.66040385,0.2692257,0.7016644,0.65968525,0.27499443,0.7016,0.6573702,0.2740365,0.701685,0.6576793,0.27338082,0.7014111,0.65824413,0.2730248,0.70077974,0.65906394,0.27318817,0.7001052,0.65971273,0.27387315,0.6993887,0.6601886,0.27464843,0.6988939,0.6603905,0.2760613,0.6982463,0.6604864,0.2762936,0.69776905,0.66089344,0.2765412,0.6976378,0.6609285,0.27755046,0.69710517,0.6610674,0.27983508,0.6962548,0.66100043,0.2808187,0.69487166,0.66203797,0.28010374,0.6944977,0.66273284,0.2797906,0.69400394,0.663382,0.27988365,0.6933895,0.6639851,0.28017583,0.69295585,0.6643144,0.28091297,0.6925773,0.66439795,0.28426436,0.6930732,0.6624525,0.28794205,0.69281757,0.66113025,0.29306516,0.6919752,0.6597599,0.29635453,0.69168293,0.658596,0.30314955,0.6913671,0.65582913,0.30743396,0.6907098,0.654526,0.31136355,0.69051385,0.65287316,0.3133021,0.69103086,0.6513971,0.31452063,0.6917254,0.6500714,0.32661986,0.69675684,0.63863087,0.32711416,0.6964909,0.638668,0.33120847,0.6949158,0.63827354,0.3340682,0.69463074,0.6370922,0.3346983,0.69421375,0.63721603,0.33505464,0.69410944,0.6371424,0.33649778,0.69449955,0.6359557,0.33760548,0.69363576,0.6363113,0.3392746,0.69242543,0.6367416,0.34146735,0.6918011,0.6362479,0.34332862,0.69144714,0.63563055,0.34388837,0.691393,0.6353869,0.34567243,0.69141513,0.634394,0.3454131,0.69211054,0.6337766,0.34508178,0.6944554,0.6313876,0.3431196,0.698361,0.6281408,0.3432492,0.6993418,0.6269778,0.3441395,0.7009852,0.6246501,0.3441305,0.70183927,0.6236953,0.34315425,0.70218396,0.62384516,0.34330922,0.70261097,0.62327886,0.34286645,0.70359695,0.62240976,0.34289926,0.70401406,0.6219198,0.34314725,0.7047581,0.6209396,0.34212518,0.70610213,0.6199759,0.3439902,0.70679873,0.61814743,0.34377256,0.706189,0.61896497,0.34433,0.70551467,0.6194238,0.34489134,0.70461965,0.62012994,0.3447824,0.7041085,0.62077075,0.34976572,0.7051716,0.6167633,0.34984326,0.70606285,0.6156987,0.34977317,0.7068554,0.6148286,0.34918496,0.708976,0.6127177,0.34904194,0.70948726,0.6122072,0.3292833,0.71446013,0.61734855,0.32657555,0.7210189,0.6111302,0.31795788,0.73271513,0.6016904,0.3083402,0.7398421,0.5979632,0.2602455,0.7422397,0.61753744,0.25447473,0.7387971,0.6240364,0.25353155,0.7360463,0.62766045,0.2524563,0.73299575,0.631651,0.25130066,0.72782415,0.6380595,0.25060388,0.72714823,0.63910335,0.24928004,0.72301954,0.6442843,0.24408698,0.71812034,0.651709,0.2574985,0.70947886,0.65599877,0.25809613,0.7075134,0.6578839,0.25992328,0.7056343,0.6591815,0.2653815,0.70297414,0.65984845,0.27551296,0.6986208,0.6603193,0.29854104,0.6920724,0.6571979,0.3152716,0.69303143,0.6483142,0.3327211,0.6949102,0.6374923,0.3433041,0.7017184,0.6242864,0.25181338,0.7309223,0.6343048,0.24486022,0.72143155,0.64774996,0.24445629,0.72110337,0.64826775,0.24730068,0.7164006,0.6523899,0.27041033,0.7030984,0.6576708,0.27531165,0.7017791,0.6570461,0.2811266,0.6952509,0.66150886,0.25897452,0.7407931,0.6198046,0.2583974,0.7404095,0.6205035,0.25997612,0.70588,0.65889746,0.28102788,0.6956367,0.66114515,0.3426458,0.7070193,0.6186417,0.24903928,0.72275513,0.64467394,0.25798115,0.70922476,0.6560839,0.25990406,0.7061045,0.6586853,0.27498862,0.7022216,0.65670854,0.34226647,0.70668477,0.6192336,0.31224787,0.7293468,0.6087319,0.26755258,0.7338607,0.624391,0.25837383,0.70892966,0.65624815,0.27195498,0.7034722,0.6566334,0.29513788,0.69764084,0.6528329,0.32406768,0.6964915,0.6402185,0.31206548,0.72891784,0.60933894,0.26800367,0.7338983,0.62415326,0.29457495,0.69792503,0.65278345,0.2738705,0.7027862,0.65657175,0.32039267,0.695712,0.64291006,0.3065169,0.72731227,0.6140555,0.26747012,0.7321651,0.6264136,0.29361382,0.6982704,0.6528472,0.31773198,0.69474965,0.64526683,0.30767688,0.7264221,0.614529,0.26643273,0.72821504,0.63144004,0.29487815,0.6991239,0.6513621,0.30853444,0.7258021,0.6148315,0.2785529,0.7219436,0.63340807,0.30601478,0.70673877,0.63786775,0.3032471,0.70743597,0.6384164,0.293686,0.7238757,0.6243017,0.30413696,0.7070971,0.6383685,0.2499394,0.7477211,0.6151776,0.24466881,0.7480125,0.6169396,0.24412985,0.7485354,0.61651874,0.24355145,0.748906,0.6162974,0.24279666,0.7492086,0.6162274,0.24207784,0.7495596,0.6160834,0.24133049,0.7495737,0.61635935,0.23716618,0.7491832,0.618447,0.23580824,0.74948347,0.61860245,0.23337539,0.74953026,0.6194678,0.23182343,0.74926674,0.62036866,0.23180594,0.7488992,0.6208188,0.23118016,0.74658656,0.62383026,0.2292743,0.74573207,0.6255533,0.22766197,0.7448548,0.6271853,0.22608817,0.7449526,0.6276383,0.22478633,0.7454737,0.62748706,0.22376665,0.7457446,0.6275297,0.22314167,0.7456253,0.62789387,0.22262979,0.745035,0.62877566,0.22046022,0.7439973,0.63076574,0.21668573,0.7437381,0.6323772,0.21554703,0.7431482,0.633459,0.21533841,0.74243724,0.63436294,0.21551368,0.7418901,0.63494325,0.21568458,0.740654,0.6363268,0.21297045,0.7405349,0.63737875,0.20934312,0.74037564,0.6387639,0.20143363,0.74183065,0.63961846,0.19921045,0.7430387,0.63891214,0.19902568,0.7430672,0.6389365,0.19871217,0.74319553,0.63888484,0.19753784,0.7432856,0.6391442,0.19725724,0.74321437,0.6393137,0.19676791,0.7427198,0.6400388,0.1968801,0.7419861,0.64085484,0.1965633,0.7416592,0.64133024,0.19658872,0.7412394,0.64180756,0.19688942,0.74085784,0.64215595,0.19704063,0.74037963,0.64266086,0.19748917,0.7397199,0.6432826,0.19648908,0.73957604,0.6437541,0.19523716,0.739599,0.64410853,0.1948036,0.73956054,0.6442839,0.19398327,0.7394699,0.6446354,0.19266172,0.7400892,0.64432096,0.19198328,0.74022436,0.6443681,0.1915457,0.74018717,0.6445411,0.19129364,0.73991835,0.64492446,0.19082186,0.7395731,0.64546,0.1903524,0.73933107,0.6458758,0.19054088,0.7391175,0.6460646,0.19374013,0.7377021,0.64673054,0.19350821,0.7370015,0.6475982,0.19346163,0.73665863,0.648002,0.19239362,0.73615074,0.64889663,0.19159774,0.7360913,0.6491994,0.19161803,0.7357122,0.64962304,0.19228086,0.7345966,0.65068877,0.19209537,0.73435485,0.65101635,0.1919418,0.7340077,0.651453,0.19246696,0.73308796,0.6523331,0.19299285,0.73302245,0.65225136,0.19316947,0.732812,0.65243554,0.19319336,0.732439,0.6528472,0.19322538,0.732042,0.65328276,0.19284053,0.73131764,0.65420717,0.19177006,0.7313798,0.6544523,0.19097222,0.7310194,0.65508795,0.18953207,0.7297242,0.6569476,0.19173704,0.7296525,0.65638715,0.19212703,0.72930276,0.65666175,0.19240372,0.7287597,0.65718347,0.19281632,0.72803164,0.65786916,0.19352652,0.727543,0.6582011,0.19363925,0.72703826,0.6587255,0.19417971,0.7266613,0.6589823,0.19548911,0.72563946,0.6597207,0.19569035,0.7253732,0.6599538,0.19636269,0.7251942,0.65995073,0.20036802,0.7234409,0.6606708,0.20147212,0.7224081,0.66146463,0.20278782,0.7216068,0.66193706,0.20561936,0.72026795,0.66252154,0.20671158,0.719293,0.66324043,0.2079883,0.7187463,0.6634339,0.21045227,0.7182935,0.6631473,0.21100219,0.71774185,0.6635696,0.21193226,0.717242,0.66381365,0.21323933,0.7167941,0.6638789,0.21513243,0.7165486,0.66353303,0.21893583,0.71647793,0.6623643,0.21976304,0.71633875,0.66224086,0.2206194,0.716513,0.6617674,0.2216167,0.71686363,0.66105413,0.22190666,0.7170722,0.6607306,0.2226977,0.718217,0.6592193,0.22337176,0.71811855,0.65909845,0.22460446,0.7182579,0.65852743,0.22535108,0.71851164,0.65799534,0.22561039,0.7185075,0.65791106,0.22650361,0.7188512,0.6572283,0.22677587,0.7191296,0.6568297,0.22687848,0.7194552,0.6564377,0.22709285,0.7195357,0.6562753,0.22788839,0.71918225,0.6563869,0.22861049,0.7191509,0.6561701,0.22933233,0.7193747,0.6556727,0.22982244,0.7196854,0.65515995,0.23044927,0.71994334,0.65465623,0.23071276,0.7201207,0.6543682,0.23103061,0.720398,0.65395075,0.23158109,0.7212185,0.6528507,0.23246413,0.7213879,0.65234953,0.23380134,0.72117895,0.65210265,0.23519135,0.72110635,0.651683,0.23943266,0.72086596,0.65040314,0.23953067,0.7490782,0.61766243,0.23816034,0.749024,0.6182578,0.19444345,0.73938036,0.6445995,0.19299552,0.73638827,0.64844817,0.19324102,0.72783,0.6579676,0.19866352,0.7243692,0.6601681,0.20431225,0.721039,0.662087,0.20944725,0.7186278,0.6631033,0.21862358,0.7164904,0.66245395,0.22529276,0.71851164,0.6580154,0.23614387,0.72129464,0.65112984,0.23881057,0.72105795,0.6504191,0.24492438,0.7478151,0.6170775,0.22716293,0.7446768,0.6275774,0.2225181,0.74443614,0.62952405,0.20346318,0.7409208,0.64003056,0.19305576,0.7385599,0.6459557,0.19314177,0.73143446,0.6539877,0.24531546,0.7475474,0.61724657,0.21600845,0.7414242,0.6353192,0.2050343,0.7404547,0.64006853,0.24650519,0.7470802,0.6173382,0.2459738,0.74717873,0.6174308,0.21578646,0.7408807,0.6360283,0.19317423,0.73162097,0.6537694,0.20712453,0.7404163,0.6394397,0.23677255,0.7425112,0.62659067,0.25036818,0.7556397,0.6052474,0.2449412,0.7571036,0.60563844,0.24457015,0.75752044,0.60526705,0.24394383,0.75812376,0.6047642,0.24290612,0.7586287,0.6045487,0.240838,0.75906605,0.60482705,0.23992616,0.7594071,0.6047613,0.23678996,0.75959784,0.6057571,0.23545939,0.7596056,0.6062658,0.23457806,0.7594648,0.6067836,0.23397124,0.7594787,0.60700047,0.23351462,0.7585876,0.6082892,0.2314248,0.7584604,0.6092457,0.23048152,0.75892955,0.60901904,0.2291795,0.759177,0.6092019,0.22836109,0.7590577,0.60965776,0.22768025,0.7591598,0.6097853,0.22711834,0.75918424,0.60996443,0.22696516,0.7590904,0.6101381,0.22651565,0.7591038,0.6102886,0.22596231,0.7588796,0.6107723,0.22538616,0.7585626,0.61137867,0.2247055,0.758321,0.6119287,0.22431438,0.7578013,0.6127154,0.22418511,0.7567817,0.6140216,0.22248754,0.75723886,0.61407536,0.22206001,0.7570407,0.6144744,0.220831,0.75739634,0.614479,0.22089635,0.7577924,0.613967,0.22066827,0.7583455,0.6133659,0.22028798,0.75895506,0.6127482,0.21974106,0.7591531,0.6126993,0.21859758,0.7593467,0.6128684,0.21848,0.75954795,0.6126609,0.21801959,0.7598062,0.61250466,0.21714042,0.76046014,0.6120052,0.21623501,0.7612709,0.61131746,0.21573421,0.76151234,0.6111937,0.21456796,0.7606876,0.6126296,0.21406904,0.7605354,0.6129929,0.21347526,0.75927126,0.6147646,0.21154772,0.7592286,0.61548316,0.21120398,0.7598195,0.61487174,0.21078432,0.7603866,0.61431444,0.1928276,0.74997914,0.6327312,0.19291078,0.7495444,0.6332209,0.19266146,0.7489964,0.6339448,0.19243437,0.74827766,0.6348618,0.19267103,0.7476464,0.6355334,0.19457826,0.74545383,0.63752484,0.1960756,0.74411625,0.63862777,0.19644365,0.7436065,0.6391081,0.24714923,0.7564613,0.605544,0.22139674,0.7569076,0.6148775,0.22085339,0.75704515,0.61490357,0.21900727,0.7592263,0.6128713,0.2152938,0.76112664,0.6118291,0.23222357,0.75830156,0.6091395,0.2330499,0.7583288,0.60879,0.19472815,0.8134523,0.5480659,0.18318422,0.8165559,0.54743034,0.1852199,0.81578726,0.5478912,0.18652579,0.81546485,0.54792815,0.18590553,0.8159819,0.5473688,0.1833786,0.81683725,0.5469454,0.181048,0.81752884,0.5466884,0.17878796,0.8175053,0.5474669,0.17655124,0.81731284,0.54847914,0.17134869,0.8164354,0.551428,0.16921757,0.8156517,0.55324286,0.16827247,0.81509125,0.55435604,0.16529128,0.8146605,0.55588406,0.16397195,0.81347513,0.55800664,0.16346009,0.81271064,0.5592694,0.16305666,0.81242,0.55980915,0.1627071,0.8119855,0.56054074,0.16139624,0.81174076,0.56127375,0.16004525,0.8116143,0.5618432,0.1544644,0.8104497,0.565077,0.14924553,0.80920476,0.5682547,0.14628305,0.8082438,0.5703886,0.14491495,0.80831814,0.5706325,0.14618206,0.80756533,0.5713747,0.14868845,0.8064809,0.572259,0.14872399,0.8060039,0.57292134,0.14902957,0.80567896,0.5732989,0.14927806,0.8053012,0.5737648,0.14820315,0.80563754,0.5735712,0.14837646,0.8071993,0.5713263,0.18254536,0.8165884,0.54759526,0.19349256,0.8129593,0.5492338,0.18503842,0.8142461,0.55024,0.18952836,0.8125815,0.5511718,0.18620345,0.81341463,0.5510761,0.21352805,0.8087509,0.5480216,0.18808793,0.8127915,0.5513555,0.21479574,0.8020671,0.5572712,0.1612454,0.8045047,0.57163984,0.21481706,0.801961,0.55741566,0.17214973,0.8032202,0.57026464,0.21967247,0.79684097,0.5628396,0.17855023,0.7949839,0.57975894,0.20906557,0.77861893,0.5916453,0.19928788,0.7959134,0.5716697,0.18758586,0.7776556,0.6000528,0.23018098,0.7795804,0.58246976,0.22944672,0.77018213,0.5951249,0.20785363,0.769203,0.6042546,0.18677202,0.7729601,0.6063405,0.22898743,0.76541907,0.60141367,0.22219755,0.7655583,0.60377866,0.21392083,0.76751107,0.6042885,-0.10186881,0.80783117,0.5805442,-0.101756185,0.8081249,0.58015496,-0.10165605,0.80888575,0.57911134,-0.10202248,0.8090541,0.57881165,-0.1034664,0.8090705,0.5785322,-0.10385446,0.80918974,0.57829595,-0.104807466,0.80878794,0.578686,-0.10279858,0.8086035,0.57930374,-0.102530904,0.8082012,0.57991225,-0.073594004,0.8194291,0.5684364,-0.071908094,0.8200719,0.5677247,-0.07137375,0.8205213,0.5671425,-0.070148185,0.82093316,0.56669915,-0.06910768,0.8215264,0.5659668,-0.07089997,0.8221954,0.56477237,-0.071713746,0.8226705,0.56397724,-0.07230169,0.8227975,0.56371695,-0.07287456,0.82274175,0.5637245,-0.07235484,0.8221319,0.5646804,-0.07392903,0.821963,0.56472236,-0.07457963,0.8216265,0.56512636,-0.07481516,0.8210879,0.5658775,-0.07461575,0.82059824,0.5666136,-0.07649734,0.81886107,0.56887144,-0.075711064,0.8194027,0.5681963,-0.07609481,0.819702,0.56771314,-0.07555814,0.81999433,0.5673626,-0.07519893,0.82037365,0.56686175,-0.075238526,0.8208641,0.566146,-0.07561325,0.8211458,0.56568736,-0.07569085,0.82158715,0.56503576,-0.07603481,0.8217115,0.5648087,-0.0769915,0.8216304,0.56479704,-0.07699403,0.8210076,0.5657017,-0.077485956,0.82114965,0.5654283,-0.07903561,0.8210684,0.5653317,-0.079497546,0.8211025,0.56521755,-0.080867276,0.82074964,0.56553555,-0.08224653,0.8206138,0.5655338,-0.08262217,0.82023376,0.56603014,-0.08293781,0.8197167,0.56673265,-0.08368045,0.8193563,0.56714445,-0.08397884,0.81880236,0.5678999,-0.08484724,0.8174621,0.56969875,-0.08545756,0.8172401,0.56992596,-0.08561909,0.8169734,0.570284,-0.08678114,0.8167512,0.5704266,-0.08748947,0.8164605,0.5707345,-0.088085175,0.8159479,0.57137555,-0.08516923,0.81522155,0.5728525,-0.08187403,0.81554025,0.5728793,-0.08259219,0.8149268,0.57364875,-0.0831149,0.81418926,0.5746197,-0.08372392,0.81396204,0.5748531,-0.08506449,0.8137209,0.57499766,-0.0856641,0.81352663,0.5751835,-0.08658276,0.81313694,0.57559687,-0.087393455,0.8125607,0.57628775,-0.087285325,0.8113812,0.5779635,-0.08881654,0.8117114,0.5772663,-0.09133715,0.8119612,0.5765211,-0.09167128,0.811898,0.5765571,-0.09247976,0.8113244,0.5772349,-0.0929568,0.811162,0.57738656,-0.094461694,0.8120696,0.5758645,-0.09691776,0.8121705,0.5753138,-0.0984915,0.812088,0.57516307,-0.09964595,0.81176656,0.5754178,-0.10076623,0.81175864,0.57523394,-0.10134919,0.8118393,0.57501763,-0.102000855,0.8116536,0.5751645,-0.10243932,0.8112253,0.5756906,-0.10261822,0.8106119,0.57652223,-0.101152465,0.8104672,0.5769845,-0.10122238,0.80978817,0.57792485,-0.100386575,0.80999416,0.57778203,-0.10060583,0.80906105,0.5790498,-0.10117078,0.8083763,0.57990706,-0.101530515,0.80761665,0.5809018,-0.09809248,0.8077824,0.58126193,-0.09830169,0.8073844,0.5817794,-0.09826053,0.80701613,0.582297,-0.100012794,0.8067695,0.5823405,-0.10173491,0.8062092,0.582818,-0.10192136,0.8058778,0.58324355,-0.101985775,0.80549014,0.5837676,-0.10149598,0.8052365,0.58420265,-0.100184985,0.8049403,0.58483684,-0.101827346,0.8047946,0.58475363,-0.10315415,0.8044941,0.58493465,-0.103754535,0.80456036,0.58473724,-0.104366146,0.80436045,0.5849034,-0.10435305,0.80395365,0.5854647,-0.10389906,0.8036317,0.5859872,-0.10438445,0.80329174,0.58636695,-0.104436934,0.80295104,0.5868241,-0.103580646,0.80278647,0.58720094,-0.10248087,0.80289316,0.587248,-0.10144807,0.8027651,0.5876023,-0.10239773,0.80222106,0.5881803,-0.10193382,0.80198795,0.58857864,-0.101410195,0.80197215,0.5886906,-0.10061822,0.80213505,0.58860457,-0.09962948,0.80201596,0.58893496,-0.09954266,0.80148315,0.5896745,-0.099315524,0.8012752,0.58999527,-0.09892559,0.8011309,0.5902567,-0.098485634,0.80109566,0.5903781,-0.094093956,0.80024153,0.5922499,-0.09444241,0.80024046,0.59219575,-0.09528548,0.799991,0.5923977,-0.09637354,0.799945,0.59228384,-0.09702764,0.7996591,0.5925631,-0.09905486,0.7980812,0.5943521,-0.098617315,0.7978866,0.59468615,-0.10263707,0.7949252,0.59796286,-0.10467122,0.79409355,0.5987147,-0.10305585,0.7942023,0.59885067,-0.10144272,0.79465574,0.5985245,-0.1011001,0.7948771,0.59828854,-0.10075973,0.7949862,0.598201,-0.09980271,0.7946997,0.5987418,-0.0991013,0.7945957,0.5989963,-0.096773244,0.79478455,0.5991264,-0.095889695,0.79513764,0.5987999,-0.094575696,0.79605925,0.5977835,-0.09396956,0.7956036,0.5984853,-0.0925778,0.79525805,0.5991611,-0.098528914,0.7941894,0.59962934,-0.10124264,0.7939817,0.59945226,-0.10175124,0.7938516,0.59953845,-0.103288986,0.79299575,0.6004075,-0.104155384,0.79274386,0.6005904,-0.10495641,0.79232913,0.6009981,-0.10446895,0.79202855,0.601479,-0.10453975,0.7911323,0.60264516,-0.1039114,0.7906906,0.6033331,-0.10568003,0.7905575,0.6032002,-0.106215626,0.7907892,0.60280234,-0.10689781,0.7909665,0.602449,-0.1076221,0.7910322,0.60223377,-0.10847632,0.79092115,0.60222644,-0.11016855,0.79022914,0.6028273,-0.110535376,0.78982425,0.6032907,-0.11070052,0.7894582,0.60373926,-0.10923986,0.78935987,0.6041338,-0.10726757,0.7884895,0.605622,-0.108403035,0.78822577,0.6057631,-0.1094206,0.7877368,0.6062161,-0.11123859,0.7865983,0.60736233,-0.11101149,0.7858453,0.60837793,-0.10992377,0.78599125,0.6083868,-0.10967506,0.78567976,0.60883385,-0.108350314,0.78554374,0.6092465,-0.10294846,0.78665936,0.60874355,-0.104665585,0.78611875,0.6091489,-0.105336025,0.7856423,0.6096478,-0.10586712,0.785491,0.60975087,-0.106767006,0.78510845,0.61008644,-0.10846948,0.78429544,0.61083144,-0.109148495,0.7837008,0.6114733,-0.10794054,0.78381413,0.6115425,-0.10667223,0.78420347,0.6112659,-0.102825895,0.78439164,0.61168337,-0.10475886,0.78373367,0.6121986,-0.10637522,0.7824272,0.6135894,-0.10534728,0.78232265,0.6139,-0.10306796,0.78284895,0.613616,-0.10152881,0.78281766,0.61391246,-0.100862905,0.7825779,0.61432767,-0.10056693,0.782589,0.61436206,-0.09520229,0.7835298,0.61401755,-0.09424956,0.7840855,0.61345494,-0.092652984,0.78424996,0.61348784,-0.09135781,0.7848524,0.61291146,-0.09059866,0.78490674,0.6129545,-0.0899165,0.7852014,0.6126776,-0.08966523,0.78578097,0.61197096,-0.08968188,0.7863715,0.61120945,-0.08988366,0.7866794,0.6107835,-0.09025882,0.78681403,0.6105547,-0.08862864,0.78670144,0.61093843,-0.0883369,0.7864394,0.61131793,-0.08758926,0.7860028,0.61198664,-0.08663449,0.78613293,0.61195546,-0.085433125,0.78656626,0.61156744,-0.08405676,0.7874516,0.61061805,-0.082149796,0.7877929,0.6104373,-0.081702955,0.78793675,0.6103117,-0.08128329,0.78821003,0.61001474,-0.08092143,0.7886724,0.60946494,-0.07708496,0.789566,0.608805,-0.07566603,0.7895053,0.6090616,-0.0747866,0.7897903,0.60880065,-0.074248314,0.79068434,0.6077051,-0.07384048,0.78981847,0.6088796,-0.07359644,0.7897186,0.6090386,-0.071458034,0.79029965,0.6085394,-0.07004985,0.79003537,0.60904604,-0.06871925,0.7901837,0.6090052,-0.067451805,0.79065406,0.6085363,-0.06876586,0.7917074,0.6070178,-0.068062656,0.7919375,0.6067969,-0.067431435,0.79231095,0.6063797,-0.06586324,0.7938112,0.6045874,-0.06549289,0.795087,0.60294884,-0.064558096,0.79660666,0.6010408,-0.063851416,0.7972219,0.60030013,-0.06329959,0.7978691,0.59949815,-0.063243166,0.799592,0.59720427,-0.06341616,0.800379,0.5961308,-0.06394223,0.8024677,0.5932596,-0.06367206,0.8027224,0.592944,-0.06366803,0.8034445,0.59196556,-0.06352946,0.8038457,0.5914357,-0.06352379,0.8046611,0.59032637,-0.0639741,0.80531687,0.58938277,-0.0641652,0.80640024,0.5878788,-0.06444162,0.80737484,0.58650935,-0.06456076,0.8091302,0.5840722,-0.06378762,0.8090541,0.5842625,-0.06301508,0.8091938,0.5841529,-0.06315161,0.8095656,0.58362263,-0.063528426,0.80992615,0.58308125,-0.06439038,0.80998915,0.58289915,-0.0650287,0.8098072,0.58308107,-0.06545065,0.8096386,0.5832679,-0.06582965,0.8096692,0.5831829,-0.06693763,0.80960417,0.58314705,-0.0680737,0.8098857,0.58262444,-0.06776866,0.8106902,0.58154,-0.067963615,0.8109077,0.5812139,-0.06980386,0.81202286,0.57943624,-0.06982534,0.8123798,0.57893306,-0.07034286,0.8128397,0.5782244,-0.07100917,0.8131687,0.5776802,-0.07142981,0.81318456,0.57760596,-0.07236759,0.81264704,0.5782454,-0.07316005,0.8121019,0.5789112,-0.07321939,0.81120783,0.5801558,-0.07447484,0.8106144,0.5808251,-0.074695684,0.8103838,0.58111846,-0.075028785,0.8102589,0.5812496,-0.075549796,0.81042325,0.58095306,-0.07692541,0.8103853,0.5808254,-0.077535786,0.81049013,0.58059794,-0.078186564,0.8109277,0.57989925,-0.0799139,0.8112198,0.57925487,-0.08007944,0.8119184,0.57825243,-0.08039743,0.8120487,0.5780252,-0.081238426,0.81424165,0.5748137,-0.07861084,0.8148369,0.5743354,-0.07817038,0.8150764,0.5740556,-0.07804909,0.8152877,0.573772,-0.078739196,0.8155289,0.57333475,-0.078359686,0.81633204,0.57224274,-0.07777969,0.81624293,0.5724489,-0.07727146,0.81642014,0.572265,-0.0764036,0.81659824,0.5721274,-0.07580213,0.81682247,0.57188725,-0.07521406,0.81740075,0.57113826,-0.07461076,0.8179198,0.57047385,-0.074506395,0.8182011,0.57008386,-0.070028976,0.8218222,0.5654239,-0.08379503,0.8180438,0.5690191,-0.101378195,0.81093216,0.57629114,-0.09977633,0.80789745,0.58081526,-0.09998696,0.7963309,0.59653974,-0.10614775,0.78886783,0.6053266,-0.07324021,0.78992563,0.6088131,-0.06490333,0.80780655,0.5858636,-0.06893005,0.81101894,0.5809449,-0.069736704,0.8117641,0.5798067,-0.08217696,0.8132456,0.576089,-0.07911827,0.8163178,0.5721587,-0.073882066,0.81918526,0.5687504,-0.074539095,0.8200548,0.56740993,-0.10042009,0.8095121,0.57845134,-0.099851675,0.80213505,0.5887351,-0.09504463,0.80125886,0.59072053,-0.09555625,0.7946387,0.59951514,-0.102601536,0.7845719,0.6114899,-0.102281615,0.7829237,0.61365217,-0.08898735,0.78683454,0.6107148,-0.0844449,0.7873151,0.6107406,-0.07951124,0.7893274,0.60880226,-0.07236474,0.7902673,0.60847425,-0.065067016,0.7958766,0.60195243,-0.0649807,0.80888575,0.5843641,-0.06796997,0.8096181,0.5830082,-0.08205811,0.8138819,0.57520676,-0.074565105,0.819622,0.56803155,-0.086934745,0.8121203,0.57697743,-0.09376159,0.8003345,0.59217685,-0.09936921,0.79677457,0.5960504,-0.08047246,0.78907204,0.609007,-0.06926347,0.81121033,0.5806379,-0.07935116,0.8157952,0.5728714,-0.08683552,0.81148434,0.57788646,-0.09846215,0.7975443,0.59517086,-0.10611557,0.78947705,0.60453737,-0.10566122,0.78933007,0.6048089,-0.10316917,0.7846601,0.61128116,-0.063864306,0.8017884,0.5941858,-0.06507722,0.80841446,0.58500516,-0.07954333,0.8159696,0.57259625,-0.079532474,0.8161208,0.5723822,-0.07296001,0.81182784,0.5793206,-0.08236506,0.8136441,0.5754992,-0.075715445,0.8190919,0.5686437,-0.092970975,0.8008054,0.5916647,-0.07279389,0.8114669,0.579847,-0.09397587,0.80110484,0.5911003,-0.029728746,0.7834885,0.6206947,-0.028895382,0.7839427,0.6201604,-0.027462592,0.7847246,0.61923593,-0.029161751,0.78301275,0.6213217,-0.030326834,0.7823343,0.62212,-0.031356115,0.7815821,0.6230138,-0.036892164,0.77930486,0.62555814,-0.03940666,0.7796502,0.6249741,-0.04196125,0.77967584,0.6247758,-0.045436278,0.77935237,0.62493634,-0.045773853,0.7792124,0.6250862,-0.047119547,0.777444,0.6271846,-0.049652923,0.7768981,0.6276654,-0.049987312,0.7760539,0.62868243,-0.05052569,0.7746837,0.6303271,-0.053809866,0.77253443,0.63268876,-0.05422184,0.77199847,0.63330746,-0.054928694,0.77188146,0.63338923,-0.055492576,0.771572,0.633717,-0.05954006,0.76879877,0.63671297,-0.062141407,0.7682497,0.63712704,-0.063179135,0.767522,0.63790154,-0.06323928,0.7669103,0.63863087,-0.06290563,0.7666127,0.639021,-0.05952698,0.76697433,0.6389108,-0.058513496,0.7662843,0.63983166,-0.057301212,0.76647425,0.6397139,-0.048717976,0.770048,0.6361231,-0.047800876,0.7700578,0.6361809,-0.04689715,0.77027035,0.63599074,-0.0463883,0.7704111,0.63585764,-0.045661625,0.7699403,0.6364801,-0.043460995,0.7692427,0.63747686,-0.04232259,0.7686102,0.638316,-0.041048,0.7687295,0.6382554,-0.03991638,0.7696428,0.63722575,-0.03917787,0.7708266,0.6358392,-0.029400757,0.77350545,0.63310736,-0.02820529,0.7729142,0.63388336,-0.026950408,0.7727249,0.6341687,-0.026007256,0.77314776,0.6336925,-0.022547098,0.7727676,0.6342885,-0.022124765,0.77282226,0.63423675,-0.021718899,0.77304125,0.63398385,-0.022186372,0.7735443,0.63335377,-0.022435604,0.7741208,0.63264024,-0.020617677,0.7740086,0.6328394,-0.018642237,0.7742287,0.6326313,-0.017681802,0.77420336,0.63268995,-0.016748086,0.7743646,0.632518,-0.0147126755,0.77517384,0.63157666,-0.015590903,0.776012,0.6305254,-0.014156887,0.7755764,0.6310949,-0.012483845,0.775436,0.6313028,-0.011033203,0.7751168,0.6317217,-0.009617483,0.7746444,0.632324,-0.008668265,0.77456295,0.6324374,-0.0022485927,0.7751028,0.63183117,0.0022639993,0.77453655,0.6325251,0.0033077502,0.7746794,0.63234556,0.0058652647,0.7755334,0.6312793,0.0075353277,0.77588725,0.6308266,0.008495225,0.7764203,0.6301582,0.010562426,0.7763312,0.63023674,0.010754844,0.7768348,0.6296126,0.0114594335,0.77766484,0.62857467,0.014946834,0.77885073,0.6270312,0.015288564,0.7791414,0.6266617,0.015442849,0.78054863,0.6249042,0.015417746,0.7811205,0.62419,0.014961859,0.78124493,0.62404525,0.01369492,0.7812492,0.624069,0.007027907,0.78157145,0.62377614,0.0065266048,0.78226,0.6229179,0.0057420377,0.7824394,0.6227003,0.0064449976,0.78281975,0.62221515,0.007574905,0.7828585,0.62215376,0.008675953,0.7830196,0.6219365,0.009664193,0.78338367,0.62146336,0.010043695,0.7841987,0.62042844,0.009716216,0.7846617,0.619848,0.00813163,0.7850963,0.61932033,0.010306147,0.7859412,0.6182154,0.011888341,0.7856998,0.6184938,0.012825662,0.7858932,0.6182292,0.013740111,0.7863462,0.6176333,0.013716477,0.7869576,0.6168546,0.013717748,0.7877263,0.6158727,0.014161766,0.78754777,0.61609083,0.015188492,0.78795457,0.61554605,0.0167172,0.78894323,0.6142387,0.017052185,0.78929603,0.613776,0.01728484,0.78974634,0.61319,0.017588677,0.79099417,0.61157084,0.018117633,0.7919583,0.6103063,0.018567454,0.79302377,0.60890764,0.018487053,0.7941868,0.60739243,0.018157206,0.7952327,0.6060324,0.017498473,0.7960412,0.60498947,0.0145517755,0.7975156,0.6031229,0.013375403,0.7978424,0.60271764,0.011097207,0.7982045,0.6022844,0.009973386,0.7981454,0.60238224,0.008689489,0.7983318,0.6021552,0.007403455,0.7983964,0.60208666,0.005873727,0.7982881,0.60224706,0.0054225735,0.79798776,0.6026493,0.0021853675,0.7989508,0.6013924,0.0031246836,0.7994866,0.6006759,0.0037229152,0.8003125,0.5995715,0.0028242716,0.8021457,0.59712166,0.0013331682,0.80352724,0.5952665,-0.00303523,0.8058491,0.59211326,-0.0050125155,0.80587023,0.592071,-0.005861921,0.80619055,0.591627,-0.0047653317,0.80609524,0.59176666,-0.0027875502,0.806308,0.5914894,-0.0017967111,0.8057779,0.5922151,-0.00076284533,0.80534565,0.592805,-0.00020109862,0.80527896,0.59289604,0.00037336725,0.80531335,0.5928493,0.0007939297,0.8051986,0.5930047,0.0011942438,0.8049899,0.5932874,0.00010886552,0.8063705,0.5914107,-0.0016003279,0.8098432,0.5866443,-0.00086312817,0.81022644,0.5861163,-0.002377944,0.8109631,0.5850925,-0.003773904,0.8118716,0.5838238,-0.005264587,0.8130511,0.5821685,-0.0068038185,0.8141551,0.5806076,-0.007687882,0.81453496,0.5800635,-0.011654935,0.8156783,0.5783883,-0.01514149,0.82174164,0.56965905,-0.015916122,0.82410735,0.56621003,-0.016332902,0.8248211,0.56515783,-0.017035848,0.8252964,0.5644428,-0.018011402,0.8258201,0.56364596,-0.019777544,0.82715863,0.56162035,-0.021002548,0.8280894,0.5602024,-0.025342084,0.82930386,0.558223,-0.027656993,0.82929385,0.558128,-0.03686229,0.82996565,0.55659515,-0.03597938,0.8296551,0.5571156,-0.033918343,0.8293577,0.5576876,-0.03277252,0.82930714,0.55783117,-0.031838205,0.82947713,0.5576325,-0.03093847,0.8298187,0.55717474,-0.028922716,0.8309271,0.5556291,-0.02685899,0.83100533,0.5556156,-0.025919387,0.83150274,0.55491567,-0.025667263,0.8321309,0.55398494,-0.02785634,0.8328972,0.55272627,-0.02981006,0.8328155,0.55274737,-0.03089936,0.8325933,0.55302227,-0.031982146,0.8325683,0.55299836,-0.031043623,0.832766,0.5527541,-0.030134175,0.8331654,0.5522023,-0.029381407,0.8333977,0.5518922,-0.02673534,0.83372164,0.5515374,-0.025806746,0.83402455,0.5511235,-0.02492648,0.83447844,0.5504765,-0.02399775,0.83519906,0.54942393,-0.023226954,0.83610153,0.5480828,-0.021558661,0.837369,0.54621273,-0.019803576,0.8396439,0.5427761,-0.019519063,0.84012634,0.54203945,-0.01933086,0.84064734,0.5412378,-0.018210739,0.8420026,0.5391661,-0.017240087,0.84264016,0.5382011,-0.016707633,0.8431477,0.53742236,-0.016672976,0.8433328,0.53713286,-0.017454633,0.8444434,0.5353603,-0.018301789,0.8450441,0.53438336,-0.019337729,0.84528416,0.533967,-0.020935027,0.84508324,0.5342247,-0.026633078,0.84518987,0.5338022,-0.02747738,0.8451616,0.53380406,-0.02876858,0.84501445,0.533969,-0.030699948,0.84535646,0.5333197,-0.031709183,0.84533876,0.5332887,-0.03385018,0.8449096,0.533837,-0.03614703,0.84433115,0.5346011,-0.038028143,0.84504765,0.53333694,-0.036144935,0.84607136,0.53184277,-0.035827495,0.8463657,0.53139585,-0.036267262,0.8465617,0.53105366,-0.037447747,0.84667647,0.5307887,-0.03691558,0.84766895,0.52923965,-0.034838315,0.8485296,0.5279998,-0.0313177,0.85025716,0.52543503,-0.02942806,0.85100585,0.52433103,-0.02868992,0.8515286,0.5235226,-0.028447077,0.8518082,0.5230808,-0.028319696,0.85203487,0.5227185,-0.028331643,0.8527813,0.5214992,-0.0277939,0.8534486,0.52043533,-0.027674694,0.85369194,0.5200424,-0.027721874,0.85386723,0.51975214,-0.029578026,0.8540051,0.5194231,-0.03137024,0.8537044,0.5198123,-0.033269465,0.8536081,0.51985234,-0.03509234,0.8533425,0.52016836,-0.03810116,0.8531616,0.5202534,-0.040373147,0.8527573,0.52074474,-0.040841263,0.8532638,0.51987773,-0.041240126,0.85320115,0.51994914,-0.042940747,0.8527314,0.52058166,-0.04334347,0.85313404,0.51988816,-0.04371797,0.85330427,0.51957726,-0.044741306,0.8534451,0.5192588,-0.045213692,0.85337174,0.51933837,-0.04560427,0.85324645,0.5195101,-0.04611632,0.85282445,0.52015746,-0.046243515,0.85254216,0.52060866,-0.046360053,0.8519032,0.5216432,-0.04650993,0.85158527,0.5221487,-0.046474952,0.851225,0.522739,-0.046410944,0.85035354,0.52416104,-0.048326116,0.8503652,0.52396905,-0.04897233,0.8502486,0.5240983,-0.049171142,0.8500022,0.5244792,-0.049136728,0.849678,0.52500755,-0.04922347,0.8493745,0.52549034,-0.049893804,0.84869236,0.5265282,-0.04975158,0.8484511,0.5269302,-0.047791723,0.84694886,0.52952206,-0.048985105,0.84716445,0.5290679,-0.049257863,0.8471554,0.529057,-0.049568534,0.84691846,0.52940726,-0.051959436,0.84694886,0.5291293,-0.052571338,0.84641194,0.52992743,-0.05290825,0.84599054,0.5305664,-0.053535398,0.8449662,0.5321336,-0.05354819,0.8447359,0.5324977,-0.05335565,0.84433794,0.5331478,-0.053061817,0.8440629,0.5336124,-0.05219429,0.8438298,0.53406656,-0.05322396,0.843612,0.53430885,-0.053895038,0.8433841,0.5346014,-0.054363318,0.84309137,0.53501546,-0.054561403,0.84279156,0.53546757,-0.05443014,0.842253,0.53632754,-0.053197615,0.841832,0.53711164,-0.05302019,0.8414537,0.5377217,-0.05245655,0.84087574,0.53868014,-0.054494128,0.83829623,0.5424848,-0.05563741,0.8378941,0.5429898,-0.055765472,0.8377443,0.54320776,-0.05610327,0.83656967,0.5449804,-0.057621285,0.8364193,0.54505277,-0.058625486,0.83597994,0.5456194,-0.05865198,0.83587146,0.5457828,-0.057950594,0.835732,0.54607123,-0.057107423,0.83571047,0.54619294,-0.05692808,0.8349027,0.5474456,-0.05630609,0.83448124,0.548152,-0.055455994,0.83428067,0.5485438,-0.0543165,0.83419377,0.54879004,-0.05342369,0.8345184,0.548384,-0.049859393,0.8362959,0.54600656,-0.050183166,0.83568144,0.5469169,-0.050944317,0.8350284,0.5478433,-0.051189553,0.83442396,0.54874057,-0.051844362,0.8340283,0.5492804,-0.052369166,0.8331367,0.5505822,-0.052993238,0.8324384,0.55157775,-0.05358532,0.83147764,0.552968,-0.05394402,0.8303524,0.5546214,-0.05458242,0.8295766,0.5557188,-0.055054255,0.82720935,0.5591902,-0.054877356,0.82705086,0.55944204,-0.054606315,0.8269991,0.55954504,-0.053913858,0.82710403,0.55945706,-0.05501051,0.8263023,0.56053394,-0.05552286,0.8258437,0.5611591,-0.055895183,0.8253498,0.5618482,-0.056849286,0.8235668,0.5643633,-0.057074647,0.8230865,0.5650408,-0.05712468,0.822766,0.5655024,-0.05679495,0.822483,0.56594706,-0.05597415,0.82241076,0.5661338,-0.055690274,0.8224563,0.5660956,-0.05536902,0.82265455,0.565839,-0.054996688,0.8230333,0.56532437,-0.052798904,0.8267873,0.56003135,-0.052594613,0.82735205,0.5592159,-0.052868113,0.8285693,0.5573849,-0.04841294,0.8313081,0.55369943,-0.050299037,0.8301776,0.5552253,-0.05081742,0.82967937,0.5559224,-0.051140442,0.82904136,0.5568439,-0.051217906,0.8283464,0.55787003,-0.051105183,0.8279265,0.5585033,-0.05096905,0.8279514,0.5584789,-0.050734196,0.82834065,0.5579227,-0.050132155,0.8283879,0.55790704,-0.04992619,0.82849675,0.5577638,-0.049655598,0.8289136,0.55716836,-0.048438847,0.82911426,0.55697685,-0.047993157,0.8293115,0.5567218,-0.046602998,0.8305798,0.55494624,-0.047092162,0.8298259,0.55603176,-0.04715832,0.8295366,0.55645764,-0.04557526,0.8287191,0.557806,-0.04476271,0.8284385,0.5582884,-0.046931103,0.8284528,0.558089,-0.04713138,0.82834923,0.55822587,-0.04764395,0.8278051,0.55898905,-0.047933385,0.8268961,0.56030816,-0.04805584,0.8260896,0.56148607,-0.046532106,0.8250966,0.5630722,-0.046712276,0.82334435,0.5656165,-0.04741458,0.822734,0.5664456,-0.049458165,0.8206455,0.5692933,-0.050562475,0.8190332,0.5715138,-0.051138557,0.81927466,0.57111627,-0.051730778,0.81901073,0.5714415,-0.05179248,0.8183295,0.572411,-0.05152381,0.81772316,0.57330114,-0.050611652,0.8167561,0.57475907,-0.049484536,0.8160312,0.5758857,-0.048360445,0.81760883,0.5737395,-0.04671886,0.81703436,0.57469314,-0.045448452,0.8167256,0.5752336,-0.044336945,0.8170147,0.57490975,-0.043218695,0.8175038,0.5742993,-0.042262234,0.81751853,0.57434946,-0.04195511,0.81715566,0.5748881,-0.0415655,0.816936,0.5752285,-0.040983375,0.8170162,0.5751565,-0.039806202,0.81695324,0.57532847,-0.03918708,0.81719595,0.5750262,-0.037968464,0.8178477,0.5741807,-0.0373212,0.81791,0.5741344,-0.036695294,0.81807816,0.5739352,-0.030416388,0.818682,0.573441,-0.032772835,0.81821585,0.5739762,-0.034858044,0.81687415,0.57576174,-0.03632482,0.81476724,0.57864916,-0.036181632,0.81378675,0.5800362,-0.03470723,0.8121407,0.58242846,-0.033868123,0.81136084,0.5835637,-0.032362614,0.81032735,0.58508307,-0.031788934,0.8103109,0.58513737,-0.029764356,0.80861354,0.5875868,-0.031106537,0.80805063,0.5882912,-0.03134403,0.807412,0.5891548,-0.031256795,0.8066879,0.59015054,-0.030787617,0.8064108,0.59055376,-0.030187156,0.80626667,0.5907815,-0.030966762,0.8055411,0.5917301,-0.031682573,0.80475116,0.5927662,-0.031790696,0.8039901,0.59379226,-0.030899772,0.8027051,0.5955751,-0.03033619,0.8022994,0.5961505,-0.02964474,0.8021086,0.5964419,-0.030425077,0.80183166,0.596775,-0.03185669,0.80309683,0.59499633,-0.032928627,0.8027621,0.5953896,-0.032323442,0.8013614,0.59730655,-0.034635935,0.8022673,0.59595925,-0.03569771,0.80219966,0.59598774,-0.038004853,0.8017537,0.596445,-0.039227445,0.8018551,0.5962295,-0.039701007,0.80180365,0.59626734,-0.04292475,0.80092937,0.5972182,-0.04464387,0.80015105,0.5981348,-0.045310304,0.79973835,0.5986364,-0.045715414,0.7992239,0.59929234,-0.046209052,0.7987806,0.59984523,-0.04753276,0.79819626,0.6005193,-0.048788868,0.79749036,0.60135585,-0.049294718,0.79699546,0.6019703,-0.049354773,0.7965948,0.6024955,-0.04830006,0.7966875,0.6024584,-0.047072195,0.7971884,0.60189277,-0.043127805,0.79774684,0.60144824,-0.043316472,0.7972275,0.60212284,-0.04339181,0.79674107,0.602761,-0.04268184,0.7955163,0.60442704,-0.043058112,0.7950379,0.6050295,-0.043195028,0.7944979,0.6057287,-0.042922087,0.7939651,0.6064463,-0.042216346,0.79379666,0.6067162,-0.04302498,0.7930892,0.60758406,-0.043628033,0.7922163,0.6086789,-0.046844795,0.79012626,0.6111514,-0.048793897,0.7896292,0.61164105,-0.052308936,0.78846014,0.6128575,-0.054606285,0.78796667,0.61329174,-0.055683337,0.78746945,0.6138332,-0.056616712,0.78672147,0.61470634,-0.05597791,0.7865189,0.615024,-0.05568582,0.7859438,0.6157852,-0.055781055,0.7852166,0.61670357,-0.05535438,0.78483975,0.6172216,-0.05305061,0.7839781,0.6185175,-0.05099217,0.7845999,0.6179019,-0.047357835,0.7852203,0.6174028,-0.046768107,0.78477895,0.61800873,-0.046231065,0.7845872,0.6182925,-0.04425484,0.7843425,0.61874735,-0.045179963,0.7839898,0.61912745,-0.04589672,0.7833583,0.61987364,-0.044608712,0.78332907,0.62000453,-0.04332817,0.78349966,0.6198798,-0.040816236,0.7830419,0.62062824,-0.03875289,0.78167087,0.62248605,-0.035845682,0.78141624,0.62297976,-0.035466198,0.781504,0.6228914,-0.03345498,0.7825625,0.62167245,-0.0323192,0.7830302,0.6211434,-0.033217967,0.77986896,0.6250608,-0.050225288,0.7751755,0.6297463,-0.055975854,0.771086,0.6342658,-0.056407884,0.7675498,0.6385025,-0.04663023,0.7704388,0.6358064,-0.038631137,0.7721566,0.63425696,-0.026503425,0.7730758,0.6337597,-0.0049714325,0.7750565,0.6318724,0.004573142,0.7751561,0.6317532,0.0110606,0.7810816,0.624331,0.0046157264,0.7822345,0.622967,0.013250252,0.7877016,0.61591446,0.0013076612,0.7983369,0.6022096,-0.0068145515,0.8061764,0.59163594,-0.002107757,0.8092398,0.5874747,-0.028323079,0.8450035,0.5340102,-0.042598348,0.8527639,0.5205565,-0.046090953,0.85079545,0.52347183,-0.047940165,0.84718126,0.5291367,-0.05459755,0.83727115,0.54405516,-0.04957185,0.8363632,0.5459297,-0.047198508,0.8301553,0.55553085,-0.049165554,0.81686574,0.5747287,-0.038579144,0.817575,0.5745283,-0.035566535,0.8186253,0.57322574,-0.029107787,0.80209583,0.59648556,-0.036783114,0.8018856,0.59634423,-0.045823067,0.79755664,0.60150117,-0.042923197,0.79611546,0.6036206,-0.044221886,0.7915038,0.6095622,-0.042155486,0.7836029,0.61983013,-0.02628723,0.7852166,0.6186629,-0.02806658,0.7837866,0.6203957,-0.035591356,0.77927387,0.62567204,-0.05715815,0.7702209,0.63521075,-0.060738884,0.7672149,0.6385077,-0.050147843,0.7698604,0.6362391,-0.030682398,0.7739017,0.63256204,0.0074774004,0.7813742,0.624018,0.0055107796,0.7826198,0.6224756,0.013207428,0.7874637,0.6162195,0.004548642,0.79714316,0.60377324,-0.014231082,0.81941634,0.573022,-0.029444454,0.8286332,0.559017,-0.019066809,0.84112287,0.5405079,-0.03865591,0.8441196,0.5347595,-0.045922123,0.85046834,0.52401793,-0.052919187,0.83964205,0.54055595,-0.046795115,0.8305034,0.5550444,-0.048722487,0.81739926,0.57400745,-0.04270333,0.8176152,0.57417923,-0.02932164,0.80946654,0.5864334,-0.02986745,0.8016982,0.59698236,-0.04272202,0.78366643,0.61971104,-0.055941164,0.76784474,0.6381889,0.00048315455,0.797643,0.6031297,-0.0011141266,0.80763173,0.58968616,-0.0017335938,0.808418,0.5886063,-0.013003112,0.81688195,0.5766583,-0.029777797,0.82856834,0.5590955,-0.037289105,0.8441525,0.53480476,-0.037235323,0.84725416,0.5298811,-0.046193194,0.8246587,0.5637412,-0.0312075,0.81058794,0.5847848,-0.028661,0.801882,0.59679455,-0.044470746,0.79771906,0.60138726,-0.034275223,0.77939296,0.6255972,-0.062072504,0.7669792,0.6386626,-0.05369348,0.7689083,0.63710046,0.009692151,0.7810795,0.6243564,-0.053930327,0.8271562,0.5593783,-0.046179943,0.8241392,0.5645015,-0.03056991,0.8107626,0.58457637,-0.044998713,0.79098266,0.6101815,-0.05266109,0.76929337,0.6367217,-0.03766835,0.77309257,0.6331737,-0.032038983,0.7740879,0.6322669,-0.012427519,0.816175,0.5776712,-0.05284213,0.82879585,0.55705035,-0.02928025,0.8108314,0.58454686,-0.029094512,0.81040275,0.58515024,-0.033130392,0.7740237,0.6322893,-0.035173528,0.82919383,0.5578534,-0.049672667,0.7851834,0.6172679,-0.012687073,0.7777122,0.6284924,0.004027892,0.79679567,0.6042354,-0.021425864,0.81784874,0.57503426,-0.038726494,0.84154874,0.5387912,-0.052732557,0.8289923,0.5567684,-0.048914917,0.7852958,0.6171854,-0.014112021,0.77814573,0.6279253,0.0034831457,0.7966525,0.6044275,-0.018064713,0.81371814,0.5809789,-0.05243775,0.82922524,0.55644923,-0.01634702,0.77768415,0.6284427,0.00295176,0.79662156,0.60447115,-0.036086075,0.8294586,0.55740136,-0.018546984,0.8138558,0.58077073,-0.05136133,0.82991433,0.5555216,-0.016891023,0.78499866,0.61926717,-0.038037583,0.82703096,0.56086797,-0.025839275,0.81746507,0.5753983,-0.012993237,0.80766815,0.58949417,-0.049303196,0.8309598,0.5541435,-0.034388345,0.8187891,0.5730635,-0.018135475,0.78552234,0.6185675,-0.030858176,0.81877106,0.5732902,-0.027757203,0.79798394,0.6020392,-0.024067555,0.8144395,0.5797491,-0.01536287,0.8082915,0.58858204,-0.043713506,0.80199915,0.59572345,-0.04484257,0.80299675,0.594294,-0.046361096,0.8030181,0.5941486,-0.047498424,0.8026767,0.59452003,-0.047486465,0.8013629,0.59629065,-0.04673247,0.8004842,0.5975292,-0.04617663,0.8005015,0.59754914,-0.045745652,0.8000427,0.5981965,-0.044719815,0.8004428,0.59773856,-0.043856986,0.8009202,0.5971628,-0.042600658,0.80140316,0.5966055,-0.042196166,0.8018357,0.5960528,-0.043296773,0.80180514,0.59601504,-0.02376082,0.85922945,0.51103836,-0.022750478,0.8592399,0.51106673,-0.021663345,0.8595941,0.510518,-0.02144302,0.8598305,0.5101291,-0.022584127,0.8598892,0.50998086,-0.023199206,0.85975695,0.51017624,-0.009176545,0.8703754,0.49230322,-0.008955602,0.8704748,0.4921315,-0.00887983,0.8706149,0.491885,-0.008870146,0.8711531,0.49093136,-0.008974347,0.8716155,0.49010798,-0.008937714,0.871689,0.4899779,-0.008554977,0.87171036,0.4899468,-0.008473275,0.8719499,0.4895217,-0.008584448,0.87221014,0.48905596,-0.009331893,0.87224185,0.48898572,-0.009984211,0.87124723,0.49074286,-0.011228414,0.8706778,0.49172562,-0.01114929,0.8712794,0.4906606,-0.011681731,0.87129575,0.49061924,-0.012116031,0.8712029,0.4907736,-0.012862356,0.87061197,0.4918022,-0.013335193,0.87050545,0.4919781,-0.013509129,0.8703078,0.4923229,-0.013317326,0.8701949,0.49252766,-0.012468876,0.8700853,0.4927435,-0.012924452,0.86856645,0.49540418,-0.013632942,0.86861753,0.49529558,-0.014392928,0.86848027,0.4955147,-0.014369733,0.8683049,0.49582267,-0.014218958,0.8680842,0.4962133,-0.013976959,0.86801773,0.49633646,-0.013140782,0.86803424,0.4963304,-0.012993012,0.86795425,0.49647418,-0.012984543,0.86771333,0.49689537,-0.01285922,0.8675345,0.49721074,-0.011325747,0.8663729,0.49926925,-0.011862771,0.86524886,0.5012023,-0.011380548,0.8649646,0.50170386,-0.011240509,0.86503685,0.5015824,-0.010875993,0.8657743,0.5003165,-0.01046316,0.8660829,0.49979088,-0.010254699,0.86701775,0.4981717,-0.010133911,0.8671078,0.49801743,-0.010005278,0.86756885,0.49721646,-0.009830715,0.867826,0.49677098,-0.009191747,0.8693361,0.49413577,-0.009060093,0.8698781,0.4931835,-0.00963208,0.86964685,0.4935804,-0.009974866,0.8696476,0.49357215,-0.01062447,0.8702293,0.49253228,-0.011074782,0.8700723,0.49279973,-0.012224394,0.8676744,0.4969826,-0.011097164,0.8670241,0.49814257,-0.011873665,0.868916,0.49481723,-0.011476814,0.86766464,0.4970175,-0.011212132,0.86736155,0.49755225,-0.0065928157,0.8729262,0.48780772,-0.0065900376,0.87302387,0.48763293,-0.0068203034,0.873188,0.48733577,-0.007004148,0.8731934,0.48732352,-0.00736315,0.87297153,0.48771554,-0.0075860294,0.87305754,0.4875582,-0.007795112,0.87301105,0.48763818,-0.007898124,0.8728979,0.48783892,-0.00800077,0.87245893,0.48862195,-0.007877709,0.87204593,0.48936066,-0.007768003,0.87195826,0.48951855,-0.007054051,0.871932,0.48957616,-0.0070528197,0.8722072,0.48908564,-0.029132698,0.855192,0.51749194,-0.028605357,0.8553117,0.51732355,-0.028541816,0.8553753,0.5172219,-0.029095002,0.85559815,0.51682234,-0.029118454,0.85588074,0.51635283,-0.029476548,0.8563146,0.5156127,-0.030233914,0.8564383,0.5153634,-0.030577753,0.85635376,0.51548356,-0.030657332,0.8561029,0.51589537,-0.030391298,0.8557234,0.5165403,-0.029643865,0.8552008,0.51744825,-0.0290106,0.855487,0.51701105,-0.026607314,0.8548088,0.5182605,-0.026518472,0.8548358,0.51822054,-0.026326967,0.8553607,0.5173634,-0.026155513,0.8556135,0.5169539,-0.02655328,0.8556868,0.5168124,-0.027413592,0.855569,0.51696247,-0.026922608,0.8549746,0.5179706,-0.027446812,0.85743356,0.5138622,-0.027089255,0.8576852,0.51346105,-0.027067779,0.85784996,0.51318693,-0.027335027,0.8580561,0.5128279,-0.028247342,0.85839033,0.51221883,-0.029064113,0.8584585,0.51205885,-0.02962748,0.8583409,0.51222366,-0.030011104,0.85775095,0.5131887,-0.030113256,0.85733575,0.513876,-0.030081682,0.85704786,0.5143579,-0.029956613,0.8569086,0.51459706,-0.029714745,0.8568744,0.5146681,-0.029128639,0.8571646,0.51421815,-0.029053427,0.8570742,0.5143731,-0.029080456,0.8567671,0.51488286,-0.02901117,0.8566164,0.5151376,-0.028819595,0.85649496,0.51535016,-0.02851728,0.8564391,0.5154598,-0.026955936,0.8566217,0.51524043,-0.025813803,0.8561816,0.5160297,-0.025473602,0.8562063,0.5160057,-0.025164615,0.85632956,0.51581633,-0.024854217,0.8567698,0.5150998,-0.025333703,0.8570044,0.5146859,-0.025930421,0.8570281,0.5146167,-0.026902882,0.8572173,0.5142516,-0.027585689,0.85721207,0.51422423,-0.025177196,0.85861933,0.5119951,-0.02439237,0.8588416,0.5116602,-0.0242845,0.85913396,0.51117426,-0.024375144,0.85919887,0.5110608,-0.025117356,0.85932446,0.51081365,-0.025497062,0.85974824,0.5100812,-0.026465353,0.8602718,0.5091483,-0.027068628,0.8601536,0.50931627,-0.027163837,0.8600649,0.509461,-0.026846413,0.85977614,0.50996494,-0.026417246,0.85962373,0.51024425,-0.02552641,0.85937804,0.51070327,-0.025489112,0.85880315,0.5116712,-0.06392055,0.8346503,0.5470586,-0.06336852,0.8347038,0.5470411,-0.0625592,0.83510345,0.5465241,-0.06205225,0.8354792,0.54600734,-0.062254466,0.83554244,0.54588753,-0.0628815,0.8354356,0.5459791,-0.063935764,0.83478636,0.54684913,-0.051712964,0.82361275,0.56479007,-0.050469134,0.82361996,0.564892,-0.050305594,0.82407016,0.56424963,-0.050304607,0.82485676,0.56309927,-0.050728988,0.8257716,0.5617187,-0.05094307,0.8260094,0.5613495,-0.051556967,0.82626486,0.5609173,-0.052218374,0.82618856,0.5609686,-0.052513268,0.826007,0.5612083,-0.052791175,0.825773,0.56152654,-0.053071346,0.8252945,0.5622032,-0.052654594,0.82393885,0.5642271,-0.052150596,0.8236982,0.56462514,-0.05971106,0.83184487,0.55178684,-0.05579259,0.8323832,0.5513849,-0.055415023,0.83379596,0.5492845,-0.056088667,0.83410305,0.5487497,-0.057130218,0.8342182,0.5484671,-0.057808615,0.8349421,0.5472932,-0.05845171,0.8352862,0.54669946,-0.058784336,0.8353265,0.5466023,-0.05921297,0.8352604,0.54665697,-0.060257133,0.83496183,0.5469989,-0.060468264,0.8348361,0.5471675,-0.06064356,0.834554,0.5475782,-0.060584895,0.83438784,0.547838,-0.059688095,0.8325046,0.5507935,-0.060808506,0.83233315,0.55093,-0.061100576,0.8321569,0.5511639,-0.06102486,0.8318926,0.5515711,-0.059037942,0.8337955,0.54890764,-0.059655968,0.8271016,0.5588775,-0.059809856,0.82835925,0.5569953,-0.06069394,0.8281052,0.55727726,-0.061700135,0.8276344,0.557866,-0.061992574,0.8278032,0.55758303,-0.06229624,0.8277797,0.557584,-0.062695235,0.8276162,0.557782,-0.063043624,0.827398,0.5580663,-0.063254036,0.8271615,0.558393,-0.06335307,0.82677627,0.5589521,-0.06373162,0.82621205,0.5597427,-0.06371289,0.82607186,0.5599518,-0.06331654,0.82614005,0.5598961,-0.06205107,0.82682896,0.5590201,-0.061590917,0.8268108,0.5590979,-0.061813287,0.8263772,0.5597141,-0.061591785,0.8258062,0.56058055,-0.062036812,0.8253022,0.56127334,-0.062035076,0.82518184,0.5614504,-0.061525967,0.8251847,0.5615022,-0.05983387,0.82568026,0.56095636,-0.059452754,0.8260522,0.5604491,-0.059433814,0.8263196,0.56005675,-0.061727688,0.82689035,0.55896515,-0.058659367,0.8271179,0.5589588,-0.058439836,0.82722324,0.55882597,-0.05647474,0.8290923,0.5562522,-0.055611864,0.83019286,0.55469555,-0.055968557,0.83021,0.5546341,-0.056347013,0.8300978,0.5547636,-0.057792284,0.82947904,0.5555399,-0.05817948,0.82908094,0.5560935,-0.05817517,0.8289613,0.55627227,-0.05763272,0.8287911,0.5565822,-0.05896572,0.828311,0.5571569,-0.05931361,0.8279929,0.5575927,-0.05937071,0.8275478,0.5582471,-0.059307598,0.82730514,0.5586133,-0.059148796,0.8271471,0.55886406,-0.05807945,0.8497903,0.52391154,-0.056637082,0.85139096,0.52146494,-0.056481432,0.85204786,0.52040786,-0.05662388,0.8525373,0.5195902,-0.056764454,0.85266596,0.51936364,-0.057332184,0.85251814,0.5195439,-0.059746943,0.8515728,0.5208206,-0.06165459,0.8510094,0.5215186,-0.06200095,0.85082495,0.52177846,-0.062134594,0.8506633,0.52202606,-0.061710246,0.8498702,0.5233665,-0.06174046,0.8497952,0.52348465,-0.062512904,0.84985673,0.5232931,-0.06321208,0.84973234,0.5234111,-0.063727565,0.8500552,0.522824,-0.06427786,0.8501566,0.5225917,-0.06443866,0.85009784,0.5226675,-0.06462696,0.84990704,0.5229544,-0.06503054,0.84972876,0.52319413,-0.06520546,0.8493246,0.52382827,-0.06521878,0.84892887,0.5244676,-0.065142706,0.84877795,0.52472126,-0.064800665,0.84871626,0.52486336,-0.064636916,0.8485544,0.52514523,-0.06435509,0.8485147,0.525244,-0.06502471,0.8482142,0.5256467,-0.0650991,0.8480774,0.5258581,-0.0646495,0.8478159,0.5263351,-0.06345247,0.84742653,0.5271073,-0.06340156,0.8473401,0.5272523,-0.0642583,0.847063,0.52759373,-0.06441859,0.8467961,0.52800244,-0.06568645,0.84632117,0.52860737,-0.06513191,0.8458374,0.52944964,-0.06487508,0.8457278,0.5296562,-0.06463305,0.8457283,0.5296851,-0.064160936,0.84594554,0.5293954,-0.063544385,0.84643966,0.52867955,-0.06301497,0.84644914,0.52872765,-0.061825853,0.84722424,0.5276255,-0.06080584,0.8475052,0.52729267,-0.059265837,0.8482449,0.5262776,-0.059023704,0.84843034,0.52600586,-0.0589752,0.8487491,0.52549684,-0.05925267,0.84889686,0.52522683,-0.060333196,0.8489059,0.5250892,-0.059013348,0.8493493,0.5245219,-0.05854147,0.84975076,0.5239242,-0.059925664,0.83821213,0.54204184,-0.059624176,0.8383348,0.5418853,-0.059416346,0.83853036,0.54160553,-0.059384532,0.83876103,0.5412517,-0.059509568,0.8389689,0.5409158,-0.059895396,0.8391506,0.5405912,-0.060989052,0.83884084,0.5409495,-0.06060086,0.8383938,0.5416857,-0.060276397,0.83823586,0.54196626,-0.05758767,0.84302354,0.534785,-0.05750484,0.84343815,0.5341398,-0.05757669,0.8441904,0.53294224,-0.058223035,0.8448066,0.5318946,-0.05873742,0.8450003,0.5315302,-0.05922555,0.844952,0.53155285,-0.05952293,0.844359,0.5324612,-0.061805777,0.8439789,0.5328036,-0.061808612,0.84388554,0.53295106,-0.062190093,0.8432284,0.5339459,-0.06273355,0.8433516,0.5336877,-0.06324933,0.8430061,0.53417253,-0.063356295,0.8428507,0.53440505,-0.063223064,0.8425695,0.53486407,-0.06269281,0.84210324,0.53566,-0.06057228,0.8417699,0.5364275,-0.059969388,0.840921,0.5378249,-0.05965333,0.8405901,0.538377,-0.059150618,0.84041834,0.53870046,-0.058182098,0.8403976,0.5388384,-0.056945253,0.84057814,0.5386888,-0.056989983,0.839164,0.5408843,-0.056742407,0.8390927,0.5410211,-0.05638027,0.83909965,0.54104817,-0.05602051,0.8392656,0.5408281,-0.054779034,0.8400607,0.5397196,-0.053768765,0.8405518,0.5390561,-0.05346841,0.84082085,0.5386663,-0.05346682,0.84106433,0.5382862,-0.053758223,0.8412178,0.5380173,-0.057130165,0.84135556,0.5374542,-0.057343673,0.84152687,0.53716314,-0.057719022,0.8416451,0.53693753,-0.0577065,0.8420164,0.53635657,-0.05783424,0.8425355,0.535527,-0.061567076,0.8435851,0.5334545,-0.06182607,0.8433039,0.5338689,-0.061585367,0.84345824,0.5336529,-0.055402968,0.84116393,0.5379347,-0.066113405,0.84457713,0.5313365,-0.06705515,0.8451028,0.5303818,-0.06771016,0.84486496,0.53067744,-0.068196505,0.84491783,0.530531,-0.068851225,0.84475046,0.5307129,-0.06927579,0.84485495,0.53049123,-0.06956348,0.8448189,0.530511,-0.069864124,0.84466743,0.53071266,-0.07005372,0.8444763,0.53099185,-0.07007239,0.8443462,0.5311962,-0.06839967,0.8437077,0.53242725,-0.06711848,0.84370357,0.5325969,-0.06892525,0.83971244,0.5386393,-0.06851833,0.8397652,0.5386091,-0.06847635,0.83986974,0.5384514,-0.06820468,0.8421869,0.5348545,-0.06845545,0.842299,0.5346459,-0.06952549,0.8422746,0.5345462,-0.0696492,0.84149647,0.5357543,-0.069923684,0.8408439,0.5367422,-0.069933765,0.84049225,0.5372914,-0.069726765,0.8399104,0.5382274,-0.06943569,0.83976334,0.53849447,-0.07122715,0.83821076,0.540675,-0.07037167,0.8383418,0.5405838,-0.07016837,0.83851224,0.54034585,-0.07020962,0.8386733,0.54009044,-0.07063397,0.83885056,0.5397597,-0.07129294,0.83873504,0.53985256,-0.071547695,0.83840775,0.54032713,-0.07151947,0.8382874,0.5405175,-0.06257101,0.8096207,0.5836088,-0.06155864,0.8095426,0.5838247,-0.06067492,0.80992967,0.5833802,-0.059949975,0.8106149,0.5825028,-0.05932797,0.81142956,0.5814312,-0.05811512,0.81153166,0.58141124,-0.05705043,0.81180394,0.58113647,-0.05641851,0.81280595,0.579796,-0.057165716,0.8128228,0.5796991,-0.057396572,0.81291515,0.57954687,-0.057162516,0.8138913,0.57819843,-0.05731386,0.8146195,0.577157,-0.05633212,0.81424314,0.57778436,-0.055973426,0.813712,0.578567,-0.055574555,0.8135237,0.5788702,-0.05535913,0.8141175,0.57805544,-0.055485398,0.814663,0.5772743,-0.055775806,0.81532615,0.57630914,-0.056264233,0.81576854,0.5756353,-0.057818655,0.81586564,0.5753436,-0.058484167,0.8157646,0.5754196,-0.059212588,0.81597996,0.5750396,-0.05801153,0.81638616,0.5745853,-0.057419546,0.81671286,0.5741804,-0.057394918,0.8173207,0.5733173,-0.058775008,0.81831235,0.5717608,-0.059768844,0.81944907,0.57002705,-0.06009392,0.8205963,0.56834006,-0.06090846,0.8213223,0.5672035,-0.06194943,0.82131696,0.56709856,-0.06330573,0.82156533,0.56658876,-0.06429336,0.8215575,0.56648886,-0.067853495,0.8209565,0.56694466,-0.06847365,0.8210388,0.566751,-0.06906044,0.820975,0.5667721,-0.071574114,0.8197211,0.56827325,-0.066584915,0.821084,0.56691045,-0.070065886,0.8199582,0.56811905,-0.07081583,0.81963515,0.5684921,-0.056776665,0.81448746,0.57739633,-0.059270494,0.8155452,0.5756501,-0.0596672,0.8110738,0.5818927,-0.012716896,0.77335036,0.63385135,-0.011781273,0.77373224,0.63340324,-0.01263887,0.7742238,0.6327857,-0.014488358,0.7746519,0.6322219,-0.015307426,0.7742109,0.6327426,-0.016752,0.7738769,0.63311446,-0.01729338,0.77346545,0.6336025,-0.016760204,0.7735059,0.63356745,-0.014473633,0.77260643,0.63472027,-0.013866092,0.77260965,0.6347299,-0.013249749,0.7727249,0.6346027,-0.013020877,0.77290225,0.6343914,0.37519887,0.5953556,0.710477,0.3753928,0.5955788,0.71018744,0.37536314,0.59598196,0.7098648,0.37517896,0.5965402,0.7094931,0.37499753,0.5968014,0.70936936,0.3747101,0.59671324,0.7095954,0.37421015,0.59633017,0.71018106,0.37435478,0.5959963,0.710385,0.27655616,0.6193388,0.73480344,0.27595708,0.62092,0.7336934,0.27497894,0.6221724,0.7329994,0.27488416,0.6219208,0.73324835,0.27509528,0.62107295,0.73388755,0.27452746,0.62002844,0.73498255,0.27378875,0.6205485,0.73481923,0.27352393,0.6202825,0.73514235,0.2732322,0.61870635,0.7365777,0.27339303,0.6181324,0.7369997,0.27385578,0.61824965,0.73672956,0.27446908,0.61887705,0.73597413,0.27525565,0.61819404,0.73625433,0.27529058,0.61791664,0.7364741,0.27586815,0.617127,0.73692,0.2764861,0.6170036,0.7367917,0.27688086,0.6173067,0.7363894,0.27906188,0.6166313,0.73613197,0.2792418,0.61688226,0.73585343,0.27914223,0.61761373,0.7352774,0.27754298,0.6190417,0.7346818,0.27496368,0.6202216,0.73465645,0.27479938,0.6186662,0.7360282,0.28344047,0.6116376,0.738621,0.2817094,0.6129811,0.7381694,0.2809481,0.61346847,0.7380546,0.27985594,0.6136374,0.7383291,0.27869996,0.6146919,0.737889,0.27805415,0.61366564,0.7389861,0.2783747,0.6132262,0.73923016,0.27956277,0.61212695,0.7396927,0.2813422,0.61104006,0.7399166,0.28225425,0.6119706,0.73879933,0.2755786,0.6238929,0.7313099,0.2760449,0.6239981,0.7310442,0.27628952,0.6244022,0.73060656,0.27572933,0.62659246,0.72894114,0.27523077,0.6272053,0.7286024,0.27457714,0.62684286,0.7291608,0.27426103,0.6260617,0.7299505,0.27419728,0.6247231,0.73112035,0.27445945,0.6236417,0.7319446,0.27513078,0.62396485,0.73141706,0.2747604,0.62390286,0.7316091,0.2774464,0.6200338,0.7338812,0.27803764,0.6201822,0.73353195,0.27764827,0.62067944,0.7332588,0.2769303,0.62150234,0.7328332,0.27683505,0.6218508,0.73257357,0.27640116,0.6221911,0.7324484,0.27605096,0.6222958,0.73249155,0.2757316,0.6222458,0.7326543,0.27627513,0.6213434,0.73321515,0.27716985,0.62112904,0.733059,0.26564148,0.634415,0.7259148,0.26515338,0.6351716,0.72543144,0.26448214,0.63529795,0.7255658,0.26230648,0.63742393,0.7244902,0.262245,0.6376859,0.72428185,0.26133516,0.6383395,0.7240349,0.26143855,0.6386688,0.72370714,0.26217496,0.63939506,0.7227988,0.26193672,0.6397574,0.72256464,0.26141375,0.640073,0.7224745,0.2606571,0.64037937,0.7224764,0.25908437,0.64008415,0.72330326,0.25843263,0.6396683,0.7239041,0.25861698,0.6391192,0.7243231,0.2611699,0.6372263,0.7250744,0.2625876,0.63555986,0.7260244,0.26393035,0.63488454,0.72612834,0.2629691,0.63615775,0.72536236,0.26345712,0.6356796,0.7256044,0.31019232,0.627285,0.7143489,0.3090144,0.6287592,0.71356285,0.30740294,0.6297938,0.7133465,0.3067398,0.6297455,0.7136745,0.30546296,0.6293568,0.7145645,0.30384475,0.6281792,0.7162885,0.30258715,0.62756234,0.7173608,0.3028226,0.6272518,0.71753305,0.30353782,0.6271429,0.717326,0.3045617,0.6276015,0.7164904,0.31095332,0.6246412,0.71633196,0.31164032,0.62405604,0.7165433,0.31237578,0.6236338,0.71659076,0.31330517,0.62323195,0.71653455,0.3141999,0.62173665,0.71744126,0.31573468,0.62116444,0.7172631,0.3193025,0.62101084,0.7158152,0.31939456,0.6207937,0.7159625,0.31982842,0.6202885,0.7162066,0.3204091,0.6200097,0.7161885,0.32125163,0.6189989,0.71668524,0.321985,0.61846733,0.71681505,0.3222617,0.61774516,0.7173133,0.32265583,0.6172766,0.7175394,0.32423332,0.61649114,0.7175036,0.3249408,0.6159166,0.717677,0.3256639,0.6158891,0.7173727,0.32608214,0.6157299,0.71731937,0.3265272,0.61539346,0.7174057,0.32694605,0.6152477,0.7173399,0.3273302,0.6153827,0.71704894,0.32767493,0.6159388,0.7164137,0.32733333,0.61736506,0.7153413,0.32691455,0.6176881,0.71525395,0.3208161,0.62201494,0.7142649,0.32092768,0.62257266,0.7137287,0.3206227,0.6230747,0.71342766,0.31985164,0.6237197,0.7132101,0.31924555,0.6245407,0.7127631,0.31879056,0.6248475,0.7126978,0.3159729,0.6250597,0.71376574,0.3132647,0.6261235,0.71402705,0.3125893,0.6261986,0.7142572,0.3173314,0.62115777,0.7165638,0.32568488,0.61765534,0.71584296,0.31101328,0.62678707,0.7144289,0.30934542,0.62571937,0.71608704,0.32430398,0.6178939,0.71626395,0.32177776,0.62030786,0.7153162,0.30766046,0.6266204,0.7160251,0.32299978,0.6186829,0.7161722,0.3061202,0.62721324,0.7161662,0.3124522,0.6304125,0.7106009,0.31285542,0.6308708,0.71001655,0.3101353,0.6321455,0.71007615,0.31153032,0.6306129,0.7108278,0.31347317,0.63130647,0.7093565,0.31399992,0.63146514,0.7089823,0.31445128,0.6320365,0.7082727,0.314535,0.6329448,0.7074239,0.3136971,0.63238585,0.7082953,0.32410955,0.62639725,0.7089284,0.32530499,0.62672925,0.7080869,0.32383248,0.62767583,0.7079235,0.32333127,0.6285365,0.70738864,0.32218978,0.62905276,0.7074507,0.32212362,0.62880033,0.7077051,0.3223021,0.6278085,0.7085039,0.32389656,0.62686807,0.70860946,0.32374522,0.6264497,0.7090485,0.32386068,0.627044,0.7084702,0.31672034,0.6505017,0.69031566,0.31809548,0.6509754,0.68923604,0.3178204,0.65155417,0.6888159,0.31781843,0.6521494,0.68825334,0.31753987,0.65249884,0.6880507,0.3166185,0.6532393,0.68777263,0.3154365,0.653327,0.68823224,0.3150971,0.6530076,0.6886907,0.31465465,0.6519291,0.6899137,0.3148302,0.6513971,0.690336,0.31478584,0.61430126,0.7235633,0.31517935,0.6146415,0.72310287,0.314786,0.6152517,0.7227552,0.31447425,0.61546934,0.7227056,0.3140509,0.6155392,0.72283024,0.3138258,0.61539143,0.72305375,0.3137032,0.61484516,0.7235715,0.31349424,0.61471546,0.7237722,0.31377968,0.6144432,0.72387975,0.31421694,0.61431813,0.7237962,0.3160432,0.5904619,0.7426112,0.3163741,0.5912615,0.7418338,0.31475988,0.5924087,0.74160516,0.31392154,0.5931932,0.7413333,0.3137516,0.5929797,0.741576,0.31359768,0.5922988,0.742185,0.31406397,0.5909013,0.74310124,0.3146149,0.59027064,0.74336934,0.31606755,0.58985025,0.7430868,0.37198877,0.5802095,0.7245559,0.37265438,0.5803983,0.7240625,0.37196952,0.58154,0.7234984,0.3709899,0.58254135,0.72319573,0.371223,0.583746,0.7221039,0.37093142,0.5852472,0.72103786,0.37025958,0.58479726,0.7217479,0.37052548,0.58391345,0.72232676,0.37004414,0.58209103,0.7240423,0.37101486,0.5808611,0.7245332,0.37105605,0.58008385,0.72513455,0.37176523,0.5794103,0.7253098,0.3618384,0.60105103,0.7126083,0.3630133,0.60124385,0.7118477,0.36311686,0.60148007,0.7115953,0.36306387,0.6018368,0.7113207,0.3627257,0.60194975,0.7113976,0.36190978,0.60254097,0.71131265,0.3607747,0.6030305,0.71147436,0.36168182,0.60215795,0.71175283,0.36285776,0.5979879,0.7146641,0.36324197,0.5980042,0.7144552,0.36408162,0.5986147,0.71351594,0.36551008,0.5987103,0.712705,0.36588404,0.5991512,0.7121424,0.36757135,0.599986,0.7105689,0.366324,0.60049176,0.71078575,0.36572623,0.6004011,0.71117,0.3640933,0.59958774,0.7126925,0.36309317,0.5986632,0.71397877,0.34359428,0.6008345,0.72176236,0.3445456,0.601363,0.7208681,0.344703,0.60236275,0.71995765,0.3442336,0.60393906,0.7188608,0.34379008,0.604392,0.7186923,0.34324875,0.6045489,0.71881914,0.34176618,0.60279596,0.72099435,0.34258157,0.6015972,0.7216084,0.34007397,0.6016938,0.7227132,0.34073028,0.60276806,0.72150785,0.34056595,0.6029877,0.7214019,0.3403726,0.6037346,0.72086823,0.3398183,0.6038834,0.72100514,0.3388873,0.60331124,0.7219216,0.3386939,0.6023022,0.7228544,0.33920255,0.6018102,0.7230256,0.34596953,0.59257686,0.7274323,0.34632567,0.5933153,0.7266605,0.3459459,0.5939113,0.72635454,0.34503332,0.5944541,0.7263445,0.34491718,0.5943363,0.72649616,0.3453048,0.59312314,0.72730297,0.34505507,0.5928418,0.72765076,0.34524506,0.59401274,0.72660494,0.34538913,0.59348744,0.7269656,0.34364513,0.5970421,0.72487843,0.343795,0.59726155,0.72462654,0.3439198,0.59786767,0.7240672,0.34219548,0.59887207,0.7240542,0.34187818,0.5984427,0.72455895,0.34240586,0.5979264,0.72473603,0.3581803,0.61261,0.70456785,0.3565085,0.6130646,0.70502025,0.35551876,0.6130417,0.70553976,0.35436767,0.612643,0.70646447,0.3539302,0.6118546,0.7073664,0.3543865,0.611672,0.70729595,0.3557385,0.61160254,0.7066771,0.35680732,0.61093277,0.70671755,0.35756478,0.61076343,0.70648104,0.35893643,0.61153376,0.7051178,0.35984045,0.6116551,0.7045515,0.35935572,0.6124935,0.70407045,0.35858345,0.6126585,0.7043205,0.34744534,0.6091156,0.7129235,0.34801072,0.6091683,0.7126027,0.35000917,0.60970956,0.7111595,0.35090962,0.6104158,0.7101091,0.35132578,0.61117226,0.7092522,0.35101265,0.61115474,0.70942235,0.34976336,0.6106743,0.71045226,0.34822592,0.6106278,0.7112471,0.3474375,0.609669,0.71245414,0.34822026,0.59877515,0.72125655,0.3492937,0.59888977,0.720642,0.35045958,0.60013664,0.7190369,0.35135442,0.6004583,0.7183313,0.35039538,0.60094213,0.71839523,0.34989238,0.6002328,0.71923286,0.34894598,0.599688,0.72014654,0.3488199,0.59937835,0.72046524,0.34843066,0.5991218,0.7208669,0.34783447,0.59888023,0.7213554,0.3569083,0.5956856,0.7195659,0.3577895,0.5960202,0.71885085,0.3571159,0.5965641,0.7187346,0.3564062,0.5967652,0.71891993,0.35672596,0.596335,0.7191183,0.35625985,0.5959525,0.7196663,0.35534734,0.59616053,0.7199451,0.35557297,0.5954809,0.720396,0.35650888,0.5949824,0.7203454,0.32621345,0.6091528,0.7228538,0.32684526,0.609825,0.72200114,0.3270924,0.6108228,0.7210451,0.32667124,0.61128825,0.7208415,0.32595456,0.61121947,0.72122425,0.32574934,0.61016065,0.7222128,0.32828528,0.6061843,0.72440964,0.32887095,0.6066051,0.7237915,0.3291691,0.60748684,0.72291595,0.32857138,0.60806274,0.72270364,0.32824078,0.60841787,0.722555,0.3278901,0.60807425,0.72300327,0.32770804,0.6076479,0.7234441,0.3282203,0.60714626,0.7236331,0.33294663,0.5976955,0.7293193,0.33266962,0.5985171,0.72877175,0.3317809,0.598289,0.7293639,0.33148232,0.59780616,0.72989535,0.33048376,0.59824467,0.72998893,0.3304161,0.5979469,0.7302635,0.33046407,0.5970038,0.73101294,0.3329507,0.59740096,0.7295587,0.3317316,0.59803027,0.7295985,0.33499947,0.607233,0.7204467,0.3345976,0.6086715,0.7194188,0.3340726,0.6088844,0.71948266,0.33421117,0.6080181,0.72015065,0.33439967,0.60746723,0.7205279,0.33466402,0.60724515,0.7205923,0.33394676,0.6114218,0.7173862,0.33401263,0.61235,0.7165634,0.33370373,0.6128646,0.7162673,0.33302897,0.61370194,0.71586424,0.33291477,0.61435103,0.7153604,0.3316098,0.61447346,0.71586126,0.3304577,0.6155258,0.71548986,0.33013174,0.61548954,0.71567154,0.32945824,0.6151341,0.71628714,0.3299169,0.6142697,0.7168177,0.33069566,0.61388165,0.7167912,0.33130604,0.6132383,0.7170601,0.33261713,0.61250025,0.7170839,0.33786932,0.6092474,0.71739936,0.33804104,0.6101397,0.7165596,0.337519,0.61056906,0.7164401,0.3357692,0.6108087,0.71705776,0.33496532,0.61125994,0.7170492,0.33444566,0.611208,0.71733594,0.33483344,0.6107803,0.71751934,0.33542186,0.61034495,0.7176149,0.33704278,0.60938525,0.7176711,0.33412045,0.6006587,0.7263419,0.33433288,0.60071933,0.726194,0.3347467,0.60110694,0.7256825,0.33382285,0.6021471,0.7252456,0.3333936,0.60211647,0.7254684,0.33336237,0.60179526,0.72574925,0.33360392,0.6012472,0.7260924,0.3446609,0.61788046,0.70670545,0.3455701,0.61865616,0.70558196,0.34560537,0.61887705,0.70537096,0.34548292,0.61950004,0.7048838,0.34594125,0.6198191,0.7043784,0.34505937,0.62208366,0.70281285,0.34487152,0.62232584,0.70269066,0.34484494,0.62307066,0.70204335,0.34421465,0.623124,0.70230526,0.3427411,0.62390286,0.70233446,0.34083125,0.62352514,0.70359814,0.34120598,0.6226293,0.7042097,0.34298027,0.6213668,0.7044628,0.3434277,0.6198151,0.7056109,0.34261855,0.6193629,0.7064008,0.3429595,0.6190022,0.70655155,0.3436637,0.6205118,0.7048833,0.34413597,0.6329772,0.693477,0.3440546,0.63377845,0.69278514,0.34303677,0.6345013,0.69262826,0.34087726,0.6343735,0.69381046,0.34107295,0.6338127,0.6942267,0.33962503,0.63317305,0.695519,0.3381912,0.6332127,0.69618136,0.3378171,0.63202995,0.6974366,0.33805788,0.6317406,0.697582,0.33886716,0.6312034,0.6976757,0.34109828,0.63061625,0.6971191,0.34187877,0.631952,0.6955254,0.34286496,0.6315437,0.6954108,0.3416012,0.63041914,0.6970512,0.3425125,0.6296713,0.69727993,0.34555385,0.6289666,0.6964147,0.34651455,0.6289514,0.695951,0.34736204,0.6292409,0.6952665,0.3466446,0.62974674,0.6951666,0.34682772,0.6301929,0.6946708,0.34762532,0.62974674,0.69467664,0.34768066,0.6299824,0.6944353,0.34717116,0.6308048,0.6939435,0.34629342,0.63164747,0.6936154,0.3402808,0.6334389,0.69495624,0.34304187,0.6319962,0.69491225,0.34625655,0.63033444,0.6948272,0.32871994,0.6481257,0.6869325,0.329947,0.64847285,0.686016,0.32950678,0.64896834,0.68575895,0.32889086,0.6493417,0.6857012,0.32810652,0.6496586,0.68577677,0.32682446,0.6492199,0.6868037,0.3288248,0.642113,0.6925065,0.32911906,0.6425643,0.6919478,0.32900864,0.64325297,0.69136024,0.32819024,0.6429952,0.69198877,0.32802895,0.64258385,0.6924471,0.3274121,0.6422031,0.693092,0.3265534,0.64286,0.6928881,0.32444873,0.642783,0.69394743,0.32449076,0.64247155,0.6942162,0.32496262,0.64158165,0.69481814,0.32519838,0.6408119,0.69541794,0.3261042,0.64045596,0.6953217,0.32679677,0.6405109,0.69494575,0.3269231,0.64077204,0.6946456,0.32726958,0.64137113,0.69392914,0.32748768,0.64083874,0.69431806,0.32777855,0.64041734,0.6945695,0.32828748,0.6401915,0.69453734,0.32898447,0.6402183,0.69418275,0.32876793,0.6413332,0.6932556,0.32696712,0.6413502,0.6940911,0.33952984,0.60755587,0.7180497,0.34069952,0.60764116,0.7174232,0.34125677,0.60802823,0.7168302,0.34121677,0.60836107,0.7165668,0.3396066,0.6088885,0.7168836,0.33925328,0.6086133,0.7172845,0.33053806,0.60334796,0.72575194,0.33094105,0.6035572,0.7253941,0.33091173,0.60414964,0.72491425,0.33071727,0.6044925,0.72471714,0.33006588,0.6047409,0.72480685,0.32962906,0.6044165,0.7252761,0.3296606,0.6036531,0.7258973,0.37738535,0.5864897,0.716666,0.37818733,0.58678645,0.716,0.37915194,0.58845586,0.71411735,0.38058877,0.5887073,0.7131451,0.380027,0.58961487,0.71269476,0.38058704,0.5907445,0.71145934,0.38087115,0.593001,0.7094272,0.38058236,0.5938914,0.70883715,0.37987185,0.59378713,0.7093054,0.37707824,0.5926503,0.71174264,0.37617487,0.5916889,0.7130195,0.37597057,0.5907995,0.71386415,0.37544864,0.5902053,0.71463,0.37562382,0.5897759,0.7148923,0.37645072,0.58876175,0.7152933,0.37646276,0.58718246,0.71658397,0.37706083,0.5865283,0.71680516,0.3282162,0.58150125,0.74439937,0.32760358,0.5826086,0.74380314,0.32707644,0.58291054,0.74379855,0.32700008,0.58219016,0.7443961,0.32722813,0.58141524,0.7449014,0.32615277,0.5811344,0.7455918,0.32577434,0.581644,0.7453598,0.32539645,0.5811968,0.7458736,0.3255889,0.5795027,0.74710673,0.32625836,0.5777887,0.74814147,0.32681814,0.57724816,0.74831444,0.32749897,0.57693356,0.74825937,0.32836506,0.5769099,0.747898,0.33065757,0.5770895,0.74674845,0.3321993,0.5767449,0.7463304,0.33855805,0.5758667,0.74414784,0.34030044,0.5752241,0.74385,0.34203902,0.574849,0.74334234,0.34280717,0.57378167,0.743813,0.3430906,0.57287043,0.7443845,0.34386742,0.57263917,0.744204,0.34902602,0.57299405,0.7415246,0.3540533,0.5736811,0.7386043,0.3567926,0.5739366,0.73708606,0.3596301,0.5737788,0.7358289,0.36113724,0.57384235,0.7350407,0.3620312,0.57421494,0.7343096,0.3619511,0.57493615,0.73378456,0.36199015,0.57585067,0.73304784,0.36172983,0.5774103,0.7319487,0.36179745,0.5780732,0.7313918,0.36137888,0.5779967,0.7316591,0.3602961,0.57664746,0.73325604,0.3585045,0.57665026,0.73413146,0.35693654,0.5761356,0.73529863,0.3548838,0.57620454,0.73623765,0.3545267,0.5782331,0.73481786,0.3540999,0.57854944,0.73477465,0.35212898,0.57825744,0.7359507,0.35101676,0.5779459,0.7367264,0.34857166,0.578418,0.7375164,0.34605965,0.5785258,0.738614,0.34448603,0.57942146,0.7386475,0.3407853,0.57963395,0.7401958,0.3396289,0.5794222,0.7408928,0.33855623,0.5790074,0.74170756,0.3347923,0.57961035,0.7429442,0.33457285,0.5802567,0.74253833,0.33361423,0.5801276,0.74307036,0.33269483,0.5808569,0.74291277,0.33353993,0.58123493,0.74223787,0.3328887,0.582055,0.7418875,0.3319533,0.5820356,0.7423217,0.33143058,0.58120584,0.74320495,0.32681948,0.58090067,0.745482,0.34250888,0.57440966,0.74346566,0.35641873,0.57547015,0.7360705,0.33516958,0.5790818,0.7431861,0.3325621,0.58064324,0.7431392,0.32906625,0.5812065,0.7442543,0.3551909,0.5756151,0.7365505,0.33279607,0.58047044,0.7431694,0.3299839,0.5811032,0.7439286,0.35587263,0.57533145,0.73644304,0.33118156,0.5811212,0.7433821,0.33745697,0.5787976,0.74237204,0.33575445,0.5787662,0.7431679,0.33630574,0.5787044,0.7429667,0.3294274,0.66580087,0.66946757,0.32843098,0.66556495,0.6701913,0.32828507,0.6652844,0.6705412,0.32821408,0.6648815,0.6709754,0.32851076,0.6644505,0.6712572,0.32907546,0.66403323,0.67139345,0.32836878,0.66015786,0.6755483,0.3266435,0.66040045,0.6761474,0.32599995,0.6601988,0.67665464,0.32481423,0.66013414,0.67728776,0.32374862,0.6599991,0.6779293,0.3207569,0.6592612,0.68006593,0.3190052,0.6602084,0.67997104,0.31710482,0.6608534,0.6802333,0.3152206,0.6612364,0.68073666,0.3147169,0.660957,0.68124086,0.31453565,0.6607369,0.681538,0.31276852,0.66157323,0.68153995,0.31200385,0.661871,0.68160135,0.3115682,0.66219354,0.6814873,0.3105518,0.66330653,0.6808686,0.31017795,0.6633416,0.6810048,0.3079612,0.6629474,0.6823933,0.30723,0.6630227,0.68264973,0.3051685,0.6629761,0.6836189,0.30453575,0.6619962,0.6848496,0.30341047,0.6620441,0.6853026,0.3021918,0.66148186,0.6863832,0.2996007,0.661129,0.68785745,0.29831213,0.6612952,0.68825763,0.2976168,0.6611763,0.6886727,0.29604807,0.66111493,0.6894074,0.29532358,0.66029096,0.69050694,0.2937355,0.6603377,0.6911393,0.26462916,0.6379787,0.72315603,0.2661564,0.6366948,0.7237268,0.26837867,0.63374674,0.72549146,0.27077582,0.63277656,0.72544765,0.27250177,0.63132167,0.72606874,0.2743292,0.6302352,0.7263244,0.27473465,0.6297971,0.72655106,0.27567905,0.62943625,0.726506,0.27738154,0.6298189,0.72552574,0.27883217,0.62967664,0.72509307,0.27924463,0.629758,0.72486365,0.27989683,0.62776136,0.7263425,0.2773814,0.6285213,0.7266502,0.27596346,0.6283417,0.72734517,0.27605963,0.62761545,0.7279354,0.27642485,0.62670606,0.72858,0.2797616,0.6246159,0.7291011,0.2812109,0.6225593,0.73030156,0.28235525,0.620938,0.73123974,0.28339428,0.6204028,0.73129207,0.2848226,0.620791,0.7304071,0.28496104,0.621481,0.72976613,0.28472874,0.62234116,0.7291235,0.2850888,0.6221704,0.72912854,0.28579506,0.6212546,0.72963274,0.28718707,0.6200719,0.7300921,0.28835014,0.620239,0.7294914,0.28931767,0.62051845,0.72887045,0.2901656,0.62053245,0.72852135,0.29123116,0.62069553,0.72795707,0.29308653,0.62131804,0.7266803,0.29664478,0.62050235,0.725933,0.29780707,0.6205572,0.7254101,0.29851553,0.62095004,0.72478235,0.29875714,0.62167454,0.7240614,0.30118927,0.6203941,0.7241521,0.3035749,0.61963516,0.7238056,0.30406743,0.6192545,0.7239246,0.3048209,0.6188844,0.7239242,0.30619836,0.61843514,0.72372687,0.3069353,0.6186213,0.7232554,0.30748385,0.6184372,0.7231799,0.30825463,0.6183595,0.72291815,0.30913535,0.6166696,0.7239848,0.3070149,0.61668706,0.7248717,0.30633426,0.6163616,0.7254362,0.30543977,0.6154028,0.7266264,0.30404952,0.6163066,0.7264434,0.301801,0.61721754,0.7266076,0.29753038,0.61825365,0.7274875,0.2933038,0.6200692,0.72765857,0.29164174,0.62016416,0.7282455,0.29088816,0.61942583,0.72917473,0.29013696,0.6180668,0.73062575,0.2887796,0.6179227,0.7312851,0.2873756,0.6184733,0.7313727,0.28680143,0.6183628,0.7316915,0.28624257,0.61603874,0.73386747,0.28457153,0.61455077,0.73576254,0.28441763,0.6141695,0.73614025,0.28473297,0.61365354,0.7364485,0.28569558,0.6133049,0.73636615,0.28697568,0.61255544,0.7364922,0.28790882,0.6111035,0.7373337,0.2891414,0.6106973,0.7371879,0.2939905,0.6061171,0.73904777,0.29294676,0.6046045,0.7406994,0.29346275,0.6029428,0.7418487,0.2963173,0.59990686,0.74317414,0.2988085,0.59814703,0.74359506,0.29909313,0.5990747,0.7427333,0.29882318,0.60030574,0.7418475,0.30104515,0.60131186,0.74013233,0.30168667,0.6004597,0.7405628,0.30262512,0.6001769,0.7404092,0.30550393,0.59687185,0.7418971,0.30594555,0.59501314,0.743207,0.30678165,0.5944829,0.74328667,0.30769664,0.5940778,0.7432323,0.30721003,0.59577864,0.74207133,0.31009263,0.59883046,0.73840684,0.31116965,0.5974447,0.73907596,0.31375614,0.59522074,0.73977655,0.31492668,0.59463984,0.73974633,0.31566712,0.5941471,0.7398267,0.31637084,0.5940943,0.7395685,0.31534,0.59549046,0.73888546,0.31403324,0.5968486,0.738346,0.31391904,0.59867346,0.7369159,0.3134276,0.5997712,0.73623204,0.31192276,0.6020362,0.73502153,0.30894965,0.60586095,0.73313206,0.30676726,0.60993916,0.73066276,0.3079556,0.6092076,0.73077327,0.3091589,0.608998,0.7304398,0.3114647,0.60793823,0.7303429,0.31182897,0.6068734,0.7310728,0.31273845,0.60645807,0.7310289,0.3132066,0.60666203,0.7306592,0.31371763,0.60706097,0.7301084,0.31646565,0.6079328,0.7281945,0.31638286,0.608261,0.72795635,0.31582984,0.60871875,0.7278138,0.3150148,0.6093366,0.72765,0.3146933,0.60986555,0.72734594,0.31400082,0.61011136,0.7274391,0.31095716,0.6117515,0.727369,0.31062508,0.6128424,0.72659224,0.30960828,0.61363935,0.7263535,0.30891025,0.6143215,0.7260741,0.3093734,0.614462,0.7257579,0.3105235,0.6150978,0.7247274,0.31324574,0.61555266,0.7231681,0.31409127,0.61614084,0.7222999,0.31518784,0.61580646,0.72210735,0.317653,0.6140659,0.72250926,0.31993514,0.61260056,0.7227462,0.3215618,0.611206,0.7232048,0.32216516,0.61121947,0.7229249,0.32247618,0.6116598,0.7224136,0.3222809,0.61255544,0.72174156,0.3220793,0.6131541,0.721323,0.32112294,0.6150468,0.7201371,0.32020828,0.61758226,0.71837234,0.31958637,0.61877596,0.7176217,0.31889406,0.6194365,0.7173597,0.3170329,0.62012804,0.7175872,0.31501025,0.62049705,0.7181587,0.3129823,0.6223698,0.7174245,0.31031176,0.62286335,0.71815586,0.30827373,0.6247144,0.7174254,0.30680135,0.6248062,0.7179764,0.30501425,0.6258131,0.7178609,0.3016782,0.6266091,0.7185759,0.30038685,0.62727237,0.71853817,0.29971287,0.62729293,0.71880156,0.30004323,0.6279484,0.71809113,0.30160752,0.62798494,0.71740353,0.3030104,0.6286108,0.71626335,0.3043244,0.62983483,0.7146291,0.30309218,0.62973946,0.71523654,0.3024149,0.63083184,0.7145603,0.30150425,0.631623,0.7142461,0.30484924,0.6321706,0.7123393,0.30457225,0.63111943,0.71338904,0.30514666,0.6306956,0.71351844,0.30592668,0.6307353,0.71314925,0.30697992,0.6316897,0.71185064,0.30599493,0.6332298,0.71090585,0.30500764,0.6341699,0.710492,0.302814,0.635971,0.7098201,0.30095825,0.63693726,0.7097429,0.2999358,0.6378126,0.70938957,0.2981611,0.6401175,0.70806044,0.29413173,0.643281,0.7068777,0.29325938,0.6464758,0.70432097,0.2933246,0.6476759,0.7031903,0.2928366,0.6485001,0.70263386,0.29260117,0.649389,0.70191056,0.29379824,0.64993197,0.70090723,0.2944632,0.65049076,0.70010936,0.29569802,0.64977,0.7002583,0.29533878,0.6493236,0.70082366,0.29629022,0.64811856,0.7015372,0.29918134,0.64684695,0.70148385,0.3021898,0.645677,0.70127213,0.30295202,0.6439893,0.702494,0.30422425,0.64265174,0.70316875,0.30736127,0.64177185,0.702608,0.3076845,0.6419111,0.7023393,0.30777812,0.6422377,0.7019995,0.30472547,0.6437754,0.70192283,0.3064656,0.64577526,0.69932336,0.30946508,0.64308524,0.7004804,0.31108844,0.6423272,0.70045686,0.31138363,0.64270794,0.69997627,0.31147557,0.64311653,0.6995599,0.31065845,0.64431787,0.69881743,0.30986416,0.64486057,0.6986695,0.3088799,0.6475719,0.6965944,0.31087026,0.6468372,0.69639164,0.31222713,0.6465239,0.6960755,0.31342155,0.64566004,0.69634044,0.31508246,0.64476025,0.69642466,0.31402788,0.6460147,0.6957381,0.31266198,0.6471595,0.6952892,0.31007367,0.6482438,0.6954382,0.3088936,0.64819646,0.69600725,0.3073305,0.64920306,0.695761,0.3076124,0.6500369,0.6948573,0.30601406,0.6511449,0.6945256,0.30748585,0.65273774,0.692377,0.30924404,0.6524168,0.69189626,0.3107888,0.65323734,0.6904283,0.31395686,0.65521026,0.68711764,0.3157367,0.6543381,0.6871332,0.3171636,0.65418017,0.68662614,0.32022658,0.6559895,0.683471,0.32226467,0.65517354,0.6832958,0.32311073,0.6553094,0.6827658,0.32542497,0.65457976,0.68236643,0.3299104,0.6540029,0.6807638,0.33212665,0.65301275,0.68063664,0.30912644,0.66292757,0.68188554,0.30078918,0.66113853,0.68732935,0.30681786,0.6157642,0.7257391,0.2915229,0.60932916,0.7373821,0.29863873,0.6016768,0.7408103,0.30009946,0.6022185,0.7397792,0.30521452,0.5976518,0.7413882,0.3079071,0.59874034,0.73939383,0.31293207,0.6100817,0.7279244,0.30887094,0.6139872,0.7263735,0.29882494,0.6275212,0.718972,0.2990745,0.627835,0.71859425,0.29349428,0.6443817,0.70613974,0.29576284,0.6506532,0.6994103,0.3084888,0.645526,0.6986636,0.30804238,0.64836645,0.6962262,0.3053599,0.651794,0.69420457,0.30527171,0.65273064,0.6933627,0.31916714,0.6556312,0.68430996,0.32989642,0.66290146,0.67210865,0.32220554,0.65953416,0.67911583,0.30516624,0.6622159,0.6843564,0.27777398,0.62627363,0.72843874,0.3070656,0.6150878,0.7262078,0.2935106,0.6071984,0.73835063,0.3074286,0.60728306,0.73259467,0.31025645,0.6085092,0.7303818,0.31200027,0.61042464,0.7280369,0.3045564,0.6328102,0.7118965,0.31199154,0.6549089,0.6882991,0.3129456,0.65537053,0.68742603,0.30495092,0.66209775,0.6845667,0.2798837,0.6297269,0.7246442,0.28032696,0.6279126,0.72604585,0.3060897,0.6152154,0.7265116,0.31454712,0.61611193,0.7221261,0.30337468,0.64631,0.7001766,0.29926062,0.602045,0.74026,0.30925313,0.59893894,0.7386709,0.3005378,0.63282144,0.71359235,0.3021407,0.63380015,0.7120452,0.30412468,0.64432955,0.7016748,0.3068651,0.6466071,0.69837886,0.3077463,0.64769465,0.69698197,0.28074098,0.62826276,0.72558284,0.30631113,0.6093447,0.7313498,0.3013585,0.6334666,0.71267325,0.30307564,0.6457505,0.700822,0.3067581,0.6471855,0.69789,0.2804159,0.6290382,0.72503644,0.33047435,0.66176814,0.672941,0.29669675,0.6543313,0.6955728,0.3304913,0.6611251,0.6735645,0.30061638,0.6547823,0.6934623,0.28526726,0.6356263,0.71735746,0.30942276,0.6169862,0.72359216,0.32985824,0.6606659,0.6743249,0.28997126,0.633994,0.71691585,0.30903944,0.61808014,0.7228219,0.29035988,0.63385653,0.71688,0.30965546,0.61749846,0.7230554,0.29264233,0.6523771,0.699117,0.11300515,0.7360001,0.6674831,0.11231219,0.7345683,0.66917515,0.11245477,0.73437744,0.6693607,0.112561084,0.73413444,0.6696093,0.112711444,0.73387516,0.66986823,0.112823114,0.7335578,0.67019683,0.11307032,0.73323053,0.67051333,0.11352414,0.73225564,0.6715012,0.113382556,0.73203623,0.6717644,0.113847174,0.73203737,0.6716845,0.11689334,0.73106766,0.67221725,0.11713064,0.7306116,0.6726716,0.11864495,0.72998756,0.67308366,0.12032539,0.7295838,0.6732231,0.120844856,0.72971314,0.6729898,0.1239856,0.7301553,0.6719381,0.12404467,0.729744,0.67237383,0.124379106,0.7296269,0.6724391,0.12686193,0.7295226,0.67208844,0.12781501,0.7288887,0.67259544,0.12866974,0.72867274,0.67266643,0.12983912,0.72860384,0.67251635,0.1305945,0.7286938,0.6722726,0.13091946,0.72893244,0.6719506,0.13121769,0.7296747,0.67108625,0.13304682,0.7310642,0.66921127,0.13523225,0.731152,0.6686771,0.13629642,0.7313229,0.66827404,0.13744079,0.731313,0.6680504,0.13833347,0.73117113,0.66802144,0.13921888,0.731188,0.66781896,0.14397362,0.732078,0.6658329,0.14364627,0.731689,0.666331,0.14335838,0.7311723,0.6669598,0.14376305,0.73058254,0.66751885,0.14535837,0.72939724,0.6684689,0.14628957,0.72848827,0.6692564,0.14712524,0.7278043,0.66981715,0.1482706,0.7274436,0.66995645,0.14971781,0.7272231,0.669874,0.15091895,0.7271435,0.6696908,0.15221556,0.7268849,0.6696781,0.15661114,0.72624665,0.66935694,0.1587892,0.7260697,0.66903573,0.16041265,0.72604156,0.6686789,0.16296786,0.72561777,0.668521,0.16349849,0.7255462,0.66846913,0.16681153,0.7251602,0.66806936,0.16780525,0.72491664,0.6680848,0.16982688,0.7246618,0.6678504,0.17164573,0.7245079,0.66755223,0.17221887,0.7243658,0.6675589,0.17265397,0.7243769,0.66743445,0.17324817,0.7241683,0.6675068,0.17352463,0.72432756,0.6672622,0.17368175,0.724606,0.6669189,0.17456236,0.7249348,0.6663314,0.17533754,0.7253638,0.6656606,0.17581545,0.7259097,0.66493917,0.176048,0.7263404,0.6644071,0.17657539,0.72664547,0.66393334,0.17720202,0.7267333,0.6636702,0.177754,0.7268861,0.66335523,0.18020049,0.7270897,0.66247135,0.18281406,0.72692996,0.6619304,0.18395396,0.72722954,0.6612852,0.18631455,0.7279077,0.6598767,0.18862753,0.72750497,0.6596637,0.18872775,0.72773945,0.6593764,0.18879195,0.72784287,0.6592438,0.18841614,0.72898495,0.6580884,0.18895644,0.7295039,0.657358,0.11346828,0.73292387,0.6707813,0.11363131,0.7326276,0.6710774,0.11659796,0.73144144,0.6718618,0.12255641,0.7311723,0.6710939,0.12556045,0.72961,0.6722379,0.14133555,0.731826,0.6666745,0.16452731,0.7255093,0.66825676,0.16570354,0.72535264,0.6681362,0.18481152,0.727754,0.6604686,0.11211331,0.7374086,0.6660775,0.11535746,0.73179525,0.6716907,0.123370804,0.73092985,0.6712088,0.14388783,0.73224574,0.6656669,0.1862399,0.7279013,0.65990484,0.11303909,0.7368886,0.6664964,0.13185269,0.73059356,0.6699611,0.14354639,0.7323305,0.6656474,0.16859534,0.7400364,0.65109265,0.17275193,0.7429466,0.64667386,0.1727783,0.74253094,0.64714414,0.1727312,0.74235594,0.6473574,0.097117394,0.69217575,0.71516496,0.10038254,0.69310945,0.7138086,0.10126572,0.69364005,0.71316814,0.11089578,0.6997601,0.70571804,0.11433162,0.6987025,0.70621747,0.11548961,0.69865555,0.7060755,0.121375486,0.69592744,0.7077803,0.125459,0.69490904,0.70806885,0.1273494,0.69399905,0.70862365,0.15459956,0.69383645,0.703342,0.15506701,0.6933275,0.7037409,0.12826854,0.69279915,0.70963126,0.12992582,0.6885202,0.71348387,0.13181642,0.6867221,0.71486866,0.133379,0.6837851,0.7173897,0.13335396,0.6828293,0.71830416,0.13353544,0.68158376,0.7194525,0.13451241,0.68140596,0.71943885,0.13518754,0.6814515,0.7192692,0.13647506,0.6807202,0.7197184,0.1369497,0.6800132,0.7202964,0.13751702,0.6794963,0.72067595,0.14311153,0.6750314,0.723776,0.14259714,0.67487043,0.7240275,0.14217201,0.6745163,0.7244411,0.14271304,0.6741721,0.72465515,0.14330837,0.67421365,0.72449887,0.14922468,0.67285174,0.72457063,0.15186328,0.67019385,0.7264831,0.15560798,0.6683633,0.72737664,0.16017754,0.66784203,0.72686327,0.16020407,0.66790354,0.7268009,0.1602239,0.6678008,0.7268909,0.1575785,0.66669697,0.72848076,0.16384995,0.6622236,0.73117244,0.16930467,0.6600138,0.7319274,0.16960944,0.6595585,0.7322672,0.17027673,0.65926504,0.7323766,0.17367527,0.6597199,0.731168,0.17626053,0.6591119,0.7310976,0.17766616,0.65940475,0.73049307,0.18354979,0.654349,0.7335781,0.18366808,0.65358245,0.73423153,0.18412305,0.6533406,0.73433286,0.18436994,0.6537792,0.7338804,0.18496199,0.6536941,0.73380727,0.18705516,0.65358764,0.7333714,0.1892346,0.6524782,0.73380005,0.18805541,0.6507587,0.73562783,0.18860164,0.6507722,0.73547596,0.1894923,0.65120757,0.73486143,0.19076127,0.6511242,0.734607,0.19140472,0.65136737,0.73422396,0.19698842,0.64782065,0.7358831,0.19645351,0.6469171,0.73682034,0.19655621,0.6463204,0.7373165,0.19693895,0.6459776,0.73751473,0.2018606,0.64372325,0.73815495,0.20315538,0.64348453,0.73800784,0.20565405,0.64349365,0.7373075,0.20850685,0.6410487,0.7386348,0.21041869,0.6377804,0.7409184,0.21344239,0.63410467,0.74320495,0.21471767,0.63121,0.7452988,0.21553807,0.6296435,0.74638623,0.2175106,0.62604904,0.7488336,0.21586357,0.6257386,0.7495693,0.21471606,0.6254142,0.7501694,0.2142438,0.6248575,0.7507681,0.21378654,0.62406933,0.7515536,0.21396507,0.61981976,0.75501156,0.21247374,0.6192625,0.7558895,0.21197298,0.6180707,0.7570047,0.21241914,0.6161321,0.75845855,0.21373776,0.6148237,0.75914955,0.21812923,0.6148613,0.7578689,0.21860036,0.615918,0.7568745,0.2201824,0.6190879,0.7538235,0.22315097,0.62127197,0.751149,0.22326453,0.62242657,0.7501587,0.22677854,0.62850344,0.7440127,0.22875354,0.6282256,0.7436427,0.22948548,0.6292945,0.74251246,0.22836745,0.631171,0.74126345,0.22746556,0.63446903,0.73872083,0.22565088,0.6358302,0.7381067,0.22308567,0.63713235,0.73776364,0.219974,0.6379472,0.73799384,0.2256932,0.64862335,0.72687715,0.22592881,0.6481075,0.7272639,0.22787976,0.64732516,0.7273521,0.2289856,0.64698863,0.7273041,0.23403692,0.64652586,0.72610676,0.23793079,0.6419444,0.7289008,0.24002446,0.6408139,0.729209,0.24171694,0.6403964,0.7290167,0.24205905,0.64149797,0.7279339,0.24213395,0.6426119,0.7269258,0.2425166,0.64418817,0.7254015,0.24178337,0.6457381,0.72426724,0.23957704,0.6477324,0.7232189,0.23520634,0.65030944,0.72234035,0.23386699,0.65150505,0.72169757,0.22716892,0.65395653,0.72161984,0.22420318,0.65573543,0.7209327,0.22174866,0.6568774,0.7206522,0.20622088,0.6652405,0.71758485,0.20750652,0.66599226,0.7165162,0.20780028,0.6667148,0.7157587,0.20722762,0.6677831,0.7149284,0.2058375,0.6681978,0.7149424,0.20458473,0.66834486,0.7151644,0.1976779,0.66800445,0.7174215,0.17642483,0.6801013,0.7115733,0.17399728,0.68429726,0.70813996,0.17202628,0.6869593,0.70604104,0.169924,0.68925655,0.70430905,0.16912258,0.689767,0.7040022,0.16629942,0.6907068,0.70375323,0.16089204,0.69366825,0.7020955,0.15804933,0.6945921,0.70182776,0.15130365,0.70504403,0.6928348,0.15218648,0.7046136,0.69307935,0.15301871,0.70519394,0.6923054,0.15328962,0.7058643,0.69156194,0.15341401,0.7067113,0.6906687,0.15164474,0.7075977,0.6901517,0.14992389,0.7096656,0.68840224,0.14910652,0.7100809,0.68815136,0.15201463,0.7137997,0.68365306,0.15097979,0.71285784,0.68486404,0.1517786,0.71278137,0.6847671,0.15304609,0.71321636,0.68403167,0.15470105,0.713792,0.68305826,0.15620592,0.71460444,0.6818653,0.15764475,0.7149304,0.6811921,0.15854153,0.7156671,0.6802097,0.15935524,0.71656233,0.6790761,0.16259958,0.7158141,0.6790961,0.16352445,0.716554,0.678093,0.16661412,0.71480525,0.6791856,0.16597883,0.7143212,0.6798502,0.16666171,0.7142526,0.6797552,0.16744477,0.7143856,0.6794229,0.16773452,0.7146539,0.67906916,0.16702263,0.715454,0.67840177,0.16548647,0.7164393,0.6777382,0.16470717,0.71681315,0.6775327,0.16370024,0.71706086,0.67751455,0.16347344,0.71732575,0.6772889,0.16362123,0.71887493,0.67560863,0.16341001,0.71909463,0.6754258,0.16246887,0.7204193,0.67424023,0.16314521,0.7209516,0.6735076,0.16328786,0.72124976,0.6731537,0.16320194,0.72148293,0.6729246,0.16211303,0.7217189,0.6729347,0.16143246,0.7219607,0.672839,0.16091897,0.7220444,0.6728721,0.16244802,0.72475576,0.6695818,0.1629026,0.7249284,0.6692844,0.12379463,0.7281899,0.67410266,0.123859346,0.7273541,0.6749925,0.12444063,0.7268006,0.67548156,0.122605,0.72615296,0.6765131,0.12157234,0.72682756,0.6759747,0.120902956,0.72674674,0.6761817,0.12033917,0.72657347,0.6764684,0.12015241,0.72593606,0.67718554,0.120021485,0.7251725,0.6780263,0.120186076,0.7247481,0.6784508,0.1211333,0.7237244,0.67937446,0.121539176,0.72282225,0.6802619,0.12179779,0.7224063,0.6806573,0.12059365,0.7222201,0.6810692,0.11957366,0.7233009,0.68010145,0.1191144,0.7237121,0.67974454,0.11845147,0.72378385,0.67978394,0.11735089,0.72352207,0.6802533,0.113051265,0.72454256,0.6798952,0.11279039,0.7251619,0.67927796,0.11245805,0.725142,0.6793543,0.11130193,0.72532094,0.6793537,0.11081883,0.72507626,0.6796937,0.11066268,0.72199255,0.6829938,0.109315656,0.72058064,0.6846997,0.10883493,0.71996343,0.6854251,0.10867551,0.7195203,0.6859156,0.10868883,0.71913487,0.6863175,0.10903909,0.7184678,0.68696034,0.109472804,0.7178297,0.6875582,0.10779026,0.7176641,0.6879967,0.10745061,0.7183534,0.6873301,0.10601692,0.7192936,0.6865691,0.10647584,0.72007936,0.6856739,0.106346615,0.7202745,0.68548894,0.10141689,0.72276044,0.6836169,0.10124815,0.7242053,0.6821111,0.10112092,0.7245555,0.6817579,0.10092505,0.7247258,0.68160594,0.10030983,0.72471464,0.68170863,0.09952718,0.72421294,0.6823562,0.09884646,0.72346383,0.6832492,0.09734633,0.72261786,0.6843589,0.09720386,0.7224364,0.68457067,0.097894676,0.72128814,0.6856822,0.09675805,0.7199688,0.6872284,0.0965679,0.7195327,0.68771166,0.09426341,0.71839136,0.68922293,0.0918299,0.71900284,0.6889138,0.09117072,0.7190751,0.6889259,0.08547676,0.71817255,0.6905953,0.13503274,0.6962499,0.7049839,0.13309589,0.6845955,0.71666896,0.139358,0.67865616,0.72111386,0.17139849,0.659709,0.73171484,0.17217955,0.6598556,0.7313992,0.19331527,0.65168023,0.73344535,0.217127,0.6285213,0.74687135,0.2188518,0.6168487,0.7560433,0.22237842,0.6254442,0.7479088,0.22439046,0.62782305,0.74531007,0.22509807,0.64926785,0.72648615,0.21424527,0.65910995,0.7208835,0.20497276,0.6641983,0.7189067,0.15082058,0.7050332,0.6929512,0.1588378,0.71626025,0.67951584,0.16435343,0.71655697,0.6778894,0.16234988,0.7190218,0.675759,0.16061348,0.7219088,0.6730906,0.16168429,0.7243534,0.6702017,0.120676324,0.72442156,0.6787124,0.113701746,0.723555,0.6808377,0.11098501,0.7240666,0.68074214,0.10416665,0.72068167,0.6853957,0.09787176,0.72161037,0.68534636,0.09017928,0.7186657,0.68948334,0.086395875,0.7178884,0.6907764,0.10350752,0.69637036,0.7101792,0.13272399,0.6968042,0.70487463,0.13603406,0.6811852,0.71936184,0.14402568,0.674505,0.72408533,0.1472915,0.67382455,0.7240619,0.16033085,0.6678116,0.7268574,0.16679186,0.66142625,0.731229,0.1804309,0.65776944,0.73128927,0.19622606,0.64904094,0.735011,0.21451472,0.6222891,0.75282115,0.17795193,0.6780256,0.713172,0.15148187,0.71381646,0.68375385,0.16205746,0.7191835,0.6756571,0.16188891,0.71981907,0.67502034,0.1608278,0.72380084,0.6710043,0.12457286,0.7263691,0.67592126,0.12371772,0.7259396,0.6765394,0.1156953,0.7229177,0.68117887,0.08874262,0.7182763,0.6900753,0.15501767,0.6944376,0.7026563,0.13294214,0.6971037,0.70453733,0.15577106,0.69341964,0.7034946,0.14271745,0.67604244,0.7229096,0.16030131,0.6679131,0.72677064,0.18873246,0.652883,0.73356926,0.19545071,0.65019166,0.7342002,0.22286502,0.62660575,0.7467907,0.22459503,0.64948493,0.72644776,0.20515126,0.66277766,0.7201658,0.16005358,0.72317845,0.67186,0.121086046,0.72209805,0.6811112,0.11435698,0.7230419,0.681273,0.11109384,0.7228075,0.6820612,0.103162296,0.72127455,0.6849237,0.10172314,0.7223144,0.6840426,0.15576604,0.6945296,0.7023999,0.13331869,0.6971495,0.70442086,0.14459687,0.6746025,0.72388065,0.17852932,0.6591574,0.7305058,0.19465484,0.6682745,0.7179963,0.15073702,0.7036739,0.6943496,0.1619052,0.71945167,0.67540807,0.12450875,0.72597533,0.67635596,0.11498313,0.72292,0.68129694,0.19437207,0.6511714,0.73361796,0.22267303,0.64962685,0.7269125,0.20680442,0.6617752,0.7206147,0.18062532,0.6756731,0.7147309,0.1603253,0.7220616,0.6729955,0.15996711,0.7225042,0.6726056,0.09499475,0.7187025,0.688798,0.20722875,0.6426563,0.73759687,0.21865208,0.6394062,0.7371234,0.22154842,0.64889115,0.7279125,0.19050463,0.6698117,0.71767694,0.15517974,0.69634163,0.7007336,0.10844582,0.71727586,0.68829846,0.2204386,0.64714193,0.72980416,0.10634424,0.6989914,0.7071788,0.2192998,0.6446202,0.7323745,0.14997937,0.71315247,0.6847772,0.12163096,0.7222219,0.6808828,0.108841464,0.6999415,0.70585793,0.15599667,0.6940678,0.70280504,0.21839996,0.64090943,0.73589164,0.10925611,0.7174664,0.68797165,0.16715322,0.6768028,0.71693635,0.14915071,0.71259004,0.6855432,0.12970942,0.72236276,0.6792404,0.1670355,0.677039,0.7167408,0.19846813,0.6493366,0.7341475,0.14904928,0.7116442,0.6865471,0.13083878,0.7136287,0.68819714,0.20249408,0.6535277,0.7293132,0.18661317,0.66742516,0.72091556,0.17103028,0.68109405,0.7119407,0.20445788,0.6547414,0.72767484,0.13020016,0.7057269,0.69641757,0.18586197,0.67229295,0.7165735,0.20209715,0.65600526,0.72719586,0.13020338,0.7049392,0.6972143,0.19942638,0.6577303,0.7263746,0.13092662,0.70171964,0.70031977,0.131603,0.69989526,0.7020166,0.15218844,0.7000304,0.6977078,0.13239445,0.6986128,0.70314425,0.15383829,0.69746375,0.6999129,0.13305141,0.6980528,0.7035762,0.13276778,0.67968696,0.7213864,0.13226628,0.6801856,0.7210084,0.13188805,0.679727,0.72151005,0.13095343,0.67980075,0.72161084,0.13050707,0.6796432,0.72184,0.1289975,0.67957324,0.7221772,0.12882602,0.67924994,0.7225119,0.12918662,0.67869866,0.72296536,0.13017812,0.678633,0.7228492,0.13172428,0.6789434,0.72227734,0.13288186,0.6783287,0.7226428,0.13263988,0.67906976,0.72199094,0.13286553,0.6793975,0.72164106,0.18205188,0.6520583,0.7359871,0.18260142,0.6521727,0.73574966,0.1828566,0.6523387,0.735539,0.18281454,0.6526196,0.7353003,0.1815863,0.65291595,0.73534155,0.18146239,0.6524168,0.73581505,0.18168607,0.652214,0.73593956,0.16664416,0.59826857,0.78377575,0.16727595,0.5984229,0.7835234,0.16718973,0.59869325,0.7833352,0.16676684,0.5993163,0.7829488,0.16567789,0.59962523,0.7829434,0.16555037,0.59942335,0.783125,0.16571212,0.5987492,0.78360635,0.210964,0.6186869,0.7567832,0.21159372,0.6193348,0.75607705,0.21063639,0.6197228,0.75602645,0.20973201,0.61965394,0.75633425,0.20785564,0.6186461,0.7576761,0.20701,0.61882484,0.7577616,0.20632985,0.6185597,0.7581635,0.20510055,0.6177598,0.7591486,0.20324579,0.61796355,0.75948155,0.20143068,0.6180199,0.75991917,0.20069745,0.6179555,0.76016545,0.20004609,0.61773306,0.7605179,0.19725893,0.6162872,0.7624166,0.19607228,0.6162469,0.76275516,0.1944292,0.6158931,0.7634612,0.19119847,0.6162187,0.76401424,0.1897286,0.6159938,0.7645618,0.18638253,0.6156715,0.76564366,0.18358243,0.6170788,0.76518714,0.1827924,0.61717665,0.7652973,0.1820832,0.6174039,0.765283,0.1815242,0.6181411,0.7648206,0.18068877,0.61829114,0.76489717,0.17894016,0.61827576,0.76532054,0.17770718,0.61746025,0.76626563,0.17510988,0.61653745,0.7676054,0.17326787,0.6181759,0.76670516,0.1729373,0.61760837,0.767237,0.17250839,0.61714447,0.7677067,0.17172213,0.6168293,0.76813614,0.17107294,0.61638916,0.76863414,0.17052199,0.6148183,0.77001345,0.1701074,0.6131797,0.77141047,0.17046724,0.6125454,0.7718349,0.17168337,0.61110616,0.7727057,0.17338876,0.6100668,0.77314603,0.17423463,0.60975546,0.7732015,0.17503175,0.609694,0.7730699,0.17654926,0.60980207,0.77263945,0.1772741,0.6097372,0.7725247,0.17899409,0.60885197,0.7728262,0.18080753,0.6084747,0.7727012,0.18156433,0.60809386,0.7728236,0.18225661,0.6075193,0.7731124,0.18370254,0.6066647,0.7734412,0.18698922,0.6053516,0.7736824,0.19016822,0.60370743,0.77419215,0.19167432,0.60321677,0.77420306,0.1982416,0.6014365,0.77393436,0.20051569,0.59900516,0.7752331,0.2012986,0.5986987,0.7752669,0.20212208,0.5985567,0.77516234,0.2044575,0.59777063,0.7751564,0.20595972,0.59795445,0.7746167,0.20756432,0.5975397,0.7745085,0.20906945,0.59745497,0.77416897,0.20898724,0.59813535,0.77366555,0.2086923,0.59881747,0.77321744,0.20937313,0.600906,0.77141094,0.21062806,0.60200006,0.7702154,0.21052763,0.6025838,0.76978624,0.21031734,0.6031651,0.7693884,0.20949472,0.60374683,0.76915646,0.20846896,0.6047267,0.7686653,0.20912468,0.60521525,0.76810247,0.208527,0.6057504,0.76784307,0.20699878,0.6092028,0.7655217,0.20728973,0.6100006,0.76480734,0.20745261,0.6108464,0.76408774,0.20767151,0.6126976,0.76254463,0.21008386,0.6165267,0.7587882,0.21039775,0.617127,0.7582131,0.20581669,0.6179703,0.7587834,0.18786639,0.6154028,0.76549697,0.17587647,0.61614084,0.7677486,0.19326325,0.6033072,0.77373755,0.2089155,0.60030293,0.7720043,0.20781879,0.6060995,0.76775956,0.20748378,0.61181086,0.7633073,0.19889084,0.61683065,0.76155263,0.20870051,0.59957206,0.7726303,0.20735642,0.6064702,0.7675918,0.20678012,0.6081879,0.7663872,0.18713756,0.61544186,0.76564413,0.19658926,0.60246205,0.7735581,0.17771657,0.6168172,0.7667812,0.1765675,0.6162294,0.7675189,0.19487408,0.6032589,0.7733711,0.2070921,0.6070359,0.7672159,0.12727687,0.6536599,0.74600893,0.12650372,0.6545037,0.7454004,0.12568681,0.6549353,0.74515945,0.12574315,0.65595996,0.7442481,0.12612785,0.65612334,0.744039,0.12602803,0.65628666,0.7439118,0.12496479,0.6567655,0.7436685,0.12436436,0.65745866,0.74315655,0.12369778,0.6580345,0.742758,0.122258835,0.6586356,0.74246347,0.121369824,0.65871125,0.74254215,0.12056007,0.6594387,0.74202824,0.11998789,0.6592433,0.74229455,0.119198,0.6579395,0.7435775,0.117840596,0.65751135,0.7441723,0.115823634,0.65539885,0.7463493,0.10931485,0.65418017,0.7483973,0.1083854,0.65483356,0.747961,0.10810101,0.65491664,0.7479294,0.10790406,0.6543542,0.7484499,0.10776606,0.65303797,0.7496185,0.10807858,0.6514579,0.7509472,0.10868144,0.6508531,0.75138444,0.11098479,0.64868695,0.75291944,0.11144732,0.6474862,0.753884,0.11236375,0.6466923,0.7544293,0.11250646,0.64382434,0.75685704,0.11195798,0.64329076,0.75739187,0.111932814,0.6424957,0.7580701,0.11214508,0.64168036,0.75872904,0.11334412,0.6414156,0.75877476,0.11412766,0.64063525,0.7593163,0.11412267,0.639703,0.7601027,0.11421039,0.6391919,0.7605194,0.113831386,0.6390588,0.760688,0.11326155,0.6394134,0.7604751,0.11304043,0.6390588,0.7608059,0.11324587,0.63692343,0.76256406,0.11293229,0.63638854,0.763057,0.1127394,0.6358302,0.76355076,0.113201715,0.63327,0.76560724,0.113440044,0.63210654,0.7665329,0.11450546,0.63081795,0.7674355,0.11553516,0.6297316,0.768173,0.116207816,0.6288361,0.76880485,0.11698286,0.62832373,0.76910615,0.11792244,0.62832576,0.768961,0.1190597,0.6280943,0.76897484,0.12013018,0.6281381,0.76877254,0.121187046,0.6288281,0.76804227,0.12180138,0.62990695,0.76706046,0.12191269,0.63255876,0.7648573,0.12256753,0.6321818,0.7650643,0.123227626,0.63198835,0.7651181,0.12472577,0.63225645,0.7646537,0.12646799,0.63159,0.76491827,0.12783018,0.63121134,0.76500434,0.12879865,0.6315695,0.7645462,0.1289193,0.6327535,0.7635462,0.12917814,0.6341152,0.76237184,0.12902896,0.6417758,0.75595987,0.12912694,0.6430154,0.754889,0.12890695,0.64401406,0.7540748,0.12781288,0.6463691,0.7522439,0.12902059,0.64812374,0.7505261,0.12931614,0.6486713,0.75000185,0.12949814,0.64944214,0.74930304,0.12924582,0.6501936,0.7486948,0.12548801,0.6564609,0.74384934,0.119845614,0.6584945,0.7429819,0.109614365,0.650226,0.75179183,0.11046734,0.64945513,0.75233305,0.11329271,0.6380653,0.76160187,0.12396724,0.63221616,0.7648104,0.12538965,0.65516454,0.745008,0.11002729,0.6540326,0.74842197,0.112626165,0.6445335,0.75623536,0.111421145,0.653874,0.74835426,0.112744726,0.65408355,0.74797285,0.128236,0.644914,0.7534199,0.1143252,0.6546783,0.74721223,0.11386652,0.6288951,0.76910686,0.114477076,0.63023585,0.7679178,0.11392668,0.6305488,0.7677428,0.112896785,0.6308914,0.7676134,0.11281432,0.6306592,0.76781625,0.112941876,0.6298447,0.7684659,0.10869921,0.65658367,0.74637955,0.10908992,0.6568851,0.7460572,0.109348215,0.65739644,0.7455689,0.109008305,0.65766287,0.7453836,0.1083585,0.65736365,0.74574226,0.107905336,0.6564712,0.7465936,0.107721426,0.6560256,0.7470118,0.10834053,0.6559818,0.74696064,0.112457424,0.7321001,0.6718502,0.11228669,0.7320943,0.67188513,0.11201395,0.73340553,0.6704992,0.11211628,0.7325133,0.67145675,0.0989254,0.72730994,0.6791421,0.073431686,0.8017817,0.5930884,0.07245624,0.80206025,0.59283173,0.07179819,0.8025613,0.5922334,0.070694424,0.8032456,0.59143794,0.06809692,0.803174,0.5918398,0.0659531,0.8029764,0.59235036,0.062955745,0.80289114,0.5927921,0.061049085,0.80255926,0.59344053,0.057654608,0.801449,0.5952776,0.05683319,0.80087835,0.59612405,0.05138827,0.7976718,0.60089844,0.050851732,0.7978815,0.6006657,0.050099477,0.7980186,0.6005467,0.049591053,0.79729027,0.60155547,0.04930087,0.79663295,0.60244954,0.04434658,0.78813875,0.613898,0.043861784,0.78794724,0.6141786,0.04329561,0.7872336,0.6151331,0.042865362,0.78637254,0.61626357,0.04255602,0.7859707,0.61679745,0.044712365,0.78448313,0.6185362,0.04500454,0.7840559,0.61905646,0.04529352,0.78380513,0.61935294,0.04338479,0.78364843,0.61968774,0.044246837,0.78316325,0.6202399,0.045307063,0.78281766,0.6205996,0.046014342,0.7826506,0.62075824,0.04499948,0.78212726,0.62149173,0.042120397,0.7834138,0.6200714,0.040563043,0.7836506,0.6198762,0.03845562,0.78357536,0.62010545,0.037935425,0.78344035,0.6203081,0.0374162,0.7830509,0.62083113,0.0382376,0.78245795,0.6215283,0.038985502,0.78210706,0.6219234,0.040146496,0.78206354,0.6219043,0.041576076,0.7816225,0.6223646,0.04354952,0.78199077,0.6217668,0.04502643,0.78153694,0.622232,0.045124564,0.78864413,0.61319184,0.053140685,0.79822195,0.6000148,0.04642385,0.7822998,0.62116975,0.04848393,0.7927428,0.607625,0.04677187,0.790121,0.6111638,0.05607508,0.7996478,0.5978453,0.047787074,0.7913215,0.6095299,0.045697656,0.78213733,0.62142813,0.04476943,0.78109175,0.6228093,0.043643374,0.7814763,0.62240666,0.042295028,0.7810247,0.6230663,0.040467,0.7811843,0.62298757,0.03905961,0.78151405,0.62266374,0.03728556,0.78144974,0.62285316,0.06420604,0.803616,0.5916747,0.06560047,0.8039683,0.5910427,0.06515571,0.8040124,0.5910319,0.06391627,0.80379194,0.591467,0.06384435,0.80369,0.59161323,0.059488904,0.8032608,0.5926493,0.06150552,0.8034293,0.5922148,0.061485503,0.8034932,0.59213024,0.060934056,0.8035982,0.5920447,0.059198517,0.80358046,0.59224486,0.058651805,0.80350894,0.59239626,0.058781978,0.80338824,0.59254706,0.051372472,0.8010926,0.5963317,0.053204775,0.80185914,0.5951396,0.05235503,0.801882,0.5951841,0.05119385,0.8012145,0.59618324,0.0544038,0.8025862,0.59405017,0.055359315,0.80266905,0.59384996,0.057949405,0.8032136,0.59286577,0.05768126,0.80327046,0.5928148,0.05622494,0.8031446,0.5931252,0.053946592,0.8027321,0.5938947,0.05022389,0.79863346,0.59971845,0.051176086,0.7993775,0.5986456,0.05104523,0.8005567,0.597079,0.049623683,0.79959357,0.5984878,0.049366675,0.79901385,0.59928274,0.049569383,0.79884166,0.5994956,0.043752935,0.78461313,0.6184399,0.04264733,0.7852029,0.61776817,0.04091508,0.7852784,0.61778945,0.039953724,0.78509736,0.6180824,0.039976474,0.78488356,0.6183524,0.040358838,0.7845407,0.6187625,0.041286197,0.78471136,0.61848485,0.042773396,0.78398657,0.6193024,0.044093765,0.784222,0.6189116,0.043994382,0.7844245,0.61866206,0.068672694,0.8046783,0.5897261,0.06962102,0.8047127,0.589568,0.07022978,0.80515766,0.5888878,0.069754,0.80515766,0.5889444,0.06890191,0.80495244,0.5893251,-0.90843207,0.20845932,0.36234775,-0.907743,0.21037927,0.3629645,-0.90753305,0.21185783,0.36262938,-0.90823406,0.2130637,0.3601595,-0.908399,0.21230587,0.36019084,-0.90835786,0.21180364,0.36059022,-0.9081709,0.21143967,0.36127415,-0.90816534,0.21084249,0.36163688,-0.90843827,0.20931606,0.36183795,-0.8495951,0.30029035,0.43360555,-0.8493156,0.3006334,0.43391547,-0.8494633,0.3008602,0.4334689,-0.8494795,0.3009732,0.43335864,-0.84951276,0.30105847,0.43323424,-0.84962296,0.30121124,0.4329118,-0.8497615,0.30065295,0.43302798,-0.8497483,0.30032128,0.43328398,-0.851024,0.30269557,0.42910784,-0.8509403,0.30275488,0.42923203,-0.8508452,0.30293766,0.42929152,-0.8508328,0.3031552,0.42916244,-0.8508722,0.30323157,0.42903042,-0.8509817,0.30312285,0.42889008,-0.8510776,0.30284667,0.4288948,0.22539972,0.7182188,0.6582984,0.2254841,0.7177074,0.658827,0.22497782,0.71734536,0.6593941,0.22589429,0.71651,0.65998876,0.22695303,0.7151539,0.6610955,0.22683625,0.7144828,0.66186076,0.22742362,0.7139597,0.66222364,0.22887589,0.7134338,0.66229004,0.22856997,0.7132773,0.66256416,0.22842038,0.71283215,0.6630946,0.22865498,0.71202004,0.66388583,0.22993308,0.71125245,0.66426706,0.23225766,0.710529,0.66423255,0.23296392,0.7104073,0.66411537,0.23331165,0.71012896,0.66429096,0.2337212,0.7099471,0.6643414,0.23193114,0.7091743,0.66579264,0.23101315,0.70952445,0.66573864,0.23102584,0.7092692,0.66600615,0.23110983,0.70897657,0.66628855,0.23039149,0.70879805,0.6667272,0.23148386,0.70678306,0.6684855,0.23127632,0.70600736,0.6693765,0.2309819,0.70608824,0.6693928,0.23064698,0.70611113,0.6694842,0.23054434,0.705921,0.66972,0.23081984,0.7054905,0.67007864,0.23122002,0.7055171,0.66991264,0.23215152,0.7058667,0.6692218,0.23439461,0.70227194,0.67221516,0.23388271,0.70124954,0.6734597,0.23383465,0.7007074,0.67404044,0.23405218,0.6998447,0.6748606,0.23416583,0.69916385,0.6755267,0.23440078,0.6987933,0.6758285,0.23478931,0.698447,0.6760516,0.23581755,0.69817245,0.6759773,0.2373041,0.6974882,0.6761634,0.23867008,0.69659543,0.67660284,0.24038042,0.69558036,0.6770415,0.23834768,0.69447136,0.6788962,0.2378413,0.69457495,0.6789678,0.23743995,0.6944505,0.67923546,0.23724025,0.6942193,0.6795415,0.23747183,0.69394624,0.6797395,0.24066666,0.6892096,0.6834249,0.24009514,0.6895368,0.6832959,0.23939118,0.6895158,0.68356407,0.23886831,0.689422,0.6838415,0.23835216,0.688776,0.6846721,0.23836793,0.6886209,0.6848226,0.23856862,0.6881648,0.6852111,0.23897344,0.68772066,0.6855158,0.24006699,0.68726456,0.68559116,0.24174288,0.6863621,0.68590635,0.24390402,0.684703,0.68679875,0.24481341,0.68420905,0.68696755,0.24552931,0.68408847,0.6868321,0.24706821,0.6833982,0.6869674,0.2480431,0.68322957,0.6867838,0.24913466,0.6830397,0.6865775,0.25227943,0.6815962,0.68686366,0.253621,0.6811739,0.68678844,0.25491157,0.68011695,0.68735796,0.28198558,0.6733849,0.683401,0.28213152,0.6737755,0.6829556,0.28269008,0.6748302,0.6816821,0.28261417,0.6753482,0.68120044,0.2824141,0.6756404,0.6809936,0.28161648,0.67614734,0.6808208,0.28080383,0.6772497,0.6800603,0.28076163,0.6782811,0.6790491,0.28060246,0.6788107,0.67858547,0.28111637,0.6804455,0.67673296,0.28283897,0.68051547,0.6759444,0.2834756,0.6818163,0.674365,0.28399518,0.6822314,0.67372626,0.28441402,0.68296754,0.6728031,0.28463358,0.6832364,0.67243713,0.28472564,0.6838093,0.6718155,0.28461567,0.68439424,0.6712663,0.28294218,0.68521273,0.6711387,0.28225088,0.6858276,0.6708017,0.28139263,0.68650585,0.67046845,0.2803955,0.68697417,0.67040646,0.27843675,0.68777823,0.6703985,0.2774918,0.6885931,0.6699536,0.276816,0.6896479,0.6691477,0.27608395,0.6904467,0.66862625,0.2754105,0.6909662,0.66836727,0.27516434,0.69138867,0.6680317,0.2747737,0.6919075,0.66765517,0.2743262,0.6947515,0.66488004,0.2748368,0.69488454,0.6645301,0.2760585,0.695603,0.6632708,0.27618992,0.697418,0.6613073,0.22871996,0.71358365,0.6621824,0.23484764,0.7033547,0.67092377,0.2396105,0.6943824,0.67854244,0.23913425,0.69270694,0.6804204,0.25465357,0.6806297,0.686946,0.28010526,0.67933434,0.6782668,0.28073582,0.6803412,0.67699575,0.27578524,0.69652146,0.6624201,0.27583987,0.6970911,0.6617978,0.23306078,0.70916826,0.6654044,0.2315014,0.70620227,0.669093,0.24130489,0.68913984,0.6832703,0.23402487,0.7092386,0.66499096,0.23500496,0.70439464,0.6697767,0.24075873,0.69449645,0.6780191,0.28020084,0.6799851,0.67757493,0.24106573,0.6947975,0.6776015,0.24151444,0.6895584,0.68277377,0.27424848,0.6942757,0.66540897,0.23494878,0.70535886,0.6687809,0.24117655,0.6909273,0.6815081,0.2415031,0.69016117,0.6821685,0.23332128,0.7060478,0.6686238,0.23410843,0.7094362,0.6647507,0.27435312,0.69292516,0.6667722,0.2340007,0.7097244,0.664481,0.23427498,0.7058401,0.6685095,0.24093527,0.6952037,0.67723113,0.23476183,0.7056354,0.6685548,0.16506253,0.712966,0.6814938,0.16450147,0.71345705,0.6811155,0.16388147,0.71302754,0.6817144,0.16563739,0.70995677,0.6844893,0.16595684,0.7091208,0.68527806,0.16630703,0.70844084,0.68589616,0.16800408,0.70700186,0.6869665,0.16987658,0.7050972,0.68846196,0.17036973,0.70499754,0.68844223,0.17114413,0.70507544,0.68817025,0.17178528,0.7062077,0.6868482,0.1721568,0.7070772,0.6858599,0.17340787,0.7090745,0.68347865,0.17341714,0.7105848,0.6819059,0.17672315,0.71077126,0.68086207,0.17792621,0.7098523,0.6815072,0.18102223,0.7081058,0.682508,0.18198921,0.70675355,0.6836515,0.18221973,0.70486027,0.6855421,0.1826917,0.7034765,0.68683666,0.18405272,0.7021894,0.6877897,0.18822017,0.69945747,0.6894436,0.19100255,0.69806504,0.6900893,0.1897267,0.69828105,0.6902227,0.18869853,0.69827557,0.69051003,0.1881162,0.69805837,0.6908884,0.1875486,0.69807667,0.69102424,0.18685532,0.69787526,0.69141537,0.18788406,0.6968161,0.69220436,0.19252338,0.6935123,0.69424444,0.19473417,0.6922852,0.6948524,0.19698168,0.69133574,0.69516414,0.1989675,0.68970776,0.6962149,0.19901371,0.6892269,0.6966777,0.19969894,0.6886049,0.6970966,0.20048165,0.6884244,0.69705015,0.20151362,0.6884343,0.6967427,0.20458263,0.68890333,0.6953835,0.2073579,0.6878994,0.6955552,0.21128115,0.6869915,0.69527185,0.21466441,0.6846887,0.69650596,0.21744257,0.6834635,0.69684744,0.22051173,0.6815164,0.6977894,0.22118022,0.6812114,0.6978756,0.22181313,0.6814846,0.6974078,0.22191456,0.681744,0.697122,0.22172974,0.6820825,0.69684964,0.2212869,0.6825441,0.6965383,0.21596578,0.6863751,0.6944408,0.21558517,0.6876674,0.6932795,0.21518612,0.6879774,0.69309604,0.21304418,0.68856406,0.6931751,0.21036915,0.6902389,0.69232583,0.2076416,0.6918761,0.69151455,0.20720476,0.69233257,0.6911887,0.20569336,0.6935676,0.6904015,0.2039584,0.6946908,0.6897867,0.202625,0.6954065,0.68945843,0.20013157,0.69735444,0.68821806,0.19913332,0.6990645,0.6867713,0.1982461,0.70058215,0.6854802,0.19776443,0.70117056,0.6850176,0.19705783,0.7013771,0.6850097,0.19455305,0.7031705,0.6838862,0.1925607,0.70421076,0.68337953,0.19227482,0.7053323,0.6823026,0.19204906,0.7071995,0.6804307,0.1917879,0.70931184,0.6783024,0.19459383,0.7094428,0.67736554,0.19652255,0.70799744,0.67832035,0.1975527,0.7074351,0.67860776,0.19835208,0.70721585,0.6786031,0.19902861,0.7078265,0.6777678,0.20042965,0.70977604,0.67531174,0.2035648,0.70953226,0.67462975,0.20478208,0.7105116,0.6732292,0.20759222,0.7092235,0.6737265,0.20865202,0.70903003,0.67360276,0.21177346,0.70874995,0.67292315,0.21221493,0.7085906,0.6729518,0.2127194,0.7086177,0.672764,0.21427307,0.7090589,0.67180544,0.21601442,0.7080703,0.6722903,0.21674065,0.70805943,0.67206794,0.21747915,0.70848596,0.6713795,0.21792312,0.70885456,0.6708463,0.2196587,0.7085786,0.67057174,0.2205514,0.7087451,0.67010254,0.22223212,0.708593,0.669708,0.22307955,0.7083645,0.669668,0.22389494,0.70816535,0.6696065,0.22772592,0.7068259,0.6697298,0.22785425,0.70645505,0.6700774,0.22807851,0.70605564,0.67042196,0.2287665,0.70566446,0.6705994,0.23006588,0.705441,0.6703899,0.19458209,0.7256676,0.6599578,0.19331938,0.72579014,0.66019416,0.19313572,0.72563124,0.6604225,0.19269042,0.72546935,0.66073036,0.1925256,0.72518015,0.6610958,0.19281076,0.723845,0.6624745,0.19137846,0.7239579,0.6627664,0.19095446,0.72382677,0.6630319,0.18973725,0.7226974,0.6646114,0.18881053,0.72245884,0.66513443,0.18815768,0.7221706,0.66563225,0.18729797,0.7219201,0.66614634,0.18654664,0.72176903,0.66652066,0.1863307,0.72142094,0.6669578,0.18624775,0.7210349,0.6673983,0.18640187,0.7206628,0.6677571,0.18765748,0.71732455,0.67099196,0.18577902,0.71688145,0.6719874,0.18391575,0.7160902,0.6733423,0.18391658,0.7159087,0.67353505,0.18505694,0.7152039,0.67397135,0.18514249,0.71502817,0.67413425,0.18446456,0.714627,0.67474514,0.18449582,0.7142245,0.6751627,0.18471089,0.7137586,0.6755965,0.18525809,0.7132785,0.6759536,0.1828731,0.71264803,0.6772667,0.18087235,0.7132492,0.6771712,0.18025021,0.7131608,0.67743003,0.17643346,0.7145961,0.6769222,0.17610565,0.71509844,0.67647696,0.17581594,0.7151711,0.67647547,0.17544176,0.7150251,0.6767268,0.17525785,0.71441424,0.6774194,0.17400995,0.71302336,0.67920405,0.17296354,0.7130867,0.6794048,0.1715236,0.7130688,0.6797886,0.17064768,0.7129792,0.680103,0.16945116,0.7133657,0.67999685,0.16920277,0.71329165,0.6801364,0.168339,0.7123736,0.6813118,0.1987107,0.69033504,0.6956663,0.20310585,0.6887501,0.6959679,0.21802247,0.6845334,0.695615,0.20916358,0.70920855,0.67325616,0.20995657,0.70912737,0.67309475,0.22132945,0.70876193,0.6698282,0.2259643,0.7080618,0.66902053,0.19305244,0.72404075,0.6621901,0.19042224,0.7230319,0.6640514,0.18741602,0.7199274,0.6682663,0.17970513,0.7128507,0.67790115,0.16926281,0.7130377,0.6803876,0.21631727,0.68588966,0.6948109,0.19971195,0.7091034,0.6762304,0.21382454,0.70912135,0.6718824,0.22714122,0.7074339,0.6692863,0.18552507,0.7128471,0.67633533,0.18445931,0.71253324,0.67695725,0.17703861,0.7141243,0.67726195,0.16895175,0.71263605,0.68088555,0.18974052,0.6987683,0.6897256,0.19375147,0.7097034,0.677334,0.17823188,0.71335435,0.67776024,0.18788266,0.7176665,0.67056316,0.17903149,0.71298397,0.67793924,0.19284914,0.70976406,0.677528,0.18774521,0.719142,0.66901904,0.17461516,0.7133209,0.6787362,0.18792585,0.71818024,0.67000073,0.17377289,0.71126324,0.68110764,0.17463233,0.7113166,0.6808321,0.20147176,0.6962199,0.68897533,0.192119,0.7096049,0.67790204,0.21192686,0.68159807,0.70036495,0.20957081,0.6819547,0.7007267,0.20988704,0.6814865,0.7010875,0.21034463,0.68115145,0.7012758,0.21093623,0.68088377,0.7013582,0.21236393,0.6806634,0.7011411,0.21380377,0.681076,0.7003024,0.21521509,0.6809112,0.70003027,0.21641588,0.68093866,0.6996333,0.21613583,0.68113774,0.6995261,0.2150947,0.68154323,0.699452,0.21353856,0.68176204,0.6997155,0.21493676,0.68347037,0.6976177,0.21575145,0.6836022,0.69723696,0.21407004,0.68383294,0.69752884,0.20952946,0.6842283,0.6985192,0.20889287,0.68472224,0.69822574,0.20719977,0.6849191,0.69853705,0.2054844,0.68472224,0.69923645,0.20589848,0.6845135,0.69931895,0.2078366,0.68383294,0.69941145,0.20948666,0.6835686,0.69917756,0.20835958,0.6854126,0.69770753,0.21027157,0.6854455,0.6971014,0.2112518,0.68579227,0.69646364,0.21140857,0.68600434,0.69620717,0.21059115,0.6864637,0.69600207,0.207655,0.6868577,0.6964954,0.20578122,0.6869234,0.6969867,0.20567612,0.6863695,0.6975631,0.20570408,0.68603724,0.6978816,0.20662785,0.6856428,0.6979964,0.18908234,0.6949979,0.6937044,0.18878078,0.6954402,0.6933432,0.18647934,0.6966352,0.69276613,0.18664831,0.6963869,0.6929702,0.18736105,0.6958289,0.6933383,0.17941774,0.70655876,0.6845319,0.18082216,0.70682347,0.6838888,0.1796957,0.7079144,0.68305683,0.17916572,0.7082171,0.68288225,0.17804217,0.7093004,0.68205124,0.1771955,0.7098751,0.6816737,0.1768844,0.7089165,0.6827513,0.17599945,0.70832294,0.6835955,0.17620851,0.7080835,0.6837897,0.17707592,0.7075435,0.6841245,0.17831585,0.70742065,0.68392944,0.17859703,0.707032,0.6842578,0.18220325,0.7035788,0.6868616,0.18176255,0.70412546,0.68641806,0.18075596,0.704899,0.6858897,0.18056795,0.70518905,0.68564105,0.17979553,0.7052302,0.6858017,0.17965336,0.70493585,0.6861414,0.17958485,0.70463175,0.68647164,0.1798922,0.70426095,0.6867717,0.18094987,0.7040722,0.6866873,0.18765832,0.69900906,0.69005126,0.18796742,0.69904196,0.6899337,0.18616591,0.7001089,0.6893402,0.18457185,0.70133525,0.68852174,0.18302763,0.70228773,0.6879628,0.18177731,0.7027577,0.68781435,0.18088193,0.7033619,0.6874327,0.18120652,0.70295715,0.6877611,0.18307503,0.70146585,0.68878824,0.18359858,0.70073295,0.68939465,0.1847636,0.7000912,0.68973523,0.18540587,0.6995762,0.69008535,0.18623172,0.6991413,0.6903037,0.18716675,0.6985299,0.69066966,0.1873938,0.6988616,0.69027245,0.18249185,0.70237994,0.68801105,0.18893297,0.6934988,0.69524366,0.18871349,0.693683,0.6951195,0.18523623,0.6961282,0.69360876,0.18401842,0.6967642,0.6932942,0.18446884,0.69623274,0.6937083,0.18811895,0.6934933,0.69546986,0.1882741,0.69355035,0.695371,0.18894798,0.69337356,0.6953645,0.19179942,0.6933957,0.6945613,0.19076282,0.6943297,0.6939134,0.18941702,0.69479316,0.69381815,0.19004393,0.69416595,0.6942744,0.19098668,0.69358784,0.6945934,0.17797582,0.7024169,0.6891553,0.17794952,0.702899,0.6886704,0.17778039,0.7033123,0.688292,0.17688072,0.7054905,0.68629175,0.17674747,0.70673907,0.6850403,0.17567971,0.7074923,0.6845373,0.17523329,0.70810515,0.68401784,0.17483747,0.7091701,0.6830151,0.17452364,0.70914,0.6831266,0.17404434,0.7088894,0.6835089,0.1750724,0.7073532,0.68483657,0.1752205,0.70685905,0.68530875,0.17486659,0.7063712,0.68590194,0.17510664,0.70587635,0.6863499,0.17645693,0.7041176,0.6878091,0.17709407,0.7030263,0.68876106,0.17750281,0.703709,0.6879581,0.22397763,0.678164,0.6999483,0.22206421,0.6790447,0.69970405,0.21980397,0.6794463,0.7000278,0.21929231,0.67942375,0.70021015,0.21876648,0.6793181,0.7004771,0.23310027,0.67588544,0.6991732,0.23294161,0.6763583,0.69876873,0.2317466,0.67670465,0.69883066,0.22864702,0.6780388,0.6985585,0.22749296,0.6786887,0.6983041,0.22571933,0.6795363,0.69805527,0.22463757,0.68001825,0.6979349,0.22395054,0.68074954,0.6974426,0.22315124,0.6809187,0.69753367,0.22233273,0.68068403,0.6980239,0.22318338,0.68009007,0.6983313,0.21641767,0.6823286,0.69827724,0.21528065,0.6823248,0.69863224,0.2143294,0.6821884,0.6990579,0.21708815,0.6815956,0.69878477,0.22154106,0.679917,0.69902253,0.22459769,0.67940813,0.6985417,0.22930312,0.6773131,0.6990473,0.23179933,0.67594886,0.6995443,0.23440593,0.67472637,0.6998558,0.23372732,0.675347,0.6994841,0.23117995,0.67686844,0.69885975,0.1651513,0.7136899,0.68071413,0.3484275,0.6697453,0.655774,0.34570214,0.6718241,0.6550896,0.34363243,0.67365706,0.6542957,0.34256977,0.674315,0.6541753,0.34219298,0.6782436,0.65029967,0.34287065,0.6783732,0.6498073,0.34348693,0.67879695,0.64903885,0.34182635,0.6849353,0.6434427,0.34224138,0.6854151,0.6427107,0.342627,0.68703175,0.6407762,0.34452683,0.68742794,0.6393309,0.34636727,0.6869519,0.63884807,0.34679872,0.68837124,0.6370837,0.34043664,0.6751792,0.6543975,0.3420672,0.6822626,0.64614844,0.34150875,0.68437064,0.64421165,0.30855194,0.6667523,0.6784078,0.30840755,0.6669672,0.6782622,0.31262225,0.67980015,0.6634298,0.30633423,0.67469686,0.6715233,0.30644858,0.6750346,0.6711316,0.30637315,0.67489594,0.6713055,0.23798537,0.6888032,0.6847723,0.23739941,0.68870556,0.68507385,0.23704754,0.6885789,0.685323,0.23637038,0.6887661,0.6853688,0.23568475,0.6888903,0.68548,0.23546435,0.68869203,0.68575495,0.23545602,0.6883131,0.68613815,0.23607042,0.68762475,0.686617,0.23715666,0.6865461,0.6873217,0.23674075,0.6856329,0.6883759,0.23600157,0.6863193,0.6879456,0.23549858,0.6864302,0.68800724,0.23497096,0.6864067,0.6882111,0.2339888,0.6856093,0.68933964,0.2332882,0.68493897,0.6902429,0.23321971,0.68447006,0.690731,0.23304962,0.6839573,0.6912961,0.23306254,0.6835873,0.6916576,0.2334527,0.68235165,0.6927453,0.23187658,0.68215346,0.69346946,0.23158747,0.68197155,0.6937449,0.23150086,0.6815956,0.6941432,0.23210472,0.6800057,0.69549954,0.23248862,0.6791498,0.6962073,0.2338152,0.67782825,0.69705045,0.2331381,0.67641973,0.6986436,0.2348625,0.6746698,0.6997573,0.23593698,0.6748528,0.6992191,0.23585808,0.6746006,0.69948906,0.23577587,0.6742816,0.6998243,0.2360216,0.67401975,0.69999367,0.23970117,0.6723598,0.7003397,0.2432116,0.6699149,0.7014714,0.24442635,0.66846406,0.70243263,0.23340218,0.6766086,0.69837254,0.23391739,0.67713434,0.69769025,0.23526874,0.6748717,0.6994261,0.23728934,0.6857222,0.688098,0.2339698,0.67741024,0.69740486,0.21480475,0.6906621,0.6905395,0.21451442,0.69144654,0.68984437,-0.24647827,0.541941,0.8034603,-0.24824245,0.54271424,0.80239445,-0.2491164,0.54181635,0.8027304,-0.24901983,0.5412217,0.8031614,-0.2483764,0.54056156,0.80380493,-0.24639305,0.53969365,0.8049976,-0.24389035,0.5394806,0.8059021,-0.24270876,0.540383,0.80565417,-0.24156497,0.541092,0.8055221,-0.24265712,0.54131985,0.80504054,-0.24465033,0.5423155,0.8037662,-0.11499532,0.66694975,0.7361753,-0.11523706,0.6660717,0.7369321,-0.11481315,0.66529775,0.73769695,-0.11365379,0.66520935,0.73795617,-0.114450075,0.66460395,0.73837847,-0.114546485,0.6634041,0.73944175,-0.11416108,0.6598006,0.7427183,-0.11356016,0.6580916,0.74432486,-0.11352857,0.6564474,0.7457802,-0.11396319,0.6549585,0.7470219,-0.1143845,0.6527933,0.7488505,-0.115173966,0.6514488,0.7498996,-0.11578665,0.6508492,0.75032574,-0.117704324,0.64624494,0.75399816,-0.11802674,0.6451836,0.75485617,-0.117609486,0.64481497,0.75523615,-0.1174943,0.6443328,0.7556654,-0.120203756,0.64038527,0.7585893,-0.12260561,0.6366514,0.76134276,-0.12418367,0.6350814,0.7623976,-0.12515388,0.63461065,0.7626309,-0.12598285,0.6338977,0.76308715,-0.12585278,0.63268024,0.7641183,-0.12691855,0.63083977,0.7654625,-0.12742004,0.62878376,0.76706916,-0.12819386,0.62732345,0.7681352,-0.12835822,0.6265872,0.76870847,-0.12840505,0.62566286,0.7694531,-0.12758827,0.62534505,0.7698473,-0.12688687,0.62521404,0.7700696,-0.1254568,0.6254168,0.7701392,-0.12383858,0.62582505,0.7700695,-0.123077996,0.62707525,0.76917386,-0.11864842,0.6303801,0.7671659,-0.12074615,0.6292945,0.76772964,-0.12174542,0.62800413,0.7686279,-0.12334713,0.6251974,0.77065796,-0.12449931,0.62507635,0.77057093,-0.1255295,0.6246532,0.7707468,-0.12510201,0.62304664,0.7721155,-0.12539364,0.62180537,0.77306825,-0.1250524,0.6216699,0.77323246,-0.12379865,0.6219028,0.7732469,-0.12125688,0.62268,0.7730242,-0.12054301,0.6226507,0.77315944,-0.11968262,0.6227627,0.7732029,-0.1180739,0.6214803,0.774481,-0.120912,0.62178606,0.7737974,-0.120208114,0.61977565,0.775518,-0.1202821,0.61818665,0.7767737,-0.12169597,0.6150932,0.7790061,-0.12107327,0.61389774,0.7800454,-0.12088117,0.61198,0.78158057,-0.121475,0.6100405,0.7830035,-0.12167815,0.60780287,0.78471017,-0.12364778,0.6041272,0.78723663,-0.124850824,0.60226476,0.78847283,-0.12401788,0.6020382,0.78877723,-0.12272471,0.6028694,0.78834456,-0.12122196,0.60285443,0.78858846,-0.11920114,0.60350496,0.788399,-0.11767455,0.6032086,0.78885496,-0.11292145,0.6028884,0.7897938,-0.11030829,0.6018905,0.7909235,-0.10885041,0.6018946,0.79112226,-0.103923455,0.60415846,0.79005855,-0.12584649,0.63316846,0.7637148,-0.121602,0.6266436,0.7697602,-0.113485835,0.65719473,0.7451282,-0.12093263,0.62953824,0.7675004,-0.122295,0.6258809,0.77027076,-0.11886578,0.6222745,0.77372175,-0.11968499,0.6302147,0.76714075,-0.33817598,0.601,0.72417957,-0.3380412,0.6012567,0.72402936,-0.33807707,0.6018177,0.7235463,-0.338458,0.6021498,0.7230918,-0.33949947,0.6020736,0.7226669,-0.34003764,0.60176665,0.72266954,-0.33978957,0.60102516,0.7234029,-0.33886158,0.6011022,0.7237741,-0.40031713,0.6341765,0.66148806,-0.39953136,0.634824,0.66134197,-0.39913312,0.6358013,0.6606432,-0.39960074,0.636359,0.65982306,-0.40044156,0.6360348,0.6596259,-0.40128744,0.6346508,0.6604443,-0.40109938,0.6344064,0.6607933,-0.35579193,0.6243437,0.69541866,-0.35550156,0.62447214,0.69545174,-0.35492218,0.6249553,0.69531375,-0.35461238,0.6258038,0.6947083,-0.355401,0.6264656,0.6937081,-0.35694197,0.6266403,0.6927585,-0.35811505,0.6264537,0.6923218,-0.35865322,0.62613875,0.69232804,-0.358704,0.6252133,0.6931375,-0.3581733,0.62471175,0.6938639,-0.36508965,0.62310934,0.6916967,-0.364456,0.62327397,0.69188255,-0.36626613,0.6243749,0.68993115,-0.36989325,0.62584037,0.6866607,-0.36886996,0.6246345,0.6883071,-0.36790776,0.62415993,0.68925196,-0.3762352,0.62282,0.6859609,-0.3749932,0.622856,0.6866079,-0.37443382,0.62320733,0.6865945,-0.3744688,0.62369305,0.68613416,-0.3746976,0.62407136,0.68566513,-0.37507635,0.62440425,0.6851548,-0.377011,0.6238583,0.6845901,-0.36863908,0.62132204,0.6914218,-0.36942953,0.6218681,0.6905084,-0.37197724,0.6232433,0.6878959,-0.3732763,0.6232386,0.6871961,-0.37391797,0.622768,0.68727386,-0.3739965,0.6220029,0.6879237,-0.37335443,0.62126595,0.68893766,-0.3718639,0.62132406,0.68969095,-0.37078905,0.620938,0.6906167,-0.37019008,0.6212045,0.6906984,-0.34183416,0.61347115,0.71190065,-0.34318042,0.6144385,0.7104172,-0.3440308,0.6142031,0.71020937,-0.34415606,0.61390513,0.71040624,-0.34419674,0.6132665,0.710938,-0.34325853,0.6123951,0.7121417,-0.3397999,0.6117387,0.71436113,-0.33736578,0.61201036,0.7152815,-0.3364781,0.6124153,0.715353,-0.33603367,0.6134294,0.7146927,-0.3370403,0.6135775,0.71409136,-0.34107706,0.61337626,0.71234536,-0.108847715,0.9155625,0.3871659,-0.108606584,0.91607314,0.3860241,-0.10877266,0.9163047,0.3854273,-0.109205954,0.9165922,0.38462043,-0.1097479,0.917162,0.38310483,-0.11003492,0.91724145,0.38283214,-0.11147444,0.91721934,0.38246843,-0.11329218,0.9169288,0.38263083,-0.11376494,0.9166889,0.3830652,-0.11377325,0.9155107,0.3858701,-0.114530206,0.9149311,0.38701928,-0.11558512,0.9147594,0.38711154,-0.11660422,0.9144775,0.38747168,-0.11774576,0.914561,0.38692918,-0.11793201,0.9147298,0.38647315,-0.11841884,0.91494006,0.385826,-0.118733004,0.9150033,0.38557935,-0.11900219,0.9149796,0.38555264,-0.12076324,0.9141752,0.38691074,-0.121625714,0.9137266,0.38769934,-0.12208654,0.91354305,0.38798714,-0.122676335,0.9133915,0.3881578,-0.122820646,0.9132926,0.3883449,-0.123221196,0.9135395,0.38763648,-0.12391442,0.9143537,0.38548997,-0.12435741,0.91455996,0.38485757,-0.12610324,0.91468155,0.38399953,-0.12690467,0.9146595,0.3837879,-0.12718919,0.9144575,0.3841749,-0.1273486,0.9142056,0.38472125,-0.12813069,0.9118194,0.390087,-0.12813312,0.9127252,0.38796216,-0.12893489,0.91329366,0.38635546,-0.1293355,0.9140511,0.38442537,-0.12975225,0.9145065,0.38319993,-0.13005944,0.9147397,0.38253856,-0.13043766,0.9148465,0.38215432,-0.1308884,0.91482687,0.3820472,-0.13154592,0.9146802,0.3821725,-0.13321729,0.9142391,0.38264874,-0.1345874,0.9140819,0.3825448,-0.13508172,0.91381496,0.38300806,-0.1355588,0.9134383,0.38373724,-0.1363126,0.91222346,0.38635114,-0.13782765,0.91212565,0.38604444,-0.13817286,0.9126044,0.38478762,-0.13865496,0.91304874,0.38355806,-0.139017,0.91389483,0.38140592,-0.1393558,0.9141158,0.3807523,-0.13994405,0.9142546,0.38020277,-0.1405924,0.91414344,0.38023096,-0.14130373,0.91378134,0.38083714,-0.14189377,0.9131738,0.38207296,-0.14511171,0.91053575,0.38712692,-0.14537695,0.911074,0.3857586,-0.14552589,0.91113794,0.38555133,-0.14596179,0.9111032,0.38546875,-0.14651991,0.9109461,0.38562825,-0.14783548,0.91043246,0.38633847,-0.14863372,0.9097526,0.38763157,-0.14915077,0.90945596,0.38812882,-0.1493409,0.9094421,0.3880881,-0.14978006,0.9091268,0.38865712,-0.15083499,0.9085392,0.38962215,-0.15062203,0.90938574,0.3877249,-0.15096088,0.909662,0.38694423,-0.15127704,0.9097137,0.38669917,-0.15167882,0.90968716,0.38660416,-0.15167922,0.90977347,0.38640085,-0.15127766,0.90997326,0.38608775,-0.15092532,0.9102243,0.3856335,-0.15062164,0.9105266,0.38503832,-0.1506863,0.91062903,0.3847705,-0.15119137,0.91057307,0.38470495,-0.15090187,0.91075337,0.38439167,-0.15097243,0.91093695,0.3839287,-0.15174031,0.9115726,0.382113,-0.15054096,0.91139066,0.38302022,-0.15016049,0.91149896,0.38291177,-0.14974128,0.91170394,0.38258788,-0.14848581,0.9126663,0.38077828,-0.14841203,0.9128008,0.3804847,-0.14868402,0.91311026,0.37963498,-0.14936903,0.9133151,0.37887248,-0.14868271,0.9134751,0.37875682,-0.1483335,0.9136113,0.3785652,-0.14830534,0.913727,0.37829685,-0.14936945,0.91418105,0.37677813,-0.15012568,0.91496104,0.3745779,-0.15058735,0.91525,0.37368557,-0.15061471,0.9153605,0.3734037,-0.15163581,0.9157126,0.37212506,-0.15213525,0.9162614,0.37056714,-0.1525461,0.9165731,0.36962613,-0.15331116,0.91667974,0.36904463,-0.15444764,0.91659147,0.36878985,-0.15546319,0.91664636,0.3682264,-0.15588714,0.91656834,0.36824137,-0.15692988,0.9162535,0.36858174,-0.1574684,0.9160636,0.36882406,-0.1575654,0.91593397,0.36910442,-0.15672207,0.91583204,0.3697159,-0.15574585,0.91583586,0.37011883,-0.1547926,0.9159268,0.37029356,-0.15485199,0.91576016,0.37068066,-0.15475553,0.91567355,0.3709349,-0.15413788,0.91536605,0.37194964,-0.15572833,0.9153729,0.3712696,-0.15646078,0.91532177,0.3710878,-0.15703,0.9151934,0.37116396,-0.15726055,0.9150494,0.37142128,-0.15700288,0.9147628,0.37223527,-0.15671538,0.9146254,0.3726938,-0.1558269,0.9128933,0.37728477,-0.15656765,0.9128728,0.3770277,-0.15722406,0.91260225,0.37740916,-0.15719369,0.91266984,0.37725836,-0.1566755,0.9131488,0.3763137,-0.15651494,0.9133783,0.37582335,-0.15644872,0.91354513,0.37544525,-0.15653996,0.9137294,0.3749584,-0.15687466,0.9138222,0.37459224,-0.15781918,0.91342825,0.37515596,-0.1580868,0.91339844,0.37511578,-0.15847458,0.9135087,0.3746834,-0.15916023,0.91341853,0.37461266,-0.15913181,0.9135246,0.37436584,-0.15882604,0.9137862,0.37385708,-0.15871377,0.9139969,0.3733894,-0.15879452,0.91415656,0.3729639,-0.15983146,0.9147243,0.3711245,-0.16023135,0.914831,0.37068877,-0.16072741,0.91482586,0.37048668,-0.16132058,0.9147088,0.37051794,-0.16145739,0.914572,0.37079585,-0.16175349,0.9144065,0.37107497,-0.1621321,0.9143164,0.37113154,-0.16219838,0.91420734,0.37137127,-0.16194768,0.91373044,0.37265217,-0.16328266,0.91403764,0.3713138,-0.1634676,0.9139765,0.371383,-0.16366608,0.91385365,0.37159777,-0.16387652,0.9136702,0.37195608,-0.16393884,0.913524,0.37228754,-0.16356798,0.9132207,0.37319362,-0.16311143,0.9126918,0.37468436,-0.16449602,0.9127242,0.3739995,-0.1650563,0.9126124,0.37402555,-0.16531935,0.9124719,0.374252,-0.16520663,0.91216546,0.37504783,-0.16491899,0.9119856,0.37561157,-0.16414185,0.91186035,0.37625548,-0.16236153,0.91176206,0.37726474,-0.16321826,0.9115936,0.37730214,-0.16393916,0.91136605,0.37753922,-0.1649842,0.9112566,0.3773481,-0.16635837,0.91187364,0.37524837,-0.1670572,0.91199356,0.37464595,-0.16748886,0.9119516,0.37455535,-0.16772382,0.9118317,0.37474224,-0.16773875,0.9114762,0.37559935,-0.16755214,0.911338,0.37601775,-0.16776586,0.91101605,0.37670198,-0.16798578,0.9108005,0.37712494,-0.16747662,0.9102388,0.37870422,-0.16817719,0.9103588,0.37810495,-0.1690002,0.9107414,0.37681434,-0.16956486,0.9107917,0.3764389,-0.17026022,0.91069245,0.37636515,-0.17164455,0.9101435,0.37706357,-0.17167044,0.9099637,0.3774855,-0.17023396,0.9098686,0.37836424,-0.16915186,0.9095629,0.37958258,-0.16860335,0.9092911,0.38047683,-0.1678191,0.90940136,0.38056004,-0.16625178,0.9097339,0.3804531,-0.16262965,0.9102127,0.38087326,-0.16088615,0.9105428,0.3808247,-0.16049246,0.9103041,0.38156074,-0.15924148,0.9104512,0.381734,-0.1577442,0.9102173,0.38291156,-0.15755102,0.9098216,0.38393003,-0.15542446,0.9099139,0.3845777,-0.15531646,0.909234,0.38622576,-0.15728451,0.9088255,0.38639063,-0.15870704,0.9084469,0.38669926,-0.16017501,0.907974,0.38720432,-0.16059834,0.9077539,0.38754493,-0.16008829,0.90747947,0.38839763,-0.15824305,0.9072366,0.38971898,-0.15784524,0.9072294,0.38989696,-0.15570728,0.90768737,0.3896908,-0.15728989,0.90666723,0.3914261,-0.16014859,0.9066442,0.39031866,-0.16145204,0.9065993,0.3898859,-0.16282111,0.9065021,0.38954222,-0.1634053,0.90665036,0.38895223,-0.16370118,0.90655184,0.38905752,-0.16608065,0.90605587,0.38920426,-0.1661293,0.9062325,0.3887721,-0.16646011,0.9063236,0.38841802,-0.16677672,0.90625805,0.38843518,-0.16752651,0.9059978,0.38871953,-0.16781761,0.9059592,0.38868394,-0.1687605,0.9059079,0.38839498,-0.17037906,0.90566313,0.38825932,-0.17146133,0.90574765,0.38758507,-0.17192847,0.9056815,0.3875327,-0.17260794,0.9055424,0.3875558,-0.17294976,0.9052979,0.38797447,-0.17295432,0.90494674,0.38879076,-0.1728611,0.9046673,0.38948178,-0.17267077,0.9044599,0.39004764,-0.17233828,0.9043744,0.39039263,-0.17134827,0.9045038,0.39052856,-0.16956036,0.90489596,0.3904006,-0.16858317,0.905008,0.39056402,-0.16451827,0.9047439,0.39290228,-0.16274273,0.9047897,0.39353585,-0.16201147,0.9043322,0.39488676,-0.16164088,0.9042831,0.395151,-0.16162182,0.90418667,0.39537936,-0.16261867,0.90368843,0.39610907,-0.16278698,0.90351796,0.39642864,-0.16273281,0.9032347,0.39709583,-0.16261066,0.90312463,0.39739612,-0.16215539,0.90287673,0.39814472,-0.16181456,0.90283346,0.3983814,-0.16037759,0.9030547,0.39846107,-0.15814528,0.9036921,0.39790782,-0.15795931,0.9034102,0.3986212,-0.15862684,0.9033188,0.39856318,-0.16083801,0.90269786,0.39908358,-0.16158092,0.9022258,0.39985028,-0.16178921,0.90193194,0.4004286,-0.16170608,0.90179235,0.4007764,-0.16122091,0.90176916,0.40102395,-0.16219498,0.90146023,0.40132555,-0.16263644,0.9012813,0.4015488,-0.16274385,0.9011823,0.4017274,-0.16202737,0.9011823,0.4020169,-0.1582227,0.9016752,0.40242687,-0.15929702,0.9015805,0.40221518,-0.15983886,0.9014477,0.40229785,-0.16037591,0.9012418,0.40254545,-0.16090745,0.9009624,0.40295842,-0.16221079,0.90016925,0.40420663,-0.16285709,0.8999672,0.40439656,-0.16362482,0.8995719,0.40496576,-0.16811779,0.8988732,0.4046768,-0.16818658,0.89917326,0.40398115,-0.16835652,0.8993846,0.40343946,-0.16867445,0.8994297,0.4032061,-0.1691141,0.89916396,0.40361443,-0.16935576,0.8989423,0.40400666,-0.16962312,0.89848375,0.40491349,-0.16991617,0.8977856,0.40633675,-0.16987261,0.89747196,0.40704712,-0.16778845,0.8975952,0.40763935,-0.16110963,0.8977079,0.41007838,-0.16059038,0.8978186,0.4100396,-0.15813984,0.8982917,0.40995586,-0.15873742,0.89808005,0.4101886,-0.15870684,0.8979349,0.41051802,-0.15806438,0.89755386,0.41159773,-0.15732722,0.89728844,0.41245803,-0.15631376,0.89720714,0.41301972,-0.15644589,0.8969944,0.41343158,-0.15605308,0.8967754,0.41405466,-0.15564543,0.8967596,0.41424233,-0.15439238,0.8971977,0.41376224,-0.15392208,0.89693344,0.4145099,-0.15440969,0.8969266,0.41434324,-0.15468553,0.89685875,0.4143872,-0.15492654,0.8967336,0.414568,-0.1551332,0.8965498,0.41488808,-0.15519293,0.8963886,0.41521394,-0.15478833,0.89599955,0.41620353,-0.1537567,0.8953686,0.41794023,-0.1519795,0.8953393,0.4186523,-0.15079159,0.89521897,0.41933864,-0.14895727,0.894767,0.42095584,-0.14740732,0.89448214,0.42210516,-0.1431806,0.89420646,0.42413923,-0.14034808,0.89457774,0.42430303,-0.1396588,0.8947255,0.42421895,-0.13978358,0.8950423,0.42350894,-0.13935332,0.89517456,0.42337123,-0.13895556,0.89491075,0.42405912,-0.13849309,0.8949058,0.4242208,-0.1373175,0.89521253,0.42395568,-0.13656299,0.8956356,0.4233054,-0.1365279,0.8957652,0.4230424,-0.13671125,0.8958648,0.42277217,-0.13659623,0.8959938,0.4225358,-0.13581829,0.8963501,0.42203075,-0.13549837,0.89658684,0.42163047,-0.1339971,0.8968463,0.42155838,-0.12974726,0.8973208,0.42187798,-0.12840377,0.8975734,0.42175162,-0.12693082,0.8976568,0.42201993,-0.12613718,0.8977623,0.42203343,-0.12464169,0.8981531,0.4216461,-0.122403175,0.89907855,0.42032757,-0.114121415,0.9010537,0.41842386,-0.11241374,0.9010459,0.41890255,-0.11162859,0.9012259,0.41872537,-0.110379316,0.90168035,0.41807765,-0.109058075,0.90195286,0.41783655,-0.10834758,0.90217876,0.41753364,-0.107636005,0.90254015,0.41693622,-0.10715027,0.90287304,0.4163401,-0.10686137,0.9032088,0.41568568,-0.10701905,0.9033415,0.41535658,-0.10700527,0.9036023,0.41479242,-0.10618945,0.90391415,0.4143223,-0.10599472,0.9044195,0.4132681,-0.10544013,0.9042642,0.41374946,-0.10430809,0.9041928,0.41419214,-0.10354833,0.90439475,0.4139418,-0.10271904,0.9047054,0.41346934,-0.101709455,0.90528846,0.41244155,-0.101347305,0.9056725,0.4116868,-0.10116669,0.9059978,0.41101497,-0.1012224,0.9062552,0.4104334,-0.10059391,0.90640897,0.4102483,-0.099684194,0.906432,0.41041946,-0.099236794,0.90657264,0.41021717,-0.09890507,0.90680957,0.40977332,-0.0986984,0.90702677,0.4093422,-0.09861597,0.90722513,0.40892234,-0.09870626,0.90735984,0.4086015,-0.09933821,0.90788823,0.40727243,-0.09905455,0.9079447,0.40721574,-0.09884076,0.90804785,0.40703762,-0.09869748,0.90819776,0.40673783,-0.09864306,0.90832573,0.40646517,-0.098676406,0.9084316,0.40622035,-0.099162765,0.90844226,0.40607807,-0.09929594,0.9090107,0.4047714,-0.09871693,0.90910226,0.4047073,-0.09836754,0.9092286,0.4045085,-0.09811482,0.90953594,0.40387848,-0.09767253,0.9098683,0.40323663,-0.09756527,0.9101011,0.40273678,-0.09782055,0.91031927,0.40218154,-0.09806105,0.91032666,0.40210623,-0.09868964,0.9102,0.4022391,-0.09887783,0.9105822,0.40132684,-0.09942587,0.91079944,0.400698,-0.100941986,0.9109883,0.39988887,-0.10194429,0.9108821,0.39987645,-0.10334528,0.9105058,0.40037358,-0.1020054,0.9111032,0.39935684,-0.10183113,0.9112917,0.39897096,-0.101971574,0.9116812,0.39804432,-0.10187235,0.911908,0.39754993,-0.10193705,0.91203,0.3972533,-0.10216531,0.9120481,0.39715302,-0.104599,0.91180265,0.39708313,-0.105062805,0.9119835,0.39654505,-0.104247786,0.9123617,0.39588955,-0.103548214,0.9128126,0.39503282,-0.1031618,0.9132603,0.39409813,-0.10307746,0.91347367,0.3936253,-0.10311848,0.9136889,0.39311478,-0.10328399,0.9139059,0.39256638,-0.10357053,0.9139644,0.39235476,-0.10438918,0.9138142,0.3924876,-0.105553195,0.91443515,0.39072618,-0.10474076,0.9148038,0.3900813,-0.10350139,0.9155522,0.38865358,-0.10246776,0.915883,0.3881477,-0.101837195,0.91595894,0.38813448,-0.10097933,0.9161808,0.387835,-0.10096205,0.9162337,0.38771442,-0.10155785,0.91619575,0.38764843,-0.1027225,0.916233,0.3872533,-0.10358168,0.916081,0.38738412,-0.12300247,0.9133422,0.38817066,-0.12810136,0.91166574,0.3904556,-0.13241185,0.9144061,0.38252914,-0.14235923,0.91231847,0.3839387,-0.14891486,0.90955937,0.387977,-0.15082367,0.90826446,0.39026648,-0.1516704,0.911265,0.38287356,-0.14931515,0.91322625,0.37910786,-0.15410203,0.9155766,0.37144598,-0.1548663,0.9140418,0.37489197,-0.16175403,0.91391593,0.3722812,-0.1624856,0.91184986,0.376999,-0.16225182,0.9064975,0.38979056,-0.16382636,0.9064676,0.38920096,-0.1694933,0.8975453,0.40704364,-0.13972569,0.89512515,0.423353,-0.09976071,0.9077228,0.40753797,-0.10195786,0.91147584,0.39851773,-0.10520833,0.9155341,0.3882377,-0.14304511,0.91154,0.38552946,-0.15046969,0.9085082,0.38983557,-0.15111925,0.9105315,0.3848316,-0.16160557,0.9137173,0.37283283,-0.15940112,0.9018163,0.40164492,-0.16183023,0.9003599,0.40393442,-0.1678798,0.8987286,0.40509653,-0.15922244,0.8982996,0.40951934,-0.1539692,0.8972982,0.41370204,-0.13960402,0.8951654,0.42330796,-0.11602927,0.9007604,0.41853067,-0.10583502,0.91537565,0.38844097,-0.10858933,0.91537327,0.38768566,-0.117239565,0.91443235,0.38738653,-0.13651684,0.9120331,0.38672832,-0.1447651,0.91044515,0.38746965,-0.15392369,0.9154261,0.37189057,-0.154805,0.9093925,0.38605797,-0.16442896,0.9063301,0.38926712,-0.15768333,0.90353256,0.39845306,-0.15850006,0.8983692,0.4096468,-0.15819445,0.8983333,0.40984365,-0.15382065,0.89698803,0.4144294,-0.09950183,0.9089073,0.4049529,-0.10508872,0.91397995,0.39191452,-0.10801338,0.91516036,0.3883486,-0.12716475,0.91287,0.38794008,-0.13757773,0.91197014,0.3865007,-0.14452797,0.9104748,0.3874885,-0.15486191,0.9139544,0.3751069,-0.15461294,0.90957993,0.38569316,-0.16531433,0.8990938,0.40534118,-0.12079304,0.89964336,0.41958416,-0.1188454,0.9001414,0.41907185,-0.09938938,0.9086723,0.4055077,-0.10504614,0.9118642,0.3968236,-0.10564305,0.9142712,0.39108533,-0.12719706,0.9123365,0.3891824,-0.1279653,0.91164786,0.39054194,-0.13693522,0.9118915,0.38691422,-0.15567867,0.9075851,0.38994035,-0.15783168,0.90363264,0.39816734,-0.15877351,0.9018163,0.4018934,-0.16419807,0.89933914,0.4052506,-0.11395083,0.91532934,0.3862479,-0.127505,0.9119334,0.3900255,-0.13672414,0.9119223,0.38691637,-0.1439541,0.9108402,0.38684276,-0.10725184,0.91513425,0.38862106,-0.11714834,0.9028397,0.41371083,-0.15668538,0.90689033,0.39115158,-0.11907681,0.9036656,0.4113504,-0.12772346,0.9117659,0.39034563,-0.15516582,0.9135319,0.37600932,-0.15632744,0.90708745,0.3908378,-0.11992711,0.9043704,0.40955055,-0.1556176,0.91302925,0.3770421,-0.1456143,0.9031868,0.40379456,0.20347068,0.58524376,0.78491366,0.20384596,0.5857039,0.78447294,0.20336004,0.5861783,0.78424466,0.20196432,0.58718383,0.783853,0.20058268,0.5874804,0.78398556,0.20086683,0.5859802,0.7850349,0.20214759,0.58526444,0.78524,0.19916093,0.5879569,0.7839908,0.1999408,0.5881747,0.7836288,0.20002037,0.5882967,0.783517,0.19971915,0.58866465,0.7833175,0.19913223,0.58885473,0.78332394,0.19803725,0.58863777,0.78376454,0.19827268,0.5883814,0.78389746,-0.022925913,0.75677615,0.653272,-0.023002094,0.7573513,0.65260243,-0.023714606,0.7576261,0.65225786,-0.025283104,0.7577513,0.6520535,-0.025503991,0.75672543,0.6532352,-0.023847435,0.7568513,0.65315187,-0.023431046,0.7566508,0.6533992,-0.024698492,0.7568513,0.6531202,-0.0289069,0.75959724,0.649751,-0.028471049,0.76034397,0.64889634,-0.028561506,0.76047736,0.64873606,-0.028802378,0.76048064,0.6487215,-0.030002855,0.7600455,0.6491769,-0.029932639,0.7598494,0.64940965,-0.04721885,0.80961865,0.58505386,-0.045016106,0.8109142,0.58343095,-0.04477132,0.8113229,0.58288133,-0.044172112,0.8117686,0.58230627,-0.044436958,0.8130253,0.5805301,-0.044611715,0.8131305,0.58036935,-0.044902336,0.81317365,0.5802865,-0.04578636,0.81286407,0.5806511,-0.04698776,0.81174666,0.58211637,-0.047888767,0.811318,0.5826404,-0.04848914,0.81023395,0.5840974,-0.048948772,0.8097657,0.58470803,-0.04875319,0.8097287,0.5847757,-0.048028108,0.80985165,0.58466536,0.1687085,0.86912847,0.46492276,0.16800272,0.869545,0.46439916,0.16755429,0.8694103,0.46481326,0.16745384,0.8690985,0.46543205,0.16776839,0.8689046,0.4656808,0.168155,0.8678814,0.46744594,0.16773395,0.8685065,0.46643522,0.16740431,0.8684791,0.46660468,0.16707553,0.8683514,0.46695992,0.16713278,0.8680516,0.4674966,0.1684198,0.8668878,0.46919104,0.1689487,0.8667378,0.46927807,0.17080408,0.86684066,0.46841568,0.17048499,0.8673531,0.46758267,0.17099297,0.86777306,0.46661693,0.17127876,0.8676985,0.46665072,0.17159498,0.8677095,0.46651402,0.17176205,0.86829644,0.4653591,0.17149103,0.86848456,0.46510795,0.17098452,0.8685774,0.46512103,0.17074342,0.86875856,0.46487123,0.16988866,0.869093,0.46455908,0.16942398,0.869144,0.46463338,0.16935696,0.8690711,0.46479413,0.16910669,0.8690736,0.4648806,0.17060596,0.8677087,0.46687818,0.16818023,0.86879146,0.46574324,0.16862708,0.86794364,0.46716025,0.17042245,0.8675977,0.46715137,0.16854143,0.86835563,0.466425,0.16840462,0.8686454,0.4659346,0.16744167,0.8674595,0.46848407,0.16728517,0.867654,0.46817967,0.16671154,0.86816496,0.4674365,0.16609098,0.86814547,0.46769348,0.16612713,0.86763155,0.46863344,0.16647054,0.86728776,0.46914768,0.16687581,0.8672016,0.4691629,0.16710006,0.86750823,0.46851578,0.1668986,0.8674417,0.46871078,0.17585865,0.8661732,0.4677796,0.1757969,0.8663801,0.46741945,0.17529884,0.86663234,0.4671388,0.17462663,0.8666783,0.46730536,0.1742023,0.8665635,0.46767646,0.17405492,0.8663801,0.4680709,0.17421904,0.8662882,0.46818,0.17482816,0.8663112,0.4679103,0.17521986,0.8661272,0.46810433,-0.054720446,0.88104194,0.4698625,-0.05449309,0.88135254,0.46930602,-0.054477848,0.8815236,0.46898642,-0.054712214,0.88181233,0.468416,-0.055702798,0.88208866,0.46777853,-0.05610404,0.8821574,0.46760103,-0.056463175,0.88211966,0.467629,-0.056361225,0.8818163,0.46821293,-0.056197885,0.8816395,0.4685655,-0.05563139,0.88142985,0.46902728,-0.054944467,0.88104475,0.46983108,-0.055765077,0.87835556,0.47474393,-0.0557068,0.87878335,0.47395837,-0.0559446,0.8791199,0.47330588,-0.05587949,0.8794036,0.47278616,-0.05609695,0.8795188,0.4725461,-0.05698357,0.87967163,0.47215536,-0.057131797,0.8799042,0.47170386,-0.057363644,0.87993336,0.47162133,-0.057375595,0.8796729,0.47210556,-0.05716229,0.87910646,0.47318527,-0.056339946,0.87841904,0.47455847,-0.055842835,0.8781306,0.47515073,-0.055655282,0.8781025,0.4752247,-0.057812445,0.88377,0.46433643,-0.058464866,0.88408643,0.46365187,-0.058833677,0.8841835,0.46341997,-0.059678964,0.88408124,0.46350706,-0.06037011,0.88409436,0.46339247,-0.060147963,0.8835597,0.4644399,-0.059197098,0.88332534,0.4650075,-0.05859576,0.8832754,0.46517858,-0.058074534,0.88333094,0.46513847,-0.057605423,0.883547,0.46478632,-0.05424671,0.88371336,0.46487412,-0.053806543,0.88480777,0.4628391,-0.055130947,0.8851173,0.4620908,-0.0562865,0.8855255,0.46116853,-0.058063928,0.88527673,0.46142575,-0.05714765,0.8837166,0.4645204,-0.05570757,0.8827627,0.46650478,-0.055066206,0.8825495,0.46698397,-0.054955386,0.8826537,0.4668001,-0.054974526,0.88286877,0.46639106,-0.05551737,0.88360566,0.46492884,-0.055095248,0.88402265,0.46418577,-0.054575,0.8837193,0.46482435,-0.055718858,0.8837281,0.46467197,-0.055523116,0.8840848,0.46401632,-0.05569796,0.88392305,0.46430352,-0.052446652,0.88447124,0.46363777,-0.051935554,0.88505787,0.46257463,-0.05241847,0.8853278,0.4620032,-0.052963417,0.8858448,0.46094888,-0.053079743,0.88521606,0.46214184,-0.053234197,0.8847804,0.4629576,-0.053143572,0.8846266,0.46326178,-0.05300005,0.8845635,0.46339878,0.57475597,0.09571167,0.8127083,0.57472533,0.09511443,0.8128001,0.5747802,0.09431778,0.8128542,0.57513225,0.09383166,0.81266135,0.5756849,0.093498275,0.8123084,0.5764118,0.09385029,0.81175214,0.5770379,0.09433902,0.81125057,0.58235586,0.091997966,0.8077116,0.58238024,0.09077346,0.8078325,0.58259404,0.089884,0.8077779,0.5823449,0.08899102,0.8080563,0.582157,0.08629479,0.808484,0.58237845,0.083817095,0.8085852,0.5836317,0.081984386,0.80786914,0.5847466,0.08054376,0.8072076,0.58567053,0.07852528,0.8067365,0.5863082,0.0779042,0.8063335,0.58716637,0.0775839,0.80573964,0.58983827,0.07749726,0.8037941,0.5937814,0.07736724,0.8008982,0.59756315,0.077243276,0.7980926,0.60557145,0.071686074,0.7925556,0.6083311,0.06951153,0.79063356,0.6110026,0.0673997,0.78875417,0.6135894,0.06534609,0.78691673,0.6155949,0.06364103,0.7854888,0.6175214,0.06312136,0.78401726,0.6206224,0.062874615,0.7815847,0.62275743,0.06279217,0.7798912,0.6247535,0.062076047,0.7783506,0.62769634,0.061407488,0.7760325,0.6298816,0.061063856,0.774287,0.6312088,0.060678452,0.7732358,0.63484657,0.06028376,0.7702829,0.635435,0.06051175,0.7697797,0.6369533,0.06240431,0.7683724,0.6386067,0.06547706,0.7667426,0.6392283,0.06717003,0.76607794,0.65468794,0.07075706,0.75258034,0.6556125,0.06961618,0.75188154,0.6563337,0.06911208,0.7512986,0.6574036,0.06877361,0.7503937,0.6586872,0.06876517,0.749268,0.6593842,0.068819515,0.74864966,0.6607998,0.06911707,0.747373,0.6641167,0.06939166,0.74440163,0.6660162,0.06936871,0.74270475,0.66637886,0.070301384,0.7422917,0.6702816,0.073267035,0.7384812,0.67190456,0.07345143,0.7369865,0.6774286,0.07483937,0.73177147,0.6782301,0.0754002,0.7309711,0.67868274,0.076041736,0.7304844,0.6869374,0.08463398,0.72177154,0.68996817,0.08561555,0.7187586,0.69070363,0.08595179,0.71801174,0.6924182,0.08630334,0.7163161,0.696695,0.0859594,0.7121988,0.7000236,0.085691094,0.70895976,0.70343506,0.085415184,0.7056085,0.70377815,0.08562577,0.7052407,0.7059142,0.08927111,0.7026491,0.7092701,0.095071234,0.6984965,0.71138734,0.09876855,0.69582534,0.71461815,0.10448005,0.6916681,0.7170925,0.10860077,0.6884651,0.71979505,0.113155745,0.6849021,0.7255213,0.122320116,0.6772419,0.72745806,0.12546937,0.674583,0.7304341,0.13036136,0.6704266,0.73322713,0.1350122,0.66644555,0.73566604,0.13912246,0.66290313,0.7317132,0.13912246,0.6672637,0.72398466,0.13912246,0.6756413,0.72324055,0.1396245,0.67633426,0.7198244,0.14121506,0.6796405,0.7154649,0.14323281,0.68380874,0.71001786,0.14573565,0.6889381,0.7061181,0.14751603,0.6925578,0.7019373,0.14937688,0.69639826,0.69767064,0.1512641,0.7002677,0.6943069,0.15274574,0.7032827,0.6900965,0.15459074,0.70701385,0.6836672,0.15903309,0.7122554,0.6807378,0.16224794,0.714333,0.6802393,0.1623051,0.7147948,0.6748501,0.16969638,0.71817863,0.67416465,0.1715848,0.71837366,0.67265564,0.17237982,0.7195968,0.6717965,0.17386469,0.720042,0.6702439,0.1760681,0.72095287,0.668789,0.17807013,0.7218118,0.6681385,0.17999768,0.7219361,0.6671393,0.18209392,0.7223343,0.6674269,0.18816982,0.7205092,0.6679665,0.18915063,0.7197519,0.6683813,0.19012795,0.71910906,0.6685012,0.19079724,0.7188203,0.6675174,0.19077383,0.71974015,0.66672343,0.19096784,0.7204243,0.66612273,0.191535,0.7208293,0.66495556,0.19215062,0.7217425,0.6637238,0.19219238,0.72286433,0.66263115,0.19161537,0.724019,0.6607383,0.19089846,0.72593564,0.65896904,0.190665,0.72760344,0.65757096,0.19026688,0.7289711,0.65282667,0.20319366,0.7297463,0.6542117,0.20548448,0.72786206,0.65466845,0.20641515,0.7271877,0.65606976,0.21020095,0.7248366,0.6572555,0.2134442,0.7228117,0.6581338,0.21586712,0.7212914,0.6567537,0.2176359,0.72201747,0.6556999,0.21919847,0.7225024,0.65427285,0.22106229,0.72322786,0.65013623,0.22539112,0.7256182,0.6485216,0.2280779,0.72622323,0.64640117,0.23027447,0.72741956,0.6388597,0.23745073,0.7317619,0.63583255,0.24163572,0.7330274,0.63395965,0.2438125,0.73392826,0.6332202,0.24436785,0.73438174,0.6298483,0.2457336,0.7368216,0.62732804,0.24764311,0.73833084,0.62536937,0.24921642,0.73946214,0.6242553,0.24963732,0.7402611,0.62323165,0.24968939,0.74110556,0.6211206,0.24937735,0.74298054,0.61915404,0.25036347,0.7442893,0.61839765,0.25036347,0.7449178,0.61713934,0.2506514,0.7458639,0.6161304,0.25100037,0.7465803,0.61508155,0.25058043,0.74758554,0.6112518,0.25101352,0.7505755,0.6108256,0.25176337,0.75067127,0.6098944,0.25254595,0.75116533,0.6092336,0.25254595,0.7517014,0.60897905,0.25184748,0.7521419,0.6011377,0.24987996,0.75907403,0.59858924,0.2529079,0.76008457,0.59792,0.25340012,0.76044726,0.595442,0.25438434,0.76206136,0.5944548,0.2556237,0.7624172,0.5935512,0.25632805,0.76288456,0.5930931,0.25390136,0.76405156,0.5922749,0.24965706,0.7660821,0.59182966,0.24738047,0.767164,0.59037143,0.24456945,0.76918614,0.5877446,0.24822424,0.7700266,0.58623326,0.24959853,0.7707341,0.58528376,0.24946728,0.7714979,0.5846809,0.24879213,0.7721727,0.5824176,0.24667029,0.7745602,0.5805857,0.2472533,0.77574867,0.57880527,0.24712694,0.7771182,0.57707584,0.24629204,0.77866787,0.5768338,0.24626893,0.7788546,0.57641965,0.24172583,0.7805825,0.5762252,0.23389108,0.78310883,0.5758292,0.2328826,0.78370047,0.5755202,0.23184569,0.7842347,0.57500076,0.22955865,0.78528786,0.5747046,0.22653753,0.7863811,0.5748102,0.22343948,0.78718996,0.57502836,0.221639,0.78753954,0.5732198,0.21995337,0.7893286,0.5709649,0.21958843,0.79106253,0.5697744,0.21918264,0.79203296,0.56902283,0.21854743,0.7927484,0.5681881,0.21707517,0.793751,0.5666722,0.21304029,0.79592484,0.5659144,0.21056667,0.7971214,0.56465703,0.20717804,0.798899,0.56299186,0.20477884,0.8006908,0.56271815,0.20361245,0.80118054,0.5623319,0.19799727,0.8028573,0.5619524,0.19554831,0.80372274,0.56229407,0.19357966,0.80396044,0.5620559,0.1901598,0.8049425,0.562332,0.18849202,0.8051419,0.55883443,0.18746577,0.8078123,0.55769026,0.1884878,0.8083649,0.55723935,0.18875566,0.8086134,0.5564072,0.18811621,0.8093352,0.5554271,0.18717279,0.81022656,0.55442584,0.1849572,0.81142026,0.5536945,0.18271817,0.81242627,0.55462986,0.17579208,0.813316,0.5534726,0.17224807,0.8148612,0.5532099,0.17112805,0.81527543,0.5528641,0.16900003,0.8159536,0.5526333,0.16527955,0.8168716,0.5527003,0.16438524,0.81700665,0.55275136,0.16368744,0.81711215,0.55317795,0.16020001,0.8175146,0.55354506,0.1571456,0.8178589,0.5541336,0.15215535,0.8184037,0.5480533,0.14664535,0.8234882,0.5466069,0.14683238,0.8244156,0.5446433,0.14690748,0.8257009,0.54280746,0.14672625,0.826941,0.5421893,0.14602058,0.82747126,0.5413926,0.14351112,0.82843137,0.5402301,0.13987263,0.82981145,0.53958523,0.13833502,0.83048856,0.5394552,0.13743603,0.8307223,0.5397235,0.13690089,0.8306363,0.5407399,0.13612583,0.8301025,0.54292387,0.13503498,0.8288542,0.54537517,0.13439654,0.8273472,0.5548685,0.12824118,0.8219946,0.5550971,0.12701213,0.82203114,0.555674,0.12577875,0.8218309,0.55779755,0.12333424,0.82076216,0.5590259,0.121918306,0.82013774,0.5620827,0.12010887,0.8183134,0.563342,0.11805448,0.8177463,0.56449306,0.11705498,0.8170959,0.5662448,0.11438001,0.8162622,0.5678093,0.1097368,0.81581277,0.568812,0.107301995,0.81543803,0.5698037,0.10531063,0.8150051,0.5703475,0.102068536,0.8150373,0.5711196,0.100620486,0.8146766,0.5719322,0.098853245,0.8143228,0.573195,0.0972563,0.8136269,0.65263075,0.073069915,0.75414443,0.6864158,0.1561937,0.7102372,0.6858882,0.15658672,0.7106603,0.6762352,0.16692506,0.71752495,0.6692208,0.1771375,0.72164106,0.6662696,0.1833951,0.72280777,0.6564255,0.18979827,0.7301247,0.65168333,0.22294934,0.7249844,0.61289746,0.24987823,0.7496117,0.611929,0.25003174,0.7503513,0.6068515,0.25008127,0.75444716,0.5974473,0.25344542,0.7608037,0.5912488,0.24444553,0.76855135,0.5768273,0.23924592,0.78104526,0.57482487,0.22029676,0.7880645,0.56265414,0.20143771,0.801775,0.55474037,0.1779703,0.8127667,0.5655893,0.11598253,0.81649053,0.6676984,0.072157875,0.7409266,0.6790676,0.07750748,0.7299724,0.67893326,0.16297285,0.7158837,0.6776327,0.16470802,0.7167184,0.6669711,0.18715687,0.72119474,0.64256775,0.23344205,0.7298024,0.5964318,0.25380406,0.76148057,0.5844217,0.2475737,0.7727604,0.5835719,0.24652494,0.7737372,0.57658845,0.23558442,0.78233355,0.5603005,0.18645865,0.8070294,0.55479515,0.17692782,0.8129569,0.55006933,0.14662,0.82214737,0.55417526,0.1293939,0.8222816,0.57451206,0.096037395,0.8128423,0.60230327,0.07418744,0.79481256,0.6511461,0.074509606,0.75528604,0.69192773,0.08629562,0.71679085,0.72241163,0.1173165,0.6814384,0.705438,0.14766352,0.693219,0.66603065,0.18431821,0.7227932,0.65262336,0.20254861,0.73010737,0.6019725,0.2491736,0.7586446,0.5840531,0.24681723,0.7732808,0.5987189,0.076918684,0.7972573,0.6800402,0.079560935,0.72884524,0.65303785,0.22189915,0.72408724,0.63246614,0.23643655,0.7376207,0.6029493,0.24910247,0.75789183,0.5909349,0.24435711,0.76882094,0.5749987,0.22081709,0.7877921,0.5609089,0.1866814,0.80655515,0.5524636,0.14683414,0.8205021,0.58163995,0.09313509,0.80809706,0.6191772,0.072045274,0.78193927,0.66572654,0.07703552,0.74220866,0.7233773,0.12181987,0.6796214,0.6660378,0.18395136,0.7228801,0.6525172,0.20089169,0.7306599,0.63315666,0.2359132,0.7371958,0.5617433,0.18756203,0.8057698,0.5542483,0.15085307,0.81856716,0.55334437,0.14767283,0.8197577,0.577664,0.09444001,0.81079304,0.5979081,0.07719478,0.79783887,0.6187798,0.07218332,0.78224117,0.6813563,0.080972694,0.7274593,0.6663999,0.077741615,0.7415304,0.70097387,0.09456178,0.7068901,0.7278341,0.13912246,0.67149276,0.721405,0.12181987,0.68171453,0.63296366,0.22545628,0.74062574,0.55812323,0.1692369,0.812316,0.55402577,0.14859064,0.81913143,0.6108468,0.08015936,0.78768057,0.6838926,0.08281494,0.7248673,0.6676984,0.078662895,0.74026424,0.70070344,0.09443443,0.70717525,0.6863825,0.084379196,0.722329,0.71945405,0.12181987,0.6837731,0.63317615,0.2239578,0.74089867,0.65290195,0.19787784,0.73113847,0.59507793,0.24456576,0.7655519,0.55842584,0.16970342,0.8120106,0.5471854,0.13412046,0.82619596,0.6031144,0.09160386,0.7923773,0.62135667,0.07939291,0.7794951,0.58451927,0.10380093,0.8047128,0.6689754,0.07944543,0.7390266,0.71507585,0.12546973,0.6876946,0.7058344,0.1117933,0.6994999,0.69626737,0.09809555,0.71104777,0.6335731,0.22204293,0.7411356,0.6536367,0.19402535,0.73151433,0.59498245,0.24273786,0.76620775,0.5650699,0.18569088,0.8038749,0.55978936,0.1682982,0.811364,0.57008386,0.20302546,0.7961062,0.5484281,0.13382064,0.8254202,0.5976502,0.098330095,0.79570436,0.581735,0.10716048,0.80628836,0.6186914,0.08276018,0.7812629,0.5761346,0.11387585,0.8093832,0.6890769,0.10687246,0.71676445,0.7069219,0.12301364,0.69651216,0.6704759,0.09070294,0.7363661,0.6339381,0.22027838,0.7413501,0.65430725,0.19047438,0.73184806,0.5943147,0.23537402,0.7690183,0.56516546,0.1859529,0.8037472,0.5598392,0.16842969,0.81130236,0.5702206,0.2034173,0.7959082,0.55428326,0.1492286,0.8188412,0.5970872,0.09898088,0.79604626,0.5758464,0.11420083,0.80954254,0.6184172,0.08308604,0.7814454,0.5752696,0.11485051,0.80986065,0.5529965,0.13069087,0.82286984,0.68765736,0.106044516,0.7182492,0.6697409,0.09028838,0.7370855,0.70623904,0.12260051,0.69727725,0.6682683,0.08945919,0.7385218,0.6481024,0.07284889,0.75806093,0.61535805,0.20567045,0.7609429,0.61429906,0.2278331,0.7554659,0.59534615,0.21325018,0.774653,0.63501734,0.19807836,0.7466712,0.55987984,0.1672149,0.8115256,0.5652024,0.1851457,0.8039075,0.5702442,0.20301507,0.795994,0.5493913,0.13348441,0.8248339,0.59536016,0.100383036,0.7971634,0.5743872,0.115550466,0.81038725,0.61757463,0.08378823,0.7820365,0.5726202,0.11694997,0.81143624,0.6863834,0.105220884,0.7195877,0.6676074,0.08904659,0.7391692,0.7056277,0.12218949,0.697968,0.6662834,0.08822158,0.7404616,0.64536107,0.07119643,0.7605526,0.6553057,0.19005176,0.7310642,0.6158767,0.20545986,0.7605802,0.6352719,0.19797285,0.7464827,0.59560996,0.213145,0.77447915,0.635781,0.19776192,0.7461051,0.55640393,0.15544325,0.8162426,0.5630174,0.17732544,0.80719703,0.5692196,0.19912028,0.79770935,0.6414512,0.068850204,0.7640681,0.61926734,0.08504663,0.7805608,0.59650487,0.10122073,0.79620117,0.6181393,0.08420767,0.78154516,0.5732004,0.11736811,0.8109661,0.68457013,0.104051225,0.72148246,0.6653421,0.0876358,0.741377,0.70475864,0.12160582,0.6989472,0.66345507,0.086464144,0.7432034,0.6282539,0.19197829,0.75395054,0.6019248,0.20642017,0.77141255,0.6539388,0.17749484,0.7354316,0.6034985,0.12327201,0.78777754,0.58019954,0.13937603,0.8024605,0.5884663,0.120320596,0.7995189,0.61007893,0.1452626,0.7789111,0.6262635,0.10713547,0.77221507,0.6339861,0.08800915,0.76832026,0.61829156,0.12622234,0.77574706,0.5929668,0.18317513,0.78411555,0.5867923,0.16131529,0.79350626,0.6016344,0.1642492,0.7817022,0.5840852,0.20203342,0.78614694,0.5717135,0.15837997,0.80502135,0.676068,0.13444473,0.72446984,0.68574864,0.13016741,0.7161042,0.6651113,0.11263079,0.7382014,0.6535654,0.09076242,0.75140834,0.695714,0.13892095,0.70475733,0.6319422,0.18880296,0.7516665,0.6557361,0.17590298,0.7342127,0.6038157,0.20483741,0.77035594,0.6593189,0.17271788,0.7317562,0.6214458,0.16697536,0.765457,0.64916575,0.1507305,0.745563,0.64081454,0.16970037,0.74870455,0.63222265,0.18860757,0.75147974,0.6298454,0.14799705,0.76249045,0.6597275,0.17242397,0.7314571,0.6680268,0.1534627,0.72814107,0.60395956,0.20473999,0.77026904,0.61281425,0.185892,0.7680513,0.6380043,0.12896408,0.75915664,0.6459138,0.10988361,0.7554608,0.65726745,0.13170497,0.7420601,0.6594552,0.17261995,0.7316565,0.5573314,0.07359005,0.8270225,0.5600792,0.07705121,0.8248481,0.56284624,0.08055825,0.8226266,0.56635934,0.08499068,0.8197644,0.56956315,0.0890606,0.81710833,0.5723151,0.09257675,0.8147913,0.5526808,0.16438524,0.8170199,0.54966986,0.16879253,0.81815165,0.55037564,0.17098781,0.81722075,0.55040544,0.17116928,0.81716275,0.5504066,0.1712717,0.81714046,0.550395,0.1713909,0.8171233,0.55027205,0.17178209,0.81712395,0.55013317,0.17212042,0.81714624,0.5500302,0.17263252,0.81710756,0.5500771,0.17377149,0.8168345,0.55005753,0.17412484,0.81677246,0.5499903,0.17457958,0.8167206,0.5498908,0.1748675,0.8167261,0.5490625,0.1767659,0.8168746,0.5488207,0.17706709,0.81697196,0.54201967,0.18310775,0.82017446,0.54071707,0.18474363,0.8206673,0.5405837,0.18485586,0.82072985,0.5404222,0.18494304,0.8208166,0.5371258,0.18631636,0.82266766,0.537027,0.1869175,0.82259583,0.5373242,0.18771027,0.82222116,0.5373554,0.18792032,0.82215273,0.5373751,0.18824089,0.8220665,0.53457814,0.20093268,0.82088506,0.534642,0.2014494,0.82071686,0.53479904,0.201719,0.82054824,0.5349312,0.20199862,0.8203933,0.53506345,0.20248686,0.8201867,0.5350902,0.20267048,0.8201238,0.53502846,0.20493309,0.8196017,0.5347851,0.20691457,0.81926256,0.53522897,0.21021599,0.81813157,0.5351523,0.21161957,0.8178198,0.5283074,0.21171871,0.82223266,0.5282738,0.21164624,0.82227284,0.52827835,0.21155968,0.8222922,0.5283081,0.21146135,0.8222984,0.52835053,0.21113405,0.8223552,0.52834356,0.21072504,0.82246464,0.52835464,0.21050921,0.82251275,0.52838737,0.21028848,0.8225482,0.5285829,0.20949766,0.8226244,0.5289432,0.20807664,0.8227534,0.5193721,0.20802674,0.82884103,0.5237303,0.20306095,0.82732874,0.524196,0.20074314,0.82759935,0.5242927,0.19797471,0.82820475,0.5245293,0.19619429,0.8284786,0.5248745,0.19503763,0.8285331,0.5261448,0.19276114,0.82826006,0.52593815,0.19179848,0.8286148,0.51979494,0.1850234,0.8340141,0.5196363,0.18470345,0.8341839,0.51820976,0.18022986,0.8360477,0.51785046,0.17975882,0.8363717,0.51647305,0.1774478,0.83771586,0.5067046,0.16951075,0.84529084,0.50503707,0.16945778,0.8462988,0.5048514,0.16940325,0.84642047,0.50457823,0.16927803,0.8466084,0.50442004,0.16909073,0.84674007,0.5037617,0.1692235,0.8471054,0.49948397,0.17328638,0.8488154,0.49202272,0.17841394,0.8521045,0.4913938,0.17794767,0.8525648,0.4876133,0.17574339,0.85518867,0.48684138,0.17517114,0.8557456,0.48642173,0.1747668,0.8560668,0.48661342,0.1722968,0.8564585,0.48488182,0.16966948,0.8579638,0.48149535,0.16880018,0.86004,0.4797548,0.1680533,0.8611582,0.47800016,0.1669435,0.8623489,0.47772163,0.1666653,0.86255705,0.47772133,0.1666687,0.8625566,0.4770724,0.165899,0.863064,0.47579846,0.16434315,0.86406434,0.47574362,0.1631334,0.86432374,0.4631395,0.16296098,0.8711748,0.46116203,0.16676286,0.8715043,0.46108362,0.16679648,0.87153935,0.45986882,0.16656034,0.8722261,0.44875216,0.16700651,0.87791246,0.44719294,0.16660735,0.87878346,0.44083634,0.16549222,0.88219935,0.43437394,0.17306225,0.88395065,0.43303037,0.17396542,0.8844324,0.43252972,0.1744521,0.8845815,0.43155536,0.17576943,0.8847967,0.43023548,0.17655799,0.8852823,0.42956573,0.17793676,0.8853315,0.429472,0.17959358,0.8850423,0.42897132,0.18063062,0.88507414,0.42802253,0.1808711,0.8854842,0.42021585,0.1791199,0.88956994,0.4190601,0.17931612,0.8900755,0.41741008,0.17900509,0.890913,0.41685832,0.17869568,0.89123344,0.41626003,0.17769945,0.8917121,0.41620162,0.1766704,0.8919439,0.41630176,0.1756285,0.8921029,0.41564903,0.17345674,0.8928318,0.41355786,0.17089045,0.8942966,0.41313267,0.16977356,0.8947057,0.41309327,0.16485675,0.8956429,0.41217348,0.16376811,0.89626616,0.41185623,0.16314174,0.8965262,0.41174877,0.16226053,0.8967354,0.41182086,0.16039675,0.8970376,0.4117027,0.15952101,0.897248,0.41059932,0.15732573,0.8981407,0.41035497,0.1565514,0.89838773,0.41021594,0.15448473,0.89880884,0.40665758,0.15323168,0.90063846,0.4053463,0.15243082,0.90136516,0.40458792,0.15119669,0.9019136,0.40441498,0.1506677,0.9020797,0.4056341,0.1496777,0.90169704,0.40514612,0.14713848,0.9023341,0.40568998,0.14555013,0.9023474,0.4070777,0.14420773,0.90193784,0.40843505,0.14363854,0.9014149,0.40972182,0.14331044,0.900883,0.4141799,0.14248301,0.89897364,0.41606477,0.14154997,0.89825034,0.4186546,0.13856536,0.8975121,0.42183805,0.1358523,0.8964356,0.42259598,0.1331035,0.896491,0.42178896,0.13151637,0.89710504,0.4219635,0.13086072,0.89711887,0.42344195,0.12927131,0.8966526,0.42512417,0.1276427,0.89608973,0.42812985,0.12583031,0.89491427,0.43331337,0.12299424,0.89281124,0.43571386,0.12109358,0.8919023,0.43657485,0.1196537,0.8916756,0.43793982,0.11808739,0.89121497,0.44106388,0.11554916,0.8900062,0.44039565,0.11242835,0.8907365,0.4406958,0.111403674,0.8907168,0.4411862,0.11051358,0.8905849,0.4422906,0.109286174,0.8901885,0.44278622,0.10770448,0.8901349,0.44391823,0.10573015,0.8898077,0.44519338,0.104832634,0.8892767,0.44726786,0.104497954,0.8882745,0.44839773,0.10358253,0.88781196,0.45072913,0.10201007,0.8868129,0.45539504,0.09693145,0.88499695,0.455541,0.094816685,0.8851509,0.45602813,0.092190616,0.8851775,0.45727256,0.09039487,0.88472056,0.45842257,0.08905383,0.88426137,0.45902687,0.087837435,0.8840695,0.45987564,0.08659194,0.8837512,0.46422255,0.08199448,0.88191515,0.4646717,0.080976136,0.8817727,0.4655259,0.080159836,0.88139665,0.46770656,0.079017274,0.88034475,0.46834213,0.07810053,0.8800886,0.4692797,0.07715069,0.8796729,0.471068,0.075853094,0.8788295,0.4719152,0.075823374,0.87837744,0.4728991,0.07564068,0.8778639,0.47377133,0.07530333,0.8774224,0.47469184,0.07539938,0.8769165,0.47614905,0.07624654,0.8760528,0.47785,0.077667214,0.87500125,0.48422444,0.07751854,0.87150306,0.4856921,0.07651338,0.8707749,0.48680532,0.07657792,0.87014735,0.48916206,0.07843104,0.8686593,0.49036932,0.08040449,0.86779785,0.49515113,0.07812775,0.8652869,0.49661735,0.0754512,0.8646839,0.4976177,0.07443055,0.86419713,0.49899387,0.07284889,0.8635382,0.50172925,0.06944185,0.8622329,0.5051825,0.06773463,0.8603504,0.50727016,0.064932,0.85933745,0.5073981,0.06370991,0.85935336,0.50782424,0.06321238,0.85913837,0.50873214,0.063385,0.85858834,0.5095092,0.06355846,0.8581146,0.5110022,0.062322687,0.85731715,0.5113223,0.06162951,0.85717636,0.51167,0.060886923,0.857022,0.5192684,0.06518705,0.8521215,0.5211236,0.06419207,0.8510638,0.5221229,0.06414187,0.85045487,0.5233216,0.06455776,0.8496863,0.52576673,0.06631982,0.8480395,0.5271582,0.0646904,0.84730124,0.5280091,0.06292232,0.84690446,0.5296085,0.06211424,0.8459649,0.53038216,0.06155717,0.84552085,0.53092647,0.06139214,0.84519124,0.53122133,0.061536703,0.8449954,0.5317712,0.062926605,0.844547,0.53665984,0.06540224,0.84126025,0.5387377,0.06563265,0.83991313,0.53961337,0.06579847,0.8393379,0.5410755,0.0662475,0.83836055,0.54335064,0.06767005,0.83677405,0.5457063,0.06583332,0.8353865,0.54819846,0.06547873,0.8337811,0.5505974,0.06549157,0.83219784,0.551306,0.06604934,0.8316846,0.5517098,0.0664779,0.8313826,0.5541053,0.06949964,0.8295403,0.5500268,0.164397,0.8188065,0.5283302,0.21135555,0.82231134,0.5237866,0.20295998,0.82731783,0.5189587,0.18187602,0.83522636,0.4441293,0.16503406,0.88063216,0.41344345,0.16694598,0.8950941,0.4103868,0.15496631,0.8986479,0.4398064,0.11665375,0.8904843,0.45297474,0.10065441,0.8858231,0.46262845,0.08447779,0.8825183,0.46352267,0.0833007,0.88216084,0.48240048,0.078233875,0.8724501,0.50652605,0.066895396,0.85962576,0.5069839,0.06605112,0.8594211,0.5120832,0.06181738,0.85670847,0.5172238,0.066029,0.8532993,0.52638745,0.06575946,0.84769803,0.53695595,0.18665622,0.8227015,0.5346002,0.20134746,0.8207691,0.52388287,0.20268963,0.82732326,0.52393144,0.20249188,0.8273408,0.5098429,0.16970977,0.8433617,0.50401574,0.16902612,0.8469937,0.4860264,0.17103997,0.85704356,0.42976344,0.17713162,0.885397,0.4161724,0.17459813,0.8923654,0.41339484,0.16551821,0.8953817,0.40517527,0.15045626,0.9017737,0.42265666,0.13441095,0.8962673,0.4551084,0.09790941,0.88503677,0.46669874,0.07964079,0.8808232,0.5103787,0.06321238,0.85762334,0.5337609,0.06464032,0.8431613,0.53695726,0.18645443,0.82274634,0.52883255,0.20890269,0.82261527,0.50422597,0.16895045,0.84688365,0.47605783,0.1620529,0.86435395,0.4640066,0.16209655,0.87087464,0.47915265,0.07854572,0.8742101,0.493522,0.079971254,0.8660488,0.51294786,0.06338417,0.8560764,0.5161866,0.06602305,0.8539276,0.5495199,0.16722912,0.81857336,0.53455436,0.20118223,0.82083935,0.44254196,0.16477445,0.88147944,0.45395362,0.09971822,0.88542783,0.45456782,0.09888812,0.8852057,0.49160033,0.080825835,0.86706185,0.5146671,0.06496769,0.85492516,0.5324651,0.06368433,0.8440528,0.5537479,0.08095915,0.82873935,0.5288849,0.20870438,0.8226319,0.5261233,0.19233546,0.8283727,0.5531148,0.08175877,0.82908356,0.55756515,0.11696358,0.821852,0.5495544,0.16591404,0.8188177,0.5491803,0.08259754,0.83161205,0.55648696,0.11751029,0.8225045,0.5499814,0.1644197,0.81883246,0.5496786,0.16515352,0.8188881,0.49306542,0.16588253,0.85403126,0.4388724,0.16380763,0.883492,0.4580146,0.09549369,0.8838007,0.50973564,0.07314719,0.8572159,0.5336488,0.10128512,0.8396191,0.55293554,0.100069314,0.827193,0.54993355,0.1644692,0.8188547,0.5498289,0.16466427,0.8188858,0.5289183,0.20848764,0.8226654,0.44027004,0.15183146,0.8849348,0.45959854,0.096625686,0.8828549,0.5087857,0.073574714,0.8577435,0.53314304,0.10167435,0.83989334,0.5498868,0.16455163,0.8188695,0.44640496,0.15180954,0.88185966,0.4501558,0.106805496,0.8865395,0.46408692,0.09224617,0.88097334,0.43606874,0.12134195,0.89169514,0.5161821,0.10890663,0.8495266,0.52109164,0.087633185,0.84898996,0.52808774,0.122916035,0.840247,0.50401634,0.09487566,0.85846734,0.5396844,0.16627246,0.8252843,0.46380952,0.15564568,0.8721555,0.44014075,0.1486016,0.88554716,0.48705038,0.16268186,0.8580889,0.46506706,0.092904225,0.88038707,0.45081124,0.10724356,0.8861535,0.4644137,0.09246553,0.8807781,0.43639743,0.12156062,0.89150447,0.5101163,0.10776966,0.8533271,0.52509683,0.12234851,0.842202,0.4947965,0.09316772,0.8640001,0.53843504,0.16244309,0.8268615,0.44444323,0.14433324,0.884103,0.44301042,0.14575629,0.88458854,0.46665844,0.15280347,0.87113774,0.48846453,0.16126248,0.85755277,0.48074403,0.10750668,0.87024564,0.49609753,0.12208585,0.8596408,0.4819052,0.13637668,0.86554533,0.5111125,0.13663872,0.8485835,0.45213553,0.1361145,0.88150233,0.4665196,0.12182318,0.87608135,0.5383765,0.16199526,0.8269875,0.49606356,0.153065,0.8546882,0.5248896,0.15332639,0.8372466,0.5280771,0.1574743,0.8344677,0.51083535,0.17019683,0.84266263,0.52538383,0.15357071,0.8368918,0.5282144,0.15720753,0.8344311,0.6628486,-0.02815165,0.7482241,0.66275734,-0.029584546,0.7482496,0.66409206,-0.027546898,0.74714315,0.6654428,-0.024957016,0.74603146,0.6669861,-0.021002103,0.74477404,0.6675456,-0.020080214,0.74429804,0.66806036,-0.018422082,0.743879,0.6687732,-0.01698214,0.74327254,0.6704327,-0.014942134,0.74181986,0.6719098,-0.012880013,0.74052095,0.6742681,-0.008902119,0.738433,0.6751263,-0.007968146,0.7376591,0.6763608,-0.0056109573,0.73654914,0.6773085,-0.0043770373,0.7356861,0.67831177,-0.0030663402,0.7347678,0.69102675,0.014971845,0.72267413,0.6949395,0.01930053,0.7188091,0.6986179,0.024274543,0.71508306,0.70576906,0.031587906,0.70773745,0.71664745,0.04030371,0.69627017,0.71928823,0.043185942,0.6933682,0.72870976,0.057313804,0.6824202,0.7356441,0.06920388,0.67382383,0.74056923,0.078407265,0.66739005,0.74308634,0.08633303,0.6636032,0.7472277,0.095748104,0.65763444,0.75089383,0.107541755,0.65160817,0.75304663,0.12170521,0.6466132,0.7550342,0.12701213,0.6432661,0.7558739,0.12999886,0.6416814,0.7565481,0.13328604,0.64021075,0.75701255,0.1385257,0.63854724,0.7593536,0.14262554,0.6348544,0.7607724,0.14797206,0.63192534,0.761677,0.15376648,0.62944734,0.7634034,0.15831795,0.6262194,0.7636347,0.1605903,0.62535816,0.7647483,0.16381104,0.6231581,0.7641982,0.16866998,0.6225364,0.7641493,0.1723446,0.62158924,0.76363677,0.17799717,0.62062544,0.76655275,0.18105224,0.6161306,0.7672596,0.1805727,0.61539114,0.76854914,0.18028778,0.61386365,0.76852095,0.1809072,0.61371666,0.76816475,0.1818106,0.61389565,0.7673192,0.18221289,0.61483306,0.7660765,0.18317302,0.61609614,0.7660584,0.18274748,0.616245,0.76474994,0.18175445,0.61816084,0.7651735,0.18203859,0.6175528,0.7651751,0.1828505,0.6173108,0.7653095,0.18388094,0.61683804,0.7652576,0.1849271,0.6165897,0.76398444,0.19212383,0.6159677,0.76289266,0.19655618,0.6159225,0.76299584,0.19945556,0.61486167,0.76345664,0.20206365,0.61343646,0.7633618,0.20355666,0.61306065,0.7633701,0.20502071,0.6125623,0.7626585,0.20521334,0.61338365,0.75797266,0.2076332,0.6183574,0.7563941,0.20695214,0.6205149,0.7555618,0.20489225,0.6222102,0.7551497,0.20325786,0.62324566,0.7517961,0.19986895,0.6283749,0.7468464,0.19852854,0.6346707,0.7443109,0.19667727,0.6382157,0.74085146,0.19544718,0.6426037,0.7394961,0.19523486,0.6442273,0.7401958,0.19050609,0.64483917,0.74085987,0.18591027,0.6454177,0.74153733,0.18108986,0.64601,0.74260795,0.17319246,0.646945,0.74298286,0.1703405,0.6472716,0.74351984,0.16615103,0.6477438,0.74376404,0.16421708,0.6479566,0.74259406,0.16044477,0.6502396,0.7411375,0.1558242,0.6530191,0.73956174,0.1509087,0.65595347,0.73823273,0.14683154,0.6583714,0.73696935,0.14301182,0.6606238,0.6645586,0.06630186,0.7442889,0.6627985,0.06262465,0.7461744,0.6595185,0.055850353,0.7496106,0.65693516,0.052284904,0.75213194,0.6549717,0.049589388,0.7540245,0.65479976,0.049105037,0.75420547,0.6549013,0.046101037,0.75430685,0.65512776,0.03875306,0.7545236,0.65547436,0.02405133,0.75483435,0.6556779,0.009344279,0.7549829,0.65574086,-0.00536384,0.75496703,0.6557191,-0.01271814,0.75489783,0.6557029,-0.015189227,0.75486624,0.6574734,-0.018280724,0.75325596,0.66265637,-0.027437864,0.74842083,0.6879048,0.01084922,0.7257199,0.72103363,0.05040483,0.69106436,0.7434888,0.08838913,0.6628814,0.7609429,0.14987323,0.6312717,0.6591937,-0.0213003,0.7516715,0.66145295,-0.02529606,0.74955994,0.71760875,0.046750978,0.69487554,0.75104815,0.11160518,0.6507464,0.74360305,0.09042502,0.66247845,0.7521011,0.11801127,0.64839584,0.76480305,0.18026432,0.6185314,0.766212,0.18188773,0.61630833,0.7646125,0.18128765,0.61846787,0.7265764,0.123876266,0.67582643,0.6575049,0.0013758695,0.75344896,0.73900765,0.08982666,0.66768175,0.7262395,0.068005085,0.68406975,0.7127679,0.04615081,0.69988006,0.7605267,0.15829311,0.6297161,0.7202913,0.11241485,0.6845022,0.6592732,0.04334601,0.75065297,0.6600141,-0.0017483663,0.7512511,0.72277826,0.063362874,0.6881691,0.7109613,0.04382704,0.7018641,0.73736554,0.087509684,0.6698016,0.7073201,0.039178908,0.7058069,0.7583395,0.14807227,0.6348195,0.7637798,0.17941251,0.62004155,0.66717875,0.049742147,0.743235,0.66193926,0.002815199,0.74955225,0.7213686,0.0613054,0.68983257,0.7065782,0.038148876,0.7066059,0.7367011,0.08648291,0.6706655,0.7050895,0.03608881,0.7081993,0.75843287,0.14878361,0.6345416,0.76497746,0.18110159,0.61807096,0.67117995,0.005050594,0.7412772,0.673918,0.028520487,0.73825544,0.6762696,0.051974665,0.7348184,0.7376305,0.0913002,0.6690035,0.72207785,0.064523384,0.6887963,0.7370131,0.088088945,0.6701134,0.70548713,0.0376999,0.7077193,0.7543601,0.17275886,0.63332075,0.686941,0.03354178,0.72593874,0.68273973,0.054482963,0.72862756,0.67778885,0.007562402,0.7352177,0.69549626,0.05949863,0.71606207,0.71696097,0.056308113,0.69483554,0.7027841,0.03358741,0.7106099,0.7352484,0.08720152,0.672165,0.74385816,0.10261876,0.6604123,0.7262798,0.071763486,0.6836429,0.6973073,0.025360802,0.7163235,0.7073004,0.040839355,0.70573246,0.68699086,0.009876047,0.726599,0.6871216,0.03364746,0.72576284,0.69558436,0.059551347,0.7159721,0.67788136,0.0076152105,0.735132,0.69576055,0.059656776,0.71579206,0.74611086,0.13348961,0.6523029,0.7553181,0.15649335,0.63639957,0.73617697,0.11041359,0.66772175,0.7255368,0.087278,0.6826264,0.7391046,0.10265683,0.6657221,0.71421194,0.06409512,0.6969886,0.7022249,0.040877707,0.7107806,0.68959963,0.017638082,0.723976,0.7513511,0.16314434,0.63941795,0.67839116,0.00869533,0.7346495,0.6782213,0.0083353305,0.7348105,0.68744427,0.034367185,0.72542346,0.69591296,0.060016263,0.71561384,0.71174544,0.059838843,0.6998841,0.7125703,0.061257806,0.6989213,0.7224153,0.081612274,0.68662626,0.70049983,0.0380369,0.7126382,0.6886982,0.016216835,0.72486687,0.7447372,0.1306715,0.65443975,0.73544556,0.10900071,0.668759,0.7546802,0.15508926,0.6374991,0.73397404,0.10617419,0.6708272,0.697018,0.032354504,0.7163233,0.6868876,0.013374125,0.7266405,0.7100874,0.057000794,0.7018025,0.6832365,0.007688522,0.7301567,0.75018233,0.15930071,0.6417552,0.70552075,0.061257806,0.7060368,0.6879257,0.02215474,0.7254429,0.67853796,0.002586795,0.7345608,0.696924,0.041714318,0.7159308,0.71370435,0.08077783,0.69577366,0.7214635,0.10026692,0.6851547,0.7287875,0.11971761,0.6741932,0.72943926,0.11041359,0.67507577,0.6550278,-0.03781732,0.7546578,0.6555203,-0.037662342,0.75423783,0.6571724,-0.036645476,0.75284886,0.65742373,-0.036383152,0.7526422,0.6574622,-0.03611749,0.7526214,0.6573562,-0.035824426,0.752728,0.6567765,-0.0355366,0.7532475,0.65530443,-0.03681404,0.75446725,0.5576863,-0.014514457,0.8299248,0.5577065,-0.017488228,0.82985395,0.5588093,-0.017488228,0.82911175,0.56099564,-0.018928276,0.8276023,0.5640462,-0.02100556,0.82547593,0.56708777,-0.023080966,0.823334,0.5701187,-0.025158059,0.82117707,0.57313895,-0.027233377,0.8190055,0.57614845,-0.029310245,0.81681937,0.57914567,-0.031386986,0.8146196,0.58213353,-0.033461805,0.8124044,0.58511025,-0.035538267,0.81017464,0.58807456,-0.037614573,0.8079316,0.5910278,-0.039689053,0.8056742,0.59397244,-0.041763358,0.80340064,0.59690315,-0.043839034,0.8011147,0.5998238,-0.04591464,0.79881364,0.60273296,-0.047988378,0.79649866,0.60563064,-0.05006358,0.7941695,0.60851663,-0.052136894,0.7918265,0.6100863,-0.05355636,0.7905228,0.6102672,-0.0554454,0.790253,0.6103802,-0.056626454,0.790082,0.610259,-0.0576645,0.79010046,0.6094171,-0.059432317,0.7906192,0.6091528,-0.060356196,0.7907528,0.6091222,-0.06099755,0.79072714,0.6093042,-0.061249323,0.79056746,0.6107078,-0.062089697,0.78941804,0.6110871,-0.063419946,0.7890187,0.6116095,-0.06408676,0.7885599,0.612803,-0.06521604,0.78754,0.6148322,-0.06714122,0.78579473,0.6168542,-0.06906614,0.7840413,0.6188689,-0.0709908,0.7822798,0.6208762,-0.07291532,0.7805101,0.6228763,-0.07483767,0.7787326,0.6248689,-0.07676152,0.776947,0.6268541,-0.07868509,0.7751533,0.62883174,-0.08060836,0.77335167,0.62979156,-0.08154274,0.7724722,0.63020444,-0.08180602,0.7721076,0.6303142,-0.08133885,0.77206737,0.6311647,-0.08034849,0.7714759,0.63235337,-0.08064234,0.7704713,0.6340142,-0.07808363,0.7693692,0.636248,-0.072417155,0.76807827,0.6365552,-0.07183075,0.7678788,0.6369833,-0.070938125,0.76760674,0.6376408,-0.06963923,0.7671796,0.6378599,-0.06897611,0.7670575,0.6381013,-0.06824315,0.76692224,0.6389688,-0.06603075,0.76639336,0.639678,-0.062385716,0.76610714,0.640179,-0.061672907,0.76574624,0.6407841,-0.060046576,0.7653693,0.64157796,-0.058447216,0.7648278,0.64329296,-0.056702983,0.7635175,0.6435108,-0.055356964,0.7634327,0.64449155,-0.05267129,0.7627951,0.64440745,-0.049181804,0.76309913,0.6475349,-0.044590034,0.7607301,0.6507193,-0.04430731,0.75802463,0.6530251,-0.041742872,0.75618505,0.653143,-0.040765356,0.75613654,0.6542039,-0.03960734,0.75528044,0.65455574,-0.038278807,0.75504404,0.6541974,-0.035310004,0.7554992,0.6545437,-0.03564048,0.75518364,0.6550065,-0.035875533,0.75477105,0.65561974,-0.034037616,0.7543236,0.65644157,-0.034466874,0.75358915,0.6570717,-0.034591254,0.75303406,0.6591952,-0.033940516,0.75120556,0.66078955,-0.032579422,0.7498638,0.5598096,0.06782645,0.8258406,0.5605072,0.066985555,0.825436,0.5603355,0.06650003,0.8255918,0.56185675,0.06510973,0.8246683,0.56444883,0.062899366,0.82306814,0.5639567,0.059527546,0.823656,0.56410116,0.058566254,0.823626,0.5647939,0.055185,0.8233847,0.56589067,0.054426778,0.82268184,0.56694853,0.0510244,0.82217145,0.56891245,0.049580935,0.8209022,0.56919974,0.04916552,0.82072794,0.5696887,0.047514975,0.82048595,0.570324,0.045708537,0.82014716,0.5707961,0.04528888,0.81984186,0.57107824,0.045183368,0.81965125,0.57169247,0.04326514,0.8193264,0.57139343,0.042188115,0.81959116,0.5719122,0.038913988,0.81939125,0.57251257,0.02790883,0.8194208,0.57191104,0.027162505,0.8198658,0.571251,0.025985252,0.820364,0.57067627,0.02472347,0.8208029,0.5703126,0.02410329,0.821074,0.57062733,0.022213615,0.82090867,0.57040423,0.02147827,0.8210833,0.5695355,0.02119116,0.82169354,0.5684276,0.020685941,0.8224732,0.5677562,0.020182388,0.82294935,0.5668084,0.019224608,0.82362527,0.5660499,0.018187668,0.82417035,0.5650584,0.015136335,0.8249121,0.5633731,0.0127622755,0.826104,0.5630899,0.011980084,0.8263088,0.56148803,0.01056206,0.8274174,0.56078655,0.008815965,0.82791346,0.55972373,0.005140477,0.8286633,0.55836767,0.0030329935,0.82958806,0.55805624,-0.00029663643,0.829803,0.5580853,-0.00694381,0.8297546,0.5598466,-0.018147709,0.8283976,0.6543625,-0.03729782,0.7552606,0.65527683,-0.034756497,0.7545887,0.56059647,0.06748891,0.82533437,0.5726913,0.035987906,0.8189808,0.5603456,0.0066752695,0.82823193,0.6099635,-0.06134118,0.79005176,0.6105118,-0.061759647,0.78959554,0.6556101,0.015463169,0.7549412,0.56369233,0.06438432,0.82347167,0.5643622,0.0636716,0.82306814,0.6458235,-0.045861885,0.762108,0.5728436,0.028678017,0.81916285,0.59102976,-0.03968822,0.8056727,0.64504635,-0.046903845,0.7627026,0.5705593,0.021719374,0.8209691,0.5652482,0.0016655477,0.8249192,0.56532747,0.0017861873,0.8248646,0.62410194,-0.061268006,0.77893716,0.57355994,0.0693611,0.81622183,0.56651914,0.0052665984,0.8240317,0.62400585,-0.061053712,0.77903086,0.60988873,-0.05312746,0.79070425,0.65069133,-0.00040189823,0.75934225,0.6529777,0.022855751,0.75703216,0.6480462,-0.02365933,0.76123345,0.57321537,0.00072260294,0.8194045,0.6233334,-0.0605586,0.7796077,0.6482709,-0.008154346,0.76136607,0.6518356,0.018980393,0.7581228,0.6442156,-0.035282962,0.76402974,0.57329524,0.0013882673,0.81934774,0.5729818,0.030008655,0.81901854,0.62220216,-0.05854885,0.78066415,0.6061881,-0.04811519,0.7938646,0.58982956,-0.037676398,0.8066483,0.6474847,-0.011456521,0.76199234,0.6437933,-0.03693305,0.7643077,0.65147424,0.017329497,0.75847286,0.642943,-0.040232927,0.7648566,0.59360766,0.05441452,0.8029128,0.57330734,0.0018595009,0.81933826,0.57299036,0.030950684,0.8189775,0.6271442,-0.029790925,0.7783332,0.631556,-0.0010081965,0.7753296,0.61528546,0.009440239,0.7882478,0.62135416,-0.010177242,0.7834637,0.6326484,-0.049393024,0.77286243,0.63542676,0.027775249,0.7716614,0.6415974,0.008160934,0.7669981,0.6109962,-0.019345552,0.79139715,0.59451115,-0.008898065,0.80403817,0.6004865,-0.028512115,0.7991264,0.5945907,0.05415455,0.80220276,0.5839144,0.011028499,0.81174034,0.59437096,0.02019669,0.8039373,0.6148144,0.038526967,0.7877302,0.63508236,0.042314366,0.7712846,0.5941121,0.034739137,0.8036318,0.63640773,0.054613184,0.769417,0.5948982,0.053195823,0.80203885,0.57295257,0.03249081,0.8189442,0.5940913,0.03550899,0.80361354,0.6147913,0.039296832,0.78771025,0.63506967,0.04269918,0.77127385,0.5940806,0.03589403,0.8036043,0.6141586,0.044683192,0.78791666,0.5931337,0.04397412,0.8039022,0.63475263,0.045392126,0.771381,0.593948,0.03764236,0.80362236,0.61465544,0.041044936,0.7877272,0.6350003,0.043573126,0.7712821,0.5938809,0.038516603,0.8036305,0.5936338,0.04033587,0.8037238,0.5563711,-0.20993695,0.8039762,0.55688107,-0.20980023,0.8036587,0.55730134,-0.20942023,0.8034665,0.55750614,-0.20892026,0.8034546,0.5575608,-0.20843689,0.8035422,0.55735904,-0.20813514,0.8037603,0.55704343,-0.20795839,0.8040248,0.55653864,-0.20806344,0.80434716,0.5562845,-0.20872359,0.8043519,0.55609864,-0.20963192,0.8042442,0.5556033,-0.20904861,0.8047383,0.55599123,-0.20814517,0.8047045,0.5558067,-0.20765159,0.8049595,0.5553737,-0.20741825,0.80531836,0.554825,-0.20760833,0.80564755,0.5545757,-0.20823018,0.80565876,0.55502456,-0.20903532,0.8051409,0.53069794,-0.24092121,0.8125987,0.5312922,-0.24214846,0.81184524,0.53181547,-0.24265121,0.8113524,0.5333075,-0.24682066,0.8091123,0.53458947,-0.24926604,0.807515,0.53611183,-0.2515317,0.8058014,0.5364354,-0.25142115,0.80562055,0.54098994,-0.25016224,0.8029625,0.5421094,-0.25013086,0.80221695,0.54293126,-0.24952348,0.8018502,0.5469047,-0.2638271,0.7945379,0.54496473,-0.26685405,0.79486,0.54444754,-0.26836172,0.7947068,0.54329264,-0.27068913,0.7947078,0.54207015,-0.27183422,0.79515165,0.54140806,-0.2727739,0.7952808,0.54128194,-0.2737494,0.7950315,0.54170626,-0.27456576,0.7944608,0.5429043,-0.2769839,0.79280186,0.54265654,-0.2778321,0.7926747,0.54247427,-0.2789781,0.79239696,0.54263216,-0.27977508,0.7920077,0.54289997,-0.28023812,0.7916604,0.54397476,-0.28098735,0.79065645,0.544827,-0.28286958,0.7893975,0.54645497,-0.2851379,0.78745365,0.54829836,-0.28836927,0.78499174,0.5492492,-0.28935817,0.7839625,0.5498783,-0.29193485,0.7825649,0.54906505,-0.29265365,0.7828675,0.5491664,-0.29368362,0.7824105,0.54945916,-0.29422277,0.7820024,0.5498413,-0.29449484,0.78163123,0.5508767,-0.2945584,0.7808779,0.5518839,-0.2943482,0.78024566,0.55219096,-0.2939899,0.7801635,0.55291456,-0.28916237,0.7814542,0.55270207,-0.28634495,0.78264105,0.5521882,-0.28524244,0.78340596,0.552479,-0.28409714,0.7836171,0.5536345,-0.28192946,0.7835845,0.55466396,-0.2797816,0.7836263,0.55582386,-0.27832988,0.7833213,0.5592093,-0.2777486,0.781115,0.5607871,-0.27724424,0.78016245,0.56152445,-0.27661538,0.77985525,0.5622939,-0.27494425,0.7798918,0.5634596,-0.2702707,0.7806837,0.56431663,-0.26587495,0.78157353,0.56547993,-0.25940347,0.7829063,0.56657904,-0.25699452,0.7829061,0.5662963,-0.2565217,0.7832657,0.5665317,-0.25326666,0.7841542,0.5649105,-0.24979751,0.7864333,0.5627984,-0.24532564,0.78935,0.56159586,-0.2429158,0.79095,0.5602168,-0.24017511,0.79276294,0.5575841,-0.23587935,0.79590255,0.5563119,-0.23432207,0.7972517,0.5556108,-0.2337172,0.7979179,0.5520441,-0.228628,0.8018582,0.5522429,-0.22679907,0.80224055,0.5523523,-0.22368881,0.8030382,0.55238104,-0.2192809,0.8042332,0.55230546,-0.21798527,0.80463725,0.5519666,-0.21466546,0.8057615,0.55163443,-0.21150477,0.8068241,0.55353993,-0.20763503,0.80652416,0.55460906,-0.20598236,0.8062133,0.55512625,-0.20507832,0.8060879,0.5561535,-0.20261711,0.80600226,0.5564664,-0.20142356,0.8060854,0.5594784,-0.20066218,0.80418813,0.5613375,-0.200704,0.8028811,0.5613106,-0.20011619,0.80304664,0.5612516,-0.19874325,0.80342877,0.5607392,-0.19754711,0.80408126,0.56025904,-0.19683526,0.8045904,0.5595824,-0.1966465,0.8051073,0.55895895,-0.19610836,0.8056714,0.5587362,-0.19488806,0.8061218,0.5583189,-0.19384815,0.80666155,0.55750924,-0.19064169,0.8079847,0.5583882,-0.18863013,0.8078498,0.55874604,-0.18725239,0.8079229,0.5588243,-0.18583915,0.80819505,0.5586226,-0.18439037,0.8086662,0.55805796,-0.18266623,0.80944693,0.5581944,-0.1821702,0.80946463,0.5580638,-0.18099359,0.80981857,0.55812335,-0.18017049,0.80996114,0.5583748,-0.17914262,0.81001574,0.5583717,-0.17779091,0.8103156,0.55801815,-0.17490526,0.81118673,0.55809236,-0.17416683,0.81129456,0.5575485,-0.17276856,0.8119672,0.555771,-0.16946208,0.8138803,0.5557142,-0.16903208,0.81400853,0.5527261,-0.16569817,0.8167239,0.5514686,-0.16496865,0.81772107,0.5509319,-0.16559401,0.81795645,0.5506991,-0.16617216,0.8179959,0.55073774,-0.16723931,0.81775236,0.5491776,-0.16785267,0.8186754,0.54800427,-0.16695699,0.8196442,0.54704386,-0.16673684,0.8203303,0.5445907,-0.16689824,0.8219282,0.54371345,-0.16710827,0.82246614,0.5430592,-0.16690658,0.82293916,0.5419069,-0.1653771,0.8240069,0.5404172,-0.165056,0.8250489,0.53905827,-0.164977,0.8259533,0.5369582,-0.16324027,0.8276645,0.5364204,-0.16332094,0.8279972,0.53615725,-0.16345385,0.82814145,0.5361654,-0.1639112,0.8280458,0.5364878,-0.16477536,0.82766527,0.5368473,-0.16539732,0.8273082,0.53679574,-0.16631497,0.8271576,0.53691787,-0.16716197,0.8269075,0.5375015,-0.16737212,0.82648575,0.5379966,-0.16742583,0.82615274,0.5397915,-0.1672192,0.82502294,0.53994507,-0.16819711,0.8247236,0.5403582,-0.16951413,0.8241832,0.54129136,-0.17285757,0.82287544,0.54078406,-0.17430112,0.8229044,0.5418223,-0.17572586,0.8219179,0.5435686,-0.17768028,0.8203431,0.5434917,-0.1796876,0.8199568,0.54365325,-0.18036994,0.8196998,0.5407718,-0.18741153,0.8200261,0.53991884,-0.187599,0.8205451,0.53910035,-0.18827868,0.82092744,0.5385757,-0.18898168,0.82111037,0.5387001,-0.18935321,0.82094306,0.5388736,-0.19048616,0.820567,0.5393329,-0.1922678,0.81984943,0.5377313,-0.19772427,0.8196037,0.53719527,-0.19795984,0.81989825,0.53688145,-0.19996423,0.8196174,0.53713745,-0.20069557,0.81927085,0.5376203,-0.20126826,0.8188135,0.537261,-0.20600241,0.8178714,0.53612006,-0.20983356,0.8176461,0.53697526,-0.21317199,0.8162201,0.5373571,-0.21353664,0.81587344,0.5390816,-0.21355993,0.8147289,0.53508586,-0.21740305,0.8163449,0.5317673,-0.21866222,0.8181751,0.5309571,-0.2198695,0.8183777,0.53031844,-0.22162329,0.81831867,0.5305468,-0.2226503,0.8178918,0.530566,-0.22477178,0.8172988,0.53008693,-0.2263841,0.81716466,0.53001934,-0.22765222,0.81685615,0.52973264,-0.22877572,0.81672823,0.5292487,-0.22932656,0.81688744,0.5284771,-0.23101832,0.8169104,0.5260361,-0.2342989,0.81755126,0.5246912,-0.23497981,0.8182198,0.5246708,-0.2353178,0.81813574,0.5263692,-0.23701203,0.81655425,0.5260169,-0.23737139,0.81667686,0.52566224,-0.237873,0.8167592,0.5262475,-0.23839112,0.8162311,0.526989,-0.23882814,0.8156247,0.52805346,-0.24152997,0.8141393,0.528173,-0.24208067,0.8138982,0.52829754,-0.2422973,0.81375283,0.52853805,-0.2423238,0.8135888,0.52903956,-0.24209224,0.8133317,0.53799254,-0.25067213,0.80481523,0.5520736,-0.2850235,0.7835664,0.56439114,-0.2632943,0.782393,0.5530454,-0.23322004,0.7998432,0.5520351,-0.20996363,0.80695254,0.5571063,-0.2008843,0.8057779,0.55770576,-0.19298698,0.8072919,0.54114234,-0.17041282,0.8234831,0.54164207,-0.1712793,0.8229747,0.5445191,-0.1820395,0.8187555,0.54168695,-0.18709172,0.81949484,0.53912604,-0.19507536,0.81932205,0.53749305,-0.20449607,0.81809694,0.5374241,-0.21626654,0.8151099,0.5308938,-0.22324355,0.81750476,0.5275751,-0.2327161,0.81701154,0.52599084,-0.2361013,0.8170617,0.52759403,-0.23995513,0.81490254,0.53002566,-0.24123058,0.8129456,0.5370429,-0.2508915,0.8053809,0.5500903,-0.28959802,0.7832839,0.5503425,-0.29067782,0.7827065,0.55196816,-0.23107144,0.80120987,0.5573696,-0.19218755,0.8077147,0.55730677,-0.19145142,0.80793285,0.5496612,-0.16797535,0.81832564,0.5432159,-0.17707974,0.8207066,0.54491013,-0.1831472,0.81824815,0.53768927,-0.20263042,0.8184321,0.52693534,-0.23349175,0.817203,0.52628577,-0.23664281,0.81671506,0.542684,-0.27603543,0.79328334,0.55523944,-0.27887654,0.7835413,0.538515,-0.1668142,0.8259387,0.5448089,-0.18378891,0.8181716,0.5397863,-0.19351378,0.8192577,0.53795046,-0.2157657,0.81489533,0.5524585,-0.23239122,0.8004897,0.55920076,-0.19665983,0.80536914,0.5506065,-0.1677703,0.817732,0.5393444,-0.21384466,0.81448025,0.54448944,-0.24909101,0.8009275,0.5475141,-0.26119396,0.79498804,0.5537679,-0.25616333,0.7922888,0.53914124,-0.16682923,0.82552695,0.5388157,-0.21479364,0.8145805,0.55270207,-0.25833666,0.79232734,0.5478658,-0.25908744,0.79543495,0.5525057,-0.2588035,0.7923119,0.55044425,-0.1680106,0.8177919,0.5480155,-0.25751004,0.79584396,0.552275,-0.25814813,0.79268646,0.55168706,-0.21072337,0.80699265,0.54812473,-0.2542772,0.7968076,0.5508232,-0.18939418,0.8128491,0.54498917,-0.21656112,0.8099926,0.5481945,-0.25203803,0.7974708,0.5508022,-0.18978664,0.8127718,0.54504585,-0.21624246,0.81003964,0.55114126,-0.1996269,0.8101805,0.5462549,-0.24883516,0.79980415,0.5459361,-0.2161135,0.80947435,0.5468079,-0.24910925,0.7993408,0.5486538,-0.20717147,0.8099747,0.54621905,-0.21625166,0.80924654,0.6331069,-0.11125046,0.7660281,0.6323411,-0.107558794,0.767187,0.63223606,-0.107413135,0.76729393,0.6308839,-0.103680916,0.7689186,0.6308942,-0.10125639,0.76923317,0.63034576,-0.099701345,0.76988566,0.6296352,-0.101978734,0.7701687,0.62854356,-0.10333173,0.77087975,0.6285544,-0.10597265,0.7705123,0.6281274,-0.10752323,0.7706456,0.6288267,-0.1093006,0.76982486,0.62975156,-0.10937181,0.7690584,0.63058496,-0.11086093,0.7681617,0.6311557,-0.11056438,0.7677356,0.631385,-0.11181116,0.7673664,0.6317925,-0.11240049,0.7669449,0.63217276,-0.11236495,0.76663667,0.6329255,-0.11194158,0.7660773,0.6315649,-0.106531896,0.7679692,0.63866395,-0.08640022,0.7646197,0.6386329,-0.08552395,0.76474416,0.63747025,-0.086198084,0.7656381,0.636052,-0.08588739,0.7668515,0.6362398,-0.08913205,0.76632524,0.635254,-0.09356198,0.766615,0.63557076,-0.09422375,0.7662713,0.6360037,-0.094620846,0.765863,0.63654584,-0.09487017,0.76538163,0.63721997,-0.09401167,0.76492643,0.63812655,-0.09159671,0.76446354,0.6383078,-0.08985346,0.7645191,0.6384132,-0.08722536,0.7647354,0.5353794,-0.16299646,0.8287346,0.5681864,-0.20089936,0.7979998,0.5688937,-0.20115978,0.7974301,0.5697328,-0.20111808,0.79684126,0.5707002,-0.2007708,0.7962364,0.5718262,-0.19991739,0.79564303,0.57818526,-0.2012366,0.7906995,0.5782758,-0.20228662,0.7903653,0.57977754,-0.20289586,0.7891079,0.58268607,-0.20306441,0.7869192,0.5848827,-0.20251858,0.7854289,0.59034735,-0.20094444,0.78173614,0.5909766,-0.20188428,0.7810182,0.592316,-0.20255698,0.7798284,0.5943651,-0.2029659,0.7781612,0.59673196,-0.20236167,0.7765055,0.5994137,-0.20074731,0.7748572,0.6010371,-0.19905904,0.77403486,0.6079441,-0.19613676,0.76937276,0.6100948,-0.19788459,0.76721966,0.611733,-0.19672166,0.76621366,0.6172384,-0.19367424,0.7625661,0.61967826,-0.19366758,0.76058644,0.62176996,-0.19290838,0.7590708,0.62527597,-0.19044098,0.7568105,0.6270544,-0.1900343,0.75544006,0.62876004,-0.18930803,0.75420374,0.6312095,-0.18773799,0.75254834,0.6338184,-0.18545224,0.7509206,0.6364737,-0.18312037,0.74924505,0.63817096,-0.18162383,0.74816483,0.6380708,-0.18125679,0.74833924,0.63791585,-0.1806952,0.7486071,0.6374201,-0.17972115,0.74926364,0.6353855,-0.17778258,0.75145096,0.63443613,-0.17713006,0.7524066,0.63381547,-0.17633994,0.753115,0.63249296,-0.17639029,0.7542142,0.6321202,-0.17523424,0.754796,0.631184,-0.17402585,0.7558583,0.62939566,-0.17365664,0.75743276,0.6303359,-0.17217934,0.7569881,0.6303655,-0.17084777,0.7572651,0.6299586,-0.1689161,0.7580366,0.6298187,-0.16639738,0.75870967,0.6291857,-0.16348913,0.75986624,0.6297859,-0.15975164,0.7601639,0.6276972,-0.15545136,0.7627785,0.62814444,-0.15481317,0.76254016,0.6283305,-0.15405197,0.76254094,0.62737256,-0.14336951,0.76540756,0.62908316,-0.13937233,0.76474154,0.6292183,-0.13593684,0.7652487,0.6280081,-0.13479352,0.766444,0.6273654,-0.1355028,0.7668453,0.6301625,-0.12545502,0.7662613,0.63142467,-0.12401925,0.76545554,0.63192034,-0.12228553,0.76532537,0.6311302,-0.11976634,0.766375,0.62873554,-0.118663,0.768512,0.62811357,-0.11641514,0.76936394,0.6268946,-0.11417356,0.77069294,0.62618357,-0.113191366,0.7714155,0.62508065,-0.11242418,0.7724216,0.6237824,-0.11027647,0.77377945,0.6236801,-0.108084165,0.7741711,0.623154,-0.10574553,0.7749174,0.6250873,-0.09803419,0.774374,0.6261095,-0.09616812,0.773782,0.62748605,-0.09118086,0.7732706,0.6279525,-0.09003178,0.77302647,0.6284657,-0.08829339,0.77281,0.62860817,-0.086816244,0.7728614,0.6298594,-0.0832686,0.7722328,0.5123192,-0.017435426,0.8586181,0.5121033,-0.017363792,0.8587484,0.5110939,-0.0175837,0.859345,0.50893366,-0.01866916,0.8606033,0.5077506,-0.018543059,0.8613045,0.5076,-0.01862661,0.8613914,0.5071026,-0.018900981,0.8616784,0.50699157,-0.019741131,0.8617249,0.5075474,-0.02108565,0.8613658,0.509376,-0.023864789,0.86021316,0.51223177,-0.029555589,0.85833853,0.5118767,-0.0322949,0.85845166,0.5120278,-0.034332365,0.8582825,0.5110425,-0.041381862,0.8585588,0.51033115,-0.041238815,0.85898864,0.50945455,-0.04141926,0.85950017,0.5084964,-0.041819457,0.860048,0.50789845,-0.04187734,0.8603984,0.5075895,-0.04233375,0.86055845,0.5061388,-0.045597993,0.8612459,0.50586015,-0.046088383,0.8613834,0.5060058,-0.046389777,0.8612817,0.5062086,-0.04803434,0.8610723,0.50606394,-0.04831011,0.8611419,0.50578034,-0.0492686,0.8612542,0.50590056,-0.050148707,0.8611328,0.506224,-0.050473854,0.86092377,0.50710636,-0.05089936,0.8603792,0.50843805,-0.05120747,0.8595746,0.5099958,-0.051939394,0.8586074,0.51105285,-0.052072134,0.85797054,0.5112873,-0.052599866,0.8577987,0.5112119,-0.053544458,0.8577852,0.5114523,-0.054364733,0.85759026,0.51106066,-0.057121683,0.85764456,0.5094194,-0.057727456,0.85857993,0.5085639,-0.05838938,0.85904217,0.508327,-0.058721166,0.8591597,0.50852036,-0.059108995,0.85901874,0.50861436,-0.0596314,0.85892695,0.50704426,-0.06091759,0.8597646,0.5054169,-0.06259666,0.8606017,0.5050051,-0.0637295,0.86076033,0.50464743,-0.065068066,0.86087,0.50415826,-0.06592191,0.8610916,0.5029158,-0.06715311,0.8617227,0.501605,-0.06963245,0.86228985,0.49779272,-0.0751062,0.8640379,0.49503705,-0.07703347,0.8654503,0.49422976,-0.07769107,0.8658528,0.4894732,-0.07757722,0.86856073,0.48945636,-0.07840142,0.8684963,0.4887834,-0.081396714,0.8685997,0.48803,-0.0842978,0.8687466,0.48795012,-0.085396625,0.8686841,0.48818117,-0.08686208,0.868409,0.4892065,-0.09021842,0.86748934,0.48994908,-0.09265909,0.8668127,0.4902935,-0.09412537,0.86645985,0.4907974,-0.095842406,0.8659862,0.49137956,-0.100639194,0.86511153,0.4896183,-0.10392848,0.865721,0.4894025,-0.104962416,0.86571825,0.4896636,-0.10751482,0.86525726,0.49005288,-0.10997493,0.8647275,0.49072754,-0.111372486,0.86416584,0.49230388,-0.11523013,0.8627624,0.49356022,-0.116530225,0.86186945,0.50150794,-0.12773407,0.8556716,0.5018504,-0.12984517,0.8551529,0.5028341,-0.1327261,0.8541322,0.5037414,-0.13540323,0.8531767,0.5049237,-0.13867016,0.85195225,0.5057545,-0.14097722,0.85108036,0.5060912,-0.14251931,0.8506233,0.50637877,-0.14376591,0.85024226,0.5070234,-0.1458335,0.84950566,0.5078166,-0.14735599,0.84876883,0.50884473,-0.14868939,0.8479202,0.5097443,-0.14949496,0.8472379,0.5103603,-0.14974095,0.84682345,0.51441395,-0.14965668,0.8443821,0.51698107,-0.15148996,0.84248525,0.51716727,-0.15308017,0.8420834,0.5179168,-0.15407729,0.8414407,0.5187456,-0.15486194,0.84078586,0.51912457,-0.15495792,0.8405342,0.5222885,-0.15543781,0.838483,0.5222244,-0.15676954,0.83827496,0.5224771,-0.15736537,0.83800584,0.52381384,-0.15759598,0.83712757,0.5251841,-0.15769863,0.83624923,0.5264364,-0.15859899,0.835291,0.52785695,-0.15875894,0.8343636,0.5294822,-0.1591291,0.8332626,0.5301815,-0.16009995,0.83263165,0.5318557,-0.16109586,0.831371,0.53392595,-0.16198735,0.8298694,0.56446683,-0.20064723,0.80069834,0.56773806,-0.20079076,0.79834616,0.5731082,-0.19856288,0.7950596,0.57704586,-0.20000592,0.79184324,0.5863712,-0.20125495,0.7846434,0.6016036,-0.19729982,0.77404517,0.60615,-0.19558182,0.77092797,0.6235138,-0.19140135,0.7580211,0.6270903,-0.15161969,0.764048,0.62678516,-0.14523661,0.76553684,0.5126348,-0.017488228,0.8584286,0.5105524,-0.024376048,0.85950106,0.5126853,-0.035667762,0.8578355,0.5065767,-0.0470078,0.86091244,0.50094664,-0.07124253,0.86254096,0.5893046,-0.20051363,0.78263295,0.6021441,-0.19623202,0.77389634,0.6145384,-0.19472927,0.7644757,0.6289,-0.12778147,0.7669137,0.5561242,-0.017488228,0.8309152,0.5142068,-0.017488228,0.85748786,0.5100481,-0.018348781,0.8599502,0.51283115,-0.03740003,0.8576744,0.49158636,-0.09971321,0.8651012,0.49590632,-0.11845822,0.8602584,0.5197964,-0.15476595,0.8401543,0.52184147,-0.15508935,0.8388258,0.57484996,-0.1985929,0.7937937,0.60399735,-0.19564028,0.7726008,0.6265687,-0.14684013,0.7654082,0.6277821,-0.1308355,0.7673146,0.6235699,-0.10240434,0.77503157,0.5535439,-0.017488228,0.8326363,0.5168658,-0.017488228,0.8558878,0.5115725,-0.041225117,0.85825056,0.5208727,-0.15474911,0.83949053,0.5878433,-0.2005871,0.7837124,0.5709718,-0.027552856,0.82050717,0.5195183,-0.017488228,0.85428035,0.49145305,-0.09846494,0.8653199,0.5007422,-0.12539755,0.8564652,0.5158028,-0.15046555,0.8433906,0.60266113,-0.19585598,0.773589,0.62630975,-0.17106354,0.76057434,0.55095696,-0.017488228,0.8343504,0.56969774,-0.027552856,0.8213923,0.52216727,-0.017488228,0.8526638,0.5113104,-0.025456225,0.859019,0.51204646,-0.040802874,0.85798806,0.50022554,-0.07368025,0.86275464,0.49795637,-0.120397486,0.8588038,0.4994199,-0.12252571,0.8576521,0.5814042,-0.19653359,0.78952116,0.61504185,-0.17378166,0.7691056,0.5483662,-0.017488228,0.8360554,0.5684231,-0.027552856,0.82227486,0.5248097,-0.017488228,0.8510399,0.5120411,-0.027277706,0.85852766,0.500604,-0.07490234,0.8624299,0.53380346,-0.15772136,0.8307694,0.5816667,-0.19634564,0.78937453,0.61480975,-0.17140108,0.7698251,0.6250102,-0.12631987,0.77032816,0.59997267,-0.050855074,0.7984025,0.54577,-0.017488228,0.83775246,0.567147,-0.027552856,0.8231556,0.52744716,-0.017488228,0.8494078,0.512466,-0.03952896,0.8577972,0.5010392,-0.07649647,0.8620371,0.49872744,-0.1214025,0.8582146,0.52593786,-0.1437803,0.838282,0.5807159,-0.18502267,0.7928024,0.6184944,-0.1283849,0.7752303,0.61352175,-0.15095757,0.7751148,0.60824203,-0.17345178,0.7745683,0.61813706,-0.085498534,0.78140676,0.57936925,-0.040798586,0.81404346,0.56273276,-0.029145328,0.82612497,0.59566593,-0.05244618,0.8015182,0.53008103,-0.017488228,0.84776664,0.5051511,-0.089308605,0.8583975,0.5256087,-0.14322028,0.8385842,0.5386705,-0.1541038,0.8283032,0.5122916,-0.1323194,0.8485569,0.5804595,-0.18432498,0.79315263,0.6112627,-0.09807144,0.78532785,0.6090574,-0.13082026,0.7822628,0.6061893,-0.16342692,0.7783484,0.5799952,-0.041363996,0.81356907,0.59597194,-0.05272879,0.8012722,0.56305254,-0.02942821,0.825897,0.59658337,-0.05329388,0.8007796,0.5327083,-0.017488228,0.8461183,0.505339,-0.08866517,0.8583536,0.51141524,-0.055831753,0.85751814,0.53963125,-0.15465194,0.8275753,0.5262607,-0.14358623,0.83811253,0.5126232,-0.13250266,0.8483281,0.57959056,-0.182461,0.7942183,0.5623186,-0.062358946,0.824566,0.587853,-0.06378756,0.806449,0.5542228,-0.039933596,0.8314098,0.5953246,-0.08617896,0.7988503,0.5827569,-0.08546587,0.80813986,0.5773854,-0.10710379,0.80941635,0.570044,-0.08475273,0.8172313,0.5843302,-0.12940097,0.8011327,0.593418,-0.11897051,0.79605347,0.5908657,-0.15163277,0.7923921,0.59697986,-0.17378823,0.78320664,0.59445214,-0.102588736,0.79756016,0.5353304,-0.017488228,0.8444617,0.5332516,-0.110934615,0.8386515,0.5160891,-0.116170175,0.8486204,0.54329777,-0.13836923,0.8280589,0.5226147,-0.083415076,0.84847856,0.5194204,-0.099806085,0.84867024,0.5781597,-0.18079838,0.79564023,0.54316723,-0.017488228,0.8394424,0.5519628,-0.039933596,0.83291197,0.5603977,-0.062358946,0.8258727,0.5532547,-0.039933596,0.8320544,0.56167865,-0.062358946,0.82500213,0.56845766,-0.08475273,0.8183355,0.57612866,-0.10710379,0.8103114,0.5690924,-0.08475273,0.8178941,0.5539001,-0.039933596,0.8316248,0.5833973,-0.12940097,0.8018123,0.5902507,-0.15163277,0.7928503,0.58401924,-0.12940097,0.80135936,0.59667605,-0.17378823,0.78343815,0.56940967,-0.08475273,0.8176733,0.5379488,-0.017488228,0.8427961,0.5820982,-0.16110761,0.7969982,0.5925823,-0.17850962,0.78548104,0.5712213,-0.1436555,0.8081271,0.5599646,-0.12615845,0.8188551,0.55645233,-0.14595746,0.8179592,0.5483417,-0.108622074,0.82916987,0.5363663,-0.091051824,0.8390595,0.52405256,-0.0734533,0.8485125,0.5405606,-0.017488228,0.8411232,0.54969996,-0.039933596,0.83440703,0.5584747,-0.062358946,0.82717425,0.5509935,-0.039933596,0.8335535,0.55975705,-0.062358946,0.8263071,0.56687,-0.08475273,0.8194361,0.5748711,-0.10710379,0.811204,0.56750524,-0.08475273,0.8189962,0.55163985,-0.039933596,0.8331259,0.5824642,-0.12940097,0.80249035,0.5896356,-0.15163277,0.7933078,0.5830864,-0.12940097,0.80203843,0.5963722,-0.17378823,0.7836695,0.56782275,-0.08475273,0.8187761,0.54909676,-0.101740964,0.82954293,0.5488479,-0.104035184,0.829423,0.56106365,-0.11700084,0.81946224,0.5368253,-0.08645711,0.8392519,0.5242608,-0.071152754,0.84857994,0.58275694,-0.15655313,0.79742426,0.5715259,-0.14137246,0.8083143,0.59294033,-0.17623973,0.78572345,0.5721261,-0.13680425,0.8086756,0.5377096,-0.07726202,0.8395826,0.5495859,-0.097150795,0.82976925,0.525452,-0.057342455,0.84888864,0.52414936,-0.040017094,0.8506856,0.53678834,-0.06243033,0.841404,0.5388102,-0.039969448,0.8414784,0.5512871,-0.06238274,0.83198005,0.54898834,-0.08481213,0.8315159,0.5607275,-0.10715132,0.82103795,0.5561723,-0.08478837,0.8267305,0.5460803,-0.039945625,0.83677995,0.5719845,-0.12943642,0.8099876,0.58273894,-0.15165633,0.7983832,0.5789818,-0.12941279,0.80500454,0.5929708,-0.17379998,0.78624374,0.5597487,-0.08477649,0.8243145,0.549475,-0.094221026,0.83018047,0.5495125,-0.09519771,0.83004415,0.560968,-0.11310253,0.8200749,0.53761065,-0.07530555,0.8398237,0.5253907,-0.05636295,0.8489922,0.5827665,-0.15461485,0.7977954,0.57211685,-0.13583232,0.808846,0.5929602,-0.17527379,0.78592443,0.5720966,-0.13388807,0.80918443,0.5374064,-0.07139164,0.84029615,0.5252662,-0.054403655,0.8491971,0.54939836,-0.09226727,0.8304506,0.52501106,-0.05048469,0.8495968,0.54912955,-0.08722738,0.8311727,0.53730696,-0.06968679,0.8405028,0.54919887,-0.088434696,0.8309993,0.5371374,-0.067268364,0.8408081,0.5248691,-0.048493117,0.8498005,0.52476865,-0.04728251,0.8499307,0.54933494,-0.09084906,0.8306489,0.5609334,-0.11197037,0.8202538,0.57208335,-0.13304122,0.8093335,0.57205135,-0.13183977,0.80955267,0.5827663,-0.15405197,0.7979044,0.5929646,-0.17499341,0.7859836,0.5245654,-0.044860963,0.8501874,0.5493605,-0.09141639,0.83056974,0.5493732,-0.09169998,0.83053005,0.5373735,-0.07082338,0.84036523,0.5249909,-0.05020014,0.84962606,0.5720922,-0.1336057,0.8092342,0.52495044,-0.04963115,0.8496845,0.63199705,-0.13900945,0.7624016,0.632737,-0.13878326,0.76182884,0.6335091,-0.13765055,0.7613925,0.63435787,-0.13745643,0.7607206,0.6355938,-0.1344727,0.76022214,0.6358363,-0.13310786,0.76025945,0.6356,-0.13335454,0.7604139,0.6349113,-0.13450979,0.76078564,0.6330308,-0.13626103,0.76203996,0.6321811,-0.13745466,0.7625309,0.63135815,-0.13806923,0.76310146,0.631736,-0.13879,0.7626578,0.7391066,0.19517384,0.6446927,0.73635334,0.19633387,0.647485,0.7352066,0.19629705,0.64879787,0.7337685,0.19577733,0.6505805,0.7293646,0.19319591,0.6562795,0.72590876,0.19272768,0.6602367,0.72299606,0.19380291,0.6631117,0.7222007,0.19378959,0.66398174,0.7203539,0.19252029,0.666353,0.71778727,0.18953058,0.66996986,0.7122123,0.18625276,0.6768039,0.7096598,0.18705733,0.6792587,0.706905,0.18727326,0.68206596,0.7043274,0.18799654,0.6845291,0.70295763,0.1874482,0.6860859,0.6990108,0.18480478,0.69081914,0.6947156,0.18114942,0.6961,0.67725414,0.19141623,0.71041304,0.67417103,0.19674075,0.7118895,0.6713783,0.19936456,0.71379614,0.67061573,0.19707079,0.7151486,0.66963166,0.19413738,0.7168711,0.6805713,0.18711166,0.7083869,0.713421,0.18645537,0.67547375,0.68818104,0.160491,0.7075659,0.7349587,0.16014235,0.658931,0.7276309,0.18377337,0.66089374,0.6848638,0.18310681,0.7052896,0.70148355,0.1553746,0.69554263,0.72083277,0.1628357,0.67370963,0.6865283,0.18175282,0.70402044,0.69874066,0.16468026,0.6961623,0.7134524,0.15191406,0.6840379,0.68371236,0.17741895,0.7078558,0.71153855,0.16017224,0.6841475,0.68793684,0.18103793,0.70282865,0.7082145,0.16011623,0.68760085,-0.031302206,0.57400215,0.81825525,-0.031685427,0.57506514,0.8174938,-0.03458914,0.5753405,0.81718224,-0.03763302,0.5751865,0.8171562,-0.038971107,0.5755078,0.81686723,-0.040522233,0.5754026,0.81686586,-0.04092154,0.57604223,0.816395,-0.041666977,0.577674,0.8152035,-0.04204562,0.5780732,0.81490093,-0.042082448,0.57875586,0.8144143,-0.042261954,0.5793846,0.81395787,-0.051157665,0.5768361,0.8152564,-0.052584466,0.57757235,0.8146441,-0.053954575,0.57707274,0.81490856,-0.056720715,0.57705116,0.81473595,-0.0617241,0.57588273,0.8151989,-0.07539532,0.5857578,0.8069717,-0.074509375,0.586411,0.80657953,-0.076165766,0.58679473,0.8061456,-0.07943897,0.5853667,0.8068676,-0.0812137,0.5851837,0.8068237,-0.08373553,0.5847565,0.8068755,-0.109565444,0.55397695,0.82529086,-0.12056791,0.5501071,0.82634467,-0.123792894,0.5483288,0.8270495,-0.1250906,0.5473756,0.82748556,-0.1289448,0.5434742,0.8294631,-0.13539933,0.5383658,0.8317628,-0.13557747,0.53709114,0.83255744,-0.1376111,0.53119713,0.83599806,-0.14296904,0.5256348,0.8386107,-0.1453719,0.52137625,0.84085304,-0.14628264,0.5160793,0.84395707,-0.14660989,0.5127512,0.8459265,-0.14744385,0.5108118,0.8469543,-0.14723659,0.5097109,0.8476533,-0.14847372,0.49711365,0.8548881,-0.15108103,0.49457,0.855906,-0.15431723,0.49060515,0.85760874,-0.16209029,0.48388126,0.8599916,-0.16856165,0.4804342,0.86068,-0.17214431,0.47755858,0.8615707,-0.19062018,0.46961674,0.8620464,-0.19555949,0.46913886,0.86119986,-0.19801043,0.4681481,0.861179,-0.19965537,0.4659206,0.86200684,-0.2019008,0.46415755,0.8624348,-0.20192924,0.4640979,0.86246026,-0.20351663,0.46073616,0.86388844,-0.20636724,0.4562693,0.8655813,-0.20817208,0.452009,0.8673824,-0.21579927,0.4460224,0.8686165,-0.21921584,0.4448763,0.8683487,-0.2216263,0.44301993,0.86868584,-0.2232463,0.44234672,0.8686141,-0.22428025,0.4409269,0.8690695,-0.22552887,0.43719807,0.8706289,-0.22696133,0.43536535,0.8711748,-0.22905426,0.43126234,0.87266654,-0.23066783,0.42900053,0.8733561,-0.23175116,0.42609695,0.87449,-0.23601975,0.4154685,0.87845355,-0.23844779,0.41435665,0.87832296,-0.24532154,0.4078963,0.8794532,-0.24849029,0.405986,0.8794475,-0.25056535,0.40425465,0.8796563,-0.25158736,0.40260002,0.8801233,-0.25215182,0.40147325,0.88047636,-0.250994,0.40238854,0.8803894,-0.24997249,0.40355068,0.88014805,-0.24931374,0.40273884,0.88070655,-0.25179243,0.39959136,0.88143486,-0.25286838,0.39755604,0.88204694,-0.25504783,0.39438364,0.88284326,-0.25678408,0.3923034,0.8832666,-0.2562849,0.39124414,0.8838813,-0.25694516,0.38985303,0.88430417,-0.2587365,0.38807568,0.8845636,-0.260033,0.3842072,0.8858712,-0.26293364,0.37999696,0.8868304,-0.26566973,0.37904215,0.8864235,-0.26757848,0.37718967,0.88663954,-0.27020216,0.37298772,0.887621,-0.27222362,0.36521313,0.8902324,-0.26554847,0.3661935,0.89184433,-0.25946963,0.3661935,0.8936318,-0.25709698,0.36651063,0.8941874,-0.2525834,0.36635214,0.89553773,-0.2504276,0.366019,0.89627904,-0.2481158,0.36570182,0.8970511,-0.24545355,0.36570182,0.8977832,-0.24327406,0.36554316,0.89844084,-0.24045447,0.36554316,0.8991996,-0.2383926,0.36570182,0.8996839,-0.23690052,0.36651063,0.8997489,-0.23548026,0.36812764,0.8994615,-0.23488314,0.36942676,0.8990849,-0.23429273,0.3705669,0.89876974,-0.2343394,0.37170643,0.89828694,-0.23442684,0.37235504,0.8979954,-0.23356381,0.37316167,0.89788544,-0.23249221,0.37445873,0.8976236,-0.23146911,0.37526387,0.8975517,-0.23109081,0.3759115,0.8973782,-0.23008397,0.37655896,0.89736545,-0.22887656,0.3776956,0.89719653,-0.22816852,0.37850034,0.8970377,-0.227276,0.37962013,0.8967911,-0.22701687,0.3805976,0.8964423,-0.22657225,0.38188964,0.8960052,-0.22634341,0.38414103,0.89510024,-0.22575147,0.3868776,0.89407045,-0.22510347,0.38865286,0.89346373,-0.22464304,0.39009717,0.89294994,-0.21781364,0.40339547,0.88872343,-0.21604249,0.4040349,0.8888652,-0.21473439,0.40467405,0.88889146,-0.21311516,0.405313,0.8889901,-0.21167128,0.4057959,0.88911474,-0.21036232,0.4064345,0.8891337,-0.20982955,0.40705732,0.8889746,-0.20894223,0.40817788,0.8886697,-0.20764787,0.41024628,0.8880205,-0.20689692,0.41152057,0.8876061,-0.20460828,0.41422167,0.88687986,-0.20389411,0.41464978,0.8868442,-0.20328876,0.41501272,0.88681346,-0.2018079,0.41581893,0.88677406,-0.2000127,0.4167642,0.886737,-0.19869311,0.41755423,0.886662,-0.19753264,0.41835943,0.8865417,-0.19654144,0.41897854,0.8864696,-0.19536558,0.41993788,0.88627565,-0.1948188,0.4207265,0.8860219,-0.19405814,0.42214856,0.8855123,-0.19306606,0.42437226,0.8846659,-0.19221202,0.4267313,0.8837166,-0.19134164,0.4292584,0.88268095,-0.19072399,0.430828,0.8820496,-0.19006708,0.43271893,0.88126546,-0.18930757,0.4341473,0.8807263,-0.18869044,0.4357128,0.8800854,-0.18831989,0.43634167,0.8798532,-0.18824044,0.4371237,0.879482,-0.18782015,0.43822703,0.87902254,-0.18774691,0.4383136,0.87899506,-0.18729253,0.43885517,0.8788217,-0.18492948,0.439483,0.8790084,-0.18297192,0.43972784,0.8792956,-0.18238172,0.44000342,0.87928027,-0.18199888,0.44092146,0.8788997,-0.18169421,0.4417169,0.8785633,-0.18084088,0.4430009,0.87809265,-0.17992343,0.44402435,0.87776417,-0.1793892,0.4446504,0.87755656,-0.17675999,0.447503,0.87663954,-0.17573455,0.44828022,0.8764486,-0.17533459,0.4490722,0.87612325,-0.17524137,0.4500162,0.87565744,-0.17584477,0.45077708,0.8751449,-0.17618299,0.45217627,0.8743548,-0.17417246,0.45260182,0.87453735,-0.17239676,0.453073,0.8746452,-0.17077187,0.45352873,0.8747278,-0.16881794,0.45415142,0.874784,-0.167402,0.45415142,0.875056,-0.16628298,0.4543033,0.87519056,-0.16473016,0.45399955,0.8756417,-0.16317023,0.45384777,0.8760124,-0.16210806,0.4533768,0.87645334,-0.16029513,0.45244992,0.87726533,-0.15876691,0.45182663,0.8778643,-0.15781668,0.45182663,0.87803566,-0.15677187,0.45213065,0.87806636,-0.15457973,0.4522827,0.8783766,-0.15339875,0.45165932,0.8789042,-0.15213351,0.45165932,0.8791241,-0.15085287,0.45182663,0.8792589,-0.14983512,0.45260182,0.87903416,-0.14467631,0.45551756,0.878392,-0.14364319,0.45551756,0.87856156,-0.1424576,0.45554793,0.8787389,-0.14056739,0.45539615,0.8791218,-0.13930109,0.45539615,0.8793233,-0.13755223,0.4556086,0.8794885,-0.13608606,0.45586658,0.87958306,-0.13541968,0.45633674,0.87944204,-0.13537112,0.45695844,0.87912667,-0.13561323,0.45788303,0.8786081,-0.13588716,0.45877674,0.87809944,-0.13563387,0.46045616,0.87725914,-0.13535637,0.46113774,0.87694395,-0.13542603,0.46222627,0.87635994,-0.13577896,0.46416885,0.8752779,-0.13372432,0.46416885,0.8755941,-0.13342476,0.46793574,0.8736326,-0.13204768,0.4805082,0.86699206,-0.1304491,0.48126224,0.86681587,-0.1279046,0.48297945,0.8662397,-0.12575458,0.4845121,0.86569846,-0.12155106,0.48682973,0.86499834,-0.12066972,0.48747498,0.8647583,-0.115622684,0.4905265,0.8637217,-0.11350993,0.49078566,0.86385465,-0.11259825,0.49128383,0.8636908,-0.103787266,0.49396625,0.86326444,-0.10229183,0.49369654,0.8635972,-0.10050124,0.49346823,0.86393785,-0.09992426,0.4936224,0.8639167,-0.09941599,0.49400035,0.86375934,-0.098680906,0.49485004,0.8633571,-0.098467425,0.4958532,0.8628058,-0.097129196,0.49721792,0.8621718,-0.096082985,0.4970997,0.8623572,-0.09393083,0.4971359,0.8625734,-0.0931961,0.49726084,0.8625811,-0.090742536,0.4974472,0.8627352,-0.08725615,0.4980192,0.86276495,-0.08447833,0.49875957,0.8626137,-0.08226985,0.49934882,0.8624862,-0.079852484,0.50088614,0.8618217,-0.07805971,0.5025095,0.8610406,-0.07615875,0.5049256,0.8597965,-0.074646994,0.5070177,0.85869724,-0.06932109,0.5091133,0.8579034,-0.06795168,0.509425,0.85782796,-0.064813346,0.51052606,0.8574161,-0.06213664,0.5121863,0.8566237,-0.059628315,0.51374376,0.855869,-0.057748295,0.5139492,0.8558746,-0.05537707,0.5142072,0.8558764,-0.05483996,0.51449955,0.85573524,-0.054223154,0.51505184,0.8554422,-0.054150544,0.51602167,0.8548622,-0.054840334,0.51670337,0.8544063,-0.055686146,0.5170622,0.8541345,-0.05627897,0.5174568,0.85385656,-0.056884408,0.51752824,0.85377324,-0.05718715,0.51799417,0.8534703,-0.05697345,0.51885486,0.8529617,-0.056848217,0.51965094,0.85248524,-0.05642994,0.52044064,0.8520312,-0.0564928,0.5215624,0.85134083,-0.05490837,0.52547306,0.8490366,-0.053498518,0.5252752,0.84924906,-0.051045902,0.52553904,0.8492367,-0.044720836,0.5274641,0.84839946,-0.044270013,0.5280562,0.8480547,-0.04233006,0.5310246,0.8462984,-0.040240657,0.5313357,0.84620506,-0.03728376,0.53177816,0.84606266,-0.036176693,0.53184175,0.8460707,-0.032973137,0.53171396,0.8462819,-0.0306348,0.53162086,0.8464283,-0.02685844,0.5314693,0.8466516,-0.024172729,0.53139204,0.846781,-0.021837102,0.5313228,0.84688795,-0.018856725,0.5312361,0.84701395,-0.018122608,0.53150535,0.84686106,-0.018111221,0.53235257,0.846329,-0.017131371,0.5358146,0.84416187,-0.015689138,0.536833,0.84354264,-0.016343853,0.53806907,0.84274226,-0.01746835,0.5388956,0.84219146,-0.019043768,0.53988314,0.84152454,-0.022130905,0.5428467,0.8395402,-0.022677226,0.54571563,0.83766353,-0.02373473,0.54732,0.8365868,-0.024486728,0.5492948,0.83526975,-0.023719773,0.55290806,0.83290464,-0.024719337,0.555089,0.8314236,-0.024848333,0.55713946,0.8300471,-0.0244913,0.5590522,0.82877064,-0.02464341,0.5617379,0.82694817,-0.025809254,0.5645049,0.82502615,-0.02521442,0.5654457,0.8244,-0.024937354,0.56593204,0.82407475,-0.02501713,0.56635,0.82378507,-0.026107201,0.56722695,0.82314765,-0.026303567,0.56862843,0.8221739,-0.025704911,0.56961226,0.8215115,-0.025744975,0.570024,0.8212246,-0.02751282,0.57122284,0.8203338,-0.030481772,0.5731596,0.8188767,-0.04360141,0.57810307,0.81479794,-0.048379783,0.5766008,0.8155924,-0.07550106,0.58418185,0.8081034,-0.08430763,0.583274,0.8078884,-0.1364914,0.53347534,0.83472997,-0.1461042,0.5090883,0.84822327,-0.17435266,0.4753483,0.8623486,-0.22409871,0.39234027,0.8921036,-0.17864597,0.44573396,0.8771584,-0.1779416,0.44651192,0.87690586,-0.15534568,0.45260182,0.87807703,-0.14814141,0.45384777,0.87867874,-0.13591228,0.45959437,0.87766784,-0.1331629,0.4711968,0.8719181,-0.1269538,0.48374334,0.8659533,-0.11656475,0.49013576,0.86381686,-0.11134685,0.4923435,0.8632496,-0.09836881,0.4967283,0.8623135,-0.09790897,0.49728224,0.8620465,-0.018289102,0.53490686,0.8447131,-0.019856593,0.54028976,0.84124476,-0.024862032,0.5560321,0.83078885,-0.07798979,0.5858351,0.806669,-0.10331725,0.5567353,0.82423985,-0.15908366,0.4858006,0.8594709,-0.18314488,0.4714628,0.8626591,-0.21162817,0.44842875,0.8684038,-0.2326119,0.4205858,0.87692606,-0.18618965,0.4391614,0.8789031,-0.13577212,0.46351048,0.87562776,-0.1328992,0.47445205,0.87019134,-0.10736755,0.49432412,0.8626215,-0.0982381,0.4971122,0.86210716,-0.07173862,0.508326,0.85817146,-0.057051264,0.52268237,0.8506164,-0.055921156,0.5253164,0.84906745,-0.026566045,0.56794894,0.82263494,-0.07442427,0.5823322,0.809537,-0.09089134,0.5703706,0.8163431,-0.12034284,0.5440292,0.83039135,-0.14455542,0.50674945,0.8498875,-0.272222,0.3652139,0.8902325,-0.25522107,0.36651063,0.8947246,-0.15587142,0.45257142,0.87799954,-0.1357789,0.4641605,0.87528235,-0.13271679,0.47668684,0.8689971,-0.10952946,0.49356094,0.8627867,-0.05720298,0.52348644,0.85011166,-0.043826114,0.5293858,0.84724844,-0.018623818,0.5339265,0.84532577,-0.045677762,0.57698995,0.81547296,-0.07247529,0.5802449,0.81121093,-0.09737285,0.5611145,0.8219909,-0.11848343,0.54504454,0.82999283,-0.09964827,0.55874485,0.8233313,-0.14426388,0.50532055,0.85078734,-0.1763155,0.47424352,0.86255777,-0.20963751,0.4498663,0.8681431,-0.24906987,0.40421963,0.880097,-0.27139848,0.3653686,0.89042044,-0.2189639,0.40275595,0.8887308,-0.14560969,0.4553658,0.87831646,-0.13252601,0.4790098,0.8677479,-0.10836385,0.49413374,0.862606,-0.10808883,0.49423894,0.86258024,-0.04334129,0.5305486,0.8465458,-0.021273812,0.54148537,0.840441,-0.12165606,0.5322978,0.8377702,-0.19120252,0.46371886,0.86510485,-0.24897404,0.40343148,0.88048565,-0.26790136,0.366019,0.8912121,-0.2058028,0.41311997,0.88711727,-0.13236463,0.48006123,0.8671913,-0.077284746,0.5074403,0.858214,-0.042684034,0.5309379,0.84633505,-0.06883665,0.5775912,0.8134187,-0.120485745,0.5335078,0.83716935,-0.13229723,0.51948494,0.8441758,-0.18349427,0.46899062,0.8639315,-0.23363599,0.41818053,0.8778037,-0.22160012,0.4340906,0.8731888,-0.25860786,0.38445503,0.88618076,-0.20446719,0.41779426,0.8852351,-0.14679791,0.4547739,0.87842536,-0.08233131,0.5059297,0.85863656,-0.0314621,0.5592325,0.82841367,-0.06593154,0.57652354,0.8144161,-0.14526533,0.50165075,0.8527863,-0.13303174,0.51676023,0.8457313,-0.12096335,0.5317104,0.8382433,-0.10907288,0.5464967,0.8303279,-0.18421479,0.46793017,0.8643531,-0.2519298,0.39088482,0.88529116,-0.22276165,0.39619344,0.89073455,-0.20333095,0.42057198,0.88418084,-0.08246741,0.5058775,0.8586542,-0.04222267,0.55947584,0.82777053,-0.1466252,0.499368,0.8538926,-0.13403665,0.51506615,0.8466056,-0.12162242,0.5305934,0.83885556,-0.13336655,0.5161957,0.84602326,-0.10939656,0.5459445,0.83064854,-0.21474276,0.4353264,0.8742863,-0.1960015,0.45231575,0.87005395,-0.17743948,0.46914244,0.865113,-0.25073078,0.39225748,0.88502437,-0.24529098,0.38115698,0.8913763,-0.20376845,0.42010015,0.8843044,-0.2198451,0.40180418,0.8889441,-0.082615934,0.50611234,0.85850155,-0.041812006,0.5588042,0.8282448,-0.10325122,0.5381801,0.8364815,-0.12472989,0.51890785,0.8456814,-0.08223451,0.557175,0.8263132,-0.24021532,0.3966507,0.88598245,-0.25403404,0.3813872,0.8888254,-0.22645889,0.4118053,0.882685,-0.21277834,0.42684686,0.8789352,-0.19918719,0.44177124,0.8747358,-0.18569879,0.45657444,0.8700895,-0.17232655,0.4712522,0.86499995,-0.22233321,0.39731988,0.8903398,-0.24507357,0.38172418,0.89119333,-0.19788471,0.42715603,0.8822581,-0.15595552,0.45818293,0.87506926,-0.0825804,0.5088841,0.8568649,-0.038942065,0.53322124,0.845079,-0.05680633,0.524906,0.84926254,-0.08326872,0.5205851,0.8497397,-0.07234063,0.54853386,0.83299303,-0.11480529,0.5100154,0.8524693,-0.04689979,0.54501444,0.83711386,-0.052072793,0.5310756,0.84572285,-0.21031046,0.42933464,0.8783173,-0.19734882,0.4436225,0.87421536,-0.18448272,0.45779845,0.86970496,-0.2389675,0.3979138,0.88575345,-0.22583799,0.41243234,0.88255125,-0.25340757,0.3820233,0.888731,-0.22459663,0.41368583,0.8822813,-0.18205325,0.460244,0.8689258,-0.19612424,0.4448555,0.8738643,-0.16811258,0.47549543,0.8635058,-0.22152655,0.399071,0.88975745,-0.24466519,0.38260624,0.8909273,-0.15416485,0.4661767,0.87115586,-0.08662208,0.506906,0.857638,-0.10147194,0.5121937,0.85285467,-0.12399726,0.5057948,0.85369563,-0.07906858,0.51856416,0.851375,-0.22058403,0.40068004,0.88926834,-0.24418905,0.38341704,0.89070934,-0.15400347,0.46640205,0.87106377,-0.05712744,0.5242813,0.8496267,-0.08657675,0.50730807,0.85740477,-0.07923421,0.5182504,0.8515506,-0.10164244,0.5118785,0.8530236,-0.12408481,0.5056365,0.8537767,-0.079317056,0.5180935,0.8516384,-0.24381603,0.38398373,0.89056736,-0.20320104,0.42441046,0.8823747,-0.18670973,0.4467551,0.8749568,-0.1704042,0.46882468,0.86669827,-0.18370685,0.4501003,0.8738773,-0.16891992,0.4704767,0.8660934,-0.20168379,0.42610407,0.88190645,-0.16595635,0.47377577,0.86486703,-0.1827542,0.45126078,0.8734785,-0.16548641,0.47434816,0.86464334,-0.20120196,0.42669204,0.88173217,-0.16454703,0.47549227,0.86419404,-0.1612982,0.47594348,0.8645581,-0.27240652,0.36450458,0.8904668,-0.27475363,0.35603485,0.89316833,-0.27405494,0.35520735,0.8937122,-0.27413428,0.35671887,0.89308566,-0.27359816,0.3584984,0.89253736,-0.27278316,0.3606876,0.8919046,-0.2717947,0.36372674,0.8909716,-0.26979986,0.36372918,0.89157677,-0.26622918,0.36373305,0.8926479,-0.2626542,0.36373782,0.8937044,-0.25907496,0.3637426,0.89474654,-0.2554917,0.3637466,0.8957747,-0.25190353,0.36375138,0.8967885,-0.24831286,0.36375615,0.89778745,-0.24471676,0.36376014,0.8987726,-0.24111746,0.36376482,0.899743,-0.23751433,0.3637696,0.900699,-0.23390667,0.36377358,0.90164095,-0.230296,0.36377835,0.90256804,-0.22668165,0.36378312,0.90348065,-0.22306375,0.36378703,0.90437907,-0.21944144,0.3637919,0.9052629,-0.21218805,0.36380056,0.906987,-0.20979328,0.363803,0.90754294,-0.20974334,0.365962,0.906686,-0.20970418,0.36767116,0.90600336,-0.20964882,0.36997083,0.90507954,-0.20959228,0.37225538,0.90415543,-0.20953338,0.37453777,0.90322596,-0.20947793,0.37667978,0.90234774,-0.20942055,0.37881732,0.9014658,-0.20936681,0.3808001,0.90064245,-0.2093156,0.3826189,0.8998832,-0.20942141,0.38366264,0.89941406,-0.20756114,0.39073503,0.8967968,-0.20530358,0.3921693,0.89669037,-0.20269911,0.3938252,0.8965572,-0.19973105,0.39539835,0.89653087,-0.19677193,0.3958343,0.8969928,-0.19438706,0.39678726,0.8970917,-0.19206615,0.39771563,0.8971805,-0.1910814,0.39823008,0.89716256,-0.19081187,0.3999726,0.8964445,-0.19063495,0.4019142,0.8956133,-0.17910615,0.43829903,0.8808036,-0.1762408,0.43829903,0.8813814,-0.1733735,0.4382999,0.8819494,-0.15613429,0.4382999,0.885164,-0.15325488,0.4382999,0.8856671,-0.1503738,0.43830064,0.88616043,-0.13883561,0.43830064,0.88804126,-0.1356819,0.43830064,0.8885286,-0.13554853,0.44008756,0.8876652,-0.13535815,0.44265163,0.88641846,-0.13509828,0.44616193,0.88469654,-0.13483676,0.44967976,0.88295364,-0.13460489,0.4527667,0.8814102,-0.13437168,0.4558445,0.87985796,-0.13392705,0.46159738,0.87692153,-0.21581644,0.36379656,0.9061321,-0.2099883,0.38573384,0.8983954,-0.20071538,0.39508593,0.89644885,-0.1904356,0.40408868,0.8946768,-0.18196961,0.43829903,0.8802165,-0.1590113,0.4382999,0.88465166,-0.14172205,0.43830064,0.88758516,-0.13417469,0.4584314,0.878543,-0.19023511,0.40626162,0.8937349,-0.18483038,0.43829903,0.8796202,-0.16188738,0.4382999,0.88412994,-0.14460701,0.43830064,0.8871197,-0.18712734,0.43829903,0.8791344,-0.16476174,0.4382999,0.8835988,-0.14749117,0.43830064,0.8866448,-0.22904466,0.36571446,0.90210396,-0.21005552,0.38676283,0.8979372,-0.16763437,0.4382999,0.88305825,-0.19003363,0.40843153,0.8927883,-0.17050521,0.4382999,0.88250846,-0.18983105,0.41059914,0.8918366,-0.21091482,0.40100023,0.8914672,-0.18962735,0.41276518,0.8908796,-0.21126397,0.39987567,0.8918896,-0.20913965,0.388868,0.8972415,-0.16139382,0.43919352,0.8837766,-0.2153385,0.3941894,0.893445,-0.18942264,0.41492823,0.8899178,-0.1590204,0.44004548,0.88378304,-0.18921678,0.41708958,0.8889507,-0.15931517,0.43990773,0.88379854,-0.18900993,0.41924784,0.8879789,-0.20974463,0.38784552,0.8975428,-0.18880202,0.4214037,0.8870021,-0.19894375,0.40519997,0.8923196,-0.18859303,0.42355722,0.8860203,-0.19883884,0.40628582,0.89184916,-0.18731661,0.43642986,0.8800236,-0.19913988,0.4057788,0.8920128,-0.18753202,0.43429014,0.8810356,-0.2018905,0.4050683,0.89171743,-0.18838291,0.4257091,0.88503313,-0.19903468,0.40686467,0.89154154,-0.18774632,0.4321487,0.8820424,-0.18795957,0.43000484,0.8830442,-0.1881718,0.4278578,0.88404137,0.19364564,-0.0656124,0.97887504,0.19258797,-0.06829929,0.97889996,0.19653729,-0.07202955,0.977847,0.19702147,-0.07324334,0.9776594,0.20163614,-0.0773155,0.9764042,0.20346457,-0.079604276,0.9758408,0.20348932,-0.081530854,0.97567666,0.2038285,-0.08202855,0.97556406,0.20414455,-0.082903415,0.97542405,0.2053464,-0.08482091,0.97500676,0.20657012,-0.08636281,0.97461283,0.20717269,-0.08684332,0.97444224,0.20743138,-0.08723047,0.97435266,0.20845419,-0.08632374,0.9742151,0.21001253,-0.084333435,0.97405475,0.2106633,-0.0833059,0.97400266,0.21242838,-0.08307829,0.97363865,0.21309991,-0.082358114,0.973553,0.21358481,-0.08120304,0.9735438,0.21377571,-0.080531955,0.97355765,0.21577111,-0.07998156,0.9731628,0.21816942,-0.079001196,0.972708,0.22225724,-0.07750412,0.9719027,0.22375648,-0.079359725,0.9714088,0.22503474,-0.08053362,0.9710168,0.22544849,-0.08080382,0.97089845,0.22570716,-0.080233,0.9708857,0.22680159,-0.08055239,0.97060406,0.22719875,-0.08117073,0.97045976,0.2279135,-0.08204043,0.97021896,0.22920829,-0.08307318,0.969826,0.2305154,-0.08418911,0.96941984,0.23117518,-0.08432832,0.9692507,0.23225994,-0.08376456,0.96904016,0.23351493,-0.08292551,0.9688107,0.23535118,-0.082312256,0.96841854,0.23579802,-0.081741504,0.9683582,0.23605925,-0.08051841,0.968397,0.2362227,-0.07921189,0.968465,0.23864809,-0.077743724,0.96798915,0.23919398,-0.07819237,0.96781826,0.24018359,-0.07819237,0.96757317,0.24082452,-0.077784486,0.9674467,0.24199459,-0.077023245,0.9672156,0.24346888,-0.07671909,0.9668697,0.24505445,-0.07598999,0.9665267,0.24728705,-0.074968554,0.9660377,0.24801636,-0.0761923,0.965755,0.24867144,-0.07705046,0.9655184,0.24877968,-0.07758066,0.9654481,0.24808836,-0.078600116,0.96554345,0.24731126,-0.079947576,0.96563214,0.24802746,-0.08324306,0.9651699,0.24798727,-0.084221415,0.96509534,0.24848713,-0.08461875,0.964932,0.24883176,-0.084807254,0.96482664,0.24938095,-0.084576346,0.9647051,0.25045136,-0.08464761,0.9644216,0.25172555,-0.08515718,0.96404487,0.2529705,-0.08509945,0.963724,0.2541846,-0.08447277,0.9634597,0.25646967,-0.08203532,0.9630646,0.2625768,-0.075111315,0.96198326,0.2647375,-0.07402014,0.96147543,0.26621088,-0.07274697,0.96116585,0.26825622,-0.07029553,0.9607795,0.2708609,-0.06950484,0.96010596,0.27285242,-0.068612196,0.9596061,0.27487534,-0.065685555,0.9592335,0.2775908,-0.060424257,0.9587973,0.27840072,-0.055724513,0.9588471,0.27889192,-0.052863665,0.95886636,0.2787641,-0.043004762,0.95939624,0.2800402,-0.03678688,0.9592832,0.28273824,-0.034216445,0.95858663,0.28454992,-0.032110937,0.95812327,0.2859383,-0.02964758,0.9577893,0.2886156,-0.024019836,0.95714366,0.28978094,-0.022206908,0.9568354,0.29029977,-0.021393975,0.95669657,0.29411665,-0.018577147,0.955589,0.29697654,-0.017445676,0.9547254,0.30139175,-0.013525952,0.9534044,0.30489737,-0.009582178,0.952337,0.3044305,-0.004843975,0.9525222,0.30524886,-0.00091449806,0.9522722,0.30714968,0.0040863203,0.95165247,0.3077615,0.009377536,0.9514173,0.30911627,0.024818093,0.95070034,0.3098653,0.026785225,0.9504031,0.31008634,0.030004365,0.95023483,0.31225002,0.04213619,0.949065,0.31437454,0.046329197,0.9481678,0.31674132,0.051018447,0.94713885,0.31762207,0.05385244,0.9466869,0.31879517,0.05763466,0.9460697,0.31854263,0.060672503,0.9459648,0.31759816,0.061226275,0.9462466,0.31667387,0.06286188,0.9464492,0.31624782,0.06319108,0.94656974,0.31367984,0.06245618,0.9474725,0.31235212,0.06179192,0.9479546,0.31110588,0.061045058,0.9484127,0.31026745,0.061938267,0.9486294,0.30961755,0.06209901,0.9488312,0.307561,0.061950166,0.94950956,0.3068822,0.062065814,0.94972163,0.30644017,0.061986692,0.94986945,0.3052075,0.06251495,0.9502317,0.30071804,0.06386385,0.9515724,0.2999438,0.064311154,0.95178664,0.29905397,0.0642644,0.95206976,0.287887,0.061680555,0.955676,0.28636885,0.061661754,0.9561332,0.2853332,0.06114203,0.95647615,0.28467265,0.06040537,0.95671976,0.28424373,0.058775462,0.9569488,0.28350803,0.05597545,0.9573348,0.2831937,0.055213924,0.957472,0.28326657,0.05409575,0.95751435,0.28306314,0.05221764,0.95767874,0.28297675,0.050532464,0.95779467,0.28204903,0.04712429,0.95824194,0.28071883,0.0443651,0.9587642,0.2796116,0.041993976,0.95919436,0.27849415,0.039609753,0.95962083,0.2784825,0.03947694,0.95962965,0.27839202,0.03847122,0.95969677,0.27737963,0.037826527,0.9600155,0.27679336,0.036762014,0.960226,0.27663302,0.03527763,0.96032786,0.27695632,0.033470295,0.9602994,0.27779466,0.030088726,0.96016914,0.2775179,0.029912377,0.96025467,0.2770318,0.029513678,0.9604073,0.27651498,0.029251412,0.9605643,0.27509135,0.030713094,0.9609274,0.2735135,0.03170038,0.9613457,0.27114785,0.03341656,0.96195745,0.268769,0.034034073,0.9626032,0.2656952,0.03414487,0.9634522,0.2643733,0.033935305,0.9638232,0.26341948,0.03458092,0.96406144,0.2620847,0.03532612,0.9643981,0.26135138,0.035520308,0.96458995,0.26033887,0.03494036,0.96488494,0.25963515,0.034914743,0.96507543,0.2587678,0.035139672,0.9653002,0.2570154,0.035114057,0.9657692,0.2568433,0.036108825,0.9657783,0.25654188,0.036303006,0.9658511,0.25465238,0.03621104,0.9663544,0.25406164,0.03703458,0.96647877,0.2538088,0.036942612,0.96654874,0.25306165,0.037203144,0.96673465,0.2515277,0.03837247,0.9670892,0.24993417,0.037598286,0.9675325,0.24660394,0.037696324,0.9683829,0.24233186,0.037670713,0.9694618,0.23790286,0.03764522,0.9705592,0.2338476,0.037681792,0.97154284,0.22977665,0.03771753,0.97251225,0.22970417,0.03649886,0.97257584,0.22838348,0.03351116,0.9729943,0.2277669,0.03121139,0.97321534,0.22762273,0.028760714,0.97332454,0.22800682,0.026788563,0.973291,0.22877268,0.02278186,0.9732133,0.22812639,0.022325167,0.9733755,0.2285737,0.021787545,0.9732827,0.2295563,0.021658113,0.9730544,0.23122205,0.022124944,0.9726494,0.23377989,0.022942036,0.9720188,0.23712845,0.024122834,0.97117877,0.24591431,0.023080878,0.96901673,0.24700294,0.019561192,0.9688173,0.24753715,0.019026995,0.9686916,0.2492476,0.014162381,0.9683362,0.2485098,0.013189247,0.9685396,0.24768376,0.011760158,0.96876955,0.24581978,0.0096186865,0.96926785,0.24339274,0.009364782,0.9698826,0.2430216,0.008988096,0.96997917,0.24234344,0.0074652494,0.9701618,0.24106385,0.0061750775,0.97048956,0.24048154,0.00495642,0.9706411,0.23996529,0.0033304193,0.9707758,0.24006902,0.0013141191,0.9707549,0.23981245,-0.001585169,0.970818,0.23954977,-0.0035486585,0.9708776,0.2401928,-0.0042338683,0.97071594,0.2436598,-0.0051030135,0.9698474,0.2444283,-0.0063165445,0.96964675,0.24541457,-0.007458542,0.9693895,0.24942496,-0.013941715,0.9682938,0.248834,-0.016965097,0.96839756,0.24904975,-0.019265696,0.96829903,0.24940045,-0.026614904,0.9680346,0.24864323,-0.02780584,0.968196,0.24863665,-0.02874114,0.96817034,0.24785061,-0.033507794,0.9682186,0.24665904,-0.034088727,0.9685026,0.24602789,-0.034925077,0.96863335,0.24515958,-0.038036987,0.9687363,0.2444962,-0.03869442,0.96887785,0.2444882,-0.039530627,0.96884614,0.24509704,-0.041077062,0.968628,0.2439018,-0.042189036,0.9688818,0.24317619,-0.043042157,0.96902674,0.23936565,-0.042396754,0.97000337,0.23981348,-0.04143117,0.96993446,0.23966569,-0.040658038,0.9700037,0.23904851,-0.039847475,0.9701897,0.23809873,-0.037755974,0.97050685,0.23724572,-0.037314855,0.97073275,0.22331986,-0.03797397,0.9740052,0.22250096,-0.036003362,0.9742675,0.22131293,-0.033710573,0.97462,0.21996185,-0.032622077,0.97496283,0.2185158,-0.03192697,0.975311,0.21786945,-0.031879313,0.97545713,0.21578673,-0.033155248,0.97587746,0.21516098,-0.033659462,0.97599834,0.21515808,-0.03473088,0.97596145,0.21534345,-0.035729118,0.97588456,0.2156607,-0.036212794,0.97579664,0.21587045,-0.037851393,0.9756881,0.21548684,-0.039183162,0.9757203,0.2153478,-0.0406547,0.97569084,0.20770194,-0.041576006,0.9773082,0.20688964,-0.040913526,0.9775084,0.20590058,-0.0410293,0.9777124,0.20306708,-0.041783724,0.9782729,0.20203261,-0.04125751,0.97850937,0.20100331,-0.04087434,0.9787374,0.20052686,-0.041194506,0.97882175,0.20047824,-0.04182458,0.978805,0.20076607,-0.04660079,0.97853017,0.20011088,-0.04832035,0.97858095,0.19976917,-0.04948994,0.9785924,0.20211491,-0.050359797,0.97806615,0.20271437,-0.051229615,0.977897,0.20353912,-0.052041538,0.9776827,0.20359054,-0.05253177,0.9776458,0.20263425,-0.053435538,0.9777955,0.20229873,-0.054548636,0.9778035,0.20273894,-0.05541993,0.97766334,0.20390484,-0.05632867,0.97736883,0.20635107,-0.058452334,0.9767306,0.20554388,-0.05965865,0.9768278,0.20522326,-0.060676042,0.9768325,0.20466888,-0.0615964,0.9768912,0.20476964,-0.062443536,0.97681636,0.20490795,-0.064474575,0.97665536,0.20384061,-0.06436228,0.9768861,0.20293544,-0.064437106,0.9770697,0.20212553,-0.0642194,0.9772519,0.19961919,-0.06148408,0.9779427,0.19906509,-0.06140246,0.9780608,0.19535045,-0.06350668,0.9786752,0.19442044,-0.06437251,0.9788038,0.21950744,-0.077932335,0.97249323,0.23744825,-0.07730873,0.968319,0.24657579,-0.07505022,0.9662131,0.2479095,-0.08161913,0.9653389,0.26699418,-0.07128843,0.9610578,0.29189172,-0.019894404,0.95624447,0.30708545,0.0149548,0.9515645,0.30733863,0.019512683,0.95140016,0.30860174,0.061933983,0.94917285,0.29185086,0.062036067,0.9544499,0.28314292,0.049402937,0.9578045,0.22909041,0.023851115,0.9731129,0.24842224,0.017529856,0.9684932,0.24739389,0.010894397,0.9688537,0.24806908,-0.008177829,0.96870786,0.25003704,-0.010792209,0.9681761,0.24897164,-0.029867304,0.9680501,0.2458166,-0.036238406,0.9686387,0.24511626,-0.040142044,0.96866226,0.23675987,-0.03816981,0.9708181,0.21592674,-0.036853235,0.9757138,0.20882663,-0.042095423,0.97704625,0.20149525,-0.0498151,0.9782219,0.2208566,-0.077250965,0.97224206,0.22654034,-0.080273755,0.97068816,0.27862978,-0.03976743,0.9595749,0.27904636,-0.03800125,0.95952547,0.3100232,0.035131093,0.95007974,0.31165034,0.061142866,0.9482276,0.29675645,0.06308984,0.95286685,0.27776435,0.03134007,0.9601379,0.22866379,0.025384635,0.97317445,0.24309486,-0.004714515,0.9699911,0.24925646,-0.021462148,0.9681997,0.24828398,-0.032981418,0.9681257,0.22463165,-0.04036514,0.9736073,0.20093004,-0.045283012,0.9785584,0.20561098,-0.057271402,0.97695655,0.20553187,-0.06323281,0.9766055,0.2598203,-0.07778116,0.96251935,0.29553613,0.06276326,0.95326763,0.24670032,0.010252729,0.96903753,0.24955319,-0.024662303,0.968047,0.23527068,-0.039758854,0.9711163,0.20543939,-0.06393877,0.97657895,0.2367869,-0.07745825,0.96846896,0.29889348,-0.0009408433,0.95428604,0.23933063,0.024759341,0.9706224,0.23978418,-0.043016672,0.9698727,0.20644112,-0.057887405,0.9767452,0.2217038,-0.07722209,0.9720515,0.26927572,-0.05878495,0.96126735,0.29334185,-0.009248168,0.95596296,0.30929163,0.040287632,0.9501135,0.25266853,0.027318016,0.9671672,0.23264687,-0.041795637,0.9716628,0.22745264,-0.041337553,0.97291136,0.23641165,-0.0776673,0.96854395,0.26948866,-0.057902638,0.9612612,0.30340952,0.0363017,0.9521685,0.29549053,0.01153606,0.9552761,0.28736427,-0.013236657,0.9577299,0.29454353,0.045572422,0.9545508,0.24158928,-0.043455902,0.96940506,0.26323003,-0.056494582,0.9630775,0.27858216,-0.0039586164,0.9604043,0.24297088,0.024360588,0.96972764,0.24932446,0.014819394,0.9683066,0.23081985,-0.041959167,0.9720914,0.26287565,-0.056535408,0.9631719,0.27819797,-0.0042461464,0.96051437,0.24491346,0.023912491,0.96925,0.24909733,-0.009052077,0.9684362,0.21460398,-0.060605362,0.974819,0.26217613,-0.022799468,0.9647507,0.26970497,0.003358314,0.9629372,0.25446108,-0.048941527,0.9658438,0.24993016,-0.010008212,0.9682122,0.22772849,-0.062004626,0.97174853,0.2693149,0.0031615007,0.96304697,0.26944494,0.0032270653,0.9630104,0.2619147,-0.022930682,0.9648186,0.25432977,-0.049007013,0.9658751,0.22852468,-0.061797958,0.9715747,0.2491642,0.015732788,0.9683335,0.22949146,-0.06081633,0.9714088,0.23301975,-0.05917373,0.97067,0.26335624,0.009231392,0.96465445,0.26315632,0.0022953292,0.9647505,0.2474842,-0.054027747,0.96738446,0.24814215,-0.04987213,0.96743906,0.24783617,-0.05247213,0.9673799,0.24805988,-0.050847452,0.9674094,0.50348353,-0.14297475,0.85209304,0.48920667,-0.074973665,0.8689395,0.48860866,-0.07141756,0.8695752,0.48707682,-0.06820403,0.87069184,0.48694757,-0.06686242,0.87086827,0.48710635,-0.06427044,0.87097454,0.48722363,-0.060624994,0.8711703,0.48724702,-0.057237364,0.87138635,0.48752445,-0.054752775,0.8713909,0.48753837,-0.053268764,0.8714751,0.48649895,-0.051556412,0.87215865,0.48519647,-0.04973509,0.8729896,0.48446378,-0.04812293,0.87348664,0.48448223,-0.04745886,0.8735128,0.48308533,-0.04679322,0.874322,0.48267892,-0.0459743,0.8745898,0.48267055,-0.044588245,0.8746662,0.4821947,-0.04268962,0.87502337,0.48425528,-0.040354896,0.87399554,0.48606423,-0.038966965,0.8730539,0.4864591,-0.03830275,0.87286335,0.4867308,-0.03719906,0.8727596,0.48666275,-0.03463045,0.8729033,0.48999658,-0.026483702,0.8713219,0.49076355,-0.026306499,0.8708956,0.49177545,-0.025619846,0.87034506,0.4928483,-0.024602598,0.86976737,0.49344724,-0.024220884,0.8694384,0.49349967,-0.023677325,0.8694237,0.49329197,-0.017057111,0.86969656,0.4937315,-0.015482447,0.86947656,0.49399355,-0.01366744,0.8693582,0.4940304,-0.0120654,0.86936086,0.49464625,-0.009341863,0.8690442,0.49443096,-0.007709113,0.8691827,0.49522078,-0.0019822544,0.8687649,0.49542582,-0.0010508734,0.8686496,0.49572587,0.0017163308,0.86847734,0.49621046,0.0025693905,0.86819845,0.49663606,0.0029034137,0.86795396,0.49719054,0.004601061,0.8676292,0.49825427,0.007311831,0.8670002,0.4989903,0.008709396,0.86656386,0.4988137,0.011761947,0.8666294,0.49908522,0.014297908,0.86643493,0.50065887,0.015070777,0.8655135,0.50268954,0.016989682,0.8643,0.50473744,0.020685941,0.863025,0.5070864,0.021619737,0.86162406,0.50709075,0.021624029,0.8616214,0.51395696,0.0293664,0.85731316,0.51712054,0.03353928,0.8552552,0.5184838,0.035677087,0.8543428,0.518519,0.03644263,0.8542892,0.5187675,0.037451047,0.8540947,0.51819,0.038237024,0.8544104,0.5175057,0.038950678,0.8547928,0.5172679,0.039609753,0.8549064,0.51668257,0.039937556,0.85524505,0.51529473,0.040402573,0.85606015,0.5146518,0.041341756,0.85640204,0.5140157,0.04193264,0.85675526,0.51102734,0.04672252,0.8582937,0.51210964,0.0496694,0.85748273,0.5121501,0.05048222,0.8574111,0.51196975,0.05117679,0.85747766,0.5116764,0.051770855,0.8576171,0.51161927,0.05726108,0.8573021,0.512183,0.058298253,0.85689545,0.5127289,0.059461977,0.85648894,0.5125331,0.060415603,0.8565394,0.45390278,0.09059515,0.8864338,0.453235,0.090628274,0.8867719,0.4524524,0.09036092,0.88719887,0.44946122,0.08824058,0.8889309,0.44860893,0.08840611,0.8893449,0.44650364,0.08863706,0.8903808,0.4337144,0.09156611,0.8963858,0.4320336,0.09208711,0.8971437,0.42905572,0.09258102,0.89852095,0.42713472,0.09160422,0.8995358,0.42542505,0.08824569,0.900681,0.42205864,0.08658944,0.9024238,0.4206809,0.08685938,0.903041,0.417356,0.085939914,0.9046703,0.41211367,0.08732895,0.90693766,0.41026622,0.08705379,0.90780133,0.402891,0.083962254,0.91138864,0.40026587,0.083169915,0.9126171,0.39778447,0.08196051,0.9138107,0.39444193,0.081303954,0.91531706,0.39291686,0.081990324,0.9159115,0.3912517,0.08258055,0.91657114,0.3892785,0.08270113,0.9174,0.38723406,0.082353756,0.91829604,0.38553238,0.08101095,0.9191311,0.3848555,0.08005527,0.9194984,0.38341525,0.07751176,0.9203177,0.38174307,0.07337154,0.9213517,0.38106117,0.07253775,0.9216999,0.38086858,0.07245702,0.92178583,0.38043517,0.07210603,0.9219923,0.3720927,0.074176386,0.9252269,0.3685049,0.07465487,0.92662334,0.36610466,0.07401839,0.92762524,0.36303708,0.07517673,0.92873704,0.3617046,0.07538059,0.9292403,0.3593836,0.07553869,0.93012756,0.35658666,0.07694756,0.9310881,0.35392338,0.077542305,0.9320544,0.34888816,0.07918198,0.93381333,0.34730172,0.08169805,0.9341878,0.34450254,0.0841933,0.93500245,0.33845493,0.08769993,0.93688685,0.3375095,0.088708304,0.93713295,0.33552095,0.08926601,0.93779385,0.33248708,0.08937216,0.93886364,0.32960537,0.088385805,0.93997246,0.32550943,0.08526743,0.94168633,0.3217846,0.078866825,0.9435225,0.3196739,0.07641651,0.9444412,0.31794542,0.07578344,0.94507545,0.3175426,0.07424022,0.9453333,0.31875592,0.06896068,0.9453249,0.3182473,0.0641615,0.945834,0.22330557,-0.08185699,0.9713053,0.22129539,-0.08257553,0.9717045,0.21861355,-0.08551041,0.97205764,0.21686518,-0.08709639,0.97230846,0.21565022,-0.08779763,0.9725156,0.21476842,-0.0883986,0.97265625,0.21479191,-0.08873131,0.9726208,0.21536466,-0.08911507,0.972459,0.2151008,-0.09964536,0.9714949,0.21342637,-0.09980146,0.9718482,0.21120091,-0.10012705,0.97230077,0.21049035,-0.100339,0.972433,0.21092634,-0.10118357,0.972251,0.21215881,-0.10271122,0.97182256,0.21376301,-0.104291156,0.9713026,0.21445602,-0.10453693,0.97112346,0.21549885,-0.10460142,0.9708856,0.21833006,-0.1038488,0.9703337,0.22024155,-0.102405995,0.970055,0.22384125,-0.10168368,0.9693067,0.22492658,-0.10218223,0.969003,0.22689497,-0.10203305,0.96855974,0.22888316,-0.10247727,0.96804494,0.22963153,-0.102156736,0.9679015,0.23005447,-0.1021297,0.9678039,0.23473983,-0.10212792,0.9666784,0.23669125,-0.10201431,0.9662144,0.24257158,-0.10218733,0.96473664,0.24386398,-0.10237552,0.9643908,0.24735281,-0.102665454,0.963471,0.25171193,-0.102599286,0.96234846,0.25325254,-0.102446675,0.96196043,0.25895804,-0.10235003,0.9604506,0.26458266,-0.10225172,0.9589268,0.269635,-0.102165274,0.95752764,0.27519837,-0.10218389,0.95594156,0.27945107,-0.10219575,0.9547058,0.28309473,-0.103935234,0.9534437,0.28386322,-0.10496751,0.95310205,0.28422955,-0.10542345,0.95294255,0.28472078,-0.10651661,0.95267427,0.2856536,-0.107379235,0.9522981,0.2859526,-0.10871782,0.9520565,0.28561595,-0.11053227,0.9519486,0.2856851,-0.11271213,0.9516722,0.2861589,-0.11525724,0.9512249,0.28723207,-0.11792838,0.9505738,0.28958744,-0.12294523,0.9492226,0.28929952,-0.12458926,0.9490961,0.2897772,-0.12632756,0.9487205,0.2910162,-0.12815674,0.9480957,0.2919357,-0.12912518,0.94768155,0.2924615,-0.12985699,0.94741935,0.29383832,-0.13266017,0.9466046,0.29640257,-0.1371323,0.94516677,0.2983175,-0.14048447,0.94407135,0.2990179,-0.14088446,0.9437902,0.3000743,-0.14074095,0.9434762,0.30231836,-0.14040682,0.94280934,0.30452988,-0.14034273,0.94210696,0.30607277,-0.14103292,0.94150364,0.30670857,-0.14091478,0.9413144,0.3091377,-0.13958493,0.94071776,0.3115085,-0.13917814,0.93999565,0.31398952,-0.13862967,0.939251,0.31677958,-0.13806757,0.93839645,0.3207394,-0.13914108,0.9368917,0.32149038,-0.13919845,0.9366257,0.32472914,-0.13919845,0.93550783,0.3279904,-0.13859591,0.9344589,0.3286703,-0.13409941,0.934876,0.32873878,-0.13320921,0.9349792,0.32959142,-0.13151811,0.93491846,0.330644,-0.13004458,0.9347528,0.33082804,-0.12863506,0.9348828,0.3374482,-0.12163253,0.9334529,0.33944654,-0.12146167,0.9327503,0.34260172,-0.12093888,0.931664,0.3492468,-0.120745994,0.92921853,0.34810424,-0.123978674,0.9292216,0.34804028,-0.12503564,0.9291039,0.34835863,-0.12610263,0.92884034,0.3491337,-0.12667924,0.9284708,0.3686437,-0.13228513,0.92011,0.36755425,-0.13684689,0.9198787,0.36766616,-0.14110716,0.9191901,0.3680434,-0.15477102,0.916837,0.36709505,-0.15933776,0.91643476,0.36651883,-0.16450974,0.9157513,0.3670783,-0.1666696,0.91513646,0.36840338,-0.16892962,0.91418916,0.37326497,-0.18046223,0.9100036,0.37286678,-0.1814344,0.90997356,0.37277308,-0.18312037,0.9096742,0.37244496,-0.18710683,0.9089972,0.37116748,-0.18788692,0.9093587,0.3706834,-0.1889633,0.90933305,0.37114766,-0.19102655,0.9087124,0.3711594,-0.19289832,0.90831214,0.37158912,-0.19361237,0.9079845,0.3719013,-0.19413407,0.90774524,0.37246788,-0.19421102,0.90749645,0.37375388,-0.19354044,0.90711087,0.37532207,-0.19229448,0.90672827,0.37820947,-0.19183284,0.9056256,0.3805247,-0.19218417,0.90458065,0.38463956,-0.1923146,0.9028109,0.38592446,-0.19209045,0.90231013,0.38988534,-0.19040576,0.9009634,0.39239323,-0.19044262,0.89986616,0.394496,-0.1909395,0.89884096,0.39664376,-0.19104329,0.89787316,0.397739,-0.19052127,0.8974995,0.3978888,-0.18984024,0.89757735,0.39891186,-0.18861175,0.89738226,0.39946944,-0.18873736,0.8971078,0.40063742,-0.18894984,0.8965421,0.4011252,-0.1900494,0.8960914,0.40136397,-0.19125403,0.8957281,0.40215072,-0.19132271,0.8953605,0.4047249,-0.19627714,0.8931254,0.40398458,-0.19716613,0.8932648,0.4045861,-0.1979498,0.8928191,0.40592358,-0.19847266,0.8920957,0.4067455,-0.19831564,0.8917561,0.41014966,-0.19659297,0.8905776,0.41138905,-0.19630882,0.8900685,0.41251582,-0.19593114,0.8896301,0.41566157,-0.19526255,0.88831186,0.41737375,-0.19497001,0.887573,0.41836485,-0.19444676,0.88722104,0.41946456,-0.1948663,0.8866097,0.41890916,-0.19638234,0.88653773,0.4186504,-0.19774261,0.8863576,0.4190188,-0.2002832,0.8856127,0.41935816,-0.20147201,0.8851823,0.42026976,-0.20233506,0.88455296,0.42094883,-0.20278403,0.8841271,0.42166844,-0.20370018,0.88357335,0.423331,-0.20354168,0.8828146,0.42684618,-0.2048397,0.8808195,0.42789274,-0.20544036,0.8801716,0.42936435,-0.20603578,0.8793154,0.43042392,-0.20625928,0.8787448,0.4341083,-0.20671453,0.8768233,0.43545675,-0.20702139,0.87608194,0.43796462,-0.20743492,0.874733,0.4399922,-0.20750162,0.873699,0.44144765,-0.20731819,0.8730081,0.44249463,-0.20694803,0.8725658,0.4431498,-0.20653443,0.8723312,0.44346872,-0.20618416,0.872252,0.44400424,-0.20491649,0.87227833,0.44769874,-0.2011648,0.8712626,0.44804382,-0.20421414,0.8703754,0.45059398,-0.2069647,0.868407,0.45132768,-0.20927197,0.86747247,0.45183375,-0.21124482,0.86673063,0.45239097,-0.21178626,0.8663077,0.4533884,-0.21246415,0.86561996,0.45506287,-0.21270399,0.86468196,0.4596118,-0.21419261,0.86190397,0.46202618,-0.21532464,0.8603296,0.46374828,-0.21613352,0.8591995,0.4652418,-0.21854077,0.857782,0.46557546,-0.22056451,0.85708266,0.46599498,-0.22216344,0.8564415,0.4669262,-0.22246923,0.85585475,0.46777168,-0.22259219,0.8553609,0.46904022,-0.22464389,0.854129,0.47005486,-0.2269817,0.85295236,0.47080776,-0.22859979,0.85210454,0.470935,-0.23017085,0.85161126,0.47188386,-0.23121896,0.85080165,0.47327733,-0.231665,0.8499058,0.4746089,-0.23171973,0.84914804,0.47543156,-0.23125213,0.8488152,0.47742325,-0.23043789,0.8479183,0.4790051,-0.22950572,0.8472787,0.48125213,-0.23128867,0.84551877,0.48122984,-0.23199166,0.84533876,0.4821962,-0.23266137,0.8446037,0.4830022,-0.23239447,0.84421664,0.48338974,-0.23162521,0.84420615,0.48345327,-0.23123392,0.8442771,0.48385298,-0.22779825,0.8449818,0.4841943,-0.22481662,0.84558463,0.48450983,-0.22200885,0.8461456,0.48489124,-0.21858405,0.8468185,0.48521984,-0.21559761,0.8473956,0.4854855,-0.2131353,0.84786624,0.4857594,-0.21056512,0.8483514,0.48506978,-0.21071172,0.8487095,0.48415354,-0.21129656,0.84908724,0.48218524,-0.21136647,0.85018915,0.48137307,-0.2118063,0.8505399,0.4810619,-0.2124659,0.8505514,0.4811214,-0.21333015,0.8503013,0.47980338,-0.21526806,0.8505577,0.4786077,-0.21481693,0.85134506,0.47640258,-0.21422766,0.8527292,0.47336072,-0.21231097,0.8548998,0.47176197,-0.20996852,0.85636085,0.47067913,-0.20878689,0.85724515,0.46622342,-0.20275894,0.8611182,0.46597725,-0.20146863,0.8615542,0.4657155,-0.20050861,0.8619196,0.4654603,-0.19907738,0.862389,0.46637857,-0.1968771,0.862398,0.46777013,-0.19268589,0.862591,0.46876845,-0.18966445,0.8627187,0.46936965,-0.1874216,0.8628819,0.47100157,-0.1851391,0.8624854,0.4712849,-0.18309693,0.8627665,0.4709435,-0.18047395,0.86350524,0.47121742,-0.17902534,0.86365736,0.47163036,-0.17534669,0.8641865,0.47197315,-0.17225157,0.86462176,0.47211632,-0.170747,0.864842,0.47194144,-0.16812484,0.8654509,0.47121394,-0.16522084,0.8664061,0.4694833,-0.16030858,0.8682664,0.47082326,-0.15935458,0.8677163,0.47295323,-0.15768015,0.8668634,0.47400835,-0.156687,0.8664671,0.475288,-0.15527283,0.8660206,0.47586757,-0.15455548,0.86583066,0.47715148,-0.1527417,0.86544585,0.47798935,-0.15127102,0.8652417,0.47838163,-0.14936684,0.86535573,0.47910935,-0.14720424,0.8653237,0.48282686,-0.1465636,0.863364,0.48691377,-0.1458571,0.8611856,0.4912072,-0.14511183,0.8588702,0.4955306,-0.14436129,0.8565099,0.4997067,-0.14363438,0.85420275,0.48717237,-0.05866666,0.87133306,0.48448408,-0.04884306,0.8734355,0.48306268,-0.04135804,0.8746084,0.48652706,-0.032461945,0.8730622,0.49330193,-0.019570695,0.86963797,0.503532,0.019245943,0.86376226,0.5158546,0.039923977,0.8557453,0.51204395,0.04188333,0.85793746,0.45019725,0.08847154,0.8885355,0.4392961,0.09013095,0.89380944,0.42491877,0.08758272,0.90098464,0.40883163,0.08635334,0.90851516,0.40513864,0.08483009,0.9103112,0.36108884,0.07501697,0.92950916,0.35156077,0.07733919,0.93296504,0.34078556,0.08619467,0.93618137,0.31846508,0.07178643,0.94521254,0.2251818,-0.08108744,0.9709366,0.3152934,-0.1380658,0.9388972,0.36897656,-0.14506629,0.91804796,0.36878866,-0.15114635,0.91714215,0.37049124,-0.1712894,0.91290534,0.3729807,-0.18551761,0.90910316,0.4051016,-0.19517896,0.89319533,0.40919727,-0.19685198,0.8909584,0.45657322,-0.21277237,0.86386853,0.4811437,-0.2300249,0.84592515,0.47455227,-0.21386294,0.85385174,0.46800956,-0.20634268,0.85929614,0.4694089,-0.16117327,0.8681466,0.5104931,0.04414716,0.85874784,0.5109527,0.055183336,0.85783577,0.39610767,0.08129718,0.914598,0.3500925,0.07780995,0.9334778,0.21725567,-0.086780496,0.9722495,0.24029694,-0.10205001,0.9653203,0.2888981,-0.12072576,0.94971746,0.33085176,-0.12670963,0.93513733,0.354038,-0.12674345,0.926603,0.3689256,-0.12915899,0.9204411,0.37654677,-0.19176592,0.9063323,0.39089724,-0.1902837,0.9005506,0.40416598,-0.19203863,0.8942992,0.46498144,-0.21775909,0.858122,0.4824975,-0.041880798,0.8748955,0.488702,-0.02829822,0.87199175,0.49891862,0.013837687,0.86653835,0.5111387,0.052359782,0.8579019,0.5106327,0.053064402,0.8581599,0.21543394,-0.0992468,0.97146195,0.3491171,-0.1204821,0.9293015,0.3982935,-0.18894984,0.8975858,0.40480018,-0.19303377,0.89379793,0.44502193,-0.2021681,0.87240094,0.4645107,-0.21674743,0.8586328,0.46850422,-0.2236838,0.854675,0.48073006,-0.2293796,0.8463354,0.48103446,-0.21449895,0.85005647,0.4675641,-0.20584902,0.8596569,0.477964,-0.14755832,0.86589664,0.4867504,-0.03169022,0.87296605,0.48758784,-0.030013865,0.8725579,0.21594574,-0.08974482,0.97227216,0.21579164,-0.09453599,0.97185224,0.3585494,-0.12680434,0.92485833,0.36979964,-0.15025836,0.91688097,0.41902706,-0.19444676,0.8869085,0.4453945,-0.20135011,0.8724001,0.48011816,-0.22918221,0.84673613,0.46756142,-0.17972782,0.8654965,0.5105031,0.04284115,0.85880804,0.4016852,0.07956557,0.91231483,0.34150922,0.076941974,0.93672377,0.31309623,0.030871568,0.94921947,0.29189256,-0.026297085,0.95608956,0.2468084,-0.10192454,0.96368927,0.30057868,-0.122737244,0.94582665,0.33166623,-0.12437103,0.9351628,0.36370784,-0.12700713,0.9228141,0.37201816,-0.17434643,0.91170484,0.37058052,-0.15179244,0.91631275,0.37298456,-0.17809954,0.9105839,0.48068792,-0.21505001,0.8501133,0.48714787,-0.07693315,0.8699243,0.4987469,0.060370505,0.8646427,0.41559678,0.08039166,0.9059892,0.3440374,0.07644277,0.93583906,0.31203744,0.02403977,0.94976556,0.29198062,-0.031230183,0.9559142,0.25175202,-0.10193972,0.962408,0.2998782,-0.12176114,0.9461751,0.36756662,-0.12715931,0.9212629,0.37108487,-0.15367645,0.91579443,0.44618064,-0.20097107,0.8720857,0.4810182,-0.13780499,0.8658125,0.48646608,-0.075910114,0.87039554,0.4931869,0.045460004,0.8687347,0.4152905,0.080175996,0.90614873,0.35127681,0.07548686,0.9332236,0.291355,-0.035014547,0.955974,0.2993201,-0.1210184,0.946447,0.36805052,-0.12731822,0.92104775,0.37296078,-0.16054322,0.9138524,0.44717425,-0.20072232,0.8716339,0.4635477,-0.21535793,0.8595025,0.4799168,-0.13518532,0.86683613,0.48626983,-0.07550145,0.8705408,0.4931069,0.04523017,0.8687922,0.42629895,0.07397975,0.9015521,0.40349668,0.07304293,0.912061,0.4488275,0.0749164,0.8904726,0.3498313,0.06487205,0.9345639,0.29001936,-0.037648644,0.95628,0.30753058,-0.114159234,0.9446653,0.38424072,-0.1589575,0.90944576,0.47973585,-0.13395917,0.8671265,0.48605368,-0.07386203,0.87080204,0.4916097,0.03917462,0.869934,0.42768478,0.07370478,0.90091807,0.44951236,0.07477898,0.89013857,0.40419748,0.07290537,0.91176164,0.4508813,0.07450402,0.889469,0.34328666,0.031288,0.93870944,0.32423127,0.010855179,0.9459155,0.3620317,0.05170788,0.9307305,0.30667952,-0.11359016,0.9450106,0.28136942,-0.10279601,0.9540777,0.38400835,-0.15816148,0.9096827,0.3684314,-0.12756002,0.92086196,0.42409506,-0.19483964,0.8844099,0.47962058,-0.13268723,0.86738586,0.48881888,-0.02234063,0.8720992,0.49139163,0.03732668,0.87013847,0.489192,0.056963306,0.8703139,0.49340194,0.017675627,0.86962175,0.3914831,0.032890186,0.91959727,0.38603425,0.05250823,0.92098886,0.36750925,0.032089163,0.92946607,0.34865338,0.011656692,0.93717927,0.32688165,0.0010373153,0.94506466,0.37019342,0.022274753,0.9286876,0.43323734,0.05410896,0.89965415,0.40977478,0.053308673,0.91062766,0.41250384,0.043502025,0.9099166,0.45366573,0.06470979,0.88881946,0.33390924,-0.12251222,0.9346098,0.3078066,-0.11265966,0.94475543,0.38488594,-0.15833145,0.90928215,0.47665536,-0.101676926,0.8731904,0.47963193,-0.07221492,0.87449306,0.47327042,-0.13105012,0.8711148,0.48536938,0.016974306,0.87414443,0.4863064,0.046796944,0.8725343,0.48399755,-0.012863444,0.8749748,0.41759652,0.043981027,0.9075675,0.41590047,0.04382132,0.90835375,0.39834678,0.033529032,0.9166219,0.43659362,0.05442809,0.8980109,0.4553234,0.064869195,0.8879598,0.35215703,0.01197627,0.9358643,0.3719293,0.022434454,0.9279899,0.32864952,0.0011970557,0.9444512,0.37539694,0.022753973,0.9265848,0.4432874,0.055066332,0.8946865,0.45863384,0.065188125,0.88623106,0.4209842,0.044300195,0.90598553,0.46523476,0.06582595,0.8827364,0.30959287,-0.11221925,0.94422406,0.428243,-0.1825196,0.88503927,0.4087886,-0.1642541,0.8977263,0.388841,-0.14593221,0.9096738,0.48152074,-0.042162597,0.87542,0.48365685,-0.012599655,0.87516695,0.48502517,0.017238077,0.8743303,0.4861327,0.046928644,0.8726241,0.48348647,-0.01246782,0.8752631,0.47913244,-0.07182029,0.8747993,0.47632656,-0.1014146,0.8734003,0.47946548,-0.07208341,0.8745953,0.4731083,-0.1309193,0.8712225,0.30276024,-0.047916222,0.9518615,0.3303438,-0.03013183,0.9433796,0.3449723,-0.0020611708,0.93861055,0.3575766,-0.012337892,0.9338023,0.38440996,0.0054600723,0.9231463,0.36477566,0.0016995223,0.93109393,0.3250096,-0.0058217156,0.9456928,0.41079596,0.023256188,0.91143066,0.4366876,0.041044936,0.8986764,0.41761655,0.037287246,0.907858,0.462039,0.058820803,0.8849068,0.3121983,-0.11187205,0.94340706,0.44386035,-0.18637921,0.8764992,0.4194043,-0.16683605,0.8923372,0.43346798,-0.1838065,0.8822248,0.39424455,-0.147227,0.90713584,0.43169838,-0.04804601,0.90073746,0.45563194,-0.05993746,0.8881481,0.44482964,-0.03915541,0.8947589,0.4337453,-0.018356528,0.9008485,0.4292738,-0.07769321,0.8998265,0.45784196,-0.030261708,0.8885184,0.4073593,-0.036147866,0.9125523,0.4092585,-0.006448745,0.9123957,0.3960057,-0.01534728,0.9181198,0.41845414,-0.056932922,0.90645176,0.45002347,-0.11910402,0.88503844,0.45302406,-0.089560196,0.8869882,0.43980217,-0.09841998,0.89268553,0.4599222,-0.13973649,0.87689525,0.46613613,-0.08069344,0.8810254,0.45964935,-0.00055925443,0.88810027,0.4610497,0.029143574,0.8868956,0.44829655,0.020247225,0.89365554,0.4707295,-0.02136561,0.8820188,0.4736636,0.038037613,0.879884,0.4354098,0.011349271,0.9001608,0.42239523,0.00245042,0.9064085,0.3533315,-0.07169068,0.9327472,0.38053864,-0.053927876,0.92319125,0.35560945,-0.042032775,0.933689,0.34195158,-0.05092222,0.9383369,0.37810308,-0.08356345,0.9219844,0.36446682,-0.092427984,0.92661804,0.37534085,-0.11312539,0.9199575,0.38264257,-0.024244599,0.9235783,0.36917514,-0.03314,0.9287688,0.32820767,-0.05980775,0.94271034,0.31438383,-0.06868843,0.9468076,0.32578683,-0.08943078,0.941204,0.30048636,-0.077563666,0.950627,0.35074785,-0.10128521,0.9309765,0.4264765,-0.10727186,0.898115,0.40249398,-0.095424354,0.9104355,0.4130531,-0.116115235,0.9032743,0.42331186,-0.13675572,0.8956032,0.399538,-0.12494942,0.90816134,0.44663566,-0.14854275,0.88229907,0.40510282,-0.06581521,0.91189915,0.39165044,-0.07469229,0.9170774,0.3112519,-0.11157233,0.9437552,0.44325602,-0.18551631,0.8769879,0.4434575,-0.18580401,0.8768251,0.46679202,-0.20470296,0.86034983,0.41898558,-0.16625868,0.89264166,0.3940278,-0.14693752,0.9072769,0.2987183,-0.080122255,0.950972,0.324273,-0.09162176,0.94151604,0.29972887,-0.07866025,0.95077604,0.32528242,-0.09016119,0.94130886,0.34948766,-0.10310893,0.9312502,0.3743338,-0.11458249,0.92018753,0.3499919,-0.10237955,0.9311413,0.3002339,-0.07792924,0.950677,0.39878348,-0.12604067,0.9083422,0.42280936,-0.13748217,0.8957293,0.39928654,-0.12531322,0.9082218,0.4463847,-0.14890523,0.882365,0.3502439,-0.10201479,0.9310866,0.22142303,-0.10199569,0.9698292,0.34737083,-0.12041098,0.9299649,0.31366667,-0.11130804,0.9429866,0.44279802,-0.1840528,0.8775275,0.44295084,-0.18454069,0.8773478,0.4186606,-0.16527963,0.8929759,0.39385617,-0.14644639,0.9074308,0.28245768,-0.09398829,0.95466423,0.3104044,-0.10349535,0.94495386,0.29176158,-0.08606697,0.95261097,0.3196589,-0.095581114,0.94269955,0.33799285,-0.11299285,0.9343412,0.3651917,-0.12248004,0.92284,0.3425978,-0.10904062,0.93313277,0.29640147,-0.08210411,0.9515278,0.3919701,-0.13195616,0.9104653,0.4182978,-0.14142013,0.8972331,0.39651504,-0.12801297,0.9090591,0.44414517,-0.1508713,0.8831607,0.34489682,-0.107063845,0.9325146,0.31455252,-0.1113437,0.94268733,0.44238362,-0.18235868,0.87809,0.442522,-0.18292348,0.8779028,0.41836333,-0.1641465,0.89332414,0.3936978,-0.14587821,0.90759116,0.4421723,-0.18128152,0.8784194,0.44224283,-0.1816406,0.8783097,0.41821,-0.16342609,0.893528,0.3936153,-0.14551696,0.90768486,0.3021783,-0.102494225,0.94772524,0.32578993,-0.11149273,0.9388452,0.2783029,-0.09348732,0.95593286,0.44489032,-0.15213647,0.8825685,0.44402683,-0.16186748,0.8812713,0.41983384,-0.14395395,0.8961121,0.394339,-0.1357617,0.9088815,0.38009542,-0.13045943,0.9157007,0.4105113,-0.14042369,0.90097815,0.38801983,-0.13145725,0.91222787,0.4403214,-0.15037374,0.88515806,0.32986444,-0.11199276,0.9373618,0.41965032,-0.14383338,0.89621735,0.39424542,-0.13570122,0.908931,0.44480038,-0.15207627,0.88262415,0.39405838,-0.13558051,0.9090302,0.3894179,-0.13387388,0.91128016,0.37817726,-0.3030457,0.8747258,0.37328145,-0.30401364,0.8764911,0.36630508,-0.3053902,0.8789525,0.3465364,-0.3090089,0.8856783,0.3453576,-0.3084026,0.8863498,0.34267187,-0.3082826,0.8874333,0.33327502,-0.3082291,0.89102334,0.3316133,-0.30714747,0.8920163,0.32856277,-0.30675322,0.8932799,0.319886,-0.30683604,0.8963953,0.315857,-0.3061189,0.8980677,0.31294316,-0.30583653,0.89918333,0.30389312,-0.30187112,0.90361655,0.30250272,-0.29975313,0.90478736,0.3021179,-0.2994507,0.90501606,0.30164248,-0.29912698,0.90528166,0.3011489,-0.2990311,0.90547764,0.2966056,-0.2989741,0.9069948,0.2922789,-0.29892042,0.90841603,0.2897961,-0.29891723,0.9092122,0.28372052,-0.29890743,0.91112953,0.27763066,-0.29889765,0.9130068,0.2715284,-0.298888,0.9148433,0.26541397,-0.2988782,0.9166391,0.2592877,-0.29886842,0.91839397,0.24700044,-0.29885057,0.9217804,0.24084014,-0.2988408,0.92341226,0.23756376,-0.29883587,0.9242622,0.23450288,-0.29900345,0.92498934,0.23112285,-0.29918888,0.92577976,0.2298635,-0.29885375,0.92620146,0.22935236,-0.29838696,0.9264787,0.22762717,-0.29718122,0.92729133,0.2240768,-0.2947278,0.9289376,0.22280735,-0.29303995,0.9297766,0.22167262,-0.29250216,0.930217,0.21961491,-0.29219732,0.9308008,0.21807268,-0.29189906,0.93125683,0.21680413,-0.29183212,0.93157387,0.21450531,-0.29262924,0.93185604,0.21276136,-0.29341638,0.9320083,0.2115037,-0.2941772,0.9320547,0.209352,-0.29505017,0.93226457,0.20752943,-0.2959198,0.93239635,0.20446236,-0.2958058,0.9331099,0.20378922,-0.2959312,0.93321735,0.20208114,-0.29587415,0.93360686,0.20051646,-0.29511702,0.93418366,0.19887502,-0.29518378,0.9345134,0.19699551,-0.29615095,0.9346054,0.1943696,-0.2965286,0.9350354,0.1937904,-0.30015308,0.9339986,0.19367787,-0.30488062,0.9324895,0.19409342,-0.30904618,0.9310307,0.19664176,-0.3135038,0.9290034,0.19786854,-0.31681976,0.927617,0.19866918,-0.31798187,0.927048,0.20406382,-0.32435933,0.92366064,0.21201935,-0.34248304,0.91528857,0.21382214,-0.34504703,0.9139052,0.21519895,-0.35059854,0.9114659,0.21727799,-0.35701025,0.9084789,0.22259723,-0.3660667,0.9035738,0.22316046,-0.36823237,0.9025544,0.22425099,-0.37084246,0.9012144,0.22999856,-0.38925585,0.8919533,0.22972153,-0.38881153,0.89221835,0.22902603,-0.3902181,0.89178294,0.22915724,-0.39199382,0.8909701,0.22958691,-0.39524338,0.88942254,0.2292273,-0.39837548,0.888117,0.22931546,-0.40103462,0.8868966,0.22838768,-0.4075399,0.8841664,0.22839724,-0.4099541,0.8830472,0.22971466,-0.41545624,0.88012916,0.23141962,-0.41926187,0.877875,0.23201722,-0.42314333,0.87585264,0.23132929,-0.42651165,0.87439954,0.23117629,-0.42828214,0.87357426,0.2314664,-0.4310402,0.8721397,0.23081388,-0.434063,0.8708125,0.23166543,-0.4377155,0.8687556,0.23150459,-0.44335386,0.8659348,0.23323326,-0.44503814,0.8646059,0.23388414,-0.44776213,0.86302215,0.23315021,-0.4488179,0.86267227,0.23304158,-0.45068437,0.8617281,0.23385838,-0.45391455,0.85980916,0.23434933,-0.45826185,0.857366,0.23491946,-0.459991,0.85628337,0.23928434,-0.4689448,0.85019636,0.24141395,-0.47182068,0.84800035,0.24295335,-0.47303885,0.84688133,0.24708517,-0.47771892,0.8430501,0.24854845,-0.4789611,0.8419144,0.2524662,-0.476621,0.8420768,0.25293463,-0.4767828,0.84184456,0.25347126,-0.4764246,0.8418859,0.25407532,-0.47554332,0.84220207,0.25430784,-0.4747155,0.8425988,0.25472012,-0.47354332,0.8431336,0.2552862,-0.47284222,0.8433559,0.25600556,-0.47144184,0.84392166,0.2606035,-0.4715125,0.8424736,0.26067883,-0.47253272,0.8418785,0.26120594,-0.47302538,0.8414383,0.26272714,-0.4758386,0.839376,0.26208144,-0.47641724,0.83924955,0.2620359,-0.47717676,0.83883226,0.26258585,-0.47812018,0.8381227,0.26272985,-0.4790151,0.8375665,0.26300752,-0.48019505,0.8368033,0.26535836,-0.48088273,0.83566546,0.2664971,-0.48126963,0.83508015,0.26854792,-0.4814013,0.8343469,0.2704162,-0.48192698,0.8334395,0.27210012,-0.48284966,0.83235675,0.27508298,-0.48307198,0.8312465,0.28277692,-0.48281083,0.82881296,0.28532317,-0.4837092,0.8274153,0.28725123,-0.48387465,0.8266511,0.2885673,-0.48330766,0.82652444,0.28924215,-0.48248696,0.826768,0.29000047,-0.48073328,0.8275235,0.29141796,-0.48044473,0.8271931,0.29265794,-0.47963595,0.8272247,0.29895476,-0.47638267,0.82685286,0.30043018,-0.47641116,0.82630146,0.30082965,-0.47424728,0.8274002,0.31024545,-0.41908395,0.85329735,0.31030744,-0.4186908,0.8534678,0.3108408,-0.41526082,0.8549482,0.31154254,-0.41070333,0.8568921,0.31223622,-0.4061371,0.8588138,0.31292215,-0.4015607,0.8607141,0.31359872,-0.39697424,0.86259335,0.3142674,-0.39237794,0.86445105,0.3149297,-0.38777176,0.8662865,0.31558406,-0.38315582,0.86810035,0.31623074,-0.37852877,0.8698931,0.31677058,-0.3746098,0.87139195,0.32959315,-0.3746098,0.8666232,0.3318343,-0.3746098,0.8657676,0.33205223,-0.3739902,0.86595184,0.33246323,-0.3711099,0.86703265,0.33339208,-0.364488,0.86948156,0.33430377,-0.35784915,0.8718859,0.33519694,-0.3511923,0.87424654,0.33607456,-0.34451753,0.87656236,0.33693382,-0.33782372,0.8788349,0.33777726,-0.33111435,0.8810618,0.3386035,-0.3243883,0.8832439,0.3394112,-0.31764412,0.88538253,0.3398063,-0.3143048,0.88642216,0.34382436,-0.31410584,0.884942,0.34849232,-0.31342286,0.8833568,0.3560442,-0.31231233,0.8807346,0.36310178,-0.31093732,0.8783365,0.36768544,-0.3101321,0.8767129,0.37311304,-0.30917588,0.8747553,0.37930673,-0.31542426,0.86984706,0.37946984,-0.31652552,0.8693758,0.37974468,-0.3166419,0.8692134,0.38048795,-0.3164673,0.8689519,0.3813521,-0.3160518,0.8687242,0.38417768,-0.31348762,0.8684083,0.38478348,-0.3128191,0.8683812,0.39309368,-0.308842,0.8660796,0.3939538,-0.30949035,0.8654572,0.39474007,-0.30989227,0.86495495,0.40566593,-0.3054892,0.86145896,0.4062954,-0.3055882,0.8611271,0.40414822,-0.30294174,0.8630704,0.40293235,-0.30184668,0.8640221,0.4019422,-0.30142912,0.86462885,0.39898548,-0.3010017,0.86614585,0.39212826,-0.3003905,0.8694831,0.3913852,-0.30053195,0.8697691,0.38842818,-0.30105367,0.87091345,0.38472846,-0.30170703,0.8723284,0.38153282,-0.30236012,0.8735051,0.33939505,-0.3091175,0.8884016,0.33501753,-0.30896196,0.8901156,0.31115335,-0.30598906,0.8997524,0.25314966,-0.29886034,0.9201075,0.22611365,-0.29626653,0.9279541,0.2021872,-0.32145727,0.9250868,0.22904804,-0.37767825,0.89716,0.23054317,-0.38946778,0.8917201,0.24923559,-0.47827575,0.84210086,0.2621836,-0.47299093,0.84115356,0.29372314,-0.47830275,0.827619,0.29582232,-0.47721866,0.8274971,0.30918738,-0.42572847,0.8503872,0.3245167,-0.3746098,0.86853695,0.3991099,-0.30676943,0.86406237,0.4009694,-0.3060507,0.86345613,0.3472782,-0.3090284,0.8853809,0.32412186,-0.30704683,0.8948001,0.30571467,-0.3040867,0.9022582,0.22154206,-0.36141807,0.905702,0.25148132,-0.4769731,0.8421721,0.260151,-0.47073817,0.84304625,0.26295784,-0.47490603,0.8398318,0.27936348,-0.48259887,0.830093,0.30804867,-0.43274048,0.84725535,0.32023603,-0.3746098,0.87012434,0.37812117,-0.31284976,0.8712918,0.39231396,-0.3086556,0.86649954,0.33684337,-0.30934444,0.8892933,0.2513851,-0.29903838,0.92053336,0.2168307,-0.35116115,0.91086245,0.23111765,-0.3875989,0.8923855,0.23370717,-0.44632298,0.86381525,0.26276824,-0.47361848,0.84061784,0.30207866,-0.46739802,0.8308354,0.30689168,-0.43972492,0.8440731,0.33588362,-0.34597316,0.8760621,0.37610692,-0.30947086,0.8733679,0.38530862,-0.3041663,0.8712176,0.30730522,-0.3051355,0.9013633,0.2369214,-0.44764787,0.86225265,0.289275,-0.4814132,0.82738215,0.30571592,-0.4466844,0.8408393,0.3281689,-0.34628657,0.8788577,0.39047325,-0.30940613,0.86706316,0.3615876,-0.3063184,0.88058126,0.3829683,-0.3046306,0.8720868,0.29049006,-0.30232283,0.9078637,0.30927405,-0.3057538,0.9004799,0.23064275,-0.29911083,0.9259248,0.23177186,-0.40462887,0.8846227,0.23138571,-0.38594696,0.8930317,0.24371114,-0.44852173,0.85990304,0.30775106,-0.43453738,0.8464435,0.30452174,-0.4536169,0.8375549,0.32838008,-0.34463513,0.8794278,0.3754315,-0.30914187,0.8737749,0.2704942,-0.30247307,0.913971,0.2508779,-0.3008314,0.9200874,0.28996262,-0.30411392,0.9074339,0.21874158,-0.33711696,0.91569877,0.22401269,-0.3574819,0.90665597,0.21324402,-0.31659305,0.9242813,0.24378902,-0.43025202,0.8691663,0.2494454,-0.45203066,0.8564142,0.23776452,-0.40821964,0.8813766,0.30330947,-0.4605206,0.83422065,0.30717248,-0.43802953,0.8448522,0.38653004,-0.3115739,0.86805314,0.38861787,-0.31030378,0.86757576,0.28456834,-0.30427098,0.9090875,0.25798038,-0.301731,0.917826,0.31086358,-0.3068088,0.8995733,0.2249487,-0.3182166,0.92094314,0.2303231,-0.33872834,0.91225785,0.2297454,-0.35828125,0.90490425,0.23078197,-0.31902802,0.91921747,0.24356562,-0.42825454,0.8702148,0.23763882,-0.40721005,0.8818774,0.24934877,-0.45104402,0.8569624,0.23738578,-0.40518916,0.88287586,0.23082484,-0.38186285,0.89493054,0.25890306,-0.46995,0.8438698,0.30017248,-0.44864428,0.84179264,0.3749566,-0.30901217,0.8740246,0.2574316,-0.3215529,0.9112259,0.25675324,-0.34123486,0.90423256,0.28290895,-0.34373894,0.8954363,0.25594446,-0.36076832,0.8968493,0.30989185,-0.32659575,0.8929179,0.2838092,-0.3240755,0.90245634,0.25030494,-0.4494474,0.85752225,0.2499862,-0.44997975,0.8573361,0.24419796,-0.4271768,0.87056726,0.23769943,-0.40464413,0.88304144,0.2847703,-0.4428114,0.8501905,0.28715944,-0.46222168,0.83898187,0.28816792,-0.3435829,0.8938177,0.31251523,-0.32651722,0.89203185,0.258579,-0.36069083,0.8961244,0.31775448,-0.32636017,0.8902366,0.2510523,-0.44876552,0.85766095,0.25080317,-0.44899282,0.8576148,0.2569994,-0.47054422,0.84412056,0.24469739,-0.42671672,0.8706526,0.23794968,-0.4044115,0.8830806,0.28381073,-0.4431132,0.85035414,0.25988862,-0.36385307,0.8944657,0.28902677,-0.34570608,0.89272106,0.25901645,-0.3617454,0.89557284,0.3181773,-0.32742885,0.88969296,0.27152613,-0.39862794,0.87599623,0.27787405,-0.42099726,0.8634509,0.29136446,-0.40696135,0.86573046,0.25134102,-0.39026168,0.88573337,0.26443276,-0.4349331,0.8607604,0.27296817,-0.38712674,0.8806936,0.2929526,-0.39550516,0.8704909,0.2937294,-0.38975388,0.87282014,0.25199586,-0.38449636,0.88806564,0.27404898,-0.37823924,0.8842128,0.29490265,-0.38087702,0.87633616,0.29547906,-0.3764253,0.87806386,0.25249326,-0.38005182,0.88983583,0.35586005,-0.30744264,0.8825207,0.30120984,-0.36149588,0.88237935,0.30690503,-0.3464732,0.8864342,0.28528196,-0.34831005,0.89291334,0.31256095,-0.33136123,0.8902277,0.2580198,-0.36514586,0.8944799,0.3520388,-0.30814973,0.88380563,0.3144332,-0.33005115,0.89005506,0.45403793,-0.37774292,0.8069448,0.4506628,-0.37805548,0.80868846,0.44881016,-0.37910765,0.80922604,0.44121143,-0.38385946,0.8111624,0.4388634,-0.38418832,0.81227964,0.4361104,-0.38580388,0.8129964,0.43295056,-0.3887016,0.8133049,0.43127084,-0.39052245,0.81332505,0.43036094,-0.39191857,0.81313545,0.42914575,-0.39246568,0.81351376,0.42838958,-0.39312246,0.8135951,0.42742845,-0.39425686,0.8135517,0.42639858,-0.3942255,0.8141072,0.42555982,-0.39478615,0.8142744,0.4238551,-0.39664105,0.8142621,0.42239165,-0.39688516,0.8149033,0.42104107,-0.3975359,0.81528497,0.4189059,-0.3991242,0.8156088,0.4183453,-0.39913985,0.8158889,0.41730875,-0.39999604,0.81600034,0.41550255,-0.40202114,0.81592685,0.41508126,-0.40296203,0.8156771,0.41038847,-0.41146937,0.81380236,0.40803394,-0.4130331,0.814194,0.406002,-0.41490424,0.81425846,0.40419424,-0.41649628,0.81434506,0.40021923,-0.4174149,0.8158366,0.3987096,-0.41790578,0.8163243,0.39685932,-0.41861954,0.8168601,0.3962983,-0.41926187,0.81680304,0.39355388,-0.42493397,0.81519717,0.3920935,-0.42739493,0.8146142,0.39103663,-0.42953238,0.8139977,0.38366872,-0.4345436,0.8148436,0.38196394,-0.43446824,0.8156843,0.3806234,-0.43450817,0.8162894,0.37420794,-0.43496573,0.8190075,0.37208584,-0.43444225,0.8202512,0.3711104,-0.43433315,0.8207507,0.3694792,-0.43260378,0.82239836,0.36820275,-0.43263453,0.8229545,0.36527723,-0.43209964,0.8245377,0.36443627,-0.43121403,0.82537305,0.3625684,-0.42947102,0.82710266,0.36068055,-0.42805892,0.8286586,0.35892433,-0.42722228,0.82985204,0.35721156,-0.42683077,0.830792,0.35544547,-0.42717916,0.83137023,0.3540525,-0.42755207,0.83177286,0.35350332,-0.4277385,0.8319106,0.3523405,-0.42846698,0.832029,0.35103288,-0.429848,0.83186936,0.34976333,-0.43200892,0.8312845,0.34918603,-0.43333042,0.8308392,0.34413317,-0.44116783,0.82882047,0.3428887,-0.44180405,0.82899725,0.3387235,-0.44446117,0.82928926,0.3335385,-0.44872501,0.8290947,0.33231324,-0.4489809,0.82944804,0.33157042,-0.44947594,0.8294772,0.32703042,-0.45154232,0.830157,0.32638663,-0.45138872,0.8304938,0.3207599,-0.45168376,0.83252317,0.31914428,-0.45120618,0.83340263,0.31797108,-0.45101446,0.8339547,0.31674418,-0.44369918,0.8383342,0.31781816,-0.44251037,0.83855605,0.31893876,-0.44095686,0.8389488,0.31917152,-0.4402621,0.8392251,0.3191105,-0.43963456,0.83957726,0.31916207,-0.43835592,0.840226,0.31929657,-0.4370472,0.8408564,0.31857714,-0.43418133,0.8426121,0.31772712,-0.43037274,0.84488386,0.3164245,-0.42611545,0.84752655,0.31598842,-0.42494327,0.8482774,0.31502452,-0.42309085,0.8495609,0.31088647,-0.4195636,0.85282826,0.290269,-0.4919463,0.8208123,0.32509208,-0.4899413,0.8088712,0.28979564,-0.49044856,0.8218751,0.25398257,-0.49095586,0.8333398,0.32594466,-0.4929361,0.80670565,0.3605654,-0.49242947,0.79215264,0.36094096,-0.49392527,0.79104954,0.3951907,-0.49491382,0.77387637,0.37798834,-0.49367213,0.78320664,0.34293035,-0.491186,0.8007091,0.28884128,-0.48744893,0.82399285,0.30705938,-0.48869562,0.816634,0.27044678,-0.48620126,0.83094335,0.2518851,-0.4849528,0.83748114,0.3977249,-0.49324661,0.7736424,0.3990382,-0.49271724,0.7733035,0.40013173,-0.49174413,0.7733578,0.40142602,-0.49029645,0.7736062,0.40209895,-0.4894241,0.773809,0.40264785,-0.48902568,0.7737756,0.40329507,-0.4884102,0.7738272,0.40450034,-0.4870442,0.77405906,0.4058407,-0.4855265,0.7743108,0.40727627,-0.48389405,0.774579,0.40867963,-0.4834212,0.77413493,0.41056943,-0.48287514,0.7734755,0.41261926,-0.48144746,0.77327466,0.41849545,-0.47893432,0.7716757,0.42008334,-0.47860214,0.7710188,0.42070317,-0.47841206,0.7707988,0.4209999,-0.47865888,0.7704835,0.42118698,-0.47940853,0.7699149,0.42156813,-0.48003528,0.76931554,0.4225477,-0.4811248,0.76809657,0.42301473,-0.4813877,0.7676747,0.42389062,-0.48299894,0.7661781,0.4249884,-0.4841029,0.764872,0.4262465,-0.48537308,0.7633655,0.4271635,-0.48600477,0.76245046,0.4276692,-0.48618042,0.76205486,0.42782164,-0.48730612,0.76124996,0.42805728,-0.48814097,0.76058227,0.42476392,-0.49422792,0.75849485,0.4239094,-0.49472567,0.7586484,0.42300087,-0.49547347,0.75866747,0.4144761,-0.5019442,0.7591189,0.4137349,-0.50185883,0.75957954,0.4126886,-0.5019471,0.76009023,0.41182852,-0.502152,0.76042134,0.4111838,-0.50222874,0.76071954,0.4098705,-0.5032984,0.76072127,0.40722418,-0.5061823,0.7602289,0.40656477,-0.50678486,0.76018035,0.4061135,-0.5079159,0.75966656,0.39918914,-0.5070331,0.7639145,0.39887306,-0.5062029,0.76462996,0.39842948,-0.5057472,0.7651626,0.3983044,-0.50549126,0.7653968,0.3975989,-0.50510734,0.7660168,0.39734682,-0.5049088,0.7662784,0.39711577,-0.5047674,0.7664913,0.3968742,-0.50373423,0.76729566,0.39730817,-0.50239533,0.7679486,0.3969489,-0.5015963,0.76865643,0.3963314,-0.5002317,0.76986337,0.39600557,-0.49911276,0.7707568,0.39555764,-0.49758315,0.7719748,0.3260818,-0.49361658,0.806234,0.36099896,-0.49426523,0.7908107,0.29034817,-0.49228668,0.8205801,0.36111438,-0.4949453,0.79033256,0.39537826,-0.49627268,0.77290976,0.255675,-0.5015078,0.8265109,0.25704822,-0.5067084,0.8229051,0.26023367,-0.5153229,0.81652975,0.26293832,-0.5207593,0.8122027,0.2603318,-0.5413428,0.7994845,0.25953048,-0.5403666,0.8004048,0.258432,-0.5409817,0.80034477,0.25759104,-0.54211074,0.7998517,0.25757983,-0.54407567,0.7985201,0.25844818,-0.5453179,0.7973913,0.25861186,-0.5468672,0.79627645,0.25959146,-0.5476702,0.7954053,0.26027113,-0.54988015,0.7936566,0.2615342,-0.5507966,0.79260516,0.261921,-0.55214745,0.79153687,0.26300728,-0.5550955,0.78911096,0.26292402,-0.5575684,0.78739345,0.2612458,-0.5583109,0.7874259,0.26054224,-0.56026644,0.7862692,0.2604459,-0.56191707,0.78512233,0.2609124,-0.5634627,0.7838588,0.26145393,-0.56420165,0.7831464,0.26201692,-0.5616224,0.7848104,0.26678786,-0.5628614,0.7823115,0.2665768,-0.5634755,0.7819413,0.26644742,-0.56444925,0.7812828,0.26741558,-0.5644001,0.78098744,0.26815897,-0.5641568,0.7809084,0.27013022,-0.56424814,0.78016263,0.2706056,-0.5652103,0.779301,0.27191916,-0.5651442,0.7788915,0.27246922,-0.5674243,0.7770394,0.27198532,-0.5680598,0.7767446,0.2732801,-0.56792516,0.7763884,0.2760839,-0.5700444,0.7738391,0.27897507,-0.570092,0.7727664,0.27994218,-0.5703511,0.7722253,0.28117564,-0.5705094,0.7716601,0.28914553,-0.5658753,0.7721269,0.29252455,-0.56554204,0.77109766,0.29416022,-0.56477296,0.7710391,0.296628,-0.56445795,0.77032393,0.29901296,-0.56506824,0.76895326,0.30036214,-0.5650852,0.76841474,0.3032157,-0.5645788,0.767666,0.30637306,-0.5645733,0.7664154,0.31359807,-0.56019294,0.7667073,0.31591463,-0.55997115,0.7659179,0.31794044,-0.5593385,0.76554185,0.32036635,-0.55934125,0.7645278,0.32269898,-0.5601069,0.76298475,0.32718575,-0.5603666,0.7608803,0.32832465,-0.5601902,0.76051944,0.33177066,-0.55897814,0.75991553,0.33937111,-0.560083,0.7557343,0.3443428,-0.5617155,0.75226575,0.34740427,-0.561635,0.7509171,0.3527535,-0.5586248,0.7506685,0.35649458,-0.55959976,0.7481709,0.35772982,-0.5597044,0.7475027,0.3586665,-0.5593539,0.74731624,0.35953367,-0.5570149,0.7486454,0.3645202,-0.555009,0.7477232,0.37004262,-0.5557091,0.7444836,0.3726603,-0.5549523,0.7437421,0.3794872,-0.55224544,0.7423035,0.38390216,-0.54990584,0.74176997,0.39022848,-0.54604334,0.74132204,0.3916901,-0.5454278,0.7410043,0.39752963,-0.5412568,0.7409529,0.40121946,-0.53913265,0.74051267,0.40795714,-0.5342673,0.74035764,0.42303613,-0.5220581,0.740605,0.42447603,-0.5213645,0.74026966,0.4267573,-0.51984817,0.7400243,0.43245366,-0.51459104,0.74039173,0.43598357,-0.51076126,0.74097323,0.43972462,-0.5065483,0.7416543,0.444131,-0.5010742,0.74274653,0.44678354,-0.49850112,0.742887,0.45007235,-0.49380255,0.74403894,0.4608833,-0.4838494,0.7439599,0.46246478,-0.48346752,0.7432264,0.46341944,-0.4830346,0.7429132,0.46454865,-0.48235852,0.7426472,0.46887165,-0.47902098,0.74209046,0.4705803,-0.4771319,0.7422259,0.47397628,-0.4725462,0.7429984,0.47952935,-0.46084437,0.74677575,0.48296243,-0.4552369,0.74800175,0.48443747,-0.4516457,0.7492239,0.4829967,-0.45167163,0.7501379,0.48051515,-0.4517461,0.75168514,0.479046,-0.45178863,0.75259686,0.47740003,-0.45183733,0.7536128,0.4754921,-0.45139936,0.7550801,0.47432375,-0.4514921,0.7557591,0.47397277,-0.45126402,0.75611544,0.47327954,-0.45105106,0.75667655,0.47285578,-0.45115,0.7568824,0.47189364,-0.45337847,0.75615096,0.47072026,-0.45668852,0.7548894,0.47032326,-0.45874047,0.75389206,0.45841917,-0.4526809,0.7648084,0.45818716,-0.45075887,0.7660816,0.45719177,-0.45064777,0.76674134,0.4586338,-0.44484597,0.76926404,0.46131226,-0.44179955,0.76941806,0.46297455,-0.43990394,0.76950574,0.46948904,-0.43439156,0.76868975,0.47202688,-0.43628812,0.766057,0.47465155,-0.4380831,0.7634063,0.47537225,-0.437881,0.7630737,0.47577092,-0.4377063,0.76292545,0.47613853,-0.43482146,0.7643444,0.4775648,-0.4325883,0.76472163,0.47857976,-0.42829615,0.766501,0.47906113,-0.4267816,0.7670449,0.47978982,-0.4237857,0.7682496,0.48144826,-0.41688812,0.7709811,0.48216608,-0.4140681,0.7720515,0.4822283,-0.4127304,0.7727286,0.48218822,-0.41199592,0.77314544,0.48197037,-0.41049975,0.7740766,0.48203692,-0.40737814,0.77568257,0.48179522,-0.40501693,0.777068,0.48099583,-0.40263602,0.7787986,0.4809176,-0.4015358,0.77941465,0.48038924,-0.39959612,0.78073627,0.47983736,-0.39756083,0.7821135,0.48039463,-0.39521676,0.7829589,0.4804467,-0.39099944,0.78504163,0.48047653,-0.38791943,0.7865499,0.48022532,-0.38457856,0.7883419,0.48003593,-0.38195276,0.78973264,0.48014525,-0.38110352,0.7900763,0.47909158,-0.3801815,0.79115945,0.4775076,-0.37958238,0.79240376,0.47538814,-0.37930644,0.793809,0.4725279,-0.37942147,0.7954601,0.4689275,-0.37992448,0.7973483,0.46529493,-0.37931272,0.799764,0.4616199,-0.3775852,0.8027057,0.45838743,-0.3769727,0.8048431,0.4542191,-0.37772405,0.8068516,0.4434913,-0.38325503,0.8102043,0.4310693,-0.39127076,0.8130722,0.4280909,-0.39389026,0.813381,0.4249108,-0.39594,0.814053,0.41980454,-0.39858967,0.8154082,0.41162062,-0.4105728,0.81363285,0.395408,-0.42159384,0.8160338,0.37858486,-0.4354429,0.81673926,0.36629024,-0.4324961,0.8238802,0.33632943,-0.44744977,0.82865626,0.33500928,-0.44831845,0.8287215,0.32909566,-0.45172164,0.82924277,0.315951,-0.45163804,0.8343848,0.31542027,-0.44532058,0.83797354,0.3954117,-0.4943301,0.7741365,0.37817636,-0.49316096,0.7834379,0.3607218,-0.49199113,0.7923538,0.36061752,-0.49228337,0.7922197,0.34305674,-0.49082023,0.80087924,0.32519,-0.48964843,0.8090092,0.34300622,-0.49096647,0.80081123,0.30713037,-0.48847595,0.8167387,0.28888693,-0.48730236,0.8240636,0.30708304,-0.4886224,0.8166689,0.27046877,-0.4861279,0.8309791,0.3429809,-0.49103978,0.80077714,0.39603204,-0.4939315,0.77407384,0.42231083,-0.49699178,0.7580585,0.32621396,-0.4942731,0.80577826,0.36117005,-0.4952732,0.79010165,0.2904246,-0.49261537,0.8203558,0.361281,-0.49592903,0.7896395,0.27282804,-0.56629664,0.77773577,0.3488817,-0.56005746,0.7514101,0.4127816,-0.52996564,0.7407751,0.4781715,-0.46340945,0.7460588,0.4592868,-0.45573613,0.7624698,0.46417338,-0.43806788,0.7698308,0.48066792,-0.42014977,0.7696964,0.48113194,-0.40345794,0.77828896,0.48004994,-0.38233855,0.78953743,0.44747943,-0.38099164,0.8090782,0.4050698,-0.41600657,0.8141603,0.38560948,-0.4342872,0.8140639,0.34769043,-0.43613175,0.8300003,0.33056203,-0.45098403,0.82906103,0.24897951,-0.47932777,0.8415783,0.37872037,-0.49281207,0.78339463,0.36118892,-0.4916918,0.7923268,0.36087748,-0.4918913,0.79234487,0.34344655,-0.49057052,0.8008652,0.3255021,-0.48944864,0.80900455,0.30736455,-0.48832595,0.81674033,0.28904304,-0.48720223,0.824068,0.30720842,-0.488426,0.81673926,0.2705468,-0.4860779,0.830983,0.41493106,-0.48024294,0.7727865,0.4255698,-0.4934395,0.75855637,0.3999026,-0.50817424,0.7627823,0.39693776,-0.50421405,0.76694757,0.32669774,-0.49560085,0.80476606,0.36149955,-0.49659243,0.78912234,0.29068983,-0.49328002,0.81986237,0.36193478,-0.49791816,0.7880867,0.26535356,-0.5248059,0.80880547,0.2598336,-0.507979,0.8212454,0.26164234,-0.5409617,0.79931456,0.26693645,-0.56191707,0.7829394,0.3332297,-0.55908823,0.7591958,0.35051355,-0.5588115,0.7515784,0.3620124,-0.5553832,0.7486632,0.4188527,-0.52509606,0.7408351,0.47579724,-0.43657193,0.7635587,0.4457069,-0.3823748,0.809404,0.345775,-0.43948767,0.8290297,0.32983527,-0.45151487,0.82906157,0.3840336,-0.48886576,0.7832806,0.36574486,-0.48830742,0.79232985,0.36270726,-0.4905645,0.792332,0.3472427,-0.4877489,0.80095166,0.3285372,-0.48719016,0.8091409,0.3096384,-0.486631,0.8168931,0.29055658,-0.48607168,0.8242034,0.27130195,-0.48551232,0.8310673,0.4214961,-0.49877596,0.7573398,0.4146507,-0.5019118,0.759045,0.32713935,-0.49759948,0.80335206,0.36212245,-0.49891606,0.7873691,0.29094425,-0.49428117,0.8191688,0.27255452,-0.4926195,0.8264623,0.30914226,-0.49594125,0.8114637,0.3624943,-0.5009105,0.7859304,0.34492633,-0.49925593,0.7948392,0.37983435,-0.5025631,0.7766313,0.2657691,-0.5261023,0.8078262,0.26005468,-0.5086349,0.8207692,0.26368415,-0.5395374,0.7996062,0.26272392,-0.5607731,0.78518134,0.26694983,-0.56075746,0.78376585,0.27231124,-0.56549996,0.77849627,0.29567248,-0.56449866,0.7706614,0.38739294,-0.5427365,0.7452274,0.45316634,-0.49057114,0.7442985,0.4798491,-0.3984661,0.7816454,0.31494433,-0.44746044,0.8370121,0.38854644,-0.48402634,0.78406,0.36959606,-0.4841588,0.7930883,0.36702836,-0.4869257,0.79258657,0.35043618,-0.4842913,0.8016586,0.3310779,-0.48442352,0.8097662,0.34915856,-0.4856751,0.8013787,0.3846781,-0.4881755,0.78339475,0.31153232,-0.48455575,0.8174065,0.2918107,-0.4846882,0.824575,0.31026956,-0.48593956,0.8170652,0.27192447,-0.4848206,0.8312678,0.41594666,-0.5015402,0.75858146,0.34500557,-0.49946415,0.794674,0.34497914,-0.49939474,0.79472905,0.3272503,-0.49787742,0.8031347,0.36254436,-0.5010492,0.7858188,0.37985805,-0.5026324,0.7765749,0.291005,-0.49442047,0.8190632,0.30917132,-0.4960108,0.81141007,0.2725862,-0.49268925,0.82641035,0.30922943,-0.49614993,0.8113029,0.3626445,-0.5013265,0.78559583,0.34505832,-0.49960294,0.7945638,0.37999994,-0.5030478,0.7762364,0.26308692,-0.5562446,0.7882748,0.38165122,-0.5444689,0.74692434,0.43142498,-0.5119975,0.742786,0.46413922,-0.47867772,0.74528,0.46906698,-0.43433467,0.7689796,0.4781151,-0.4167271,0.7731393,0.44971773,-0.38592967,0.8054888,0.31481278,-0.44997677,0.83571154,0.39528006,-0.48083237,0.7826582,0.3753948,-0.48142177,0.79203016,0.37152916,-0.48324692,0.7927412,0.35528806,-0.48201075,0.800897,0.33497265,-0.4825995,0.8092534,0.35334733,-0.48292336,0.8012058,0.38950855,-0.48357064,0.78386384,0.3144615,-0.48318827,0.81709427,0.29376775,-0.4837766,0.8244153,0.31250864,-0.4841002,0.8173037,0.27290455,-0.4843647,0.83121234,0.41838667,-0.5005814,0.7578725,0.32882467,-0.4995895,0.80142665,0.3633893,-0.50218093,0.7847054,0.29183456,-0.4952788,0.81824905,0.27301124,-0.49311885,0.82601374,0.3104424,-0.4974357,0.8100514,0.36487305,-0.5038881,0.7829204,0.34697142,-0.50174046,0.79238075,0.38251993,-0.50603265,0.77305204,0.26325554,-0.56043565,0.7852441,0.287705,-0.56652987,0.772185,0.37235922,-0.5445532,0.7515387,0.39260045,-0.53727955,0.7464554,0.3520764,-0.5517864,0.7560251,0.46186066,-0.48031968,0.74563915,0.4455117,-0.49705324,0.74461895,0.42914513,-0.5136039,0.7429976,0.46746287,-0.45880404,0.7556304,0.47454086,-0.41648152,0.7754702,0.45537856,-0.39519486,0.7977791,0.38941848,-0.43218416,0.81336963,0.34734395,-0.5020671,0.79201055,0.34721985,-0.50195825,0.79213405,0.32933393,-0.50002587,0.8009453,0.36511496,-0.50410557,0.78266764,0.3826376,-0.5061412,0.77292275,0.2921015,-0.49549752,0.81802136,0.3105728,-0.4975451,0.80993414,0.27314767,-0.49322838,0.82590324,0.31083366,-0.49776348,0.80969983,0.36559826,-0.50454056,0.7821616,0.38287276,-0.5063583,0.772664,0.34759212,-0.5022848,0.7917636,0.38334256,-0.50679266,0.7721461,0.40081555,-0.5090413,0.7617243,0.2651573,-0.53737307,0.800576,0.26425913,-0.5603117,0.78499556,0.36552605,-0.5447356,0.7547541,0.38920918,-0.53737104,0.74816346,0.34176046,-0.5520582,0.76054686,0.4538644,-0.47690183,0.75270957,0.45654213,-0.47804186,0.75036347,0.44020733,-0.49479985,0.74926,0.42650774,-0.5124902,0.74528176,0.47419575,-0.41658145,0.7756276,0.46838012,-0.43453288,0.7692862,0.44602534,-0.40452838,0.7983847,0.37684542,-0.4355043,0.8175106,0.41953325,-0.49999118,0.7576283,0.34833112,-0.50241965,0.7913532,0.34808484,-0.5023747,0.7914901,0.33033356,-0.5002059,0.800421,0.36608353,-0.5046303,0.7818767,0.38358143,-0.5068375,0.7719981,0.29261497,-0.4955878,0.8177831,0.3110871,-0.49780858,0.80957484,0.27340758,-0.4932736,0.8257902,0.31159383,-0.49789873,0.8093245,0.3670534,-0.5048098,0.78130585,0.38405883,-0.5069271,0.7717019,0.34882358,-0.50250953,0.7910792,0.38501298,-0.5071065,0.77110827,0.40269235,-0.5093994,0.760494,0.26625532,-0.56038785,0.78426623,0.36337236,-0.5451678,0.75548166,0.34067893,-0.5522731,0.76087606,0.38813856,-0.5375886,0.7485633,0.33851492,-0.5527027,0.7615296,0.45121753,-0.47673565,0.75440437,0.45210055,-0.47679096,0.75384045,0.46391702,-0.4585799,0.7579482,0.4384523,-0.49469006,0.7503608,0.42563552,-0.512436,0.74581754,0.47316396,-0.41727775,0.77588344,0.4663171,-0.43591246,0.7697589,0.41224808,-0.42380857,0.8064972,0.4349453,-0.41539648,0.798917,0.45748675,-0.40694883,0.7906318,0.3152264,-0.45122746,0.8348808,0.42037806,-0.49950978,0.7574775,0.34940103,-0.50261426,0.7907577,0.34920862,-0.5025792,0.790865,0.33111498,-0.50034547,0.80001086,0.36743253,-0.50487936,0.7810827,0.38519955,-0.507141,0.7709924,0.29301646,-0.4956578,0.8175969,0.31179202,-0.49793345,0.80922675,0.27361086,-0.49330863,0.8257019,0.31218818,-0.49800333,0.809031,0.3681904,-0.5050185,0.7806357,0.3855725,-0.5072105,0.7707603,0.34978595,-0.5026837,0.79054344,0.38631794,-0.5073494,0.77029544,0.40415823,-0.5096765,0.7595301,0.2659137,-0.5339029,0.8026442,0.26569414,-0.56023246,0.78456753,0.3512321,-0.54804677,0.7591316,0.3324249,-0.5541345,0.7631701,0.38210434,-0.5390372,0.75062317,0.32022566,-0.5569931,0.766299,0.4494675,-0.47607806,0.7558629,0.45005134,-0.47629735,0.7553771,0.46156514,-0.4576936,0.7599172,0.43729544,-0.49425673,0.7513208,0.4250623,-0.512222,0.7462913,0.47209615,-0.41836643,0.7759477,0.3883027,-0.43307385,0.81342983,0.4114125,-0.42447877,0.8065715,0.43438974,-0.41584525,0.7989858,0.4119695,-0.42403206,0.8065221,0.45721006,-0.4071741,0.7906758,0.3449773,-0.44045198,0.82885027,0.40543637,-0.5088096,0.7594301,0.3009719,-0.5220138,0.79807115,0.29841384,-0.51328164,0.8046683,0.33581728,-0.5179134,0.78676075,0.37023574,-0.5138009,0.7739083,0.27934825,-0.51096004,0.8129479,0.44778073,-0.4746261,0.75777465,0.43618602,-0.49330014,0.75259334,0.44890612,-0.47559428,0.7565008,0.42451543,-0.5117493,0.7469266,0.46934506,-0.42179403,0.7757609,0.3870766,-0.4338864,0.81358117,0.4104953,-0.42509088,0.8067163,0.43378064,-0.41625524,0.7991032,0.41110677,-0.42468297,0.8066199,0.456907,-0.4073801,0.79074484,0.40471774,-0.5095079,0.75934523,0.33582568,-0.5207471,0.78488445,0.30105367,-0.52483916,0.796185,0.2660752,-0.5317308,0.8040313,0.3010922,-0.5262497,0.7952388,0.3702046,-0.51522255,0.7729776,0.3398801,-0.5451878,0.76632357,0.31448546,-0.55557454,0.7696985,0.37653792,-0.5375986,0.754458,0.39471734,-0.53378755,0.7478429,0.35825494,-0.5413987,0.7606187,0.30290112,-0.55273277,0.77636164,0.44625625,-0.47085363,0.7610205,0.43520087,-0.49081546,0.754785,0.4472753,-0.47336966,0.7588583,0.42403844,-0.51052284,0.74803597,0.4691685,-0.42212626,0.77568704,0.45827532,-0.44550225,0.7690978,0.36494535,-0.43773073,0.82170963,0.31123343,-0.48323733,0.81830037,0.35212216,-0.48205984,0.80226445,0.38380966,-0.48115176,0.78815174,0.31991893,-0.48296762,0.81510377,0.3003114,-0.5477747,0.78086865,0.30086935,-0.53346354,0.79050255,0.28321394,-0.5469179,0.7878265,0.33498746,-0.5351941,0.77546805,0.369633,-0.52249384,0.76835644,0.45711032,-0.4503206,0.7669821,0.44619814,-0.4706111,0.7612046,0.43516406,-0.4906559,0.75491,0.44623682,-0.47077286,0.7610818,0.42402107,-0.5104439,0.7480997,0.44629762,-0.4309352,0.78429157,0.45162717,-0.41919303,0.78759766,0.4232622,-0.43970352,0.79215527,0.40531117,-0.43679714,0.803076,0.4409201,-0.44260508,0.7808266,0.3610408,-0.44088024,0.8217507,0.32057425,-0.48268387,0.81501436,0.3527736,-0.48177615,0.8021487,0.38413295,-0.48100963,0.788081,0.32090187,-0.4825421,0.8149694,0.33526993,-0.5351115,0.77540296,0.3697737,-0.5224521,0.7683171,0.30045283,-0.5477336,0.78084314,0.3700552,-0.5223686,0.76823837,0.45762303,-0.44797254,0.7680506,0.44659817,-0.4688711,0.76204336,0.43544066,-0.4895104,0.7554939,0.44633168,-0.47003123,0.7614845,0.42416406,-0.5098788,0.7484039,0.42296493,-0.44094294,0.7916249,0.44076443,-0.44322392,0.7805635,0.40516976,-0.43741816,0.8028094,0.4404525,-0.44446117,0.78003585,0.36038107,-0.4413163,0.8218062,0.32682377,-0.4790959,0.8146492,0.35867962,-0.47832832,0.80159277,0.38707337,-0.4792859,0.78769237,0.32978627,-0.47736993,0.8144685,0.3722642,-0.52746415,0.7636759,0.39061323,-0.5236244,0.7571253,0.40407962,-0.43771806,0.80319524,0.42224535,-0.4411426,0.7918978,0.4048064,-0.43751806,0.80293816,0.4400964,-0.4445609,0.78018,0.35779622,-0.4429215,0.822072,0.35891962,-0.47724798,0.8021291,0.3298964,-0.47682953,0.8147404,0.38720325,-0.47874615,0.78795666,0.3301162,-0.4757482,0.81528336,0.36264154,-0.4506299,0.81573516,0.39490908,-0.44974467,0.80110955,0.42658645,-0.44885883,0.7852068,0.3596736,-0.47383308,0.8038141,0.33046213,-0.4740403,0.8161376,0.3876123,-0.47704118,0.78878915,0.33115026,-0.47061867,0.8178371,0.36209244,-0.45078525,0.8158932,0.3945474,-0.44984818,0.80122966,0.36245856,-0.4506816,0.8157879,0.42640808,-0.4489106,0.7852741,0.39031738,-0.47605792,0.788049,0.36149594,-0.47317642,0.8033833,0.3885142,-0.47671342,0.78854364,0.33206987,-0.47028962,0.81765354,0.4192572,-0.5118181,0.7498437,0.32204488,-0.46498185,0.82466894,0.34188545,-0.46256226,0.8180162,0.35535547,-0.45471972,0.81667155,0.36158842,-0.4601392,0.8108796,0.38114184,-0.45771247,0.8032622,0.40053374,-0.45528257,0.79516697,0.4197524,-0.45284927,0.7865974,0.43878606,-0.45041257,0.77755725,0.39199883,-0.4756656,0.7874511,0.36263257,-0.47291428,0.80302536,0.390878,-0.47592708,0.7878501,0.33264524,-0.47015834,0.8174951,0.4198911,-0.51088136,0.7501278,0.4268276,-0.4915421,0.75908136,0.43917564,-0.4632605,0.7697496,0.40124872,-0.46809447,0.7873291,0.42040527,-0.50996387,0.750464,0.4278432,-0.48968273,0.7597111,0.43932375,-0.46338516,0.76959,0.44277254,-0.46895826,0.7642189,0.4426734,-0.46718553,0.76536137,0.4281059,-0.4889217,0.7600532,0.44290182,-0.46857288,0.7643804,0.44287455,-0.4681777,0.7646383,0.4184233,-0.7309118,0.5391566,0.41897348,-0.73068964,0.5390305,0.41959614,-0.7301821,0.53923386,0.41958332,-0.7299887,0.53950566,0.41917264,-0.7294165,0.5405977,0.418289,-0.7292557,0.54149836,0.41776305,-0.729553,0.54150397,0.41673976,-0.7302578,0.54134226,0.41664606,-0.7307165,0.5407952,0.14457786,0.50426114,0.8513624,0.14288273,0.5034633,0.85212046,0.14150071,0.50270754,0.852797,0.139943,0.5017407,0.853623,0.1413195,0.49990395,0.8544734,0.14955674,0.4843056,0.8620214,0.14973362,0.47808188,0.865458,0.15110904,0.4701388,0.8695606,0.15234885,0.46616572,0.8714811,0.1512906,0.46256852,0.8735797,0.15040772,0.45912805,0.87554497,0.15063493,0.457398,0.87641096,0.15152702,0.45468664,0.8776671,0.15234019,0.45268092,0.8785627,0.15331116,0.45162433,0.87893754,0.15063621,0.44523278,0.8826531,0.14778726,0.443599,0.8839564,0.14707342,0.44221833,0.8847669,0.14695778,0.44067675,0.88555485,0.14745854,0.43942398,0.886094,0.14974037,0.43664694,0.88708353,0.1531755,0.43246764,0.88854325,0.15734196,0.42670357,0.89059955,0.1577512,0.42342514,0.8920906,0.15951118,0.41929728,0.89372593,0.16120476,0.41748998,0.8942679,0.16189583,0.4161382,0.894773,0.1630667,0.4151731,0.8950086,0.16422018,0.41446438,0.8951263,0.16489999,0.41437912,0.8950408,0.18229315,0.41136834,0.89305395,0.1838717,0.4089628,0.89383477,0.18645641,0.4050232,0.89509225,0.18839942,0.40186498,0.8961084,0.19013868,0.39903507,0.8970052,0.19846034,0.39717448,0.89602786,0.2207089,0.3891576,0.89434,0.22644192,0.38467762,0.89484483,0.22668041,0.38461238,0.89481246,0.22692034,0.38459268,0.89476013,0.23171276,0.38723427,0.89238936,0.23792338,0.3906715,0.88925153,0.23792508,0.39066985,0.88925177,0.24334082,0.39331123,0.886618,0.27371043,0.3876554,0.8802306,0.28154528,0.38384593,0.8794285,0.28938243,0.38003004,0.8785414,0.29721934,0.37620765,0.8775696,0.30505347,0.37237886,0.8765138,0.31288686,0.36854368,0.8753727,0.32071704,0.36470217,0.87414694,0.3285431,0.36085373,0.8728368,0.3363636,0.3570007,0.8714413,0.34417814,0.35313994,0.86996186,0.35198528,0.34927404,0.86839736,0.35978267,0.34540215,0.8667489,0.36757234,0.3415243,0.86501545,0.37535167,0.33764073,0.8631975,0.38311827,0.3337514,0.8612957,0.3828218,0.3358048,0.8606292,0.38561496,0.34195203,0.85695386,0.3893013,0.34194958,0.85528654,0.3929818,0.34194723,0.8536026,0.396652,0.34194565,0.851904,0.39669538,0.34197524,0.85187185,0.39673597,0.34200403,0.85184145,0.396778,0.3420329,0.8518103,0.3968199,0.3420625,0.8517788,0.39555138,0.35022253,0.84904844,0.39425313,0.35835516,0.84625417,0.39292482,0.3664616,0.8433955,0.39156693,0.37453943,0.8404734,0.390944,0.37817052,0.83913636,0.3695097,0.484158,0.79312897,0.3687055,0.48758355,0.7914029,0.36843604,0.48822266,0.7911343,0.36410326,0.4971063,0.7876003,0.3637236,0.49827635,0.7870361,0.36156222,0.5019869,0.7856729,0.36132872,0.5037828,0.7846302,0.36262852,0.50689936,0.7820189,0.36287436,0.5084104,0.78092325,0.36294532,0.51022035,0.77970886,0.3627462,0.51169145,0.77883697,0.36157665,0.5139375,0.7779014,0.36036155,0.51595384,0.77713007,0.3596751,0.52141905,0.7737932,0.36059278,0.52270705,0.7724961,0.36085322,0.523498,0.77183855,0.36135933,0.52438575,0.7709987,0.36176774,0.524803,0.77052313,0.36106792,0.52565426,0.7702711,0.3591916,0.52819157,0.7694121,0.35791942,0.5292339,0.7692888,0.3568313,0.5296865,0.7694827,0.35409304,0.53015554,0.7704241,0.3453195,0.5304669,0.774183,0.343081,0.53180057,0.77426326,0.3416005,0.5322661,0.7745979,0.33141232,0.5357886,0.77659285,0.33148658,0.53653604,0.7760449,0.33032936,0.5390464,0.7747977,0.3277277,0.5400517,0.7752024,0.3253291,0.5408354,0.77566624,0.3220105,0.5416193,0.7765035,0.31922212,0.5428796,0.7767747,0.31700632,0.54344195,0.77728873,0.31231406,0.54330105,0.7792842,0.31058878,0.5437968,0.7796279,0.30944383,0.54372096,0.7801359,0.3056698,0.54138076,0.7832451,0.3021684,0.54134923,0.7846243,0.29676577,0.5384792,0.7886509,0.29380292,0.53628004,0.7912545,0.29104045,0.53315306,0.79438233,0.29013783,0.5315148,0.79580903,0.28968295,0.5299055,0.797047,0.28959885,0.5272157,0.7988592,0.29090342,0.52333176,0.8009364,0.2921787,0.5211681,0.80188245,0.29369473,0.5195271,0.8023933,0.27605847,0.50626963,0.8169962,0.2682102,0.5117023,0.81622547,0.26456743,0.5128207,0.81671226,0.2626651,0.51395434,0.81661373,0.25538424,0.5162567,0.81747043,0.24692515,0.5182471,0.81880873,0.24216487,0.51843435,0.820111,0.22474813,0.5294928,0.81800103,0.22422841,0.5322804,0.81633276,0.22254205,0.5345245,0.8153273,0.22106197,0.5356965,0.81496066,0.21133298,0.53746265,0.8163776,0.20996507,0.53803974,0.81635034,0.20700063,0.5399648,0.8158362,0.20577496,0.5403837,0.8158689,0.20102543,0.5415878,0.8162545,0.1983361,0.541691,0.81684375,0.19669086,0.54206413,0.816994,0.19288705,0.543389,0.8170208,0.19085018,0.54313576,0.8176673,0.17866004,0.5425668,0.82079345,0.17151533,0.54600984,0.82003397,0.16922848,0.5463782,0.82026374,0.16692409,0.5472993,0.8201218,0.16694355,0.5469141,0.8203748,0.1667981,0.5441372,0.8222488,0.16681205,0.54313576,0.8229078,0.1669537,0.54143953,0.8239961,0.16721427,0.5393966,0.8252822,0.16837834,0.53602827,0.8272379,0.16638179,0.53501916,0.8282944,0.16379766,0.5337139,0.8296504,0.16158475,0.532473,0.8308807,0.1591514,0.5311127,0.83222,0.15845853,0.53023285,0.832913,0.15724926,0.5295549,0.83357316,0.15624873,0.52887595,0.83419216,0.15463425,0.52600664,0.8363045,0.15220745,0.52554333,0.8370407,0.15178053,0.5252483,0.8373034,0.15079336,0.5237645,0.83841044,0.15032795,0.52317995,0.83885884,0.14980163,0.5219592,0.83971316,0.15098873,0.5187878,0.841464,0.15237825,0.51551855,0.8432209,0.15237738,0.511791,0.84548867,0.15122655,0.5100321,0.8467572,0.15038133,0.50874203,0.84768325,0.14700495,0.5051639,0.8504111,0.1439184,0.49691257,0.85578346,0.1531708,0.44700903,0.88131815,0.21623598,0.39265054,0.8939058,0.24743408,0.39531687,0.88459086,0.37030822,0.48072505,0.79484296,0.36572707,0.49349043,0.7891203,0.33447164,0.5330803,0.77714485,0.33159727,0.53481615,0.77718395,0.30704358,0.541696,0.7824894,0.23737364,0.51898885,0.8211604,0.15612824,0.528227,0.83462584,0.15696134,0.42786393,0.8901099,0.16866402,0.41550884,0.89381474,0.252636,0.39787203,0.88197106,0.31680316,0.36662376,0.87477016,0.35963815,0.34642482,0.8664007,0.38192165,0.3419536,0.85860556,0.3903151,0.38179588,0.8377864,0.37110105,0.47728458,0.7965447,0.3671201,0.4905428,0.79031044,0.35142082,0.5298679,0.7718441,0.34665006,0.53005576,0.77386993,0.29454452,0.51795995,0.8030946,0.25670597,0.5126433,0.8193283,0.2258116,0.5274634,0.81901866,0.18555894,0.54172397,0.8198189,0.15551299,0.52699345,0.83551997,0.14823662,0.5058425,0.8497937,0.15343156,0.44823983,0.88064736,0.20636278,0.39540535,0.8950246,0.21430716,0.3936239,0.89394224,0.305055,0.37237886,0.8765132,0.38252363,0.33785573,0.8599588,0.3594933,0.34744626,0.8660518,0.38968015,0.38541532,0.8364236,0.37188816,0.47383678,0.7982342,0.36119223,0.50303614,0.78517187,0.35898554,0.5200381,0.7750417,0.25878006,0.51170456,0.8192626,0.28021544,0.50438344,0.8167476,0.22742347,0.52482975,0.8202635,0.18082769,0.54213506,0.820604,0.1487348,0.5064152,0.8493654,0.17540725,0.41364524,0.8933811,0.18180275,0.41174263,0.8929814,0.35545158,0.35040173,0.86652917,0.32826528,0.3628852,0.8720988,0.30100486,0.37530375,0.87666595,0.38598806,0.36378348,0.8477469,0.3726696,0.4703817,0.7999115,0.35959986,0.5180146,0.7761113,0.2950462,0.5162136,0.80403435,0.23296368,0.52042824,0.8215122,0.25657117,0.5124282,0.8195051,0.22915536,0.5229613,0.8209746,0.16858578,0.5376668,0.8261315,0.20983715,0.4012336,0.89161646,0.32435453,0.36480817,0.8727595,0.2990463,0.37626034,0.8769261,0.35350263,0.35136834,0.86693496,0.29512906,0.37817228,0.8774307,0.26587582,0.39145815,0.8809487,0.38903925,0.3890289,0.8350479,0.3856919,0.3656082,0.84709644,0.37344527,0.4669195,0.80157644,0.3150244,0.5246727,0.79087186,0.23099162,0.5214031,0.82145095,0.19002195,0.53756475,0.82153255,0.15272555,0.5141524,0.8439919,0.15468362,0.44711727,0.8809989,0.19731571,0.40935275,0.89078444,0.21759616,0.4000329,0.89029527,0.1770986,0.4186301,0.89072156,0.32044265,0.36672956,0.8733991,0.29317033,0.37912765,0.87767506,0.3515531,0.35233456,0.86733544,0.2892528,0.38103718,0.8781478,0.25804392,0.39525422,0.8815823,0.38839233,0.3926365,0.83365935,0.38539428,0.3674315,0.84644276,0.37421525,0.46345004,0.80322915,0.34780934,0.5181382,0.78138435,0.29484782,0.5144952,0.8052077,0.3149464,0.5238189,0.79146856,0.19975065,0.5295593,0.82441896,0.15283227,0.5130161,0.84466374,0.1455525,0.49449456,0.856907,0.1947233,0.428793,0.8821674,0.21623953,0.4098218,0.88616395,0.17341356,0.4475771,0.87726986,0.3177398,0.3680556,0.87382865,0.2878997,0.3816962,0.8783062,0.35020614,0.35300162,0.867609,0.2851935,0.38301358,0.8786155,0.38773948,0.39623812,0.83225805,0.38509515,0.36925337,0.8457858,0.37497944,0.45997357,0.8048694,0.34799442,0.5176191,0.78164595,0.29396522,0.5120531,0.8070849,0.31454173,0.52260643,0.79243046,0.20073046,0.52907485,0.82449204,0.1461394,0.49344087,0.85741436,0.19319761,0.43808302,0.87792826,0.1726835,0.45218042,0.8750505,0.2154526,0.41451797,0.8841691,0.17121398,0.46135098,0.8705406,0.34998983,0.35452965,0.8670731,0.35006204,0.35402042,0.86725205,0.38222364,0.33990502,0.8592844,0.31760266,0.36906803,0.8734514,0.28512907,0.38351667,0.87841696,0.38708055,0.39983428,0.8308437,0.3847945,0.3710742,0.8451255,0.37573788,0.45648992,0.8064974,0.3507743,0.5119685,0.7841209,0.29067388,0.50736356,0.81122804,0.31298757,0.52028096,0.7945731,0.22427806,0.5211241,0.82348585,0.19638152,0.52942055,0.825317,0.25223598,0.51277816,0.8206312,0.15752862,0.51489335,0.84265625,0.19290851,0.43924215,0.8774125,0.17107348,0.46192306,0.8702648,0.2153049,0.4151048,0.8839297,0.1707924,0.46306655,0.86971223,0.14901401,0.48656094,0.8608445,0.34977248,0.35605735,0.86653465,0.34984502,0.35554823,0.8667144,0.31746507,0.37008047,0.873073,0.28506452,0.38401973,0.8782181,0.38641578,0.40342364,0.8294168,0.38449243,0.37289324,0.84446204,0.372537,0.47070432,0.79978347,0.3764907,0.4529985,0.8081133,0.3514326,0.51082534,0.7845716,0.28914672,0.5062411,0.8124741,0.31225523,0.5197248,0.795225,0.19648749,0.52884734,0.8256593,0.19645219,0.5290384,0.8255452,0.16871355,0.536907,0.8265994,0.22435516,0.5207397,0.823708,0.2522776,0.5125848,0.8207392,0.1475232,0.49043146,0.8589027,0.15823103,0.5134111,0.84342873,0.19273923,0.43972936,0.87720567,0.17070964,0.4633069,0.8696004,0.21521875,0.4153514,0.8838349,0.17054415,0.46378753,0.86937666,0.14869222,0.4875084,0.86036396,0.3538049,0.4020371,0.8445047,0.3512702,0.3714873,0.8594222,0.36915213,0.38751355,0.8447248,0.320604,0.40064967,0.8583082,0.3359314,0.38611677,0.8591064,0.36660525,0.35676497,0.8592552,0.28686383,0.3992612,0.870804,0.30214965,0.3847189,0.87217945,0.37292576,0.4689744,0.8006181,0.37723762,0.4495009,0.80971646,0.3289475,0.49725857,0.8028247,0.33188197,0.515282,0.7901512,0.30907938,0.50175655,0.8079049,0.34873763,0.49274725,0.7972341,0.1962483,0.52818435,0.8261403,0.22420381,0.5202951,0.82403016,0.19640781,0.5286264,0.8258197,0.2522059,0.5123612,0.8209008,0.15882686,0.5119726,0.84419084,0.22621648,0.42068985,0.8785477,0.20004041,0.44324458,0.8737953,0.2188967,0.4171325,0.8820911,0.1741764,0.46552205,0.86772794,0.38574508,0.40700677,0.8279772,0.3533467,0.4047268,0.84341115,0.32032865,0.4024443,0.8575711,0.3536525,0.402934,0.844141,0.2867413,0.40015942,0.870432,0.3733131,0.4672428,0.80144966,0.3779787,0.44599646,0.81130713,0.28528124,0.50434804,0.81501395,0.30621555,0.5003328,0.80987597,0.3270629,0.49630675,0.8041825,0.30812606,0.50128216,0.8085633,0.3478081,0.49227002,0.7979347,0.18234575,0.49174467,0.85143244,0.17535666,0.5140577,0.83963966,0.21551944,0.49596933,0.8411693,0.19176713,0.51613986,0.8347605,0.24816003,0.5001823,0.82959884,0.26021707,0.42295164,0.86798555,0.2770399,0.42408165,0.8622086,0.2672881,0.4477114,0.85329455,0.29373583,0.4252109,0.85610455,0.32672146,0.42746738,0.8429262,0.35630804,0.41726357,0.83602375,0.29703245,0.43761712,0.84868306,0.20782094,0.4677285,0.8590929,0.23388724,0.44547933,0.8642019,0.23753536,0.45774895,0.856763,0.17819121,0.47764868,0.86029047,0.24327378,0.4218211,0.8734328,0.37369898,0.4655093,0.8022781,0.37871397,0.44248506,0.8128854,0.28295407,0.5040168,0.8160294,0.30448475,0.5000837,0.810682,0.32591948,0.4961402,0.80474925,0.30563885,0.5002498,0.8101451,0.34724203,0.4921865,0.7982327,0.21692038,0.49578506,0.8409178,0.24885324,0.5000904,0.82944655,0.18305251,0.49165228,0.85133415,0.2502393,0.49990663,0.8291403,0.29689068,0.4384979,0.8482779,0.32626593,0.430123,0.841751,0.29681966,0.43893817,0.8480751,0.3264181,0.42923817,0.84214354,0.35574493,0.42037773,0.8347025,0.3558256,0.4199331,0.8348918,0.38506848,0.4105836,0.8265249,0.29667744,0.43981844,0.8476687,0.26702532,0.44946286,0.8524557,0.23735535,0.4590552,0.8561138,0.2374154,0.45861986,0.85633034,0.20771308,0.46859428,0.858647,0.17814372,0.47807905,0.86006117,0.3559868,0.4190436,0.83527,0.37408346,0.463774,0.8031035,0.37944347,0.4389669,0.81445116,0.26087078,0.48786557,0.8330268,0.23892093,0.4918304,0.8372691,0.20523714,0.487687,0.8485512,0.17706321,0.4875977,0.8549252,0.23318318,0.48777628,0.841249,0.28826967,0.48795485,0.8238936,0.31534982,0.4880441,0.8138596,0.34208173,0.4881334,0.80293584,0.29653496,0.44069815,0.8472616,0.32580757,0.4327748,0.8405685,0.29646358,0.4411379,0.84705764,0.32596067,0.4318912,0.8409634,0.3551776,0.4234868,0.83337134,0.35525888,0.423043,0.8335621,0.38438594,0.4141542,0.82505983,0.29632068,0.442017,0.8466493,0.26676154,0.45121247,0.8516135,0.23717484,0.4603604,0.8554627,0.23723507,0.4599255,0.85567987,0.207605,0.4694597,0.8582003,0.17809619,0.47850934,0.8598317,0.35542125,0.42215493,0.833943,0.37446648,0.4620369,0.8039258,0.3801671,0.43544206,0.8160044,0.29319432,0.460542,0.8378175,0.2769882,0.47426084,0.8356759,0.26387268,0.46964023,0.8425018,0.31897303,0.4698208,0.82311887,0.28994235,0.47886854,0.8286244,0.3440643,0.479048,0.8075474,0.23453888,0.47868893,0.8460783,0.24920455,0.47417077,0.84442836,0.3370569,0.44680363,0.8287093,0.32245946,0.451395,0.8320231,0.34791857,0.46072346,0.81650877,0.35838172,0.47453097,0.80397946,0.30783674,0.45597458,0.83505905,0.3767344,0.45157754,0.80879474,0.36615372,0.4375855,0.82124925,0.38064188,0.4329592,0.81710345,0.3726652,0.47000137,0.8001371,0.35162354,0.44220048,0.82511795,0.3748481,0.46029806,0.8047451,0.38088492,0.43191046,0.8175452,0.3836975,0.41771832,0.82358223,0.3801028,0.43560702,0.8159463,0.37636003,0.45332515,0.80799097,0.3724706,0.47086596,0.7997193,0.37522823,0.45855755,0.8055611,0.38159683,0.42837232,0.81907326,0.38300318,0.42127615,0.8220918,0.3759842,0.45507103,0.8071841,0.37560692,0.45681506,0.8063742,0.38230294,0.4248275,0.8205889,0.16535395,0.5479268,0.8200209,0.16285527,0.5486082,0.82006544,0.16336855,0.54882336,0.8198192,0.16314758,0.5491517,0.8196434,0.16150273,0.5500324,0.81937855,0.1602044,0.5528519,0.81773424,0.15828127,0.55377406,0.8174848,0.1546897,0.55353206,0.8183357,0.15467398,0.5546849,0.81755775,0.15102491,0.5542997,0.81850064,0.14621471,0.5641897,0.81259537,0.15059721,0.5670494,0.8097997,0.15255633,0.56897044,0.80808365,0.15464152,0.57192147,0.8056003,0.15561803,0.5740573,0.80389136,0.15752168,0.57700664,0.8014052,0.15626341,0.5783575,0.80067736,0.15586993,0.58004713,0.79953104,0.15525022,0.58143604,0.7986423,0.15514114,0.58260304,0.7978126,0.15180476,0.5845622,0.797021,0.14860894,0.59369457,0.790849,0.15061557,0.5947262,0.7896934,0.15244986,0.5982269,0.78669155,0.1534792,0.59960276,0.78544295,0.15437439,0.60005826,0.78491944,0.15350814,0.6013507,0.7840998,0.15297821,0.6028252,0.7830705,0.151603,0.6026409,0.78347975,0.14932342,0.60084265,0.7852965,0.14674869,0.60013324,0.78632367,0.1461878,0.59890276,0.7873656,0.14311446,0.5987649,0.7880348,0.14351845,0.5999369,0.7870693,0.14120913,0.60228723,0.78569084,0.14099291,0.60468054,0.7838893,0.13941762,0.60531163,0.783684,0.13804707,0.6054018,0.7838569,0.13651425,0.6053516,0.7841641,0.13664122,0.6047776,0.78458476,0.13693048,0.60434383,0.78486854,0.13533707,0.6047579,0.784826,0.13569131,0.6053584,0.7843017,0.13590729,0.6061131,0.78368115,0.13478035,0.6064086,0.7836472,0.13379255,0.60654885,0.78370786,0.12656304,0.6045244,0.7864681,0.12548654,0.60398525,0.78705454,0.12250797,0.60178167,0.7892088,0.11919951,0.60093933,0.7903565,0.11957401,0.6001952,0.7908651,0.11846811,0.5988489,0.7920514,0.11764509,0.59847474,0.7924567,0.11680774,0.5966804,0.79393226,0.11501309,0.5954576,0.7951114,0.11473094,0.59508854,0.79542845,0.11478254,0.5947543,0.795671,0.11614619,0.59419984,0.7958873,0.11691693,0.59296876,0.79669225,0.11660037,0.5904475,0.7986089,0.11643563,0.5885048,0.8000655,0.11621808,0.585956,0.8019657,0.11633799,0.5849832,0.80265814,0.1169613,0.5838145,0.80341816,0.11754904,0.58290225,0.80399454,0.11780957,0.5818707,0.80470335,0.11789515,0.57932556,0.80652505,0.11865881,0.577852,0.80746955,0.11928405,0.5764873,0.8083525,0.11829841,0.5747856,0.809708,0.1179518,0.57328314,0.8108229,0.11785392,0.5711284,0.81235635,0.117860615,0.5697684,0.8133098,0.11532818,0.5665888,0.81589,0.1140184,0.5659559,0.8165132,0.11251306,0.56511533,0.8173038,0.11143952,0.56286967,0.81899875,0.10883216,0.5610002,0.82063043,0.10830719,0.56035733,0.821139,0.108177975,0.558853,0.8221805,0.10842689,0.55676645,0.82356226,0.1090639,0.55510455,0.8245993,0.11062179,0.55264455,0.8260429,0.11203919,0.54993135,0.827661,0.11248036,0.5485633,0.8285086,0.112979405,0.5480466,0.8287826,0.114716046,0.5471559,0.8291325,0.117696844,0.545942,0.8295148,0.12154339,0.54018575,0.83272237,0.12217594,0.5379413,0.83408165,0.124989316,0.5361555,0.83481425,0.12759107,0.53450644,0.83547795,0.13008103,0.53305507,0.83602107,0.13685833,0.5206175,0.8427498,0.13816056,0.516912,0.8448158,0.13969946,0.51253617,0.8472253,0.14057419,0.5100445,0.8485833,0.14163734,0.5070177,0.85021883,0.16247472,0.5482818,0.8203592,0.1576003,0.5524272,0.8185269,0.15512435,0.55214655,0.819189,0.15043491,0.58495075,0.79699564,0.14717992,0.59234136,0.7921299,0.14484519,0.5980705,0.78824586,0.1197021,0.59949774,0.7913747,0.11987655,0.54356575,0.83076227,0.13278791,0.531478,0.8365994,0.13556075,0.524303,0.8406721,0.15662248,0.55221194,0.81885976,0.14878158,0.5552548,0.8182641,0.14516518,0.56323874,0.8134428,0.13610806,0.6037,0.7855068,0.11636479,0.5673252,0.81523085,0.11663653,0.593674,0.7962079,0.11827659,0.54544854,0.8297569,0.13438454,0.5276401,0.838771,0.14452283,0.5622511,0.8142401,0.14678745,0.59137833,0.7929219,0.11723489,0.5685085,0.8142813,0.13320246,0.5309898,0.83684343,0.16448835,0.54770154,0.8203454,0.14890467,0.58619213,0.7963706,0.14677884,0.59025556,0.79375964,0.16295683,0.5480537,0.82041585,0.14429216,0.5612217,0.81499076,0.14745095,0.5882429,0.7951279,0.13394459,0.53375536,0.8349635,0.13187489,0.5805201,0.8034957,0.13436379,0.5495159,0.82460815,0.13200685,0.5799228,0.80390525,0.14456342,0.5600072,0.8157777,0.1345686,0.5613448,0.816568,0.14214459,0.54180074,0.8284002,0.12708426,0.58058065,0.80422366,0.1472133,0.54112166,0.82795864,0.14933836,0.5387122,0.8291485,0.1464834,0.55702126,0.81747776,0.14817889,0.5396073,0.8287744,0.15864864,0.5690167,0.806877,0.16068214,0.5700514,0.8057436,0.16063048,0.57074505,0.8052627,0.1602274,0.57100457,0.8051589,0.15894166,0.569919,0.8061823,0.15773366,0.55509746,0.81669265,0.15809955,0.5551648,0.81657606,0.1585606,0.55551136,0.816251,0.15912233,0.55607885,0.8157551,0.15902822,0.5563685,0.81557596,0.15877041,0.556634,0.81544495,0.1572768,0.5576453,0.8150434,0.15476969,0.557581,0.81556714,0.15466833,0.5571019,0.8159137,0.15471086,0.5554093,0.8170588,0.15524815,0.5550982,0.8171683,0.15564333,0.55510104,0.8170912,0.15673502,0.55465794,0.8171834,0.15709439,0.55470186,0.8170846,0.48512325,-0.26965028,0.8318318,0.4872337,-0.26964375,0.8305995,0.48732382,-0.267337,0.831292,0.48726508,-0.26470983,0.8321667,0.48675406,-0.26368564,0.83279073,0.48636565,-0.2586561,0.83459294,0.48967215,-0.25725973,0.8330897,0.4910969,-0.25656778,0.8324643,0.49682957,-0.25465798,0.8296443,0.50008434,-0.25366727,0.82799065,0.50306857,-0.25270602,0.82647544,0.5062247,-0.25168338,0.8248588,0.5075431,-0.25100043,0.8242564,0.5091586,-0.25031403,0.8234685,0.5129814,-0.24893422,0.821512,0.51408285,-0.2484621,0.8209661,0.51627016,-0.2476894,0.81982625,0.51735455,-0.24738887,0.81923324,0.5215736,-0.24580811,0.8170308,0.52639556,-0.24399525,0.8144778,0.52808195,-0.24336052,0.8135755,0.3990765,-0.19085759,0.8968341,0.3991687,-0.19397363,0.8961242,0.39923018,-0.19621356,0.8956091,0.39939559,-0.19721463,0.89531535,0.3994341,-0.19774927,0.8951802,0.39911497,-0.19832732,0.8951947,0.39877507,-0.19967023,0.8950476,0.3982415,-0.20085919,0.8950191,0.3979249,-0.2016907,0.894973,0.3976497,-0.20540021,0.8942513,0.3972783,-0.20770499,0.893884,0.3970328,-0.20992191,0.8934751,0.39707926,-0.21511322,0.89221877,0.39616758,-0.21718511,0.8921221,0.3954746,-0.21875864,0.89204514,0.3949525,-0.22058277,0.89182717,0.39480156,-0.22153191,0.8916588,0.36830598,-0.22496773,0.9020755,0.36467138,-0.22496773,0.90355086,0.36444256,-0.2276174,0.9029795,0.36396125,-0.23306748,0.9017826,0.36346683,-0.23851198,0.9005575,0.36296424,-0.24394727,0.89930344,0.36192182,-0.25479484,0.8967118,0.36138356,-0.26020664,0.8953739,0.36083397,-0.2656104,0.8940078,0.36027306,-0.27100572,0.8926137,0.35986036,-0.27489188,0.89159125,0.36024255,-0.28004348,0.889832,0.36133483,-0.28564104,0.88760704,0.36194658,-0.28615877,0.887191,0.36569542,-0.2892848,0.88463616,0.3668463,-0.29087353,0.88363814,0.36923337,-0.29362822,0.8817308,0.37240642,-0.2971373,0.87921715,0.37548095,-0.30027997,0.8768386,0.40907496,-0.30644503,0.8595052,0.4106448,-0.306518,0.8587302,0.41193992,-0.3060962,0.8582603,0.4133873,-0.30666244,0.85736173,0.4149877,-0.30821946,0.85602915,0.41692582,-0.30851611,0.85497993,0.4220515,-0.30784315,0.8527046,0.42545632,-0.3093915,0.85044914,0.42841098,-0.30970582,0.84885,0.43218005,-0.3083264,0.8474404,0.43591926,-0.304504,0.8469072,0.43943137,-0.30090418,0.8463786,0.4429702,-0.29674342,0.8460028,0.46126145,-0.28454974,0.8403983,0.46125954,-0.28455305,0.8403982,0.46257558,-0.2827453,0.840285,0.46320787,-0.28076985,0.84059906,0.46359354,-0.2780237,0.8412989,0.4647814,-0.2754326,0.84149575,0.46574947,-0.27480006,0.8411673,0.46700117,-0.27397895,0.840741,0.47753525,-0.26967004,0.83620465,0.48140386,-0.26966017,0.83398664,0.49317443,-0.25576878,0.8314814,0.3979982,-0.20321453,0.8945956,0.37241808,-0.22496773,0.9003856,0.3624487,-0.24937502,0.8980217,0.36355007,-0.28718582,0.88620293,0.41920573,-0.30755132,0.85421234,0.44522238,-0.2933789,0.84599406,0.45564935,-0.2867385,0.8427127,0.39726868,-0.21389462,0.89242744,0.3958844,-0.22421859,0.8905063,0.37670925,-0.22496773,0.8985987,0.45192048,-0.28852597,0.8441094,0.4738739,-0.27054638,0.83800244,0.3813648,-0.22496773,0.8966328,0.47076994,-0.27188504,0.8393177,0.3860101,-0.22496773,0.8946428,0.36247912,-0.2539237,0.8967338,0.37633353,-0.29023337,0.8798509,0.4482062,-0.29063857,0.84536403,0.48622015,-0.2619063,0.83366364,0.51082313,-0.24903907,0.822824,0.39064503,-0.22496773,0.89262867,0.37881467,-0.26419204,0.88696223,0.38560832,-0.2823415,0.87840164,0.37175635,-0.2459485,0.8951573,0.42518744,-0.29603857,0.85532266,0.46411815,-0.2762435,0.841596,0.50948966,-0.2468314,0.82431465,0.4772967,-0.19109759,0.8577118,0.3938724,-0.22496773,0.8912093,0.39081237,-0.28280258,0.87595004,0.38232318,-0.26450107,0.88536334,0.38734472,-0.28249523,0.87758785,0.37352934,-0.2461038,0.89437616,0.42372707,-0.2958245,0.85612106,0.48609173,-0.25994673,0.83435154,0.5084599,-0.2472319,0.8248303,0.5078307,-0.15922171,0.84661466,0.47722614,-0.18979168,0.858041,0.45783287,-0.21871956,0.8617138,0.39472115,-0.22492115,0.8908455,0.42815337,-0.27498895,0.86085176,0.41360098,-0.2880219,0.8636999,0.40748906,-0.25926602,0.87563336,0.4033226,-0.2802,0.8711021,0.38624212,-0.24347417,0.88968384,0.50611657,-0.24827884,0.8259562,0.50822884,-0.17466441,0.84332424,0.4932627,-0.16297917,0.8544762,0.5228767,-0.18632522,0.831795,0.47867796,-0.18946289,0.85730463,0.45767352,-0.21889427,0.8617542,0.4012211,-0.24213158,0.8833991,0.42224726,-0.25792918,0.8690108,0.43543038,-0.27432355,0.85740715,0.40867218,-0.2414601,0.8801614,0.4861732,-0.25899693,0.8345994,0.5056155,-0.2470048,0.8266447,0.50229853,-0.19330138,0.84281117,0.51987445,-0.19563116,0.83154017,0.49037346,-0.17232542,0.85430545,0.5137443,-0.21418935,0.8307766,0.48179695,-0.18107401,0.8573704,0.45734778,-0.2191005,0.8618747,0.4126762,-0.21513651,0.8851071,0.3957553,-0.22475517,0.8904284,0.4091841,-0.24137738,0.87994623,0.42275372,-0.2578467,0.868789,0.4356808,-0.27428263,0.857293,0.40944,-0.24133608,0.87983847,0.50562596,-0.24683638,0.8266887,0.48214406,-0.18100026,0.8571908,0.45682877,-0.21928509,0.8621029,0.4132096,-0.21524803,0.88483113,0.42282325,-0.25758088,0.8688341,0.40947354,-0.24120246,0.87985957,0.43571693,-0.27415022,0.85731703,0.4095405,-0.24093533,0.8799015,0.50548387,-0.22278987,0.8335771,0.45610937,-0.2193765,0.86246055,0.41701114,-0.21583472,0.8829027,0.4481707,-0.2626958,0.8544787,0.43114024,-0.24991305,0.8669842,0.43987504,-0.27033633,0.8564042,0.41370597,-0.23708661,0.8789979,0.49599501,-0.24076408,0.83427906,0.486234,-0.23468247,0.84172475,0.4551092,-0.21934323,0.8629972,0.4346502,-0.22872837,0.8710698,0.45189422,-0.24158202,0.85873735,0.4584719,-0.25854704,0.8502688,0.4450558,-0.22454295,0.8668943,0.485933,-0.23718505,0.841197,0.46845064,-0.253392,0.8463725,0.46914148,-0.25361377,0.8459233,0.4735818,-0.2541091,0.8432964,0.47398546,-0.2539764,0.8431096,0.47418267,-0.25359392,0.84311384,-0.17661718,0.14701703,0.9732381,-0.17655979,0.14755316,0.9731674,-0.17786022,0.14773178,0.9729034,-0.17845064,0.14748065,0.9728334,-0.1802376,0.14542878,0.9728129,-0.18208352,0.14469266,0.9725788,-0.18290396,0.14487903,0.97239715,-0.18349053,0.14473052,0.97230875,-0.1837282,0.14546499,0.9721542,-0.18329017,0.14609312,0.9721428,-0.1823995,0.14832692,0.971972,-0.18021078,0.15057589,0.97203445,-0.18015382,0.15104598,0.9719721,-0.18184781,0.15415129,0.97116876,-0.18179485,0.15606913,0.9708723,-0.18192728,0.15745452,0.9706238,-0.18364067,0.15978603,0.96991986,-0.18303736,0.16093434,0.96984404,-0.18293917,0.16142048,0.96978176,-0.18305838,0.1618494,0.96968776,-0.1841726,0.16307364,0.96927166,-0.1874791,0.16782908,0.9678249,-0.18883367,0.16997433,0.9671869,-0.1899524,0.17095175,0.9667955,-0.19100447,0.17236479,0.96633726,-0.1913921,0.17326537,0.9660995,-0.19252689,0.17358857,0.96581596,-0.19586891,0.17357004,0.9651471,-0.19987938,0.17354831,0.9643284,-0.20326225,0.17352812,0.9636246,-0.20722437,0.17150588,0.9631427,-0.20946513,0.17244111,0.9624907,-0.21200876,0.17189719,0.962031,-0.21326582,0.17127839,0.9618635,-0.21369864,0.16998936,0.9619961,-0.21431382,0.16857503,0.96210814,-0.2148725,0.1679929,0.96208537,-0.21512727,0.1673577,0.96213907,-0.21546027,0.16677967,0.962165,-0.21598013,0.16611329,0.96216375,-0.21657957,0.16477527,0.96225905,-0.21915737,0.16164246,0.96220666,-0.22132571,0.1609721,0.9618227,-0.22206762,0.15896659,0.96198523,-0.22433297,0.15725426,0.96174103,-0.22513841,0.15748395,0.9615152,-0.22606991,0.15764299,0.9612706,-0.2270636,0.15728275,0.96109533,-0.22674936,0.15621725,0.9613432,-0.22482575,0.15467082,0.96204484,-0.22325319,0.15438533,0.9624568,-0.22346267,0.15395753,0.9624768,-0.22575288,0.15372938,0.9619787,-0.22612303,0.15239878,0.9621034,-0.22620322,0.15118998,0.9622752,-0.22549191,0.14913678,0.9627625,-0.22447313,0.14934152,0.96296877,-0.2238899,0.14997931,0.9630055,-0.22162877,0.1497965,0.96355677,-0.22077444,0.15050589,0.96364236,-0.2209684,0.14921682,0.9637984,-0.22236788,0.14826621,0.96362317,-0.22395347,0.14651045,0.9635245,-0.22516982,0.14681304,0.9631949,-0.22590768,0.14753795,0.96291137,-0.22687885,0.14759526,0.9626742,-0.22710656,0.14659642,0.96277314,-0.22596797,0.14497516,0.9632864,-0.22514974,0.1428811,0.9637907,-0.2230008,0.1426449,0.9643252,-0.22147101,0.14012663,0.9650467,-0.22083358,0.13669482,0.9656848,-0.22034667,0.13603891,0.9658886,-0.2191987,0.13556188,0.96621686,-0.21781537,0.13426057,0.9667112,-0.21567321,0.13399631,0.96722806,-0.2141279,0.13490741,0.96744466,-0.21468179,0.1333932,0.96753186,-0.21342896,0.13130507,0.9680945,-0.21428949,0.12953079,0.9681435,-0.214401,0.12855813,0.96824837,-0.1987108,0.12095063,0.9725661,-0.19804892,0.12025018,0.972788,-0.19713067,0.121024236,0.9728785,-0.1938382,0.12589796,0.9729216,-0.19207828,0.12731388,0.97308636,-0.19067113,0.12877104,0.97317135,-0.18919678,0.12988657,0.9733109,-0.1870887,0.13118772,0.9735438,-0.18382895,0.13461612,0.97369677,-0.18307376,0.13501301,0.97378415,-0.18250582,0.1373829,0.97355926,-0.18069065,0.14133826,0.97333163,-0.17851499,0.14189668,0.9736517,-0.1779961,0.14242059,0.97367024,-0.17717342,0.14454332,0.97350746,-0.18129948,0.14462684,0.9727351,-0.18098569,0.15236084,0.9716122,-0.18379393,0.1578424,0.970209,-0.18589805,0.16533081,0.9685596,-0.22258817,0.15821943,0.96198815,-0.21463732,0.13490918,0.9673315,-0.21207245,0.12778813,0.96886295,-0.20180453,0.12340356,0.9716206,-0.18163407,0.1404026,0.9732914,-0.18416406,0.15854347,0.9700245,-0.20350234,0.17232029,0.96379066,-0.21784894,0.16287099,0.96229666,-0.22343644,0.15763463,0.9618875,-0.22195667,0.14168414,0.9647076,-0.19574769,0.1235092,0.9728455,-0.20508035,0.1250482,0.9707239,-0.18391086,0.14496501,0.9721944,-0.18412842,0.1580764,0.9701075,-0.22062321,0.15004931,0.9637482,-0.19918196,0.15678123,0.96733975,-0.20031112,0.15487787,0.96741325,-0.21531832,0.12897307,0.9679896,-0.21505974,0.12942427,0.96798694,-0.21458131,0.13113359,0.967863,-0.2147582,0.13195218,0.96771246,-0.21528092,0.13238394,0.9675374,-0.21646538,0.13290006,0.96720237,-0.22050853,0.13263728,0.9663246,-0.22217429,0.131752,0.9660642,-0.21641086,0.13008514,0.9675971,-0.17570631,0.14761636,0.97331226,-0.17304318,0.14719826,0.9738526,-0.17286618,0.14659889,0.97397435,-0.16841201,0.14814065,0.9745213,-0.16778485,0.14840615,0.974589,-0.16726433,0.14701456,0.9748894,-0.16694397,0.14709969,0.9749315,-0.1660303,0.14735249,0.9750494,-0.1656999,0.14670514,0.97520316,-0.16515161,0.14612341,0.97538346,-0.16361065,0.1451522,0.97578806,-0.16371392,0.14366543,0.9759908,-0.16351469,0.14221893,0.976236,-0.1629064,0.14102186,0.9765113,-0.16281618,0.14007352,0.9766629,-0.16259885,0.13957469,0.97677046,-0.16245772,0.1386186,0.9769301,-0.16256365,0.13759142,0.97705764,-0.16240855,0.13686876,0.97718495,-0.16212086,0.13069856,0.97807705,-0.16297033,0.1295316,0.9780911,-0.1630494,0.12907024,0.9781389,-0.16256566,0.12876856,0.9782592,-0.16182493,0.12870768,0.97839,-0.15883291,0.12764104,0.9790199,-0.15812893,0.12669097,0.97925717,-0.15748854,0.1262091,0.97942257,-0.15720597,0.1256088,0.9795452,-0.15608728,0.12577449,0.9797028,-0.15477991,0.12635277,0.9798358,-0.15450811,0.12662499,0.9798435,-0.15412521,0.12647872,0.9799227,-0.15329207,0.12641875,0.9800612,-0.15268774,0.12745932,0.9800207,-0.15219212,0.12865613,0.9799414,-0.1511608,0.12995158,0.9799301,-0.15065643,0.13045178,0.9799413,-0.15050954,0.13127978,0.9798533,-0.14783342,0.13358921,0.9799486,-0.1476042,0.13269056,0.9801052,-0.14689687,0.1320063,0.9803039,-0.14629282,0.13153835,0.98045707,-0.14531222,0.13228847,0.98050195,-0.14397724,0.13209327,0.98072517,-0.14193621,0.13150786,0.9811013,-0.14148122,0.13208736,0.9810892,-0.13987483,0.13503663,0.98091805,-0.13989465,0.13613091,0.980764,-0.13908747,0.13890383,0.9804899,-0.13835174,0.13968696,0.9804827,-0.13796079,0.14052995,0.9804173,-0.13805579,0.14167742,0.9802388,-0.13859181,0.14210589,0.9801011,-0.1384857,0.14772849,0.9792844,-0.13685104,0.147425,0.9795599,-0.13541196,0.14724885,0.9797864,-0.1346395,0.14725144,0.97989243,-0.13403656,0.14646234,0.9800934,-0.13322398,0.14565557,0.9803244,-0.1324903,0.14566147,0.98042285,-0.13222364,0.14626175,0.98036957,-0.13233829,0.14888817,0.9799586,-0.13279942,0.1502776,0.9796841,-0.13387373,0.1516163,0.97933155,-0.1367023,0.15275835,0.97876316,-0.1357818,0.15672907,0.97826344,-0.13363856,0.15782815,0.9783818,-0.13399845,0.15841718,0.9782374,-0.1346607,0.15904744,0.9780442,-0.1359892,0.15968342,0.9777566,-0.13563456,0.16175352,0.9774656,-0.13552779,0.16359912,0.9771732,-0.13968152,0.16805589,0.97583115,-0.13959128,0.1716151,0.9752244,-0.13971098,0.1731874,0.9749293,-0.13937429,0.17402752,0.97482777,-0.13835472,0.17480119,0.9748346,-0.13723569,0.17580123,0.9748129,-0.13683015,0.17644054,0.97475445,-0.13652647,0.1775921,0.97458786,-0.13669638,0.17843154,0.9744108,-0.13704453,0.17917784,0.97422487,-0.14215426,0.18784328,0.9718575,-0.14186133,0.18902841,0.9716705,-0.14194416,0.18994807,0.97147906,-0.14234255,0.19064839,0.97128356,-0.14346062,0.19132169,0.9709866,-0.14464134,0.19163795,0.9707491,-0.1461717,0.19075207,0.9706943,-0.14433636,0.19561599,0.97000074,-0.14367701,0.19602714,0.9700156,-0.14324301,0.19662046,0.9699597,-0.14319302,0.19708505,0.9698728,-0.14333436,0.19742256,0.9697833,-0.14439134,0.19786616,0.969536,-0.14601626,0.19899295,0.9690619,-0.14689866,0.19911316,0.96890384,-0.14762361,0.19962424,0.9686885,-0.14835499,0.20138179,0.96821284,-0.1487108,0.201719,0.96808803,-0.15008776,0.20461781,0.9672669,-0.1499946,0.2065886,0.9668623,-0.15150218,0.20976436,0.96594304,-0.1520583,0.21176124,0.9654198,-0.15279877,0.21381302,0.96485054,-0.15350886,0.21477528,0.964524,-0.15478322,0.2155867,0.9641393,-0.1563629,0.21614751,0.96375877,-0.1577791,0.21627402,0.96349955,-0.15888192,0.21608676,0.96336025,-0.15939827,0.21583721,0.9633309,-0.15938331,0.21545516,0.96341896,-0.15854128,0.21415596,0.96384746,-0.15889895,0.21227011,0.9642056,-0.15968953,0.21221931,0.96408623,-0.16108088,0.21181367,0.9639439,-0.16280703,0.21102569,0.9638268,-0.1640181,0.21035421,0.96376824,-0.1699587,0.20989932,0.96283764,-0.17254755,0.21093991,0.9621495,-0.17433374,0.21154046,0.9616956,-0.17544009,0.21115898,0.9615782,-0.17599869,0.21097569,0.9615164,-0.17758754,0.21027847,0.96137697,-0.17976189,0.20774573,0.9615235,-0.1802895,0.20690793,0.96160537,-0.1807146,0.20664026,0.9615831,-0.18129662,0.2061941,0.9615693,-0.18337214,0.20849685,0.9606788,-0.18445916,0.21050338,0.9600329,-0.18537745,0.211413,0.95965606,-0.1865705,0.21145307,0.95941603,-0.18762247,0.21082665,0.9593487,-0.19490314,0.21130137,0.9577915,-0.19440544,0.21212927,0.9577096,-0.19390096,0.21335837,0.95753884,-0.19336487,0.21435496,0.9574247,-0.19286615,0.21481021,0.9574232,-0.19398135,0.2150349,0.9571474,-0.19592793,0.21518393,0.9567173,-0.19987062,0.2145189,0.95605093,-0.20120075,0.21479192,0.95571053,-0.20376973,0.21470194,0.95518637,-0.20561291,0.21433656,0.9548734,-0.20797175,0.21350825,0.9545481,-0.20975868,0.21371391,0.9541109,-0.21069857,0.2143666,0.95375735,-0.21197985,0.21432248,0.95348334,-0.21340358,0.21467037,0.9530874,-0.2149071,0.21530046,0.9526073,-0.21629246,0.21562,0.9522214,-0.21774507,0.21678063,0.95162666,-0.21844096,0.21698952,0.95141953,-0.21895157,0.21668416,0.9513717,-0.21938755,0.21629731,0.95135933,-0.22091301,0.21705772,0.950833,-0.22061855,0.21782044,0.9507269,-0.22051233,0.21839935,0.95061874,-0.22088034,0.21871458,0.95046085,-0.22179663,0.2188201,0.95022315,-0.22566465,0.21905634,0.9492575,-0.22620703,0.21920347,0.9490944,-0.23155132,0.21940224,0.9477588,-0.23168053,0.2180209,0.9480459,-0.23080517,0.21607348,0.9487051,-0.23242494,0.21238835,0.9491417,-0.23390998,0.21239918,0.94877434,-0.23455413,0.21212438,0.94867676,-0.23557259,0.21158461,0.948545,-0.23563139,0.21095239,0.9486711,-0.23487262,0.21035002,0.948993,-0.23426583,0.2095043,0.94933003,-0.23354399,0.20884183,0.9496538,-0.23896465,0.20196605,0.9497924,-0.24133182,0.20210207,0.94916475,-0.24238928,0.20158705,0.94900477,-0.24707799,0.19956665,0.9482224,-0.24837427,0.19951315,0.94789493,-0.24901485,0.19905896,0.9478223,-0.25005877,0.19775176,0.9478211,-0.25308195,0.19204521,0.94819206,-0.2540544,0.19067506,0.9482085,-0.2548272,0.18978328,0.9481801,-0.25505337,0.18797395,0.94847965,-0.25443634,0.18745582,0.9487479,-0.25381774,0.18743989,0.9489167,-0.25041163,0.18963768,0.94938487,-0.25016263,0.18844518,0.9496879,-0.24920186,0.18636988,0.95034975,-0.24897902,0.18547733,0.95058274,-0.24752416,0.18681034,0.9507017,-0.24744898,0.18626529,0.9508282,-0.24797961,0.18425706,0.9510812,-0.24796724,0.18309098,0.95130956,-0.2451698,0.17791493,0.95301527,-0.24099149,0.17585827,0.9544616,-0.23959078,0.1758348,0.95481855,-0.23889267,0.17607561,0.9549491,-0.23866063,0.17562672,0.9550897,-0.23857614,0.17447053,0.9553227,-0.2375128,0.17311016,0.955835,-0.23532659,0.17170905,0.95662814,-0.23422974,0.1714178,0.9569495,-0.23312123,0.17240672,0.9570425,-0.23335418,0.17109117,0.95722187,-0.23270845,0.16980305,0.95760834,-0.2327777,0.16744173,0.9580072,-0.23342107,0.16566363,0.9581598,-0.23135683,0.16579472,0.9586376,-0.22875524,0.16264822,0.9598003,-0.22862694,0.16185021,0.95996577,-0.22700977,0.16020001,0.96062607,-0.22659756,0.15937391,0.96086085,-0.22721224,0.15778519,0.9609779,-0.17423718,0.14814985,0.97349524,-0.17339799,0.14791052,0.97368145,-0.16666634,0.14750175,0.9749182,-0.16420399,0.14571372,0.9756047,-0.16310742,0.1418857,0.97635263,-0.16173029,0.13562271,0.9774711,-0.14003456,0.13688648,0.9806388,-0.13666666,0.16339236,0.97704923,-0.14080368,0.18117124,0.9733197,-0.1468995,0.19058554,0.97061723,-0.14532027,0.19484961,0.9700081,-0.14949287,0.20190254,0.9679294,-0.15019366,0.20232995,0.9677316,-0.16681194,0.20863676,0.96366197,-0.18237999,0.20666942,0.96126235,-0.18873803,0.20953357,0.9594132,-0.22328244,0.21881765,0.94987565,-0.23228437,0.20807664,0.9501305,-0.23614983,0.20218216,0.95045024,-0.25286633,0.1898652,0.94868845,-0.2292302,0.16367568,0.9595123,-0.16637124,0.14754054,0.9749627,-0.16162844,0.13176973,0.9780149,-0.15963869,0.12841012,0.9787882,-0.15043372,0.13234755,0.9797213,-0.13641194,0.15608595,0.9782786,-0.13783391,0.16328558,0.976903,-0.14223231,0.18651557,0.9721018,-0.16502956,0.20863676,0.9639688,-0.22064464,0.21626903,0.95107496,-0.24451706,0.20032902,0.9487253,-0.16801685,0.14846002,0.9745409,-0.16132525,0.13405207,0.9777547,-0.16134629,0.13294058,0.97790295,-0.15005337,0.13327506,0.9796539,-0.14831649,0.13377751,0.9798499,-0.13673635,0.15435588,0.97850776,-0.13880381,0.16385396,0.97667056,-0.14191118,0.18425284,0.97258013,-0.14614524,0.19384058,0.9700863,-0.16569774,0.20842259,0.9639005,-0.18225126,0.20648514,0.96132636,-0.21983564,0.21605848,0.95131016,-0.23102716,0.21462287,0.9489802,-0.23191687,0.2127031,0.94919544,-0.25221592,0.19026184,0.94878215,-0.23350637,0.17232357,0.95696366,-0.16119951,0.128946,0.97846186,-0.14051507,0.14764842,0.97900736,-0.1478526,0.1914229,0.9703076,-0.15841077,0.213435,0.9640288,-0.18183216,0.20618244,0.96147066,-0.19476314,0.21076082,0.9579391,-0.23243098,0.20340306,0.95110625,-0.25140467,0.19016728,0.94901633,-0.1492131,0.13378519,0.97971267,-0.14123861,0.14752026,0.97892255,-0.13960052,0.16497362,0.9763684,-0.141379,0.18199499,0.9730826,-0.15858091,0.2127364,0.96415526,-0.19013423,0.20833595,0.95939827,-0.19350818,0.20968685,0.9584289,-0.23152155,0.2132468,0.94917,-0.14171012,0.14704403,0.97892606,-0.14757515,0.19064581,0.9705028,-0.14791298,0.19097124,0.97038746,-0.1910033,0.2079808,0.9593027,-0.1917399,0.20817506,0.95911366,-0.13931087,0.14202659,0.9800107,-0.23046567,0.17904988,0.9564658,-0.14016198,0.14230837,0.97984844,-0.14185026,0.14621952,0.97902924,-0.2120597,0.20812584,0.9548373,-0.14145675,0.14296876,0.97956616,-0.14493392,0.16863884,0.97496414,-0.21169351,0.20802872,0.9549397,-0.22285159,0.18820658,0.9565121,-0.23227827,0.20507905,0.95078355,-0.14506897,0.16731232,0.9751726,-0.14211068,0.14355665,0.97938555,-0.2071359,0.20712964,0.9561339,-0.22282214,0.18928407,0.95630634,-0.23220575,0.20722644,0.9503356,-0.16193773,0.17496398,0.9711662,-0.2070938,0.20670453,0.956235,-0.22219534,0.1895925,0.9563911,-0.1622081,0.17495811,0.97112215,-0.19692414,0.18906857,0.96201557,-0.16656302,0.15813574,0.9732676,-0.19565223,0.18933979,0.9622217,-0.166886,0.15842894,0.9731646,-0.19446988,0.11646668,0.9739697,-0.18702476,0.11259774,0.97588086,-0.18600062,0.1099105,0.97638285,-0.18468994,0.10901422,0.9767321,-0.18282165,0.108189076,0.9771752,-0.17978437,0.107432485,0.977822,-0.16692741,0.09617065,0.98126775,-0.16221026,0.091346264,0.9825191,-0.15809537,0.088105686,0.9834853,-0.14318796,0.08002473,0.98645484,-0.13871214,0.07861025,0.9872079,-0.13290752,0.07614122,0.9881994,-0.13092585,0.07587176,0.9884847,-0.1313788,0.07648271,0.98837745,-0.13139845,0.0797172,0.98811924,-0.13163686,0.084052294,0.9877281,-0.13151218,0.085708074,0.9876025,-0.13122334,0.087267786,0.9875043,-0.13120076,0.0885581,0.9873924,-0.13017604,0.089041956,0.9874846,-0.12990037,0.08958599,0.9874716,-0.12972651,0.091265656,0.98734075,-0.12875396,0.09279645,0.9873253,-0.12870541,0.09546141,0.98707753,-0.12841502,0.096017934,0.9870614,-0.12819001,0.096724525,0.9870216,-0.1285783,0.09847423,0.9867981,-0.12906334,0.10177349,0.9863999,-0.12931938,0.101988845,0.9863441,-0.13008782,0.10178618,0.986264,-0.13217573,0.10292648,0.98586804,-0.13379434,0.10312307,0.9856291,-0.13491865,0.10409616,0.9853735,-0.1349784,0.105203934,0.98524773,-0.13552481,0.10585391,0.985103,-0.13588887,0.10713428,0.9849144,-0.13643606,0.10860421,0.9846778,-0.13802007,0.10949366,0.9843585,-0.13951738,0.10970635,0.9841237,-0.14424038,0.11062365,0.9833398,-0.14515714,0.111697584,0.9830834,-0.14601086,0.11255285,0.98285943,-0.14863291,0.11333862,0.982376,-0.14510477,0.11675959,0.98250276,-0.14389876,0.118431024,0.98248017,-0.14375296,0.11945061,0.98237807,-0.14372484,0.12048367,0.982256,-0.14332621,0.12153944,0.9821842,-0.14319961,0.123151466,0.98200184,-0.1450121,0.12900002,0.98098445,-0.14546384,0.13081001,0.98067784,-0.14596915,0.13133982,0.98053193,-0.17739367,0.105875954,0.97842824,-0.12955162,0.10184642,0.9863284,-0.14670615,0.11244695,0.982768,-0.15425332,0.09088423,0.98384243,-0.1475469,0.11264939,0.982619,-0.15911797,0.09425084,0.98275036,-0.14058618,0.109518304,0.9839925,-0.14836927,0.11303896,0.98245037,-0.15934157,0.09455584,0.98268485,-0.14183636,0.10957328,0.98380697,-0.1594512,0.09833519,0.9822961,-0.18087815,0.13175626,0.97464013,-0.16077134,0.09913652,0.9820003,-0.18963802,0.11419799,0.9751904,-0.14325787,0.110064656,0.9835461,-0.16070525,0.09996328,0.9819273,-0.16650057,0.112131625,0.97964483,-0.16698906,0.11241106,0.9795296,-0.16904265,0.11361849,0.979038,0.4028247,0.15111078,0.9027169,0.4008161,0.15142836,0.9035573,0.39462826,0.15325867,0.9059693,0.39472115,0.15545538,0.9055544,0.39431486,0.1559277,0.90565026,0.39321244,0.15841211,0.90569836,0.395068,0.16094775,0.90444297,0.3953983,0.16230346,0.90405625,0.39540073,0.16700816,0.903198,0.39549977,0.16866739,0.90284616,0.3952092,0.17060326,0.9026097,0.39336422,0.1741651,0.90273535,0.39179555,0.17664272,0.9029361,0.3892563,0.18031205,0.903309,0.3882791,0.18151145,0.9034893,0.38272324,0.1873009,0.90467745,0.38144773,0.1894326,0.9047723,0.38076407,0.18956147,0.90503323,0.37935176,0.1900217,0.9055297,0.37764367,0.19042078,0.9061596,0.37555987,0.19074458,0.90695715,0.37365234,0.18997815,0.90790546,0.37160155,0.18899493,0.9089517,0.3709838,0.18826185,0.90935606,0.3704214,0.18782829,0.90967494,0.36947826,0.1878969,0.91004425,0.36862937,0.18777056,0.9104145,0.3674896,0.18629539,0.911178,0.36452523,0.18468587,0.91269517,0.36391553,0.1841004,0.9130567,0.36357132,0.18351908,0.91331077,0.36361498,0.18288566,0.9134205,0.3618986,0.17740345,0.9151816,0.36114794,0.17721891,0.9155139,0.36068648,0.17666699,0.9158024,0.35860628,0.17311767,0.9172959,0.3571818,0.17321171,0.9178338,0.3533827,0.16871698,0.9201387,0.34990215,0.16342342,0.9224214,0.34826863,0.16241533,0.9232173,0.3481543,0.16202597,0.9233288,0.34772253,0.1616273,0.9235614,0.34670794,0.16117236,0.9240222,0.34322324,0.15862504,0.92576236,0.3388602,0.15873025,0.9273502,0.3369859,0.15772974,0.9282035,0.33241227,0.15679465,0.93000937,0.3315838,0.15684092,0.9302973,0.3280659,0.15663476,0.9315784,0.32391623,0.15670964,0.93301684,0.32234415,0.15634853,0.93362164,0.3209007,0.15538049,0.93428034,0.31983522,0.15453349,0.934786,0.3196871,0.15424812,0.93488383,0.31987244,0.1538911,0.93487924,0.31984526,0.15360734,0.93493515,0.32285523,0.15152699,0.93423986,0.3229505,0.14951503,0.93453103,0.32260734,0.14936759,0.93467313,0.32256877,0.14930947,0.9346957,0.31807646,0.14338547,0.93715954,0.316784,0.1425892,0.93771863,0.31627393,0.14207132,0.9379694,0.31345564,0.13972661,0.9392668,0.30991787,0.139525,0.9404699,0.30503637,0.13892153,0.94215375,0.30209514,0.13872072,0.94313043,0.30025327,0.13888954,0.94369364,0.29772413,0.1376142,0.9446813,0.29681012,0.13728748,0.9450164,0.29624927,0.1371778,0.94520825,0.2937388,0.13594018,0.9461701,0.29093882,0.1336543,0.9473601,0.28796586,0.1328392,0.94838256,0.28682205,0.13151802,0.9489131,0.28219545,0.13633604,0.94962,0.28209442,0.13684763,0.94957644,0.28173238,0.13675232,0.94969773,0.2807012,0.136044,0.95010465,0.27982053,0.13523766,0.95047945,0.2763776,0.13266185,0.95184886,0.27374366,0.13177398,0.9527329,0.27256945,0.13065708,0.9532233,0.2683137,0.13032591,0.9544752,0.26643094,0.13078637,0.9549395,0.2646054,0.13093765,0.9554262,0.2630205,0.12807128,0.95625204,0.2608519,0.1264339,0.95706356,0.2602308,0.12543969,0.9573635,0.2594826,0.12297058,0.95788676,0.25838366,0.120308526,0.95852166,0.25758538,0.11813403,0.9590068,0.25673813,0.11745607,0.9593172,0.25481325,0.11416921,0.96022683,0.2535416,0.11087435,0.9609493,0.2532923,0.11001809,0.96111345,0.25224137,0.10887107,0.9615203,0.24991697,0.10784682,0.9622424,0.24913688,0.107338496,0.9625016,0.24852982,0.106729284,0.96272624,0.24797237,0.10603349,0.9629468,0.24783358,0.10520049,0.9630739,0.24841444,0.104019925,0.9630525,0.2490986,0.10308584,0.9629762,0.2497615,0.103028096,0.96281064,0.25034454,0.10307054,0.96265465,0.25072166,0.102514416,0.96261597,0.25103366,0.10218724,0.9625694,0.2511948,0.095767684,0.9631873,0.25065833,0.094797224,0.963423,0.25068182,0.09436454,0.9634593,0.25043377,0.093258165,0.9636316,0.2503773,0.09202182,0.9637651,0.2505661,0.09153133,0.96376276,0.25104997,0.09113329,0.96367455,0.25212303,0.08829497,0.96365863,0.25306827,0.08133972,0.964023,0.2534655,0.08024052,0.9640107,0.25414008,0.07947003,0.96389693,0.25624165,0.077969685,0.963463,0.2591642,0.074715264,0.96293896,0.25960678,0.07261087,0.9629808,0.26046818,0.07096016,0.9628712,0.26012146,0.07018235,0.9630219,0.25931436,0.070155956,0.9632415,0.25876966,0.0700412,0.9633963,0.25924954,0.06883736,0.9633541,0.26040632,0.066742435,0.96318954,0.26231167,0.06456966,0.9628205,0.2643724,0.062218107,0.9624116,0.26605365,0.060296495,0.9620705,0.26814473,0.0580744,0.96162665,0.26977748,0.056338817,0.96127313,0.27145553,0.054552715,0.9609037,0.2727079,0.05413241,0.9605728,0.27404577,0.053656742,0.9602186,0.27454874,0.052836318,0.96012044,0.2754029,0.05192907,0.95992535,0.27667984,0.049531527,0.9596848,0.2763078,0.048378963,0.9598508,0.2767124,0.046725854,0.9598161,0.27673715,0.04658367,0.9598159,0.27705303,0.045932535,0.95975614,0.27695408,0.045349374,0.9598124,0.27716917,0.043157,0.95985144,0.277684,0.041243847,0.95978665,0.3936742,0.1563191,0.9058615,0.383309,0.18655492,0.9045836,0.36821216,0.18707326,0.91072685,0.3627853,0.17774226,0.91476476,0.3592679,0.1736717,0.9169322,0.33513296,0.15728535,0.92894953,0.32213426,0.14852074,0.9349712,0.31567037,0.14022367,0.93845063,0.29168478,0.1340191,0.9470792,0.28290045,0.13473602,0.94963866,0.27945647,0.13370155,0.9508039,0.25992224,0.12420605,0.9576081,0.25172356,0.09026843,0.96358025,0.27634567,0.050742716,0.9597178,0.39319867,0.15727016,0.90590334,0.3640177,0.18157686,0.9135212,0.35305732,0.16739295,0.9205054,0.32054362,0.1461707,0.93588775,0.27071568,0.13009863,0.95382774,0.26046053,0.070399135,0.96291447,0.35167316,0.16551492,0.9213744,0.28427747,0.13315171,0.94945085,0.252894,0.109383576,0.9612907,0.258453,0.07599752,0.9630298,0.39696136,0.15182097,0.9051918,0.3152325,0.13996635,0.9386362,0.2862731,0.13140824,0.9490941,0.38419694,0.17164822,0.90715474,0.36412248,0.17994492,0.91380227,0.32363242,0.15050423,0.9341363,0.36056587,0.083111346,0.92902356,0.39540723,0.15239619,0.90577507,0.37942463,0.16661699,0.9100965,0.26194245,0.07818253,0.96191144,0.27364123,0.054006472,0.9603144,0.35958022,0.08339039,0.9293805,0.40826985,0.0874686,0.90866107,0.3798171,0.16618676,0.9100115,0.2624102,0.078119665,0.9617891,0.36030805,0.08466154,0.9289836,0.41528115,0.09503682,0.9047151,0.4250397,0.12597743,0.8963654,0.36352423,0.17862777,0.9142987,0.3795178,0.16552667,0.9102567,0.28660414,0.12905794,0.9493167,0.26573834,0.08611486,0.9601913,0.36065033,0.085139275,0.92880714,0.3974195,0.11333566,0.9106112,0.41129902,0.11965903,0.9036121,0.3791492,0.16508286,0.9104908,0.33179584,0.15093438,0.93119836,0.29488415,0.09707691,0.95058894,0.27628016,0.10761145,0.9550335,0.2843663,0.07555925,0.95573354,0.3051783,0.11854928,0.9448874,0.30604473,0.073469736,0.94917804,0.36151105,0.08581046,0.92841065,0.39159578,0.117448024,0.91261095,0.37739724,0.16304342,0.9115855,0.29510805,0.097206235,0.9505062,0.30528912,0.11861379,0.9448436,0.28447935,0.07562415,0.9556948,0.30551058,0.11874281,0.94475573,0.305532,0.07321008,0.94936323,0.36598217,0.120892294,0.92273617,0.3766809,0.10164209,0.92074984,0.38083202,0.13666151,0.91448927,0.35087323,0.105092496,0.9305071,0.37275252,0.15791231,0.9143956,0.31163225,0.10797517,0.9440481,0.2928496,0.08102046,0.9527197,0.32993942,0.13485073,0.93432075,0.30760717,0.0747709,0.9485711,0.36448923,0.120945185,0.92332006,0.35012078,0.10511893,0.9307875,0.38009208,0.13668796,0.91479313,0.3486152,0.10517193,0.9313465,0.37167472,0.1570135,0.9149889,0.30150402,0.08636225,0.9495456,0.29862386,0.084581956,0.95061547,0.31731617,0.11152735,0.94173884,0.332734,0.13662101,0.9330717,0.36308008,0.12045361,0.9239392,0.34790272,0.1049257,0.9316407,0.3793963,0.13644269,0.9151185,0.3464769,0.10443334,0.9322271,0.34164178,0.10688171,0.933733,0.3448337,0.1343058,0.9290057,0.31377098,0.084034,0.94577277,0.36887637,0.12967311,0.9203886,0.57565606,0.25112903,0.7781737,0.57486045,0.2543736,0.7777079,0.57401216,0.25780886,0.7772031,0.5732059,0.26104498,0.77671784,0.5741718,0.26303363,0.77533215,0.574463,0.2649185,0.7744743,0.5749741,0.2710434,0.77197164,0.5753789,0.27226135,0.7712411,0.57601696,0.27553576,0.7696003,0.5760208,0.27648103,0.76925826,0.5764822,0.28060284,0.76741797,0.5758883,0.2833378,0.7668588,0.5755063,0.28773436,0.7655073,0.5758434,0.28904152,0.76476103,0.5756037,0.29014352,0.7645241,0.5761496,0.2933943,0.76287055,0.57764804,0.29306266,0.7618642,0.57865393,0.293321,0.7610009,0.5798693,0.2933242,0.760074,0.5807911,0.2934016,0.75934005,0.5811997,0.29418522,0.758724,0.5813933,0.29717705,0.7574085,0.58177245,0.29777673,0.75688165,0.5821146,0.29795823,0.75654715,0.5830746,0.29851213,0.7555888,0.5846943,0.30013186,0.75369316,0.5854637,0.30021077,0.7530643,0.5861752,0.30057815,0.75236386,0.5873762,0.3013348,0.75112355,0.5883777,0.30114624,0.75041497,0.5889556,0.3015136,0.7498139,0.58934087,0.3017516,0.7494153,0.58982766,0.30177024,0.7490248,0.59021026,0.3021164,0.7485836,0.5905138,0.3029855,0.7479928,0.5911114,0.3037602,0.74720615,0.59134406,0.3043212,0.7467937,0.59254956,0.30799642,0.74432737,0.59345055,0.3091013,0.7431506,0.59276193,0.31022754,0.7432309,0.5891365,0.31265062,0.74509585,0.58825934,0.31377232,0.7453173,0.58793217,0.3134025,0.7457309,0.5860835,0.31454417,0.7467048,0.5851187,0.31581068,0.7469268,0.5826363,0.31822985,0.74784005,0.57965356,0.32051933,0.7491789,0.5778686,0.3209011,0.7503935,0.5702655,0.33515367,0.7499796,0.56970316,0.33860475,0.7488559,0.56761116,0.343999,0.7479855,0.5665407,0.348489,0.7467175,0.56645966,0.35113472,0.74553865,0.56509364,0.35399687,0.7452217,0.5642776,0.35665515,0.7445723,0.5637461,0.35807115,0.7442952,0.5643745,0.35963258,0.7430651,0.565035,0.35900992,0.74286425,0.564986,0.3595515,0.7426396,0.56479007,0.36013585,0.7425055,0.5638881,0.3613941,0.7425797,0.5573777,0.3708621,0.74282664,0.5563424,0.3745536,0.74174976,0.5520858,0.37455204,0.7449242,0.54781216,0.37455127,0.748073,0.543518,0.3745505,0.7511991,0.5392086,0.3745496,0.7542988,0.53488016,0.37454894,0.75737464,0.53053427,0.37454805,0.7604257,0.52617085,0.37454727,0.76345176,0.52179027,0.3745465,0.7664527,0.5173938,0.37454572,0.7694277,0.51297915,0.37454495,0.77237844,0.50854766,0.37454408,0.77530384,0.5040995,0.3745433,0.7782037,0.49963626,0.37454176,0.7810775,0.49515358,0.37454176,0.7839269,0.49065775,0.3745402,0.78674936,0.48356196,0.37453943,0.79113084,0.4836991,0.37597635,0.7903651,0.48375458,0.3769971,0.78984475,0.48330274,0.37770343,0.7897839,0.48238313,0.37788016,0.7902614,0.48185393,0.37765685,0.7906909,0.48113772,0.37464365,0.7925583,0.46820605,0.37452596,0.80032074,0.46286047,0.37452748,0.8034235,0.45749182,0.37452748,0.8064926,0.4521039,0.37452915,0.8095246,0.44669744,0.37452993,0.81251997,0.4412698,0.3745307,0.81548005,0.4358211,0.37453148,0.8184046,0.43035564,0.37453303,0.821291,0.42486984,0.37453392,0.8241419,0.41936517,0.3745347,0.8269563,0.41384184,0.37453544,0.8297338,0.40830013,0.37453622,0.8324744,0.40274015,0.37453777,0.8351777,0.39716238,0.37453854,0.83784425,0.38416857,0.32640278,0.86364096,0.38519555,0.31903437,0.86593384,0.38619924,0.31164664,0.86817425,0.38717964,0.3042392,0.8703622,0.38813654,0.29681414,0.87249726,0.3890685,0.2893703,0.8745802,0.38997832,0.2819097,0.87660927,0.39072618,0.27065945,0.87981623,0.38699248,0.27135596,0.8812506,0.38538724,0.27137315,0.8819486,0.37992084,0.27055362,0.8845682,0.377775,0.27064303,0.8854594,0.3764322,0.2693539,0.8864238,0.3754364,0.2677951,0.8873181,0.37639004,0.26406375,0.8880321,0.3751851,0.26044768,0.88960844,0.3742668,0.25956804,0.8902521,0.3737429,0.25879672,0.8906967,0.37316564,0.25710562,0.8914282,0.37269053,0.25631398,0.8918547,0.37284887,0.25525373,0.8920926,0.37223288,0.2535567,0.8928335,0.37072003,0.2531289,0.8935841,0.36976722,0.25263247,0.89411914,0.36904323,0.25181946,0.8946474,0.36855987,0.25123298,0.8950115,0.36892083,0.25045094,0.89508194,0.36942074,0.24938647,0.895173,0.36980903,0.2477116,0.89547765,0.37006018,0.2467322,0.8956443,0.3694765,0.24286194,0.8969422,0.36875492,0.24241057,0.89736116,0.36793837,0.24179201,0.897863,0.36762494,0.24156134,0.89805347,0.36633822,0.24040751,0.8988885,0.36572868,0.23938331,0.8994099,0.36546582,0.23853007,0.89974344,0.3655928,0.23735219,0.90000325,0.36646616,0.2355902,0.90011096,0.36717448,0.22860631,0.90162194,0.36468452,0.22687365,0.903069,0.36354846,0.22496764,0.9040034,0.36270615,0.22265022,0.904915,0.36255234,0.22138722,0.9052864,0.36290857,0.2205478,0.9053486,0.3635178,0.21983533,0.90527743,0.36433804,0.21947365,0.90503544,0.36549285,0.21936722,0.9045955,0.37219822,0.21722993,0.90237445,0.37193683,0.21580881,0.90282315,0.37286195,0.21323352,0.9030534,0.373754,0.21011762,0.9034149,0.37379223,0.20906857,0.9036425,0.3740985,0.20867512,0.90360665,0.37561116,0.20774327,0.9031938,0.3756632,0.20226644,0.9044144,0.37633303,0.20073391,0.90447736,0.37720665,0.19964013,0.9043556,0.37814054,0.19907145,0.9040909,0.37909153,0.19833893,0.9038536,0.3795952,0.19782771,0.90375423,0.38063905,0.19771332,0.90334016,0.38185534,0.19130577,0.90420604,0.57515913,0.28610075,0.76638,0.58382046,0.29938227,0.75466806,0.5864549,0.30100003,0.75197715,0.5902858,0.30264762,0.74830955,0.59162617,0.30609283,0.7458456,0.5873268,0.313154,0.7463122,0.56340754,0.360058,0.74359274,0.5616596,0.36367443,0.74315506,0.55865836,0.36790574,0.74333453,0.48614427,0.37453943,0.78954667,0.47353223,0.3745244,0.7971818,0.39086464,0.27443123,0.87858546,0.38319907,0.270835,0.8830668,0.37639418,0.26283133,0.8883958,0.37278283,0.25413704,0.89243895,0.37090394,0.24593432,0.8955147,0.371265,0.24407944,0.8958725,0.36737913,0.2340916,0.9001298,0.37528974,0.20847423,0.90315896,0.38231808,0.19409809,0.9034151,0.5753916,0.29271477,0.7637032,0.58444345,0.30000675,0.75393754,0.5913861,0.30488542,0.7465303,0.45480046,0.37452793,0.8080132,0.37607998,0.26155093,0.88890666,0.37142655,0.24536185,0.8954551,0.3677946,0.22952883,0.90113467,0.36736187,0.21975392,0.90374416,0.38229856,0.19538452,0.903146,0.5754571,0.29335442,0.76340836,0.59144783,0.30533576,0.7462972,0.57685864,0.32149106,0.7509178,0.52398413,0.3745465,0.76495457,0.48045072,0.37452352,0.79303163,0.44126913,0.37453038,0.81548053,0.40269735,0.3583536,0.84226924,0.38187793,0.19671409,0.90303534,0.5309927,0.36911434,0.7627591,0.4166554,0.3502183,0.8388954,0.43606254,0.3583476,0.8254916,0.45502633,0.36644986,0.8115821,0.3716561,0.24466203,0.8955513,0.36810392,0.2305523,0.900747,0.5339299,0.35931844,0.7653817,0.516854,0.36694238,0.77344376,0.5508527,0.35167056,0.7568944,0.4388123,0.35834718,0.82403344,0.45637855,0.36644962,0.81082255,0.41805327,0.35021806,0.83819973,0.45907927,0.36644918,0.8092967,0.47883722,0.37452352,0.79400694,0.39100254,0.27082607,0.8796421,0.36778072,0.23296387,0.90025836,0.36910942,0.22000745,0.9029701,0.57207745,0.23650073,0.78536284,0.57583827,0.32259798,0.75122625,0.53526044,0.35492653,0.7665008,0.5175186,0.36475432,0.7740342,0.5528475,0.34505925,0.7584812,0.43964985,0.35834718,0.8235869,0.45949063,0.36644918,0.8090632,0.4184793,0.35021806,0.8379871,0.46031293,0.36644918,0.80859566,0.36806896,0.23172718,0.90045977,0.45349616,0.17365398,0.87417704,0.5058826,0.19324234,0.84067833,0.5716741,0.23576781,0.78587675,0.53688174,0.35092643,0.76720834,0.55365527,0.3430521,0.7588025,0.5183329,0.36276323,0.7744249,0.55526435,0.3390333,0.7594326,0.57346267,0.32708576,0.75110286,0.4496548,0.3583564,0.8181634,0.46523187,0.36645386,0.8057735,0.42357826,0.35022274,0.8354193,0.47501767,0.36646295,0.8000395,0.3820604,0.19697846,0.9029005,0.45363775,0.1737912,0.8740763,0.5037258,0.19191103,0.84227693,0.56920713,0.22965078,0.78947055,0.53809285,0.3487037,0.7673734,0.5558651,0.3379171,0.7594906,0.5189429,0.36165753,0.77453345,0.5570649,0.33568308,0.75960225,0.41537803,0.33302367,0.84649646,0.44454846,0.34694007,0.8258385,0.42088473,0.34450245,0.83915085,0.47265193,0.36078036,0.80401355,0.3803195,0.2455011,0.89167607,0.3828531,0.19574471,0.90283304,0.45814264,0.17790157,0.870894,0.5033496,0.19162579,0.8425668,0.56521654,0.21980463,0.79512024,0.57018495,0.2371266,0.78654945,0.5599614,0.20241296,0.8034129,0.49218965,0.34782204,0.79797816,0.47838455,0.3408755,0.8092912,0.48392826,0.32081676,0.8141806,0.46430212,0.3339104,0.82032156,0.43533176,0.31992564,0.84150684,0.41044548,0.31948003,0.8540884,0.4598331,0.3203713,0.82820034,0.5153685,0.34826294,0.7830123,0.5115853,0.33479694,0.79132265,0.5308175,0.32170755,0.7840517,0.50759655,0.32126212,0.79946005,0.5535713,0.3221528,0.767969,0.38035604,0.24556963,0.8916417,0.39107242,0.27096215,0.8795691,0.39298597,0.19411434,0.89882237,0.45767528,0.17802192,0.8711151,0.5648874,0.2186933,0.79566044,0.5700298,0.23657334,0.7868285,0.5594399,0.20073952,0.80419564,0.5749121,0.29197273,0.7643481,0.4116482,0.31116846,0.85657454,0.4132029,0.3000495,0.859787,0.43785277,0.3032813,0.8463482,0.43618697,0.31438822,0.8431494,0.4620647,0.30650973,0.8321947,0.48581776,0.30973452,0.8173406,0.46118382,0.31206232,0.8306182,0.4108499,0.31671226,0.85492444,0.5090913,0.3129559,0.80180085,0.5318656,0.31617352,0.78559107,0.50809914,0.31849608,0.8002472,0.5541209,0.31938764,0.76872724,0.46028718,0.31760436,0.8290133,0.37105462,0.21917264,0.90237564,0.38132262,0.24515487,0.8913429,0.39242125,0.19509071,0.89885765,0.4972086,0.20125194,0.8439676,0.47458288,0.1944675,0.85845995,0.45151424,0.18767385,0.8723035,0.54260856,0.19327743,0.8174471,0.56885034,0.2416016,0.7861539,0.56414133,0.22206073,0.795257,0.5590867,0.20243023,0.8040174,0.552741,0.28872895,0.78173715,0.56456816,0.3057118,0.7666832,0.5300378,0.28548193,0.79847354,0.5080462,0.2976323,0.80827224,0.5517663,0.2732855,0.78795236,0.48311386,0.27897802,0.82992303,0.46058235,0.2911531,0.8385069,0.43615735,0.28790855,0.8525698,0.41227004,0.29236448,0.8628769,0.4597786,0.28344643,0.84158283,0.52884823,0.27002314,0.80461615,0.50682205,0.28223154,0.8145408,0.5061435,0.27450356,0.817598,0.55120856,0.265537,0.79098624,0.40278023,0.22121772,0.8881614,0.4082894,0.19611867,0.8915364,0.39703852,0.24617095,0.8841721,0.4702577,0.19369216,0.8610116,0.449315,0.18728568,0.8735216,0.49508792,0.20086482,0.8453054,0.44490656,0.18650913,0.8759409,0.43766698,0.27670532,0.85550094,0.4383994,0.27108952,0.8569227,0.46095717,0.2750361,0.84372604,0.46056822,0.27784187,0.8430189,0.41477385,0.27276084,0.86808074,0.41442674,0.27556852,0.86735946,0.48472774,0.26774457,0.83267754,0.46172324,0.26941752,0.8451188,0.5073953,0.26607093,0.8196073,0.50698245,0.2688841,0.8189445,0.5297089,0.26439637,0.8059175,0.5516513,0.26272112,0.7916176,0.41372192,0.28117684,0.8658948,0.40283105,0.22171678,0.888014,0.3970613,0.24641901,0.8840928,0.40831748,0.19636963,0.89146835,0.3971067,0.24691497,0.88393396,0.39115286,0.27194726,0.87922925,0.46946287,0.19353709,0.8614802,0.4445015,0.18643148,0.876163,0.49469858,0.20078741,0.8455517,0.443691,0.18627618,0.87660676,0.5547175,0.23640876,0.7977465,0.4618069,0.2687957,0.8452711,0.43863875,0.26922488,0.8573879,0.46184862,0.26848486,0.8453471,0.43855911,0.26984662,0.85723317,0.4150398,0.27058634,0.868634,0.41500193,0.2708971,0.86855525,0.461932,0.26786298,0.8454988,0.48490193,0.26650032,0.83297515,0.5075312,0.26513737,0.81982565,0.50748605,0.26544863,0.819753,0.5298029,0.26377377,0.8060597,0.5517,0.26240963,0.791687,0.41492605,0.2715184,0.8683974,0.4102873,0.20145208,0.8894276,0.4096328,0.19975844,0.89011097,0.40410608,0.2250867,0.8865857,0.39772505,0.24858972,0.8831862,0.5015773,0.20356098,0.8408229,0.4741614,0.19538908,0.8584836,0.49699685,0.2017121,0.84398246,0.44609386,0.18720359,0.87518865,0.551382,0.2364581,0.80004084,0.56245434,0.24877158,0.7885163,0.53999704,0.22410652,0.81128263,0.41072774,0.20219581,0.8890555,0.41058096,0.20194784,0.8891796,0.40439415,0.22557996,0.88632894,0.39786625,0.24883485,0.88305354,0.5370681,0.24068567,0.8084728,0.5553905,0.2508792,0.79284364,0.51825446,0.23046553,0.8235885,0.498966,0.2202199,0.83817434,0.4792196,0.20994979,0.8522146,0.48670346,0.20782118,0.8484869,0.4590327,0.19965659,0.86569405,0.4384234,0.1893413,0.8785983,0.41113836,0.20242673,0.8888131,0.41100153,0.20234968,0.88889384,0.40466568,0.22573315,0.88616604,0.39800087,0.24891105,0.88297147,0.43200147,0.21271381,0.8764289,0.4524541,0.22297736,0.8634619,0.4456531,0.24617118,0.86069334,0.43894854,0.22947639,0.86871445,0.42481944,0.19588839,0.8838304,0.472478,0.23321624,0.84992635,0.4658794,0.2164684,0.8579614,0.4253678,0.2359652,0.8737177,0.4185313,0.2590823,0.8704642,0.41171688,0.24244353,0.8784704,0.51474404,0.2420578,0.8224637,0.49205545,0.24342935,0.835837,0.49988297,0.25429937,0.82791835,0.4655036,0.25634992,0.84710747,0.47882116,0.24989532,0.8415953,0.6701696,0.20049684,0.7146144,0.66863096,0.20088083,0.7159466,0.6669936,0.20084918,0.71748114,0.66552633,0.20042337,0.7189611,0.66392857,0.1995316,0.7206844,0.6621318,0.20060207,0.7220389,0.6636493,0.20039582,0.72070175,0.6652173,0.20346072,0.71839386,0.6681152,0.20499237,0.71526235,0.6705601,0.20739146,0.71227646,0.67122036,0.20837256,0.7113678,0.6716,0.20946933,0.71068704,0.67171675,0.21115315,0.7100781,0.6705681,0.21417342,0.71025926,0.6696382,0.21582381,0.7106368,0.66704434,0.21917264,0.71204996,0.66674227,0.21999244,0.7120802,0.66548204,0.21920428,0.7135007,0.6640634,0.21850578,0.715035,0.6638425,0.21853161,0.7152323,0.6634735,0.2176209,0.715852,0.6620248,0.21433574,0.71818054,0.6592824,0.2166717,0.7200001,0.65889317,0.2168031,0.7203167,0.6584412,0.21634386,0.72086793,0.66312647,0.21512479,0.7169273,0.66309094,0.1993128,0.72151566,0.66243625,0.2143999,0.71778196,0.6625185,0.19944142,0.72200584,0.6660165,0.22196727,0.71214646,0.66477466,0.22324172,0.7129079,0.66464895,0.2216905,0.713509,0.66234004,0.22264196,0.7153575,0.6611596,0.22526743,0.7156274,0.6579687,0.22871587,0.7174721,0.65644413,0.22856489,0.7189152,0.65527904,0.23171547,0.71896964,0.6534871,0.23493245,0.7195564,0.644989,0.24163492,0.724984,0.6419918,0.24604997,0.72615826,0.63706183,0.25241238,0.7283133,0.6318993,0.25448406,0.73208004,0.62938243,0.25684616,0.73342204,0.6281064,0.2576993,0.73421615,0.62661,0.2582115,0.7353141,0.6248947,0.258381,0.73671293,0.6209959,0.26247692,0.73855937,0.62043196,0.26445407,0.738328,0.6194496,0.26544023,0.7387988,0.6177415,0.26673895,0.73976064,0.6172607,0.26578444,0.7405051,0.6172419,0.26419035,0.74109095,0.61778563,0.2629522,0.7410784,0.616651,0.2624194,0.7422113,0.61478704,0.26644,0.7423251,0.6138995,0.26761696,0.7426362,0.6129338,0.26777866,0.74337524,0.6110783,0.27205634,0.7433497,0.60907066,0.27431327,0.74416745,0.6072461,0.2788855,0.743959,0.60453534,0.28784773,0.74275213,0.60199356,0.2937992,0.74248624,0.5992905,0.29949293,0.74239814,0.6215262,0.26137984,0.7385024,0.62347585,0.25905696,0.737677,0.64010143,0.24384105,0.72856826,0.6431091,0.24089186,0.7268988,0.61796415,0.26221052,0.7411923,0.64138323,0.23798639,0.7293765,0.6177489,0.26092324,0.7418257,0.60211736,0.28581974,0.74549437,0.6016611,0.28499326,0.7461788,0.60146904,0.28481922,0.74640006,0.5878507,0.27572092,0.7605324,0.5918729,0.27912727,0.75615776,0.6193446,0.27539814,0.73523337,0.61861336,0.2770199,0.73523974,0.61818117,0.27738994,0.73546374,0.6181379,0.27699527,0.7356488,0.61770487,0.27635318,0.73625386,0.61797637,0.27601737,0.7361519,0.6206337,0.27053562,0.7359513,0.6202183,0.27220064,0.7356875,0.619628,0.27292633,0.735916,0.61881804,0.27354774,0.7363666,0.61767155,0.2737813,0.737242,0.6182165,0.27239096,0.7373001,0.6178301,0.2720965,0.73773265,0.61789775,0.27134863,0.7379514,0.61924887,0.26985452,0.73736656,0.61814153,0.27053562,0.73804575,0.61875194,0.26912913,0.73804855,0.62036043,0.2687671,0.73682916,0.6216324,0.2688886,0.735712,0.6230925,0.26853895,0.7346037,0.62429345,0.26858166,0.73356766,0.6242609,0.2694106,0.7332914,0.62200886,0.27065864,0.7347441,0.6184216,0.272755,0.73699343,0.6197266,0.27002683,0.73690194,0.6219181,0.27002683,0.7350533,0.6213261,0.26964113,0.7356953,0.61891514,0.27115905,0.73716813,0.6197845,0.27020738,0.73678714,0.62168133,0.26972908,0.73536295,-0.05410893,0.08869738,0.9945879,-0.0536318,0.08938652,0.99455196,-0.055854872,0.08971505,0.99439996,-0.056404397,0.089138724,0.9944209,-0.13632466,0.17645732,0.9748222,-0.1288701,0.076301806,0.98872167,-0.12549123,0.07821522,0.98900676,-0.12248697,0.07923724,0.989302,-0.120138876,0.080865756,0.98945814,-0.11879075,0.08144249,0.9895736,-0.11364951,0.083012864,0.9900468,-0.1052054,0.086335525,0.9906957,-0.0965882,0.08871092,0.9913632,-0.08787698,0.08942737,0.99210906,-0.088618286,0.08997483,0.9919936,-0.091403835,0.08993232,0.9917447,-0.09316636,0.08977703,0.99159473,-0.087206595,0.09069535,0.99205315,-0.08628672,0.08972443,0.9922218,-0.0850686,0.08956058,0.9923418,-0.08093825,0.09015553,0.99263334,-0.07011114,0.0911562,0.99336547,-0.070539035,0.09161704,0.99329275,-0.07145943,0.09170357,0.993219,-0.08001824,0.091256276,0.99260736,-0.069184735,0.09225175,0.9933293,-0.06722341,0.090992376,0.9935801,-0.058158726,0.08942737,0.9942939,-0.05753912,0.089950964,0.99428266,-0.056231983,0.09298577,0.9940783,-0.054735523,0.09320974,0.99414074,-0.05504832,0.09068514,0.994357,-0.05323437,0.089897536,0.9945273,-0.052573863,0.08977275,0.99457365,-0.05245852,0.08942986,0.99461067,-0.051230397,0.08922196,0.9946934,-0.05029723,0.08974651,0.99469376,-0.048924465,0.089816086,0.994756,-0.04856684,0.090363525,0.994724,-0.048447095,0.091746785,0.99460316,-0.04845817,0.09286103,0.9944992,-0.04797537,0.09335989,0.99447584,-0.047849067,0.09467333,0.99435776,-0.048506495,0.09758458,0.9940444,-0.048982672,0.09791618,0.9939885,-0.051427647,0.098330095,0.9938241,-0.05160762,0.098907575,0.9937575,-0.05204652,0.09951646,0.9936738,-0.05250682,0.10101721,0.99349815,-0.053029697,0.10324852,0.993241,-0.053870518,0.106014885,0.99290425,-0.056205876,0.11578113,0.99168324,-0.055858795,0.11651072,0.99161744,-0.05590448,0.11752213,0.99149543,-0.054874353,0.120846614,0.9911533,-0.05258607,0.123680964,0.9909277,-0.052103043,0.1247058,0.9908248,-0.051677007,0.1254178,0.9907572,-0.051610343,0.12643485,0.99063134,-0.049383536,0.1352326,0.9895824,-0.048915897,0.13604482,0.9894943,-0.048354592,0.13737522,0.98933816,-0.046107672,0.13955699,0.98914,-0.04514733,0.13997981,0.9891246,-0.04492927,0.14059404,0.98904735,-0.04460614,0.14195155,0.98886806,-0.043837216,0.14213881,0.9888755,-0.04327361,0.14277987,0.98880804,-0.04479735,0.1525782,0.9872756,-0.04483567,0.15299337,0.98720956,-0.045253206,0.15366872,0.98708564,-0.045657523,0.15568608,0.98675084,-0.04634923,0.15686706,0.98653156,-0.04731584,0.15832384,0.9862529,-0.04631234,0.16020165,0.9859973,-0.046045993,0.16130435,0.9858299,-0.04657954,0.16248849,0.9856104,-0.04623115,0.16387242,0.98539764,-0.046391573,0.16472647,0.9852477,-0.050710265,0.1669535,0.98465985,-0.051388342,0.16827175,0.9844003,-0.052316792,0.16884881,0.9842526,-0.05322524,0.16938552,0.9841116,-0.0543239,0.171055,0.98376274,-0.055395063,0.17185104,0.9835642,-0.05653307,0.17162344,0.9835392,-0.05818772,0.17193405,0.9833884,-0.061527546,0.17234705,0.9831129,-0.06512279,0.17222458,0.98290265,-0.06661991,0.17184176,0.9828694,-0.06809966,0.1712347,0.9828739,-0.071850166,0.1698954,0.98283935,-0.07333439,0.16923349,0.9828439,-0.07700384,0.16813228,0.98275226,-0.077788346,0.16889335,0.9825599,-0.07949208,0.16872285,0.9824528,-0.08112673,0.16946201,0.982192,-0.08269422,0.17091735,0.98180896,-0.08385682,0.17139512,0.9816271,-0.08533492,0.17244616,0.9813156,-0.08571736,0.17444706,0.98092854,-0.0866416,0.17585322,0.98059624,-0.08747541,0.17779927,0.98017114,-0.08875158,0.1786755,0.9798971,-0.09023185,0.17914008,0.979677,-0.092284635,0.17904285,0.9795036,-0.09362158,0.17982507,0.9792333,-0.09466539,0.18096583,0.9789228,-0.095225915,0.18120477,0.97882426,-0.09758009,0.18108904,0.97861373,-0.10014827,0.18033972,0.9784927,-0.1010534,0.17974204,0.97850966,-0.101262994,0.17892627,0.9786374,-0.101838805,0.17837453,0.9786784,-0.1026703,0.17775646,0.978704,-0.103468694,0.17699575,0.97875774,-0.10697118,0.1784449,0.9781179,-0.10650729,0.17918617,0.978033,-0.10610962,0.1799944,0.97792774,-0.106065825,0.18052417,0.9778349,-0.10650229,0.18182819,0.9775458,-0.10684883,0.18323256,0.97724575,-0.10668022,0.18390858,0.9771371,-0.106971815,0.18597387,0.97671425,-0.107155256,0.18607941,0.9766741,-0.1089475,0.18554352,0.9765777,-0.109606914,0.18541116,0.97652906,-0.109982066,0.18518248,0.9765303,-0.11010524,0.18478721,0.9765913,-0.109704845,0.18347713,0.9768833,-0.11237746,0.18371841,0.9765341,-0.1138775,0.1849196,0.9761335,-0.114264496,0.18453099,0.97616184,-0.11445172,0.1835744,0.97632027,-0.11457614,0.18244158,0.976518,-0.11465764,0.17965151,0.97702557,-0.11567723,0.17978309,0.9768812,-0.11704831,0.17978063,0.9767183,-0.11824883,0.179576,0.97661126,-0.11904298,0.17952909,0.97652346,-0.11955605,0.17879467,0.9765955,-0.11978302,0.17797536,0.97671735,-0.119326845,0.17706287,0.976939,-0.12064176,0.17613603,0.97694504,-0.12172992,0.17714511,0.9766275,-0.123041235,0.17752582,0.9763941,-0.12610932,0.1781045,0.97589713,-0.1264495,0.17949133,0.975599,-0.12695535,0.17951149,0.9755296,-0.12764876,0.18024334,0.9753042,-0.12833054,0.18120219,0.975037,-0.12892506,0.18115106,0.974968,-0.12943003,0.18088377,0.97495073,-0.13111222,0.1809901,0.9747062,-0.13264419,0.17952827,0.97476923,-0.13500752,0.17683983,0.9749362,-0.1026378,0.08734581,0.99087644,-0.05548937,0.11057116,0.992318,-0.056047287,0.118529156,0.9913675,-0.04820537,0.13799652,0.98925894,-0.04510737,0.14172298,0.98887813,-0.044122033,0.14768887,0.9880492,-0.04732855,0.15721212,0.9864301,-0.046518132,0.16163236,0.985754,-0.046761792,0.16430952,0.98529977,-0.04990914,0.16564341,0.984922,-0.074471675,0.16755514,0.98304594,-0.0757403,0.16759463,0.9829422,-0.13379711,0.17771293,0.97494435,-0.0715402,0.092539355,0.99313563,-0.05118646,0.12973954,0.99022603,-0.050075267,0.13372684,0.9897523,-0.045252778,0.14126568,0.9889369,-0.047616012,0.16375129,0.9853518,-0.11098917,0.18328612,0.97677404,-0.09260511,0.09049329,0.99158216,-0.09168386,0.090810746,0.9916387,-0.055577073,0.09331751,0.994084,-0.049471673,0.16506357,0.98504144,-0.10998929,0.18325013,0.97689396,-0.119409375,0.17667627,0.9769989,-0.07904152,0.09202088,0.9926151,-0.07565052,0.09239514,0.99284446,-0.048478235,0.1637707,0.98530656,-0.106927104,0.1781431,0.9781777,-0.11423405,0.180385,0.97694004,-0.119780086,0.17632309,0.9770173,-0.07034272,0.09436406,0.9930495,-0.05168677,0.13789688,0.989097,-0.120256,0.17610998,0.9769973,-0.07156372,0.09457103,0.9929426,-0.06531634,0.14308605,0.9875526,-0.10622839,0.17763656,0.97834593,-0.11957941,0.097980596,0.987978,-0.071871884,0.09516451,0.99286366,-0.06539921,0.1417166,0.98774457,-0.10487757,0.17711742,0.9785858,-0.11411417,0.09971146,0.9884511,-0.07358427,0.100695916,0.9921924,-0.06537726,0.14074002,0.9878856,-0.056156136,0.11382125,0.9919129,-0.11209086,0.11858254,0.9865971,-0.055885132,0.11218114,0.992115,-0.073781125,0.10150179,0.99209565,-0.06524473,0.1399228,0.9880105,-0.11859946,0.16301942,0.97946864,-0.112157054,0.1199007,0.9864302,-0.083101526,0.12927984,0.98811984,-0.07879016,0.14844528,0.9857769,-0.08740102,0.11006584,0.99007404,-0.10591599,0.15881348,0.981611,-0.10779376,0.13909082,0.9843954,-0.10341042,0.15822873,0.98197246,-0.10404398,0.1582485,0.9819024,-0.09436596,0.18195139,0.97876906,-0.09386232,0.18335232,0.9785559,-0.09378144,0.18470521,0.9783093,-0.09342448,0.18689069,0.9779283,-0.09357034,0.18962762,0.9773873,-0.09276432,0.19232878,0.9769363,-0.09144161,0.19304034,0.97692055,-0.09060705,0.1943363,0.9767414,-0.0897082,0.19724295,0.97624165,-0.08930662,0.19975202,0.9757681,-0.089551225,0.20068043,0.9755552,-0.08997213,0.20141762,0.97536457,-0.08706268,0.20735729,0.9743834,-0.08472596,0.2077975,0.9744956,-0.08180463,0.20846012,0.9746037,-0.08011361,0.20921184,0.9745831,-0.078874655,0.20996355,0.97452253,-0.07817842,0.21055758,0.9744504,-0.077462465,0.21177615,0.9742435,-0.07632139,0.21271975,0.974128,-0.075435326,0.21367142,0.9739887,-0.075269155,0.2163214,0.97341645,-0.07524911,0.21782963,0.97308165,-0.07621884,0.21937305,0.97265935,-0.07187995,0.22144127,0.97252095,-0.07182395,0.22290112,0.9721915,-0.07239681,0.2245317,0.97177374,-0.073215395,0.2258436,0.97140837,-0.072298534,0.22830515,0.9709014,-0.071222216,0.2293049,0.9707454,-0.07044243,0.23015498,0.9706012,-0.06538258,0.23129855,0.97068334,-0.060722247,0.22825211,0.9717066,-0.05990853,0.22805712,0.97180295,-0.058926295,0.22828937,0.97180843,-0.057673607,0.22909336,0.9716944,-0.05605435,0.22972295,0.9716405,-0.055433087,0.23176116,0.971192,-0.054213136,0.2363777,0.9701477,-0.051515106,0.23580547,0.9704339,-0.050813388,0.23577152,0.97047913,-0.050025266,0.2359637,0.9704734,-0.049447253,0.2364903,0.9703748,-0.049459256,0.2374549,0.9701386,-0.049573414,0.23830919,0.96992326,-0.04154992,0.24656123,0.9682361,-0.03575279,0.24477358,0.9689209,-0.034799997,0.24521646,0.9688436,-0.03176037,0.2500673,0.9677074,-0.029867856,0.25014395,0.96774787,-0.02863691,0.25052354,0.96768683,-0.027997116,0.25083292,0.96762544,-0.025221506,0.25250974,0.96726555,-0.02033525,0.25479636,0.9667809,-0.017707963,0.25577524,0.9665741,-0.017193867,0.25614354,0.96648586,-0.007659874,0.25982475,0.9656254,-0.0072865104,0.25929967,0.96576947,-0.0068343496,0.25902978,0.9658451,0.00012348474,0.25856298,0.9659944,0.0036679178,0.25732622,0.9663176,0.003856387,0.25820655,0.96608204,0.0073005464,0.25846508,0.965993,0.012117698,0.25805834,0.96605337,0.015973456,0.2585177,0.96587443,0.016185462,0.25859845,0.9658493,0.018890947,0.26094463,0.9651689,0.035144594,0.26403087,0.96387374,0.040737364,0.26421654,0.9636026,0.04525634,0.264376,0.96335727,0.050489202,0.2645626,0.96304595,0.050632063,0.26569572,0.9627264,0.055315837,0.26540655,0.96254843,0.058941133,0.2648215,0.96249443,0.05917733,0.26695415,0.9618906,0.062302973,0.26962072,0.96094906,0.064086184,0.27016386,0.9606792,0.06452116,0.27062914,0.9605191,0.065073736,0.271529,0.9602277,0.065398894,0.27291808,0.95981175,0.065535165,0.27390593,0.95952106,0.06618631,0.27472547,0.95924205,0.06664356,0.27623367,0.9587771,0.067237355,0.27886915,0.9579724,0.06895898,0.28163338,0.9570409,0.06989433,0.28538367,0.9558614,0.07010074,0.2917489,0.9539227,0.07061646,0.29231134,0.9537124,0.070489295,0.29718205,0.9522153,0.070359685,0.30207333,0.9506846,0.070249446,0.30620232,0.9493709,0.07010882,0.31133083,0.9477119,0.06998482,0.31582448,0.94623303,0.06984837,0.32068476,0.9446071,0.06972592,0.32504115,0.94312596,0.069642894,0.3279232,0.9421339,0.060729504,0.3262546,0.9433291,0.056715243,0.32550445,0.943838,0.05609366,0.32537708,0.9439191,0.053697944,0.32578725,0.943917,0.052332498,0.32677087,0.9436536,0.051425587,0.32727018,0.9435304,0.05169054,0.32906693,0.9428908,0.05232033,0.32998985,0.9425335,0.052555237,0.330713,0.9422669,0.05299249,0.3312623,0.94204944,0.05355516,0.33171013,0.94186,0.053566623,0.3323412,0.9416368,0.052587077,0.33825758,0.93958306,0.052585624,0.33856875,0.9394711,0.05136189,0.33956206,0.93918025,0.049082495,0.3406519,0.93890744,0.046993483,0.34129763,0.93877983,0.046042282,0.3415187,0.9387466,0.04373959,0.34190398,0.9387164,0.039435025,0.34306732,0.93848264,0.037347667,0.34546694,0.9376874,0.036332007,0.34608102,0.9375009,0.026934633,0.3495344,0.9365363,0.026738036,0.3506056,0.93614143,0.02631781,0.35111564,0.93596214,0.01897977,0.35659623,0.9340658,0.019109886,0.35807425,0.93349755,0.018878527,0.3593861,0.932998,0.018650906,0.36003333,0.932753,0.016262008,0.36158794,0.9321962,0.005588314,0.368546,0.92959267,0.00027528347,0.37201813,0.9282254,-0.0050234497,0.3754834,0.9268155,-0.010304329,0.3789443,0.9253621,-0.015569326,0.3824007,0.9238654,-0.020817274,0.3858502,0.92232656,-0.02604698,0.38929507,0.9207447,-0.031259626,0.39273518,0.9191202,-0.03645407,0.39616838,0.91745394,-0.04163065,0.3995976,0.91574484,-0.046786692,0.40302044,0.9139943,-0.051924143,0.40643767,0.91220194,-0.057041835,0.4098492,0.910368,-0.062138617,0.41325492,0.9084928,-0.06721647,0.4166542,0.90657663,-0.0714892,0.41952324,0.9049251,-0.07619695,0.42254868,0.9031316,-0.08171716,0.42254564,0.9026503,-0.089085475,0.42254177,0.9019547,-0.094106615,0.42253873,0.9014461,-0.099256106,0.42253634,0.90089464,-0.10408015,0.4225332,0.9003516,-0.103851765,0.41892594,0.902062,-0.1036104,0.4149817,0.90391093,-0.10336376,0.41102886,0.9057435,-0.10311495,0.4070682,0.9075587,-0.10286082,0.40310073,0.9093566,-0.10260383,0.3991249,0.91113764,-0.10234316,0.39514154,0.91290146,-0.10207885,0.39115077,0.914648,-0.10181087,0.3871534,0.916377,-0.10153851,0.3831487,0.9180888,-0.10126418,0.37913603,0.91978335,-0.10098467,0.375117,0.9214604,-0.100702465,0.37109002,0.9231204,-0.100416735,0.36705616,0.92476285,-0.10012749,0.36301616,0.9263875,-0.0998348,0.35896853,0.9279949,-0.09953788,0.35491404,0.9295849,-0.09923912,0.3508531,0.9311572,-0.09893534,0.3467862,0.93271166,-0.09862902,0.3427119,0.9342488,-0.098319344,0.33863124,0.9357682,-0.09800631,0.334545,0.9372696,-0.09768999,0.33045164,0.9387536,-0.0973696,0.32635197,0.94021994,-0.09704752,0.32224703,0.941668,-0.096720606,0.31813604,0.94309837,-0.096391305,0.31401828,0.9445111,-0.0960588,0.30989537,0.9459057,-0.09572314,0.30576584,0.94728255,-0.09538435,0.30163056,0.94864154,-0.09504165,0.29748958,0.94998264,-0.09469744,0.2933438,0.9513053,-0.09434857,0.2891916,0.9526104,-0.09400831,0.28516397,0.9538574,-0.09208657,0.28304523,0.9546756,-0.08966491,0.2803796,0.9556922,-0.090495974,0.27660877,0.9567121,-0.09148731,0.27210224,0.95790946,-0.09610885,0.26717585,0.9588431,-0.099521406,0.26717585,0.9584949,-0.10293274,0.26717517,0.9581348,-0.11996806,0.26717424,0.9561515,-0.12337089,0.26717424,0.9557184,-0.12677138,0.26717344,0.9552734,-0.14035997,0.26717344,0.9533716,-0.14375277,0.26717344,0.9528659,-0.14714381,0.26717263,0.9523484,-0.15629525,0.26767024,0.9507494,-0.15643072,0.27022058,0.95000535,-0.15701465,0.27005643,0.9499557,-0.15773225,0.2693072,0.9500496,-0.15811993,0.26849702,0.9502144,-0.15819636,0.26653525,0.95075387,-0.16038442,0.26618296,0.9504859,-0.16335215,0.2655808,0.9501489,-0.17062631,0.26548955,0.9488951,-0.17174183,0.26582557,0.94859976,-0.17420143,0.26619446,0.94804764,-0.17554569,0.2662256,0.947791,-0.17709485,0.26614264,0.947526,-0.1789243,0.26593727,0.94723994,-0.1795335,0.26547068,0.94725555,-0.18100531,0.2635655,0.94750744,-0.18245031,0.2613551,0.94784254,-0.18332045,0.2613658,0.9476716,-0.18423651,0.26257482,0.9471596,-0.18679136,0.26486012,0.9460223,-0.18986803,0.26785666,0.94456494,-0.19126241,0.26934657,0.9438597,-0.19203347,0.2695386,0.9436483,-0.1936421,0.26846993,0.9436242,-0.19500335,0.2674412,0.94363594,-0.19647326,0.2659858,0.94374245,-0.19718215,0.26459214,0.94398636,-0.19777404,0.26294485,0.9443227,-0.19810452,0.26099977,0.944793,-0.20136552,0.25552896,0.94559866,-0.20239095,0.25487795,0.9455555,-0.20279247,0.2545236,0.9455649,-0.2056346,0.25559813,0.9446608,-0.20423368,0.25288242,0.94569504,-0.2046406,0.2515819,0.9459539,-0.2051012,0.24968027,0.9463579,-0.20429793,0.24829526,0.9468959,-0.20331576,0.24739283,0.9473434,-0.20185776,0.24313807,0.9487557,-0.20209132,0.24149263,0.9491261,-0.20159903,0.2407492,0.9494197,-0.20165817,0.2383314,0.9500169,-0.20269923,0.23741265,0.9500254,-0.20295294,0.23570281,0.95039696,-0.20144534,0.23363006,0.9512291,-0.20046331,0.23250222,0.9517128,-0.2005057,0.23185486,0.9518617,-0.20025083,0.23114593,0.9520878,-0.19952504,0.23031844,0.9524407,-0.19904482,0.23051332,0.952494,-0.1984942,0.23118907,0.9524451,-0.19823945,0.23165505,0.9523849,-0.19509761,0.22897883,0.95368004,-0.19493628,0.22784552,0.95398444,-0.19407028,0.22642966,0.95449793,-0.19330516,0.22543097,0.95488954,-0.19316362,0.22480817,0.95506495,-0.19247591,0.22396442,0.955402,-0.1930118,0.22209106,0.95573115,-0.19300365,0.22113122,0.9559553,-0.19361241,0.21861303,0.9564113,-0.19377357,0.21742286,0.9566499,-0.19376281,0.2169837,0.9567518,-0.1926939,0.21608594,0.9571708,-0.09390889,0.191535,0.97698283,-0.05545,0.23475933,0.97047067,-0.03333923,0.24964552,0.9677632,-0.015310737,0.25776348,0.9660867,-0.0039756307,0.2598207,0.9656487,0.0048258677,0.25848478,0.9660033,0.031296276,0.26390174,0.96404165,0.05094469,0.26597428,0.962633,0.051460933,0.2660137,0.9625946,0.06996656,0.28900158,0.9547685,0.06444442,0.3269497,0.9428419,0.052593146,0.33739612,0.93989253,0.031572744,0.34648877,0.93752265,0.021061447,0.3536964,0.93512315,0.01901617,0.35539135,0.9345242,0.010916824,0.36506954,0.9309163,-0.09257081,0.26717585,0.9591912,-0.1165637,0.26717424,0.9565725,-0.13696538,0.26717344,0.95386523,-0.1695729,0.26528162,0.9491421,-0.20187083,0.24541721,0.9481659,-0.19538245,0.2298805,0.9534048,-0.075878985,0.2186605,0.97284627,-0.073508464,0.226975,0.97112244,-0.06696445,0.23178516,0.9704594,-0.055066425,0.23613179,0.9701595,-0.04273037,0.24629365,0.96825284,-0.009041592,0.26013175,0.96553075,0.05307267,0.33337224,0.9413003,0.052627258,0.3348003,0.9408183,0.040557355,0.34259418,0.93860763,0.029990867,0.3468845,0.9374283,0.027571576,0.3482181,0.93700796,-0.10634277,0.26717424,0.9577626,-0.113157876,0.26717424,0.9569813,-0.13356905,0.26717344,0.9543467,-0.15561968,0.2672859,0.95096827,-0.19873457,0.25873753,0.94528276,-0.20119657,0.23980933,0.94974285,-0.20132735,0.23902415,0.949913,-0.090295635,0.2025018,0.9751101,0.02641442,0.26364532,0.964258,0.01972675,0.3545731,0.93482023,-0.0010313293,0.37067056,0.92876387,-0.044211086,0.40130895,0.91487515,-0.109750606,0.26717424,0.95737803,-0.13017185,0.26717344,0.954816,-0.15804613,0.26743454,0.95052624,-0.16646333,0.26511484,0.9497389,-0.1999582,0.25691208,0.94552255,-0.19685642,0.23144862,0.9527219,-0.090465635,0.2038203,0.9748196,-0.08794853,0.20692788,0.9743951,-0.068729095,0.23144944,0.9704161,-0.048659522,0.24108738,0.96928275,0.021889418,0.26340613,0.96443665,0.065015145,0.30054402,0.9515494,0.051185906,0.32804394,0.9432747,-0.0006816041,0.37026408,0.9289262,-0.08297303,0.40476245,0.91064966,-0.062409446,0.39847696,0.9150526,-0.04168635,0.3921728,0.9189465,-0.09358071,0.3034541,0.94823956,-0.09020752,0.20497312,0.9746018,-0.0892012,0.20603827,0.97446984,-0.012816855,0.25962397,0.96562475,0.043757543,0.26865998,0.9622407,0.060801476,0.29975066,0.9520781,0.0031858876,0.36710927,0.9301724,-0.06121207,0.38449982,0.9210934,-0.081926785,0.3908263,0.9168112,-0.0813887,0.38382435,0.9198123,-0.041018352,0.38517505,0.92193145,-0.092850685,0.30643237,0.9473531,-0.095896915,0.33225754,0.93830097,-0.09879549,0.35783607,0.9285434,-0.15368421,0.26717263,0.95131487,-0.04702597,0.24317022,0.96884304,-0.011231562,0.2599951,0.9655446,0.039193645,0.29454648,0.9548331,-0.03755965,0.36574787,0.9299558,-0.06971681,0.37446472,0.9246165,-0.0051142303,0.3569987,0.9340909,-0.15053292,0.26717263,0.9518186,-0.20262364,0.24656296,0.94770795,-0.19620973,0.23123628,0.9529069,-0.043747116,0.24577416,0.9683394,0.022813966,0.29285738,0.9558839,0.039559543,0.3091624,0.95018613,0.005876869,0.2764666,0.9610055,-0.037015572,0.36536783,0.9301269,-0.004838379,0.35680795,0.93416524,-0.06944911,0.37427548,0.9247133,-0.0042865477,0.35642663,0.9343135,0.028688604,0.34745273,0.9372585,-0.18040727,0.25656286,0.9495413,0.022031188,0.29267362,0.95595855,0.0054828865,0.27637425,0.9610345,0.03917107,0.30907103,0.9502319,0.004694852,0.27618957,0.96109176,-0.06630775,0.34886706,0.9348236,-0.06303729,0.32319978,0.94422895,-0.029876322,0.3141121,0.9489157,-0.048229497,0.33154595,0.9422055,-0.084085725,0.36607003,0.92678064,-0.059645995,0.29729223,0.9529217,-0.0762864,0.3018657,0.9502934,-0.00041276542,0.33083403,0.9436888,-0.016986027,0.33535403,0.94193906,-0.033497088,0.33986622,0.9398771,-0.18002802,0.25599155,0.9497675,-0.19369942,0.22845,0.9540918,0.007308039,0.28607905,0.9581781,0.031881414,0.30579332,0.95156395,-0.01757871,0.26624307,0.96374565,-0.018623408,0.30391693,0.9525165,0.005223673,0.32577112,0.9454342,-0.054052457,0.29217044,0.9548375,0.016557321,0.31561738,0.9487421,-0.13231595,0.26685488,0.95461035,-0.17178394,0.23907045,0.9556859,-0.14202325,0.19742922,0.96997476,-0.11064332,0.19299603,0.9749414,0.0068084328,0.28582227,0.9582585,-0.017830897,0.2661139,0.96377665,0.031634428,0.3056656,0.9516132,-0.018335322,0.26585558,0.96383846,-0.017495383,0.30316943,0.952776,0.017123498,0.3152452,0.94885576,-0.053491287,0.29179522,0.9549839,0.018256271,0.31450072,0.94908166,-0.12545452,0.26685557,0.9555361,-0.1585972,0.24139257,0.9573801,-0.12159854,0.2093952,0.9702409,-0.0054499214,0.27874675,0.9603492,-0.024518464,0.26229873,0.96467525,0.025583208,0.3021523,0.95291626,0.040909227,0.31378818,0.9486113,0.010126488,0.29047126,0.95683014,-0.036917306,0.25517443,0.96619004,-0.021134919,0.26698056,0.9634701,-0.052785814,0.24333014,0.9685061,-0.01693548,0.30296242,0.952852,0.018536385,0.3143975,0.9491104,-0.05321186,0.29169133,0.9550313,0.019096667,0.3141913,0.9491676,0.054817814,0.3253763,0.9439943,-0.12562878,0.24171507,0.9621805,-0.14200258,0.25414616,0.9566844,-0.14223765,0.22892082,0.96299726,-0.10906871,0.25446758,0.9609112,-0.12195939,0.20987684,0.9700915,0.025029141,0.3021298,0.95293814,0.009941003,0.29046375,0.9568344,0.025213832,0.30213732,0.95293087,0.055362217,0.32534733,0.9439726,0.04026588,0.313762,0.94864744,0.009662775,0.29045245,0.9568407,-0.005822329,0.27873164,0.9603514,-0.021415181,0.2669692,0.96346706,-0.02132176,0.266973,0.9634681,-0.037104707,0.25516683,0.96618485,-0.052879754,0.24332632,0.9685019,-0.016661096,0.3029478,0.9528615,0.019233417,0.31418395,0.94916725,-0.053074434,0.29168403,0.9550411,0.01950692,0.31416935,0.9491665,-0.14141111,0.22906075,0.9630857,-0.14168665,0.22901411,0.9630563,-0.12507842,0.24180819,0.9622287,-0.10879402,0.25451392,0.96093,-0.12260361,0.21028301,0.9699224,-0.04779984,0.2795557,0.9589389,-0.058219336,0.25558177,0.9650329,-0.02682012,0.27914378,0.9598747,-0.068751454,0.27996764,0.9575445,-0.07930132,0.25599653,0.9634195,-0.06351082,0.26779613,0.96138006,0.004182185,0.30253887,0.95312786,-0.032179557,0.29127353,0.95609844,-0.14034931,0.22896618,0.9632635,-0.14070328,0.22899775,0.9632043,-0.1243711,0.24174526,0.96233624,-0.10844076,0.25448257,0.9609783,-0.1234006,0.21056375,0.9697604,-0.080154896,0.25535342,0.9635195,-0.09145093,0.2361955,0.96739256,-0.1074019,0.22339894,0.9687919,-0.08108046,0.25443462,0.96368515,-0.09091383,0.23868035,0.9668332,-0.081683956,0.25377396,0.96380836,-0.09001012,0.24285986,0.9658764,-0.20598847,0.2557325,0.9445473,-0.20766884,0.25694743,0.9438494,-0.20842864,0.25839174,0.94328743,-0.2097431,0.25947672,0.9426981,-0.21280362,0.26103106,0.9415824,-0.21332382,0.26196468,0.9412053,-0.21399058,0.26258552,0.9408809,-0.21476306,0.26324007,0.9405219,-0.21455884,0.26369867,0.94044,-0.21468385,0.26455352,0.9401714,-0.21568546,0.2664483,0.9394068,-0.21667174,0.26732048,0.9389319,-0.21833642,0.26783118,0.9384006,-0.21841842,0.26844534,0.938206,-0.21899237,0.26897562,0.9379203,-0.22077987,0.270607,0.93703157,-0.22125036,0.2731846,0.93617225,-0.22194386,0.2751924,0.93541974,-0.22286202,0.27663007,0.93477714,-0.22355098,0.2771656,0.9344539,-0.22424753,0.27748743,0.93419147,-0.22436346,0.27790496,0.9340396,-0.22514455,0.27805313,0.93380743,-0.22726855,0.27776572,0.9333784,-0.22771345,0.2784681,0.9330606,-0.22838818,0.27853027,0.9328771,-0.23173092,0.27995,0.931627,-0.23177916,0.28085318,0.9313431,-0.23344755,0.28265694,0.9303802,-0.23673059,0.28535843,0.92872447,-0.24042101,0.2866241,0.92738575,-0.24680977,0.28658333,0.9257186,-0.2472763,0.2870078,0.92546254,-0.24778125,0.28697437,0.9253379,-0.24887109,0.28637353,0.9252315,-0.24942055,0.28664786,0.9249986,-0.24979311,0.28643954,0.9249626,-0.25145477,0.2853975,0.92483443,-0.2541894,0.28538698,0.92408985,-0.25642753,0.28496218,0.92360246,-0.26546276,0.2841901,0.9212847,-0.26605302,0.2846869,0.92096096,-0.26692858,0.28480288,0.9206717,-0.26808566,0.284539,0.92041713,-0.2692133,0.2832005,0.92050076,-0.2711663,0.27940843,0.9210862,-0.27178383,0.2790672,0.92100763,-0.27255952,0.277268,0.92132175,-0.27315876,0.2742501,0.92204726,-0.27380034,0.27292472,0.9222503,-0.27451244,0.2711788,0.9225535,-0.28932035,0.2553139,0.92255545,-0.29136318,0.25468844,0.9220853,-0.29004183,0.2529409,0.92298245,-0.28559127,0.25275543,0.92442,-0.2843634,0.2500936,0.92552185,-0.2827591,0.24874432,0.9263765,-0.28149405,0.24544863,0.9276401,-0.28029576,0.24350092,0.9285158,-0.2803075,0.24199212,0.9289066,-0.27950108,0.24202022,0.9291423,-0.27783576,0.24204832,0.9296343,-0.27942145,0.24126439,0.9293628,-0.28002575,0.24031158,0.92942774,-0.27975425,0.23921861,0.9297914,-0.2782535,0.23804173,0.9305435,-0.2773742,0.2366609,0.931158,-0.27707997,0.23492666,0.9316846,-0.27294302,0.23508911,0.932864,-0.2679432,0.23501948,0.93432987,-0.26249015,0.23494323,0.9358957,-0.2599184,0.23490846,0.93662184,-0.25031254,0.23828267,0.93838423,-0.24765342,0.236314,0.9395869,-0.24594462,0.23586512,0.94014835,-0.24450634,0.23541619,0.9406359,-0.24351563,0.23445863,0.94113195,-0.24190468,0.23350836,0.94178337,-0.24060586,0.23325136,0.94217974,-0.23981589,0.2333973,0.94234496,-0.23849471,0.23376347,0.94258946,-0.23762096,0.23405844,0.9427369,-0.23288535,0.23064926,0.94475675,-0.23568223,0.22998828,0.9442242,-0.2395614,0.2289598,0.94349766,-0.24643789,0.23092788,0.9412442,-0.2486154,0.23193684,0.94042313,-0.24952269,0.23233978,0.94008327,-0.2508817,0.23298045,0.9395629,-0.25205716,0.23367156,0.9390766,-0.25320542,0.23411813,0.9386563,-0.25408402,0.23440392,0.9383476,-0.25476962,0.23404361,0.93825155,-0.25646812,0.23167987,0.93837553,-0.25969136,0.23134658,0.9375709,-0.26258415,0.23099759,0.9368509,-0.26414376,0.23070158,0.93648535,-0.26518527,0.23047678,0.93624634,-0.26894036,0.22764309,0.9358684,-0.27212608,0.22767629,0.93493897,-0.27543274,0.22762556,0.93398255,-0.27898666,0.2275717,0.93294024,-0.27993372,0.2269866,0.9327991,-0.28095406,0.22604193,0.93272173,-0.28095272,0.22460721,0.9330687,-0.2812499,0.22296597,0.93337274,-0.28128928,0.21988603,0.9340912,-0.2816417,0.21933815,0.9341138,-0.28151742,0.21862723,0.93431795,-0.28117195,0.21789536,0.9345929,-0.28045958,0.21819727,0.93473655,-0.27996814,0.21851823,0.93480885,-0.27933258,0.21959344,0.9347471,-0.27864388,0.22010641,0.9348319,-0.2779033,0.2192301,0.9352582,-0.276414,0.21856569,0.93585485,-0.27700037,0.21783382,0.9358521,-0.27803913,0.21822636,0.93545264,-0.28011867,0.21746278,0.93500984,-0.28150484,0.21687886,0.93472916,-0.28196362,0.21597107,0.93480104,-0.2814059,0.21473034,0.9352549,-0.28089857,0.21396534,0.93558264,-0.27999207,0.21412766,0.9358172,-0.2777933,0.2138596,0.93653345,-0.27605593,0.21418425,0.9369729,-0.27481166,0.21472697,0.93721443,-0.2731167,0.21547356,0.9375385,-0.2715092,0.21571405,0.93795,-0.2665384,0.21538113,0.93945104,-0.26214162,0.21627566,0.94048214,-0.25573057,0.21950446,0.94149864,-0.25185966,0.21948783,0.9425454,-0.24770537,0.2194712,0.94364953,-0.24179043,0.21944457,0.9451886,-0.23709728,0.2194255,0.94638115,-0.2116095,0.26020253,0.9420807,-0.21471524,0.2629054,0.9406265,-0.22002639,0.26920375,0.9376128,-0.22408022,0.27726465,0.93429774,-0.22929381,0.27795237,0.9328273,-0.23121671,0.27903938,0.9320278,-0.24452616,0.286456,0.9263638,-0.24832489,0.28648204,0.9253447,-0.24998881,0.2857487,0.9251234,-0.25817212,0.28412563,0.9233741,-0.28951865,0.25415444,0.9228133,-0.265694,0.2276107,0.9368031,-0.27637863,0.21781462,0.9360404,-0.25880936,0.21795528,0.94101715,-0.21805792,0.2674141,0.93858427,-0.22628233,0.27762166,0.93366086,-0.2636374,0.28388378,0.9219031,-0.2703096,0.28078693,0.9209188,-0.28488466,0.2575042,0.92332673,-0.278254,0.2425246,0.92938507,-0.27744716,0.2426081,0.9296044,-0.21756853,0.2671816,0.93876404,-0.23023668,0.27812186,0.93254447,-0.26057583,0.28376603,0.9228093,-0.28834054,0.25425243,0.9231551,-0.2870053,0.25377604,0.9237021,-0.25841007,0.23729591,0.9364373,-0.23482244,0.2341828,0.943407,-0.2426854,0.22952141,0.9425623,-0.27623197,0.21830453,0.93596953,-0.2794953,0.26377192,0.9232046,-0.25515914,0.23319179,0.93835783,-0.25576994,0.2383489,0.93689466,-0.25574985,0.23224191,0.9384325,-0.25242382,0.27465212,0.9278192,-0.25310835,0.23873869,0.937518,-0.21676119,0.25697416,0.9417956,-0.25794634,0.2654616,0.9289746,-0.25174204,0.2386352,0.93791217,-0.21544458,0.25470898,0.94271255,-0.24100037,0.2584325,0.93548465,-0.22610754,0.23489237,0.94535756,-0.23360525,0.24668057,0.9405197,-0.22365855,0.22489831,0.94836575,-0.22575042,0.2344789,0.9455456,-0.22502853,0.23430252,0.9457613,-0.23247239,0.23188049,0.944557,-0.23283428,0.23308153,0.9441722,0.20778856,-0.08776699,0.9742283,0.20893604,-0.09058337,0.973725,0.21002468,-0.092801645,0.9732818,0.21047418,-0.095294416,0.9729438,0.2099999,-0.09651756,0.97292566,0.20954837,-0.09815116,0.9728596,0.21025161,-0.09987441,0.97253245,0.22017457,-0.104596324,0.9698365,0.21614246,-0.10532518,0.9706642,0.21319301,-0.10599126,0.97124386,0.21187018,-0.10613529,0.9715175,0.21153142,-0.10668611,0.97153103,0.21237053,-0.107779115,0.9712273,0.21345286,-0.11066106,0.9706658,0.21536975,-0.1147696,0.9697648,0.22031428,-0.12108609,0.9678842,0.2208379,-0.12588456,0.9671524,0.2244103,-0.13537276,0.9650462,0.22891873,-0.14556037,0.9625011,0.22865655,-0.14727841,0.9623021,0.22863333,-0.14875506,0.9620804,0.22297913,-0.15600692,0.9622589,0.22351925,-0.15530144,0.96224767,0.22380121,-0.15470542,0.9622782,0.22301486,-0.15509441,0.96239805,0.22216244,-0.15627962,0.9624035,0.22212735,-0.15726271,0.9622514,0.22331336,-0.16040449,0.961458,0.22513339,-0.16592,0.9600966,0.22524111,-0.16854481,0.959614,0.22646531,-0.1706697,0.95895016,0.22709453,-0.17362976,0.9582697,0.22963792,-0.178066,0.95684844,0.23025341,-0.18087459,0.9561734,0.2317541,-0.1824467,0.95551205,0.2331274,-0.18452768,0.954778,0.23332529,-0.18664636,0.9543178,0.23476562,-0.18960428,0.95338094,0.23489705,-0.19174089,0.9529212,0.23349363,-0.19916254,0.9517431,0.23323868,-0.20471463,0.95062697,0.2265183,-0.21678747,0.94957495,0.22218744,-0.21903141,0.9500831,0.21910343,-0.22113468,0.95031214,0.21746504,-0.22542268,0.94968075,0.21135075,-0.2323895,0.9493819,0.21029341,-0.23777863,0.94828165,0.20797245,-0.24258344,0.9475763,0.205794,-0.25270268,0.94540477,0.20179845,-0.26300162,0.9434551,0.20060183,-0.2674684,0.94245404,0.19761768,-0.27174887,0.9418597,0.19593126,-0.27281654,0.9419034,0.19615509,-0.2742166,0.9414502,0.19617672,-0.28742912,0.9374962,0.19536866,-0.29022276,0.9368041,0.22392155,-0.10292478,0.9691572,0.22876331,-0.14996171,0.96186215,0.22454801,-0.1631477,0.96070856,0.19849014,-0.27093357,0.94191116,0.22308102,-0.15655231,0.96214664,0.21616171,-0.23478514,0.9477078,0.19969131,-0.26949108,0.9420711,0.1963968,-0.28408733,0.9384683,0.21776506,-0.23279737,0.94783103,0.2297227,-0.21279392,0.9497085,0.19653785,-0.27540967,0.941022,0.3579388,-0.1456211,0.92232007,0.22461037,-0.12510495,0.9663845,0.22840075,-0.15104017,0.96177953,0.21517703,-0.24022649,0.94656754,0.3505567,-0.30194908,0.88653076,0.3582306,-0.1467044,0.9220351,0.21597603,-0.2388513,0.94673353,0.23131607,-0.21002518,0.94993806,0.34496802,-0.29621518,0.8906479,0.3604558,-0.15987873,0.91897243,0.2815914,-0.12139067,0.95182484,0.24244012,-0.103424095,0.96463794,0.20703453,-0.27408305,0.93915665,0.21516865,-0.25284952,0.943276,0.2232662,-0.23149347,0.9468701,0.24055223,-0.29568693,0.92450196,0.331609,-0.29239133,0.89696306,0.3499259,-0.16580997,0.9219864,0.34960276,-0.14627315,0.9254091,0.25959957,-0.122560374,0.9579077,0.23996893,-0.11358305,0.964113,0.27905336,-0.1315278,0.95122534,0.23107868,-0.16507624,0.9588287,0.2205431,-0.27155328,0.93681353,0.21604304,-0.27239677,0.9376169,0.22421063,-0.2511531,0.94162184,0.22780289,-0.23064065,0.9459972,0.2572065,-0.295713,0.9199993,0.3313649,-0.29234323,0.8970689,0.3503122,-0.166431,0.9217278,0.2599571,-0.12276091,0.957785,0.27923036,-0.13162789,0.9511596,0.24014936,-0.113683365,0.9640562,0.27958438,-0.13182819,0.9510278,0.23191634,-0.16762409,0.95818424,0.22518833,-0.2485248,0.9420858,0.22828802,-0.22931994,0.9462013,0.22103547,-0.2702468,0.93707526,0.22925773,-0.22667705,0.94660366,0.2554308,-0.29541168,0.9205906,0.32911545,-0.29231474,0.897906,0.3487,-0.16673097,0.9222847,0.2641346,-0.14322275,0.9537925,0.22199276,-0.27029732,0.93683434,0.2216737,-0.27028057,0.9369147,0.22583014,-0.24855874,0.9419232,0.22958025,-0.22669412,0.9465214,0.27719098,-0.29720694,0.91369206,0.2576245,-0.29543856,0.91997045,0.23791535,-0.29366937,0.92582643,0.32854122,-0.28952295,0.8990201,0.34531876,-0.18225646,0.92061806,0.33517018,-0.16076571,0.9283401,0.355158,-0.20366062,0.9123515,0.26770222,-0.14329696,0.9527862,0.2483581,-0.14442876,0.95784056,0.28694308,-0.1421651,0.94733983,0.24196316,-0.27207938,0.93135744,0.2617998,-0.2738605,0.9254519,0.26587203,-0.2521437,0.9304491,0.28149348,-0.2756407,0.91912115,0.24977535,-0.22849697,0.9409577,0.24591802,-0.25035155,0.9364019,0.3283318,-0.2869556,0.8999193,0.3448663,-0.18909721,0.9194071,0.35489944,-0.20706722,0.91168505,0.33497888,-0.16420037,0.9278078,0.35436946,-0.21387297,0.910319,0.24983595,-0.15547231,0.955725,0.25267443,-0.17749998,0.95113057,0.2705381,-0.16536875,0.9483999,0.28834227,-0.15321246,0.9451903,0.26682982,-0.2457337,0.9318889,0.2502232,-0.22527413,0.9416156,0.28200838,-0.27245826,0.9199118,0.25111172,-0.21882111,0.94289994,0.34682247,-0.25372502,0.9029606,0.3301193,-0.26887557,0.9048354,0.3133746,-0.28395975,0.90618056,0.3210969,-0.16557084,0.9324608,0.335692,-0.19000667,0.9226095,0.33035895,-0.16465719,0.929382,0.3498258,-0.21432547,0.91196847,0.25277233,-0.17910627,0.9508034,0.2706033,-0.16644193,0.94819355,0.25270715,-0.17803538,0.95102185,0.2883751,-0.15375008,0.9450929,0.29878798,-0.2573231,0.91897255,0.31553847,-0.24212451,0.9175027,0.30037144,-0.21518819,0.9292314,0.2996544,-0.23631118,0.92431825,0.29777178,-0.27821398,0.91319716,0.33224264,-0.2268663,0.9155034,0.33126327,-0.24792916,0.9103822,0.28361756,-0.23048928,0.9308253,0.2679052,-0.20347913,0.94171286,0.26743448,-0.22465922,0.9370203,0.30343238,-0.17823714,0.9360344,0.28569686,-0.19087385,0.93911904,0.3180657,-0.20261419,0.92616504,0.027945323,0.108881265,0.9936618,0.028150385,0.10829076,0.99372065,0.0315384,0.10905155,0.99353564,0.039660454,0.11022129,0.9931155,0.046927366,0.11093536,0.9927191,0.046949066,0.11194908,0.99260426,0.04771845,0.11600799,0.9921014,0.0480754,0.11687384,0.9919825,0.04769415,0.117912315,0.991878,0.04712739,0.121527605,0.9914686,0.04757962,0.122212686,0.99136287,0.047730118,0.12304582,0.99125254,0.04784958,0.12918514,0.99046534,0.048161287,0.12954687,0.990403,0.04817786,0.13012569,0.99032634,0.047025,0.13253768,0.9900619,0.047031753,0.13438554,0.98981243,0.046800885,0.13617568,0.9895786,0.04642118,0.13699038,0.9894841,0.046682756,0.14003386,0.9890456,0.046815056,0.14388981,0.98848575,0.046658386,0.14559649,0.9882432,0.047003612,0.14680631,0.98804784,0.04717265,0.14977717,0.9875938,0.047808103,0.15727098,0.9863976,0.04992793,0.15749243,0.98625726,0.052452702,0.15787947,0.9860643,0.053564694,0.15967919,0.9857147,0.05419111,0.16195868,0.9853084,0.0554481,0.16617712,0.98453575,0.05725321,0.16792227,0.9841363,0.05716035,0.16983911,0.98381263,0.058516294,0.17087364,0.9835538,0.05974934,0.17110209,0.98343986,0.061120175,0.17205502,0.9831894,0.06187091,0.17372617,0.9828485,0.06259281,0.17640029,0.9823263,0.063128576,0.18099596,0.9814557,0.064471565,0.1807371,0.9814161,0.06469803,0.18082175,0.9813855,0.064899966,0.18113512,0.9813145,0.06573144,0.1840786,0.9807112,0.06563958,0.18487357,0.9805678,0.06436829,0.18684548,0.9802783,0.06414699,0.18824592,0.9800248,0.063937105,0.19032797,0.9796363,0.06360993,0.19217238,0.9792975,0.063240565,0.19286981,0.97918427,0.0625656,0.19345684,0.97911185,0.060714573,0.20162302,0.97757965,0.06140844,0.20272383,0.9773086,0.060302395,0.20428163,0.97705305,0.05889126,0.20538357,0.9769081,0.05735333,0.20587051,0.97689706,0.056306306,0.20666778,0.97678965,0.055751868,0.20777324,0.9765869,0.053719074,0.20992683,0.9762403,0.04904638,0.21418507,0.97556096,0.04856971,0.21428661,0.9755625,0.047802966,0.21445975,0.9755624,0.04650136,0.2139445,0.97573835,0.04514738,0.21297541,0.97601396,0.04429604,0.21293372,0.97606206,0.04210167,0.2123958,0.9762763,0.040347345,0.21169868,0.97650176,0.040305845,0.21112728,0.97662723,0.03387315,0.19797225,0.9796221,0.03177147,0.1983991,0.9796062,0.027370716,0.19766821,0.9798868,0.026706435,0.1984976,0.9797374,0.025678856,0.19860788,0.9797426,0.024403764,0.19846335,0.97980446,0.023942728,0.19814846,0.97987956,0.023804173,0.19779429,0.9799545,0.02335058,0.19729635,0.98006576,0.022545332,0.195865,0.98037165,0.02113252,0.19527918,0.98052,0.020174777,0.1953084,0.9805343,0.019612303,0.19512287,0.98058265,0.01944203,0.19379543,0.98084927,0.018792868,0.19348691,0.9809229,0.01852124,0.19279623,0.981064,0.017365275,0.19197583,0.981246,0.016871272,0.19216232,0.98121816,0.016410876,0.19128495,0.98139733,0.015840683,0.19068594,0.9815233,0.015427448,0.19069356,0.9815284,0.014992899,0.18885106,0.9818912,0.014092082,0.1865684,0.9823409,0.013504608,0.18584245,0.9824867,0.013104762,0.18029025,0.9835261,0.013390899,0.17982507,0.9836074,0.013600807,0.17968751,0.9836297,0.016458223,0.17780678,0.9839277,0.020208634,0.17533897,0.9843007,0.022859726,0.1735961,0.9845516,0.02308197,0.17301106,0.98464936,0.023135487,0.16935286,0.9852839,0.02318165,0.16620992,0.98581785,0.023736667,0.16441041,0.9861064,0.023861311,0.16266586,0.9863926,0.024530781,0.16134554,0.98659307,0.027577417,0.15729712,0.98716617,0.027660783,0.15248549,0.98791856,0.027725223,0.14883253,0.9884736,0.028072987,0.13969545,0.98979646,0.028093629,0.13443375,0.99052423,0.028118502,0.12826222,0.9913416,0.028141512,0.12182283,0.9921528,0.026518347,0.121738225,0.99220794,0.027409518,0.119738325,0.99242705,0.027567787,0.1179232,0.99264,0.027779542,0.11733082,0.9927043,0.027342467,0.11645235,0.99281985,0.027710637,0.11511399,0.9929657,0.030838702,0.10964106,0.9934927,0.04741197,0.11486259,0.9922493,0.047615882,0.12434977,0.9910953,0.0475875,0.12871017,0.9905398,0.04712115,0.15268424,0.987151,0.05444919,0.16495599,0.9847968,0.05966143,0.19935451,0.97810954,0.0457052,0.21324854,0.97592837,0.01961011,0.19441241,0.98072386,0.018575598,0.19211715,0.98119617,0.018195424,0.19180608,0.9812642,0.026986992,0.15880005,0.9869419,0.028056096,0.14385524,0.98920095,0.02841802,0.1146171,0.9930032,0.030228125,0.11192456,0.99325687,0.04731928,0.11931947,0.99172765,0.047579955,0.13125107,0.99020666,0.053965826,0.1642145,0.9849473,0.05765743,0.17042941,0.98368156,0.062555216,0.1806733,0.9815518,0.041177217,0.20789999,0.97728294,0.021915328,0.19550061,0.9804587,0.06226378,0.193838,0.97905576,0.059636626,0.1975788,0.97847134,0.061383124,0.17825887,0.98206717,0.06183898,0.17967239,0.98178095,0.04079118,0.2061541,0.97766894,0.061401866,0.17867304,0.9819907,0.040358026,0.2051808,0.9778916,0.039080735,0.20263791,0.97847354,0.037335653,0.13943505,0.98952717,0.046771344,0.18533489,0.9815617,0.03812696,0.2015762,0.97873044,0.035073005,0.14731923,0.988467,0.046432678,0.18305326,0.98200583,0.034961104,0.14761294,0.9884271,0.04620795,0.17952861,0.9826669,0.034337934,0.19346176,0.9805067,0.034614787,0.15531984,0.9872576,0.0460975,0.17525095,0.983444,0.12503336,0.076503985,0.98919857,0.12670052,0.07703504,0.9889452,0.12715715,0.07823649,0.98879224,0.12617928,0.07844031,0.9889014,0.12541415,0.078934796,0.9889593,0.12393613,0.07663402,0.9893266,0.2313509,0.23326795,0.9444908,0.22855225,0.23691593,0.9442641,0.22559737,0.23686787,0.94498646,0.22392556,0.23634377,0.9455152,0.22187175,0.23468482,0.94641215,0.21950474,0.2340311,0.94712573,0.21665935,0.23258013,0.9481377,0.21487162,0.23141465,0.94882953,0.21317703,0.23050079,0.949434,0.21089442,0.22825456,0.9504858,0.20447005,0.22648863,0.9523103,0.20225967,0.22821137,0.95237106,0.19723973,0.23001066,0.9529909,0.19400604,0.230738,0.9534787,0.19251165,0.23096023,0.9537278,0.18495099,0.23126458,0.9551491,0.17692281,0.23056309,0.9568381,0.17284329,0.22972712,0.9577843,0.17210002,0.22954206,0.95796245,0.16981086,0.22845533,0.95863044,0.16792132,0.22725049,0.95924956,0.14324738,0.22596563,0.9635454,0.13704336,0.22989953,0.9635172,0.13468353,0.23043618,0.9637217,0.13256581,0.23074462,0.9639415,0.13186426,0.23069324,0.96405,0.12472898,0.22677334,0.96592784,0.12332525,0.2268596,0.9660878,0.121623725,0.22641885,0.9664068,0.11539155,0.22678158,0.9670858,0.11227273,0.23114094,0.9664206,0.1116342,0.23190287,0.966312,0.110319264,0.23319758,0.9661514,0.10811132,0.23520336,0.9659148,0.10662765,0.23613921,0.96585137,0.105733916,0.23638025,0.9658906,0.09879773,0.23794656,0.96624035,0.09291489,0.23976803,0.9663737,0.091635466,0.23953632,0.96655333,0.09072982,0.23915818,0.9667324,0.08873979,0.23780832,0.96724993,0.083335556,0.23767099,0.9677643,0.081670694,0.23785138,0.9678619,0.07900196,0.23740105,0.9681939,0.07723159,0.23686868,0.9684671,0.07491458,0.23594795,0.9688738,0.07192832,0.23346362,0.9697015,0.07106457,0.23314205,0.96984255,0.07033944,0.2327276,0.96999496,0.06414944,0.21852079,0.97372144,0.06208874,0.21695042,0.9742061,0.06207045,0.21482511,0.97467816,0.06195399,0.21135229,0.9754445,0.061958276,0.20896272,0.9759589,0.062117375,0.20740569,0.97628087,0.061777845,0.2066644,0.9764596,0.061645374,0.20598729,0.976611,0.061772045,0.20496984,0.9768171,0.062271222,0.20449015,0.97688586,0.062384844,0.20333128,0.9771205,0.048070528,0.11104791,0.99265176,0.05782114,0.11141552,0.9920904,0.059444536,0.11363673,0.99174243,0.06070979,0.11374676,0.99165314,0.0643989,0.11490155,0.9912873,0.06145667,0.11281202,0.99171394,0.06048713,0.11246223,0.99181324,0.0598128,0.11193806,0.99191344,0.060435403,0.1116239,0.9919111,0.07149798,0.111666195,0.99117035,0.08427103,0.10498521,0.99089676,0.087437995,0.10101306,0.9910353,0.08832444,0.1004848,0.99101037,0.088558525,0.099808134,0.9910578,0.08867828,0.098304585,0.9911974,0.08972997,0.09763038,0.9911694,0.09151276,0.098304585,0.99093974,0.09200766,0.099221334,0.9908026,0.0923855,0.09945027,0.9907445,0.09235958,0.09841574,0.9908502,0.09279585,0.09798736,0.9908519,0.09355685,0.09714015,0.99086374,0.091744095,0.09719188,0.99102813,0.090478055,0.09709091,0.9911544,0.09019671,0.09642848,0.99124473,0.09077872,0.09556406,0.9912753,0.093445435,0.09413881,0.9911639,0.09626821,0.09539781,0.9907733,0.09543895,0.093736716,0.991012,0.094375126,0.09350587,0.99113566,0.09314605,0.09302648,0.99129707,0.09309199,0.09166286,0.99142915,0.09320293,0.090546004,0.99152136,0.0935221,0.090176776,0.991525,0.09504258,0.08983046,0.99141186,0.09463432,0.08935601,0.99149376,0.093785316,0.08962933,0.99154973,0.09344249,0.0893984,0.99160296,0.09459131,0.08621415,0.991776,0.09538751,0.08435211,0.99185985,0.09644709,0.08251604,0.9919118,0.09705075,0.08102034,0.9919762,0.10072717,0.07769265,0.9918759,0.10260283,0.07650577,0.99177593,0.10372184,0.075650066,0.9917252,0.10556064,0.074815474,0.99159443,0.10723723,0.07458521,0.9914319,0.10779276,0.07484436,0.99135214,0.108987674,0.076226205,0.99111617,0.10865857,0.07557863,0.99120194,0.10879561,0.075142734,0.99122,0.10942149,0.075045854,0.9911585,0.11222442,0.07555569,0.9908063,0.11287981,0.07553441,0.99073344,0.11382228,0.07569928,0.99061304,0.11461687,0.077679105,0.99036807,0.11490093,0.07629753,0.9904426,0.11517816,0.07567895,0.99045783,0.11659744,0.075717114,0.9902888,0.117321335,0.075736724,0.99020183,0.11910203,0.07625509,0.9899494,0.117924154,0.07792214,0.9899606,0.117888846,0.08007059,0.9897934,0.11777268,0.08110351,0.9897231,0.1184418,0.08098636,0.9896528,0.11871168,0.07886766,0.98979163,0.11922108,0.07743439,0.98984355,0.12018579,0.07655664,0.98979515,0.12174168,0.07667229,0.98959607,0.124162175,0.07870972,0.9891352,0.12430817,0.08046985,0.9889753,0.12394551,0.08166158,0.9889231,0.1250437,0.080408655,0.9888875,0.12639493,0.079288214,0.9888062,0.12942153,0.07941988,0.9884041,0.13027008,0.08011052,0.9882368,0.13062613,0.08115876,0.9881042,0.13124473,0.07951923,0.98815554,0.13260698,0.07889998,0.9880234,0.13530652,0.0788465,0.98766154,0.13922474,0.079422496,0.9870707,0.14378035,0.07946148,0.98641425,0.14436224,0.08117492,0.9861897,0.14301011,0.085833736,0.9859922,0.14456898,0.08410837,0.9859136,0.14545853,0.08391724,0.985799,0.14612147,0.08274271,0.98580027,0.14756249,0.08236825,0.9856169,0.14805263,0.08294408,0.98549515,0.14826147,0.08289906,0.98546755,0.14874846,0.084248416,0.9852797,0.14967956,0.08588647,0.9849973,0.1509429,0.087970674,0.98462045,0.1523736,0.09058838,0.98416257,0.15660611,0.104686104,0.9820974,0.15961424,0.10775864,0.9812805,0.1618772,0.11007473,0.98065245,0.16303843,0.11100727,0.98035496,0.16384597,0.111792356,0.9801311,0.16526227,0.11269002,0.97979045,0.16671124,0.113757774,0.9794215,0.16779299,0.11580398,0.9789969,0.16868255,0.11771344,0.97861624,0.16937135,0.118125506,0.97844756,0.17027833,0.11846062,0.9782496,0.17304584,0.12050734,0.97751373,0.17523059,0.12116209,0.9770435,0.17555095,0.12035847,0.9770853,0.17589855,0.119991235,0.977068,0.1773977,0.119734064,0.97682846,0.17944479,0.11975099,0.97645235,0.18061785,0.11998532,0.9762073,0.18122838,0.12066473,0.9760104,0.18492728,0.12166628,0.9751919,0.18682246,0.11982117,0.97505903,0.18869673,0.11799778,0.9749206,0.19006002,0.11663433,0.9748198,0.19093667,0.113298826,0.97504187,0.19141012,0.112469934,0.975045,0.19221528,0.11212689,0.97492605,0.19363931,0.112345435,0.97461903,0.19511098,0.11293733,0.97425705,0.19640337,0.113791645,0.97389793,0.19766608,0.11489219,0.9735132,0.19851892,0.11589113,0.9732212,0.19888492,0.11662332,0.973059,0.19901235,0.119350836,0.97270215,0.20057584,0.12103015,0.9721734,0.202727,0.12284281,0.97149956,0.20396195,0.12388561,0.9711086,0.2038398,0.1242594,0.9710865,0.20302832,0.12536694,0.9711141,0.20368089,0.12880827,0.970527,0.20636122,0.13207898,0.96952057,0.20634115,0.13315597,0.9693775,0.20644967,0.1344667,0.9691735,0.20855342,0.13817883,0.96820045,0.20967576,0.1431021,0.9672424,0.20968449,0.14405084,0.9670996,0.21092543,0.14642353,0.9664733,0.21238267,0.14945857,0.96568924,0.21538568,0.14995149,0.96494746,0.21651994,0.15070482,0.9645761,0.21781427,0.15204838,0.9640738,0.21863101,0.153294,0.9636916,0.21899904,0.15447967,0.96341866,0.21921948,0.15676945,0.96299857,0.2196567,0.1593772,0.9624707,0.21990517,0.16166435,0.9620324,0.22219948,0.16484664,0.96096456,0.22478227,0.16573006,0.96021163,0.22515582,0.16614515,0.96005243,0.22547793,0.16754586,0.9597333,0.22565833,0.17045043,0.9591793,0.2260264,0.17427005,0.958406,0.22834887,0.17659402,0.9574296,0.22926387,0.18023162,0.95653266,0.23821984,0.195005,0.9514328,0.23965341,0.19506522,0.95106035,0.24061757,0.19540124,0.9507479,0.2439395,0.19767731,0.94943,0.24533568,0.19844665,0.9489095,0.24634977,0.19923595,0.9484813,0.24657325,0.19992232,0.9482788,0.24662495,0.20092684,0.94805306,0.24617493,0.20327793,0.94766873,0.24667199,0.20500566,0.9471671,0.24687336,0.20768322,0.9465311,0.24690948,0.2097668,0.94606215,0.24674778,0.21048835,0.9459441,0.24615343,0.21148546,0.94587654,0.2460417,0.21170124,0.94585735,0.24494709,0.21300034,0.9458498,0.24319528,0.21378298,0.94612527,0.24082877,0.21399364,0.94668275,0.2389799,0.21684976,0.9465013,0.23872808,0.21836106,0.94621736,0.23670165,0.22628601,0.9448635,0.23435783,0.2293447,0.94471025,0.21020126,0.22654507,0.95104825,0.16288468,0.22172956,0.96140766,0.120521605,0.22544582,0.9667723,0.10467779,0.23622203,0.96604437,0.08636429,0.23756248,0.9675253,0.06943573,0.22589421,0.9716741,0.06714421,0.22112378,0.9729316,0.06500053,0.11465689,0.9912763,0.09396761,0.09801204,0.990739,0.10793657,0.076466665,0.9912127,0.11424057,0.078041114,0.9903831,0.12296247,0.081692114,0.98904324,0.1426876,0.085546784,0.9860639,0.15330677,0.09521625,0.98358065,0.18182223,0.12251805,0.97566897,0.18963854,0.11734858,0.97481614,0.20297353,0.12784475,0.9708025,0.23004757,0.18403842,0.95561916,0.2391379,0.21616834,0.94661725,0.148289,0.22338882,0.9633835,0.1197034,0.22495429,0.96698844,0.06257608,0.2038545,0.9769993,0.09463671,0.09778639,0.99069756,0.10890449,0.0772781,0.9910438,0.117443316,0.08236825,0.98965776,0.11778741,0.08236825,0.9896169,0.12277843,0.08221962,0.98902243,0.17480366,0.12180756,0.9770397,0.19928811,0.1199439,0.97257274,0.22073056,0.16377823,0.9614857,0.23699656,0.19443744,0.9518544,0.18373343,0.22410977,0.9570877,0.11654111,0.2256867,0.96720403,0.06864433,0.22383988,0.9722056,0.076790705,0.110577084,0.9908966,0.095966816,0.094566405,0.9908822,0.1303972,0.08098968,0.9881484,0.20229825,0.12658443,0.9711085,0.22567189,0.17220274,0.9588631,0.23929133,0.21554014,0.9467218,0.1854188,0.22396733,0.956796,0.20782493,0.2262038,0.9516515,0.1517998,0.22252645,0.96303624,0.08030822,0.10829751,0.9908694,0.18218508,0.122869074,0.97555715,0.22574274,0.17296164,0.9587098,0.2355701,0.19320843,0.9524585,0.23955786,0.21445894,0.9468999,0.11768199,0.22509053,0.96720487,0.074534826,0.22074139,0.97248024,0.18266182,0.12296206,0.9754563,0.155921,0.22191416,0.96251893,0.090237446,0.21448514,0.9725499,0.23258463,0.18863508,0.9541075,0.11883369,0.22487542,0.9671141,0.09081566,0.21437731,0.9725199,0.06315855,0.14437759,0.987505,0.19231485,0.13293763,0.9722873,0.22128808,0.16677414,0.9608423,0.2013518,0.21809582,0.9549302,0.109475404,0.21289341,0.97092307,0.08607494,0.20837618,0.9742538,0.13276239,0.21740599,0.9670102,0.06468861,0.14810139,0.98685426,0.15394406,0.09809852,0.9831978,0.13573453,0.090236135,0.9866274,0.19368632,0.13564633,0.97164077,0.22621326,0.18205829,0.95691293,0.17694052,0.22005151,0.9593067,0.19789334,0.21818808,0.95563185,0.21876921,0.21632396,0.95149565,0.08844158,0.19416054,0.9769748,0.11110135,0.20343013,0.97276545,0.08686451,0.20364232,0.9751842,0.13360055,0.21268165,0.9679449,0.06511041,0.14958163,0.98660326,0.09887829,0.09534097,0.99052167,0.15452497,0.100726396,0.9828409,0.13603008,0.091551274,0.9864655,0.1906551,0.13360314,0.972523,0.18416089,0.1858127,0.96517277,0.2120597,0.20015721,0.9565395,0.17003469,0.20389803,0.96411294,0.19828252,0.1676642,0.965698,0.20522872,0.18393578,0.9612746,0.08851338,0.1935655,0.97708637,0.11115131,0.20303422,0.9728425,0.08846552,0.1939622,0.97701204,0.13362664,0.2124841,0.9679847,0.071282804,0.14742972,0.98650056,0.11748538,0.10451277,0.98755974,0.16248633,0.17005163,0.97194684,0.18746367,0.1597638,0.96919185,0.15924695,0.19605145,0.9675765,0.16563343,0.14393286,0.97562736,0.1765795,0.15185314,0.9725021,0.091375865,0.17530188,0.9802651,0.094223075,0.15697773,0.98309714,0.11703219,0.1665112,0.97906977,0.09705224,0.13859937,0.9855816,0.13667378,0.1942901,0.9713761,0.115728214,0.10565298,0.9876459,0.13514812,0.103190064,0.98543733,0.09627311,0.10811537,0.9894658,0.15655209,0.16358912,0.97402775,0.16264537,0.14068905,0.9766028,0.15630911,0.1928367,0.9687009,0.15665078,0.13419689,0.97849464,0.15553968,0.16162518,0.9745177,0.13579534,0.13369246,0.9816751,0.15511024,0.13123772,0.9791412,0.15581071,0.19186012,0.9689751,0.11644005,0.13614638,0.9838221,0.15603726,0.16280253,0.97424215,0.15639026,0.13380185,0.97859037,0.15605508,0.19244565,0.9688196,0.15586907,0.13301171,0.9787812,0.15555227,0.10310019,0.9824326,0.15561622,0.13242047,0.9789016,0.4058861,-0.306411,0.8610277,0.45345587,-0.37715742,0.8075457,0.45260683,-0.3758927,0.80861104,0.45080966,-0.37567,0.8097177,0.4499218,-0.37363452,0.81115204,0.45063186,-0.37155145,0.81171453,0.45051128,-0.37131724,0.81188864,0.45006564,-0.3710672,0.81225,0.44910157,-0.3708171,0.81289756,0.44684675,-0.36987033,0.8145698,0.4439502,-0.36895642,0.81656563,0.4391363,-0.3679518,0.81961626,0.43723828,-0.36768723,0.8207489,0.43642026,-0.36661065,0.8216654,0.4358972,-0.3642118,0.8230087,0.435277,-0.36262554,0.82403684,0.4342348,-0.35589558,0.8275134,0.43470508,-0.3545588,0.8278403,0.43481937,-0.35330743,0.82831514,0.43506056,-0.3517523,0.8288502,0.43531176,-0.35070872,0.82916045,0.43509632,-0.3502569,0.82946444,0.43435946,-0.3499392,0.82998455,0.43212768,-0.34979546,0.83120924,0.42938438,-0.34985936,0.8326028,0.42956546,-0.34827498,0.8331735,0.42972115,-0.34582284,0.8341141,0.4294454,-0.3444103,0.83484024,0.42893785,-0.3436758,0.8354036,0.4278049,-0.34290895,0.8362993,0.42542043,-0.34185848,0.8379441,0.41958094,-0.3378943,0.84248394,0.41660818,-0.33494732,0.8451319,0.4156118,-0.33443666,0.8458244,0.41355276,-0.32691675,0.84976447,0.41391817,-0.3253313,0.8501949,0.41374052,-0.32455596,0.85057753,0.4119553,-0.3210021,0.8527898,0.41180158,-0.31977338,0.85332555,0.40927345,-0.3163412,0.85581744,0.40845644,-0.31484196,0.8567601,0.40794432,-0.31291452,0.8577097,0.40737772,-0.31137305,0.8585396,0.40549532,-0.30760974,0.8607844,0.43354946,-0.36017653,0.8260192,0.433795,-0.35746875,0.8270659,0.42218927,-0.34026104,0.8402254,0.41219556,-0.32221732,0.85221523,0.40680328,-0.31075093,0.8590372,0.44989735,-0.3743032,0.8108572,0.41477007,-0.3316659,0.8473273,0.40608263,-0.30970106,0.859757,0.4056463,-0.30850318,0.86039346,0.315752,-0.40092847,0.85997504,0.43333954,-0.35941476,0.8264611,0.3452209,-0.3351787,0.87662864,0.32349336,-0.39898977,0.8579972,0.45004913,-0.37490368,0.81049556,0.3570469,-0.33732638,0.87105024,0.32360402,-0.39868346,0.8580979,0.4503681,-0.37537456,0.8101003,0.35741943,-0.33723974,0.87093097,0.32409948,-0.39962104,0.85747457,0.3982259,-0.32546666,0.85760576,0.35696584,-0.34058866,0.8698131,0.32432562,-0.40021476,0.857112,0.42621642,-0.35057542,0.83392835,0.3747017,-0.3495072,0.8587452,0.35408905,-0.35700914,0.8643873,0.3952144,-0.34198293,0.8525568,0.3280798,-0.43232325,0.83991677,0.32958788,-0.4130625,0.84897065,0.33091167,-0.3936153,0.8576505,0.37681967,-0.42305002,0.8240362,0.42643732,-0.35096323,0.83365214,0.43684316,-0.36738122,0.8210963,0.3533678,-0.3619929,0.8626079,0.374206,-0.352841,0.8575973,0.35384974,-0.35867152,0.8637969,0.39495993,-0.34365532,0.85200214,0.32981804,-0.41164872,0.8495678,0.33102077,-0.3929019,0.8579355,0.3282011,-0.43162334,0.84022933,0.33123842,-0.39147437,0.85850394,0.37709963,-0.4227294,0.82407266,0.41710034,-0.39330417,0.8193528,0.38533852,-0.36924627,0.8456781,0.40050074,-0.3519023,0.8460284,0.35905966,-0.37017834,0.8567638,0.4112746,-0.36831394,0.8337854,0.34282023,-0.39998436,0.8499922,0.37622216,-0.42290395,0.8243841,0.41690412,-0.39315304,0.81952524,0.39466703,-0.39814484,0.8280813,0.36890632,-0.39906475,0.83943754,0.373508,-0.41336322,0.8304352,0.4157884,-0.3828161,0.82496774,0.36408865,-0.38466868,0.84821546,0.39621574,-0.39749125,0.82765555,0.4165605,-0.38248703,0.8247309,0.37583527,-0.41238996,0.8298689,0.37438014,-0.4128126,0.8303164,0.37408942,-0.41299617,0.8303561,0.39524767,-0.3977751,0.82798207,0.41607797,-0.38263,0.82490814,0.3955215,-0.3976805,0.8278967,0.37548745,-0.4124839,0.82997966,0.41621447,-0.3825823,0.82486135,0.37479168,-0.41267174,0.83020073,0.37465447,-0.41271877,0.83023924,0.24064471,0.3813666,0.8925523,0.24279757,0.37334517,0.8953562,0.24342039,0.36821875,0.8973079,0.24362157,0.36688095,0.89780116,0.24424799,0.3659722,0.89800185,0.24556169,0.365064,0.89801323,0.2512499,0.35762465,0.8994321,0.25033075,0.3563287,0.9002024,0.2513015,0.3540184,0.90084326,0.25770664,0.34698758,0.9017688,0.25535473,0.34173426,0.90444,0.25498968,0.34044603,0.9050286,0.2550651,0.33372802,0.90750617,0.2551089,0.32897845,0.9092264,0.25515455,0.32244474,0.9115511,0.255193,0.3146064,0.9142753,0.25523338,0.30797532,0.91651905,0.25526577,0.29918218,0.91941804,0.25141287,0.28625506,0.92458075,0.24450487,0.27809644,0.92891324,0.23883152,0.27144292,0.93235093,0.23604798,0.26698217,0.9343457,0.23055886,0.25824767,0.9381635,0.22821292,0.25258887,0.9402754,0.22627957,0.2496282,0.94153243,0.22527987,0.24836294,0.9421066,0.22647274,0.2441977,0.9429091,0.24424961,0.2246064,0.943342,0.24487518,0.22189254,0.94382197,0.24625626,0.22035572,0.9438227,0.250164,0.21647538,0.943693,0.25094098,0.21250822,0.9443881,0.252327,0.21013674,0.9445494,0.25486642,0.20320371,0.9453842,0.2547821,0.20180574,0.94570637,0.2556001,0.20007347,0.9458537,0.25465754,0.1971193,0.9467278,0.2544258,0.1953042,0.94716614,0.25445965,0.19275612,0.9476789,0.25532782,0.18825682,0.9483497,0.2565521,0.184783,0.9487024,0.25782788,0.18196991,0.9489003,0.25917715,0.17978731,0.94894874,0.2613437,0.17737494,0.94880855,0.2636352,0.17516866,0.94858444,0.2657364,0.17378241,0.94825304,0.26023263,0.17286253,0.94994605,0.25810722,0.17333005,0.95044065,0.25710326,0.17335354,0.9507084,0.24824151,0.17284152,0.95315367,0.24454415,0.17339134,0.9540093,0.24231651,0.17329977,0.95459414,0.2406488,0.17196013,0.955258,0.2393367,0.16994074,0.95594877,0.23808941,0.16834402,0.9565426,0.23862512,0.16657455,0.95671886,0.24343026,0.16134648,0.9564042,0.24435885,0.15994172,0.9564034,0.24788308,0.15686953,0.9560052,0.2512734,0.15411843,0.9555674,0.25193322,0.15366118,0.95546734,0.25286973,0.15316348,0.95529985,0.25345245,0.15296215,0.9551777,0.26206803,0.14062189,0.95474905,0.2637826,0.13661215,0.9548591,0.26449904,0.13593593,0.95475745,0.2654286,0.13233243,0.9550057,0.2526818,0.35302362,0.9008475,0.24860123,0.21909042,0.9435024,0.2526296,0.20976098,0.94455206,0.25464776,0.20527343,0.94499594,0.25610203,0.17306307,0.9510315,0.23965332,0.16559392,0.9566321,0.24164048,0.16343777,0.95650303,0.2603004,0.14474231,0.9546169,0.26572815,0.13337217,0.9547777,0.3730122,0.32857686,0.86769766,0.30505428,0.3723784,0.87651366,0.26117718,0.38260657,0.88622725,0.25723818,0.34856966,0.9012922,0.25786087,0.3476916,0.90145344,0.2552726,0.2908424,0.92208815,0.25525287,0.3099728,0.91583997,0.23968415,0.22626616,0.94411606,0.25423747,0.20632592,0.9448772,0.2522056,0.17264602,0.9521479,0.2656033,0.13550614,0.9545119,0.26576823,0.134644,0.954588,0.37451038,0.3175248,0.8711602,0.2627325,0.37625536,0.8884838,0.28475517,0.37113276,0.88384104,0.30669722,0.36599883,0.87862486,0.25672394,0.3194108,0.91217846,0.24108657,0.26759836,0.9328817,0.24331109,0.22532132,0.94341403,0.37563986,0.30890518,0.87376904,0.36775053,0.32721463,0.870454,0.38344315,0.29048038,0.8766941,0.30047342,0.3634521,0.8818267,0.27060297,0.37242663,0.8877345,0.330214,0.35444358,0.87483054,0.24951984,0.2582304,0.9333043,0.26388824,0.17296574,0.9489182,0.25530225,0.15138629,0.9549361,0.3767904,0.28983194,0.87978774,0.3690135,0.30826065,0.87681496,0.364455,0.32689458,0.871959,0.37345466,0.2895077,0.8813154,0.28369606,0.3471194,0.89388186,0.27933484,0.35558444,0.8919259,0.30930886,0.34654716,0.8855694,0.33467808,0.34597477,0.87652266,0.24998814,0.2578759,0.933277,0.30242792,0.14308144,0.9423721,0.36835867,0.3076237,0.87731385,0.36413187,0.32657823,0.87221247,0.37245977,0.28854656,0.8820514,0.28231707,0.30457976,0.90968573,0.27009645,0.32622057,0.9058852,0.30877638,0.31825402,0.89631,0.28332138,0.33301345,0.8993503,0.33461097,0.3318624,0.881988,0.25217232,0.25514203,0.93344074,0.25787455,0.14879882,0.9546516,0.30224854,0.14303377,0.9424368,0.34313363,0.1699499,0.9237837,0.3678782,0.30685377,0.8777849,0.37221533,0.28815913,0.8822812,0.36389616,0.32619578,0.8724539,0.37172592,0.28738418,0.8827402,0.2782612,0.25111148,0.92709965,0.26678136,0.2710347,0.924861,0.26356825,0.2351329,0.93554497,0.28109547,0.28685376,0.91580576,0.29266396,0.26702204,0.91817594,0.30676067,0.28286013,0.9087838,0.32053584,0.29862136,0.8989339,0.33397433,0.31430167,0.888637,0.3470614,0.32989666,0.87790465,0.300888,0.1451851,0.94254315,0.3433106,0.17024134,0.9236643,0.36463487,0.29868132,0.8819472,0.36232442,0.32213983,0.87461245,0.36671352,0.2750409,0.88874835,0.2649439,0.2328535,0.93572646,0.2794478,0.24916586,0.92726773,0.26415786,0.23415615,0.9356236,0.27865678,0.25046307,0.9271562,0.29365933,0.26540792,0.9183261,0.3075625,0.2815749,0.9089119,0.29326126,0.2660536,0.91826653,0.2637648,0.23480731,0.9355713,0.32114157,0.29766235,0.8990357,0.3343812,0.3136657,0.88870865,0.32073775,0.29830176,0.8989679,0.3472664,0.32958043,0.8779423,0.29306215,0.26637647,0.91823643,0.27325544,0.15494145,0.9493812,0.3008102,0.1455059,0.9425186,0.34362185,0.1705349,0.92349434,0.36325204,0.29242307,0.88461107,0.36598715,0.27189025,0.8900163,0.36167502,0.3190372,0.87601733,0.36451507,0.26558033,0.89252216,0.26855525,0.22400765,0.9368557,0.28258613,0.24161595,0.928314,0.26649308,0.2290647,0.93622154,0.28049493,0.24665087,0.92762387,0.29631242,0.25914493,0.9192621,0.30971682,0.27658907,0.90971094,0.295252,0.2616515,0.91889316,0.26546055,0.23159093,0.9358933,0.3227824,0.2939425,0.8996718,0.33549255,0.31119964,0.88915664,0.32168877,0.296423,0.89924955,0.3478312,0.32835472,0.87817806,0.29472134,0.26290402,0.918706,0.2677897,0.17076406,0.94822377,0.30088577,0.14564885,0.9424724,0.34971106,0.17858672,0.91967875,0.36209732,0.2846101,0.88762754,0.36388972,0.2616446,0.8939387,0.36115554,0.3151678,0.87763083,0.36261252,0.25376034,0.8967262,0.26891926,0.2230903,0.93697023,0.28290272,0.24083307,0.92842096,0.26871127,0.22361447,0.9369049,0.28269166,0.24135497,0.9283498,0.29658028,0.25849572,0.91935855,0.3099345,0.27607223,0.90979373,0.29647315,0.2587554,0.91932005,0.26860726,0.2238766,0.9368721,0.3229483,0.29355702,0.8997381,0.33560503,0.31094414,0.8892036,0.3228377,0.293814,0.89969397,0.34788844,0.3282277,0.8782028,0.2964196,0.25888526,0.91930073,0.26830152,0.1711163,0.9480156,0.30142567,0.14607282,0.9422342,0.3490068,0.1781045,0.9200397,0.362039,0.28398916,0.8878502,0.36257872,0.25344718,0.8968284,0.36113116,0.31486055,0.8777511,0.36251098,0.25282046,0.8970326,0.2793136,0.19758944,0.9396501,0.28617674,0.18051302,0.94101965,0.30385387,0.1898933,0.93360233,0.29297984,0.16338202,0.9420558,0.2899408,0.22391912,0.9304808,0.31432736,0.21626669,0.9243522,0.32437372,0.24248332,0.9143214,0.30727026,0.23321185,0.9226035,0.2723963,0.21460599,0.937947,0.33396718,0.2685239,0.9035269,0.3430826,0.2943698,0.89198697,0.3266348,0.285234,0.90108335,0.35169563,0.320002,0.8797209,0.3037201,0.24165829,0.9216048,0.32994205,0.16883202,0.9287809,0.35338202,0.18480736,0.9170428,0.30604717,0.1528123,0.939672,0.34350488,0.2319489,0.9100572,0.34355378,0.24765536,0.90589046,0.34350017,0.2632971,0.9014889,0.32312375,0.17923565,0.92922854,0.32394007,0.21096987,0.92225516,0.3026539,0.15803051,0.93990797,0.34335423,0.21618162,0.9139876,0.34310263,0.20035785,0.9176804,0.3500497,0.18978491,0.91730416,0.3433649,0.19972527,0.9177202,0.32329553,0.17881227,0.9292503,0.30273843,0.15781803,0.93991643,0.3432775,0.1999361,0.917707,0.47598088,-0.43793607,0.7626626,0.47620904,-0.44174138,0.76032203,0.47569162,-0.4427778,0.7600429,0.47551298,-0.443809,0.75955313,0.47548217,-0.44541365,0.7586326,0.47556275,-0.44651052,0.75793695,0.48455775,-0.45135212,0.74932307,0.48758996,-0.4423254,0.7527312,0.48857614,-0.4396821,0.7536398,0.48805606,-0.43973413,0.75394636,0.4875826,-0.44040745,0.7538597,0.48640996,-0.44257152,0.7533497,0.48593068,-0.44215414,0.7539039,0.48563972,-0.44155335,0.7544433,0.48495415,-0.44085583,0.75529176,0.48538685,-0.43682933,0.7573505,0.48660088,-0.43555945,0.75730276,0.48824552,-0.43278348,0.75783557,0.49714768,-0.4267415,0.75547063,0.4998492,-0.42560357,0.7543291,0.504369,-0.42369324,0.75239336,0.5154828,-0.41978928,0.74703044,0.5212026,-0.41708338,0.74457324,0.5237866,-0.41535082,0.7437279,0.525534,-0.41358563,0.743479,0.5289875,-0.40946442,0.7433109,0.5300937,-0.40778124,0.74344814,0.5317656,-0.40393522,0.74435323,0.53167325,-0.40330514,0.74476063,0.5311928,-0.4032974,0.74510765,0.53061813,-0.4043608,0.74494076,0.53373116,-0.39370376,0.74841726,0.53567183,-0.3901381,0.7488978,0.53551376,-0.3870662,0.7506029,0.5357577,-0.3852251,0.75137556,0.5375287,-0.38069215,0.75242037,0.53779066,-0.37949878,0.75283587,0.5378667,-0.37861872,0.7532246,0.53775775,-0.37768143,0.7537727,0.53786135,-0.37662387,0.7542278,0.5374024,-0.37648174,0.7546258,0.536673,-0.37747943,0.7546464,0.5359059,-0.37971792,0.7540684,0.534475,-0.38101995,0.7544271,0.5351283,-0.37881586,0.75507367,0.5360256,-0.37521178,0.7562359,0.5363179,-0.37074748,0.7582278,0.5366609,-0.36895168,0.7588608,0.5357517,-0.3648007,0.7615055,0.53634244,-0.36154678,0.7626406,0.53593546,-0.35520902,0.765898,0.535006,-0.35299814,0.7675682,0.5338821,-0.35121942,0.76916504,0.53353524,-0.34864393,0.7705761,0.53531206,-0.34350923,0.7716492,0.5357941,-0.34086347,0.77248746,0.5363026,-0.33909878,0.7729111,0.5359165,-0.3381991,0.77357286,0.5362115,-0.33725253,0.77378166,0.53760976,-0.33907467,0.77201307,0.5381237,-0.33909553,0.7716457,0.5389223,-0.33894637,0.77115375,0.54560983,-0.33370733,0.76873225,0.5579553,-0.3229659,0.7644468,0.558635,-0.323445,0.7637476,0.55936736,-0.3232788,0.7632817,0.5602014,-0.3209375,0.7636579,0.5608144,-0.32215276,0.7626958,0.56190985,-0.32176554,0.76205266,0.5622782,-0.32049683,0.7623156,0.5638084,-0.31855878,0.7619976,0.56455845,-0.31760535,0.7618403,0.5681222,-0.3141139,0.76063764,0.57060915,-0.31115758,0.7599909,0.5710289,-0.31034595,0.7600075,0.571577,-0.30890843,0.76018107,0.5725643,-0.3079373,0.759832,0.5733246,-0.3075107,0.7594315,0.57643944,-0.30469713,0.7582066,0.58540154,-0.298927,0.75362307,0.58837426,-0.29773128,0.75177914,0.5890269,-0.2969745,0.75156736,0.5898937,-0.29642114,0.7511058,0.59321326,-0.29520985,0.7489654,0.59680325,-0.2936787,0.74671197,0.5979495,-0.29313442,0.7460085,0.5984962,-0.2932925,0.7455077,0.6001927,-0.29306602,0.74423176,0.6012372,-0.29244834,0.74363154,0.60300314,-0.29191855,0.74240875,0.6046835,-0.28973335,0.7418979,0.605625,-0.28890786,0.74145174,0.6112504,-0.28534377,0.73820853,0.6133948,-0.28348264,0.73714614,0.61452746,-0.28293818,0.73641163,0.6142809,-0.28057513,0.7375206,0.6153007,-0.27985853,0.73694247,0.61697435,-0.27941835,0.7357092,0.6189585,-0.27673337,0.7350572,0.6192069,-0.27606177,0.73510045,0.6193483,-0.27529,0.7352708,0.62096745,-0.2734068,0.73460746,0.622641,-0.2716751,0.733833,0.62666243,-0.26679167,0.7321997,0.62847745,-0.26321542,0.7319383,0.6287088,-0.2620659,0.73215216,0.6288963,-0.26020837,0.73265344,0.62961376,-0.25991863,0.7321399,0.62968343,-0.25901502,0.7324002,0.63131154,-0.25616252,0.7320017,0.63221604,-0.25530246,0.7315214,0.6325475,-0.2540729,0.73166287,0.63248384,-0.25265977,0.73220706,0.63275456,-0.25154656,0.7323564,0.6326608,-0.2509807,0.73263156,0.6329324,-0.24983214,0.7327895,0.6325118,-0.2490498,0.7334187,0.63189447,-0.24903987,0.7339541,0.6305265,-0.25103346,0.73445123,0.6308696,-0.24852157,0.7350106,0.6320877,-0.24684054,0.7345304,0.63233376,-0.24555191,0.7347504,0.6310493,-0.24400184,0.7363695,0.63174504,-0.23929648,0.7373163,0.63195574,-0.23548672,0.73836166,0.6321711,-0.23397903,0.7386565,0.6321839,-0.23281556,0.7390131,0.6329054,-0.23130688,0.7388693,0.6327162,-0.22994357,0.73945665,0.6331261,-0.22874914,0.7394763,0.63334024,-0.2269103,0.7398593,0.63360167,-0.22593251,0.73993474,0.6337304,-0.22469035,0.74020267,0.63236725,-0.22333163,0.7417781,0.6339367,-0.22196735,0.74084735,0.63434553,-0.22084042,0.7408342,0.6347657,-0.21874875,0.7410948,0.6346144,-0.21689221,0.7417698,0.63390565,-0.21630658,0.7425464,0.6346154,-0.21461213,0.74243176,0.63462824,-0.21325025,0.7428131,0.6349922,-0.20995022,0.7434419,0.6356546,-0.2079901,0.74342674,0.6355318,-0.2068946,0.74383736,0.6355366,-0.2052552,0.7442873,0.6351823,-0.2020579,0.7454636,0.63607067,-0.1985027,0.74566126,0.6355217,-0.19649433,0.7466607,0.6359056,-0.19535783,0.74663204,0.6370139,-0.19387329,0.746074,0.63795334,-0.19193321,0.7457729,0.63781065,-0.19124408,0.74607193,0.63760066,-0.19078223,0.7463696,0.6378775,-0.18960264,0.74643356,0.63914496,-0.18790706,0.74577785,0.637844,-0.18678361,0.7471726,0.6388398,-0.18594468,0.7465309,0.63969266,-0.18500674,0.74603343,0.6386512,-0.18339178,0.74732333,0.48688608,-0.27229342,0.82993877,0.48661947,-0.27527204,0.829112,0.48698908,-0.27555877,0.8287997,0.48975962,-0.2756243,0.8271437,0.49417657,-0.275834,0.8244423,0.49842036,-0.27603382,0.82181656,0.5008174,-0.27819234,0.81962854,0.50165856,-0.27865067,0.8189582,0.504394,-0.27922845,0.81707907,0.50742936,-0.28282386,0.81395715,0.5116801,-0.28315726,0.8111753,0.5168494,-0.28551206,0.80706227,0.51810277,-0.28698665,0.8057346,0.5190108,-0.28732136,0.80503064,0.5205888,-0.28863043,0.8035421,0.5194291,-0.29042822,0.8036448,0.51911646,-0.29300243,0.80291194,0.5193411,-0.29966533,0.8003034,0.5180354,-0.30512083,0.7990874,0.51711994,-0.31039298,0.7976485,0.5169112,-0.31227338,0.7970497,0.5168806,-0.31351998,0.79658,0.5168198,-0.31497943,0.7960436,0.51571745,-0.31718346,0.79588324,0.514727,-0.31950372,0.7955963,0.5136749,-0.32166544,0.7954052,0.5116371,-0.32273528,0.7962848,0.5111988,-0.3233966,0.7962979,0.51098436,-0.32459295,0.7959488,0.51103073,-0.32559878,0.7955081,0.5118762,-0.3295491,0.7933348,0.5106772,-0.3319763,0.7930956,0.5108779,-0.33476424,0.79179335,0.51135266,-0.33657056,0.7907204,0.5120785,-0.3386626,0.78935623,0.5055973,-0.3504708,0.7883791,0.50330484,-0.3520555,0.7891395,0.50264204,-0.3528179,0.78922147,0.5022627,-0.3536869,0.789074,0.5019486,-0.3555786,0.78842336,0.5014523,-0.3575547,0.7878453,0.49914065,-0.36059153,0.7879292,0.49964395,-0.36320361,0.78640896,0.49935523,-0.3634434,0.7864816,0.49870977,-0.36381808,0.78671783,0.49567235,-0.36675182,0.7872751,0.4925962,-0.36971515,0.7878196,0.49034593,-0.371879,0.78820485,0.48245364,-0.37943724,0.78947186,0.4841006,-0.4384354,0.7572457,0.5300941,-0.40207267,0.7465506,0.5973701,-0.293211,0.74644244,0.62848604,-0.26076624,0.73280704,0.6300938,-0.25763512,0.73253393,0.63152915,-0.24528763,0.7355304,0.51445335,-0.28427842,0.8090263,0.52029437,-0.28743073,0.8041625,0.519708,-0.29656765,0.80121857,0.5145377,-0.32043225,0.7953453,0.51241684,-0.32808274,0.7935935,0.4877848,-0.374338,0.78862983,0.48491096,-0.3770895,0.78909117,0.4770189,-0.4386591,0.76159775,0.47675547,-0.44009835,0.7609321,0.5333903,-0.34976676,0.77016747,0.53527176,-0.33711776,0.77449065,0.5557873,-0.32412386,0.76553524,0.63063824,-0.24956642,0.73485506,0.6320283,-0.22466375,0.74166465,0.63212657,-0.22386146,0.7418235,0.5209053,-0.28756627,0.80371845,0.51700634,-0.31420124,0.79622984,0.5141995,-0.3210844,0.79530096,0.50759673,-0.34794262,0.78821415,0.51393145,-0.41558254,0.7504436,0.5356651,-0.38111132,0.7535364,0.5505508,-0.32827103,0.76754934,0.5538291,-0.32545856,0.76638764,0.6310134,-0.24475552,0.73614997,0.5116515,-0.32596946,0.79495704,0.5125632,-0.32729042,0.79382616,0.5109296,-0.4174034,0.75148207,0.49110866,-0.43036047,0.7573652,0.5022503,-0.2764369,0.81934565,0.51237684,-0.32653818,0.7942561,0.512295,-0.33995005,0.788662,0.5092914,-0.34557977,0.7881604,0.52984977,-0.4041472,0.7456033,0.51054186,-0.41729724,0.7518044,0.52964085,-0.40351728,0.74609274,0.55351835,-0.32304892,0.7676307,0.51189053,-0.25944296,0.81893677,0.50432485,-0.277467,0.8177215,0.49094832,-0.3854013,0.78130376,0.5104361,-0.41698435,0.75204986,0.5351381,-0.3819511,0.7534856,0.55401766,-0.3225658,0.7674736,0.59750634,-0.29124692,0.747102,0.5805221,-0.3018825,0.7562149,0.51174307,-0.341772,0.7882328,0.49108177,-0.38810718,0.77987915,0.48449075,-0.43981358,0.75619626,0.5132299,-0.4062983,0.7559873,0.5559789,-0.32095447,0.76673055,0.6058707,-0.27582666,0.7462173,0.6300527,-0.219542,0.74487245,0.4972615,-0.37752834,0.7811551,0.51180845,-0.4075252,0.7562905,0.60386866,-0.27724585,0.74731344,0.6173415,-0.26343337,0.74127746,0.5902308,-0.2910015,0.752958,0.62656623,-0.2213308,0.7472801,0.5750311,-0.20519255,0.7919818,0.48977417,-0.3962139,0.77661824,0.49724352,-0.37820846,0.7808375,0.5045684,-0.36005887,0.78470904,0.51147914,-0.40706524,0.75676084,0.58380705,-0.2936502,0.75692725,0.60746306,-0.27167958,0.7464441,0.5597247,-0.31546667,0.76628256,0.6207789,-0.22380418,0.75136226,0.5758513,-0.20546287,0.79131556,0.4914804,-0.41468206,0.7658236,0.49855196,-0.3906425,0.7738503,0.5053084,-0.36633357,0.7813214,0.52237064,-0.37081468,0.76787066,0.5111642,-0.3916739,0.76505077,0.49978456,-0.4123337,0.7617062,0.5923977,-0.23319593,0.7711579,0.61180705,-0.24138975,0.7532749,0.60133994,-0.2155755,0.7693617,0.602649,-0.25889653,0.7548422,0.5832763,-0.25074023,0.77260476,0.5739839,-0.26820233,0.7736989,0.56452876,-0.28557697,0.77443725,0.5549193,-0.3028581,0.77481705,0.5451641,-0.32004026,0.7748357,0.5933129,-0.27631843,0.75606084,0.5760061,-0.20555118,0.79117984,0.4987347,-0.39020318,0.7739543,0.50539714,-0.3661115,0.78136814,0.49157435,-0.4144649,0.7658808,0.5055745,-0.3656674,0.7814613,0.5120871,-0.3408748,0.78839785,0.5091325,-0.39456072,0.76492214,0.49875855,-0.41376328,0.7616035,0.5213669,-0.37227204,0.7678477,0.49670458,-0.4166194,0.7613887,0.5822791,-0.23652732,0.77782124,0.58566105,-0.23541708,0.7756158,0.56718683,-0.2704028,0.7779341,0.55150187,-0.30394664,0.7768283,0.5761048,-0.20570214,0.7910688,0.5161447,-0.37007257,0.7724253,0.58049315,-0.23697683,0.7790184,0.5810887,-0.23682708,0.7786198,0.565991,-0.27069968,0.7787014,0.55090225,-0.3040936,0.77719605,0.5774322,-0.22161084,0.7857867,0.57812554,-0.22298767,0.78488684,0.5254276,-0.33204308,0.78337306,0.57873225,-0.22419873,0.7840944,0.53401875,-0.304396,0.7887757,0.5254909,-0.33147785,0.7835699,0.57980365,-0.22644715,0.78265536,0.5345274,-0.3042912,0.7884715,0.5806307,-0.22819242,0.78153455,0.54369223,-0.31581315,0.7775994,0.58067805,-0.23006888,0.780949,0.5438474,-0.31563535,0.7775631,0.5792239,-0.23676036,0.7800284,0.5486239,-0.30702165,0.77765644,0.57057405,-0.25707597,0.7799726,0.57868403,-0.23911938,0.7797094,0.58661675,-0.22108062,0.77910477,0.5490215,-0.30619425,0.77770203,0.5026852,-0.2812777,0.8174292,0.48060155,-0.364926,0.7974028,0.4906443,-0.28486672,0.8234799,0.41834876,-0.32757223,0.8471604,0.47672492,-0.36208534,0.8010166,0.48998806,-0.28577003,0.8235576,0.47650608,-0.36195987,0.8012035,0.51066154,-0.3200956,0.7979747,0.4540113,-0.30300546,0.83789104,0.47561976,-0.2976752,0.8277532,0.496989,-0.29233548,0.81703234,0.4844119,-0.3293536,0.81047595,0.5013533,-0.30824655,0.8084732,0.46730658,-0.35029718,0.81173664,0.45149425,-0.32961068,0.8291621,0.47389376,-0.315472,0.8221327,0.4532156,-0.31190145,0.8350527,0.4961065,-0.30126294,0.81432116,0.45986873,-0.33982617,0.8203895,0.4769243,-0.31879947,0.8190911,0.49760896,-0.30293524,0.81278265,0.4560771,-0.33457482,0.82465345,0.4545553,-0.33292115,0.82616156,0.113036335,0.60056466,0.79154587,0.10844155,0.6001448,0.7925065,0.105731584,0.6018116,0.7916083,0.103228286,0.6026409,0.7913077,0.10003317,0.6031019,0.7913668,0.10066931,0.6013759,0.7925987,0.09145525,0.6018572,0.79334974,0.09011962,0.60300946,0.7926273,0.08796998,0.60245657,0.79328895,0.08452803,0.5999212,0.7955812,0.07988329,0.5990181,0.79674083,0.0758208,0.59728134,0.79843986,0.072627656,0.5973005,0.79872227,0.069717094,0.5991362,0.79760605,0.06803182,0.5998953,0.79718083,0.06633638,0.60036904,0.7969671,0.05270845,0.600367,0.79798573,0.049172685,0.59895533,0.7992712,0.041536566,0.59880656,0.7998159,0.03979611,0.59816885,0.80038136,0.03632493,0.5962344,0.8019882,0.032814328,0.5963692,0.8020393,0.027672624,0.5957705,0.8026779,0.017632948,0.5950974,0.80346006,0.013641826,0.59403604,0.8043227,0.011115338,0.5928082,0.805267,0.0072466657,0.5914759,0.8062901,0.0043992517,0.5900753,0.8073362,0.0021397248,0.58867633,0.80836594,0.0006778963,0.5863799,0.8100359,-0.0026770523,0.5852279,0.81086445,-0.0049615833,0.58585167,0.81040317,-0.0060273544,0.5858282,0.8104129,-0.013008533,0.58309335,0.81230104,-0.015438945,0.5818229,0.81316894,-0.017126756,0.5806426,0.81397843,-0.019011244,0.57877254,0.8152674,-0.021131659,0.5779014,0.815833,-0.023870703,0.5761913,0.8169662,-0.02881193,0.57479185,0.81779224,-0.13142121,0.45671508,0.8798522,-0.12866007,0.45499706,0.88114935,-0.12589137,0.45327723,0.8824347,-0.12033074,0.44983277,0.8849695,-0.117539704,0.44810802,0.8862187,-0.114740565,0.44638157,0.88745594,-0.10912128,0.44292375,0.8898939,-0.106301256,0.44119224,0.8910945,-0.10347334,0.43945995,0.8922826,-0.10063924,0.43772453,0.89345896,-0.097798124,0.43598822,0.8946227,-0.09494934,0.43425018,0.8957742,-0.09209447,0.43251064,0.8969132,-0.08923282,0.43076947,0.89803964,-0.086829625,0.42931,0.8989736,-0.0831353,0.42695564,0.9004429,-0.07968194,0.42475963,0.9017927,0.07320958,0.32861143,0.9416235,0.0822846,0.33036715,0.9402589,0.08810995,0.33149466,0.9393338,0.09445256,0.33272454,0.93828195,0.0958716,0.3334637,0.9378755,0.10052538,0.33762076,0.93589896,0.11400083,0.34972516,0.9298904,0.11827306,0.35338473,0.9279713,0.12166473,0.3562992,0.9264171,0.13511382,0.36456573,0.92132306,0.14313439,0.3695218,0.9181319,0.15110247,0.37446746,0.91484547,0.1668822,0.3843276,0.90798825,0.17469135,0.38924083,0.9044194,0.18244286,0.3941439,0.9007581,0.096428595,0.6006914,0.79364437,-0.027317375,0.574923,0.8177514,-0.12311442,0.45155585,0.8837082,-0.11193414,0.44465348,0.88868105,0.12704363,0.3595992,0.92441785,0.1590183,0.3794033,0.91146386,0.110119686,0.5998107,0.7925281,0.08700324,0.600955,0.7945335,0.074046336,0.5969006,0.798891,-0.0006826213,0.58542204,0.81072843,0.076896146,0.32932448,0.9410804,0.14313279,0.36952224,0.91813195,0.1715806,0.39423397,0.90285087,0.099387534,0.60102516,0.7930264,0.017917553,0.5908415,0.8065887,0.07869349,0.33156943,0.9401431,0.15593487,0.38441837,0.90989393,0.17002824,0.39672598,0.90205264,0.14160284,0.37204203,0.9173513,0.14586951,0.4796455,0.86525273,0.00887989,0.58753765,0.80914813,0.10261935,0.33949557,0.9349931,0.07975429,0.33250916,0.93972176,0.15331951,0.3827865,0.9110256,0.16874054,0.39591488,0.90265054,0.13762274,0.3695804,0.9189507,0.14598468,0.4787913,0.86570626,0.13242453,0.51905334,0.8444213,0.027946807,0.58787346,0.80846995,0.0045643095,0.5833321,0.81222093,0.051114593,0.5923963,0.80402356,-0.1183893,0.45704442,0.88152957,0.10676743,0.34321624,0.9331685,0.08185903,0.3343751,0.9388783,0.14336531,0.38557348,0.91147107,0.1326158,0.3709824,0.9191219,0.1452903,0.47972247,0.86530757,0.13100083,0.51995766,0.84408695,0.0002752817,0.57406425,0.81881016,0.025236523,0.58172786,0.8129919,0.003142408,0.5802511,0.81443155,0.049836624,0.5893402,0.80634636,-0.11025539,0.4520257,0.8851647,0.079734646,0.34089354,0.9367145,0.13965142,0.38232943,0.9134121,0.15207823,0.39845815,0.9044906,0.12695405,0.36608347,0.92188156,0.14357264,0.47224876,0.86969423,0.12607443,0.5253508,0.8414938,0.043724302,0.5832041,0.81114805,0.009611772,0.5748075,0.81823224,0.077249795,0.5915388,0.80256736,-0.09359963,0.46176973,0.88204753,-0.11335844,0.46812296,0.8763622,0.024535356,0.35638517,0.93401694,0.07911916,0.34138983,0.9365859,0.13769928,0.3805349,0.91445726,0.12596142,0.36517996,0.92237586,0.15112081,0.39756763,0.90504277,0.123972915,0.36337212,0.9233588,0.10995952,0.34608504,0.9317371,0.14352076,0.4714914,0.8701136,0.10929434,0.58025426,0.8070686,0.017137306,0.55288726,0.8330798,-0.0040570945,0.5596371,0.82872784,0.04910244,0.5687388,0.82105124,0.012092006,0.567545,0.82325363,0.080123104,0.58438194,0.8075135,-0.036046416,0.5237851,0.85108745,-0.09334214,0.4619625,0.88197386,0.008480065,0.36683735,0.9302465,0.028684061,0.35377926,0.934889,-0.011508173,0.37982348,0.9249874,0.07797647,0.34193435,0.9364831,0.1361596,0.37912136,0.91527456,0.1231892,0.36266014,0.9237435,0.15036641,0.3968665,0.9054761,0.121619776,0.3612357,0.9245093,0.120950386,0.5223222,0.84412706,0.12953411,0.49557674,0.8588507,0.13821039,0.4683528,0.87266463,0.109236285,0.57951486,0.80760753,-0.0012319523,0.54025304,0.8415017,0.015436196,0.5489427,0.8357175,0.048057366,0.56614417,0.82290417,0.016571533,0.55157375,0.8339615,0.0796481,0.58310264,0.8084847,-0.03607673,0.523303,0.8513827,-0.082268104,0.44068605,0.8938835,-0.08816704,0.45864528,0.8842347,-0.09388564,0.47641918,0.8741912,-0.0074377665,0.37724334,0.92608434,0.020623725,0.3590166,0.9331033,-0.03504411,0.3953251,0.9178725,0.10792791,0.37785852,0.91955125,0.13642462,0.39624017,0.9079549,0.07879248,0.35932657,0.9298796,0.118343495,0.52732956,0.84137887,0.1277701,0.4989792,0.8571432,0.12008023,0.52399325,0.84321517,0.13731717,0.4700845,0.87187415,0.09379908,0.5710401,0.8155458,0.07808024,0.56250405,0.8230994,0.045841735,0.5452517,0.83701795,0.014037242,0.5383964,0.8425748,0.07723892,0.55207074,0.83021206,-0.03638031,0.5230285,0.8515384,-0.07941769,0.46138123,0.8836403,-0.08954936,0.47777307,0.8739072,-0.07785191,0.44206852,0.8935964,-0.08089132,0.4804776,0.8732685,-0.012303172,0.38043356,0.9247264,-0.037435945,0.39690775,0.9170948,0.018151628,0.36062482,0.93253434,-0.042207643,0.4000694,0.91551244,0.13555697,0.39677653,0.90785056,0.13584617,0.39659774,0.9078855,0.107348144,0.37821907,0.9194709,0.078502096,0.35950834,0.92983395,0.11785715,0.5286031,0.84064764,0.12744097,0.49984533,0.8566875,0.118181325,0.5277542,0.8411353,0.1371506,0.47052562,0.8716624,0.07733643,0.5510222,0.8308993,0.045912735,0.54419756,0.83769983,0.014059758,0.5378667,0.8429127,0.07738515,0.55049765,0.8312424,-0.04988309,0.51551795,0.8554256,-0.07436781,0.43982315,0.895,-0.07712748,0.45990086,0.88461435,-0.07669171,0.4413203,0.89406645,-0.079763144,0.4797461,0.8737743,0.07647838,0.39787465,0.91424656,0.047592957,0.37932664,0.924038,0.07750389,0.37877285,0.9222387,0.046045743,0.41734937,0.9075788,0.046826247,0.3984236,0.91600543,0.04834525,0.36006668,0.9316731,0.10474386,0.41626155,0.90319157,0.10606566,0.39732566,0.9115275,0.13396756,0.41571745,0.899573,0.07542632,0.41680548,0.9058609,0.017140416,0.3989723,0.91680276,-0.0127809355,0.41843662,0.90815604,-0.012547933,0.39952096,0.91663814,0.016633034,0.4178931,0.9083439,-0.042165287,0.41897994,0.90701586,0.01764679,0.37988016,0.9248674,0.05405836,0.51576346,0.8550238,0.086171515,0.522198,0.8484596,0.065904915,0.5332428,0.8433911,0.062428895,0.48674935,0.8713081,0.074477285,0.50458,0.8601466,0.09749381,0.5395959,0.8362602,0.021568807,0.5092996,0.86031896,0.033912074,0.52685964,0.8492755,0.0015664615,0.5204465,0.85389286,0.041863427,0.4980665,0.86612767,0.0951471,0.49331126,0.86463344,0.10428478,0.4638699,0.879744,0.11604568,0.48195916,0.8684749,0.0832434,0.47534984,0.8758499,0.12553051,0.45231152,0.8829815,0.10669088,0.51106495,0.8528949,-0.044043146,0.47648153,0.8780806,-0.063321315,0.48795703,0.87056786,-0.057596713,0.4482299,0.8920608,-0.030871196,0.5042494,0.86300606,-0.047020666,0.4961251,0.8669769,0.0751408,0.41704667,0.90577364,0.10387926,0.41698492,0.90295774,0.07499806,0.41716716,0.90573,0.10416741,0.41674393,0.9030358,0.1329504,0.41656166,0.8993334,0.13309568,0.41644102,0.89936775,0.07471262,0.41740832,0.9056425,0.04548086,0.4178314,0.90738547,0.01621437,0.4182545,0.9081852,0.01635391,0.41813397,0.9082382,-0.013056409,0.4186775,0.9080411,-0.04230106,0.41910043,0.90695393,0.13338625,0.41619986,0.89943635,0.083415315,0.47488946,0.8760833,0.083358005,0.47504294,0.8760055,0.062649995,0.48613992,0.8716324,0.104403175,0.46356085,0.87989277,0.12559146,0.45215607,0.8830525,0.021670427,0.5089994,0.860494,0.041916523,0.4979154,0.866212,0.0016148444,0.5202975,0.8539835,0.042022746,0.49761286,0.8663807,0.10464004,0.46294272,0.88019,0.1257134,0.45184493,0.8831944,0.083529964,0.47458246,0.8762387,0.12595731,0.45122248,0.8834778,-0.028827958,0.44781354,0.8936621,-0.000015815802,0.44739705,0.89433545,0.01261545,0.47566235,0.87953746,-0.0079405345,0.4617949,0.8869512,-0.050019965,0.43372178,0.8996574,0.028809771,0.44698057,0.8940796,0.008038134,0.43288237,0.9014146,-0.015729163,0.476072,0.87926567,-0.003046669,0.50384724,0.8637874,-0.023374937,0.4902248,0.8712826,0.08638142,0.4461471,0.8907811,0.066114776,0.43204248,0.8994266,0.06927871,0.4748428,0.8773396,0.057618838,0.44656378,0.8928946,0.115067616,0.44573012,0.887741,0.1383688,0.43099216,0.89168376,0.092026345,0.46034846,0.8829555,0.024796145,0.5034448,0.86367154,0.04096123,0.47525272,0.87889534,0.0468578,0.48920965,0.8709066,0.003125619,0.51754475,0.8556504,0.049231958,0.46096846,0.8860498,0.0681708,0.47637212,0.87659705,0.087769635,0.46720982,0.8797792,0.10752803,0.45799705,0.88242644,0.1274298,0.44873476,0.8845331,0.024270086,0.5041957,0.86324835,0.04336056,0.49519452,0.8676994,0.0028703748,0.51791656,0.8554264,0.046046957,0.49034646,0.8703103,0.11333547,0.44806305,0.8867889,0.09061076,0.46227658,0.88209414,0.13631304,0.43373552,0.8906695,0.09145983,0.46111995,0.88261175,0.09117671,0.4615056,0.88243943,0.11391252,0.44728574,0.8871073,0.13660651,0.43334386,0.8908152,0.046317127,0.4899676,0.87050927,0.13719366,0.4325603,0.8911058,0.4939438,-0.024207298,0.86915684,0.49754527,-0.023588778,0.8671172,0.49805,-0.025335267,0.86677814,0.4983245,-0.02558922,0.86661285,0.49877855,-0.025652261,0.86634976,0.49969742,-0.025251847,0.86583185,0.5013913,-0.023885287,0.86489093,0.502132,-0.023055462,0.86448354,0.50300545,-0.02188822,0.86400604,0.50411767,-0.020572685,0.86338985,0.5047414,-0.019425882,0.863052,0.5061318,-0.01855331,0.86225647,0.5069982,-0.01860444,0.8617463,0.49722335,-0.02330764,0.86730945,0.50534636,-0.01875438,0.86271274,0.51142186,0.007394918,0.85929793,0.5643398,0.0307996,0.82496786,0.5121219,0.00846443,0.8588711,0.5628323,0.027036428,0.8261288,0.5490656,0.056209087,0.83388704,0.5125115,0.008565039,0.8586377,0.54493463,0.0322263,0.837859,0.5190139,0.021436555,0.854497,0.51269007,0.0014419113,0.85857254,0.5250952,0.041422628,0.8500348,0.53508955,-0.015939081,0.844645,0.5448046,0.030562365,0.8380059,0.51714253,0.0023341912,0.8558961,0.51566,0.0020367648,0.85679084,0.5219634,0.022031268,0.8526833,0.52656,0.041719798,0.84911364,0.53529495,-0.008830596,0.8446191,0.5401647,0.010868053,0.84148914,0.48472172,-0.046488494,0.87343216,0.48880544,-0.04663663,0.87114537,0.48955873,-0.048701726,0.8706092,0.49016577,-0.048999634,0.8702509,0.49128085,-0.04899618,0.86962205,0.4941336,-0.048723873,0.8680195,0.49483982,-0.048757926,0.8676153,0.4961436,-0.04826415,0.866898,0.4974464,-0.047392536,0.8661992,0.4978366,-0.046490163,0.8660239,0.49818215,-0.044467367,0.86593145,0.49852833,-0.040821575,0.86591166,0.4991829,-0.040778935,0.8655366,0.50094426,-0.042076603,0.8644561,0.5013254,-0.042165216,0.86423075,0.50170344,-0.042119242,0.8640137,0.50233537,-0.04147548,0.86367756,0.50310713,-0.040952716,0.86325324,0.5036673,-0.040966295,0.8629258,0.5057493,-0.040358353,0.86173594,0.5068349,-0.041458447,0.8610456,0.5075291,-0.04179909,0.8606202,0.48527274,-0.045407336,0.87318295,0.4873124,-0.0457172,0.87203014,0.4858676,-0.04528813,0.8728583,0.14851409,0.082844645,0.9854341,0.14789665,0.080300875,0.9857375,0.1480196,0.0797096,0.985767,0.14862882,0.07891531,0.98573923,0.15003864,0.0787437,0.9855393,0.15060605,0.07933325,0.98540556,0.15007664,0.08143394,0.98531497,0.15089989,0.08099396,0.98522544,0.15184249,0.07985148,0.9851739,0.15262128,0.07973681,0.9850629,0.1545359,0.07939445,0.98479193,0.1542958,0.07733075,0.9849938,0.1544965,0.0759848,0.9850671,0.15482762,0.074808694,0.9851051,0.15561372,0.07376766,0.9850598,0.15603743,0.071351245,0.98517066,0.15800324,0.07047132,0.98492074,0.16117017,0.06928547,0.9844916,0.16140974,0.06871843,0.9844921,0.16229516,0.068463326,0.9843643,0.1633779,0.06840374,0.98418933,0.1640046,0.068755776,0.9840605,0.16465883,0.06976923,0.98388,0.16435213,0.07090748,0.9838498,0.16483617,0.07081223,0.98377573,0.16550839,0.070251204,0.9837031,0.16636375,0.07022481,0.9835606,0.16787626,0.07073827,0.98326683,0.16720569,0.06990183,0.98344094,0.16705517,0.06915287,0.98351943,0.16878907,0.0671956,0.98335904,0.16687134,0.067493185,0.98366594,0.16627526,0.066522986,0.98383296,0.16564953,0.06623989,0.9839576,0.16669515,0.064471036,0.98389846,0.16716538,0.06299549,0.98391426,0.1692808,0.06320548,0.9835391,0.16768873,0.061703518,0.98390704,0.1712333,0.057734154,0.98353744,0.17251244,0.05371376,0.98354167,0.17145655,0.050881416,0.98387694,0.17117642,0.047715854,0.9840843,0.17041652,0.044303887,0.9843756,0.17008528,0.040209256,0.98460865,0.17052238,0.040093478,0.9845378,0.1705972,0.03970433,0.9845406,0.17071353,0.039126974,0.98454356,0.1712874,0.038619407,0.9844639,0.17317837,0.037825692,0.9841638,0.1787949,0.03782486,0.98315907,0.18214363,0.037823193,0.9825442,0.18709165,0.03782236,0.9816141,0.19232573,0.03782057,0.9806021,0.19629696,0.03781974,0.9798149,0.19648027,0.038977955,0.97973275,0.19670533,0.039459072,0.9796683,0.19661662,0.040126592,0.979659,0.2002149,0.040170066,0.97892815,0.2067184,0.039872877,0.9775877,0.20955645,0.039913733,0.9769816,0.21036278,0.0398593,0.9768105,0.2139042,0.040061913,0.9760328,0.21677516,0.03980641,0.9754097,0.21799608,0.03952208,0.9751491,0.21909249,0.039378192,0.9749091,0.22252563,0.039203566,0.97413826,0.22699925,0.03942417,0.97309667,0.2293659,0.038810115,0.9725662,0.15346786,0.079837814,0.9849231,0.16033632,0.069719054,0.98459715,0.1675402,0.07109108,0.9832987,0.16872332,0.06766921,0.9833378,0.17191249,0.05651235,0.9834899,0.2285187,0.039372236,0.97274303,0.15403663,0.07972492,0.98484343,0.23599416,0.18341479,0.9542881,0.16596484,0.10518105,0.9805063,0.18227486,0.055439007,0.9816835,0.2358383,0.18271641,0.9544606,0.21459584,0.14523476,0.96584445,0.1670649,0.0995932,0.9809029,0.18407804,0.05546067,0.9813457,0.2254616,0.16186446,0.9607117,0.21473573,0.1430877,0.9661338,0.23600402,0.18058279,0.95482564,0.17305844,0.09594543,0.9802272,0.18391062,0.0556373,0.9813671,0.2411415,0.04907015,0.96924865,0.2433988,0.1363677,0.96029204,0.21482848,0.14280806,0.9661545,0.22552423,0.16167858,0.9607283,0.21476665,0.1429945,0.96614075,0.23603576,0.18049017,0.9548353,0.17346227,0.095773615,0.9801726,0.19077796,0.055583265,0.9800583,0.24009226,0.050181836,0.96945214,0.24333261,0.13595282,0.96036774,0.17417875,0.09588302,0.9800348,0.2170595,0.06569474,0.97394526,0.24163038,0.06299585,0.9683214,0.19235732,0.06839316,0.9789387,0.24307014,0.13684171,0.96030784,0.17492034,0.096179545,0.97987366,0.21061006,0.06984867,0.97507155,0.18911992,0.070469886,0.97942203,0.23842302,0.065073326,0.96897876,0.18263942,0.074622415,0.980344,0.17557268,0.09660742,0.97971493,0.23559938,0.06827732,0.96944886,0.23654096,0.0672094,0.9692942,0.2087182,0.071984045,0.975323,0.1816898,0.07568977,0.98043865,0.1891011,0.09475806,0.9773749,0.2025977,0.09290826,0.9748447,0.22948442,0.08920795,0.96921563,0.24593586,0.07689467,0.96623117,0.21296951,0.101507485,0.9717717,0.2136,0.102058575,0.97157556,0.23011386,0.08975957,0.96901536,0.24625008,0.077170774,0.9661291,0.21391515,0.10233405,0.97147727,0.21434113,0.102834225,0.9713306,0.23053941,0.09026036,0.9688677,0.24646264,0.077421434,0.96605486,0.21455409,0.103084296,0.971257,0.23326118,0.09426948,0.96783394,0.21591674,0.10508657,0.9707403,0.24782397,0.07942844,0.96554357,0.2186362,0.10908959,0.9696894,0.24638668,0.08105622,0.9657761,0.23229834,0.095353305,0.9679593,0.21815288,0.10963075,0.9697373,0.22117831,0.14615172,0.96421975,0.24551287,0.082625814,0.9658656,0.2317123,0.096398346,0.9679963,0.22594103,0.11454806,0.9673827,0.22358449,0.13036644,0.96592677,0.22878595,0.10208763,0.9681091,0.22722222,0.107967585,0.96783936,0.22858487,0.10263608,0.9680985,0.19634877,0.033781137,0.97995204,0.19638868,0.030367311,0.98005575,0.19642943,0.026671898,0.9801551,0.19652122,0.017447257,0.9803443,0.1930177,0.017459176,0.98103994,0.188362,0.017474553,0.9819442,0.17903972,0.017506018,0.9836861,0.17669529,0.017514601,0.98410976,0.17411156,0.017522229,0.98456997,0.17327443,0.017412335,0.9847196,0.17270702,0.016878951,0.9848286,0.17202081,0.016756184,0.98495084,0.171222,0.017212093,0.98508215,0.1702508,0.017430214,0.98524654,0.16998743,0.01790054,0.9852836,0.16950111,0.01875608,0.98535156,0.1685384,0.018848093,0.98551494,0.16805491,0.01875608,0.9855992,0.16736259,0.01826693,0.9857262,0.16658376,0.018010434,0.98586285,0.16632034,0.017300652,0.98592,0.16601361,0.010370382,0.98606896,0.16570735,0.011496008,0.98610795,0.16495582,0.0116034085,0.9862327,0.16211097,0.010660879,0.986715,0.16202351,0.0096357325,0.9867398,0.16329989,0.008494708,0.9865399,0.1645299,0.006316457,0.9863519,0.16584551,0.0051651527,0.9861382,0.1698071,0.003359387,0.98547155,0.17269173,0.0038374132,0.9849684,0.17367236,0.0034027789,0.9847976,0.17042744,0.0021918558,0.98536783,0.17015404,0.0007720748,0.9854172,0.16914943,0.0014828001,0.9855893,0.16632618,0.0025991928,0.98606735,0.16308568,0.004291716,0.98660254,0.16290659,0.0053620837,0.9866269,0.16254613,0.005996982,0.9866827,0.16163372,0.005035693,0.986838,0.16203913,0.0020213868,0.98678225,0.15707791,-0.011112624,0.9875237,0.15634239,-0.011076864,0.98764086,0.15549895,-0.012021057,0.9877629,0.15334299,-0.01236364,0.9880957,0.15223928,-0.010732608,0.9882854,0.15130669,-0.010315041,0.988433,0.15372926,-0.015944207,0.9879843,0.15428519,-0.016511688,0.98788834,0.15484725,-0.017888708,0.9877764,0.15540555,-0.01869991,0.98767376,0.15750837,-0.02265836,0.9872577,0.15990026,-0.024125544,0.98683834,0.16087124,-0.023982415,0.986684,0.16150106,-0.023750618,0.9865867,0.16236435,-0.023123631,0.9864599,0.16120844,-0.02586176,0.9865815,0.161475,-0.026442828,0.98652244,0.1620738,-0.026780188,0.9864152,0.16321896,-0.026703445,0.9862284,0.16186276,-0.028480537,0.9864022,0.1570197,-0.022842491,0.9873312,0.15729955,-0.024067625,0.98725766,0.16081423,-0.03012456,0.9865249,0.16062975,-0.031049669,0.98652625,0.16093004,-0.031848572,0.9864518,0.16465512,-0.03424206,0.9857566,0.16224681,-0.033044446,0.9861968,0.1614962,-0.03320803,0.9863145,0.1627214,-0.034463417,0.98607004,0.16326235,-0.035381604,0.985948,0.16550104,-0.037757643,0.98548657,0.16619575,-0.03891074,0.98532474,0.16648069,-0.04001257,0.98523253,0.16704956,-0.04130182,0.98508304,0.16793343,-0.042148184,0.9848969,0.16951989,-0.04210388,0.984627,0.17350455,-0.04516047,0.9837971,0.16942662,-0.043163043,0.9845971,0.16871247,-0.043054067,0.9847245,0.16934872,-0.043943003,0.9845761,0.17355406,-0.047949206,0.98365635,0.18340115,-0.05718119,0.98137367,0.18432528,-0.059272382,0.9810764,0.18784988,-0.062116943,0.9802315,0.18951766,-0.06387238,0.9797976,0.19093116,-0.06673479,0.97933227,0.1964699,0.022820236,0.9802443,0.18370378,0.01748981,0.98282605,0.16449893,0.0027883772,0.98637336,0.15783061,-0.010896153,0.9874061,0.16186781,-0.023261638,0.98653823,0.15909268,-0.026660902,0.9869036,0.16224769,-0.031923518,0.98623353,0.17937219,-0.052564032,0.982376,0.16677903,0.00990847,0.9859445,0.16351666,0.003498265,0.98653436,0.16410135,-0.026332,0.98609203,0.16466838,-0.033061482,0.9857947,0.17406465,-0.044937417,0.9837084,0.19650184,0.019559523,0.98030835,0.1650053,-0.027139593,0.98591924,0.16251291,-0.028577652,0.9862925,0.16487287,-0.03376502,0.9857367,0.17110017,-0.042618163,0.9843315,0.17454095,-0.04448952,0.98364437,0.1671986,0.013603344,0.9858294,0.16706951,0.010061885,0.9858938,0.15877952,-0.010006543,0.9872634,0.16336876,-0.028524864,0.98615265,0.16719383,0.011023969,0.98586243,0.1622765,-0.0010167796,0.98674476,0.1615436,-0.0061308197,0.98684657,0.165385,-0.02789271,0.98583454,0.17278156,-0.043442328,0.9840017,0.17907435,0.0056585525,0.98381925,0.19569036,0.007764337,0.980635,0.16808017,-0.025314888,0.98544824,0.22034962,-0.02221537,0.975168,0.19653066,0.007997861,0.980465,0.18134572,-0.023506189,0.98313844,0.21752815,-0.00897078,0.9760128,0.19782162,0.008406497,0.980202,0.17971806,0.0011379279,0.9837175,0.21584521,0.01567474,0.9763018,0.199474,-0.016238853,0.9797685,0.0034380767,0.25654304,0.96652675,0.0034212545,0.25515565,0.9668939,0.0031248275,0.25296316,0.9674708,0.0027689545,0.25033298,0.9681558,0.004236201,0.24862956,0.9685894,0.0064708763,0.24608222,0.9692274,0.006006197,0.24427538,0.9696873,0.006331877,0.24321496,0.9699518,0.0072692395,0.24144971,0.9703861,0.008852158,0.23920703,0.97092825,0.010481686,0.23689602,0.9714785,0.01160852,0.23659049,0.9715401,0.012680476,0.23640585,0.9715717,0.013330995,0.23599105,0.9716638,0.014286348,0.2355902,0.97174746,0.01658876,0.23432697,0.9720163,0.017275762,0.2329,0.97234726,0.019114777,0.2319576,0.97253805,0.018286422,0.23074217,0.9728431,0.016784115,0.23115091,0.97277313,0.01658792,0.230466,0.972939,0.016535375,0.22784716,0.9735565,0.0167864,0.22566347,0.97406065,0.017137889,0.22537278,0.97412187,0.018650534,0.22497009,0.97418714,0.022268394,0.22213174,0.9747623,0.025547192,0.21944538,0.97529024,0.026648585,0.21874611,0.97541785,0.028457435,0.21848089,0.9754262,0.0304798,0.21836944,0.97539014,0.031347476,0.21861804,0.97530687,0.033298574,0.21997255,0.97493756,0.037555363,0.21495004,0.9759027,0.035949446,0.21463044,0.9760335,0.035256047,0.21437988,0.97611386,0.035085868,0.21401855,0.97619927,0.035340328,0.21319018,0.97637135,0.03565911,0.21265487,0.9764765,0.03743492,0.21024093,0.97693264,0.040002428,0.20698957,0.977525,0.015231412,0.23532756,0.9717968,0.02039577,0.23102657,0.9727336,0.019884102,0.2305523,0.97285676,0.20062219,0.38696048,0.90000683,0.15901986,0.37940285,0.91146374,0.12666151,0.3578316,0.9251559,0.0059972866,0.24679667,0.96904874,0.016058289,0.23482238,0.9719056,0.24308033,0.27877825,0.9290827,0.20074177,0.3869278,0.89999425,0.1427689,0.36776197,0.91889507,0.1264692,0.3569476,0.92552364,0.15884684,0.37852684,0.9118581,0.034339257,0.2201221,0.9748677,0.037852637,0.21519975,0.97583616,0.24311504,0.28320667,0.92773324,0.25399438,0.33388433,0.90774894,0.23909052,0.36935553,0.89800453,0.16920234,0.365427,0.91533256,0.13978183,0.35577494,0.92405915,0.19818145,0.37503964,0.9055768,0.037591476,0.26171133,0.9644138,0.03793013,0.21586129,0.9756871,0.24056758,0.2783032,0.9298788,0.25403714,0.33059362,0.90894055,0.23897013,0.3693654,0.8980326,0.13285778,0.34945375,0.9274863,0.16469635,0.36123127,0.9178165,0.13747954,0.35366976,0.92521197,0.19598785,0.37295142,0.90691566,0.037485875,0.26167107,0.96442884,0.037668463,0.21709438,0.9754236,0.15236221,0.23014338,0.9611555,0.2463777,0.32720867,0.9122678,0.23969686,0.30114713,0.9229604,0.23265786,0.27485865,0.93291104,0.17676637,0.34583274,0.9214952,0.20207143,0.36530182,0.9086923,0.13882627,0.34173,0.929488,0.21427974,0.34992895,0.9119396,0.22058432,0.36733446,0.903553,0.08549907,0.32195586,0.9428862,0.037599906,0.24985191,0.96755373,0.03529995,0.22008395,0.97484195,0.15273556,0.23023584,0.96107405,0.20521665,0.239823,0.9488788,0.24533829,0.32796228,0.91227734,0.23900142,0.30165407,0.9229751,0.24603124,0.32745984,0.9122712,0.23230906,0.27511424,0.9329226,0.09355157,0.31222484,0.9453908,0.11669504,0.31823483,0.9408023,0.13151205,0.33392107,0.9333816,0.13966313,0.32423204,0.9356109,0.16243932,0.33021638,0.9298229,0.18500724,0.33618733,0.92344487,0.20735079,0.34214482,0.9164839,0.22945409,0.3480886,0.9089473,0.047206488,0.2425172,0.9689979,0.15478508,0.2306538,0.9606458,0.2012332,0.23947302,0.9498199,0.20071848,0.31597096,0.9272942,0.19375475,0.28955448,0.93734586,0.21649402,0.2956102,0.9304542,0.21986516,0.30882126,0.9253587,0.17805845,0.30995622,0.93392843,0.18157277,0.32310277,0.9287819,0.20950349,0.26902026,0.94007254,0.21303932,0.28234234,0.9353593,0.22315042,0.32197303,0.9200746,0.22634749,0.33506304,0.9146035,0.13211893,0.2978897,0.94541323,0.15518644,0.30392906,0.9399704,0.13592547,0.31109077,0.94060975,0.14764571,0.2774084,0.9493394,0.108872466,0.29183844,0.9502511,0.08953653,0.29902884,0.9500342,0.12824596,0.28463146,0.95001996,0.18647856,0.26291552,0.9466262,0.17079982,0.2834871,0.9436432,0.16706038,0.27016962,0.94820845,0.20588888,0.25564653,0.9445923,0.17446665,0.2967502,0.9388827,0.049811628,0.24520572,0.9681906,0.17925027,0.23956364,0.9541901,0.20235448,0.2439658,0.94843733,0.15598232,0.23515655,0.95935965,0.1092628,0.28137782,0.9533562,0.12839505,0.28114057,0.9510388,0.109134115,0.28486848,0.9523338,0.08992651,0.28684932,0.9537456,0.08987167,0.2885921,0.9532249,0.12861554,0.27589718,0.9525434,0.14797482,0.27040765,0.95130605,0.1673308,0.2649092,0.94964385,0.1672412,0.26666346,0.94916856,0.1866736,0.25940213,0.9475566,0.20599324,0.25388673,0.9450441,0.05003217,0.24543998,0.96811986,0.03677326,0.21876356,0.9750848,0.11239151,0.23523325,0.9654188,0.17890339,0.23953806,0.95426154,0.15580785,0.23514369,0.9593912,0.20218217,0.24395308,0.9484773,0.1554589,0.23511808,0.959454,0.12846363,0.27415794,0.9530659,0.108778365,0.27616584,0.95493436,0.12838742,0.27328792,0.953326,0.10894043,0.27790403,0.9544115,0.0893285,0.280778,0.95560676,0.08941432,0.28164607,0.9553432,0.12823454,0.27154732,0.95384383,0.14768761,0.26692256,0.95233434,0.16712813,0.2622916,0.9504059,0.16719587,0.2631644,0.95015264,0.18654667,0.25765464,0.94805825,0.20593372,0.2530117,0.9452917,0.08958558,0.28338137,0.95481384,0.050313324,0.24589306,0.9679903,0.1595574,0.24406788,0.9565419,0.19255368,0.24621601,0.9498951,0.12633102,0.24191855,0.9620374,0.08898603,0.2793702,0.9560512,0.08852859,0.2774921,0.95664036,0.1081084,0.2733456,0.9558215,0.108555295,0.27522612,0.9552311,0.12768911,0.2691941,0.9545837,0.14726141,0.2650376,0.95292664,0.12790748,0.27013564,0.95428836,0.08921439,0.28030875,0.9557551,0.16681595,0.26087615,0.9508501,0.18634343,0.25670987,0.9483544,0.16702415,0.2618198,0.95055425,0.20583452,0.2525388,0.9454397,0.12812561,0.2710768,0.95399225,0.03582512,0.21986778,0.97487164,0.050574597,0.24578571,0.9680039,0.12024199,0.2524244,0.9601165,0.08089435,0.260762,0.96200794,0.06770847,0.25217903,0.9653089,0.0739726,0.2595853,0.96288294,0.06967003,0.25726286,0.9638267,0.07309254,0.25932074,0.96302146,0.07194117,0.25886306,0.9632312,0.011016145,0.19051872,0.98162174,0.008442013,0.19003761,0.98174053,0.008407888,0.19043505,0.9816638,0.008295396,0.19067179,0.9816188,0.002728189,0.19200169,0.9813908,-0.0011748947,0.19278957,0.98123944,-0.00023766849,0.18894729,0.98198724,-0.0010388594,0.1873913,0.9822848,-0.0015465866,0.18593287,0.9825612,-0.0014806435,0.18520428,0.9826989,-0.0009900253,0.18447651,0.98283637,0.0015316538,0.18258902,0.98318815,0.002544358,0.18145952,0.98339516,0.0037083493,0.18035649,0.98359436,0.0056981402,0.17892122,0.98384696,0.006540251,0.17866214,0.98388875,0.0065021603,0.17826216,0.9839616,0.006229426,0.17771117,0.98406297,0.0060490947,0.17235716,0.985016,0.0058994363,0.17097607,0.9852575,0.005754044,0.17027752,0.98537934,0.005572921,0.16827598,0.9857242,0.005363175,0.16799031,0.9857741,0.0049834354,0.16801299,0.9857722,0.0046373797,0.16793743,0.98578674,0.0045520035,0.16753833,0.98585504,0.00469348,0.16712922,0.9859238,0.005633411,0.16653764,0.986019,0.0047412366,0.16626282,0.9860701,0.004329914,0.16566117,0.9861732,0.0045086127,0.16497198,0.98628795,0.004018121,0.1644197,0.9863823,0.0041579227,0.16404729,0.9864437,0.0044758976,0.163774,0.9864877,0.004981912,0.16387407,0.9864687,0.008564974,0.16024707,0.98703974,0.008032387,0.15842223,0.9873388,0.007936209,0.15598999,0.98772675,0.007815055,0.15322332,0.98816067,0.006426491,0.15228331,0.98831594,0.0065315836,0.1516407,0.9884141,0.007166344,0.15044531,0.9885923,0.008340793,0.14910896,0.9887856,0.011176299,0.14355241,0.9895796,0.010350978,0.14279427,0.98969823,0.010082693,0.14169252,0.9898594,0.010466179,0.13447426,0.99086183,0.008650945,0.13133721,0.99130005,0.008633388,0.13044162,0.99141836,0.008818786,0.12940313,0.9915528,0.00929952,0.12877353,0.9916304,0.010726759,0.12579317,0.9919985,0.010325602,0.12354303,0.9922855,0.010262725,0.122457944,0.9924207,0.010038399,0.121940315,0.99248666,0.009321637,0.12151743,0.9925455,0.009061901,0.120810166,0.99263424,0.009242228,0.11993455,0.9927388,0.0091075795,0.11928645,0.9928181,0.009497741,0.118447125,0.9929149,0.010324894,0.11740197,0.9930308,0.0116638625,0.11480764,0.9933193,0.012175448,0.1146036,0.9933367,0.012404796,0.11405836,0.99339664,0.012263317,0.11352836,0.99345905,0.012779749,0.112380974,0.993583,0.014265083,0.1112326,0.99369204,0.015823327,0.11022982,0.9937802,0.017085483,0.110086694,0.9937751,0.017385326,0.10918877,0.993869,0.018215962,0.108045086,0.99397904,0.01881672,0.10754436,0.9940222,0.019774653,0.107219025,0.9940387,0.020562867,0.10704527,0.99404156,0.020602282,0.1060802,0.99414414,0.022741564,0.10707751,0.99399054,0.009409162,0.1900451,0.9817302,0.009109848,0.16260788,0.98664874,0.008428941,0.15387343,0.98805463,0.010637135,0.1474579,0.98901117,0.011883162,0.14442949,0.9894437,-0.000081130405,0.19176091,0.9814417,0.00016144341,0.19116864,0.9815572,0.0006769161,0.18333134,0.98305094,0.005895277,0.16684008,0.9859663,0.0063865264,0.16479878,0.98630655,0.008505399,0.15462276,0.9879369,0.010229333,0.128602,0.9916435,0.025527047,0.14157027,0.989599,0.0069764648,0.1649005,0.9862855,0.010987403,0.1279935,0.9917141,0.025191508,0.14223251,0.9895127,0.0077046077,0.16470802,0.98631227,0.009051623,0.16329981,0.98653495,0.019934619,0.1508467,0.9883561,0.011851273,0.145304,0.98931605,0.016493555,0.1502624,0.9885086,0.017763333,0.14255038,0.98962814,-0.04656242,0.16563165,0.9850879,-0.047810055,0.16927803,0.984408,-0.04727507,0.17016159,0.98428154,-0.047274888,0.1720953,0.98394525,-0.047881138,0.17695716,0.98305315,-0.047497325,0.17774062,0.9829305,-0.04767256,0.17848608,0.9827869,-0.04845484,0.17988288,0.98249394,-0.04781755,0.18055184,0.9824024,-0.047890723,0.18107568,0.9823025,-0.04713305,0.1907571,0.9805051,-0.047127225,0.1905756,0.9805407,-0.042976744,0.19061574,0.9807235,-0.03823033,0.19066173,0.980911,-0.032557484,0.19071779,0.98110485,-0.027403003,0.19076881,0.98125243,-0.027176186,0.19096118,0.9812213,-0.026323684,0.19119708,0.9811986,-0.021116542,0.19076131,0.9814093,-0.017858833,0.1909813,0.9814312,-0.016477572,0.19083819,0.98148316,-0.015469719,0.19054705,0.9815562,-0.01321904,0.19072784,0.981554,-0.012017249,0.19061983,0.9815904,-0.011113625,0.18955399,0.98180735,-0.0107471235,0.18956487,0.9818094,-0.009341338,0.1905295,0.981637,-0.008423778,0.19093941,0.98156565,-0.007768345,0.19177343,0.9814085,-0.007370139,0.19240646,0.98128766,-0.006775729,0.19227685,0.9813173,-0.0059218286,0.19231534,0.9813154,-0.005352584,0.1928456,0.9812145,-0.005127636,0.19366749,0.9810538,-0.047806986,0.17507643,0.9833935,-0.048407435,0.17919461,0.982622,-0.04867664,0.18145692,0.98219347,-0.010240842,0.19001502,0.9817278,-0.048464715,0.19078133,0.9804355,-0.049374584,0.18237206,0.9819891,-0.04757252,0.16776773,0.98467803,-0.049986,0.18381977,0.9816882,-0.028120577,0.19127746,0.9811331,0.0151523305,0.20343901,0.9789704,-0.00027004993,0.24093315,0.97054166,-0.03682757,0.24277093,0.9693844,-0.027920237,0.19159396,0.9810771,0.011712502,0.20609075,0.9784628,-0.0005273058,0.24074827,0.9705875,-0.0267965,0.19222467,0.98098505,0.010805784,0.20622373,0.9784452,-0.019665549,0.2276937,0.9735342,-0.069901556,0.19148853,0.9790025,-0.049834117,0.18614641,0.9812574,-0.01080495,0.20478468,0.9787474,0.007952486,0.21177079,0.97728705,-0.029613957,0.19778799,0.97979736,-0.01949117,0.22754836,0.9735717,-0.05880201,0.20112127,0.97779983,-0.048616048,0.19042324,0.9804976,0.0071271257,0.21229608,0.9771794,0.007402225,0.212121,0.9772154,-0.011354603,0.2051354,0.97866774,-0.029888421,0.19796373,0.97975355,-0.0153168505,0.22458723,0.9743336,-0.035706107,0.22715588,0.9732036,0.005104043,0.22201714,0.9750294,-0.052363254,0.21011552,0.97627336,-0.031839654,0.20771529,0.977671,-0.05228757,0.21029384,0.97623897,-0.053551715,0.088589564,0.9946276,-0.051525258,0.08796046,0.9947905,-0.047326468,0.08739426,0.99504894,-0.039402932,0.084965974,0.9956044,-0.03634652,0.08305278,0.9958821,-0.03481126,0.08302474,0.99593925,-0.03089459,0.08507549,0.9958954,-0.02848494,0.08682293,0.9958164,-0.01849865,0.090331234,0.99574,-0.013864243,0.09109673,0.99574554,-0.011633255,0.09269295,0.9956268,-0.008435065,0.09400814,0.99553573,-0.0060584284,0.09585929,0.9953764,-0.0021976593,0.097029805,0.995279,0.004509185,0.10031519,0.9949455,0.011666963,0.100356705,0.9948832,0.013003156,0.10036359,0.99486583,0.016489606,0.10123436,0.99472594,0.017498758,0.10290359,0.9945374,0.01822983,0.10442421,0.9943657,0.019187063,0.105420046,0.99424267,-0.026104674,0.08781618,0.9957946,-0.04170211,0.08592721,0.99542826,-0.0031440847,0.09752218,0.99522835,-0.04744172,0.120873235,0.9915337,-0.013751741,0.09731147,0.995159,-0.046132613,0.1203787,0.9916556,-0.01423068,0.09747425,0.9951363,-0.04589522,0.120213374,0.99168664,-0.014502708,0.101110905,0.9947694,-0.024402086,0.18251447,0.9829003,-0.045568567,0.11876139,0.99187666,-0.01751541,0.1035312,0.99447197,-0.022067908,0.16366474,0.9862692,-0.015310176,0.12759541,0.9917081,-0.03155812,0.11114956,0.99330246,0.0040355152,0.15196413,0.9883778,-0.016937928,0.13062328,0.99128735,-0.017131273,0.13104236,0.99122876,-0.019608507,0.14737359,0.98888654,-0.27656314,0.21139552,0.93745655,-0.27358067,0.21142802,0.938324,-0.27469486,0.21036506,0.93823737,-0.2749407,0.20879263,0.9385165,-0.2741348,0.20753816,0.93903035,-0.27196804,0.20649935,0.939889,-0.26809704,0.20654018,0.9409916,-0.26886877,0.20426738,0.9412675,-0.2668804,0.20387201,0.9419188,-0.26405308,0.20480964,0.9425121,-0.2617,0.20650437,0.9427985,-0.2603796,0.20694794,0.9430668,-0.25633237,0.20667024,0.94423574,-0.2550299,0.20740393,0.94442755,-0.25492108,0.20644267,0.9446675,-0.25544494,0.20632918,0.9445508,-0.2567605,0.2057079,0.94432956,-0.2601349,0.20572212,0.9434025,-0.26100987,0.20522758,0.94326854,-0.26161554,0.20412642,0.94333965,-0.26169476,0.20319366,0.943519,-0.26033208,0.20133835,0.94429344,-0.25944605,0.20146936,0.9445093,-0.2562537,0.20075226,0.9455329,-0.2577262,0.20062122,0.9451605,-0.26070586,0.19934867,0.9446124,-0.26161847,0.19783355,0.9446786,-0.26113415,0.19748181,0.9448862,-0.25948638,0.19728221,0.9453817,-0.26028663,0.19653608,0.9453171,-0.26044855,0.1953678,0.9455147,-0.26036948,0.19452947,0.9457092,-0.2591792,0.19341241,0.9462652,-0.25751057,0.19348516,0.9467057,-0.25771064,0.19133842,0.9470875,-0.2570289,0.1913954,0.94726133,-0.2548435,0.19324024,0.94747716,-0.25560534,0.19099803,0.94772655,-0.25869456,0.20226061,0.94454634,-0.2547344,0.20104034,0.9458822,-0.26030198,0.19768235,0.94507384,-0.25554278,0.1932076,0.9472955,-0.27338225,0.21195778,0.9382623,-0.2683662,0.2068495,0.94084686,-0.25725478,0.2025611,0.9448751,-0.25827765,0.19356468,0.94648045,-0.27448493,0.21205856,0.9379175,-0.26897785,0.20722224,0.94059014,-0.25957286,0.1975947,0.94529265,-0.25439975,0.20700707,0.9446845,-0.2554972,0.20213044,0.94544405,-0.25448292,0.20738225,0.9445798,-0.2737338,0.19157267,0.9425337,-0.27240324,0.1918269,0.9428674,-0.27168444,0.19224924,0.94298875,-0.2713335,0.1928222,0.94297284,-0.27149847,0.19418661,0.94264525,-0.27182797,0.19421339,0.9425448,-0.27212042,0.19408043,0.94248784,-0.27278885,0.19366667,0.94237965,-0.2733463,0.1930496,0.9423448,-0.27365533,0.1930379,0.9422574,-0.27435833,0.1927519,0.9421116,-0.27428725,0.19242331,0.94219947,-0.268961,0.19174664,0.9438714,-0.26878273,0.19222163,0.9438256,-0.26887643,0.19334972,0.9435684,-0.26892793,0.19357216,0.9435081,-0.26936907,0.1941106,0.9432716,-0.2695259,0.19388735,0.9432727,-0.2698839,0.19244167,0.9434664,-0.26968,0.19230118,0.9435533,-0.26992548,0.19181941,0.9435812,-0.26584712,0.1944993,0.9441903,-0.2652029,0.19482203,0.9443049,-0.26485294,0.1952248,0.94432,-0.26468092,0.19571455,0.9442668,-0.26489538,0.19588593,0.94417113,-0.26564112,0.19597617,0.9439428,-0.26628473,0.19541036,0.9438789,-0.26676673,0.19414066,0.9440048,-0.26657525,0.19393085,0.9441019,-0.26588476,0.19379789,0.9443239,-0.2622553,0.20028895,0.9439844,-0.26155385,0.20052265,0.9441294,-0.26146096,0.20163049,0.9439191,-0.262366,0.20137921,0.9437216,-0.26381308,0.19994079,0.943624,-0.26289535,0.19960332,0.94395155,-0.26271918,0.20000081,0.9439165,-0.26932338,0.19824627,0.9424242,-0.26852167,0.19878325,0.9425398,-0.26862627,0.20089169,0.9420629,-0.26942652,0.20104864,0.9418008,-0.2703955,0.19983472,0.9417815,-0.27050707,0.19897707,0.941931,-0.27010673,0.19849852,0.94214684,-0.2704815,0.2038077,0.940905,-0.2695086,0.20589723,0.9407292,-0.27008596,0.20597644,0.9405462,-0.27223846,0.20580798,0.9399624,-0.27218586,0.20528172,0.9400927,-0.27152085,0.20403796,0.94055563,-0.2665587,0.335604,0.9035023,-0.2653852,0.33720106,0.9032531,-0.26465154,0.33982497,0.9024847,-0.2654612,0.3395468,0.9023516,-0.26596403,0.33876997,0.90249544,-0.26701245,0.33726525,0.9027494,-0.26694515,0.33621415,0.9031613,-0.27285248,0.3590146,0.89255816,-0.27086413,0.35977095,0.89285916,-0.2690643,0.35520735,0.89522743,-0.26771367,0.35239995,0.8967406,-0.26682994,0.35190934,0.89719653,-0.2663076,0.35272378,0.89703184,-0.26466414,0.35269657,0.8975288,-0.26356643,0.34883153,0.89936054,-0.26194856,0.34575555,0.90101945,-0.26257747,0.3443358,0.90138006,-0.26268715,0.34203607,0.9022232,-0.26383352,0.33852702,0.90321165,-0.26689917,0.3333649,0.9042305,-0.26463065,0.3340149,0.9046572,-0.26584065,0.33232993,0.90492296,-0.2675074,0.33200678,0.9045504,-0.26818046,0.3315348,0.90452415,-0.26770204,0.33026823,0.905129,-0.26522282,0.32810518,0.9066442,-0.26399338,0.32562292,0.9078971,-0.26344264,0.32091329,0.90973216,-0.26271233,0.31765535,0.9110858,-0.26664445,0.29558423,0.9173498,-0.26925606,0.2911433,0.91800696,-0.27159274,0.2857136,0.91902405,-0.2720837,0.28324956,0.9196413,-0.27319184,0.28044584,0.9201719,-0.27236295,0.35961357,0.89246655,-0.26613992,0.35363027,0.8967247,-0.10126419,0.3791356,0.91978353,-0.27161968,0.36023772,0.89244133,-0.2653727,0.35330823,0.897079,-0.26407558,0.30146882,0.91617715,-0.1018042,0.38698554,0.9164486,-0.24141449,0.3622457,0.9002761,-0.1297449,0.2686981,0.95444626,-0.1011782,0.30931354,0.9455623,-0.1002314,0.33016324,0.9385872,-0.102078855,0.28831416,0.95207924,-0.10472436,0.41897455,0.90193856,-0.1030187,0.39650297,0.9122349,-0.10118876,0.37379122,0.9219767,-0.24082439,0.36202103,0.9005245,-0.12762916,0.3108166,0.9418619,-0.115412466,0.28907087,0.9503252,-0.113371834,0.3309093,0.93682754,-0.14198942,0.29058397,0.94625574,-0.12871686,0.2898275,0.94838387,-0.12663577,0.42274725,0.89735615,-0.11782461,0.39904675,0.9093289,-0.11204557,0.4202329,0.90047216,-0.108685374,0.37507668,0.92060035,-0.24044019,0.36178777,0.9007209,-0.12791847,0.31073555,0.9418494,-0.1421348,0.2905431,0.9462465,-0.11351564,0.33086902,0.93682444,-0.14242555,0.2904617,0.9462278,-0.12680653,0.4200821,0.8985829,-0.12674975,0.4209708,0.8981749,-0.117923304,0.39724952,0.9101027,-0.10872762,0.37416834,0.9209649,-0.23727682,0.35825613,0.90296865,-0.26255757,0.31271857,0.9128366,-0.12693204,0.41813624,0.89947224,-0.12689026,0.4187851,0.8991762,-0.11799611,0.39593798,0.9106646,-0.108758934,0.37350583,0.9212301,-0.16183372,0.4341574,0.88618124,-0.23588116,0.3547958,0.9046988,-0.2627969,0.30715623,0.91465443,-0.21672614,0.2756861,0.93649715,-0.14531119,0.3104799,0.93940777,-0.15116738,0.290333,0.94491017,-0.122171395,0.33074212,0.93577975,-0.16861363,0.29007563,0.9420327,-0.12702021,0.41678068,0.9000887,-0.12699087,0.4172326,0.89988345,-0.118047446,0.39502448,0.9110546,-0.1087811,0.37304443,0.92141443,-0.16192631,0.43308643,0.88668823,-0.20041957,0.3810826,0.9025564,-0.23610984,0.33838546,0.9109047,-0.21599048,0.27641183,0.9364532,-0.14610854,0.30995262,0.9394582,-0.16901436,0.28981015,0.94204265,-0.12256726,0.33048043,0.9358205,-0.16981593,0.28927925,0.94206166,-0.16682515,0.4088664,0.8972166,-0.15118358,0.4236394,0.89312553,-0.14485872,0.38969615,0.9094795,-0.14028598,0.41414604,0.8993347,-0.12231531,0.37035555,0.92080164,-0.23622663,0.33563143,0.91189283,-0.21531051,0.27692482,0.93645823,-0.16818275,0.36964986,0.9138236,-0.14564282,0.35014167,0.92530483,-0.14529088,0.37000272,0.9175993,-0.19170946,0.34943005,0.9171401,-0.1687255,0.3497859,0.92151046,-0.122475855,0.35049742,0.928521,-0.19014294,0.3889965,0.901403,-0.16754945,0.38934636,0.90572435,-0.1892081,0.40851977,0.89292324,-0.1909766,0.36929703,0.9094766,-0.16917823,0.3297634,0.92878133,-0.1928745,0.30923033,0.93122286,-0.16954152,0.3095915,0.9356328,-0.19234194,0.32940483,0.9243901,-0.1933077,0.28891566,0.93763524,-0.14591517,0.33012196,0.9325922,-0.23791395,0.3064041,0.9216906,-0.22853854,0.3256741,0.9174456,-0.21916127,0.34480962,0.91272926,-0.19102165,0.36874494,0.9096911,-0.19028571,0.38735428,0.90207976,-0.19104414,0.36846888,0.9097982,-0.19023818,0.38790187,0.9018545,-0.18938375,0.40662128,0.89375216,-0.18935871,0.40689266,0.893634,-0.1910891,0.3679166,0.9100123,-0.19179425,0.3483168,0.9175458,-0.19240165,0.32856348,0.9246771,-0.19238175,0.32884404,0.92458147,-0.19291171,0.30866536,0.93140256,-0.19332501,0.28863123,0.9377192,-0.18930858,0.40743512,0.89339745,-0.21912882,0.34322107,0.91333556,-0.23320806,0.31525266,0.91990745,-0.20507464,0.37088832,0.9057518,-0.19113398,0.36736408,0.910226,-0.19042793,0.3857103,0.90275395,-0.1911564,0.36708766,0.9103328,-0.1903806,0.3862584,0.9025296,-0.18955864,0.40472037,0.89457756,-0.18953371,0.404992,0.8944599,-0.1912012,0.36653492,0.9105461,-0.19187881,0.34720257,0.9179504,-0.19246124,0.3277215,0.9249634,-0.19244139,0.32800224,0.92486805,-0.1929489,0.30810007,0.93158203,-0.19334231,0.2883468,0.9378032,-0.18948378,0.40553528,0.8942243,-0.22810017,0.31496757,0.92128485,-0.2298037,0.3150626,0.9208288,-0.21574949,0.34303296,0.9142103,-0.2033997,0.3707953,0.90616745,-0.1912459,0.36598217,0.91075903,-0.19056949,0.38406554,0.9034251,-0.19126824,0.3657057,0.91086537,-0.19052237,0.38461393,0.9032017,-0.18973266,0.40281838,0.89539874,-0.18970785,0.40309027,0.8952817,-0.19131283,0.36515287,0.9110778,-0.19196308,0.34608817,0.91835344,-0.19252063,0.3268796,0.9252489,-0.19250086,0.3271602,0.92515385,-0.19298597,0.307535,0.931761,-0.19335961,0.28806233,0.9378871,-0.22718571,0.31465414,0.9216178,-0.22535539,0.31402722,0.9222808,-0.21393658,0.3424124,0.9148688,-0.2025025,0.37048852,0.90649384,-0.19071044,0.38241965,0.9040933,-0.19135739,0.36459982,0.91128993,-0.19066353,0.38296846,0.9038709,-0.18990584,0.40091473,0.89621603,-0.18988115,0.40118676,0.8960995,-0.19142407,0.36377004,0.9116075,-0.19204706,0.34497344,0.9187553,-0.19257988,0.32603744,0.9255337,-0.19256015,0.32631814,0.9254389,-0.19302298,0.30696973,0.9319398,-0.19337687,0.28777796,0.9379708,-0.1934073,0.30148518,0.93364894,-0.21507716,0.29343224,0.93147165,-0.1929045,0.33414266,0.92257065,-0.21477067,0.30985242,0.92621005,-0.19213025,0.3664037,0.9104034,-0.19085081,0.38077244,0.9047587,-0.19080408,0.38132164,0.9045372,-0.1900782,0.39900926,0.8970295,-0.19153486,0.36238638,0.9121351,-0.19213077,0.34385818,0.9191557,-0.19263898,0.32519504,0.92581767,-0.19305992,0.30640432,0.9321181,-0.19339411,0.28749356,0.93805444,-0.19278204,0.335038,0.92227143,-0.19206597,0.36684567,0.910239,-0.19334917,0.3019381,0.9335146,-0.1919373,0.36772949,0.9099094,-0.1909906,0.37912357,0.90542144,-0.19094406,0.3796734,0.9052008,-0.19221425,0.3427419,0.9195551,-0.19309682,0.3058387,0.9322963,-0.1927093,0.33603632,0.9219234,-0.19189705,0.36822218,0.9097186,-0.19331668,0.3024432,0.9333578,-0.1918164,0.36920717,0.90933627,-0.19112973,0.37747407,0.90608096,-0.19108342,0.37802407,0.90586144,-0.19229743,0.3416257,0.919953,-0.19313364,0.3052731,0.93247396,-0.19262747,0.33715504,0.921532,-0.1917711,0.36975917,0.9091216,-0.19328022,0.30300924,0.9331817,-0.1916803,0.37086275,0.9086911,-0.19126831,0.3758227,0.906738,-0.19122218,0.37637332,0.90651923,-0.19238035,0.34050855,0.9203498,-0.1931704,0.30470714,0.93265146,-0.19254537,0.3382735,0.9211391,-0.19163479,0.37141445,0.9084753,-0.19324367,0.30357552,0.9330052,-0.19154355,0.3725176,0.9080428,-0.19140624,0.37417078,0.9073918,-0.19136032,0.3747216,0.90717417,-0.192463,0.33939126,0.9207451,-0.19320706,0.30414143,0.9328285,-0.19149785,0.37306878,0.9078261,0.1519768,0.06547873,0.9862128,0.15155081,0.0655476,0.98627377,0.1505241,0.06515814,0.98645675,0.14987803,0.063989714,0.9866316,0.14963542,0.062441785,0.9867676,0.14839686,0.0604845,0.98707646,0.14693229,0.060187615,0.9873137,0.14671442,0.05970533,0.9873754,0.14642681,0.058128905,0.9875121,0.14661604,0.057450786,0.98752373,0.147137,0.05694795,0.98747534,0.1502015,0.056119226,0.9870614,0.15109044,0.056233246,0.9869192,0.15210252,0.057644777,0.9866823,0.15258197,0.05931311,0.9865093,0.15519357,0.0632702,0.98585594,0.15525904,0.06462497,0.9857577,0.15455076,0.06554594,0.98580813,0.14886726,0.0607414,0.9869898,0.16974948,0.036089286,0.9848262,0.17023405,0.03363471,0.9848295,0.16873138,0.031213056,0.9851677,0.16752201,0.028228303,0.98546416,0.16725917,0.02732016,0.98553437,0.16643803,0.02687889,0.9856855,0.16489667,0.025048096,0.9859927,0.16387084,0.022624187,0.9862223,0.16305159,0.019882398,0.9864172,0.16407476,0.019557854,0.98625404,0.16518612,0.019455591,0.9860705,0.16673043,0.018402448,0.9858308,0.5562551,0.37486172,0.74165964,0.5554061,0.3761863,0.7416252,0.548855,0.38097656,0.7440532,0.54552484,0.3847594,0.7445555,0.54096854,0.38654426,0.74695146,0.5399051,0.38728538,0.747337,0.5390235,0.38829947,0.7474471,0.5373384,0.38986644,0.7478447,0.5324162,0.40594462,0.7427934,0.534435,0.4057445,0.74145174,0.5318427,0.4077889,0.74219376,0.5295711,0.40920308,0.7430392,0.5280456,0.41103658,0.74311286,0.5245587,0.4142984,0.7437708,0.51734245,0.42482826,0.74288476,0.5138006,0.4296055,0.7425955,0.51125747,0.43352005,0.74207556,0.5067683,0.4387533,0.7420792,0.5008605,0.44699004,0.74117386,0.49926102,0.4485239,0.74132633,0.49664629,0.45475948,0.73928094,0.4954815,0.45686364,0.738765,0.494497,0.4581557,0.73862445,0.49282628,0.4592871,0.7390383,0.49191424,0.4606733,0.7387831,0.48973775,0.46341002,0.73851746,0.48943335,0.46486083,0.7378072,0.4883966,0.4679012,0.73657125,0.4873816,0.46907791,0.7364951,0.48546064,0.47025084,0.73701566,0.48255953,0.47267836,0.7373679,0.47919372,0.47627327,0.73724973,0.47703296,0.47815904,0.73743033,0.4761998,0.4791609,0.7373185,0.47552362,0.48026755,0.73703486,0.47456384,0.48154894,0.73681736,0.4716643,0.48469102,0.7366188,0.47087544,0.4875881,0.73521024,0.46973202,0.4897161,0.73452705,0.4689996,0.49069583,0.73434114,0.46616915,0.49293667,0.7346426,0.4653173,0.49620613,0.73297966,0.46587515,0.4977539,0.7315746,0.46532044,0.4988726,0.7311655,0.46813565,0.49695033,0.73067737,0.4703746,0.4927543,0.73207986,0.47128597,0.4916638,0.7322269,0.47209346,0.49090365,0.7322167,0.47337386,0.48917285,0.73254836,0.47698408,0.48592427,0.7323686,0.4799831,0.48141375,0.73338735,0.48033774,0.48015776,0.7339784,0.48151112,0.47819716,0.73448926,0.48448253,0.47546825,0.7343069,0.48737702,0.47340527,0.7337241,0.4904536,0.4702058,0.7337314,0.4950971,0.46683213,0.7327664,0.49762842,0.46583548,0.7316852,0.49831218,0.46775958,0.7299904,0.4987584,0.4697183,0.7284263,0.4986872,0.47111183,0.7275745,0.49776134,0.47496888,0.7256985,0.49802256,0.48110977,0.72146165,0.4970499,0.48893493,0.716857,0.497662,0.4913921,0.71474916,0.47996444,0.5195774,0.70687586,0.47452635,0.5169879,0.7124242,0.47092953,0.51699585,0.71480113,0.46886593,0.516302,0.7166568,0.46818987,0.51692504,0.7166496,0.46764702,0.51755166,0.71655184,0.46506846,0.51669675,0.71884346,0.4644445,0.5167981,0.71917385,0.46252236,0.516145,0.7208796,0.46048188,0.5165443,0.7218992,0.45709163,0.5188636,0.72239035,0.4559836,0.51944333,0.7226739,0.4555556,0.5194258,0.72295636,0.45611888,0.5187216,0.7231068,0.45507577,0.51642597,0.7254035,0.4543301,0.5173248,0.72523046,0.45328328,0.5183331,0.7251656,0.44993103,0.5194083,0.7264826,0.45067796,0.52121395,0.72472435,0.45055354,0.5222376,0.7240645,0.4535416,0.5201823,0.7236784,0.45431522,0.5201314,0.7232296,0.45136917,0.5225297,0.7233454,0.45022872,0.5231146,0.72363335,0.44601196,0.5218771,0.7271297,0.4411993,0.52380145,0.72868043,0.43971214,0.5240352,0.72941095,0.4393734,0.52386034,0.72974056,0.4395002,0.52261114,0.7305595,0.43933925,0.52194476,0.7311325,0.43739825,0.52160376,0.7325383,0.43576267,0.5210671,0.73389375,0.4339395,0.5212627,0.73483455,0.43755913,0.5228314,0.73156637,0.43785283,0.52349293,0.7309173,0.43378276,0.52209663,0.7343348,0.43159744,0.5218677,0.73578376,0.43119,0.5210503,0.73660153,0.4309953,0.5203693,0.7371966,0.4305356,0.5197703,0.7378875,0.4302916,0.5188985,0.738643,0.42907718,0.5188577,0.73937774,0.42802435,0.51900345,0.7398855,0.42664996,0.5184374,0.7410752,0.4158289,0.5128932,0.7510173,0.41328248,0.5141802,0.75154257,0.40898344,0.5157925,0.7527886,0.40157613,0.5164945,0.756287,0.3993473,0.5179527,0.7564699,0.3965876,0.51790375,0.7579538,0.3954403,0.5182165,0.7583394,0.39088488,0.52068007,0.75901335,0.38414153,0.5220574,0.76150596,0.3798285,0.52267873,0.7632413,0.37186223,0.5242965,0.7660493,0.36543837,0.52268887,0.77022797,0.36324832,0.52300125,0.77105147,0.53195304,0.40582085,0.74319273,0.47230625,0.483706,0.73685503,0.46524146,0.49440712,0.73424244,0.45184115,0.51862675,0.72585523,0.5313552,0.4054711,0.743811,0.5119591,0.43148884,0.74277544,0.47811776,0.48447788,0.7325876,0.45683247,0.51804006,0.72314495,0.42323038,0.51521045,0.7452746,0.41724518,0.5124966,0.7505023,0.46627486,0.49960658,0.7300555,0.46152526,0.51606613,0.7215748,0.44967344,0.5228901,0.7241407,0.4470657,0.52184004,0.726509,0.4214784,0.5139522,0.747134,0.4330914,0.3745327,0.81985193,0.531108,0.37776303,0.75843215,0.53134227,0.40422976,0.7444956,0.48390388,0.49666706,0.72052675,0.45627567,0.51681787,0.72436994,0.3914634,0.51760185,0.7608184,0.4629057,0.37704504,0.802219,0.44313142,0.37620962,0.81369585,0.42307222,0.3753738,0.82468444,0.5314616,0.40321463,0.7449608,0.485823,0.46620718,0.73934215,0.39025295,0.512094,0.7651551,0.44041613,0.37621006,0.8151685,0.4216969,0.37537402,0.82538843,0.46156773,0.37704527,0.8029895,0.41894278,0.37537447,0.8267896,0.5330681,0.39782894,0.7467065,0.4986103,0.44934145,0.7412692,0.48549572,0.46661177,0.7393019,0.5116359,0.43190143,0.7427583,0.41979125,0.5130461,0.7487049,0.39335462,0.50040877,0.7712738,0.51030815,0.3838814,0.7695587,0.47720274,0.51774263,0.7100846,0.43758866,0.514737,0.7372666,0.3939375,0.50044125,0.77095515,0.4183772,0.51256096,0.74982786,0.5039566,0.3860444,0.77265614,0.52079594,0.38795626,0.76043504,0.48682863,0.3841308,0.7845007,0.46942046,0.38221565,0.79596204,0.4517409,0.38029882,0.80703336,0.43379867,0.3783804,0.8177084,0.41560277,0.37646034,0.82798064,0.5343,0.395082,0.7472842,0.44086695,0.5145569,0.7354369,0.39467308,0.5006858,0.77041996,0.48608416,0.38543928,0.78432053,0.5017066,0.38996413,0.7721519,0.48571178,0.38609323,0.78422964,0.50245714,0.38865834,0.7723222,0.5181537,0.39252457,0.7598955,0.51853174,0.39187256,0.7599742,0.48496646,0.38740066,0.7840461,0.46794158,0.3848342,0.795571,0.45064026,0.38226464,0.80671996,0.45100725,0.3816096,0.80682504,0.43307078,0.37969226,0.81748605,0.41524187,0.37711692,0.8278629,0.5192871,0.3905679,0.76013,0.5036226,0.43993,0.7435226,0.48803157,0.46195868,0.7405534,0.5190539,0.41763318,0.7457651,0.44461742,0.51467496,0.7330928,0.39481437,0.5003689,0.77055335,0.3911695,0.3926365,0.8323599,0.47987795,0.44849366,0.7540362,0.45590395,0.45701635,0.76373273,0.47131088,0.43492603,0.76727146,0.4865869,0.4125708,0.770077,0.48334053,0.43061745,0.76220113,0.46431333,0.47041497,0.7504152,0.4761997,0.4661922,0.74558616,0.44708592,0.44351318,0.77679485,0.46233818,0.42125896,0.7802463,0.45922476,0.4392247,0.77213615,0.43786725,0.42990863,0.789589,0.49531,0.42629912,0.75692606,0.51058394,0.40384483,0.7590872,0.50721574,0.421971,0.75144714,0.42825654,0.41620573,0.802103,0.44320926,0.3936389,0.80536574,0.4406377,0.41185537,0.79762995,0.4182626,0.40240765,0.81432456,0.45296806,0.40749553,0.7929485,0.40789467,0.38851753,0.8262421,0.47746128,0.3987481,0.78296274,0.46524385,0.40312636,0.78805923,0.44264328,0.50597644,0.7403072,0.39526072,0.49867132,0.77142453,0.3908415,0.39443797,0.83166194,0.45901555,0.47856218,0.7485205,0.45142382,0.46405828,0.76214594,0.45441192,0.45936695,0.7632115,0.4434021,0.4494288,0.7755052,0.43495917,0.43467772,0.78858465,0.44487664,0.4470649,0.7760269,0.4635575,0.47158137,0.75015026,0.426104,0.41980922,0.80137104,0.41684613,0.4048272,0.8138515,0.42753935,0.41740766,0.8018609,0.4071955,0.38973558,0.8260133,0.4456134,0.44588184,0.7762848,0.44257662,0.5037559,0.7418598,0.3957056,0.49697173,0.7722928,0.390512,0.39623812,0.8309608,0.45821652,0.47986075,0.7481786,0.45074967,0.46518114,0.7618604,0.45867318,0.47911885,0.7483743,0.45119914,0.4644327,0.7620509,0.4428491,0.4503725,0.7752736,0.43452355,0.43543896,0.7884048,0.4430703,0.44999513,0.7753664,0.4589015,0.47874776,0.7484718,0.42578232,0.42038465,0.8012404,0.41663495,0.40521368,0.81376725,0.4259968,0.42000106,0.8013276,0.40709147,0.38993022,0.8259728,0.44318095,0.44980636,0.77541274,0.41887167,0.48758104,0.76603603,0.39485213,0.48415676,0.7808227,0.44234264,0.49099785,0.7505026,0.39018098,0.3980365,0.8302564,0.40968856,0.43190873,0.8034987,0.40242475,0.4582307,0.79251426,0.39357686,0.44336274,0.80531156,0.3843255,0.4283719,0.8177967,0.4184829,0.44687116,0.79068214,0.37746027,0.45474494,0.80667883,0.38636217,0.46951592,0.7939012,0.39089558,0.40162873,0.8281878,0.40048942,0.4168266,0.8160048,0.42686278,0.46170947,0.77756834,0.41085944,0.47297153,0.77941805,0.38984847,0.3998335,0.8295489,0.37802514,0.452125,0.8078861,0.3778372,0.45299873,0.80748445,0.38468182,0.4266003,0.81855494,0.39106333,0.40073127,0.82854325,0.38951445,0.40162894,0.82883817,0.3785868,0.4495011,0.8090864,0.37839997,0.4503761,0.8086871,0.38503665,0.42482707,0.81930995,0.39123073,0.39983338,0.82889795,0.38917896,0.40342286,0.8281243,0.37914515,0.4468734,0.81027967,0.3789594,0.44774967,0.8098827,0.38538998,0.4230523,0.8200618,0.39139777,0.39893502,0.8292519,0.38884196,0.40521523,0.8274072,0.37970024,0.44424173,0.811466,0.37951556,0.4451194,0.8110713,0.38574186,0.4212757,0.82081056,0.39156443,0.3980363,0.829605,0.38850346,0.4070059,0.8266869,0.38025203,0.4416063,0.8126452,0.38006845,0.44248527,0.8122529,0.38609225,0.4194977,0.82155615,0.39173073,0.39713728,0.8299573,0.38816348,0.40879515,0.82596344,0.38080055,0.4389671,0.81381744,0.38061804,0.43984735,0.8134274,0.38644117,0.417718,0.8222986,0.3918966,0.39623788,0.83030874,0.38782203,0.4105828,0.82523686,0.39255652,0.3926361,0.8317069,0.38296175,0.4283719,0.8184362,0.38134575,0.4363241,0.8149826,0.38116437,0.43720558,0.814595,0.3867886,0.41593668,0.82303786,0.39206216,0.395338,0.83065945,0.38747904,0.41236892,0.82450706,0.3923921,0.3935371,0.83135855,0.38242644,0.43102613,0.81729215,0.38188782,0.43367666,0.81614107,0.38170746,0.43455964,0.81575567,0.3871346,0.41415343,0.8237741,0.39222735,0.39443764,0.83100945,0.38224724,0.43191013,0.8169092,-0.27670604,0.23273177,0.93234634,-0.27536848,0.23095281,0.9331843,-0.27393427,0.23078614,0.9336476,-0.27028888,0.2325668,0.934268,-0.26561642,0.23276575,0.93555754,-0.2609916,0.23344287,0.9366898,-0.25942987,0.23274337,0.9372975,-0.26182216,0.2327683,0.9366259,-0.26491305,0.23217896,0.9359028,-0.26790202,0.23189788,0.9351213,-0.27073544,0.23147681,0.9344093,-0.2712814,0.23049419,0.93449396,-0.27128386,0.22975613,0.9346749,-0.27268416,0.2299443,0.934221,-0.27502102,0.22953545,0.93363637,-0.27793354,0.23101498,0.9324082,-0.2781106,0.2323472,0.9320243,-0.27895144,0.23302102,0.93160474,-0.28032708,0.23217896,0.93140197,-0.28163517,0.23074716,0.93136317,-0.28095552,0.22747546,0.9323727,-0.27731317,0.2301044,0.932818,-0.2587028,0.23290834,0.9374575,-0.2588609,0.23316026,0.9373512,0.1285175,0.02690189,0.99134225,0.12915963,0.027358532,0.99124634,0.12964894,0.028464243,0.9911513,0.12961316,0.029002609,0.99114037,0.12938033,0.02937057,0.99116,0.128989,0.029650828,0.99120265,0.12852564,0.029320404,0.9912727,0.12754549,0.027980328,0.991438,0.12775071,0.027286079,0.9914309,0.11418872,0.0008265534,0.9934587,0.115976416,0.002105787,0.9932497,0.11753634,0.0042490396,0.9930595,0.11753211,0.0056833476,0.99305284,0.116441004,0.007057922,0.9931725,0.11538301,0.0069854446,0.99329656,0.11362287,0.005938928,0.9935062,0.11281236,0.0048890673,0.99360424,0.11265024,0.003967827,0.9936268,0.11315048,0.0020486857,0.99357575,0.11354522,0.0011572398,0.9935322,0.68535477,-0.21165799,0.6967709,0.6850969,-0.20930366,0.6977351,0.6848243,-0.20913033,0.6980546,0.68429065,-0.20949857,0.6984673,0.68415326,-0.20996189,0.69846284,0.68313235,-0.21086496,0.69918966,0.68263865,-0.21072337,0.6997143,0.68173975,-0.21083675,0.7005561,0.683452,-0.21221602,0.6984682,0.6842438,-0.21362992,0.6972608,0.68473315,-0.21399453,0.6966684,0.68507826,-0.2134317,0.6965017,0.68369585,-0.2107384,0.6986768,0.67680466,-0.21419436,0.70431256,0.67609787,-0.21315032,0.7053075,0.6751895,-0.21227928,0.70643944,0.67431223,-0.21212772,0.7073223,0.6742276,-0.21282059,0.70719486,0.67446536,-0.2137614,0.70668423,0.6728655,-0.20645267,0.7103727,0.6731345,-0.20622592,0.7101837,0.67354953,-0.20555702,0.709984,0.6732752,-0.20368512,0.71078336,0.67276376,-0.2013201,0.7119404,0.6734243,-0.19780444,0.71230125,0.67287916,-0.19711775,0.7130065,0.6723361,-0.1972213,0.71349007,0.672068,-0.19750702,0.7136636,0.67166454,-0.1982071,0.71384925,0.67053026,-0.20367345,0.7133767,0.67125845,-0.20524855,0.7122395,0.67187333,-0.20547862,0.71159315,0.7432063,-0.21706524,0.63287205,0.7429994,-0.21528296,0.6337233,0.7425902,-0.21385631,0.63468516,0.7413798,-0.21113157,0.6370082,0.7413593,-0.21002692,0.6373971,0.7409393,-0.20928024,0.6381306,0.740312,-0.20927033,0.6388616,0.7377409,-0.21330021,0.64050084,0.7358145,-0.21573241,0.6419008,0.73479354,-0.21541777,0.6431746,0.7345088,-0.2159438,0.64332354,0.7298511,-0.2321889,0.6429663,0.7284298,-0.23291503,0.6443141,0.7270777,-0.23409006,0.64541453,0.72410065,-0.23694915,0.6477139,0.7232135,-0.23552483,0.6492228,0.7227712,-0.23507923,0.64987653,0.72205687,-0.23539068,0.6505575,0.7214473,-0.23620057,0.6509401,0.7207263,-0.23735818,0.65131766,0.7203485,-0.23866098,0.65125954,0.72039354,-0.23951985,0.6508943,0.72114325,-0.2412521,0.6494227,0.72092736,-0.24166554,0.6495087,0.72056854,-0.24199474,0.6497842,0.7203506,-0.24306126,0.6496278,0.7173246,-0.24818137,0.6510387,0.7171936,-0.2511374,0.6500487,0.7185052,-0.25329468,0.6477593,0.71753293,-0.252838,0.64901423,0.7164688,-0.25268954,0.6502464,0.7156675,-0.2534266,0.6508417,0.7149387,-0.2544883,0.6512283,0.71365947,-0.25653,0.6518302,0.71246254,-0.25868744,0.6522867,0.71174425,-0.2575545,0.653518,0.7122837,-0.25666007,0.6532821,0.7127153,-0.25575563,0.653166,0.7127636,-0.25484428,0.65346956,0.71269906,-0.25398216,0.65387547,0.71243834,-0.25381404,0.65422475,0.7112379,-0.2548739,0.65511835,0.7106758,-0.25581324,0.6553622,0.7098395,-0.25785258,0.65546924,0.7085556,-0.25956154,0.6561835,0.7069979,-0.26134863,0.65715367,0.706861,-0.26210535,0.6569994,0.70685273,-0.26292768,0.65667975,0.7069771,-0.26389942,0.65615577,0.7052321,-0.26643515,0.65700835,0.70538867,-0.26593736,0.65704197,0.70554626,-0.26291618,0.65808773,0.70504135,-0.2625099,0.6587907,0.7043129,-0.26268762,0.65949875,0.7014116,-0.26525056,0.6615617,0.6986589,-0.26746508,0.6635799,0.6973228,-0.2689215,0.6643961,0.69631267,-0.27083015,0.6646801,0.6960699,-0.271721,0.6645708,0.69608504,-0.27250493,0.66423386,0.6969615,-0.27389044,0.6627432,0.69545454,-0.27403638,0.6642643,0.69456244,-0.27138793,0.6662819,0.6942078,-0.2712436,0.6667101,0.69082934,-0.27228194,0.6697891,0.6886079,-0.27251148,0.67197967,0.6880687,-0.27293295,0.6723608,0.68767136,-0.27367568,0.6724654,0.68727124,-0.27472797,0.67244536,0.6868001,-0.27551293,0.6726056,0.6861656,-0.27537358,0.67330986,0.6855081,-0.2753998,0.6739685,0.6832562,-0.2758127,0.676083,0.6830541,-0.2750049,0.67661613,0.6825221,-0.2748066,0.6772333,0.6817491,-0.27534905,0.67779124,0.67991453,-0.2772328,0.67886543,0.67804056,-0.2785639,0.6801935,0.673683,-0.27906647,0.68430483,0.67273486,-0.27928087,0.6851496,0.6722414,-0.2797244,0.68545294,0.67190176,-0.28048357,0.68547577,0.67137265,-0.2825311,0.6851532,0.6708551,-0.28604773,0.6842003,0.67039937,-0.2874046,0.68407834,0.6626545,-0.29890096,0.68669295,0.66153395,-0.30206126,0.6863904,0.6615514,-0.30577,0.68472946,0.66098917,-0.30790487,0.6843157,0.6600473,-0.31380162,0.6825438,0.66004145,-0.31736287,0.68090093,0.66042656,-0.3192663,0.67963654,0.6602636,-0.3233095,0.67788124,0.6594551,-0.32610637,0.6773282,0.65934247,-0.3268088,0.6770994,0.6599457,-0.3346438,0.6726701,0.65919685,-0.3366716,0.6723926,0.6578483,-0.34074175,0.6716626,0.65399134,-0.34823975,0.6715836,0.6518476,-0.3509608,0.67225087,0.65074205,-0.35276046,0.6723799,0.64805734,-0.35618064,0.6731694,0.64649194,-0.35961998,0.6728459,0.6439286,-0.36251912,0.67374766,0.64234847,-0.3631211,0.67493075,0.6411091,-0.36416894,0.67554426,0.63853526,-0.3696898,0.67498314,0.6378688,-0.37036747,0.67524165,0.6373183,-0.37121275,0.6752973,0.6369247,-0.37219703,0.67512685,0.6360702,-0.37351444,0.67520493,0.635265,-0.3754046,0.67491466,0.6341289,-0.37907457,0.67393094,0.6337324,-0.3808057,0.6733278,0.6330776,-0.3857756,0.6711109,0.6329465,-0.3873679,0.670317,0.6329736,-0.3889042,0.66940117,0.6340647,-0.39202365,0.66654295,0.6340799,-0.3937524,0.6655087,0.6337837,-0.39565045,0.66466457,0.6339457,-0.3974826,0.66341573,0.63369536,-0.39922422,0.6626086,0.632545,-0.40083322,0.6627364,0.6317891,-0.40261725,0.662376,0.6308175,-0.40640506,0.6609873,0.63012046,-0.40847045,0.66037875,0.62932616,-0.41151902,0.65924245,0.6292411,-0.41243535,0.65875095,0.63022166,-0.4153027,0.65600634,0.6303706,-0.4169254,0.65483296,0.6300213,-0.41924176,0.6536892,0.6301563,-0.42045763,0.65277743,0.6300166,-0.42154282,0.65221214,0.62999845,-0.42255026,0.6515775,0.6303363,-0.42300746,0.65095377,0.6318796,-0.42446646,0.6485032,0.63232803,-0.42619115,0.646933,0.6328728,-0.4266212,0.6461164,0.63353616,-0.4269017,0.6452804,0.6358813,-0.42735332,0.6426695,0.63701206,-0.4278971,0.64118624,0.639277,-0.4311895,0.6367107,0.6401355,-0.4316216,0.63555425,0.6435187,-0.43150613,0.63220733,0.64476883,-0.4309634,0.63130313,0.6552521,-0.42534897,0.6242779,0.65782565,-0.42531207,0.6215907,0.6590881,-0.42498794,0.6204741,0.6619015,-0.42338893,0.61856955,0.6633218,-0.42228618,0.61780137,0.6658882,-0.41924933,0.6171085,0.66810876,-0.41571516,0.61709934,0.6691721,-0.4137904,0.61724085,0.67007303,-0.41179398,0.61759853,0.67101604,-0.4102169,0.6176242,0.67210025,-0.40873182,0.6174298,0.67481613,-0.40473637,0.6170994,0.6757616,-0.40284812,0.6173002,0.67656624,-0.40087846,0.61770105,0.6800768,-0.3944777,0.6179668,0.68200135,-0.39059466,0.6183121,0.6838144,-0.38666704,0.6187783,0.6857563,-0.38213232,0.6194458,0.6863935,-0.38097268,0.61945444,0.69169503,-0.3720657,0.618971,0.69595283,-0.36404824,0.6189657,0.70287883,-0.34951282,0.61951774,0.7051127,-0.34541824,0.6192756,0.70722115,-0.3412529,0.6191807,0.7137267,-0.3275417,0.6191209,0.7166775,-0.32213834,0.6185469,0.7187379,-0.31803352,0.6182803,0.72032,-0.3145944,0.61819863,0.7233649,-0.30733228,0.61829615,0.72446376,-0.3035264,0.61888933,0.72514045,-0.29815266,0.6207063,0.72907716,-0.29058313,0.6196838,0.73035616,-0.28985736,0.6185165,0.7307845,-0.2892848,0.6182785,0.7308566,-0.2874112,0.61906654,0.73207366,-0.28573906,0.61840224,0.7328155,-0.2837899,0.6184212,0.7335962,-0.2799272,0.6192556,0.7334683,-0.27830526,0.62013745,0.7329803,-0.2769249,0.62133116,0.7334975,-0.2744445,0.62182117,0.73377997,-0.27247214,0.62235516,0.7371718,-0.26652718,0.6209195,0.7371261,-0.26847494,0.62013406,0.73731565,-0.27230984,0.61823386,0.7377595,-0.2739363,0.6169844,0.7385156,-0.27492958,0.61563647,0.738764,-0.2749738,0.6153188,0.7395532,-0.27398548,0.6148113,0.7400247,-0.27326253,0.6145658,0.7420733,-0.2694091,0.6137963,0.743786,-0.26531458,0.61350685,0.7441798,-0.2613355,0.6147359,0.743813,-0.25062424,0.6196207,0.7450478,-0.24260321,0.62132716,0.7454349,-0.23476776,0.62386775,0.74523133,-0.2295439,0.626051,0.7455094,-0.22617985,0.62694377,0.7451395,-0.22449276,0.627989,0.7435072,-0.21877527,0.6319291,0.7348685,-0.21831624,0.6421107,0.72600967,-0.23579814,0.6459947,0.69227284,-0.27198014,0.66841984,0.6836362,-0.27625334,0.6755188,0.6617328,-0.30387238,0.68539864,0.6601717,-0.33056593,0.6744624,0.6390769,-0.36888197,0.6749125,0.69933796,-0.3567381,0.6194065,0.71040154,-0.33430812,0.6193284,0.73069394,-0.2883366,0.61882824,0.73387116,-0.27052823,0.6230952,0.7435472,-0.25775376,0.61700946,0.7446338,-0.22290458,0.62915343,0.74162185,-0.21194458,0.63645625,0.7362294,-0.21540123,0.64153606,0.7248312,-0.23716606,0.6468168,0.7113626,-0.25874662,0.65346265,0.6605954,-0.32128456,0.6785204,0.6453947,-0.36128613,0.6730067,0.64605725,-0.43001416,0.6306329,0.6524536,-0.4262589,0.6265841,0.72847795,-0.2912224,0.6200882,0.7331348,-0.27767497,0.6208139,0.73414654,-0.26836494,0.623706,0.74340856,-0.25429866,0.618608,0.7055976,-0.2665042,0.6565878,0.69584215,-0.27426416,0.6637641,0.6786579,-0.27820873,0.67972296,0.6603957,-0.3326338,0.6732252,0.64925337,-0.42800957,0.6287113,0.73681104,-0.26621994,0.6214792,0.71187705,-0.25897714,0.65281075,0.6963762,-0.27437228,0.66315913,0.6655872,-0.31010693,0.67884266,0.66927624,-0.40431327,0.623378,0.6982815,-0.3583378,0.6196749,0.7256908,-0.29638538,0.6209095,0.7181782,-0.31540978,0.62027156,0.7393533,-0.23634802,0.63047314,0.70611614,-0.26613122,0.6561816,0.66537964,-0.3111203,0.6785825,0.6442028,-0.37110758,0.66879135,0.6616438,-0.40514162,0.630942,0.71620786,-0.3180812,0.62118495,0.7063842,-0.3396118,0.62103564,0.6962301,-0.36096588,0.6204573,0.7274805,-0.29292107,0.620459,0.7355856,-0.2663892,0.622857,0.73499984,-0.22021534,0.64131147,0.73940027,-0.23729356,0.63006276,0.73229307,-0.22949736,0.6411535,0.6736644,-0.3052255,0.6730629,0.6453612,-0.36920902,0.6687254,0.6562513,-0.3444055,0.67135614,0.6357498,-0.4108968,0.65344167,0.68290657,-0.36304635,0.63390535,0.7047254,-0.3299215,0.62810344,0.71531934,-0.31320232,0.6246779,0.69391793,-0.34653807,0.6311808,0.6717005,-0.37944165,0.6362723,0.66030955,-0.39571846,0.6382775,0.64874345,-0.4118721,0.6399166,0.7344657,-0.26760143,0.62365824,0.73494023,-0.2222133,0.6406904,0.7393533,-0.23828855,0.6297422,0.6784836,-0.30466068,0.66846234,0.6457999,-0.36831394,0.6687955,0.65709955,-0.34259674,0.6714519,0.65875864,-0.37845144,0.65023965,0.68105626,-0.34553415,0.6455761,0.7036965,-0.3210678,0.63381916,0.6578302,-0.36976779,0.65614885,0.73494416,-0.24497454,0.6323326,0.70675355,-0.26491192,0.65598863,0.6787829,-0.30442202,0.6682672,0.6920422,-0.3195861,0.6472576,0.7090371,-0.30800864,0.63434774,0.67472357,-0.33111602,0.65962887,0.73479074,-0.24535869,0.63236195,0.6834802,-0.3005815,0.66521096,0.6718196,-0.3176639,0.66913974,0.69491607,-0.28340214,0.6608895,0.675093,-0.3301846,0.6597178,0.69240564,-0.31865075,0.64733,0.70921576,-0.30753917,0.6343759,0.6752775,-0.32971883,0.65976197,0.73089254,-0.25949076,0.6312373,0.68990856,-0.2942359,0.66140103,0.67508715,-0.3145111,0.6673381,0.7043883,-0.27382725,0.65487075,0.67631584,-0.32665896,0.66022027,0.69342875,-0.3155788,0.6477396,0.70971966,-0.30599758,0.63455766,0.67683256,-0.3251278,0.6604465,0.7345547,-0.22385983,0.64055926,0.73067635,-0.26030633,0.63115185,0.7080896,-0.29531077,0.6414052,0.7134634,-0.27436826,0.64474183,0.72239274,-0.27490905,0.63448703,0.72947615,-0.2630995,0.6313819,0.72689694,-0.23113441,0.6466821,0.7271606,-0.23021238,0.6467146,0.72701687,-0.22832102,0.6475461,0.72655517,-0.22842896,0.64802605,0.7262428,-0.22930324,0.6480675,0.72550166,-0.22936961,0.64887357,0.72536033,-0.23149754,0.6482756,0.7268021,-0.23175453,0.6465667,0.73034227,-0.29381555,0.6166624,0.7322675,-0.29075113,0.6158313,0.7340002,-0.28728217,0.6153963,0.7335358,-0.28756785,0.61581653,0.73128116,-0.29125673,0.61676365,-0.4083509,0.29113507,0.86515313,-0.40683493,0.29147834,0.8657515,-0.40430376,0.29319474,0.86635745,-0.40363988,0.29395232,0.8664103,-0.40429324,0.29531556,0.8656417,-0.4054459,0.29560223,0.8650046,-0.40904498,0.29389033,0.86389273,-0.4091631,0.29350176,0.8639689,-0.40898156,0.29262838,0.86435103,-0.40894932,0.29130065,0.86481464,-0.38538522,0.25740457,0.88612705,-0.38428545,0.2589532,0.8861534,-0.38545468,0.26116592,0.8849955,-0.387764,0.2633953,0.8833244,-0.3877818,0.26415744,0.88308895,-0.38839003,0.26435304,0.8827631,-0.3885967,0.26405466,0.8827614,-0.38864607,0.26292264,0.8830775,-0.38922092,0.26161835,0.8832117,-0.38942313,0.26011527,0.88356644,-0.3884048,0.25816706,0.8845855,-0.38742045,0.25752884,0.88520294,-0.38610592,0.26153034,0.88460386,-0.40412572,0.2889346,0.86787045,-0.4028312,0.28933448,0.86833894,-0.40284413,0.28980833,0.8681749,-0.40335783,0.29107156,0.86751354,-0.40420252,0.29092318,0.8671701,-0.40549076,0.29021287,0.8668066,-0.40591988,0.289575,0.86681914,-0.40488902,0.28898528,0.8674978,-0.37262315,0.2793094,0.88495094,-0.3738762,0.27961534,0.8843256,-0.37401962,0.27812678,0.8847343,-0.3748811,0.2763942,0.88491267,-0.37381756,0.27551523,0.8856364,-0.37284708,0.27540305,0.88608027,-0.3710325,0.27636462,0.8865424,-0.3704654,0.27753735,0.88641316,-0.37052724,0.27847221,0.8860941,-0.37130645,0.27935198,0.8854908,-0.37212127,0.27941906,0.88512754,-0.3991524,0.255753,0.88049287,-0.3978851,0.25639555,0.8808795,-0.39755848,0.257631,0.88066655,-0.39790916,0.25914747,0.880063,-0.39883378,0.2594643,0.879551,-0.40055192,0.2584864,0.879058,-0.40095365,0.25765982,0.8791175,-0.40067765,0.2566979,0.87952465,-0.39995742,0.25603315,0.88004607,-0.39050764,0.2855723,0.875187,-0.3910786,0.28606477,0.8747711,-0.39383072,0.28643885,0.87341297,-0.39537206,0.2869891,0.8725355,-0.39564648,0.28676617,0.8724844,-0.39582035,0.28599623,0.87265825,-0.39492318,0.2839001,0.8737485,-0.39349663,0.28567857,0.87381244,-0.39130208,0.28503656,0.8750068,-0.39034152,0.2852203,0.87537587,-0.3941508,0.28528565,0.8736459,-0.3732031,0.28582066,0.8826245,-0.37261167,0.2866764,0.88259685,-0.37270904,0.2878975,0.8821581,-0.37250286,0.2897627,0.8816344,-0.3729417,0.28971693,0.8814639,-0.37389743,0.28917938,0.8812355,-0.37395102,0.28737515,0.8818028,-0.3736597,0.28707725,0.8820233,-0.38043502,0.26106223,0.8871954,-0.37999743,0.26112404,0.88736475,-0.3789175,0.26162735,0.8876782,-0.37878817,0.26334116,0.8872266,-0.37898397,0.26417136,0.886896,-0.38009548,0.2642692,0.8863911,-0.3807874,0.26314875,0.8864275,-0.38074467,0.26287168,0.8865281,-0.3810018,0.2618206,0.8867286],"triangle_indices":[0,1,2,3,4,5,5,6,7,8,9,10,10,11,12,13,14,15,16,17,18,18,19,20,21,22,23,23,24,25,26,27,28,28,29,30,31,32,33,34,35,36,36,37,38,39,40,41,42,43,44,44,45,46,46,47,48,48,49,50,50,51,52,52,53,54,54,55,56,57,58,59,60,61,62,62,63,64,65,66,67,68,69,70,70,71,72,72,73,74,74,75,76,77,78,79,80,81,82,82,83,84,85,86,87,87,88,89,90,91,92,92,93,94,94,95,96,97,98,99,100,101,102,102,103,104,104,0,2,3,5,7,8,10,12,16,18,20,21,23,25,105,26,28,28,30,106,106,31,33,34,36,38,41,42,44,44,46,48,48,50,52,52,54,56,60,62,64,107,68,70,70,72,74,74,76,108,109,77,79,79,80,82,82,84,110,85,87,89,90,92,94,97,99,111,100,102,104,104,2,3,112,8,12,16,20,21,113,105,28,106,33,34,34,38,39,41,44,48,48,52,56,60,64,65,114,107,70,70,74,108,79,82,110,115,85,89,116,90,94,100,104,3,112,12,117,15,16,21,25,113,28,28,106,34,39,41,48,48,56,118,119,60,65,114,70,108,109,79,110,115,89,120,120,116,94,111,100,3,121,112,117,15,21,25,25,28,34,34,39,48,48,118,122,119,65,67,114,108,123,109,110,115,120,94,96,97,111,3,121,117,124,15,25,34,34,48,122,125,114,123,109,115,120,126,97,3,7,121,124,13,15,34,34,122,127,125,123,128,129,109,120,126,3,7,7,124,13,13,34,127,125,128,129,129,120,96,130,126,7,7,13,127,131,125,129,129,96,130,7,127,132,7,132,130,131,129,130,132,57,133,132,133,130,57,132,127,67,131,130,59,130,133,59,133,57,119,67,130,130,59,119,134,135,136,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,153,154,155,155,156,157,158,159,160,160,161,162,163,164,165,166,167,168,169,170,171,171,172,173,174,175,176,176,177,178,178,179,180,181,182,183,183,184,185,186,187,188,189,190,191,191,192,193,194,195,196,197,198,199,200,32,31,31,106,30,27,26,105,105,113,25,22,21,20,17,16,15,14,13,124,124,117,12,12,11,201,202,203,204,204,205,206,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,223,224,225,225,226,227,228,229,230,231,232,233,233,234,235,235,236,237,238,239,240,241,134,136,136,138,139,139,141,242,142,144,243,145,147,244,148,150,245,151,153,155,158,160,162,163,165,246,166,168,247,169,171,173,174,176,178,178,180,248,181,183,185,186,188,249,250,189,191,191,193,251,251,194,196,197,199,252,253,200,31,31,30,29,27,105,25,22,20,19,17,15,14,14,124,12,12,201,254,202,204,206,206,208,255,209,211,256,212,214,215,215,217,257,218,220,258,221,223,225,225,227,228,231,233,235,235,237,259,238,240,241,241,136,139,142,243,260,261,145,244,262,151,155,157,158,162,163,246,166,166,247,263,264,169,173,174,178,248,181,185,265,250,191,251,197,252,253,253,31,29,27,25,24,18,17,14,14,12,254,202,206,255,266,209,256,256,212,215,215,257,267,268,221,225,225,228,230,231,235,259,269,238,241,241,139,242,242,142,260,261,244,148,270,262,155,157,162,271,163,166,263,264,173,272,272,174,248,181,265,273,249,250,251,197,253,29,27,24,23,19,18,14,14,254,274,275,202,255,256,215,267,268,225,230,276,231,259,269,241,242,242,260,261,261,148,245,270,155,157,264,272,248,186,249,251,196,197,29,27,23,22,19,14,274,277,275,255,266,256,267,258,268,230,230,276,259,278,269,242,270,157,271,279,264,248,280,186,251,196,29,28,22,19,274,277,255,266,218,258,230,230,259,281,281,278,242,245,270,271,263,279,248,280,251,196,196,28,27,27,22,274,267,218,230,230,281,242,261,245,271,263,248,181,273,280,196,27,274,282,27,282,196,230,242,283,230,283,267,242,261,271,263,181,273,284,196,282,284,282,274,196,284,273,285,267,283,285,283,242,267,285,266,242,271,163,263,273,284,284,274,286,284,286,263,287,266,285,287,285,242,266,287,277,242,163,263,286,277,288,286,288,263,277,286,274,287,263,288,287,288,277,263,287,242,289,290,291,291,292,293,294,295,296,296,297,298,298,299,300,300,301,302,302,303,304,305,306,307,308,309,310,310,311,312,313,314,315,316,317,318,318,319,320,321,322,323,323,324,325,325,326,327,327,328,329,330,331,332,333,334,335,335,336,337,337,338,339,340,341,342,342,343,344,345,346,347,347,348,349,349,350,351,352,353,354,354,355,356,357,358,359,359,289,291,293,294,296,296,298,300,300,302,304,305,307,308,308,310,312,313,315,360,321,323,325,325,327,329,361,330,332,333,335,337,362,340,342,342,344,363,345,347,349,352,354,356,357,359,291,293,296,300,300,304,364,305,308,312,313,360,365,320,321,325,325,329,361,361,332,366,367,333,337,368,362,342,342,363,369,345,349,351,352,356,370,370,357,291,291,293,300,318,320,325,325,361,366,367,337,339,371,368,342,342,369,372,372,345,351,352,370,291,291,300,364,318,325,366,367,339,373,371,342,372,372,351,352,352,291,364,318,366,374,367,373,371,352,364,305,318,374,375,367,371,372,372,352,305,316,318,375,376,367,372,372,305,312,365,316,375,375,376,372,372,312,377,365,375,372,372,377,378,313,365,372,372,378,313,379,380,381,381,382,383,383,384,385,385,386,379,379,381,383,383,385,379,387,388,389,389,390,391,391,392,393,393,394,395,395,396,397,397,387,389,389,391,393,395,397,389,389,393,395,398,399,400,400,401,402,402,403,398,398,400,402,404,405,406,407,408,409,409,410,411,412,413,414,415,416,417,417,418,419,419,420,421,421,422,423,423,424,425,426,427,428,428,429,430,431,432,433,433,434,435,435,436,437,438,439,440,440,441,442,443,444,445,445,446,447,448,449,450,450,451,452,453,454,455,455,456,457,458,459,460,460,461,462,462,463,464,464,465,466,466,467,404,404,406,407,407,409,411,412,414,468,415,417,419,419,421,423,423,425,426,428,430,469,431,433,435,435,437,438,438,440,442,470,443,445,445,447,471,448,450,452,453,455,457,462,464,466,466,404,407,407,411,472,472,412,468,415,419,423,426,428,469,431,435,438,438,442,473,470,445,471,471,448,452,474,453,457,460,462,466,466,407,472,468,415,423,426,469,475,475,431,438,438,473,470,470,471,452,474,457,458,460,466,472,472,468,423,426,475,438,438,470,452,474,458,460,460,472,423,423,426,438,438,452,476,474,460,423,423,438,476,476,474,423,342,341,477,478,479,480,481,482,483,483,484,485,485,486,487,488,489,490,491,492,493,493,494,495,496,497,498,499,500,501,502,503,504,504,505,506,507,508,509,509,510,511,511,512,513,513,514,515,515,516,517,518,519,520,521,522,523,523,524,525,526,527,528,528,529,530,531,532,533,534,535,536,536,537,538,539,540,541,541,542,543,543,544,545,545,290,289,358,357,370,353,352,351,346,345,372,372,369,363,343,342,477,478,480,546,481,483,485,485,487,547,491,493,495,496,498,499,502,504,506,507,509,511,511,513,515,518,520,548,521,523,525,526,528,530,531,533,549,550,534,536,539,541,543,543,545,289,358,370,356,354,353,351,346,372,363,343,477,551,551,478,546,546,481,485,485,547,552,491,495,553,554,496,499,502,506,555,555,507,511,511,515,517,517,518,548,556,521,525,557,526,530,558,531,549,550,536,538,539,543,289,359,358,356,354,351,350,347,346,363,343,551,546,546,485,552,490,491,553,501,502,555,555,511,517,556,525,559,557,530,558,549,550,538,538,539,289,355,354,350,348,347,363,343,546,552,490,553,560,501,555,517,561,556,559,559,557,558,558,549,538,538,289,359,355,350,349,348,363,344,344,343,552,490,560,562,499,501,517,548,561,559,559,558,538,538,359,356,349,348,344,344,552,488,490,562,554,554,499,517,548,559,538,538,356,355,355,349,344,344,488,490,490,554,517,548,538,355,355,344,490,490,517,548,548,355,490,563,564,565,565,566,567,568,569,570,570,571,572,572,573,574,574,575,576,577,578,579,579,580,581,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,604,605,606,606,607,608,608,609,610,610,611,612,613,614,615,615,616,617,617,618,619,620,621,622,622,623,624,624,625,626,626,627,628,629,630,631,631,632,633,633,634,635,636,637,638,639,640,641,642,643,644,644,645,646,646,647,648,649,650,651,652,653,654,654,655,656,657,658,659,659,660,661,662,663,664,664,665,666,666,667,668,668,669,670,671,672,673,673,674,675,675,676,677,678,679,680,681,682,683,684,685,686,686,687,688,689,690,691,692,693,694,694,695,696,697,698,699,699,700,701,702,703,704,704,705,706,706,707,708,709,710,711,711,712,713,714,715,716,717,718,719,720,721,722,722,723,724,725,726,727,728,729,730,730,731,732,733,734,735,563,565,567,568,570,572,572,574,576,577,579,581,581,583,736,737,584,586,738,587,589,590,592,739,739,593,595,596,598,740,602,604,606,608,610,612,613,615,617,617,619,741,620,622,624,624,626,628,629,631,633,633,635,636,742,639,641,743,642,644,644,646,648,744,652,654,654,656,745,657,659,661,746,662,664,664,666,668,671,673,675,677,678,680,681,683,684,684,686,688,689,691,747,692,694,696,696,697,699,699,701,748,704,706,708,709,711,713,749,714,716,717,719,750,720,722,724,725,727,751,728,730,732,752,733,735,563,567,568,568,572,576,753,577,581,581,736,754,737,586,738,738,589,755,739,595,596,596,740,599,756,602,606,606,608,612,757,613,617,741,620,624,758,629,633,633,636,638,743,644,648,744,654,745,745,657,661,746,664,668,671,675,677,681,684,688,689,747,692,696,699,748,704,708,709,709,713,759,749,716,760,760,717,750,720,724,725,725,751,761,762,728,732,752,735,563,568,576,753,753,581,754,737,738,755,590,739,596,763,756,606,606,612,757,757,617,741,741,624,628,758,633,638,764,743,648,765,744,745,745,661,766,766,746,668,767,671,677,768,681,688,689,692,696,696,748,702,704,709,759,749,760,750,769,720,725,761,762,732,752,563,568,753,754,770,770,737,755,590,596,599,763,606,757,741,628,771,772,758,638,773,764,648,745,766,668,767,677,680,774,768,688,704,759,775,776,749,750,769,725,761,761,732,752,753,770,755,590,599,601,777,763,757,771,772,638,773,648,649,765,745,668,774,688,689,704,775,778,776,750,779,780,769,761,761,752,568,753,755,781,590,601,782,783,777,757,771,638,784,641,773,649,651,765,668,774,689,696,702,704,778,779,780,761,568,753,781,783,757,741,771,784,742,641,649,651,651,668,670,680,774,696,702,778,776,761,568,785,761,785,779,568,781,590,786,783,741,742,641,651,651,670,767,680,696,702,702,776,779,568,590,782,741,771,787,741,787,786,651,767,788,651,788,742,702,779,789,702,789,680,568,782,790,680,742,788,680,788,767,791,779,785,791,785,568,779,791,792,789,792,793,789,793,680,792,789,779,568,790,794,742,680,795,742,795,771,568,794,786,796,771,795,796,795,680,771,796,797,787,797,798,787,798,786,797,787,771,798,792,799,798,799,786,792,798,797,793,797,796,793,796,680,797,793,792,791,786,799,791,799,792,786,791,568,800,801,802,802,803,804,804,805,806,806,807,808,808,809,810,810,800,802,802,804,806,806,808,810,810,802,806,811,812,813,813,814,815,815,816,817,817,818,819,819,820,821,821,811,813,813,815,817,817,819,821,821,813,817,822,823,824,824,825,826,826,827,828,828,829,830,830,831,832,832,833,834,822,824,826,828,830,832,832,834,822,822,826,828,828,832,822,835,836,837,838,839,840,840,841,842,843,844,845,845,835,837,837,838,840,840,842,843,843,845,837,837,840,843,846,847,848,848,849,850,850,851,852,852,853,854,854,855,856,857,858,859,859,860,861,861,862,863,863,846,848,848,850,852,852,854,856,864,857,859,859,861,863,863,848,852,864,859,863,863,852,856,865,864,863,863,856,865,866,867,868,868,869,870,871,872,866,868,870,871,871,866,868,873,874,875,875,876,877,877,878,879,880,422,421,416,415,468,413,412,472,472,411,410,408,407,406,405,404,881,882,883,884,884,885,886,886,887,888,889,890,891,891,892,893,893,894,895,896,897,898,898,899,900,901,902,903,903,904,905,905,906,907,908,909,910,910,911,912,912,913,914,914,915,916,916,917,918,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,935,936,937,937,938,939,940,941,942,942,943,944,945,946,947,948,949,950,951,952,873,873,875,877,880,421,420,416,468,414,413,472,410,406,405,881,882,884,886,889,891,893,893,895,896,896,898,900,901,903,905,910,912,914,914,916,918,918,920,953,954,921,923,924,926,955,956,927,929,930,932,957,935,937,939,940,942,944,945,947,948,948,950,951,951,873,877,879,880,420,417,416,414,414,413,410,408,406,881,881,882,886,889,893,896,896,900,958,959,901,905,908,910,914,914,918,953,954,923,960,960,924,955,956,929,961,933,935,939,939,940,944,962,945,948,948,951,877,879,420,419,417,414,410,408,881,886,889,896,958,959,905,907,914,953,963,914,963,908,954,960,955,964,956,961,957,933,939,939,944,962,962,948,877,877,879,419,418,417,410,409,408,886,888,889,958,965,908,963,965,963,953,908,965,907,966,954,955,964,961,967,957,939,962,877,419,968,877,968,962,419,418,410,409,886,888,888,958,959,965,966,969,965,969,907,966,965,953,966,955,964,957,962,968,957,968,419,419,410,409,888,959,907,964,907,969,964,969,966,957,419,970,957,970,930,419,409,888,907,964,967,971,930,970,971,970,419,930,971,967,419,888,907,907,967,971,907,971,419,399,398,972,972,973,974,974,975,399,399,972,974,136,135,976,977,978,979,980,981,982,983,984,985,985,986,987,988,989,990,991,992,993,994,995,996,996,997,998,999,1000,1001,1002,1003,1004,1004,1005,1006,1007,1008,1009,1010,1011,1012,1012,1013,1014,1015,1016,1017,1017,897,896,890,889,888,887,886,885,883,882,881,881,404,467,467,466,465,463,462,461,461,460,459,459,458,457,454,453,474,474,476,452,449,448,471,444,443,470,470,473,442,440,439,1018,1018,1019,1020,1021,1022,1023,1023,1024,1025,1025,187,186,186,280,273,273,265,185,182,181,248,175,174,272,170,169,264,264,279,263,263,247,168,167,166,246,164,163,271,159,158,157,152,151,262,262,270,245,149,148,244,146,145,261,261,260,243,143,142,242,140,139,138,136,976,1026,977,979,1027,980,982,1028,983,985,987,988,990,991,991,993,1029,994,996,998,999,1001,1030,1031,1002,1004,1004,1006,1007,1007,1009,1032,1032,1010,1012,1012,1014,1015,1017,896,895,890,888,887,887,885,884,883,881,467,464,463,461,461,459,457,454,474,452,449,471,447,444,470,442,440,1018,1020,1033,1021,1023,1023,1025,186,186,273,185,183,182,248,175,272,173,170,264,263,167,246,165,164,271,162,159,157,156,152,262,245,149,244,147,146,261,243,143,242,141,140,138,137,137,136,1026,1026,977,1027,983,987,1034,1035,988,991,991,1029,1036,994,998,999,999,1030,1031,1032,1012,1015,1017,895,894,891,890,887,883,467,465,464,461,457,455,454,452,450,449,447,444,442,441,441,440,1020,1033,1023,186,186,185,184,183,248,180,176,175,173,170,263,168,165,164,162,160,159,156,152,245,150,150,149,147,146,243,144,143,141,140,1026,1027,1037,983,1034,1038,1039,1035,991,991,1036,1040,1040,994,999,999,1031,1004,1007,1032,1015,1017,894,893,892,891,887,884,883,465,464,457,456,455,452,451,450,447,446,444,441,1020,1033,186,184,184,183,180,176,173,172,170,168,167,167,165,162,160,156,155,153,152,150,150,147,146,146,144,143,143,140,137,137,1026,1037,1041,1039,991,1040,999,1004,1007,1015,1017,1017,893,892,892,887,884,884,465,464,464,456,455,455,451,450,444,1020,1033,1033,184,180,176,172,171,170,167,162,153,150,146,146,143,137,137,1037,980,1038,1041,991,1004,1007,1042,1004,1042,1040,1007,1017,892,892,884,464,464,455,450,444,1033,180,171,170,162,153,146,137,137,980,1028,1038,991,1040,1007,892,1043,1043,1040,1042,1043,1042,1007,892,464,450,445,444,180,171,162,161,153,137,1028,1044,1040,1043,1043,892,1045,1043,1045,1044,1040,1044,1046,1040,1046,1038,892,450,446,446,445,180,176,171,161,153,1028,983,1047,1038,1046,1047,1046,1044,1048,1044,1045,1048,1045,892,1044,1048,1047,1038,1047,1049,1038,1049,983,446,180,1050,446,1050,892,176,161,160,153,983,1049,153,1049,1047,1051,1047,1048,1051,1048,892,1047,1051,153,1050,179,1052,1050,1052,892,179,1050,180,176,160,155,154,153,1051,1051,892,1053,1051,1053,154,1052,178,1054,1052,1054,892,178,1052,179,176,155,154,1054,177,1055,1054,1055,892,177,1054,178,176,154,1053,1053,892,1056,1053,1056,176,177,176,1056,1056,892,1055,1056,1055,177,1057,1058,1059,1059,1060,1061,1061,1062,1063,1063,1057,1059,1059,1061,1063,1064,1065,1066,1066,1067,1068,1068,1069,1070,1070,1064,1066,1066,1068,1070,1071,1072,1073,1073,1074,1075,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1092,1093,1094,1095,1096,1097,1098,1099,1100,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1111,1112,1113,1114,1115,1116,1116,1117,1118,1119,1120,1121,1122,1123,1124,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1138,1139,1140,1141,1142,1143,1144,1145,1146,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1157,1158,1159,1160,1161,1162,1162,1163,1164,1164,1165,1166,1166,1167,1168,1168,1169,1170,1170,1171,1172,1172,1173,1174,1174,1175,1176,1176,1177,1178,1179,1180,1181,1181,1182,1183,1183,1184,1185,1186,1187,1188,1189,1190,1191,1191,1192,1193,1194,1195,1196,1197,1198,1199,1199,1200,1201,1201,1202,1203,1203,1204,1205,1205,1206,1207,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1221,1222,1223,1223,1224,1225,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1236,1237,1238,1238,1239,1240,1240,1241,1242,1243,1244,1245,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1282,1283,1284,1285,1286,1287,1288,1289,1290,1290,1291,1292,1293,1294,1295,1296,1297,1298,1298,1299,1300,1301,1302,1303,1303,1304,1305,1306,1307,1308,1308,1309,1310,1310,1311,1312,1313,1314,1315,1316,1317,1318,1318,1319,1320,1320,1321,1322,1322,1323,1324,1324,1325,1326,1326,1327,1328,1329,1330,1331,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1342,1343,1344,1344,1345,1346,1346,1347,1348,1348,1349,1350,1351,1352,1353,1354,1355,1356,1356,1357,1358,1358,1359,1360,1361,1362,1363,1364,1365,1366,1366,1367,1368,1369,1370,1371,1371,1372,1373,1374,1375,1376,1376,1377,1378,1379,1380,1381,1381,1382,1383,1383,1384,1385,1385,1386,1387,1387,1388,1389,1390,1391,1392,1393,1394,1395,1395,1396,1397,1398,1399,1400,1400,1401,1402,1402,1403,1404,1405,1406,1407,1407,1408,1409,1410,1411,1412,1412,1413,1414,1414,1415,1416,1416,1417,1418,1419,1420,1421,1421,1422,1423,1424,1425,1426,1426,1427,1428,1429,1430,1431,1432,1433,1434,1434,1435,1436,1437,1438,1439,1440,1441,1442,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1456,874,873,952,951,950,949,948,947,946,945,962,941,940,939,938,937,936,936,935,934,934,933,957,931,930,967,967,961,929,928,927,956,956,964,955,925,924,960,922,921,954,954,966,953,919,918,917,917,916,915,1457,1458,1459,1459,1460,1461,1461,1462,1463,1464,1465,1466,1466,1467,1468,1468,1469,1470,1471,1472,1473,1474,1475,1476,1476,1477,1478,1479,1480,1481,1481,1482,1483,1483,1484,1485,1486,1487,1488,1488,1489,1490,1490,1491,1492,1492,1493,1494,1495,1496,1497,1497,1498,1499,1500,1501,1502,1502,1503,1504,1504,1505,1506,1507,1508,1509,1509,1510,1511,1512,1513,1514,1514,1515,1516,1517,1518,1519,1519,1520,1521,1521,1522,1523,1524,1525,1526,1527,1528,1529,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1543,1544,1545,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1556,1557,1558,1559,1560,1561,1561,1562,1563,1564,1565,1566,1566,1567,1568,1569,1570,1571,1571,1572,1573,1573,1574,1575,1575,1576,1577,1578,1579,1580,1581,1582,1583,1583,1584,1585,1585,1586,1587,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1601,1602,1603,1603,1604,1605,1605,1606,1607,1608,1609,1610,1610,1611,1612,1613,1614,1615,1616,1617,1618,1618,1619,1620,1621,1622,1623,1623,1624,1625,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1639,1640,1641,1641,1642,1643,1644,1645,1646,1647,1648,1649,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1689,1690,1691,1691,1692,1693,1694,1695,1696,1697,1698,1699,1699,1700,1701,1701,1702,1703,1703,1704,1705,1706,1707,1708,1708,1709,1710,1710,1711,1712,1713,1714,1715,1716,1717,1718,1718,1719,1720,1721,1722,1723,1723,1724,1725,1725,1726,1727,1728,1729,1730,1731,1732,1733,1733,1734,1735,1736,1737,1071,1071,1073,1075,1078,1080,1081,1081,1083,1738,1084,1086,1739,1087,1089,1740,1741,1090,1092,1092,1094,1095,1103,1105,1742,1742,1106,1108,1109,1111,1113,1114,1116,1118,1122,1124,1126,1127,1129,1743,1743,1130,1132,1133,1135,1136,1136,1138,1140,1141,1143,1744,1745,1144,1146,1149,1151,1746,1152,1154,1155,1155,1157,1159,1162,1164,1166,1168,1170,1172,1174,1176,1178,1178,1179,1181,1181,1183,1185,1186,1188,1747,1189,1191,1193,1193,1194,1196,1197,1199,1201,1201,1203,1205,1205,1207,1209,1212,1213,1215,1748,1216,1218,1219,1221,1223,1223,1225,1227,1228,1230,1749,1231,1233,1750,1750,1234,1236,1236,1238,1240,1243,1245,1247,1751,1248,1250,1752,1251,1253,1254,1256,1258,1259,1261,1262,1265,1267,1753,1268,1270,1754,1271,1273,1274,1277,1279,1755,1280,1282,1284,1285,1287,1288,1290,1292,1293,1293,1295,1756,1296,1298,1300,1300,1301,1303,1306,1308,1310,1313,1315,1757,1758,1316,1318,1318,1320,1322,1322,1324,1326,1329,1331,1333,1334,1336,1337,1340,1342,1344,1344,1346,1348,1348,1350,1759,1351,1353,1760,1356,1358,1360,1361,1363,1364,1369,1371,1373,1374,1376,1378,1379,1381,1383,1383,1385,1387,1390,1392,1393,1393,1395,1397,1761,1398,1400,1400,1402,1404,1407,1409,1410,1412,1414,1416,1416,1418,1419,1419,1421,1423,1424,1426,1428,1432,1434,1436,1437,1439,1440,1442,1444,1762,1445,1447,1763,1448,1450,1451,1454,1456,873,873,952,950,946,962,944,941,939,938,936,934,957,931,967,929,928,956,955,925,960,923,922,954,953,919,917,915,1764,1457,1459,1459,1461,1463,1765,1464,1466,1471,1473,1474,1474,1476,1478,1479,1481,1483,1486,1488,1490,1490,1492,1494,1495,1497,1499,1500,1502,1504,1504,1506,1507,1507,1509,1511,1512,1514,1516,1517,1519,1521,1521,1523,1766,1524,1526,1767,1527,1529,1531,1531,1532,1534,1538,1540,1768,1545,1547,1769,1548,1550,1770,1554,1556,1558,1559,1561,1563,1564,1566,1568,1771,1569,1571,1573,1575,1577,1578,1580,1581,1581,1583,1585,1585,1587,1589,1590,1592,1593,1593,1595,1772,1599,1601,1603,1613,1615,1616,1621,1623,1625,1625,1627,1773,1628,1630,1774,1631,1633,1775,1634,1636,1776,1637,1639,1641,1644,1646,1777,1647,1649,1651,1652,1654,1778,1779,1655,1657,1658,1660,1780,1661,1663,1664,1664,1666,1781,1667,1669,1782,1670,1672,1783,1783,1673,1675,1675,1677,1784,1678,1680,1785,1681,1683,1786,1684,1686,1787,1687,1689,1691,1694,1696,1788,1697,1699,1701,1701,1703,1705,1706,1708,1710,1710,1712,1713,1713,1715,1716,1716,1718,1720,1725,1727,1789,1728,1730,1731,1733,1735,1736,1736,1071,1075,1790,1078,1081,1081,1738,1791,1791,1084,1739,1739,1087,1740,1741,1092,1095,1792,1103,1742,1742,1108,1793,1794,1109,1113,1113,1114,1118,1121,1122,1126,1743,1132,1133,1136,1140,1795,1745,1146,1148,1148,1149,1746,1160,1162,1166,1166,1168,1172,1174,1178,1181,1796,1186,1747,1797,1189,1193,1193,1196,1798,1798,1197,1201,1201,1205,1209,1212,1215,1748,1748,1218,1799,1219,1223,1227,1749,1231,1750,1750,1236,1240,1243,1247,1800,1751,1250,1801,1253,1254,1258,1802,1259,1262,1803,1265,1753,1753,1268,1754,1804,1271,1274,1276,1277,1755,1280,1284,1285,1285,1288,1290,1290,1293,1756,1296,1300,1303,1305,1306,1310,1805,1313,1757,1758,1318,1322,1322,1326,1328,1806,1329,1333,1334,1337,1339,1807,1340,1344,1344,1348,1759,1808,1351,1760,1354,1356,1360,1361,1364,1366,1369,1373,1809,1810,1374,1378,1378,1379,1383,1383,1387,1389,1811,1390,1393,1393,1397,1812,1761,1400,1404,1405,1407,1410,1416,1419,1813,1416,1813,1412,1423,1424,1428,1814,1432,1436,1440,1442,1762,1454,873,950,947,946,944,938,936,957,932,931,929,928,955,926,922,953,920,919,915,1815,1764,1459,1463,1765,1466,1468,1471,1474,1478,1479,1483,1485,1816,1486,1490,1817,1495,1499,1500,1504,1507,1507,1511,1818,1818,1512,1516,1517,1521,1766,1766,1524,1767,1767,1527,1531,1531,1534,1535,1819,1538,1768,1543,1545,1769,1548,1770,1820,1821,1554,1558,1558,1559,1563,1564,1568,1822,1771,1571,1573,1578,1581,1585,1585,1589,1823,1590,1593,1772,1824,1599,1603,1612,1613,1616,1825,1621,1625,1826,1628,1774,1775,1634,1776,1827,1637,1641,1643,1644,1777,1777,1647,1651,1779,1657,1828,1828,1658,1780,1780,1661,1664,1664,1781,1667,1667,1782,1829,1830,1670,1783,1783,1675,1784,1831,1687,1691,1697,1701,1705,1705,1706,1710,1723,1725,1789,1728,1731,1733,1733,1736,1075,1790,1081,1791,1739,1740,1741,1741,1095,1097,1792,1742,1793,1832,1794,1113,1113,1118,1119,1121,1126,1127,1127,1743,1133,1136,1795,1833,1744,1745,1148,1148,1746,1152,1160,1166,1172,1174,1181,1185,1797,1193,1798,1798,1201,1209,1210,1212,1748,1799,1219,1227,1228,1749,1750,1243,1800,1751,1751,1801,1752,1752,1253,1258,1834,1802,1262,1803,1753,1754,1804,1274,1276,1276,1755,1280,1280,1285,1290,1290,1756,1296,1296,1303,1305,1305,1310,1312,1758,1322,1328,1806,1333,1835,1334,1339,1836,1837,1807,1344,1344,1759,1838,1839,1808,1760,1354,1360,1840,1840,1361,1366,1841,1369,1809,1810,1378,1383,1811,1393,1812,1761,1404,1405,1405,1410,1412,1419,1423,1842,1842,1412,1813,1842,1813,1419,1423,1428,1429,1814,1436,1843,1440,1762,1844,1453,1454,950,949,947,944,938,957,932,932,929,928,928,926,925,920,919,1815,1845,1764,1463,1463,1765,1468,1846,1471,1478,1479,1485,1847,1848,1816,1490,1849,1817,1499,1850,1500,1507,1818,1516,1851,1517,1766,1767,1767,1531,1535,1541,1543,1769,1821,1558,1563,1852,1564,1822,1771,1573,1577,1853,1578,1585,1590,1772,1854,1824,1603,1605,1612,1616,1618,1855,1825,1625,1826,1774,1631,1631,1775,1776,1827,1641,1643,1643,1777,1651,1856,1779,1828,1828,1780,1664,1664,1667,1829,1829,1830,1783,1783,1784,1678,1831,1691,1693,1788,1697,1705,1705,1710,1713,1789,1728,1857,1789,1857,1723,1728,1733,1075,1077,1790,1791,1739,1741,1097,1858,1792,1793,1832,1113,1119,1121,1127,1133,1744,1148,1152,1159,1160,1172,1174,1185,1859,1860,1797,1798,1798,1209,1861,1210,1748,1799,1799,1227,1228,1862,1243,1751,1752,1258,1863,1834,1262,1264,1864,1803,1754,1804,1276,1280,1280,1290,1296,1296,1305,1312,1328,1806,1835,1865,1837,1344,1838,1839,1760,1841,1809,1866,1867,1810,1383,1389,1811,1812,1405,1412,1868,1405,1868,1761,1423,1429,1869,1869,1412,1842,1869,1842,1423,1440,1844,1870,1451,1453,950,938,932,928,928,925,923,920,1815,1845,1845,1463,1468,1846,1478,1479,1479,1847,1848,1848,1490,1494,1849,1499,1871,1818,1851,1872,1873,1517,1767,1767,1535,1537,1541,1769,1548,1874,1821,1563,1771,1577,1875,1590,1854,1876,1598,1824,1605,1855,1625,1773,1643,1651,1877,1856,1828,1664,1664,1829,1783,1878,1831,1693,1694,1788,1705,1728,1075,1879,1879,1723,1857,1879,1857,1728,1077,1791,1739,1739,1097,1098,1832,1119,1121,1121,1133,1136,1141,1744,1152,1155,1159,1172,1174,1859,1796,1798,1861,1880,1798,1880,1860,1799,1228,1750,1752,1863,1881,1864,1754,1804,1280,1296,1882,1280,1882,1804,1296,1312,1805,1328,1835,1334,1865,1344,1838,1838,1760,1354,1841,1866,1883,1867,1383,1389,1884,1761,1868,1884,1868,1412,1761,1884,1812,1429,1431,1885,1885,1412,1869,1885,1869,1429,1437,1440,1870,1448,1451,950,938,928,923,1845,1468,1886,1845,1886,920,1846,1479,1848,1848,1494,1887,1849,1871,1850,1507,1818,1872,1767,1537,1888,1767,1888,1873,1541,1548,1820,1889,1874,1563,1771,1875,1890,1598,1605,1607,1855,1773,1826,1643,1877,1652,1664,1783,1891,1664,1891,1856,1878,1693,1694,1705,1713,1892,1705,1892,1694,1893,1723,1879,1879,1075,1894,1879,1894,1893,1723,1893,1895,1723,1895,1721,1739,1098,1896,1739,1896,1077,1793,1832,1121,1141,1152,1155,1155,1172,1174,1174,1796,1747,1861,1897,1898,1898,1860,1880,1898,1880,1861,1750,1240,1899,1750,1899,1799,1900,1804,1882,1900,1882,1296,1804,1900,1864,1758,1328,1334,1836,1865,1838,1368,1841,1883,1883,1867,1389,1901,1412,1885,1885,1431,1902,1885,1902,1901,1412,1901,1903,1903,1812,1884,1903,1884,1412,1843,1437,1870,1448,950,949,941,938,923,1468,1470,1904,1904,920,1886,1904,1886,1468,1470,1846,1848,1507,1872,1905,1906,1873,1888,1906,1888,1537,1873,1906,1907,1768,1541,1820,1889,1563,1908,1598,1607,1909,1855,1826,1631,1643,1652,1778,1910,1856,1891,1910,1891,1783,1856,1910,1778,1911,1694,1892,1911,1892,1713,1694,1911,1878,1098,1100,1912,1912,1077,1896,1912,1896,1098,1793,1121,1136,1913,1141,1155,1155,1174,1747,1897,1210,1914,1914,1860,1898,1914,1898,1897,1915,1799,1899,1915,1899,1240,1799,1915,1210,1296,1805,1916,1296,1916,1917,1900,1917,1918,1900,1918,1864,1917,1900,1296,1758,1334,1836,1836,1838,1354,1366,1368,1883,1389,1812,1919,1389,1919,1883,1431,1814,1920,1920,1921,1922,1920,1922,1431,1901,1921,1923,1923,1812,1903,1923,1903,1901,1921,1901,1902,1902,1431,1922,1902,1922,1921,1843,1870,1924,1448,949,944,942,941,923,1470,1848,1925,1925,920,1904,1925,1904,1470,1850,1507,1905,1537,1819,1926,1926,1907,1906,1926,1906,1537,1768,1820,1551,1889,1908,1852,1596,1598,1909,1620,1855,1631,1827,1643,1778,1783,1678,1927,1927,1778,1910,1927,1910,1783,1928,1878,1911,1928,1911,1713,1878,1928,1787,1100,1102,1929,1929,1077,1912,1929,1912,1100,1858,1793,1136,1155,1747,1930,1155,1930,1913,1931,1210,1915,1915,1240,1932,1915,1932,1931,1210,1931,1933,1933,1860,1914,1933,1914,1210,1757,1758,1836,1934,1883,1919,1919,1812,1935,1919,1935,1934,1883,1934,1936,1883,1936,1366,1814,1843,1924,1763,1448,944,942,923,922,1848,1887,1937,1937,920,1925,1937,1925,1848,1849,1850,1905,1819,1768,1938,1938,1907,1926,1938,1926,1819,1852,1822,1939,1852,1939,1889,1596,1909,1608,1620,1631,1940,1620,1940,1618,1941,1778,1927,1941,1927,1678,1778,1941,1827,1942,1787,1928,1942,1928,1713,1787,1942,1684,1102,1858,1136,1943,1913,1930,1943,1930,1747,1913,1943,1833,1240,1242,1944,1944,1945,1946,1944,1946,1240,1931,1945,1947,1947,1860,1933,1947,1933,1931,1945,1931,1932,1932,1240,1946,1932,1946,1945,1805,1757,1836,1948,1366,1936,1948,1936,1934,1949,1934,1935,1949,1935,1812,1934,1949,1948,1366,1948,1950,1366,1950,1840,1814,1924,1445,1763,944,943,1887,1849,1951,1951,920,1937,1951,1937,1887,1849,1905,1952,1768,1551,1953,1768,1953,1954,1938,1954,1955,1938,1955,1907,1954,1938,1768,1822,1956,1957,1957,1889,1939,1957,1939,1822,1596,1608,1610,1958,1618,1940,1958,1940,1631,1618,1958,1612,1678,1785,1959,1959,1827,1941,1959,1941,1678,1960,1684,1942,1960,1942,1713,1684,1960,1786,1136,1833,1961,1136,1961,1102,1943,1860,1962,1943,1962,1833,1860,1943,1747,1805,1836,1963,1805,1963,1964,1917,1964,1965,1965,1864,1918,1965,1918,1917,1964,1917,1916,1964,1916,1805,1966,1812,1923,1923,1921,1967,1923,1967,1966,1968,1921,1920,1920,1814,1969,1920,1969,1968,1921,1968,1970,1970,1966,1967,1970,1967,1921,1971,1966,1972,1971,1972,1973,1966,1971,1812,1948,1973,1974,1974,1840,1950,1974,1950,1948,1971,1948,1949,1971,1949,1812,1948,1971,1973,1763,943,1975,1763,1975,1445,1849,1952,1976,1849,1976,1977,1951,1977,1978,1951,1978,920,1977,1951,1849,1955,1979,1980,1955,1980,1907,1979,1955,1954,1981,1954,1953,1981,1953,1551,1954,1981,1979,1982,1907,1980,1982,1980,1979,1907,1982,1952,1631,1776,1983,1983,1612,1958,1983,1958,1631,1785,1984,1985,1985,1827,1959,1985,1959,1785,1713,1716,1986,1713,1986,1987,1960,1987,1988,1960,1988,1786,1987,1960,1713,1989,1833,1962,1989,1962,1860,1833,1989,1990,1961,1990,1991,1961,1991,1102,1990,1961,1833,1836,1354,1992,1836,1992,1993,1994,1993,1995,1994,1995,1996,1993,1994,1836,1964,1996,1997,1964,1997,1998,1965,1998,1999,1965,1999,1864,1998,1965,1964,1996,1964,1963,1963,1836,1994,1963,1994,1996,1973,2000,2001,1973,2001,2002,1974,2002,2003,1974,2003,1840,2002,1974,1973,2000,1973,1972,2000,1972,1966,1970,2004,2005,1970,2005,1966,2004,1970,1968,2006,1968,1969,2006,1969,1814,1968,2006,2004,2007,1966,2005,2007,2005,2004,1966,2007,2000,2008,1840,2003,2008,2003,2002,2009,2002,2001,2009,2001,2000,2002,2009,2008,1840,2008,2010,1840,2010,1354,1975,942,2011,1975,2011,1445,942,1975,943,1551,920,1978,1978,1977,2012,1978,2012,1551,1979,1977,1976,1976,1952,1982,1976,1982,1979,1977,1979,1981,1981,1551,2012,1981,2012,1977,2013,1612,1983,2013,1983,1776,1612,2013,1610,1984,2014,2015,2015,1827,1985,2015,1985,1984,2016,1786,1988,2016,1988,1987,2017,1987,1986,2017,1986,1716,1987,2017,2016,1786,2016,2018,1786,2018,1681,2019,1102,1991,2019,1991,1990,2020,1990,1989,1989,1860,2021,1989,2021,2020,1990,2020,2022,1990,2022,2019,1102,2019,2023,1102,2023,2024,1929,2024,2025,1929,2025,1077,2024,1929,1102,2010,2026,2027,2010,2027,1354,2026,2010,2008,2028,2008,2009,2009,2000,2029,2009,2029,2028,2008,2028,2030,2008,2030,2026,2031,2000,2007,2007,2004,2032,2007,2032,2031,2033,2004,2006,2006,1814,2034,2006,2034,2033,2004,2033,2035,2035,2031,2032,2035,2032,2004,2000,2031,2036,2000,2036,2037,2028,2037,2038,2038,2026,2030,2038,2030,2028,2037,2028,2029,2037,2029,2000,2039,1354,2027,2039,2027,2026,1354,2039,2040,2041,2040,2042,2041,2042,2043,2040,2041,1354,1996,2043,2044,1996,2044,2045,1998,2045,2046,2046,1864,1999,2046,1999,1998,2045,1998,1997,2045,1997,1996,2043,1996,1995,2043,1995,1993,2041,1993,1992,2041,1992,1354,1993,2041,2043,942,922,2047,2047,1445,2011,2047,2011,942,922,920,1551,2048,1610,2013,2013,1776,2049,2013,2049,2048,1610,2048,2050,1610,2050,1596,2014,1681,2051,2014,2051,2052,2015,2052,2053,2015,2053,1827,2052,2015,2014,1716,1720,2054,1716,2054,2055,2016,2055,2056,2056,1681,2018,2056,2018,2016,2055,2016,2017,2055,2017,1716,2024,1242,2057,2057,1077,2025,2057,2025,2024,1242,2024,2023,1242,2023,2019,1945,2019,2022,1945,2022,2020,1947,2020,2021,1947,2021,1860,2020,1947,1945,2019,1945,1944,2019,1944,1242,1814,1445,2058,2058,2059,2060,2058,2060,1814,2061,2059,2062,2062,2063,2064,2062,2064,2061,2059,2061,2065,2065,1814,2060,2065,2060,2059,2066,2063,2067,2067,2068,2069,2067,2069,2066,2070,2068,2071,2071,2072,2073,2071,2073,2070,2068,2070,2074,2074,2066,2069,2074,2069,2068,2063,2066,2075,2075,2076,2077,2075,2077,2063,2061,2076,2078,2078,1814,2065,2078,2065,2061,2076,2061,2064,2064,2063,2077,2064,2077,2076,2026,2072,2079,2079,2080,2081,2079,2081,2026,2082,2080,2083,2083,2084,2085,2083,2085,2082,2080,2082,2086,2086,2026,2081,2086,2081,2080,2043,2084,2087,2087,2088,2089,2087,2089,2043,2045,2088,2090,2090,1864,2046,2090,2046,2045,2088,2045,2044,2044,2043,2089,2044,2089,2088,2084,2043,2042,2042,2040,2091,2042,2091,2084,2082,2040,2039,2039,2026,2086,2039,2086,2082,2040,2082,2085,2085,2084,2091,2085,2091,2040,2072,2026,2038,2038,2037,2092,2038,2092,2072,2093,2037,2036,2036,2031,2094,2036,2094,2093,2037,2093,2095,2095,2072,2092,2095,2092,2037,2066,2031,2035,2035,2033,2096,2035,2096,2066,2076,2033,2034,2034,1814,2078,2034,2078,2076,2033,2076,2075,2075,2066,2096,2075,2096,2033,2031,2066,2074,2074,2070,2097,2074,2097,2031,2093,2070,2073,2073,2072,2095,2073,2095,2093,2070,2093,2094,2094,2031,2097,2094,2097,2070,922,1551,2098,2098,1445,2047,2098,2047,922,2099,1596,2050,2099,2050,2048,2100,2048,2049,2100,2049,1776,2048,2100,2099,1596,2099,2101,1596,2101,1876,2102,1681,2056,2056,2055,2103,2056,2103,2102,2104,2055,2054,2054,1720,2105,2054,2105,2104,2055,2104,2106,2106,2102,2103,2106,2103,2055,1681,2102,2107,1681,2107,2108,2052,2108,2109,2109,1827,2053,2109,2053,2052,2108,2052,2051,2108,2051,1681,2110,1077,2057,2110,2057,1242,1077,2110,1075,2098,1553,2111,2098,2111,1445,1553,2098,1551,1776,1827,2112,2112,2113,2114,2112,2114,1776,2099,2113,2115,2115,1876,2101,2115,2101,2099,2113,2099,2100,2100,1776,2114,2100,2114,2113,1720,1721,2116,2116,2117,2118,2116,2118,1720,2119,2117,2120,2120,2121,2122,2120,2122,2119,2117,2119,2123,2123,1720,2118,2123,2118,2117,2102,2121,2124,2124,2125,2126,2124,2126,2102,2108,2125,2127,2127,1827,2109,2127,2109,2108,2125,2108,2107,2107,2102,2126,2107,2126,2125,2121,2102,2106,2106,2104,2128,2106,2128,2121,2119,2104,2105,2105,1720,2123,2105,2123,2119,2104,2119,2122,2122,2121,2128,2122,2128,2104,2110,1862,2129,2110,2129,1075,1862,2110,1242,2111,1889,2130,2111,2130,1445,1889,2111,1553,2131,2125,2132,2131,2132,2133,2125,2131,2134,2127,2134,2135,2127,2135,1827,2134,2127,2125,2124,2133,2132,2124,2132,2125,2124,2121,2136,2124,2136,2133,2120,2137,2138,2120,2138,2121,2137,2120,2117,2139,2117,2116,2139,2116,1721,2117,2139,2137,2140,2121,2138,2140,2138,2137,2140,2133,2136,2140,2136,2121,2141,2134,2142,2141,2142,2143,2141,1827,2135,2141,2135,2134,2144,2134,2131,2144,2131,2133,2144,2143,2142,2144,2142,2134,2145,2113,2146,2145,2146,2143,2145,1876,2115,2145,2115,2113,2141,2113,2112,2141,2112,1827,2141,2143,2146,2141,2146,2113,1751,1075,2129,1751,2129,1862,1956,1445,2130,2130,1889,1957,2130,1957,1956,2147,2143,2148,2147,2148,2149,2143,2147,2150,2145,2150,2151,2145,2151,1876,2150,2145,2143,2144,2149,2148,2144,2148,2143,2149,2144,2133,2140,2152,2153,2140,2153,2133,2152,2140,2137,2154,2137,2139,2154,2139,1721,2137,2154,2152,2155,2133,2153,2155,2153,2152,2133,2155,2149,2151,2156,2157,2151,2157,1876,2156,2151,2150,2158,2150,2147,2158,2147,2149,2150,2158,2156,2159,1876,2157,2159,2157,2156,1876,2159,1590,1075,1751,1752,1445,1956,2160,2161,2156,2162,2161,2162,2163,2156,2161,2164,2159,2164,2165,2159,2165,1590,2164,2159,2156,2158,2163,2162,2158,2162,2156,2163,2158,2149,2155,2166,2167,2155,2167,2149,2166,2155,2152,2168,2152,2154,2168,2154,1721,2152,2168,2166,2169,2149,2167,2169,2167,2166,2149,2169,2163,2165,2170,2171,2165,2171,1590,2170,2165,2164,2172,2164,2161,2172,2161,2163,2164,2172,2170,2173,1590,2171,2173,2171,2170,1590,2173,1823,1893,1752,2174,2174,1721,1895,2174,1895,1893,1752,1893,1894,1752,1894,1075,1445,2160,1771,2175,2170,2176,2175,2176,2177,2170,2175,2178,2173,2178,2179,2173,2179,1823,2178,2173,2170,2172,2177,2176,2172,2176,2170,2177,2172,2163,2169,2180,2181,2169,2181,2163,2180,2169,2166,2182,2166,2168,2182,2168,1721,2166,2182,2180,2183,2163,2181,2183,2181,2180,2163,2183,2177,2179,2184,2185,2179,2185,1823,2184,2179,2178,2186,2178,2175,2175,2177,2187,2175,2187,2186,2178,2186,2188,2178,2188,2184,2189,1823,2185,2185,2184,2190,2185,2190,2189,1823,2189,2191,1823,2191,1585,2174,1881,2192,2174,2192,1721,1881,2174,1752,1771,1890,2193,1771,2193,1445,2194,2184,2195,2194,2195,2196,2184,2194,2197,2189,2197,2198,2198,1585,2191,2198,2191,2189,2197,2189,2190,2197,2190,2184,2186,2196,2195,2195,2184,2188,2195,2188,2186,2196,2186,2187,2196,2187,2177,2183,2199,2200,2183,2200,2177,2199,2183,2180,2201,2180,2182,2182,1721,2202,2182,2202,2201,2180,2201,2203,2180,2203,2199,2204,2177,2200,2200,2199,2205,2200,2205,2204,2177,2204,2206,2177,2206,2196,2198,2207,2208,2198,2208,1585,2207,2198,2197,2209,2197,2194,2194,2196,2210,2194,2210,2209,2197,2209,2211,2197,2211,2207,2212,1585,2208,2208,2207,2213,2208,2213,2212,1585,2212,2214,1585,2214,1853,2192,1834,2215,2192,2215,1721,1834,2192,1881,1890,1853,2216,2216,1445,2193,2216,2193,1890,1264,1721,2215,1264,2215,1834,2217,2218,2219,2217,2219,2072,2218,2217,2220,2221,2220,2222,2222,1853,2223,2222,2223,2221,2220,2221,2224,2220,2224,2218,2225,2072,2219,2219,2218,2226,2219,2226,2225,2072,2225,2227,2072,2227,2228,2229,2084,2230,2230,2228,2231,2230,2231,2229,2084,2229,2232,2084,2232,2233,2088,2233,2234,2088,2234,2235,2090,2235,2236,2090,2236,1864,2235,2090,2088,2233,2088,2087,2233,2087,2084,2080,2228,2230,2230,2084,2083,2230,2083,2080,2228,2080,2079,2228,2079,2072,2222,2063,2237,2222,2237,1853,2063,2222,2220,2068,2220,2217,2217,2072,2071,2217,2071,2068,2220,2068,2067,2220,2067,2063,2059,1853,2237,2237,2063,2062,2237,2062,2059,2216,2059,2058,2216,2058,1445,2059,2216,1853,1721,1264,2238,1721,2238,2239,2240,2239,2241,2240,2241,2242,2239,2240,1721,2243,2242,2244,2243,2244,2245,2246,2245,2247,2246,2247,2248,2245,2246,2243,2242,2243,2249,2249,1721,2240,2249,2240,2242,2196,2248,2250,2196,2250,2251,2252,2251,2253,2252,2253,2254,2251,2252,2196,2207,2254,2255,2207,2255,2256,2212,2256,2257,2257,1853,2214,2257,2214,2212,2256,2212,2213,2256,2213,2207,2254,2207,2211,2254,2211,2209,2252,2209,2210,2252,2210,2196,2209,2252,2254,2248,2196,2206,2248,2206,2204,2258,2204,2205,2258,2205,2199,2204,2258,2248,2243,2199,2203,2243,2203,2201,2249,2201,2202,2249,2202,1721,2201,2249,2243,2199,2243,2246,2246,2248,2258,2246,2258,2199,2259,2260,2261,2259,2261,2233,2260,2259,2262,2263,2262,2264,2263,2264,2248,2262,2263,2260,2265,2233,2261,2265,2261,2260,2233,2265,2266,2267,2235,2268,2267,2268,2266,2235,2267,2269,2236,2269,2270,2236,2270,1864,2269,2236,2235,2234,2266,2268,2234,2268,2235,2266,2234,2233,2264,2229,2271,2264,2271,2248,2229,2264,2262,2232,2262,2259,2232,2259,2233,2262,2232,2229,2231,2248,2271,2231,2271,2229,2248,2231,2228,2272,2225,2273,2272,2273,2254,2225,2272,2274,2227,2274,2275,2227,2275,2228,2274,2227,2225,2226,2254,2273,2226,2273,2225,2254,2226,2218,2224,2256,2276,2224,2276,2218,2256,2224,2221,2257,2221,2223,2257,2223,1853,2221,2257,2256,2255,2218,2276,2255,2276,2256,2218,2255,2254,2275,2251,2277,2275,2277,2228,2251,2275,2274,2253,2274,2272,2253,2272,2254,2274,2253,2251,2250,2228,2277,2250,2277,2251,2228,2250,2248,2278,2269,2279,2278,2279,2242,2269,2278,2280,2270,2280,2281,2270,2281,1864,2280,2270,2269,2267,2242,2279,2267,2279,2269,2242,2267,2266,2265,2245,2282,2265,2282,2266,2245,2265,2260,2247,2260,2263,2247,2263,2248,2260,2247,2245,2244,2266,2282,2244,2282,2245,2266,2244,2242,2281,2239,2283,2281,2283,1864,2239,2281,2280,2241,2280,2278,2241,2278,2242,2280,2241,2239,2238,1864,2283,2238,2283,2239,1864,2238,1264,2284,2285,2286,2286,2287,2288,2289,2290,2291,2291,2292,2284,2284,2286,2288,2288,2289,2291,2291,2284,2288,2293,2294,2295,2295,2296,2297,2297,2298,2299,2299,2300,2293,2293,2295,2297,2297,2299,2293,2301,2302,2303,2303,2304,2305,2305,2306,2301,2301,2303,2305,2307,2308,2309,2309,2310,2311,2311,2312,2313,2313,2314,2307,2307,2309,2311,2311,2313,2307,2315,2316,2317,2317,2318,2319,2319,2320,2321,2321,2322,2323,2323,2324,2325,2325,2326,2327,2327,2315,2317,2319,2321,2323,2323,2325,2327,2327,2317,2319,2319,2323,2327,2328,2329,2330,2330,2331,2332,2332,2333,2334,2334,2335,2328,2328,2330,2332,2332,2334,2328,2336,2337,2338,2338,2339,2340,2340,2341,2342,2342,2343,2344,2344,2345,2336,2336,2338,2340,2340,2342,2344,2344,2336,2340,2346,2347,2348,2348,2349,2350,2350,2351,2352,2352,2353,2354,2354,2346,2348,2348,2350,2352,2352,2354,2348,2355,2356,2357,2357,2358,2359,2359,2360,2361,2361,2355,2357,2357,2359,2361,2362,2363,2364,2364,2365,2366,2366,2367,2368,2368,2362,2364,2364,2366,2368,2369,2370,2371,2371,2372,2373,2373,2374,2375,2375,2369,2371,2371,2373,2375,2376,2377,2378,2378,2379,2380,2380,2381,2382,2382,2376,2378,2378,2380,2382,2383,2384,2385,2385,2386,2387,2387,2388,2389,2389,2390,2391,2391,2383,2385,2385,2387,2389,2389,2391,2385,2392,2393,2394,2394,2395,2396,2396,2392,2394,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2397,2397,2399,2400,2400,2402,2411,2403,2405,2406,2406,2408,2409,2409,2397,2400,2411,2403,2406,2409,2400,2411,2411,2406,2409,2412,2413,2414,2414,2415,2416,2416,2417,2418,2419,2420,2421,2421,2422,2423,2423,2424,2425,2412,2414,2416,2416,2418,2419,2419,2421,2423,2423,2425,2412,2412,2416,2419,2419,2423,2412,2426,2427,2428,2428,2429,2430,2431,2432,2433,2433,2434,2435,2435,2436,2437,2437,2438,2439,2439,2440,2441,2441,2426,2428,2428,2430,2431,2431,2433,2435,2435,2437,2439,2439,2441,2428,2428,2431,2435,2435,2439,2428,2442,2443,2444,2444,2445,2446,2446,2447,2448,2448,2449,2442,2442,2444,2446,2446,2448,2442,2450,2451,2452,2452,2453,2454,2454,2455,2450,2450,2452,2454,2456,2457,2458,2458,2459,2460,2460,2461,2462,2462,2463,2456,2456,2458,2460,2460,2462,2456,2464,2465,2466,2466,2467,2468,2468,2469,2464,2464,2466,2468,2470,2471,2472,2472,2473,2474,2474,2475,2476,2476,2470,2472,2472,2474,2476,2477,2478,2479,2479,2480,2481,2481,2482,2477,2477,2479,2481,2483,2484,2485,2485,2486,2487,2487,2488,2489,2489,2483,2485,2485,2487,2489,2490,2491,2492,2492,2493,2494,2495,2496,2497,2497,2498,2499,2500,2501,2490,2490,2492,2494,2495,2497,2499,2490,2494,2502,2495,2499,2500,2500,2490,2502,2502,2495,2500,2503,2504,2505,2505,2506,2507,2507,2508,2509,2509,2510,2511,2511,2512,2513,2513,2503,2505,2505,2507,2509,2509,2511,2513,2513,2505,2509,2514,2515,2516,2516,2517,2518,2518,2514,2516,2519,2520,2521,2521,2522,2523,2523,2524,2525,2525,2519,2521,2521,2523,2525,2526,2527,2528,2528,2529,2530,2530,2531,2532,2532,2533,2534,2534,2535,2536,2536,2537,2538,2539,2540,2541,2542,2543,2544,2544,2545,2546,2547,2548,2549,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2560,2561,2562,2562,2563,2564,2564,2565,2566,2567,2568,2569,2526,2528,2530,2530,2532,2534,2534,2536,2538,2539,2541,2570,2542,2544,2546,2571,2547,2549,2549,2551,2552,2555,2557,2572,2558,2560,2562,2562,2564,2566,2567,2569,2526,2526,2530,2534,2534,2538,2573,2539,2570,2574,2575,2542,2546,2571,2549,2552,2555,2572,2576,2576,2558,2562,2567,2526,2534,2534,2573,2577,2578,2539,2574,2575,2546,2579,2580,2571,2552,2576,2562,2566,2566,2567,2534,2578,2574,2581,2581,2575,2579,2579,2580,2552,2555,2576,2566,2566,2534,2577,2582,2578,2581,2581,2579,2552,2554,2555,2566,2566,2577,2583,2581,2552,2554,2554,2566,2583,2582,2581,2554,2554,2583,2584,2585,2582,2554,2554,2584,2585,2586,2587,2588,2588,2589,2590,2590,2591,2592,2593,2594,2595,2596,2597,2598,2598,2599,2600,2600,2601,2602,2602,2603,2604,2605,2606,2607,2607,2608,2609,2610,2611,2612,2612,2613,2614,2615,2616,2617,2617,2618,2619,2619,2620,2621,2621,2622,2623,2586,2588,2590,2590,2592,2593,2593,2595,2596,2596,2598,2600,2600,2602,2604,2605,2607,2609,2610,2612,2614,2617,2619,2621,2586,2590,2593,2596,2600,2604,2604,2605,2609,2624,2610,2614,2615,2617,2621,2623,2586,2593,2593,2596,2604,2604,2609,2624,2624,2614,2615,2615,2621,2623,2623,2593,2604,2604,2624,2615,2615,2623,2604,2625,2626,2627,2627,2628,2629,2630,2631,2632,2633,2634,2635,2635,2636,2637,2638,2639,2640,2640,2641,2642,2642,2643,2644,2644,2645,2646,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2660,2661,2662,2662,2663,2664,2664,2665,2666,2666,2667,2668,2669,2670,2671,2671,2672,2673,2673,2674,2675,2675,2676,2677,2677,2678,2679,2680,2681,2682,2682,2683,2684,2684,2685,2686,2687,2688,2689,2689,2690,2691,2691,2692,2693,2693,2694,2695,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2706,2707,2708,2708,2709,2710,2711,2712,2713,2713,2714,2715,2715,2716,2717,2717,2718,2719,2720,2721,2722,2722,2723,2724,2724,2725,2726,2727,2625,2627,2627,2629,2728,2633,2635,2637,2638,2640,2642,2642,2644,2646,2649,2651,2652,2652,2654,2729,2730,2655,2657,2658,2660,2662,2662,2664,2666,2666,2668,2669,2669,2671,2673,2673,2675,2677,2680,2682,2684,2687,2689,2691,2691,2693,2695,2695,2697,2698,2698,2700,2731,2701,2703,2704,2704,2706,2708,2708,2710,2732,2711,2713,2715,2715,2717,2719,2720,2722,2724,2724,2726,2733,2727,2627,2728,2734,2633,2637,2735,2638,2642,2642,2646,2648,2649,2652,2729,2657,2658,2662,2662,2666,2669,2673,2677,2679,2680,2684,2686,2687,2691,2695,2698,2731,2736,2701,2704,2708,2708,2732,2737,2738,2711,2715,2715,2719,2739,2739,2720,2724,2727,2728,2630,2734,2637,2740,2735,2642,2648,2730,2657,2662,2669,2673,2679,2741,2680,2686,2686,2687,2695,2701,2708,2737,2738,2715,2739,2739,2724,2733,2727,2630,2632,2740,2735,2648,2730,2662,2669,2669,2679,2742,2741,2686,2695,2736,2701,2737,2743,2738,2739,2739,2733,2727,2727,2632,2734,2734,2740,2648,2744,2730,2669,2669,2742,2745,2746,2741,2695,2698,2736,2737,2743,2739,2727,2727,2734,2648,2729,2744,2669,2669,2745,2747,2746,2695,2698,2737,2743,2727,2727,2648,2649,2729,2669,2747,2746,2698,2737,2737,2727,2649,2729,2747,2748,2748,2746,2737,2737,2649,2729,2729,2748,2737,2749,2750,2751,2751,2752,2753,2753,2754,2755,2756,2757,2758,2758,2759,2760,2761,2762,2763,2764,2765,2766,2766,2767,2768,2769,2770,2771,2772,2773,2774,2774,2775,2776,2777,2778,2779,2779,2780,2781,2781,2782,2783,2784,2785,2786,2786,2787,2788,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2816,2817,2818,2819,2820,2821,2821,2822,2823,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2834,2835,2836,2837,2838,2839,2840,2841,2842,2842,2843,2844,2845,2846,2847,2847,2848,2849,2850,2851,2852,2853,2854,2855,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2866,2867,2868,2868,2869,2870,2871,2872,2873,2873,2874,2875,2876,2877,2878,2878,2879,2880,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2891,2892,2893,2894,2895,2896,2897,2898,2899,2899,2900,2901,2902,2903,2904,2904,2905,2906,2907,2908,2909,2910,2911,2912,2912,2913,2914,2914,2915,2916,2917,2918,2919,2919,2920,2921,2921,2922,2923,2924,2925,2926,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2937,2938,2939,2939,2940,2941,2942,2943,2944,2945,2946,2947,2947,2948,2949,2950,2951,2952,2952,2953,2954,2954,2955,2956,2956,2957,2958,2959,2960,2961,2962,2963,2964,2964,2965,2966,2967,2968,2969,2970,2971,2972,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2995,2996,2997,2998,2999,3000,3000,3001,3002,3003,3004,3005,3005,3006,3007,3007,3008,3009,3010,3011,3012,3013,3014,3015,3015,3016,3017,3018,3019,3020,3020,3021,3022,3022,3023,3024,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3044,3045,3046,3046,3047,3048,3049,3050,3051,3051,3052,3053,3053,3054,3055,3055,3056,3057,3057,3058,3059,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3073,3074,3075,3075,3076,3077,3077,3078,3079,3080,3081,3082,3083,3084,3085,3085,3086,3087,3088,3089,3090,3090,3091,3092,3093,3094,3095,3095,3096,3097,3098,3099,3100,3101,3102,3103,3103,3104,3105,3106,3107,3108,3109,3110,3111,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3125,3126,3127,3128,3129,3130,3131,3132,3133,3133,3134,3135,3136,3137,3138,3138,3139,3140,3140,3141,3142,3142,3143,3144,3144,3145,3146,3147,3148,3149,3149,3150,3151,3151,3152,3153,3153,3154,3155,3156,3157,3158,3159,3160,3161,3161,3162,3163,3163,3164,3165,3165,3166,3167,3167,3168,3169,3170,3171,3172,3172,3173,3174,3175,3176,3177,3177,3178,3179,3179,3180,3181,3182,3183,3184,3185,3186,3187,3187,3188,3189,3189,3190,3191,3192,3193,3194,3194,3195,3196,3197,3198,3199,3200,3201,3202,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3213,3214,3215,3216,3217,3218,3218,3219,3220,3221,3222,3223,3223,3224,3225,3225,3226,3227,3228,3229,3230,3230,3231,3232,3233,3234,3235,3235,3236,3237,3237,3238,3239,3239,3240,3241,3242,3243,3244,3244,3245,3246,3246,3247,3248,3248,3249,3250,3251,3252,3253,3254,3255,3256,3256,3257,3258,3258,3259,3260,3261,3262,3263,3263,3264,3265,3266,3267,3268,3268,3269,3270,3271,3272,3273,3273,3274,3275,3276,3277,3278,3278,3279,3280,3280,3281,3282,3283,3284,3285,3285,3286,3287,3288,3289,3290,3290,3291,3292,3293,3294,3295,3295,3296,3297,3297,3298,3299,3300,3301,3302,3302,3303,3304,3304,3305,3306,3306,3307,3308,3308,3309,3310,3310,3311,3312,3313,3314,3315,3315,3316,3317,3317,3318,3319,3319,3320,3321,3321,3322,3323,3324,3325,3326,3326,3327,3328,3328,3329,3330,3330,3331,3332,3332,3333,3334,3335,3336,3337,3337,3338,3339,3340,3341,3342,3342,3343,3344,3344,3345,3346,3346,3347,3348,3349,3350,3351,3351,3352,3353,3353,3354,3355,3355,3356,3357,3357,3358,3359,3359,3360,3361,3361,3362,3363,3364,3365,3366,3366,3367,3368,3369,3370,3371,3371,3372,3373,3374,3375,3376,3376,3377,3378,3378,3379,3380,3381,3382,3383,3384,3385,3386,3386,3387,3388,3388,3389,3390,3391,3392,3393,3393,3394,3395,3395,3396,3397,3398,3399,3400,3400,3401,3402,3402,3403,3404,3405,3406,3407,3407,3408,3409,3409,3410,3411,3412,3413,3414,3414,3415,3416,3417,3418,3419,3419,3420,3421,3421,3422,3423,3423,3424,3425,3425,3426,3427,3427,3428,3429,3430,3431,3432,3433,3434,3435,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3446,3447,3448,3448,3449,3450,3451,3452,3453,3454,3455,3456,3456,3457,3458,3458,3459,3460,3460,3461,3462,3462,3463,3464,3465,3466,3467,3468,3469,3470,3470,3471,3472,3473,3474,3475,3475,3476,3477,3478,3479,3480,3480,3481,3482,3483,3484,3485,3486,3487,3488,3488,3489,3490,3490,3491,3492,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3523,3524,3525,3525,3526,3527,3527,3528,3529,3529,3530,3531,3532,3533,3534,3534,3535,3536,3537,3538,3539,3540,3541,3542,3542,3543,3544,3544,3545,3546,3546,3547,3548,3549,3550,3551,3551,3552,3553,3553,3554,3555,3555,3556,3557,3558,3559,3560,3560,3561,3562,3562,3563,3564,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3575,3576,3577,3578,3579,3580,3580,3581,3582,3583,3584,3585,3585,3586,3587,3587,3588,3589,3590,3591,3592,3593,3594,3595,3595,3596,3597,3597,3598,3599,3599,3600,3601,3602,3603,3604,3604,3605,3606,3606,3607,3608,3608,3609,3610,3610,3611,3612,3613,3614,3615,3615,3616,3617,3617,3618,3619,3620,3621,3622,3623,3624,3625,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3639,3640,3641,3642,3643,3644,3645,3646,3647,3647,3648,3649,3649,3650,3651,3652,3653,3654,3655,3656,3657,3657,3658,3659,3659,3660,3661,3662,3663,3664,3665,3666,3667,3667,3668,3669,3670,3671,3672,3672,3673,3674,3674,3675,3676,3677,3678,3679,3680,3681,3682,3682,3683,3684,3684,3685,3686,3687,3688,3689,3690,3691,3692,3692,3693,3694,3695,3696,3697,3697,3698,3699,3700,3701,3702,3702,3703,3704,3704,3705,3706,3706,3707,3708,3709,3710,3711,3711,3712,3713,3713,3714,3715,3716,3717,3718,3719,3720,3721,3721,3722,3723,3723,3724,3725,3726,3727,3728,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3739,3740,3741,3742,3743,3744,3744,3745,3746,3746,3747,3748,3749,3750,3751,3752,3753,3754,3754,3755,3756,3757,3758,3759,3759,3760,3761,3762,3763,3764,3764,3765,3766,3766,3767,3768,3768,3769,3770,3771,3772,3773,3774,3775,3776,3776,3777,3778,3779,3780,3781,3781,3782,3783,3783,3784,3785,3785,3786,3787,3787,3788,3789,3790,3791,3792,3792,3793,3794,3795,3796,3797,3797,3798,3799,3800,3801,3802,3803,3804,3805,3805,3806,3807,3808,3809,3810,3810,3811,3812,3812,3813,3814,3814,3815,3816,3816,3817,3818,3818,3819,3820,3820,3821,3822,3822,3823,3824,3824,3825,3826,3827,3828,3829,3829,3830,3831,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3845,3846,3847,3847,3848,3849,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3860,3861,3862,3863,3864,3865,3865,3866,3867,3867,3868,3869,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3892,3893,3894,3895,3896,3897,3897,3898,3899,3900,3901,3902,3902,3903,3904,3904,3905,3906,3907,3908,3909,3909,3910,3911,3912,3913,3914,3914,3915,3916,3916,3917,3918,3919,3920,3921,3921,3922,3923,3923,3924,3925,3926,3927,3928,3929,3930,3931,3931,3932,3933,3933,3934,3935,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3946,3947,3948,3949,3950,3951,3952,3953,3954,3954,3955,3956,3956,3957,3958,3958,3959,3960,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3971,3972,3973,3974,3975,3976,3976,3977,3978,3978,3979,3980,3981,3982,3983,3983,3984,3985,3986,3987,3988,3988,3989,3990,3991,2749,2751,2751,2753,2755,2756,2758,2760,2761,2763,3992,2764,2766,2768,2769,2771,3993,2772,2774,2776,2777,2779,2781,2781,2783,2784,2784,2786,2788,2794,2796,2797,2797,2799,3994,2800,2802,2804,2804,2805,2807,3995,2808,2810,3996,2811,2813,2814,2816,2818,2819,2821,2823,2825,2826,2828,2829,2831,3997,2832,2834,2836,2836,2837,2839,3998,2840,2842,3999,2845,2847,2850,2852,2853,2853,2855,2857,2858,2860,2861,2864,2866,2868,2868,2870,4000,2871,2873,2875,2876,2878,2880,2880,2882,4001,2883,2885,2886,2889,2891,2893,2897,2899,2901,2902,2904,2906,2910,2912,2914,2914,2916,4002,2919,2921,2923,4003,2924,2926,2926,2928,4004,2929,2931,2932,2932,2934,4005,4006,2935,2937,2937,2939,2941,2945,2947,2949,2954,2956,2958,2962,2964,2966,2966,2967,2969,2970,2972,2974,4007,2975,2977,2980,2981,2983,2984,2986,2987,2993,2995,2997,2997,2998,3000,3000,3002,4008,3003,3005,3007,3007,3009,4009,3013,3015,3017,3018,3020,3022,3022,3024,3026,3027,3029,4010,3032,3033,3035,3038,3039,3041,4011,3042,3044,3044,3046,3048,3048,3049,3051,3051,3053,3055,3055,3057,3059,4012,3062,3064,3064,3065,3067,4013,3071,3073,3073,3075,3077,3080,3082,4014,3083,3085,3087,3088,3090,3092,3093,3095,3097,4015,3098,3100,4016,3101,3103,3103,3105,4017,3106,3108,4018,3111,3113,4019,4020,3117,3119,3120,3122,4021,3123,3125,3127,3131,3133,3135,3136,3138,3140,3140,3142,3144,3147,3149,3151,3151,3153,3155,4022,3156,3158,3159,3161,3163,3163,3165,3167,3170,3172,3174,3175,3177,3179,3182,3184,3185,3185,3187,3189,3192,3194,3196,3197,3199,4023,3200,3202,3204,3205,3207,4024,3208,3210,4025,4026,3211,3213,3213,3215,4027,3216,3218,3220,3221,3223,3225,3225,3227,4028,3228,3230,3232,3235,3237,3239,3239,3241,3242,3242,3244,3246,3248,3250,3251,3254,3256,3258,4029,3261,3263,3263,3265,3266,3266,3268,3270,3271,3273,3275,3278,3280,3282,3283,3285,3287,3288,3290,3292,4030,3293,3295,3295,3297,3299,3300,3302,3304,3304,3306,3308,3308,3310,3312,3313,3315,3317,3317,3319,3321,3321,3323,4031,3324,3326,3328,3328,3330,3332,3332,3334,4032,4033,3335,3337,3337,3339,4034,3340,3342,3344,3344,3346,3348,4035,3349,3351,3353,3355,3357,3357,3359,3361,3361,3363,4036,3364,3366,3368,3369,3371,3373,3374,3376,3378,3378,3380,4037,3381,3383,4038,3384,3386,3388,3391,3393,3395,3395,3397,4039,3398,3400,3402,3405,3407,3409,3409,3411,4040,3412,3414,3416,3417,3419,3421,3421,3423,3425,3425,3427,3429,3430,3432,4041,3433,3435,3437,3441,3443,4042,3444,3446,3448,3451,3453,4043,3454,3456,3458,3458,3460,3462,3462,3464,4044,3468,3470,3472,3473,3475,3477,3478,3480,3482,3483,3485,4045,4045,3486,3488,3488,3490,3492,3495,3497,4046,3498,3500,3501,3501,3503,4047,3504,3506,3508,3509,3511,4048,3512,3514,3515,3518,3520,4049,3521,3523,3525,3525,3527,3529,3529,3531,4050,4051,3532,3534,3534,3536,3537,3537,3539,4052,3540,3542,3544,3544,3546,3548,3549,3551,3553,3553,3555,3557,3558,3560,3562,3562,3564,3566,3567,3569,4053,3570,3572,4054,4055,3573,3575,3575,3577,4056,3578,3580,3582,3583,3585,3587,3590,3592,4057,4058,3593,3595,3597,3599,3601,3602,3604,3606,3606,3608,3610,3613,3615,3617,3617,3619,3620,3620,3622,4059,3623,3625,3627,3628,3630,4060,3631,3633,4061,3634,3636,4062,3637,3639,3641,3642,3644,4063,3645,3647,3649,3649,3651,4064,3652,3654,3655,3655,3657,3659,3659,3661,4065,3662,3664,4066,3665,3667,3669,3670,3672,3674,3674,3676,4067,3677,3679,4068,3680,3682,3684,3684,3686,4069,4070,3687,3689,3690,3692,3694,3695,3697,3699,3700,3702,3704,3704,3706,3708,3711,3713,3715,4071,3716,3718,3719,3721,3723,3726,3728,3730,3731,3733,4072,4073,3734,3736,3737,3739,3741,3742,3744,3746,3746,3748,3749,3749,3751,4074,3752,3754,3756,4075,3757,3759,3759,3761,4076,3762,3764,3766,3766,3768,3770,3774,3776,3778,3779,3781,3783,3783,3785,3787,3787,3789,4077,3790,3792,3794,3795,3797,3799,3800,3802,4078,3803,3805,3807,3808,3810,3812,3812,3814,3816,3816,3818,3820,3820,3822,3824,3824,3826,4079,3827,3829,3831,4080,3834,3836,3840,3842,3843,3843,3845,3847,3847,3849,3851,3852,3854,4081,3855,3857,4082,3858,3860,3862,3863,3865,3867,3867,3869,3871,3872,3874,3875,3877,3878,3880,3881,3883,4083,3884,3886,3887,3887,3889,4084,3890,3892,3894,3895,3897,3899,3900,3902,3904,3904,3906,3907,3907,3909,3911,3912,3914,3916,3919,3921,3923,3925,3926,3928,3929,3931,3933,3935,3937,4085,3938,3940,3941,3941,3943,4086,3944,3946,3948,3948,3949,3951,4087,3952,3954,3954,3956,3958,3960,3962,4088,3965,3966,3968,3969,3971,3973,3974,3976,3978,3978,3980,3981,3981,3983,3985,3986,3988,3990,3991,2751,2755,2756,2760,4089,4090,2761,3992,2764,2768,2769,2769,3993,2772,2772,2776,2777,2777,2781,2784,2784,2788,2790,2793,2794,2797,2800,2804,2807,2807,3995,2810,3996,2813,2814,2819,2823,2825,2825,2828,2829,2832,2836,2839,4091,3999,2847,2850,2853,2857,2858,2861,2863,2864,2868,4000,4092,2871,2875,2876,2880,4001,4093,2883,2886,2889,2893,2894,4094,2897,2901,2902,2906,2907,2910,2914,4002,2919,2923,4095,4003,2926,4004,2929,2932,4005,4006,2937,2941,2944,2945,2949,2952,2954,2958,2962,2966,2969,2969,2970,2974,4007,2977,4096,2978,2980,2983,4097,2984,2987,4098,2993,2997,3000,4008,4099,3003,3007,4009,3022,3026,4100,3027,4010,4101,3030,3032,3035,3038,3041,4102,4011,3044,3048,3048,3051,3055,3055,3059,3061,4012,3064,3067,4013,3073,3077,4103,3083,3087,4104,3088,3092,3092,3093,3097,4016,3103,4017,4105,3106,4018,4020,3119,4106,4107,3123,3127,4108,3131,3135,4109,3136,3140,3140,3144,3146,3147,3151,3155,4022,3158,4110,3159,3163,3167,3169,3170,3174,4111,3175,3179,3182,3185,3189,3192,3196,4112,3197,4023,4113,3200,3204,3205,4114,3208,4025,4026,3213,4027,3216,3220,3221,3221,3225,4028,3228,3232,3233,3233,3235,3239,3239,3242,3246,3254,3258,3260,4115,4029,3263,3270,3271,3275,3278,3282,4116,3283,3287,4117,4118,3288,3292,4119,3300,3304,3304,3308,3312,3317,3321,4031,3324,3328,3332,4033,3337,4034,4034,3340,3344,3344,3348,4120,4035,3351,3353,3353,3357,3361,4121,3364,3368,3369,3373,4122,4123,3374,3378,3378,4037,3381,3381,4038,4124,4125,3384,3388,3390,3391,3395,3395,4039,4126,4126,3398,3402,4127,3405,3409,3409,4040,3412,3412,3416,4128,3417,3421,3425,3425,3429,3430,3430,4041,3433,3433,3437,3438,4129,3444,3448,3450,3451,4043,4130,3454,3458,3458,3462,4044,3467,3468,3472,4131,3473,3477,4132,3478,3482,4045,3488,3492,4133,3495,4046,3498,3501,4047,3504,3508,3509,4048,3512,3515,3518,4049,4134,4135,3521,3525,3525,3529,4050,3534,3537,4052,4136,3540,3544,4137,3549,3553,3553,3557,4138,3558,3562,3566,4139,3567,4053,4140,3570,4054,4055,3575,4056,3578,3582,4141,4141,3583,3587,3590,4057,4142,4058,3595,3597,3597,3601,4143,3602,3606,3610,4144,3613,3617,3617,3620,4059,3623,3627,4145,4146,3628,4060,3631,4061,4147,4147,3634,4062,4062,3637,3641,4148,3642,4063,4149,3645,3649,3652,3655,3659,4065,3662,4066,4066,3665,3669,4150,3670,3674,3674,4067,3677,4151,3680,3684,4070,3689,3690,3690,3694,4152,4153,3695,3699,3700,3704,3708,3709,3711,3715,4071,3718,4154,3719,3723,3725,3725,3726,3730,4155,3731,4072,4156,4073,3736,4157,3737,3741,3742,3746,3749,4158,3752,3756,4075,3759,4076,4159,3762,3766,3766,3770,4160,3773,3774,3778,4161,3779,3783,3783,3787,4077,4162,3790,3794,3794,3795,3799,3799,3800,4078,3803,3807,4163,4163,3808,3812,3812,3816,3820,3824,4079,3827,3827,3831,3833,4080,3836,4164,3839,3840,3843,3843,3847,3851,4165,3852,4081,3855,4082,3858,3858,3862,3863,3863,3867,3871,3871,3872,3875,3877,3880,3881,3884,3887,4084,4084,3890,3894,3894,3895,3899,4166,3900,3904,3904,3907,3911,3912,3916,3918,3919,3923,3925,3925,3928,4167,3929,3933,3935,3935,4085,3938,3938,3941,4086,4086,3944,3948,3948,3951,4087,4087,3954,3958,3958,3960,4088,3965,3968,4168,4169,3969,3973,3974,3978,3981,3981,3985,4170,4170,3986,3990,4171,3991,2755,2756,4089,4090,4090,3992,2764,2772,2777,2784,2784,2790,4172,2791,2793,2797,4173,2800,2807,2807,2810,3996,2819,2825,2829,3997,2832,2839,4174,4091,2847,2850,2857,2858,2864,4000,4092,4092,2875,4175,2876,4001,4093,4093,2886,2888,2889,2894,2896,4094,2901,2902,2909,2910,4002,2919,4095,4176,4176,4003,4004,4177,4006,2941,2944,2949,2950,2950,2952,2958,4178,2962,2969,2969,2974,4007,2978,2983,4179,4097,2987,2989,4098,2997,3000,3003,4009,3010,3018,3022,4100,3030,3035,4180,4011,3048,3055,3055,3061,4181,4182,4012,3067,3070,4013,3077,4014,4103,3087,4104,3092,3097,4183,4016,4017,4105,4018,4184,4020,4106,4185,4107,3127,3128,4109,3140,3146,3147,3155,4186,3159,3167,3169,4111,3179,3181,4187,3182,3189,3192,4112,3197,4113,3200,3205,4114,4025,4188,4026,4027,3216,3216,3221,4028,3228,3233,3239,3239,3246,3248,3254,3260,4189,4115,3263,3266,3266,3270,3275,3283,4117,4190,4190,4118,3292,4119,3304,3312,3317,4031,3324,3324,3332,4032,4191,4033,4034,4034,3344,4120,4192,4035,3353,3353,3361,4036,4193,4121,3368,4194,3369,4122,4122,4123,3378,4124,4125,3388,3388,3390,3395,4126,3402,3404,4127,3409,3412,3412,4128,4195,3417,3425,3430,3430,3433,3438,4129,3448,3450,3450,4043,4196,4130,3458,4044,3465,3467,3472,4131,3477,4197,4132,3482,4198,3483,4045,3492,4133,4046,3498,4047,3504,3509,3509,4048,3515,4135,3525,4050,3534,4052,4199,4200,4136,3544,4137,3553,4138,4201,3558,3566,4202,4139,4053,4140,4054,4203,4055,4056,4204,3578,4141,3587,4142,4058,3597,3597,4143,4205,4205,3602,3610,4144,3617,4059,4059,3623,4145,4146,4060,3631,4147,4062,3641,4148,4063,4206,4149,3649,4064,3652,3659,4065,4065,4066,3669,4150,3674,3677,4151,3684,4069,4070,3690,4152,4153,3699,4207,3700,3708,3709,3709,3715,4208,4209,4071,4154,3719,3725,3730,4210,4155,4072,4156,3736,4157,4157,3741,4211,3742,3749,4074,4212,4158,3756,4213,4075,4076,4214,4159,3766,3766,4160,4215,3773,3778,4216,4161,3783,4077,4217,4162,3794,3799,4078,4218,4219,3803,4163,4163,3812,3820,3824,3827,3833,3839,3843,3851,4165,4081,3855,3855,3858,3863,3863,3871,3875,3884,4084,3894,3894,3899,4220,4166,3904,3911,4221,3912,3918,3919,3925,4167,4167,3929,3935,3935,3938,4086,4087,3958,4088,3965,4168,4222,4222,4169,3973,3973,3974,3981,3981,4170,3990,4223,4171,2755,2756,4090,2764,2772,2784,4172,2791,2797,3994,2807,3996,2814,2819,2829,3997,3997,2839,3998,4224,4174,2847,2850,2858,2863,4092,4175,2876,2876,4093,2888,4094,2902,2907,2909,4002,4225,2919,4176,4004,4005,4177,2941,2950,2958,4226,4178,2969,4007,4227,2978,4179,4228,4097,2989,2992,4098,3000,4099,3003,3010,3018,4100,4229,4102,4011,3055,4182,3067,4230,3068,3070,3077,3080,4014,3087,4104,3097,4231,4183,4017,4232,4105,4184,3109,4233,4020,4185,4234,4107,3128,3135,4109,3146,3147,4186,4022,4110,3159,3169,3174,4111,3181,4187,3189,3191,3192,3197,4113,4113,3205,4024,4114,4188,4235,4026,3216,4028,3228,3239,3248,4189,4115,3266,3266,3275,3276,4190,3292,4030,4236,4119,3312,3313,3317,3324,3324,4032,4237,4191,4034,4120,4238,4192,3353,3353,4036,4239,4193,3368,4240,4241,4194,4122,4122,3378,3381,3388,3395,4126,4126,3404,4242,4243,4127,3412,4244,3417,3430,3430,3438,3440,4245,4129,3450,4196,4130,4044,3465,3472,4246,4131,4197,4247,4132,4198,3483,3483,3492,3494,4133,3498,4047,3509,3515,3517,4134,4135,4050,4200,3544,3548,3548,4137,4138,4201,3566,4248,4202,4053,4249,4250,4055,4204,3578,3587,3589,3590,4142,3597,3597,4205,3610,4251,4144,4059,4059,4145,4146,4146,3631,4147,4147,3641,4252,4148,4206,4149,3652,4065,3669,4253,4150,3677,4254,4151,4069,3700,3709,4208,4209,4154,4255,3719,3730,4210,4072,4156,4157,4157,4211,4256,3742,4074,4212,4212,3756,4257,4213,4076,4258,4259,4214,3766,3773,4216,4260,4161,4077,4217,4217,3794,3799,3799,4218,4261,4219,4163,3820,3824,3833,4080,3837,3839,3851,4262,4165,3855,3855,3863,3875,3884,3894,4220,4166,3911,4263,3918,3919,4167,4167,3935,4086,4087,4088,4264,3965,4222,3973,3973,3981,3990,4265,4223,2755,2772,4172,4266,2772,4266,2769,4172,2791,3994,3997,3998,2842,4267,4224,2847,2850,2863,2864,4092,2876,2888,2896,4094,2907,2907,2909,4225,2917,2919,4004,2929,4005,2941,2950,4226,2959,4268,4178,4007,4227,4179,4269,4269,4228,2989,2992,3000,4099,4099,3010,3012,4270,3018,4229,4102,3055,4181,4182,4230,3068,3068,3077,3079,3080,3087,4104,4104,4231,4015,3100,4183,4232,4105,3109,3111,4233,4185,3120,4271,4234,3128,3135,3146,3147,4110,3169,3174,3174,3181,4187,4187,3191,4272,3192,4113,4024,4026,4028,3228,3228,3248,3251,3254,4189,3266,3266,3276,3278,4190,4030,3295,4273,4236,3312,3313,3324,4237,4237,4191,4120,4238,3353,4239,4193,4240,4274,4122,3381,4124,4124,3388,4126,4275,4243,3412,4276,4244,3430,3430,3440,3441,4245,3450,4196,4196,4044,4277,4278,3465,4246,4279,4131,4247,4132,3483,3494,4133,4047,3509,3509,3517,3518,3518,4134,4050,4280,4200,3548,4201,4248,4202,4202,4249,4281,4250,4204,4282,3578,3589,4283,4284,3590,3597,3597,3610,3612,4285,4251,4059,4059,4146,4147,4147,4252,4148,4148,4149,4064,3652,3669,4286,4286,4253,3677,4287,4254,4069,3700,4208,4209,3719,4210,4072,4072,4157,4256,3742,4212,4257,4213,4258,4288,4259,3766,4215,3773,4260,4161,4161,4217,3799,4261,4219,3820,3837,3851,4262,4262,3855,3875,3884,4220,4289,4166,4263,4290,4221,3918,4167,4167,4086,3948,3948,4087,4264,3965,3973,3990,4265,2755,2756,4291,2769,4266,4291,4266,4172,2769,4291,2764,4172,3994,4173,4292,4267,2847,2849,2850,2864,2864,4092,2888,2889,2896,2907,2907,4225,4293,2917,4004,4294,2929,2941,2942,2950,2959,2961,2961,4268,4007,4227,4269,2989,4270,4229,3027,4102,4181,4295,4182,3068,3079,3080,4104,4015,3100,4232,4105,4105,3111,4019,4296,4233,3120,4271,3128,3130,3135,3147,4022,4110,3174,4187,4187,4272,4297,4297,3192,4024,4026,3228,3251,3254,3266,3278,3283,4190,3295,4273,3312,3313,4237,4120,4298,4298,4238,4239,4299,4193,4274,4122,4124,4126,4275,3412,4195,4300,4276,3430,4301,4245,4196,4278,4246,4279,4279,4247,4132,4132,3494,4302,3509,3518,4050,4199,4280,3548,4201,4202,4281,4250,4282,4303,4284,3597,3612,4304,4285,4059,4147,4148,4064,3652,4286,3677,4287,4069,4305,3700,4209,4255,3719,4072,4256,3742,4257,4213,4288,4259,4215,3773,4161,3799,3799,4261,3820,4262,3875,3877,4083,3884,4289,4166,4290,4221,4221,4167,3948,3948,4264,4306,3965,3990,4265,4265,2756,2764,4172,4173,2807,4292,2847,4307,4292,4307,4308,2864,2888,4309,2864,4309,2849,2889,2907,4293,2917,4294,4310,2929,2942,2944,2950,2961,4007,4311,4227,2989,3017,4270,3027,3038,4102,4295,4295,4182,3079,4312,3080,4015,3100,4105,4019,4313,4296,3120,4271,3130,4314,4108,3135,4022,4110,4187,4297,4315,4026,3251,3254,3278,4116,3283,3295,3299,4298,4239,4316,4298,4316,4237,4122,4126,4242,4242,4275,4195,4300,3430,3441,4042,4301,4196,4279,4132,4302,4133,3509,4050,4199,3548,4138,4201,4281,4140,4284,3612,4317,4304,4059,4147,4064,3652,3677,4287,4305,4070,3700,4255,4318,3719,4256,4319,3742,4213,4288,3799,3820,3824,3837,4262,3877,4083,4289,4166,3948,4306,3963,3965,4265,2764,4320,4308,4307,4320,4307,2847,4308,4320,4321,2888,2889,4322,4322,2849,4309,4322,4309,2888,2889,4293,4323,4323,2917,4310,4324,2929,2944,2950,4007,4096,4311,2989,2990,3017,3027,4101,3038,4295,3079,4312,4015,3100,4313,3120,4021,4314,4108,4022,4022,4110,4297,4235,4315,3251,3254,4116,3283,3283,3299,4273,4239,4299,4325,4325,4237,4316,4325,4316,4239,4122,4242,4195,4326,4300,3441,3441,4042,4196,4278,4279,4302,4327,4133,4050,3534,4199,4138,4284,4317,4304,4304,4147,4064,4064,3677,4068,3719,4319,3742,4288,4215,4328,4288,4328,3742,3837,3877,3881,3948,3963,3965,4329,4321,4320,4329,4320,2847,4321,4329,4330,2889,4323,4310,4324,2944,2950,2950,4096,4311,4311,2990,2992,3013,3017,4101,3036,3038,3079,4331,4312,3100,4271,4314,4022,4022,4297,4024,4114,4235,3251,3283,4273,4332,3283,4332,3254,4122,4195,4333,3441,4196,4277,4278,4302,4327,4327,4050,4334,3534,4138,4201,4284,4304,4064,4064,4068,4287,4335,3742,4328,4335,4328,4215,3742,4335,3719,3837,3881,4083,3948,3965,2764,4336,4330,4329,4336,4329,2847,4330,4336,4337,2889,4310,4324,2950,4311,4338,2950,4338,4324,4311,2992,4099,4339,3013,4101,4180,3036,3079,4331,3100,4019,4022,4024,4340,4022,4340,4271,4341,4114,3251,4342,3254,4332,4342,4332,4273,3254,4342,4343,4122,4333,4344,3441,4277,4345,4327,4334,4346,4327,4346,4278,4284,4064,4287,4347,3719,4335,4347,4335,4215,3719,4347,4318,4221,3948,2764,4348,4337,4336,4348,4336,2847,4337,4348,4349,2889,4324,4350,2889,4350,4351,4322,4351,4352,4322,4352,2849,4351,4322,2889,4311,4099,4353,4353,4324,4338,4353,4338,4311,4339,4101,4354,4180,3079,4331,4331,4019,4355,4356,4271,4340,4356,4340,4024,4271,4356,4357,4024,4341,3251,4273,3313,4358,4358,4343,4342,4358,4342,4273,4241,4122,4344,3441,4345,4278,4334,4051,4359,4359,4278,4346,4359,4346,4334,4283,4284,4287,4215,4360,4361,4361,4318,4347,4361,4347,4215,4221,2764,4291,4221,4291,4172,4362,4349,4348,4362,4348,2847,4349,4362,4363,4353,4364,4365,4353,4365,4324,4364,4353,4099,4364,4366,4367,4367,4324,4365,4367,4365,4364,4351,4366,4368,4368,2849,4352,4368,4352,4351,4367,4351,4350,4367,4350,4324,4351,4367,4366,4369,4339,4354,4180,4331,4355,4370,4357,4356,4370,4356,4024,4357,4370,4371,4024,3251,3253,4372,4241,4344,4373,4278,4359,4359,4051,4374,4359,4374,4373,4278,4373,4375,4278,4375,3441,3578,4283,4287,4166,4221,4172,4376,4363,4362,4376,4362,2847,4363,4376,4377,4368,4378,4379,4368,4379,2849,4378,4368,4366,4380,4366,4364,4380,4364,4099,4366,4380,4378,4381,2849,4379,4381,4379,4378,2849,4381,2847,4369,4354,3030,3030,4180,4355,4382,4371,4370,4382,4370,4024,4371,4382,4383,4024,3253,4384,4372,4344,4326,4051,3534,4385,4051,4385,4386,4373,4386,4387,4387,3441,4375,4387,4375,4373,4386,4373,4374,4386,4374,4051,3578,4287,4070,4083,4166,4172,4388,4377,4376,4388,4376,2847,4377,4388,4389,4390,4378,4391,4390,4391,3012,4378,4390,4392,4381,4392,4393,4381,4393,2847,4392,4381,4378,4380,3012,4391,4380,4391,4378,3012,4380,4099,4369,3030,4355,4024,4384,4394,4394,4383,4382,4394,4382,4024,4274,4372,4326,3534,4201,4395,3534,4395,4396,4386,4396,4397,4397,3441,4387,4397,4387,4386,4396,4386,4385,4396,4385,3534,3578,4070,4152,4083,4172,2807,4398,4389,4388,4388,2847,4399,4388,4399,4398,4389,4398,4400,4389,4400,4401,4402,4392,4403,4402,4403,4404,4392,4402,4405,4393,4405,4406,4393,4406,2847,4405,4393,4392,4390,4404,4403,4390,4403,4392,4404,4390,3012,4369,4355,3114,4407,4383,4394,4407,4394,4384,4383,4407,4021,4299,4274,4326,3578,4152,4408,4083,2807,2814,4409,4401,4400,4409,4400,4398,4410,4398,4399,4410,4399,2847,4398,4410,4409,4401,4409,4411,4401,4411,4412,4404,4413,4414,4414,4415,4416,4414,4416,4404,4405,4415,4417,4417,2847,4406,4417,4406,4405,4415,4405,4402,4402,4404,4416,4402,4416,4415,4369,3114,3116,4407,4343,4418,4407,4418,4021,4343,4407,4384,4299,4326,3441,3578,4408,4419,3837,4083,2814,4411,4420,4421,4411,4421,4412,4420,4411,4409,4422,4409,4410,4422,4410,2847,4409,4422,4420,4423,4412,4421,4423,4421,4420,4412,4423,4424,4413,4369,4425,4425,4426,4427,4425,4427,4413,4415,4426,4428,4428,2847,4417,4428,4417,4415,4426,4415,4414,4414,4413,4427,4414,4427,4426,4369,3116,4429,4430,4343,4358,4358,3313,4431,4358,4431,4430,4418,4430,4432,4418,4432,4021,4430,4418,4343,3441,4237,4325,3441,4325,4299,3578,4419,4153,3837,2814,2818,4423,4433,4434,4423,4434,4424,4433,4423,4420,4435,4420,4422,4435,4422,2847,4420,4435,4433,4436,4424,4434,4436,4434,4433,4424,4436,4437,4369,4429,4438,4369,4438,4439,4440,4439,4441,4440,4441,4442,4439,4440,4369,4426,4442,4443,4443,2847,4428,4443,4428,4426,4442,4426,4425,4425,4369,4440,4425,4440,4442,4444,4021,4432,4444,4432,4430,4445,4430,4431,4445,4431,3313,4430,4445,4444,4021,4444,4446,4021,4446,4313,4237,3441,4397,4237,4397,4396,4447,4396,4395,4447,4395,4201,4396,4447,4237,3578,4153,4207,4164,3837,2818,4436,4448,4449,4436,4449,4437,4448,4436,4433,4450,4433,4435,4450,4435,2847,4433,4450,4448,4451,4437,4449,4451,4449,4448,4437,4451,4452,4429,4313,4453,4453,4454,4455,4453,4455,4429,4456,4454,4457,4457,4458,4459,4457,4459,4456,4454,4456,4460,4460,4429,4455,4460,4455,4454,4442,4458,4461,4461,2847,4443,4461,4443,4442,4458,4442,4441,4441,4439,4462,4441,4462,4458,4456,4439,4438,4438,4429,4460,4438,4460,4456,4439,4456,4459,4459,4458,4462,4459,4462,4439,3313,4237,4447,3313,4447,4201,3578,4207,3700,4080,4164,2818,4451,4463,4464,4451,4464,4452,4463,4451,4448,4465,4448,4450,4465,4450,2847,4448,4465,4463,4466,4452,4464,4466,4464,4463,4452,4466,4467,4468,4444,4469,4469,4470,4471,4469,4471,4468,4446,4468,4472,4446,4472,4313,4468,4446,4444,4445,4473,4474,4445,4474,4444,4473,4445,3313,4473,4470,4469,4469,4444,4474,4469,4474,4473,4475,4476,4477,4475,4477,4478,4476,4475,4470,4476,4479,4480,4480,4478,4477,4480,4477,4476,4468,4478,4481,4481,4313,4472,4481,4472,4468,4475,4468,4471,4475,4471,4470,4468,4475,4478,4482,4458,4483,4482,4483,4479,4482,4484,4485,4482,4485,4458,4461,4484,4486,4461,4486,2847,4461,4458,4485,4461,4485,4484,4454,4478,4487,4487,4458,4457,4487,4457,4454,4481,4454,4453,4481,4453,4313,4454,4481,4478,4487,4479,4483,4487,4483,4458,4487,4478,4480,4487,4480,4479,4201,4140,4488,4201,4488,3313,3578,3700,4318,4080,2818,4489,4466,4490,4491,4466,4491,4467,4490,4466,4463,4492,4463,4465,4492,4465,2847,4463,4492,4490,4493,4467,4491,4493,4491,4490,4467,4493,4494,4495,4479,4496,4496,4140,4497,4496,4497,4495,4479,4495,4498,4479,4498,4499,4484,4499,4500,4484,4500,4501,4486,4501,4502,4486,4502,2847,4501,4486,4484,4499,4484,4482,4499,4482,4479,4470,4140,4496,4496,4479,4476,4496,4476,4470,4140,4470,4473,4473,3313,4488,4473,4488,4140,3824,4080,4489,4493,4503,4504,4493,4504,4494,4503,4493,4490,4505,4490,4492,4505,4492,2847,4490,4505,4503,4506,4494,4504,4506,4504,4503,4494,4506,4507,4508,4499,4509,4508,4509,4510,4511,4510,4512,4511,4512,4203,4510,4511,4508,4499,4508,4513,4499,4513,4514,4515,4501,4516,4515,4516,4514,4501,4515,4517,4502,4517,4518,4502,4518,2847,4517,4502,4501,4500,4514,4516,4500,4516,4501,4514,4500,4499,4495,4203,4512,4495,4512,4510,4498,4510,4509,4498,4509,4499,4510,4498,4495,4203,4495,4497,4203,4497,4140,3824,4489,2819,4506,4519,4520,4506,4520,4507,4519,4506,4503,4521,4503,4505,4521,4505,2847,4503,4521,4519,4522,4507,4520,4522,4520,4519,4507,4522,4523,4524,4525,4526,4524,4526,4514,4525,4524,4527,4528,4527,4529,4528,4529,4250,4527,4528,4525,4530,4514,4526,4530,4526,4525,4514,4530,4531,4532,4517,4533,4532,4533,4531,4517,4532,4534,4518,4534,4535,4518,4535,2847,4534,4518,4517,4515,4531,4533,4515,4533,4517,4531,4515,4514,4508,4250,4529,4508,4529,4527,4513,4527,4524,4513,4524,4514,4527,4513,4508,4250,4508,4511,4250,4511,4203,3799,3824,2819,4522,4536,4537,4522,4537,4523,4536,4522,4519,4538,4519,4521,4538,4521,2847,4519,4538,4536,4539,4523,4537,4539,4537,4536,4523,4539,4540,4541,4531,4542,4542,4303,4543,4542,4543,4541,4531,4541,4544,4534,4544,4545,4545,2847,4535,4545,4535,4534,4544,4534,4532,4544,4532,4531,4525,4303,4542,4542,4531,4530,4542,4530,4525,4303,4525,4528,4303,4528,4250,3773,3799,2819,4539,4546,4547,4539,4547,4540,4546,4539,4536,4548,4536,4538,4548,4538,2847,4536,4548,4546,4549,4540,4547,4549,4547,4546,4540,4549,4550,4551,4544,4552,4552,4553,4554,4552,4554,4551,4544,4551,4555,4545,4555,4556,4545,4556,2847,4555,4545,4544,4541,4553,4552,4541,4552,4544,4553,4541,4543,4553,4543,4303,3773,2819,3997,4549,4557,4558,4549,4558,4550,4557,4549,4546,4559,4546,4548,4559,4548,2847,4546,4559,4557,4560,4550,4558,4560,4558,4557,4550,4560,4561,4562,4555,4563,4563,3578,4564,4563,4564,4562,4555,4562,4565,4556,4565,4566,4556,4566,2847,4565,4556,4555,4551,3578,4563,4551,4563,4555,3578,4551,4554,3578,4554,4553,3771,3773,3997,4560,4567,4568,4560,4568,4561,4567,4560,4557,4569,4557,4559,4569,4559,2847,4557,4569,4567,4570,4561,4568,4570,4568,4567,4561,4570,4571,4572,4565,4573,4573,4318,4574,4573,4574,4572,4565,4572,4575,4575,2847,4566,4575,4566,4565,4318,4573,4576,4318,4576,3578,4573,4565,4562,4576,4562,4564,4576,4564,3578,4562,4576,4573,4360,3771,3997,4570,4577,4578,4570,4578,4571,4577,4570,4567,4579,4567,4569,4579,4569,2847,4567,4579,4577,4580,4571,4578,4580,4578,4577,4571,4580,4581,4360,3997,2842,4580,4582,4583,4580,4583,4581,4582,4580,4577,4584,4577,4579,4584,4579,2847,4577,4584,4582,4585,4581,4583,4585,4583,4582,4581,4585,4586,4361,2842,4587,4361,4587,4318,2842,4361,4360,4585,4588,4589,4585,4589,4586,4588,4585,4582,4590,4582,4584,4584,2847,4591,4584,4591,4590,4582,4590,4592,4582,4592,4588,4593,4586,4589,4589,4588,4594,4589,4594,4593,4586,4593,4595,4586,4595,4596,4587,2844,4597,4587,4597,4318,2844,4587,2842,4593,4598,4599,4599,4596,4595,4599,4595,4593,4598,4593,4594,4598,4594,4588,4600,4588,4592,4600,4592,4590,4601,4590,4591,4601,4591,2847,4590,4601,4600,4588,4600,4602,4588,4602,4598,4603,4596,4599,4599,4598,4604,4599,4604,4603,4596,4603,4605,4596,4605,2844,4606,2844,4605,4606,4605,4603,4606,4318,4597,4606,4597,2844,4607,4603,4604,4604,4598,4608,4604,4608,4607,4606,4607,4609,4606,4609,4318,4607,4606,4603,4572,4598,4602,4572,4602,4600,4575,4600,4601,4575,4601,2847,4600,4575,4572,4574,4607,4610,4574,4610,4572,4574,4318,4609,4574,4609,4607,4598,4572,4610,4610,4607,4608,4610,4608,4598,4611,4612,4613,4613,4614,4615,4615,4616,4617,4617,4618,4619,4619,4620,4621,4621,4622,4623,4624,4625,4626,4626,4627,4628,4628,4629,4630,4630,4631,4632,4632,4633,4634,4635,4636,4637,4638,4639,4640,4640,4641,4642,4611,4613,4615,4615,4617,4619,4619,4621,4623,4624,4626,4628,4628,4630,4632,4632,4634,4643,4635,4637,4638,4638,4640,4642,4611,4615,4619,4619,4623,4624,4624,4628,4632,4638,4642,4644,4645,4611,4619,4619,4624,4632,4635,4638,4644,4644,4645,4619,4619,4632,4643,4635,4644,4619,4619,4643,4646,4646,4635,4619,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4647,4647,4649,4661,4661,4650,4652,4653,4655,4656,4656,4658,4659,4659,4647,4661,4661,4652,4653,4653,4656,4659,4659,4661,4653,4662,4663,4664,4664,4665,4666,4666,4667,4668,4668,4669,4670,4671,4672,4673,4673,4674,4675,4675,4676,4677,4677,4662,4664,4664,4666,4668,4668,4670,4678,4671,4673,4675,4675,4677,4664,4664,4668,4678,4671,4675,4664,4664,4678,4679,4679,4671,4664,4680,4681,4682,4682,4683,4684,4685,4686,4687,4687,4688,4689,4689,4690,4691,4691,4692,4693,4694,4695,4696,4696,4697,4698,4699,4700,4680,4680,4682,4684,4687,4689,4691,4694,4696,4698,4701,4699,4680,4680,4684,4685,4685,4687,4691,4694,4698,4701,4701,4680,4685,4685,4691,4693,4693,4694,4701,4701,4685,4693,4702,4703,4704,4704,4705,4706,4706,4707,4708,4708,4709,4710,4711,4712,4713,4713,4714,4715,4715,4716,4717,4718,4719,4720,4721,4722,4723,4723,4724,4725,4725,4726,4727,4727,4728,4702,4702,4704,4706,4706,4708,4710,4711,4713,4715,4715,4717,4718,4718,4720,4729,4721,4723,4725,4725,4727,4702,4702,4706,4710,4711,4715,4718,4729,4721,4725,4725,4702,4710,4710,4711,4718,4729,4725,4710,4710,4718,4729,4730,4731,4732,4732,4733,4734,4734,4735,4736,4737,4738,4739,4739,4740,4741,4741,4742,4743,4744,4745,4746,4746,4747,4748,4748,4749,4750,4750,4751,4752,4752,4753,4754,4755,4756,4757,4757,4758,4759,4759,4760,4761,4762,4763,4764,4764,4765,4766,4766,4767,4768,4730,4732,4734,4734,4736,4769,4737,4739,4741,4741,4743,4744,4744,4746,4748,4748,4750,4752,4755,4757,4759,4759,4761,4762,4762,4764,4766,4766,4768,4730,4730,4734,4769,4737,4741,4744,4744,4748,4752,4755,4759,4762,4762,4766,4730,4730,4769,4770,4737,4744,4752,4771,4755,4762,4730,4770,4737,4737,4752,4754,4771,4762,4730,4737,4754,4772,4772,4771,4730,4730,4737,4772,4773,4774,4775,4775,4776,4777,4777,4778,4779,4779,4780,4781,4781,4782,4783,4784,4785,4786,4787,4788,4789,4789,4790,4791,4791,4792,4793,4793,4794,4795,4795,4796,4797,4797,4798,4799,4775,4777,4779,4779,4781,4783,4784,4786,4787,4787,4789,4791,4791,4793,4795,4795,4797,4799,4773,4775,4779,4779,4783,4784,4784,4787,4791,4791,4795,4799,4773,4779,4784,4791,4799,4800,4773,4784,4791,4791,4800,4801,4801,4773,4791,4802,4803,4804,4804,4805,4806,4806,4807,4808,4808,4809,4810,4810,4811,4812,4813,4814,4815,4815,4816,4817,4817,4818,4802,4802,4804,4806,4806,4808,4810,4810,4812,4813,4813,4815,4817,4802,4806,4810,4810,4813,4817,4817,4802,4810,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4830,4831,4832,4832,4833,4834,4835,4836,4837,4837,4838,4839,4839,4840,4819,4819,4821,4841,4822,4824,4842,4825,4827,4843,4828,4830,4832,4832,4834,4844,4835,4837,4839,4839,4819,4841,4841,4822,4842,4842,4825,4843,4843,4828,4832,4835,4839,4841,4841,4842,4843,4843,4832,4844,4844,4835,4841,4841,4843,4844,4845,4846,4847,4847,4848,4849,4850,4851,4852,4852,4853,4854,4855,4856,4857,4858,4859,4860,4860,4861,4862,4862,4863,4864,4864,4865,4866,4866,4845,4847,4850,4852,4854,4854,4855,4857,4858,4860,4862,4862,4864,4866,4866,4847,4849,4867,4850,4854,4854,4857,4858,4858,4862,4866,4866,4849,4867,4867,4854,4858,4858,4866,4867,4868,4869,4870,4870,4871,4872,4872,4873,4874,4874,4875,4876,4876,4868,4870,4870,4872,4874,4874,4876,4870,4877,4878,4879,4879,4880,4881,4881,4882,4883,4883,4884,4885,4885,4886,4887,4887,4888,4877,4877,4879,4881,4883,4885,4887,4887,4877,4881,4881,4883,4887,4889,4890,4891,4891,4892,4893,4893,4894,4895,4895,4896,4897,4897,4898,4899,4899,4889,4891,4891,4893,4895,4895,4897,4899,4899,4891,4895,4900,4901,4902,4902,4903,4904,4904,4905,4906,4906,4907,4908,4908,4909,4900,4900,4902,4904,4904,4906,4908,4908,4900,4904,4910,4911,4912,4912,4913,4914,4914,4915,4916,4916,4917,4918,4918,4910,4912,4912,4914,4916,4916,4918,4912,4919,4920,4921,4921,4922,4923,4923,4924,4925,4925,4926,4927,4927,4928,4929,4929,4919,4921,4921,4923,4925,4925,4927,4929,4929,4921,4925,4930,4931,4932,4932,4933,4934,4934,4935,4936,4936,4937,4938,4938,4939,4930,4930,4932,4934,4934,4936,4938,4938,4930,4934,4940,4941,4942,4942,4943,4944,4944,4945,4946,4946,4947,4948,4948,4949,4950,4951,4952,4953,4953,4954,4955,4956,4957,4958,4958,4959,4960,4940,4942,4944,4944,4946,4948,4948,4950,4951,4951,4953,4955,4956,4958,4960,4940,4944,4948,4948,4951,4955,4955,4956,4960,4961,4940,4948,4948,4955,4960,4960,4961,4948,4962,4963,4964,4964,4965,4966,4966,4967,4968,4968,4969,4970,4970,4971,4962,4962,4964,4966,4966,4968,4970,4970,4962,4966,4972,4973,4974,4974,4975,4976,4976,4977,4978,4978,4972,4974,4974,4976,4978,4979,4980,4981,4981,4982,4983,4983,4984,4985,4985,4986,4987,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4979,4979,4981,4983,4983,4985,4987,4989,4990,4992,4998,4993,4995,4999,4996,4979,4979,4983,4987,4987,4989,4992,4998,4995,4999,4999,4979,4987,4987,4992,4998,4998,4999,4987,5000,5001,5002,5002,5003,5004,5004,5005,5006,5006,5007,5008,5008,5009,5010,5010,5011,5012,5013,5014,5015,5000,5002,5004,5004,5006,5008,5008,5010,5012,5013,5015,5000,5000,5004,5008,5008,5012,5013,5013,5000,5008,5016,5017,5018,5018,5019,5020,5021,5022,5023,5023,5024,5025,5026,5027,5016,5016,5018,5020,5021,5023,5025,5026,5016,5020,5020,5021,5025,5025,5026,5020,5028,5029,5030,5030,5031,5032,5033,5034,5035,5035,5028,5030,5030,5032,5033,5033,5035,5030,5036,5037,5038,5038,5039,5040,5040,5041,5042,5042,5043,5044,5044,5045,5046,5047,5036,5038,5038,5040,5042,5042,5044,5046,5047,5038,5042,5042,5046,5047,5048,5049,5050,5050,5051,5052,5052,5053,5048,5048,5050,5052,5054,5055,5056,5056,5057,5058,5058,5059,5060,5060,5061,5062,5062,5063,5054,5054,5056,5058,5058,5060,5062,5062,5054,5058,5064,5065,5066,5066,5067,5068,5068,5069,5070,5070,5071,5072,5072,5073,5074,5064,5066,5068,5068,5070,5072,5072,5074,5075,5075,5064,5068,5068,5072,5075,5076,5077,5078,5078,5079,5080,5080,5081,5082,5082,5083,5076,5076,5078,5080,5080,5082,5076,5084,5085,5086,5086,5087,5088,5088,5089,5090,5090,5091,5084,5084,5086,5088,5088,5090,5084,5092,5093,5094,5094,5095,5096,5096,5097,5092,5092,5094,5096,5098,5099,5100,5100,5101,5102,5102,5103,5104,5104,5105,5106,5106,5107,5098,5098,5100,5102,5102,5104,5106,5106,5098,5102,5108,5109,5110,5111,5112,5113,5113,5114,5115,5115,5116,5117,5118,5119,5120,5120,5121,5122,5123,5124,5108,5111,5113,5115,5118,5120,5122,5123,5108,5110,5110,5111,5115,5118,5122,5125,5125,5123,5110,5110,5115,5117,5126,5118,5125,5110,5117,5126,5126,5125,5110,5127,5128,5129,5129,5130,5131,5131,5132,5133,5133,5127,5129,5129,5131,5133,5134,5135,5136,5137,5138,5139,5139,5140,5141,5141,5142,5143,5134,5136,5144,5137,5139,5141,5143,5134,5144,5144,5137,5141,5141,5143,5144,5145,5146,5147,5147,5148,5149,5150,5151,5152,5153,5145,5147,5147,5149,5150,5150,5152,5153,5153,5147,5150,5154,5155,5156,5157,5158,5159,5159,5160,5161,5162,5163,5164,5164,5165,5166,5167,5168,5169,5169,5170,5171,5172,5173,5174,5175,5176,5177,5177,5178,5179,5179,5180,5181,5182,5183,5184,5184,5185,5186,5187,5188,5189,5189,5190,5191,5191,5192,5193,5193,5194,5195,5195,5196,5197,5197,5198,5199,5200,5201,5202,5202,5203,5204,5205,5206,5207,5207,5154,5156,5157,5159,5161,5162,5164,5166,5166,5167,5169,5172,5174,5208,5175,5177,5179,5182,5184,5186,5209,5187,5189,5189,5191,5193,5193,5195,5197,5200,5202,5204,5205,5207,5156,5156,5157,5161,5210,5162,5166,5166,5169,5171,5175,5179,5181,5181,5182,5186,5209,5189,5193,5193,5197,5199,5199,5200,5204,5204,5205,5156,5156,5161,5211,5211,5210,5166,5175,5181,5186,5209,5193,5199,5199,5204,5156,5211,5166,5171,5208,5175,5186,5212,5209,5199,5156,5211,5171,5208,5186,5212,5212,5199,5156,5156,5171,5213,5208,5212,5156,5156,5213,5172,5172,5208,5156,5214,5215,5216,5216,5217,5218,5218,5219,5220,5221,5222,5223,5223,5224,5225,5226,5227,5228,5228,5229,5230,5230,5231,5232,5232,5233,5234,5234,5235,5236,5236,5237,5238,5238,5239,5240,5240,5241,5242,5243,5244,5245,5245,5246,5247,5248,5249,5250,5250,5251,5252,5252,5253,5254,5254,5255,5256,5214,5216,5218,5218,5220,5257,5221,5223,5225,5258,5226,5228,5228,5230,5232,5234,5236,5238,5238,5240,5242,5243,5245,5247,5247,5248,5250,5250,5252,5254,5214,5218,5257,5259,5221,5225,5258,5228,5232,5232,5234,5238,5238,5242,5260,5243,5247,5250,5250,5254,5256,5261,5214,5257,5225,5258,5232,5232,5238,5260,5243,5250,5256,5261,5257,5259,5225,5232,5260,5262,5243,5256,5256,5261,5259,5259,5225,5260,5263,5262,5256,5259,5260,5264,5265,5263,5256,5259,5264,5266,5266,5265,5256,5256,5259,5266,5267,5268,5269,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5280,5281,5282,5283,5284,5285,5285,5286,5287,5288,5289,5290,5290,5291,5292,5292,5293,5294,5295,5296,5297,5297,5298,5299,5299,5300,5301,5301,5302,5303,5303,5304,5305,5306,5307,5308,5308,5267,5269,5271,5272,5274,5309,5275,5277,5277,5278,5280,5280,5282,5310,5283,5285,5287,5288,5290,5292,5295,5297,5299,5299,5301,5303,5303,5305,5311,5306,5308,5269,5271,5274,5309,5309,5277,5280,5280,5310,5283,5283,5287,5312,5313,5288,5292,5314,5295,5299,5299,5303,5311,5306,5269,5271,5309,5280,5283,5283,5312,5315,5316,5313,5292,5314,5299,5311,5317,5306,5271,5271,5309,5283,5283,5315,5316,5316,5292,5294,5314,5311,5318,5317,5271,5283,5283,5316,5294,5314,5318,5317,5283,5294,5314,5314,5317,5283,5319,5320,5321,5321,5322,5323,5324,5325,5326,5326,5327,5328,5329,5330,5331,5332,5333,5334,5334,5335,5336,5336,5337,5338,5339,5340,5341,5341,5342,5343,5344,5345,5346,5347,5348,5349,5349,5350,5351,5352,5353,5354,5354,5355,5356,5357,5358,5359,5359,5360,5361,5362,5363,5364,5365,5366,5367,5367,5368,5369,5369,5370,5371,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5393,5394,5395,5396,5397,5398,5398,5399,5400,5401,5402,5403,5403,5404,5405,5405,5406,5407,5319,5321,5323,5408,5324,5326,5326,5328,5409,5332,5334,5336,5336,5338,5410,5339,5341,5343,5344,5346,5411,5347,5349,5351,5352,5354,5356,5359,5361,5362,5365,5367,5369,5369,5371,5373,5374,5376,5377,5377,5379,5412,5380,5382,5384,5384,5385,5387,5388,5390,5413,5391,5393,5395,5396,5398,5400,5401,5403,5405,5405,5407,5319,5319,5323,5408,5408,5326,5409,5414,5332,5336,5336,5410,5339,5347,5351,5352,5352,5356,5415,5357,5359,5362,5365,5369,5373,5373,5374,5377,5377,5412,5416,5380,5384,5387,5391,5395,5417,5396,5400,5418,5401,5405,5319,5319,5408,5409,5414,5336,5339,5411,5347,5352,5357,5362,5364,5364,5365,5373,5373,5377,5416,5416,5380,5387,5391,5417,5396,5418,5401,5319,5319,5409,5419,5331,5414,5339,5411,5352,5415,5357,5364,5373,5373,5416,5387,5413,5391,5396,5418,5319,5419,5329,5331,5339,5344,5411,5415,5357,5373,5387,5413,5396,5418,5418,5419,5420,5329,5339,5343,5344,5415,5357,5357,5387,5388,5388,5413,5418,5418,5420,5329,5329,5343,5344,5344,5357,5388,5388,5418,5329,5329,5344,5388,5421,5422,5423,5423,5424,5425,5425,5426,5427,5427,5428,5429,5429,5430,5431,5432,5433,5434,5434,5435,5436,5437,5438,5439,5439,5440,5441,5441,5442,5443,5444,5445,5446,5446,5447,5448,5449,5421,5423,5423,5425,5427,5427,5429,5431,5432,5434,5436,5450,5437,5439,5439,5441,5443,5444,5446,5448,5449,5423,5427,5427,5431,5432,5432,5436,5450,5450,5439,5443,5451,5444,5448,5449,5427,5432,5432,5450,5443,5452,5451,5448,5448,5449,5432,5432,5443,5452,5452,5448,5432,5453,5454,5455,5455,5456,5457,5457,5458,5459,5460,5461,5462,5462,5463,5464,5464,5465,5466,5466,5467,5468,5468,5469,5470,5470,5471,5472,5473,5474,5475,5476,5477,5478,5478,5479,5480,5481,5482,5483,5484,5485,5486,5486,5487,5488,5488,5489,5490,5491,5492,5493,5493,5494,5495,5453,5455,5457,5457,5459,5496,5460,5462,5464,5464,5466,5468,5468,5470,5472,5473,5475,5476,5476,5478,5480,5481,5483,5484,5484,5486,5488,5491,5493,5495,5453,5457,5496,5497,5460,5464,5464,5468,5472,5473,5476,5480,5481,5484,5488,5491,5495,5498,5498,5453,5496,5497,5464,5472,5473,5480,5499,5500,5481,5488,5490,5491,5498,5498,5496,5497,5497,5472,5501,5473,5499,5500,5500,5488,5490,5490,5498,5497,5497,5501,5473,5500,5490,5497,5497,5473,5500,5502,5503,5504,5505,5506,5507,5507,5508,5509,5509,5510,5511,5511,5512,5513,5513,5514,5515,5516,5517,5518,5518,5519,5520,5520,5521,5522,5523,5524,5525,5526,5527,5528,5528,5529,5530,5530,5531,5532,5533,5534,5535,5502,5504,5505,5505,5507,5509,5509,5511,5513,5513,5515,5536,5516,5518,5520,5525,5526,5528,5528,5530,5532,5532,5533,5535,5502,5505,5509,5509,5513,5536,5516,5520,5522,5525,5528,5532,5532,5535,5537,5537,5502,5509,5509,5536,5538,5538,5516,5522,5523,5525,5532,5532,5537,5509,5538,5522,5523,5532,5509,5538,5538,5523,5532,5539,5540,5541,5541,5542,5543,5543,5544,5545,5545,5546,5547,5547,5548,5549,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5563,5564,5565,5565,5566,5567,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5581,5582,5583,5583,5584,5585,5586,5587,5588,5589,5590,5591,5539,5541,5543,5543,5545,5547,5547,5549,5551,5592,5555,5557,5563,5565,5567,5567,5569,5570,5570,5572,5593,5573,5575,5594,5576,5578,5579,5581,5583,5585,5586,5588,5589,5589,5591,5595,5596,5539,5543,5543,5547,5551,5592,5557,5558,5561,5563,5567,5567,5570,5593,5573,5594,5597,5597,5576,5579,5579,5581,5585,5598,5586,5589,5589,5595,5599,5596,5543,5551,5592,5558,5560,5561,5567,5593,5597,5579,5585,5598,5589,5599,5596,5551,5600,5592,5560,5561,5561,5593,5573,5573,5597,5585,5598,5599,5596,5596,5600,5601,5592,5561,5573,5573,5585,5602,5602,5598,5596,5596,5601,5603,5554,5592,5573,5602,5596,5603,5554,5573,5602,5602,5603,5552,5552,5554,5602,5604,5605,5606,5606,5607,5608,5608,5609,5610,5610,5611,5612,5612,5613,5614,5615,5616,5617,5618,5619,5620,5620,5621,5622,5604,5606,5608,5608,5610,5612,5612,5614,5615,5615,5617,5618,5618,5620,5622,5604,5608,5612,5612,5615,5618,5618,5622,5604,5604,5612,5618,5623,5624,5625,5625,5626,5627,5628,5629,5630,5630,5631,5632,5632,5633,5634,5635,5636,5637,5638,5639,5640,5640,5641,5642,5642,5643,5644,5644,5623,5625,5625,5627,5628,5628,5630,5632,5632,5634,5635,5635,5637,5645,5642,5644,5625,5625,5628,5632,5632,5635,5645,5640,5642,5625,5625,5632,5645,5638,5640,5625,5625,5645,5638,5646,5647,5648,5648,5649,5650,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5661,5662,5663,5663,5664,5665,5646,5648,5650,5652,5653,5655,5656,5658,5659,5659,5661,5663,5665,5646,5650,5652,5655,5656,5656,5659,5663,5665,5650,5652,5652,5656,5663,5663,5665,5652,5666,5667,5668,5669,5670,5671,5672,5673,5674,5674,5675,5676,5676,5677,5678,5679,5680,5681,5681,5682,5683,5668,5669,5671,5671,5672,5674,5674,5676,5678,5679,5681,5683,5666,5668,5671,5671,5674,5678,5684,5679,5683,5683,5666,5671,5671,5678,5685,5685,5684,5683,5683,5671,5685,5686,5687,5688,5688,5689,5690,5690,5691,5692,5692,5686,5688,5688,5690,5692,5693,5694,5695,5695,5696,5697,5697,5698,5699,5700,5701,5702,5702,5703,5704,5704,5693,5695,5695,5697,5699,5700,5702,5704,5695,5699,5705,5705,5700,5704,5704,5695,5705,5706,5707,5708,5708,5709,5710,5711,5712,5713,5714,5715,5716,5716,5717,5718,5718,5719,5720,5720,5721,5706,5706,5708,5710,5711,5713,5714,5714,5716,5718,5718,5720,5706,5706,5710,5711,5711,5714,5718,5718,5706,5711,5722,5723,5724,5725,5726,5727,5727,5728,5729,5730,5731,5732,5732,5733,5734,5735,5736,5737,5737,5738,5739,5740,5741,5742,5743,5744,5745,5745,5746,5722,5725,5727,5729,5732,5734,5735,5735,5737,5739,5740,5742,5747,5743,5745,5722,5725,5729,5730,5730,5732,5735,5735,5739,5740,5740,5747,5743,5743,5722,5724,5724,5725,5730,5730,5735,5740,5740,5743,5724,5724,5730,5740,5748,5749,5750,5750,5751,5752,5753,5754,5755,5755,5756,5757,5758,5759,5760,5760,5748,5750,5750,5752,5753,5753,5755,5757,5758,5760,5750,5750,5753,5757,5757,5758,5750,5761,5762,5763,5763,5764,5765,5765,5766,5767,5767,5768,5769,5770,5771,5772,5772,5773,5774,5774,5775,5776,5776,5777,5778,5779,5780,5781,5781,5782,5783,5761,5763,5765,5765,5767,5769,5769,5770,5772,5772,5774,5776,5776,5778,5779,5779,5781,5783,5783,5761,5765,5769,5772,5776,5776,5779,5783,5783,5765,5769,5769,5776,5783,5784,5785,5786,5786,5787,5788,5788,5789,5790,5790,5791,5792,5792,5793,5794,5794,5795,5796,5797,5798,5799,5799,5800,5801,5801,5802,5803,5803,5804,5805,5805,5806,5807,5784,5786,5788,5788,5790,5792,5792,5794,5796,5808,5797,5799,5799,5801,5803,5805,5807,5809,5810,5784,5788,5788,5792,5796,5808,5799,5803,5803,5805,5809,5809,5810,5788,5788,5796,5808,5808,5803,5809,5809,5788,5808,5811,5812,5813,5814,5815,5816,5816,5817,5818,5818,5819,5820,5820,5821,5822,5822,5823,5824,5824,5811,5813,5814,5816,5818,5818,5820,5822,5822,5824,5813,5813,5814,5818,5818,5822,5813,5825,5826,5827,5827,5828,5829,5830,5831,5832,5832,5833,5834,5825,5827,5829,5829,5830,5832,5832,5834,5835,5835,5825,5829,5829,5832,5835,5836,5837,5838,5838,5839,5840,5840,5841,5842,5843,5844,5836,5836,5838,5840,5840,5842,5843,5843,5836,5840,5845,5846,5847,5847,5848,5849,5849,5850,5851,5851,5852,5853,5854,5855,5856,5857,5858,5859,5859,5860,5861,5862,5863,5864,5865,5866,5867,5867,5868,5869,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5886,5887,5888,5889,5890,5891,5891,5892,5893,5893,5894,5895,5896,5897,5898,5898,5899,5900,5901,5902,5903,5903,5904,5905,5905,5906,5907,5907,5908,5909,5910,5911,5912,5912,5913,5914,5914,5915,5916,5917,5918,5919,5919,5920,5921,5921,5922,5923,5923,5924,5925,5925,5926,5927,5928,5929,5930,5930,5931,5932,5932,5933,5934,5934,5935,5936,5936,5937,5938,5939,5940,5941,5941,5942,5943,5943,5944,5945,5945,5946,5947,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5961,5962,5963,5964,5965,5966,5966,5967,5968,5969,5970,5971,5972,5973,5974,5974,5975,5976,5976,5977,5978,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6006,6007,6008,6008,6009,6010,6011,6012,6013,6014,6015,6016,6016,6017,6018,6018,6019,6020,6021,6022,6023,6023,6024,6025,6025,6026,6027,6027,6028,6029,6030,6031,6032,6033,6034,6035,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6058,6059,6060,6060,6061,6062,6063,6064,6065,6066,6067,6068,6068,6069,6070,6070,6071,6072,6073,6074,6075,6076,6077,6078,6078,6079,6080,6080,6081,6082,6083,6084,6085,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6096,6097,6098,6099,6100,6101,6101,6102,6103,6104,6105,6106,6107,6108,6109,6109,6110,6111,6112,6113,6114,6114,6115,6116,6117,6118,6119,6120,6121,6122,6122,6123,6124,6124,6125,6126,6126,6127,6128,6129,6130,6131,6132,6133,6134,6134,6135,6136,6136,6137,6138,6138,6139,6140,6140,6141,6142,6142,6143,6144,6144,6145,6146,6147,6148,6149,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6177,6178,6179,6179,6180,6181,6181,6182,6183,6184,6185,6186,6186,6187,6188,6188,6189,6190,6190,6191,6192,6193,6194,6195,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6215,6216,6217,6217,6218,6219,6219,6220,6221,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6232,6233,6234,6234,6235,6236,6236,6237,6238,6239,6240,6241,6241,6242,6243,6244,6245,6246,6246,6247,6248,6248,6249,6250,6251,6252,6253,6254,6255,6256,6256,6257,6258,6258,6259,6260,6260,6261,6262,6263,6264,6265,6266,6267,6268,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,1072,1072,1071,1737,1737,1736,1735,1734,1733,1732,1732,1731,1730,1729,1728,1789,1726,1725,1724,1724,1723,1722,1722,1721,1720,1719,1718,1717,1717,1716,1715,1714,1713,1712,1711,1710,1709,1709,1708,1707,1707,1706,1705,1704,1703,1702,1698,1697,1788,1695,1694,1693,1688,1687,1831,1831,1878,1787,1685,1684,1786,1682,1681,2014,2014,1984,1785,1679,1678,1784,1674,1673,1783,1671,1670,1830,1830,1829,1782,1668,1667,1781,1665,1664,1663,1662,1661,1780,1659,1658,1828,1656,1655,1779,1779,1856,1778,1653,1652,1877,1648,1647,1777,1645,1644,1643,1642,1641,1640,1638,1637,1827,1827,1776,1636,1635,1634,1775,1632,1631,1774,1629,1628,1826,1826,1773,1627,1625,1624,6282,6282,6283,6284,6285,6286,6287,6287,6288,6289,6290,6291,6292,6292,6293,6294,6295,6296,6297,6297,6298,6299,6299,6300,6301,6302,6303,6304,6304,6305,6306,6307,6308,6309,6310,6311,6312,6312,6313,6314,6315,6316,6317,6317,6318,6319,6319,6320,6321,6322,6323,6324,6324,6325,6326,6327,6328,6329,6329,6330,6331,6331,6332,6333,6333,6334,6335,6335,6336,6337,6337,6338,6339,6340,6341,6342,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6359,6360,6361,6362,6363,6364,6365,6366,6367,6367,6368,6369,6369,6370,6371,6372,6373,6374,6374,6375,6376,6376,6377,6378,6379,6380,6381,6382,6383,6384,6384,6385,6386,6386,6387,6388,6389,6390,6391,6391,6392,6393,6393,6394,6395,6395,6396,6397,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6437,6438,6439,6440,6441,6442,6442,6443,6444,6445,6446,6447,6448,6449,6450,6450,6451,6452,6453,6454,6455,6456,6457,6458,6458,6459,6460,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6471,6472,6473,6473,6474,6475,6476,6477,6478,6479,6480,6481,6481,6482,6483,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6522,6523,6524,6524,6525,6526,6526,6527,6528,6528,6529,6530,6530,6531,6532,6533,6534,6535,6536,6537,6538,6538,6539,6540,6541,6542,6543,6543,6544,6545,6545,6546,6547,6548,6549,6550,6550,6551,6552,6552,6553,6554,6555,6556,6557,6557,6558,6559,6559,6560,6561,6561,6562,6563,6563,6564,6565,6565,6566,6567,6568,6569,6570,6570,6571,6572,6572,6573,6574,6575,6576,6577,6577,6578,6579,6579,6580,6581,6581,6582,6583,6584,6585,6586,6587,6588,6589,6589,6590,6591,6592,6593,6594,6594,6595,6596,6597,6598,6599,6600,6601,6602,6602,6603,6604,6605,6606,6607,6607,6608,6609,6610,6611,6612,6613,6614,6615,6615,6616,6617,6618,6619,6620,6620,6621,6622,6623,6624,6625,6625,6626,6627,6628,6629,6630,6630,6631,6632,6632,6633,6634,6635,6636,6637,6638,6639,6640,6640,6641,6642,6643,6644,6645,6645,6646,6647,6648,6649,6650,6650,6651,6652,6653,6654,6655,6656,6657,6658,6658,6659,6660,6660,6661,6662,6662,6663,6664,6665,6666,6667,6668,6669,6670,6670,6671,6672,6673,6674,6675,6675,6676,6677,6678,6679,6680,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6691,6692,6693,6694,6695,6696,6696,6697,6698,6699,6700,6701,6701,6702,6703,6703,6704,6705,6705,6706,6707,6708,6709,6710,6710,6711,6712,6713,6714,6715,6715,6716,6717,6718,6719,6720,6720,6721,6722,6723,6724,6725,6725,6726,6727,6728,6729,6730,6731,6732,6733,6733,6734,6735,6735,6736,6737,6737,6738,6739,6739,6740,6741,6741,6742,6743,6744,6745,6746,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6757,6758,6759,6759,6760,6761,6762,6763,6764,6764,6765,6766,6766,6767,6768,6768,6769,6770,6771,6772,6773,6773,6774,6775,6776,6777,6778,6779,6780,6781,6781,6782,6783,6783,6784,6785,6785,6786,6787,6787,6788,6789,6790,6791,6792,6793,6794,6795,6795,6796,6797,6798,6799,6800,6801,6802,6803,6803,6804,6805,6805,6806,6807,6807,6808,6809,6809,6810,6811,6811,6812,6813,6814,6815,6816,6816,6817,6818,6819,6820,6821,6821,6822,6823,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6834,6835,6836,6836,6837,6838,6839,6840,6841,6841,6842,6843,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6854,6855,6856,6856,6857,6858,6859,6860,6861,6861,6862,6863,6864,6865,6866,6867,6868,6869,6869,6870,6871,6871,6872,6873,6874,6875,6876,6877,6878,6879,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6904,6905,6906,6907,6908,6909,6909,6910,6911,6912,6913,6914,6915,6916,6917,6917,6918,6919,6920,6921,6922,6922,6923,6924,6925,6926,6927,6927,6928,6929,6930,6931,6932,6933,6934,6935,6935,6936,6937,6937,6938,6939,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6956,6957,6958,6958,6959,6960,6960,6961,6962,6963,6964,6965,6966,6967,6968,6968,6969,6970,6971,6972,6973,6973,6974,6975,6975,6976,6977,6978,6979,6980,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7008,7009,7010,7010,7011,7012,7013,7014,7015,7016,7017,7018,7018,7019,7020,7020,7021,7022,7023,7024,7025,7025,7026,7027,7028,7029,7030,7030,7031,7032,7033,7034,7035,7035,7036,7037,7037,7038,7039,7040,7041,7042,7042,7043,7044,7044,7045,7046,7047,7048,7049,7049,7050,7051,7052,7053,7054,7055,7056,7057,7057,7058,7059,7059,7060,7061,7062,7063,7064,7065,7066,7067,7067,7068,7069,7069,7070,7071,7072,7073,7074,7074,7075,7076,7077,7078,7079,7079,7080,7081,7081,7082,7083,7083,7084,7085,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7096,7097,7098,7099,7100,7101,7102,7103,7104,7104,7105,7106,7106,7107,7108,7109,7110,7111,7111,7112,7113,7114,7115,7116,7116,7117,7118,7118,7119,7120,7121,7122,7123,7123,7124,7125,7125,7126,7127,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7141,7142,7143,7143,7144,7145,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7156,7157,7158,7158,7159,7160,7160,7161,7162,7162,7163,7164,7165,7166,7167,7167,7168,7169,7170,7171,7172,7173,7174,7175,7175,7176,7177,7177,7178,7179,7179,7180,7181,7181,7182,7183,7184,7185,7186,7187,7188,7189,7189,7190,7191,7191,7192,7193,7194,7195,7196,7197,7198,7199,7199,7200,7201,7202,7203,7204,7204,7205,7206,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7217,7218,7219,7219,7220,7221,7222,7223,7224,7225,7226,7227,7227,7228,7229,7230,7231,7232,7233,7234,7235,7235,7236,7237,7237,7238,7239,7240,7241,7242,7243,7244,7245,7245,7246,7247,7247,7248,7249,7250,7251,7252,7253,7254,7255,7255,7256,7257,7258,7259,7260,7260,7261,7262,7263,7264,7265,7265,7266,7267,7268,7269,7270,7271,7272,7273,7273,7274,7275,7275,7276,5845,5845,5847,5849,5849,5851,5853,5854,5856,5857,5857,5859,5861,5864,5865,5867,5867,5869,5871,5872,5874,5875,5875,5877,7277,5881,5883,5884,5884,5886,5888,7278,5889,5891,5891,5893,5895,5896,5898,5900,7279,5901,5903,5903,5905,5907,5907,5909,7280,5910,5912,5914,5914,5916,7281,5919,5921,5923,5923,5925,5927,7282,5928,5930,5934,5936,5938,5939,5941,5943,5943,5945,5947,7283,5950,5952,5953,5955,5956,5959,5961,5963,5964,5966,5968,5969,5971,5972,5972,5974,5976,5976,5978,5980,5981,5983,7284,5984,5986,7285,7286,5987,5989,5989,5991,7287,5992,5994,7288,7289,5995,5997,7290,5998,6000,7291,6001,6003,7292,6004,6006,6006,6008,6010,6011,6013,7293,6014,6016,6018,6021,6023,6025,6025,6027,6029,6030,6032,7294,6033,6035,6037,6038,6040,7295,6044,6046,7296,6047,6049,6050,6053,6055,7297,6056,6058,6060,6060,6062,7298,6063,6065,7299,6068,6070,6072,6076,6078,6080,6080,6082,7300,6083,6085,6087,6088,6090,7301,6091,6093,7302,6094,6096,6098,6099,6101,6103,6106,6107,6109,6114,6116,7303,7304,6117,6119,6119,6120,6122,6126,6128,7305,6129,6131,7306,6132,6134,6136,6140,6142,6144,6144,6146,6147,6147,6149,6151,6152,6154,6155,6155,6157,7307,6158,6160,6162,6162,6163,6165,6169,6171,6172,6175,6177,6179,6179,6181,6183,7308,6184,6186,6186,6188,6190,6190,6192,7309,6193,6195,6197,6198,6200,6201,6201,6203,7310,6204,6206,7311,6207,6209,6210,7312,6213,6215,6215,6217,6219,6224,6226,7313,7314,6230,6232,6232,6234,6236,6236,6238,7315,7316,6239,6241,6243,6244,6246,6246,6248,6250,6251,6253,7317,6256,6258,6260,6260,6262,7318,6263,6265,7319,6266,6268,6270,6271,6273,7320,6277,6279,7321,6280,1072,1737,1737,1735,1734,1734,1732,1730,1730,1729,1789,1726,1724,1722,1722,1720,1719,1719,1717,1715,1715,1714,1712,1709,1707,1705,1698,1788,1696,1695,1693,1692,1688,1831,1787,1685,1786,1683,1682,2014,1785,1679,1784,1677,1674,1783,1672,1671,1830,1782,1668,1781,1666,1665,1663,1662,1662,1780,1660,1659,1828,1657,1656,1779,1778,1653,1877,1651,1648,1777,1646,1645,1643,1642,1639,1638,1827,1635,1775,1633,1632,1774,1630,1629,1826,1627,1626,1625,6282,6285,6287,6289,6289,6290,6292,6295,6297,6299,6299,6301,7322,6302,6304,6306,7323,6307,6309,6310,6312,6314,6315,6317,6319,6322,6324,6326,6329,6331,6333,6333,6335,6337,6337,6339,6340,6340,6342,6344,6345,6347,7324,6348,6350,7325,6351,6353,7326,6354,6356,7327,7328,6357,6359,6359,6361,6362,6365,6367,6369,6369,6371,7329,6374,6376,6378,6379,6381,7330,6382,6384,6386,6386,6388,7331,6389,6391,6393,6393,6395,6397,7332,6400,6402,6408,6410,7333,7333,6411,6413,6414,6416,7334,6417,6419,6420,6426,6428,7335,6429,6431,6432,6432,6434,6435,6435,6437,6439,6440,6442,6444,7336,6445,6447,6448,6450,6452,6452,6453,6455,7337,6456,6458,6458,6460,6462,6463,6465,7338,6466,6468,7339,6469,6471,6473,6475,6476,6478,6479,6481,6483,6483,6485,7340,6489,6491,7341,6492,6494,6496,6497,6499,7342,7342,6500,6502,7343,6503,6505,6508,6510,6511,6513,6514,6516,6522,6524,6526,6526,6528,6530,6530,6532,7344,6533,6535,7345,6538,6540,7346,6541,6543,6545,6545,6547,7347,6548,6550,6552,6555,6557,6559,6559,6561,6563,6563,6565,6567,6568,6570,6572,6572,6574,6575,6575,6577,6579,6584,6586,6587,6587,6589,6591,7348,6592,6594,6597,6599,7349,6600,6602,6604,6607,6609,7350,7351,6610,6612,6618,6620,6622,6623,6625,6627,6628,6630,6632,6635,6637,7352,6638,6640,6642,6643,6645,6647,6648,6650,6652,6653,6655,7353,6656,6658,6660,6660,6662,6664,7354,6665,6667,6668,6670,6672,6673,6675,6677,6677,6678,6680,7355,6683,6685,6686,6688,7356,6689,6691,6693,6694,6696,6698,7357,6699,6701,6703,6705,6707,7358,6708,6710,6710,6712,7359,6713,6715,6717,7360,6718,6720,6723,6725,6727,6728,6730,7361,6731,6733,6735,6735,6737,6739,6739,6741,6743,7362,6744,6746,6746,6748,6749,6755,6757,6759,6761,6762,6764,6764,6766,6768,6770,6771,6773,6781,6783,6785,6785,6787,6789,6789,6790,6792,6795,6797,6798,6803,6805,6807,6807,6809,6811,6814,6816,6818,6819,6821,6823,6823,6825,6826,6828,6829,6831,6832,6834,6836,6836,6838,6839,6839,6841,6843,6843,6845,6846,6846,6848,7363,7364,6849,6851,6852,6854,6856,6859,6861,6863,6864,6866,6867,6867,6869,6871,7365,6874,6876,6876,6877,6879,6879,6881,7366,6882,6884,6885,6885,6887,7367,6888,6890,6892,6893,6895,6896,6896,6898,7368,6899,6901,7369,7369,6902,6904,6904,6906,7370,6912,6914,7371,7372,6915,6917,6917,6919,7373,6920,6922,6924,6925,6927,6929,6930,6932,7374,7375,6933,6935,6935,6937,6939,6939,6941,7376,6942,6944,7377,6947,6948,6950,6951,6953,7378,6954,6956,6958,6958,6960,6962,6963,6965,7379,6968,6970,7380,6971,6973,6975,6975,6977,6978,6978,6980,6982,6983,6985,6986,6986,6988,6989,7381,6992,6994,6995,6997,6999,6999,7000,7002,7002,7003,7005,7382,7006,7008,7008,7010,7012,7013,7015,7016,7018,7020,7022,7023,7025,7027,7028,7030,7032,7033,7035,7037,7037,7039,7383,7040,7042,7044,7044,7046,7384,7385,7047,7049,7049,7051,7052,7052,7054,7055,7055,7057,7059,7062,7064,7386,7065,7067,7069,7072,7074,7076,7387,7077,7079,7083,7085,7087,7093,7094,7096,7099,7101,7102,7102,7104,7106,7106,7108,7388,7113,7114,7116,7116,7118,7120,7121,7123,7125,7125,7127,7129,7130,7132,7389,7390,7133,7135,7391,7136,7138,7139,7141,7143,7148,7150,7392,7151,7153,7393,7154,7156,7158,7160,7162,7164,7165,7167,7169,7173,7175,7177,7177,7179,7181,7181,7183,7394,7184,7186,7187,7187,7189,7191,7197,7199,7201,7202,7204,7206,7209,7211,7395,7212,7214,7396,7397,7215,7217,7398,7222,7224,7224,7225,7227,7227,7229,7399,7400,7233,7235,7235,7237,7239,7401,7240,7242,7243,7245,7247,7402,7250,7252,7253,7255,7257,7258,7260,7262,7403,7263,7265,7267,7268,7270,7273,7275,5845,5845,5849,5853,5854,5857,5861,5862,5864,5867,5867,5871,5872,5872,5875,7277,7404,5881,5884,7278,5891,5895,5896,5900,7405,7279,5903,5907,5907,7280,7406,5910,5914,7281,5919,5923,5927,7282,5930,5932,5932,5934,5938,5939,5943,5947,5953,5956,5958,5958,5959,5963,7407,5964,5968,5969,5972,5976,5976,5980,7408,5981,7284,7409,7286,5989,7287,5992,7288,7410,7411,7289,5997,7412,7290,6000,7413,7291,6003,7414,7292,6006,6006,6010,7415,6014,6018,6020,6021,6025,6029,6033,6037,7416,7416,6038,7295,7417,6044,7296,7418,6053,7297,6056,6060,7298,7298,6063,7299,6066,6068,6072,6075,6076,6080,7419,6083,6087,7420,6088,7301,6091,7302,7421,6094,6098,6099,6099,6103,6104,6106,6109,6111,6114,7303,7422,7304,6119,6122,6126,7305,7423,7424,6129,7306,7306,6132,6136,6138,6140,6144,6147,6151,7425,7425,6152,6155,6155,7307,6158,6162,6165,7426,6168,6169,6172,6174,6175,6179,6179,6183,7427,7308,6186,6190,6193,6197,7428,6198,6201,7310,7429,6204,7311,6207,6210,6212,6215,6219,6221,7314,6232,6236,7316,6241,6243,6243,6246,6250,6250,6251,7317,6254,6256,6260,6260,7318,6263,7430,6266,6270,7431,6271,7320,7432,6277,7321,7321,6280,1737,1737,1734,1730,1730,1789,1727,1722,1719,7433,1722,7433,1726,1719,1715,1712,1709,1705,1704,1699,1698,1696,1696,1695,1692,1689,1688,1787,1686,1685,1683,1683,1682,1785,1680,1679,1677,1671,1782,1669,1659,1657,1656,1656,1778,1654,1654,1653,1651,1649,1648,1646,1645,1642,1640,1639,1827,1636,1635,1633,1632,1629,1627,1626,1626,6282,6284,6289,6292,6294,6295,6299,7322,7434,6302,6306,7323,6309,6310,6310,6314,7435,6315,6319,6321,6322,6326,7436,6329,6333,6337,6337,6340,6344,7437,6345,7324,7438,6348,7325,6351,7326,6354,6354,7327,7439,7328,6359,6362,7440,6365,6369,6374,6378,6379,7330,6382,6386,6386,7331,7441,7442,6389,6393,6393,6397,6399,7332,6402,7443,6406,6408,7333,7333,6413,6414,6414,7334,6417,6425,6426,7335,6429,6432,6435,7444,6440,6444,7445,6448,6452,6452,6455,7446,7337,6458,6462,7447,6463,7338,7448,6466,7339,7449,6469,6473,6475,6478,7450,7451,6479,6483,6483,7340,6486,6489,7341,6492,6492,6496,7452,6497,7342,6502,7343,6505,6507,6507,6508,6511,6513,6516,7453,6526,6530,7344,6536,6538,7346,6541,6545,7347,6548,6552,6554,6555,6559,6563,6563,6567,7454,6568,6572,6575,6575,6579,6581,6583,6584,6587,6587,6591,7348,6600,6604,7455,6607,7350,7456,6623,6627,7457,6628,6632,6634,6635,7352,7458,7458,6638,6642,7459,6643,6647,6648,6652,7460,6653,7353,6656,6656,6660,6664,7354,6667,7461,7461,6668,6672,6677,6680,6682,7355,6685,7462,7463,6686,7356,7356,6689,6693,6694,6698,7464,7357,6701,6703,6703,6707,7358,7358,6710,7359,6713,6717,7360,7360,6720,6722,6723,6727,7465,6728,7361,6731,6731,6735,6739,7362,6746,6749,6755,6759,6761,6761,6764,6768,6768,6770,6773,6779,6781,6785,6793,6795,6798,6803,6807,6811,6814,6818,6819,6819,6823,6826,6832,6836,6839,6839,6843,6846,6846,7363,7466,7364,6851,7467,6852,6856,6858,6859,6863,6864,6864,6867,6871,7365,6876,6879,6882,6885,7367,7367,6888,6892,6893,6896,7368,7369,6904,7370,6911,6912,7371,7372,6917,7373,6920,6924,7468,7469,6925,6929,7375,6935,6939,6939,7376,6942,6947,6950,7470,6951,7378,7471,6954,6958,6962,7472,6963,7379,6966,6968,7380,7473,6971,6975,6978,6982,7474,6995,6999,7002,7002,7005,7475,7382,7008,7012,7476,7013,7016,7018,7022,7477,7477,7023,7027,7027,7028,7032,7478,7033,7037,7479,7040,7044,7044,7384,7385,7049,7052,7055,7055,7059,7061,7480,7062,7386,7065,7069,7071,7481,7072,7076,7076,7387,7079,7083,7087,7482,7093,7096,7098,7102,7106,7388,7121,7125,7129,7483,7130,7389,7390,7135,7391,7391,7138,7484,7484,7139,7143,7485,7148,7392,7151,7393,7154,7154,7158,7160,7160,7164,7486,7165,7169,7170,7172,7173,7177,7177,7181,7394,7184,7187,7191,7487,7197,7201,7202,7206,7208,7488,7212,7396,7221,7398,7224,7224,7227,7399,7400,7235,7239,7489,7401,7242,7243,7247,7249,7252,7253,7257,7258,7262,7490,7403,7265,7267,7267,7270,7491,7273,5845,5853,5854,5861,7492,7493,5862,5867,5867,5872,7277,7404,5884,5888,7278,5895,5896,5896,7405,7279,7279,5907,7406,5910,7281,7494,5917,5919,5927,7495,7282,5932,5932,5938,7496,7496,5939,5947,5952,5953,5958,5958,5963,7497,7498,7407,5968,5969,5976,7408,7499,5981,7409,7285,7286,7287,5992,7410,7500,7500,7411,5997,7501,7412,6000,7502,7413,6003,7503,7414,6006,7293,6014,6020,6021,6029,7504,6033,7416,7295,7417,7296,7505,7418,7297,6056,7299,6066,6072,6075,6080,7300,7419,6087,7420,7420,7301,7506,7507,6091,7421,7508,6094,6099,6104,6106,6111,7509,7304,6122,7424,7306,6136,7425,6155,6158,6162,7426,7510,6174,6179,7427,7511,7308,6190,6193,7428,6198,6198,7310,7512,7312,6215,6221,6229,7314,6236,7513,7316,6243,6250,7317,7514,6254,6260,6263,7319,7430,6270,7431,7320,7515,7432,7321,1737,1730,1727,1726,1719,1712,7516,7516,1726,7433,7516,7433,1719,1699,1696,1692,1689,1787,1686,1686,1683,1785,1680,1677,1676,1671,1669,1668,1659,1656,1654,1654,1651,1650,1649,1646,1645,1645,1640,1639,1639,1636,1635,1635,1632,1630,1629,1626,6284,6285,6289,6294,7434,6306,7517,7323,6310,7435,6315,6321,7518,6322,7436,6327,6327,6329,6337,6337,6344,7437,7438,7325,6351,6351,6354,7439,7519,7328,6362,7440,6369,7329,6379,7330,6386,7442,6393,6399,7520,7332,7443,6405,6406,7333,7333,6414,6417,6425,7335,6429,6429,6435,6439,7444,6444,7336,7521,7445,6452,7446,7337,6462,7447,7338,7522,7522,7448,7339,7449,6473,6475,7451,6483,6486,7523,6489,6492,6497,6502,7524,7525,7343,6507,6507,6511,6513,6513,7453,7526,6526,7344,7527,6536,7346,6541,6541,7347,7528,6548,6554,7529,6555,6563,7454,7530,6568,6575,6575,6581,6583,6583,6587,7348,6600,7455,7531,6607,7456,7532,6623,7457,6628,6628,6634,7533,7533,6635,7458,7458,6642,7459,7459,6647,6648,6648,7460,7534,6653,6656,6664,7354,7461,6672,6673,6677,6682,7355,7462,7535,7356,6693,7536,7536,6694,7464,7357,6703,7358,7358,7359,7537,6713,7360,6722,6731,6739,6743,7362,6749,6751,6755,6761,6768,6768,6773,6775,7538,6779,6785,6793,6798,6800,6801,6803,6811,6814,6819,6826,7539,6832,6839,6839,6846,7466,7540,6852,6858,6859,6864,6871,7365,6879,7366,7367,6892,7541,6893,7368,6899,6899,7369,7370,6911,7371,7372,7372,7373,7542,6920,7468,7543,7469,6929,6930,7375,6939,6942,6945,6947,7470,7471,6954,6962,7472,7379,6966,7544,7473,6975,6978,7474,6983,7545,6995,7002,7475,7382,7012,7476,7016,7018,7018,7477,7027,7027,7032,7546,7547,7478,7037,7479,7044,7385,7049,7055,7061,7061,7480,7386,7481,7076,7079,7081,7083,7482,7091,7093,7098,7102,7388,7548,7121,7129,7483,7483,7389,7390,7391,7484,7143,7485,7392,7151,7151,7154,7160,7549,7165,7170,7172,7177,7394,7394,7184,7191,7487,7201,7550,7550,7202,7208,7488,7396,7397,7221,7224,7399,7551,7400,7239,7239,7489,7242,7243,7249,7402,7252,7257,7552,7552,7258,7490,7403,7267,7491,7273,5853,7553,7273,7553,7271,7493,5867,7277,7278,5896,7279,7279,7406,5910,7554,5917,5927,7555,7495,5932,7496,5947,7556,7496,7556,5932,5952,5958,7497,7498,5968,5969,5969,7408,7499,5984,7285,7287,7500,5997,7557,7500,7557,5992,7558,7501,6000,7559,7502,6003,7560,7503,6006,7293,6020,7561,6021,7504,6030,6033,7295,6041,7418,6056,7298,7298,7299,6072,6073,6075,7300,7562,7419,7420,7420,7506,7507,7507,7421,7508,7508,6099,6104,6104,6111,6112,7509,6122,6124,7424,6136,6138,7425,6158,6162,6172,6174,7427,7511,6190,7309,6193,6198,7512,7312,6221,6223,6227,6229,6236,7513,6243,6250,7514,6254,6263,7319,6270,7431,7431,7515,6274,7563,7432,1737,7564,1726,7516,7516,1712,7565,7516,7565,7564,1726,7564,7566,1726,7566,1730,1699,1692,1691,1689,1686,1785,1785,1680,1676,1659,1654,1650,1649,1645,1639,1639,1635,1630,1630,1629,6284,6285,6294,6295,7434,7517,7567,7323,7435,6315,7568,6322,6327,6327,6337,7437,7438,6351,7439,7569,7519,6362,6364,7440,7329,6379,6386,7441,7441,7442,6399,7520,7443,6403,6405,7333,6417,6425,6429,6439,7444,7336,6447,7521,6452,7446,7446,6462,7570,7447,7522,7339,7571,7449,6475,7450,7451,6486,7572,7523,6492,7573,7525,6507,6507,6513,7526,6522,6526,7527,6536,6541,7528,6548,7529,6555,6555,7454,7530,7530,6575,6583,7348,6594,7574,7348,7574,6583,7349,6600,7531,6605,6607,7532,6628,7533,7458,7459,6648,7534,7354,6672,6673,6673,6682,7355,7355,7535,7575,7463,7356,7536,7536,7464,7357,7357,7358,7537,6713,6722,6723,6731,6743,7576,7362,6751,6752,6755,6768,6775,7538,6785,6789,6793,6800,7577,6801,6811,6813,6814,6826,6828,7539,6839,7466,7540,6858,6859,6859,6871,6873,7365,7366,6882,6882,7367,7541,6899,7370,6907,7372,7542,6920,6920,7543,7469,7469,6930,7374,7375,6942,7377,6945,7470,6951,7471,6962,7472,7472,6966,7380,7544,6975,6978,6978,6983,6986,6994,7545,7002,7002,7475,7012,7012,7476,7018,7018,7027,7546,7547,7037,7383,7578,7479,7385,7061,7386,7065,7071,7481,7079,7081,7482,7088,7091,7098,7099,7099,7102,7548,7579,7121,7483,7390,7391,7143,7485,7151,7160,7580,7549,7170,7172,7394,7191,7487,7550,7208,7488,7397,7217,7219,7221,7399,7581,7551,7239,7239,7242,7243,7490,7403,7491,7582,7271,7553,7582,7553,5853,7271,7582,7583,7492,7493,7277,7584,7278,7279,7279,5910,7494,7585,7554,5927,7586,5932,7556,7586,7556,5947,5932,7586,7555,5952,7497,7498,7498,5969,7499,7587,5984,7287,5997,7588,7589,7589,5992,7557,7589,7557,5997,7590,7558,6000,7591,7559,6003,7592,7560,6006,7293,7561,7593,6021,6030,7294,6033,6041,6043,7594,7418,7298,7298,6072,6073,6073,7300,7595,7596,7562,7420,7420,7507,7508,7508,6104,6112,7422,7509,6124,7423,7424,6138,6147,7425,6162,6168,6172,7427,7309,6193,7512,7312,6223,6224,7597,6227,6236,7598,7513,6250,6250,7514,6263,7431,6274,6276,7599,7563,1737,7600,7564,7601,7600,7601,1711,7564,7600,7602,7566,7602,7603,7566,7603,1730,7602,7566,7564,7565,1711,7601,7565,7601,7564,1711,7565,1712,1690,1689,1785,1785,1676,1675,1650,1649,1639,1639,1630,6284,7322,7434,7567,7323,6315,7518,7568,6327,7437,7324,7438,7439,7569,6362,6364,6364,7329,7604,6374,6379,7441,7441,6399,7605,7520,6403,6405,6405,6417,6420,6423,6425,6439,7606,7444,6447,7521,7446,7570,7447,7339,7571,7450,6486,6488,7572,6492,7452,7573,6507,7526,6520,6522,7527,7607,6536,7528,6555,7530,6583,6594,6596,7608,7608,6583,7574,7608,7574,6594,6597,7349,7531,6605,7532,7351,6628,7458,7459,7459,7534,7609,6664,7354,6673,7463,7536,7357,7357,7537,7610,6728,6731,7576,6755,6775,6776,7611,7538,6789,6801,6813,7612,6814,6828,6831,6831,7539,7466,7540,6859,6873,7365,6882,7541,6893,6899,6907,7372,6920,7469,7469,7374,7375,7375,7377,6945,6945,6951,7471,7471,7472,7380,7380,7544,6978,6994,7002,7012,7012,7018,7546,7613,7547,7383,7614,7578,7385,7061,7065,7071,7081,7088,7090,7099,7548,7109,7579,7483,7390,7390,7143,7145,7485,7160,7486,7580,7170,7172,7172,7191,7193,7487,7208,7615,7488,7217,7219,7219,7399,7230,7616,7581,7239,7239,7243,7402,7617,7583,7582,7617,7582,5853,7583,7617,7491,7492,7277,7618,7279,7494,7619,7279,7619,7584,7494,7585,5927,5947,5949,7620,7620,7555,7586,7620,7586,5947,7587,7287,5992,7588,7621,7622,7622,5992,7589,7622,7589,7588,7623,7590,6000,7624,7591,6003,7625,7592,6006,7293,7593,7626,7626,6021,7294,6033,6043,7627,6052,7594,7298,7298,6073,7595,7596,7420,7508,7508,6112,6114,6114,7422,6124,7423,6138,6144,6147,6162,7628,6147,7628,6144,6166,6168,7427,7511,7309,7512,7312,6224,7313,7313,7597,6236,6250,6263,7629,6250,7629,7598,1737,1730,7630,1737,7630,7599,7631,7602,7632,7631,7632,1709,7602,7631,7633,7603,7633,7634,7603,7634,1730,7633,7603,7602,7600,1709,7632,7600,7632,7602,1709,7600,1711,1690,1785,7635,1690,7635,1691,1639,6284,7636,1639,7636,1650,7322,7567,7323,7518,7568,7437,7637,7569,6364,6364,7604,7638,6372,6374,7441,7441,7605,7639,7520,6405,6420,6423,6439,7640,7606,6447,7641,7521,7570,7642,7642,7447,7571,7572,7452,6497,7524,7573,7526,6520,7527,7643,7644,7607,7528,6548,6555,6583,6597,7531,6605,6605,7351,6612,7459,7609,6653,6653,6664,6673,7575,7463,7357,7357,7610,6713,7465,6728,7576,6755,6776,6778,7645,7611,6789,7646,6801,7612,7647,6814,6831,6831,7466,7648,7467,7540,6873,7372,7469,7375,6945,7471,7380,7380,6978,6986,6994,7012,7546,7383,7614,7385,7079,7081,7090,7099,7109,7111,7579,7390,7145,7485,7486,7580,7580,7172,7193,7487,7615,7209,7649,7488,7219,7219,7230,7232,7616,7239,7402,5853,5854,7650,7650,7491,7617,7650,7617,5853,7492,7618,7651,7652,7584,7619,7652,7619,7494,7584,7652,7653,7494,5927,7654,5949,7655,7656,7656,7555,7620,7656,7620,5949,7409,7587,5992,7621,7657,7658,7658,5992,7622,7658,7622,7621,7623,6000,7659,7623,7659,7660,7624,6003,7661,7624,7661,7662,6003,7625,6006,6011,7293,7626,7626,7294,6033,6052,7298,7595,7663,7596,7508,7508,6114,6124,7664,6144,7628,7664,7628,6162,6144,7664,7423,7510,6166,7427,7427,7511,7512,7313,6236,7315,6263,7319,7665,7665,7598,7629,7665,7629,6263,7666,7599,7630,7666,7630,1730,7599,7666,6276,1709,1704,7667,7667,7668,7669,7667,7669,1709,7633,7668,7670,7670,1730,7634,7670,7634,7633,7668,7633,7631,7631,1709,7669,7631,7669,7668,1675,1691,7635,1675,7635,1785,7671,1650,7636,7671,7636,6284,1650,7671,1659,7637,6364,7638,6372,7441,7639,7639,7520,6420,6423,7640,7606,7642,7571,6475,6497,7524,7526,6520,7643,6533,7644,7528,6548,6548,6583,7608,6548,7608,6596,6597,6605,6612,6653,6673,7355,7575,7357,6713,6723,7465,7576,6755,6778,7645,7645,6789,6792,7646,7612,7672,7647,6831,7648,7467,6873,7673,7372,7375,6945,6945,7380,6986,6994,7546,7674,7383,7385,7049,7079,7090,7675,7099,7111,7113,7579,7145,7147,7580,7193,7676,7487,7209,7395,7649,7219,7232,7232,7616,7402,5854,7492,7677,7677,7491,7650,7677,7650,5854,7492,7651,7678,7679,7653,7652,7679,7652,7494,7653,7679,7680,7494,7654,7555,7655,7681,7682,7682,7555,7656,7682,7656,7655,7683,5992,7658,7683,7658,7657,5992,7683,7409,7684,7660,7659,7684,7659,6000,7660,7684,7685,7686,7662,7661,7686,7661,6003,7662,7686,7687,6003,6006,7415,6011,7626,6033,6050,6052,7595,7688,7663,7508,7508,6124,6126,6162,7510,7689,6162,7689,7690,7664,7690,7691,7664,7691,7423,7690,7664,6162,7427,7512,7692,7427,7692,7510,7312,7313,7315,7693,7598,7665,7693,7665,7319,7598,7693,7315,7694,6276,7666,7694,7666,1730,6276,7694,7431,1704,1702,7695,7695,7696,7697,7695,7697,1704,7668,7696,7698,7698,1730,7670,7698,7670,7668,7696,7668,7667,7667,1704,7697,7667,7697,7696,1691,1675,7699,1691,7699,1699,7700,1659,7671,7700,7671,6284,1659,7700,1660,7637,7638,6372,7639,6420,6422,6423,7606,7641,7642,6475,7450,7572,6497,7526,6520,6533,7345,7644,6548,6596,6597,6612,7701,6653,7355,7575,6713,6723,7702,6713,7702,7575,6723,7576,7362,6755,7645,6792,7646,7672,7647,7467,7673,7365,6911,7372,6945,6945,6986,6989,7381,6994,7674,7383,7049,7061,7079,7675,7703,7579,7147,7485,7485,7580,7676,7487,7395,7704,7704,7649,7232,7232,7402,7252,7492,7678,7705,7492,7705,7706,7677,7706,7707,7677,7707,7491,7706,7677,7492,7494,7555,7708,7494,7708,7709,7679,7709,7710,7679,7710,7680,7709,7679,7494,7681,7283,7711,7711,7555,7682,7711,7682,7681,7712,7409,7683,7683,7657,7713,7683,7713,7712,7409,7712,7714,7409,7714,7499,7715,7685,7684,7715,7684,6000,7685,7715,7716,7717,7687,7686,7717,7686,6003,7687,7717,7718,6003,7415,7719,7719,6011,6033,6050,7595,7720,7688,7508,6126,7721,7510,7692,7721,7692,7512,7510,7721,7722,7690,7722,7723,7723,7423,7691,7723,7691,7690,7722,7690,7689,7722,7689,7510,7724,7315,7693,7724,7693,7319,7315,7724,7312,7725,7431,7694,7725,7694,1730,7431,7725,7319,1702,1701,7726,7726,7727,7728,7726,7728,1702,7696,7727,7729,7729,1730,7698,7729,7698,7696,7727,7696,7695,7695,1702,7728,7695,7728,7727,1675,1674,7730,7730,1699,7699,7730,7699,1675,7731,1660,7700,7700,6284,7732,7700,7732,7731,1660,7731,7733,1660,7733,1662,6372,7639,6422,6422,6423,7641,7642,7450,6488,6488,7572,7526,7734,6520,7345,7345,7644,6596,7735,6597,7701,7736,7575,7702,7736,7702,6723,7575,7736,6653,6723,7362,6752,6755,6792,6793,7646,7647,7648,7467,7365,7541,6911,6945,6989,7381,7674,7613,7079,7703,7737,7485,7676,7194,7196,7487,7704,7704,7232,7252,7678,7738,7739,7739,7740,7741,7739,7741,7678,7706,7740,7742,7742,7491,7707,7742,7707,7706,7740,7706,7705,7705,7678,7741,7705,7741,7740,7711,7743,7744,7711,7744,7555,7743,7711,7283,7745,7555,7744,7745,7744,7743,7709,7745,7746,7746,7680,7710,7746,7710,7709,7745,7709,7708,7745,7708,7555,7747,7499,7714,7747,7714,7712,7748,7712,7713,7748,7713,7657,7712,7748,7747,7499,7747,7749,7499,7749,7498,7750,7716,7715,7750,7715,6000,7716,7750,7751,7752,7718,7717,7752,7717,6003,7718,7752,7753,6003,7719,6033,6050,7720,7754,7754,7688,6126,7755,7722,7756,7755,7756,7429,7722,7755,7757,7723,7757,7758,7723,7758,7423,7757,7723,7722,7721,7429,7756,7721,7756,7722,7429,7721,7512,7759,7319,7725,7725,1730,7760,7725,7760,7759,7724,7759,7761,7724,7761,7312,7759,7724,7319,1674,1672,7762,7762,1699,7730,7762,7730,1674,7731,7763,7764,7764,1662,7733,7764,7733,7731,7763,7731,7732,7763,7732,6284,6372,6422,7641,6488,7526,7765,7734,7345,6596,7766,7735,7701,6723,6752,7767,6723,7767,7768,7736,7768,7769,7736,7769,6653,7768,7736,6723,6755,6793,7577,7467,7541,6893,6909,6911,6989,7381,7613,7383,7071,7079,7737,7485,7194,7196,7196,7704,7252,7738,7770,7771,7771,7772,7773,7771,7773,7738,7740,7772,7774,7774,7491,7742,7774,7742,7740,7772,7740,7739,7739,7738,7773,7739,7773,7772,7746,7775,7776,7746,7776,7680,7775,7746,7745,7777,7745,7743,7777,7743,7283,7745,7777,7775,7778,7680,7776,7778,7776,7775,7680,7778,7779,7657,7780,7781,7781,7782,7783,7781,7783,7657,7747,7782,7784,7784,7498,7749,7784,7749,7747,7782,7747,7748,7748,7657,7783,7748,7783,7782,7785,7751,7750,7785,7750,6000,7751,7785,7786,7787,7753,7752,7787,7752,6003,7753,7787,7788,6033,7627,7789,6033,7789,6003,6050,7754,6126,7429,7311,7790,7790,7791,7792,7790,7792,7429,7757,7791,7793,7793,7423,7758,7793,7758,7757,7791,7757,7755,7755,7429,7792,7755,7792,7791,7794,1730,7729,7794,7729,7727,7794,7795,7796,7794,7796,1730,7797,7727,7726,7797,7726,1701,7727,7797,7798,7794,7798,7799,7794,7799,7795,7798,7794,7727,7800,7759,7801,7800,7801,7795,7759,7800,7802,7761,7802,7803,7761,7803,7312,7802,7761,7759,7760,7795,7801,7760,7801,7759,7760,1730,7796,7760,7796,7795,1672,1671,7804,7804,1699,7762,7804,7762,1672,7764,6285,7805,7764,7805,1662,6285,7764,7763,6372,7641,7806,6372,7806,7637,6488,7765,7807,6519,7734,6596,6596,7766,7701,6752,6754,7808,7808,7809,7810,7808,7810,6752,7768,7809,7811,7811,6653,7769,7811,7769,7768,7809,7768,7767,7767,6752,7810,7767,7810,7809,6754,6755,7577,6909,6989,6991,6991,7381,7383,7061,7071,7737,7485,7196,7252,7770,5878,7812,7812,7813,7814,7812,7814,7770,7772,7813,7815,7815,7491,7774,7815,7774,7772,7813,7772,7771,7771,7770,7814,7771,7814,7813,7283,5952,7816,7816,7817,7818,7816,7818,7283,7775,7817,7819,7819,7779,7778,7819,7778,7775,7817,7775,7777,7777,7283,7818,7777,7818,7817,7780,7820,7821,7821,7822,7823,7821,7823,7780,7782,7822,7824,7824,7498,7784,7824,7784,7782,7822,7782,7781,7781,7780,7823,7781,7823,7822,7825,7786,7785,7825,7785,6000,7786,7825,7826,7827,7788,7787,7827,7787,6003,7788,7827,7828,7627,7417,7829,7829,6003,7789,7829,7789,7627,6047,6050,6126,7311,6207,7830,7830,7831,7832,7830,7832,7311,7791,7831,7833,7833,7423,7793,7833,7793,7791,7831,7791,7790,7790,7311,7832,7790,7832,7831,1701,1700,7834,7834,7835,7836,7834,7836,1701,7837,7835,7838,7838,7839,7840,7838,7840,7837,7835,7837,7841,7841,1701,7836,7841,7836,7835,7795,7839,7842,7842,7843,7844,7842,7844,7795,7802,7843,7845,7845,7312,7803,7845,7803,7802,7843,7802,7800,7800,7795,7844,7800,7844,7843,7839,7795,7799,7799,7798,7846,7799,7846,7839,7837,7798,7797,7797,1701,7841,7797,7841,7837,7798,7837,7840,7840,7839,7846,7840,7846,7798,1671,1668,7847,1671,7847,7848,7804,7848,7849,7804,7849,1699,7848,7804,1671,7850,1662,7805,7805,6285,7851,7805,7851,7850,1662,7850,7852,1662,7852,1665,7853,7637,7806,7853,7806,7641,7637,7853,7439,6519,6596,7854,6519,7854,6517,6596,7701,7855,6754,7577,7856,6754,7856,7857,7809,7857,7858,7858,6653,7811,7858,7811,7809,7857,7809,7808,7857,7808,6754,6907,6909,6991,7061,7737,7859,7579,7485,7252,5878,5880,7860,7860,7861,7862,7860,7862,5878,7813,7861,7863,7863,7491,7815,7863,7815,7813,7861,7813,7812,7812,5878,7862,7812,7862,7861,5952,7498,7864,7864,7865,7866,7864,7866,5952,7817,7865,7867,7867,7779,7819,7867,7819,7817,7865,7817,7816,7816,5952,7866,7816,7866,7865,7820,7868,7869,7869,7870,7871,7869,7871,7820,7822,7870,7872,7872,7498,7824,7872,7824,7822,7870,7822,7821,7821,7820,7871,7821,7871,7870,7873,7826,7825,7873,7825,6000,7826,7873,7874,7875,7828,7827,7875,7827,6003,7828,7875,7876,7417,7505,7877,7877,6003,7829,7877,7829,7417,7878,6047,6126,6207,6212,7879,7879,7880,7881,7879,7881,6207,7831,7880,7882,7882,7423,7833,7882,7833,7831,7880,7831,7830,7830,6207,7881,7830,7881,7880,7849,7883,7884,7849,7884,1699,7883,7849,7848,7885,7848,7847,7885,7847,1668,7848,7885,7883,7886,1699,7884,7886,7884,7883,1699,7886,1700,7850,6295,7887,7887,1665,7852,7887,7852,7850,6295,7850,7851,6295,7851,6285,7853,7888,7889,7853,7889,7439,7888,7853,7641,7890,6517,7854,7890,7854,6596,6517,7890,7807,6596,7855,6613,7577,7646,7891,7891,7892,7893,7891,7893,7577,7857,7892,7894,7894,6653,7858,7894,7858,7857,7892,7857,7856,7856,7577,7893,7856,7893,7892,6991,7383,7895,6991,7895,6907,7061,7859,7091,7896,7579,7252,5880,7897,7898,7898,7899,7900,7898,7900,5880,7861,7899,7901,7901,7491,7863,7901,7863,7861,7899,7861,7860,7860,5880,7900,7860,7900,7899,7870,7902,7903,7903,7498,7872,7903,7872,7870,7904,7870,7869,7904,7869,7868,7870,7904,7902,7905,7903,7906,7905,7906,7907,7903,7905,7498,7903,7902,7908,7908,7907,7906,7908,7906,7903,7909,7865,7910,7909,7910,7907,7865,7909,7911,7867,7911,7912,7867,7912,7779,7911,7867,7865,7910,7864,7913,7910,7913,7907,7864,7910,7865,7864,7498,7905,7905,7907,7913,7905,7913,7864,7914,7874,7873,7914,7873,6000,7874,7914,7915,7916,7876,7875,7916,7875,6003,7876,7916,7917,7505,7878,6126,6212,7312,7918,7918,7919,7920,7918,7920,6212,7880,7919,7921,7921,7423,7882,7921,7882,7880,7919,7880,7879,7879,6212,7920,7879,7920,7919,7886,7922,7923,7886,7923,1700,7922,7886,7883,7924,7883,7885,7924,7885,1668,7883,7924,7922,7925,1700,7923,7925,7923,7922,1700,7925,7926,7927,7928,7929,7927,7929,7926,7928,7927,7930,7931,7930,7932,7931,7932,7933,7930,7931,7928,7934,7926,7929,7934,7929,7928,7926,7934,1700,7839,7933,7935,7839,7935,7936,7937,7936,7938,7937,7938,7939,7936,7937,7839,7843,7939,7940,7843,7940,7941,7941,7312,7845,7941,7845,7843,7939,7843,7842,7842,7839,7937,7842,7937,7939,7933,7839,7838,7933,7838,7835,7928,7835,7834,7834,1700,7934,7834,7934,7928,7835,7928,7931,7835,7931,7933,6295,7322,7942,7942,1665,7887,7942,7887,6295,7889,7943,7944,7889,7944,7439,7943,7889,7888,7890,6613,7945,7890,7945,7807,6613,7890,6596,7646,7648,7946,7946,7947,7948,7946,7948,7646,7892,7947,7949,7949,6653,7894,7949,7894,7892,7947,7892,7891,7891,7646,7948,7891,7948,7947,7950,6907,7895,7950,7895,7383,6907,7950,6893,7061,7091,7099,7120,7896,7252,7897,7404,7951,7951,7952,7953,7951,7953,7897,7899,7952,7954,7954,7491,7901,7954,7901,7899,7952,7899,7898,7898,7897,7953,7898,7953,7952,7955,7911,7956,7955,7956,7957,7911,7955,7958,7912,7958,7959,7912,7959,7779,7958,7912,7911,7909,7957,7956,7909,7956,7911,7957,7909,7907,7908,7960,7961,7908,7961,7907,7960,7908,7902,7962,7902,7904,7962,7904,7868,7902,7962,7960,7963,7907,7961,7963,7961,7960,7907,7963,7957,7959,7964,7965,7959,7965,7779,7964,7959,7958,7966,7958,7955,7966,7955,7957,7958,7966,7964,7967,7779,7965,7967,7965,7964,7779,7967,7968,7969,7915,7914,7914,6000,7970,7914,7970,7969,7915,7969,7971,7915,7971,7972,7973,7917,7916,7916,6003,7974,7916,7974,7973,7917,7973,7975,7917,7975,7976,7505,6126,7977,7977,6003,7877,7977,7877,7505,7978,7939,7979,7979,7980,7981,7979,7981,7978,7941,7978,7982,7941,7982,7312,7978,7941,7940,7978,7940,7939,7979,7936,7983,7979,7983,7980,7979,7939,7938,7979,7938,7936,7984,7936,7935,7984,7935,7933,7984,7980,7983,7984,7983,7936,7930,7985,7986,7986,7933,7932,7986,7932,7930,7985,7930,7927,7985,7927,7926,7987,7926,7925,7987,7925,7922,7988,7922,7924,7988,7924,1668,7922,7988,7987,7926,7987,7989,7926,7989,7985,7986,7990,7991,7986,7991,7933,7986,7985,7992,7986,7992,7990,7984,7990,7993,7984,7993,7980,7984,7933,7991,7984,7991,7990,7994,7995,7996,7994,7996,7978,7994,7997,7998,7994,7998,7995,7982,7995,7999,7982,7999,7312,7982,7978,7996,7982,7996,7995,7981,8000,8001,7981,8001,7978,7981,7980,8002,7981,8002,8000,7994,8000,8003,7994,8003,7997,7994,7978,8001,7994,8001,8000,8004,8005,8006,8004,8006,7919,8004,7997,8007,8004,8007,8005,7921,8005,8008,7921,8008,7423,7921,7919,8006,7921,8006,8005,7918,7995,8009,7918,8009,7919,7918,7312,7999,7918,7999,7995,8004,7995,7998,8004,7998,7997,8004,7919,8009,8004,8009,7995,8010,1665,7942,8010,7942,7322,1665,8010,1666,7943,8011,8012,8012,7439,7944,8012,7944,7943,8013,7807,7945,8013,7945,6613,7807,8013,6488,7648,8014,8015,8015,8016,8017,8015,8017,7648,7947,8016,8018,8018,6653,7949,8018,7949,7947,8016,7947,7946,7946,7648,8017,7946,8017,8016,7061,7099,8019,7061,8019,7383,7120,7252,8020,7120,8020,7116,7404,5888,8021,8021,8022,8023,8021,8023,7404,7952,8022,8024,8024,7491,7954,8024,7954,7952,8022,7952,7951,7951,7404,8023,7951,8023,8022,8025,7964,8026,8025,8026,8027,7964,8025,8028,7967,8028,8029,7967,8029,7968,8028,7967,7964,7966,8027,8026,7966,8026,7964,8027,7966,7957,7963,8030,8031,7963,8031,7957,8030,7963,7960,8032,7960,7962,8032,7962,7868,7960,8032,8030,8033,7957,8031,8033,8031,8030,7957,8033,8027,8029,8034,8035,8029,8035,7968,8034,8029,8028,8036,8028,8025,8036,8025,8027,8028,8036,8034,8037,7968,8035,8037,8035,8034,7968,8037,8038,8039,7972,7971,8039,7971,7969,8040,7969,7970,8040,7970,6000,7969,8040,8039,7972,8039,8041,7972,8041,7868,8042,7976,7975,8042,7975,7973,8043,7973,7974,8043,7974,6003,7973,8043,8042,7976,8042,8044,7976,8044,8045,7977,7423,8046,7977,8046,6003,7423,7977,6126,1668,1666,8047,8047,8048,8049,8047,8049,1668,8050,8048,8051,8051,8052,8053,8051,8053,8050,8048,8050,8054,8054,1668,8049,8054,8049,8048,8055,8052,8056,8056,8057,8058,8056,8058,8055,8059,8057,8060,8060,8061,8062,8060,8062,8059,8057,8059,8063,8063,8055,8058,8063,8058,8057,8052,8055,8064,8064,8065,8066,8064,8066,8052,8050,8065,8067,8067,1668,8054,8067,8054,8050,8065,8050,8053,8053,8052,8066,8053,8066,8065,7980,8061,8068,8068,8069,8070,8068,8070,7980,8071,8069,8072,8072,8073,8074,8072,8074,8071,8069,8071,8075,8075,7980,8070,8075,8070,8069,7997,8073,8076,8076,8077,8078,8076,8078,7997,8005,8077,8079,8079,7423,8008,8079,8008,8005,8077,8005,8007,8007,7997,8078,8007,8078,8077,8073,7997,8003,8003,8000,8080,8003,8080,8073,8071,8000,8002,8002,7980,8075,8002,8075,8071,8000,8071,8074,8074,8073,8080,8074,8080,8000,8061,7980,7993,7993,7990,8081,7993,8081,8061,8082,7990,7992,7992,7985,8083,7992,8083,8082,7990,8082,8084,8084,8061,8081,8084,8081,7990,8055,7985,7989,7989,7987,8085,7989,8085,8055,8065,7987,7988,7988,1668,8067,7988,8067,8065,7987,8065,8064,8064,8055,8085,8064,8085,7987,7985,8055,8063,8063,8059,8086,8063,8086,7985,8082,8059,8062,8062,8061,8084,8062,8084,8082,8059,8082,8083,8083,7985,8086,8083,8086,8059,7322,7323,8087,8087,1666,8010,8087,8010,7322,8011,7521,8088,8088,7439,8012,8088,8012,8011,8013,6615,8089,8013,8089,6488,6615,8013,6613,8014,7364,8090,8090,8091,8092,8090,8092,8014,8016,8091,8093,8093,6653,8018,8093,8018,8016,8091,8016,8015,8015,8014,8092,8015,8092,8091,7099,7113,8094,8094,7383,8019,8094,8019,7099,8095,7116,8020,8095,8020,7252,7116,8095,7113,8096,7868,8041,8096,8041,8039,7868,8096,8097,8098,8039,8040,8040,6000,8099,8040,8099,8098,8096,8098,8100,8096,8100,8097,8098,8096,8039,8101,8102,8103,8103,8097,8104,8103,8104,8101,8105,8101,8106,8105,8106,8107,8101,8105,8102,8108,8097,8103,8108,8103,8102,8097,8108,7868,8109,8027,8110,8110,8107,8111,8110,8111,8109,8112,8109,8113,8112,8113,8114,8109,8112,8027,8034,8114,8115,8034,8115,8116,8037,8116,8117,8037,8117,8038,8116,8037,8034,8114,8034,8036,8036,8027,8112,8036,8112,8114,8033,8107,8110,8033,8110,8027,8107,8033,8030,8102,8030,8032,8032,7868,8108,8032,8108,8102,8030,8102,8105,8030,8105,8107,8044,8118,8119,8044,8119,8045,8118,8044,8042,8120,8042,8043,8120,8043,6003,8042,8120,8118,8121,8045,8119,8121,8119,8118,8045,8121,8122,8123,8073,8124,8124,8125,8126,8124,8126,8123,8127,8125,8128,8128,8129,8130,8128,8130,8127,8125,8127,8131,8131,8123,8126,8131,8126,8125,8132,8077,8133,8133,8123,8134,8133,8134,8132,8079,8132,8135,8079,8135,7423,8132,8079,8077,8073,8123,8133,8133,8077,8076,8133,8076,8073,8136,8129,8128,8136,8128,8125,8129,8136,8061,8069,8125,8124,8124,8073,8072,8124,8072,8069,8136,8069,8068,8136,8068,8061,8069,8136,8125,8052,8137,8138,8138,8139,8140,8138,8140,8052,8057,8139,8141,8141,8061,8060,8141,8060,8057,8140,8057,8056,8140,8056,8052,8057,8140,8139,8142,8052,8051,8142,8051,8048,8052,8142,8137,8143,8048,8047,8047,1666,8144,8047,8144,8143,8142,8143,8145,8142,8145,8137,8143,8142,8048,8146,8061,8141,8146,8141,8139,8061,8146,8129,8147,8139,8138,8138,8137,8148,8138,8148,8147,8146,8147,8149,8146,8149,8129,8147,8146,8139,8123,8150,8151,8151,8152,8153,8151,8153,8123,8132,8152,8154,8154,7423,8135,8154,8135,8132,8153,8132,8134,8153,8134,8123,8132,8153,8152,8127,8155,8156,8156,8123,8131,8156,8131,8127,8157,8127,8130,8157,8130,8129,8127,8157,8155,8150,8123,8156,8156,8155,8158,8156,8158,8150,8154,8159,8160,8154,8160,7423,8159,8154,8152,8159,6003,8046,8046,7423,8160,8046,8160,8159,8161,8152,8151,8151,8150,8162,8151,8162,8161,8159,8161,8163,8159,8163,6003,8161,8159,8152,7323,7518,8164,8164,1666,8087,8164,8087,7323,7521,7642,8165,7521,8165,8166,8088,8166,8167,8088,8167,7439,8166,8088,7521,8168,6488,8089,8089,6615,8169,8089,8169,8168,6488,8168,8170,6488,8170,7642,8171,7113,8095,8095,7252,8172,8095,8172,8171,8094,8171,8173,8094,8173,7383,8171,8094,7113,6000,8174,8175,6000,8175,8176,8177,8176,8178,8178,8179,8180,8178,8180,8177,8176,8177,8181,8176,8181,6000,8182,8179,8183,8183,8184,8185,8183,8185,8182,8186,8184,8187,8187,8188,8189,8187,8189,8186,8184,8186,8190,8190,8182,8185,8190,8185,8184,8179,8182,8191,8191,8192,8193,8191,8193,8179,8177,8192,8194,8194,6000,8181,8194,8181,8177,8192,8177,8180,8180,8179,8193,8180,8193,8192,8107,8188,8195,8195,8196,8197,8195,8197,8107,8198,8196,8199,8199,8200,8201,8199,8201,8198,8196,8198,8202,8202,8107,8197,8202,8197,8196,8114,8200,8203,8203,8204,8205,8203,8205,8114,8116,8204,8206,8206,8038,8117,8206,8117,8116,8204,8116,8115,8115,8114,8205,8115,8205,8204,8200,8114,8113,8113,8109,8207,8113,8207,8200,8198,8109,8111,8111,8107,8202,8111,8202,8198,8109,8198,8201,8201,8200,8207,8201,8207,8109,8188,8107,8106,8106,8101,8208,8106,8208,8188,8209,8101,8104,8104,8097,8210,8104,8210,8209,8101,8209,8211,8211,8188,8208,8211,8208,8101,8182,8097,8100,8100,8098,8212,8100,8212,8182,8192,8098,8099,8099,6000,8194,8099,8194,8192,8098,8192,8191,8191,8182,8212,8191,8212,8098,8097,8182,8190,8190,8186,8213,8190,8213,8097,8209,8186,8189,8189,8188,8211,8189,8211,8209,8186,8209,8210,8210,8097,8213,8210,8213,8186,8121,8214,8215,8121,8215,8122,8214,8121,8118,8216,8118,8120,8216,8120,6003,8118,8216,8214,8217,8122,8215,8217,8215,8214,8122,8217,8218,8219,1666,8164,8164,7518,8220,8164,8220,8219,8221,8219,8222,8221,8222,8223,8219,8221,1666,8224,8223,8225,8224,8225,8226,8227,8226,8228,8228,8229,8230,8228,8230,8227,8226,8227,8231,8226,8231,8224,8223,8224,8232,8223,8232,8233,8221,8233,8234,8221,8234,1666,8233,8221,8223,8129,8229,8235,8129,8235,8236,8237,8236,8238,8238,8239,8240,8238,8240,8237,8236,8237,8241,8236,8241,8129,8150,8239,8242,8242,8243,8244,8242,8244,8150,8161,8243,8245,8245,6003,8163,8245,8163,8161,8243,8161,8162,8162,8150,8244,8162,8244,8243,8239,8150,8158,8158,8155,8246,8158,8246,8239,8237,8155,8157,8157,8129,8241,8157,8241,8237,8155,8237,8240,8240,8239,8246,8240,8246,8155,8229,8129,8149,8229,8149,8147,8247,8147,8148,8148,8137,8248,8148,8248,8247,8147,8247,8249,8147,8249,8229,8224,8137,8145,8145,8143,8250,8145,8250,8224,8233,8143,8144,8144,1666,8234,8144,8234,8233,8143,8233,8232,8232,8224,8250,8232,8250,8143,8137,8224,8231,8137,8231,8227,8247,8227,8230,8230,8229,8249,8230,8249,8247,8227,8247,8248,8227,8248,8137,8251,8168,8252,8251,8252,6617,8168,8251,8253,8170,8253,8254,8170,8254,7642,8253,8170,8168,8169,6617,8252,8169,8252,8168,6617,8169,6615,8171,7552,8255,8171,8255,8256,8173,8256,8257,8173,8257,7383,8256,8173,8171,7552,8171,8172,7552,8172,7252,8174,8258,8259,8174,8259,8260,8261,8260,8262,8262,8263,8264,8262,8264,8261,8260,8261,8265,8260,8265,8174,8266,8263,8267,8267,8268,8269,8267,8269,8266,8270,8268,8271,8271,8272,8273,8271,8273,8270,8268,8270,8274,8274,8266,8269,8274,8269,8268,8263,8266,8275,8275,8276,8277,8275,8277,8263,8261,8276,8278,8278,8174,8265,8278,8265,8261,8276,8261,8264,8264,8263,8277,8264,8277,8276,8188,8272,8279,8279,8280,8281,8279,8281,8188,8282,8280,8283,8283,8284,8285,8283,8285,8282,8280,8282,8286,8286,8188,8281,8286,8281,8280,8200,8284,8287,8287,8288,8289,8287,8289,8200,8204,8288,8290,8290,8038,8206,8290,8206,8204,8288,8204,8203,8203,8200,8289,8203,8289,8288,8284,8200,8199,8199,8196,8291,8199,8291,8284,8282,8196,8195,8195,8188,8286,8195,8286,8282,8196,8282,8285,8285,8284,8291,8285,8291,8196,8272,8188,8187,8187,8184,8292,8187,8292,8272,8293,8184,8183,8183,8179,8294,8183,8294,8293,8184,8293,8295,8295,8272,8292,8295,8292,8184,8266,8179,8178,8178,8176,8296,8178,8296,8266,8276,8176,8175,8175,8174,8278,8175,8278,8276,8176,8276,8275,8275,8266,8296,8275,8296,8176,8179,8266,8274,8274,8270,8297,8274,8297,8179,8293,8270,8273,8273,8272,8295,8273,8295,8293,8270,8293,8294,8294,8179,8297,8294,8297,8270,8217,8298,8299,8217,8299,8218,8298,8217,8214,8300,8214,8216,8300,8216,6003,8214,8300,8298,8301,8218,8299,8301,8299,8298,8218,8301,8302,8303,7437,8304,8303,8304,8305,7437,8303,7518,8306,8305,8307,8307,8308,8309,8307,8309,8306,8303,8306,8310,8303,8310,7518,8306,8303,8305,8311,8308,8312,8312,8313,8314,8312,8314,8311,8315,8313,8316,8316,8317,8318,8316,8318,8315,8314,8315,8319,8314,8319,8311,8315,8314,8313,8320,8311,8321,8320,8321,8322,8311,8320,8308,8306,8322,8323,8323,7518,8310,8323,8310,8306,8320,8306,8309,8320,8309,8308,8306,8320,8322,8324,8239,8325,8325,8326,8327,8325,8327,8324,8328,8326,8329,8329,8317,8330,8329,8330,8328,8326,8328,8331,8331,8324,8327,8331,8327,8326,8332,8243,8333,8333,8324,8334,8333,8334,8332,8245,8332,8335,8245,8335,6003,8332,8245,8243,8239,8324,8333,8333,8243,8242,8333,8242,8239,8229,8317,8329,8329,8326,8336,8329,8336,8229,8236,8326,8325,8325,8239,8238,8325,8238,8236,8336,8236,8235,8336,8235,8229,8236,8336,8326,8337,8229,8228,8337,8228,8226,8229,8337,8317,8338,8226,8225,8225,8223,8339,8225,8339,8338,8337,8338,8340,8337,8340,8317,8338,8337,8226,8311,8223,8222,8222,8219,8341,8222,8341,8311,8322,8219,8220,8220,7518,8323,8220,8323,8322,8219,8322,8321,8321,8311,8341,8321,8341,8219,8315,8338,8342,8342,8311,8319,8342,8319,8315,8340,8315,8318,8340,8318,8317,8315,8340,8338,8223,8311,8342,8342,8338,8339,8342,8339,8223,8343,8253,8344,8343,8344,8345,8253,8343,8346,8254,8346,8347,8254,8347,7642,8346,8254,8253,8251,8345,8344,8251,8344,8253,8345,8251,6617,8348,7383,8257,8348,8257,8256,8349,8256,8255,8349,8255,7552,8256,8349,8348,7383,8348,8350,8350,6893,7950,8350,7950,7383,8258,8302,8351,8258,8351,8352,8353,8352,8354,8354,8355,8356,8354,8356,8353,8352,8353,8357,8352,8357,8258,8358,8355,8359,8359,8360,8361,8359,8361,8358,8362,8360,8363,8363,8364,8365,8363,8365,8362,8360,8362,8366,8366,8358,8361,8366,8361,8360,8355,8358,8367,8367,8368,8369,8367,8369,8355,8353,8368,8370,8370,8258,8357,8370,8357,8353,8368,8353,8356,8356,8355,8369,8356,8369,8368,8272,8364,8371,8371,8372,8373,8371,8373,8272,8374,8372,8375,8375,8376,8377,8375,8377,8374,8372,8374,8378,8378,8272,8373,8378,8373,8372,8284,8376,8379,8379,8380,8381,8379,8381,8284,8288,8380,8382,8382,8038,8290,8382,8290,8288,8380,8288,8287,8287,8284,8381,8287,8381,8380,8376,8284,8283,8283,8280,8383,8283,8383,8376,8374,8280,8279,8279,8272,8378,8279,8378,8374,8280,8374,8377,8377,8376,8383,8377,8383,8280,8364,8272,8271,8271,8268,8384,8271,8384,8364,8385,8268,8267,8267,8263,8386,8267,8386,8385,8268,8385,8387,8387,8364,8384,8387,8384,8268,8358,8263,8262,8262,8260,8388,8262,8388,8358,8368,8260,8259,8259,8258,8370,8259,8370,8368,8260,8368,8367,8367,8358,8388,8367,8388,8260,8263,8358,8366,8366,8362,8389,8366,8389,8263,8385,8362,8365,8365,8364,8387,8365,8387,8385,8362,8385,8386,8386,8263,8389,8386,8389,8362,8390,8298,8391,8391,8332,8392,8391,8392,8390,8301,8390,8393,8301,8393,8302,8390,8301,8298,8300,8335,8394,8300,8394,8298,8335,8300,6003,8335,8332,8391,8391,8298,8394,8391,8394,8335,8395,8334,8396,8395,8396,8397,8334,8395,8332,8334,8324,8398,8398,8397,8396,8398,8396,8334,8390,8397,8399,8399,8302,8393,8399,8393,8390,8395,8390,8392,8395,8392,8332,8390,8395,8397,8400,8331,8401,8400,8401,8402,8331,8400,8324,8331,8328,8403,8403,8402,8401,8403,8401,8331,8404,8328,8330,8330,8317,8405,8330,8405,8404,8403,8404,8406,8403,8406,8402,8404,8403,8328,8407,8397,8408,8408,8402,8409,8408,8409,8407,8399,8407,8410,8399,8410,8302,8407,8399,8397,8400,8408,8411,8400,8411,8324,8408,8400,8402,8408,8397,8398,8398,8324,8411,8398,8411,8408,8412,8413,8414,8412,8414,8313,8413,8412,8415,8413,8317,8316,8316,8313,8414,8316,8414,8413,8416,8313,8312,8312,8308,8417,8312,8417,8416,8412,8416,8418,8412,8418,8415,8416,8412,8313,8419,8308,8307,8307,8305,8420,8307,8420,8419,8421,8305,8304,8304,7437,8422,8304,8422,8421,8305,8421,8423,8423,8419,8420,8423,8420,8305,8308,8419,8424,8424,8425,8426,8424,8426,8308,8416,8425,8427,8427,8415,8418,8427,8418,8416,8425,8416,8417,8417,8308,8426,8417,8426,8425,8428,8413,8429,8428,8429,8430,8413,8428,8317,8413,8415,8431,8431,8430,8429,8431,8429,8413,8432,8430,8433,8433,8434,8435,8433,8435,8432,8428,8432,8436,8428,8436,8317,8432,8428,8430,8402,8434,8437,8437,8438,8439,8437,8439,8402,8407,8438,8440,8440,8302,8410,8440,8410,8407,8438,8407,8409,8409,8402,8439,8409,8439,8438,8441,8402,8406,8441,8406,8404,8402,8441,8434,8432,8404,8405,8405,8317,8436,8405,8436,8432,8441,8432,8435,8441,8435,8434,8432,8441,8404,8442,8346,8443,8443,6618,8444,8443,8444,8442,8347,8442,8445,8347,8445,7642,8442,8347,8346,8343,6618,8443,8343,8443,8346,6618,8343,8345,8350,8446,8447,8350,8447,6893,8446,8350,8348,8448,8348,8349,8448,8349,7552,8348,8448,8446,8449,6893,8447,8449,8447,8446,6893,8449,7467,8450,8451,8452,8452,8453,8454,8452,8454,8450,8455,8450,8456,8455,8456,8364,8450,8455,8451,8457,8458,8459,8457,8459,8451,8458,8457,8415,8458,8453,8452,8452,8451,8459,8452,8459,8458,8460,8461,8462,8460,8462,8463,8461,8460,8453,8461,8464,8465,8465,8463,8462,8465,8462,8461,8450,8463,8466,8466,8364,8456,8466,8456,8450,8460,8450,8454,8460,8454,8453,8450,8460,8463,8467,8468,8469,8467,8469,8376,8468,8467,8464,8468,8470,8471,8471,8376,8469,8471,8469,8468,8380,8470,8472,8472,8038,8382,8472,8382,8380,8471,8380,8379,8471,8379,8376,8380,8471,8470,8372,8463,8473,8473,8376,8375,8473,8375,8372,8466,8372,8371,8466,8371,8364,8372,8466,8463,8465,8467,8474,8465,8474,8463,8467,8465,8464,8467,8376,8473,8473,8463,8474,8473,8474,8467,8475,8476,8477,8475,8477,8478,8476,8475,8355,8476,8434,8479,8479,8478,8477,8479,8477,8476,8360,8478,8480,8480,8364,8363,8480,8363,8360,8475,8360,8359,8475,8359,8355,8360,8475,8478,8352,8438,8481,8481,8355,8354,8481,8354,8352,8440,8352,8351,8440,8351,8302,8352,8440,8438,8437,8476,8482,8437,8482,8438,8476,8437,8434,8476,8355,8481,8481,8438,8482,8481,8482,8476,8483,8430,8484,8484,8451,8485,8484,8485,8483,8433,8483,8486,8433,8486,8434,8483,8433,8430,8431,8457,8487,8431,8487,8430,8457,8431,8415,8457,8451,8484,8484,8430,8487,8484,8487,8457,8488,8455,8489,8488,8489,8478,8455,8488,8451,8455,8364,8480,8480,8478,8489,8480,8489,8455,8483,8478,8479,8479,8434,8486,8479,8486,8483,8488,8483,8485,8488,8485,8451,8483,8488,8478,8490,8491,8492,8492,8493,8494,8492,8494,8490,8495,8490,8496,8495,8496,8497,8490,8495,8491,8498,8499,8500,8498,8500,8491,8499,8498,7437,8499,8493,8492,8492,8491,8500,8492,8500,8499,8501,8502,8503,8501,8503,8504,8502,8501,8493,8502,8505,8506,8506,8504,8503,8506,8503,8502,8490,8504,8507,8507,8497,8496,8507,8496,8490,8501,8490,8494,8501,8494,8493,8490,8501,8504,8508,8509,8510,8508,8510,8497,8509,8508,8511,8509,8419,8512,8512,8497,8510,8512,8510,8509,8425,8511,8513,8513,8415,8427,8513,8427,8425,8509,8425,8424,8509,8424,8419,8425,8509,8511,8421,8491,8514,8514,8419,8423,8514,8423,8421,8498,8421,8422,8498,8422,7437,8421,8498,8491,8514,8495,8515,8514,8515,8419,8495,8514,8491,8495,8497,8512,8512,8419,8515,8512,8515,8495,8516,8517,8518,8518,8470,8519,8518,8519,8516,8520,8516,8521,8520,8521,8505,8516,8520,8517,8522,8472,8523,8522,8523,8517,8472,8522,8038,8472,8470,8518,8518,8517,8523,8518,8523,8472,8524,8468,8525,8524,8525,8526,8468,8524,8470,8468,8464,8527,8527,8526,8525,8527,8525,8468,8516,8526,8528,8528,8505,8521,8528,8521,8516,8524,8516,8519,8524,8519,8470,8516,8524,8526,8529,8461,8530,8529,8530,8497,8461,8529,8464,8461,8453,8531,8531,8497,8530,8531,8530,8461,8511,8453,8458,8458,8415,8513,8458,8513,8511,8453,8511,8508,8508,8497,8531,8508,8531,8453,8507,8532,8533,8507,8533,8497,8532,8507,8504,8532,8464,8529,8529,8497,8533,8529,8533,8532,8526,8504,8506,8506,8505,8528,8506,8528,8526,8532,8526,8527,8532,8527,8464,8526,8532,8504,6618,6622,8534,8534,8535,8536,8534,8536,6618,8442,8535,8537,8537,7642,8445,8537,8445,8442,8535,8442,8444,8444,6618,8536,8444,8536,8535,8538,8446,8539,8538,8539,7490,8446,8538,8540,8449,8540,8541,8449,8541,7467,8540,8449,8446,8448,7490,8539,8448,8539,8446,7490,8448,7552,8542,8517,8543,8542,8543,8544,8517,8542,8545,8522,8545,8546,8522,8546,8038,8545,8522,8517,8520,8544,8543,8520,8543,8517,8544,8520,8505,8502,8547,8548,8502,8548,8505,8547,8502,8493,8549,8493,8499,8549,8499,7437,8493,8549,8547,8550,8505,8548,8550,8548,8547,8505,8550,8544,8546,8551,8552,8546,8552,8038,8551,8546,8545,8553,8545,8542,8553,8542,8544,8545,8553,8551,8554,8038,8552,8554,8552,8551,8038,8554,5888,6622,6623,8555,8555,8556,8557,8555,8557,6622,8535,8556,8558,8558,7642,8537,8558,8537,8535,8556,8535,8534,8534,6622,8557,8534,8557,8556,8559,8540,8560,8559,8560,7491,8540,8559,8561,8541,8561,8562,8541,8562,7467,8561,8541,8540,8538,7491,8560,8538,8560,8540,7491,8538,7490,8563,8564,8565,8565,8551,8566,8565,8566,8563,8564,5888,8554,8554,8551,8565,8554,8565,8564,8567,8551,8553,8553,8544,8568,8553,8568,8567,8551,8567,8569,8569,8563,8566,8569,8566,8551,8570,8544,8550,8550,8547,8571,8550,8571,8570,8572,8547,8549,8549,7437,8573,8549,8573,8572,8547,8572,8574,8574,8570,8571,8574,8571,8547,8544,8570,8575,8544,8575,8576,8567,8576,8577,8577,8563,8569,8577,8569,8567,8576,8567,8568,8576,8568,8544,8564,8578,8579,8564,8579,5888,8564,8563,8580,8564,8580,8578,8581,8578,8582,8581,8582,8583,8581,5888,8579,8581,8579,8578,8022,8583,8584,8022,8584,8585,8024,8585,8586,8024,8586,7491,8585,8024,8022,8583,8022,8021,8021,5888,8581,8021,8581,8583,6623,6628,8587,8587,8588,8589,8587,8589,6623,8556,8588,8590,8590,7642,8558,8590,8558,8556,8588,8556,8555,8555,6623,8589,8555,8589,8588,8562,8583,8591,8562,8591,7467,8562,8561,8592,8562,8592,8583,8585,8561,8559,8559,7491,8586,8559,8586,8585,8561,8585,8584,8584,8583,8592,8584,8592,8561,8582,7467,8591,8582,8591,8583,8582,8578,8593,8582,8593,7467,8594,8578,8580,8580,8563,8595,8580,8595,8594,8593,8594,8596,8593,8596,7467,8594,8593,8578,8576,8597,8598,8598,8563,8577,8598,8577,8576,8597,8576,8575,8575,8570,8599,8575,8599,8597,8600,8570,8574,8600,8574,8572,8601,8572,8573,8573,7437,8602,8573,8602,8601,8572,8601,8600,8570,8600,8603,8603,8597,8599,8603,8599,8570,8604,8563,8598,8604,8598,8597,8563,8604,8605,8594,8605,8606,8606,7467,8596,8606,8596,8594,8605,8594,8595,8605,8595,8563,6628,7459,8607,8607,8608,8609,8607,8609,6628,8588,8608,8610,8610,7642,8590,8610,8590,8588,8608,8588,8587,8587,6628,8609,8587,8609,8608,7364,7467,8606,8606,8605,8611,8606,8611,7364,8612,8605,8604,8604,8597,8613,8604,8613,8612,8605,8612,8614,8614,7364,8611,8614,8611,8605,8615,8597,8603,8603,8600,8616,8603,8616,8615,8617,8600,8601,8618,8601,8602,8618,8602,7437,8601,8618,8617,8600,8617,8619,8619,8615,8616,8619,8616,8600,8597,8615,8620,8620,8621,8622,8620,8622,8597,8612,8621,8623,8623,7364,8614,8623,8614,8612,8621,8612,8613,8613,8597,8622,8613,8622,8621,8624,7642,8610,8610,8608,8625,8610,8625,8624,8626,8608,8607,8607,7459,8627,8607,8627,8626,8608,8626,8628,8628,8624,8625,8628,8625,8608,7642,8624,8629,8629,8630,8631,8629,8631,7642,8166,8630,8632,8632,7439,8167,8632,8167,8166,8630,8166,8165,8165,7642,8631,8165,8631,8630,8633,8634,8635,8633,8635,8615,8634,8633,8636,8637,8636,8638,8637,8638,7324,8636,8637,8634,8639,8615,8635,8639,8635,8634,8615,8639,8640,8641,8621,8642,8641,8642,8640,8621,8641,8643,8623,8643,8644,8623,8644,7364,8643,8623,8621,8620,8640,8642,8620,8642,8621,8640,8620,8615,8638,8617,8645,8638,8645,7324,8617,8638,8636,8619,8636,8633,8619,8633,8615,8636,8619,8617,8618,7324,8645,8618,8645,8617,7324,8618,7437,7459,6653,8646,8646,8647,8648,8646,8648,7459,8649,8647,8650,8650,8651,8652,8650,8652,8649,8647,8649,8653,8653,7459,8648,8653,8648,8647,8624,8651,8654,8654,8655,8656,8654,8656,8624,8630,8655,8657,8657,7439,8632,8657,8632,8630,8655,8630,8629,8629,8624,8656,8629,8656,8655,8651,8624,8628,8628,8626,8658,8628,8658,8651,8649,8626,8627,8627,7459,8653,8627,8653,8649,8626,8649,8652,8652,8651,8658,8652,8658,8626,8659,8660,8661,8659,8661,8640,8660,8659,8662,8663,8662,8664,8663,8664,7439,8662,8663,8660,8665,8640,8661,8665,8661,8660,8640,8665,8666,8667,8643,8668,8667,8668,8666,8643,8667,8669,8644,8669,8670,8644,8670,7364,8669,8644,8643,8641,8666,8668,8641,8668,8643,8666,8641,8640,8664,8634,8671,8664,8671,7439,8634,8664,8662,8639,8662,8659,8639,8659,8640,8662,8639,8634,8637,7439,8671,8637,8671,8634,7439,8637,7324,8091,8669,8672,8672,6653,8093,8672,8093,8091,8670,8091,8090,8670,8090,7364,8091,8670,8669,8667,8673,8674,8667,8674,8669,8673,8667,8666,8673,6653,8672,8672,8669,8674,8672,8674,8673,8665,8651,8675,8665,8675,8666,8651,8665,8660,8655,8660,8663,8663,7439,8657,8663,8657,8655,8660,8655,8654,8660,8654,8651,8675,8647,8676,8675,8676,8666,8675,8651,8650,8675,8650,8647,8673,8647,8646,8673,8646,6653,8673,8666,8676,8673,8676,8647,8677,8678,8679,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8690,8691,8692,8692,8693,8694,8694,8695,8696,8696,8697,8698,8698,8699,8700,8701,8702,8703,8703,8704,8705,8705,8706,8707,8708,8709,8710,8711,8712,8713,8713,8714,8715,8715,8716,8717,8717,8718,8719,8677,8679,8681,8682,8684,8720,8685,8687,8721,8688,8690,8692,8692,8694,8696,8696,8698,8700,8722,8701,8703,8705,8707,8708,8708,8710,8711,8711,8713,8715,8715,8717,8719,8723,8677,8681,8724,8682,8720,8685,8721,8688,8696,8700,8725,8722,8703,8705,8705,8708,8711,8711,8715,8719,8723,8681,8724,8685,8688,8692,8692,8696,8725,8726,8722,8705,8711,8719,8727,8723,8724,8720,8720,8685,8692,8692,8725,8726,8726,8705,8711,8711,8727,8728,8728,8723,8720,8720,8692,8726,8726,8711,8728,8728,8720,8726,8729,8730,8731,8731,8732,8733,8733,8734,8735,8735,8736,8737,8737,8738,8739,8740,8729,8731,8731,8733,8735,8735,8737,8739,8740,8731,8735,8735,8739,8740,8741,8742,8743,8743,8744,8745,8745,8746,8747,8747,8748,8741,8741,8743,8745,8745,8747,8741,8749,8750,8751,8751,8752,8753,8754,8755,8749,8749,8751,8753,8753,8754,8749,8756,8757,8758,8758,8759,8760,8760,8761,8762,8762,8763,8756,8756,8758,8760,8760,8762,8756,8764,8765,8766,8766,8767,8768,8769,8770,8764,8764,8766,8768,8771,8769,8764,8764,8768,8771,8772,8773,8774,8774,8775,8776,8776,8772,8774,8777,8778,8779,8779,8780,8781,8781,8782,8783,8783,8784,8785,8786,8787,8777,8781,8783,8785,8786,8777,8779,8781,8785,8788,8788,8786,8779,8779,8781,8788,8789,8790,8791,8791,8792,8789,8793,8794,8795,8795,8796,8797,8797,8798,8793,8793,8795,8797,8799,8800,8801,8802,8803,8804,8804,8805,8799,8799,8801,8802,8802,8804,8799,8806,8807,8808,8808,8809,8810,8810,8806,8808,8811,8812,8813,8813,8814,8815,8816,8817,8818,8818,8819,8811,8813,8815,8820,8816,8818,8811,8811,8813,8820,8820,8816,8811,8821,8822,8823,8823,8824,8825,8826,8827,8828,8828,8829,8830,8830,8821,8823,8823,8825,8826,8826,8828,8830,8830,8823,8826,8831,8832,8833,8833,8834,8835,8835,8836,8837,8838,8831,8833,8833,8835,8837,8837,8838,8833,8839,8840,8841,8842,8843,8844,8845,8846,8847,8847,8848,8839,8842,8844,8845,8845,8847,8839,8841,8842,8845,8845,8839,8841,8849,8850,8851,8851,8852,8853,8853,8854,8855,8855,8849,8851,8851,8853,8855,8856,8857,8858,8858,8859,8860,8861,8856,8858,8858,8860,8861,8862,8863,8864,8865,8866,8867,8867,8868,8869,8869,8862,8864,8865,8867,8869,8869,8864,8865,8870,8871,8872,8872,8873,8874,8874,8875,8870,8870,8872,8874,8876,8877,8878,8878,8879,8880,8880,8881,8882,8882,8876,8878,8878,8880,8882,8883,8884,8885,8886,8887,8888,8889,8890,8883,8883,8885,8886,8886,8888,8889,8889,8883,8886,8891,8892,8893,8893,8894,8895,8895,8896,8897,8897,8891,8893,8893,8895,8897,8898,8899,8900,8901,8902,8903,8903,8904,8905,8905,8906,8898,8898,8900,8901,8903,8905,8898,8898,8901,8903,8907,8908,8909,8909,8910,8911,8911,8912,8913,8914,8915,8916,8917,8907,8909,8911,8913,8918,8914,8916,8917,8909,8911,8918,8918,8914,8917,8917,8909,8918,8919,8920,8921,8921,8922,8923,8923,8924,8925,8925,8926,8927,8928,8929,8930,8930,8919,8921,8921,8923,8925,8925,8927,8931,8928,8930,8921,8921,8925,8931,8931,8928,8921,8932,8933,8934,8934,8935,8936,8936,8937,8938,8938,8939,8940,8940,8932,8934,8934,8936,8938,8938,8940,8934,8941,8942,8943,8943,8944,8945,8946,8947,8948,8948,8949,8950,8950,8951,8952,8952,8953,8954,8954,8955,8956,8956,8957,8958,8959,8960,8961,8961,8962,8963,8964,8965,8966,8966,8967,8968,8968,8969,8970,8946,8948,8950,8950,8952,8954,8954,8956,8958,8959,8961,8963,8964,8966,8968,8968,8970,8941,8946,8950,8954,8958,8959,8963,8963,8964,8968,8945,8946,8954,8963,8968,8941,8943,8945,8954,8958,8963,8941,8943,8954,8958,8958,8941,8943,8971,8972,8973,8973,8974,8975,8975,8976,8971,8971,8973,8975,8977,8978,8979,8979,8980,8977,8981,8982,8983,8983,8984,8985,8985,8986,8987,8987,8981,8983,8983,8985,8987,8988,8989,8990,8990,8991,8992,8992,8993,8988,8988,8990,8992,8994,8995,8996,8996,8997,8998,8998,8999,9000,9000,9001,8994,8996,8998,9000,9000,8994,8996,9002,9003,9004,9004,9005,9006,9006,9007,9002,9002,9004,9006,9008,9009,9010,9010,9011,9008,9012,9013,9014,9014,9015,9016,9016,9017,9012,9012,9014,9016,9018,9019,9020,9020,9021,9022,9022,9018,9020,9023,9024,9025,9025,9026,9027,9028,9023,9025,9025,9027,9028,9029,9030,9031,9031,9032,9033,9033,9034,9035,9035,9029,9031,9031,9033,9035,9036,9037,9038,9038,9039,9040,9040,9041,9036,9036,9038,9040,9042,9043,9044,9044,9045,9046,9046,9042,9044,9047,9048,9049,9049,9050,9051,9051,9052,9047,9047,9049,9051,9053,9054,9055,9055,9056,9057,9057,9058,9053,9053,9055,9057,9059,9060,9061,9062,9063,9064,9064,9065,9066,9066,9059,9061,9067,9062,9064,9064,9066,9061,9061,9067,9064,9068,9069,9070,9070,9071,9072,9073,9068,9070,9070,9072,9073,9074,9075,9076,9076,9077,9078,9079,9080,9081,9074,9076,9078,9079,9081,9074,9074,9078,9079,9082,9083,9084,9084,9085,9086,9086,9087,9088,9088,9082,9084,9084,9086,9088,9089,9090,9091,9091,9092,9093,9093,9094,9095,9096,9097,9098,9098,9089,9091,9091,9093,9095,9096,9098,9091,9091,9095,9099,9099,9096,9091,9100,9101,9102,9102,9103,9104,9104,9105,9106,9106,9107,9108,9108,9100,9102,9102,9104,9106,9106,9108,9102,9109,9110,9111,9112,9113,9114,9114,9115,9116,9116,9117,9118,9118,9109,9111,9112,9114,9116,9116,9118,9111,9111,9112,9116,9119,9120,9121,9121,9122,9123,9123,9124,9125,9125,9119,9121,9121,9123,9125,9126,9127,9128,9128,9129,9130,9130,9131,9132,9132,9133,9134,9134,9135,9136,9137,9138,9139,9140,9141,9142,9142,9143,9144,9144,9145,9146,9146,9147,9148,9148,9149,9150,9151,9152,9153,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9164,9165,9166,9166,9167,9168,9168,9169,9170,9126,9128,9130,9130,9132,9134,9137,9139,9171,9140,9142,9144,9144,9146,9148,9148,9150,9172,9151,9153,9155,9156,9158,9173,9162,9164,9166,9166,9168,9170,9126,9130,9134,9136,9137,9171,9174,9140,9144,9148,9172,9175,9175,9151,9155,9176,9156,9173,9162,9166,9170,9170,9126,9134,9134,9136,9171,9174,9144,9148,9175,9155,9176,9176,9173,9159,9177,9162,9170,9134,9171,9178,9178,9174,9148,9148,9175,9176,9176,9159,9161,9177,9170,9134,9134,9178,9148,9148,9176,9161,9179,9177,9134,9148,9161,9180,9181,9179,9134,9148,9180,9182,9181,9134,9148,9148,9182,9181,9183,9184,9185,9185,9186,9187,9188,9189,9190,9190,9191,9192,9193,9194,9195,9195,9196,9197,9197,9198,9199,9199,9200,9201,9202,9203,9204,9204,9205,9206,9206,9207,9208,9209,9210,9211,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9225,9226,9183,9183,9185,9187,9188,9190,9192,9193,9195,9197,9197,9199,9201,9202,9204,9206,9206,9208,9227,9209,9211,9213,9216,9217,9219,9220,9222,9228,9223,9225,9183,9183,9187,9229,9230,9188,9192,9193,9197,9201,9202,9206,9227,9227,9209,9213,9216,9219,9220,9231,9223,9183,9183,9229,9230,9230,9192,9232,9232,9193,9201,9201,9202,9227,9227,9213,9214,9216,9220,9228,9228,9231,9183,9183,9230,9232,9232,9201,9227,9227,9214,9216,9228,9183,9232,9232,9227,9216,9216,9228,9232,9233,9234,9235,9235,9236,9237,9237,9238,9239,9239,9240,9241,9241,9242,9243,9243,9244,9245,9245,9246,9247,9248,9249,9250,9251,9252,9253,9253,9254,9255,9255,9256,9257,9257,9258,9259,9260,9261,9262,9262,9263,9264,9265,9266,9267,9267,9268,9269,9270,9271,9272,9272,9273,9274,9274,9275,9276,9276,9277,9278,9279,9280,9281,9282,9283,9284,9284,9285,9286,9286,9287,9288,9289,9290,9291,9291,9292,9293,9293,9294,9295,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9320,9321,9322,9322,9323,9324,9324,9325,9326,9326,9327,9328,9329,9330,9331,9331,9332,9333,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9344,9345,9346,9346,9347,9348,9348,9349,9350,9351,9352,9353,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9364,9365,9366,9367,9368,9369,9233,9235,9237,9237,9239,9241,9241,9243,9245,9245,9247,9370,9248,9250,9371,9251,9253,9255,9255,9257,9259,9260,9262,9264,9265,9267,9269,9270,9272,9274,9274,9276,9278,9282,9284,9286,9286,9288,9372,9289,9291,9293,9293,9295,9297,9298,9300,9373,9304,9306,9374,9307,9309,9311,9312,9314,9375,9315,9317,9318,9318,9320,9322,9322,9324,9326,9329,9331,9333,9333,9335,9336,9336,9338,9339,9339,9341,9376,9342,9344,9346,9346,9348,9350,9353,9355,9356,9356,9358,9377,9359,9361,9378,9362,9364,9366,9369,9233,9237,9237,9241,9245,9248,9371,9251,9251,9255,9259,9379,9260,9264,9380,9265,9269,9381,9270,9274,9274,9278,9279,9282,9286,9372,9289,9293,9297,9298,9373,9301,9303,9304,9374,9374,9307,9311,9382,9315,9318,9318,9322,9326,9383,9329,9333,9333,9336,9339,9339,9376,9342,9342,9346,9350,9351,9353,9356,9356,9377,9384,9385,9359,9378,9386,9362,9366,9237,9245,9370,9251,9259,9379,9379,9264,9387,9380,9269,9388,9381,9274,9279,9281,9282,9372,9289,9297,9298,9301,9303,9374,9374,9311,9312,9382,9318,9326,9389,9383,9333,9333,9339,9342,9342,9350,9390,9351,9356,9384,9385,9378,9386,9386,9366,9367,9237,9370,9391,9251,9379,9387,9380,9388,9392,9393,9381,9279,9289,9298,9301,9374,9312,9375,9375,9382,9326,9389,9333,9342,9342,9390,9351,9351,9384,9394,9385,9386,9367,9369,9237,9391,9251,9387,9380,9395,9393,9279,9372,9289,9301,9374,9375,9326,9396,9389,9342,9342,9351,9394,9394,9385,9367,9367,9369,9391,9248,9251,9380,9395,9279,9281,9372,9301,9374,9374,9326,9328,9397,9396,9342,9367,9391,9248,9248,9380,9392,9392,9395,9281,9372,9374,9328,9397,9342,9394,9394,9367,9248,9248,9392,9281,9281,9372,9328,9328,9397,9394,9394,9248,9281,9281,9328,9394,2751,2750,9398,9398,9399,9400,9400,9401,9402,9402,9403,9404,9405,9406,9407,9407,9408,9409,9409,9410,9411,9411,9412,9413,9414,9415,9416,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9427,9428,9429,9430,9431,9432,9432,9433,9434,9435,9436,9437,9438,9439,9440,9440,9441,9442,9443,9444,9445,9445,9446,9447,9447,9448,9449,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9460,9461,9462,9462,9463,9464,9464,9465,9466,9466,9467,9468,9469,9470,9471,9471,9472,9473,9474,9475,9476,9476,9477,9478,9478,9479,9480,9480,9481,9482,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9493,9494,9495,9496,9497,9498,9498,9499,9500,9501,9502,9503,9503,9504,9505,9506,9507,9508,9509,9510,9511,9511,9512,9513,9514,9515,9516,9516,9517,9518,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9532,9533,9534,9535,9536,9537,9537,9538,9539,9539,9540,9541,9541,9542,9543,9543,9544,9545,9545,9546,9547,9548,9549,9550,9550,9551,9552,9552,9553,9554,9554,9555,9556,9556,9557,9558,9558,9559,9560,9560,9561,9562,9562,9563,9564,9565,9566,9567,9568,9569,9570,9570,9571,9572,9572,9573,9574,9575,9576,9577,9577,9578,9579,9579,9580,9581,9582,9583,9584,9584,9585,9586,9587,9588,9589,9589,9590,9591,9592,9593,9594,9594,9595,9596,9596,9597,9598,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9609,9610,9611,9611,9612,9613,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9624,9625,9626,9626,9627,9628,9628,9629,9630,9631,9632,9633,9633,9634,9635,9635,9636,9637,9637,9638,9639,9639,9640,9641,9641,9642,9643,9644,9645,9646,9646,9647,9648,9649,9650,9651,9652,9653,9654,9654,9655,9656,9656,9657,9658,9659,9660,9661,9661,9662,9663,9663,9664,9665,9665,9666,9667,9668,9669,9670,9670,9671,9672,9672,9673,9674,9675,6005,6004,7625,6003,6002,8174,6000,5999,7588,5997,5996,5993,5992,7287,5988,5987,7286,7286,7285,5986,5985,5984,7587,7587,7409,7284,5982,5981,7499,7499,7408,5980,5973,5972,5971,5970,5969,5968,5965,5964,7407,7407,7498,7497,7497,5963,5962,5960,5959,5958,5957,5956,5955,5954,5953,5952,5951,5950,7283,7283,7681,7655,7655,5949,5948,5944,5943,5942,5940,5939,7496,5935,5934,5933,5933,5932,5931,5931,5930,5929,5929,5928,7282,7282,7495,7555,7555,7654,5927,5926,5925,5924,5920,5919,5918,5918,5917,7554,7554,7585,7494,7494,7281,5916,5911,5910,7406,7406,7280,5909,5904,5903,5902,5902,5901,7279,7279,7405,5900,5897,5896,5895,5892,5891,5890,5890,5889,7278,7278,7584,7653,7653,7680,7779,7779,7968,8038,8038,5888,5887,5887,5886,5885,5885,5884,5883,5882,5881,7404,7404,7897,5880,5879,5878,7770,7770,7738,7678,7678,7651,7618,7618,7277,5877,5876,5875,5874,5873,5872,5871,5870,5869,5868,5866,5865,5864,5863,5862,7493,7493,7492,5861,5858,5857,5856,5855,5854,5853,5848,5847,5846,9676,9677,9678,9679,9680,9681,9682,9683,9684,9684,9685,9686,9686,9687,9688,9689,9690,9691,9692,9693,9694,9694,9695,9696,9696,9697,9698,9699,9700,9701,9701,9702,9703,9703,9704,9705,9705,9706,9707,9707,9708,9709,9709,9710,9711,9712,9713,9714,9715,9716,9717,9717,9718,9719,9719,9720,9721,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9732,9733,9734,9735,9736,9737,9737,9738,9739,9740,9741,9742,9742,9743,9744,9744,9745,9746,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9760,9761,9762,9763,9764,9765,9765,9766,9767,9768,9769,9770,9770,9771,9772,9773,9774,9775,9775,9776,9777,9777,9778,9779,9780,9781,9782,9782,9783,9784,9785,9786,9787,9787,9788,9789,9789,9790,9791,9791,9792,9793,9793,9794,9795,9795,9796,9797,9798,9799,9800,9800,9801,9802,9802,9803,9804,9804,9805,9806,9807,9808,9809,9809,9810,9811,9812,9813,9814,9814,9815,9816,9816,9817,9818,9819,9820,9821,9821,9822,9823,9824,9825,9826,9826,9827,9828,9828,9829,9830,9831,9832,9833,9834,9835,9836,9836,9837,9838,9838,9839,9840,9840,9841,9842,9842,9843,9844,9844,9845,9846,9847,9848,9849,9849,9850,9851,9852,9853,9854,9855,9856,9857,9857,9858,9859,9860,9861,9862,9862,9863,9864,9865,9866,9867,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9892,9893,9894,9895,9896,9897,9897,9898,9899,9900,9901,9902,9902,9903,9904,9905,9906,9907,9908,9909,9910,9910,9911,9912,9913,9914,9915,9915,9916,9917,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9928,9929,9930,9931,9932,9933,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9944,9945,9946,9947,9948,9949,9949,9950,9951,9952,9953,9954,9954,9955,9956,9957,9958,9959,9960,9961,9962,9962,9963,9964,9964,9965,9966,9967,9968,9969,9969,9970,9971,9972,9973,9974,9974,9975,9976,9976,9977,9978,9978,9979,9980,9981,9982,9983,9984,9985,9986,9986,9987,9988,9989,9990,9991,9991,9992,9993,9994,9995,9996,9996,9997,9998,9999,10000,10001,10001,10002,10003,10003,10004,10005,10006,10007,10008,10008,10009,10010,10011,10012,10013,10014,10015,10016,10016,10017,10018,10018,10019,10020,10021,10022,10023,10023,10024,10025,10026,10027,10028,10028,10029,10030,10031,10032,10033,10033,10034,10035,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10046,10047,10048,10048,10049,10050,10050,10051,10052,10052,10053,10054,10055,10056,10057,10057,10058,10059,10059,10060,10061,10062,10063,10064,10064,10065,10066,10066,10067,10068,10068,10069,10070,10071,10072,10073,10073,10074,10075,10075,10076,10077,10077,10078,10079,10079,10080,10081,10082,10083,10084,10084,10085,10086,10087,10088,10089,10090,10091,10092,10092,10093,10094,10094,10095,10096,10097,10098,10099,10099,10100,10101,10101,10102,10103,10103,10104,10105,10105,10106,10107,10108,10109,10110,10110,10111,10112,10113,10114,10115,10115,10116,10117,10117,10118,10119,10119,10120,10121,10121,10122,10123,10124,10125,10126,10127,10128,10129,10129,10130,10131,10132,10133,10134,10134,10135,10136,10136,10137,10138,10139,10140,10141,10141,10142,10143,10143,10144,10145,10145,10146,10147,10148,10149,10150,10151,10152,10153,10153,10154,10155,10155,10156,10157,10157,10158,10159,10160,10161,10162,10162,10163,10164,10164,10165,10166,10167,10168,10169,10169,10170,10171,10172,10173,10174,10175,10176,10177,10177,10178,10179,10180,10181,10182,10182,10183,10184,10184,10185,10186,10187,10188,10189,10190,10191,10192,10192,10193,10194,10195,10196,10197,10197,10198,10199,10199,10200,10201,10201,10202,10203,10204,10205,10206,10206,10207,10208,10208,10209,10210,10210,10211,10212,10213,10214,10215,10215,10216,10217,10217,10218,10219,10219,10220,10221,10221,10222,10223,10224,10225,10226,10227,10228,10229,10229,10230,10231,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10242,10243,10244,10244,10245,10246,10247,10248,10249,10249,10250,10251,10252,10253,10254,10254,10255,10256,10256,10257,10258,10259,10260,10261,10261,10262,10263,10263,10264,10265,10265,10266,10267,10267,10268,10269,10269,10270,10271,10272,10273,10274,10274,10275,10276,10277,10278,10279,10279,10280,10281,10282,10283,10284,10285,10286,10287,10287,10288,10289,10290,10291,10292,10293,10294,10295,10295,10296,10297,10297,10298,10299,10299,10300,10301,10301,10302,10303,10303,10304,10305,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10316,10317,10318,10318,10319,10320,10321,10322,10323,10323,10324,10325,10325,10326,10327,10328,10329,10330,10330,10331,10332,10333,10334,10335,10335,10336,10337,10338,10339,10340,10341,10342,10343,10343,10344,10345,10346,10347,10348,10348,10349,10350,10351,10352,10353,10354,10355,10356,10356,10357,10358,10358,10359,10360,10360,10361,10362,10362,10363,10364,10364,10365,10366,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10386,10387,10388,10388,10389,10390,10391,10392,10393,10393,10394,10395,10395,10396,10397,10398,10399,10400,10401,10402,10403,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10414,10415,10416,10417,10418,10419,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10436,10437,10438,10439,10440,10441,10441,10442,10443,10443,10444,10445,10446,10447,10448,10448,10449,10450,10451,10452,10453,10453,10454,10455,10455,10456,10457,10457,10458,10459,10460,10461,10462,10462,10463,10464,10464,10465,10466,10466,10467,10468,10469,10470,10471,10471,10472,10473,10473,10474,10475,10475,10476,10477,10477,10478,10479,10480,10481,10482,10482,10483,10484,10485,10486,10487,10487,10488,10489,10489,10490,10491,10491,10492,10493,10494,10495,10496,10497,10498,10499,10499,10500,10501,10501,10502,10503,10504,10505,10506,10506,10507,10508,10508,10509,10510,10511,10512,10513,10514,10515,10516,10516,10517,10518,10519,10520,10521,10522,10523,10524,10524,10525,10526,10527,10528,10529,10529,10530,10531,10532,10533,10534,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10551,10552,10553,10553,10554,10555,10556,10557,10558,10558,10559,10560,10561,10562,10563,10563,10564,10565,10565,10566,10567,10567,10568,10569,10569,10570,10571,10572,10573,10574,10575,10576,10577,10577,10578,10579,10580,10581,10582,10582,10583,10584,10585,10586,10587,10588,10589,10590,10590,10591,10592,10593,10594,10595,10595,10596,10597,10597,10598,10599,10599,10600,10601,10602,10603,10604,10604,10605,10606,10607,10608,10609,10610,10611,10612,10612,10613,10614,10615,10616,10617,10617,10618,10619,10620,10621,10622,10622,10623,10624,10625,10626,10627,10627,10628,10629,10630,10631,10632,10632,10633,10634,10635,10636,10637,10637,10638,10639,10640,10641,10642,10642,10643,10644,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10655,10656,10657,10657,10658,10659,10660,10661,10662,10663,10664,10665,10665,10666,10667,10668,10669,10670,10670,10671,10672,10672,10673,10674,10674,10675,10676,10676,10677,10678,10679,10680,10681,10681,10682,10683,10684,10685,10686,10686,10687,10688,10689,10690,10691,10691,10692,10693,10693,10694,10695,10696,10697,10698,10699,10700,10701,10701,10702,10703,10703,10704,10705,10706,10707,10708,10708,10709,10710,10711,10712,10713,10713,10714,10715,10715,10716,10717,10718,10719,10720,10720,10721,10722,10722,10723,10724,10724,10725,10726,10727,10728,10729,10729,10730,10731,10731,10732,10733,10734,10735,10736,10736,10737,10738,10738,10739,10740,10741,10742,10743,10743,10744,10745,10746,10747,10748,10748,10749,10750,10750,10751,10752,10752,10753,10754,10755,10756,10757,10757,10758,10759,10759,10760,10761,10761,10762,10763,10764,10765,10766,10766,10767,10768,10769,10770,10771,10771,10772,10773,10774,10775,10776,10777,10778,10779,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10790,10791,10792,10792,10793,10794,10794,10795,10796,10797,10798,10799,10799,10800,10801,10801,10802,10803,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10814,10815,10816,10816,10817,10818,10818,10819,10820,10821,10822,10823,10823,10824,10825,10825,10826,10827,10828,10829,10830,10831,10832,10833,10833,10834,10835,10835,10836,10837,10838,10839,10840,10841,10842,10843,10843,10844,10845,10845,10846,10847,10848,10849,10850,10851,10852,10853,10853,10854,10855,10855,10856,10857,10857,10858,10859,10860,10861,10862,10862,10863,10864,10865,10866,10867,10867,10868,10869,10869,10870,10871,10871,10872,10873,10873,10874,10875,10876,10877,10878,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10895,10896,10897,10897,10898,10899,10899,10900,10901,10901,10902,10903,10904,10905,10906,10906,10907,10908,10908,10909,10910,10910,10911,10912,10913,10914,10915,10915,10916,10917,10918,10919,10920,10920,10921,10922,10922,10923,10924,10924,10925,10926,10927,10928,10929,10929,10930,10931,10932,10933,10934,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10945,10946,10947,10947,10948,10949,10950,10951,10952,10953,10954,10955,10955,10956,10957,10958,10959,10960,10960,10961,10962,10962,10963,10964,10964,10965,10966,10967,10968,10969,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10983,10984,10985,10985,10986,10987,10987,10988,10989,10989,10990,10991,10992,10993,10994,10994,10995,10996,10997,10998,10999,10999,11000,11001,11001,11002,11003,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11031,11032,11033,11034,11035,11036,11036,11037,11038,11038,11039,11040,11041,11042,11043,11044,11045,11046,11046,11047,11048,11048,11049,11050,11051,11052,11053,11053,11054,11055,11056,11057,11058,11058,11059,11060,11060,11061,11062,11063,11064,11065,11066,11067,11068,11068,11069,11070,11070,11071,11072,11072,11073,11074,11074,11075,11076,11076,11077,11078,11079,11080,11081,11082,11083,11084,11084,11085,11086,11087,11088,11089,11090,11091,11092,11092,11093,11094,11094,11095,11096,11096,11097,11098,11098,11099,11100,11101,11102,11103,11103,11104,11105,11106,11107,11108,11108,11109,11110,11110,11111,11112,11112,11113,11114,11114,11115,11116,11116,11117,11118,11118,11119,11120,11121,11122,11123,11124,11125,11126,11126,11127,11128,11128,11129,11130,11130,11131,11132,11133,11134,11135,11136,11137,11138,11138,11139,11140,11140,11141,11142,11143,11144,11145,11146,11147,11148,11148,11149,11150,11151,11152,11153,11153,11154,11155,11156,11157,11158,11158,11159,11160,11161,11162,11163,11163,11164,11165,11166,11167,11168,11168,11169,11170,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11181,11182,11183,11183,11184,11185,11186,11187,11188,11188,11189,11190,11190,11191,11192,11192,11193,11194,11194,11195,11196,11197,11198,11199,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11210,11211,11212,11212,11213,11214,11214,11215,11216,11217,11218,11219,11220,11221,11222,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11236,11237,11238,11238,11239,11240,11240,11241,11242,11242,11243,11244,11245,11246,11247,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11258,11259,11260,11261,11262,11263,11263,11264,11265,11266,11267,11268,11268,11269,11270,11270,11271,11272,11273,11274,11275,11275,11276,11277,11278,11279,11280,11280,11281,11282,11283,11284,11285,11285,11286,11287,11288,11289,11290,11290,11291,11292,11292,11293,11294,11295,11296,11297,11298,11299,11300,11300,11301,11302,11302,11303,11304,11304,11305,11306,11306,11307,11308,11309,11310,11311,11312,11313,11314,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11331,11332,11333,11334,11335,11336,11336,11337,11338,11339,11340,11341,11341,11342,11343,11344,11345,11346,11346,11347,11348,11348,11349,11350,11350,11351,11352,11353,11354,11355,11356,11357,11358,11358,11359,11360,11360,11361,11362,11362,11363,11364,11365,11366,11367,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11378,11379,11380,11381,11382,11383,11383,11384,11385,11386,11387,11388,11389,11390,11391,11391,11392,11393,11394,11395,11396,11396,11397,11398,11398,11399,11400,11401,11402,11403,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11414,11415,11416,11416,11417,11418,11418,11419,11420,11421,11422,11423,11423,11424,11425,11426,11427,11428,11429,11430,11431,11431,11432,11433,11433,11434,11435,11435,11436,11437,11438,11439,11440,11440,11441,11442,11443,11444,11445,11445,11446,11447,11448,11449,11450,11451,11452,11453,11453,11454,11455,11455,11456,11457,11458,11459,11460,11461,11462,11463,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11483,11484,11485,11485,11486,11487,11487,11488,11489,11490,11491,11492,11492,11493,11494,11494,11495,11496,11496,11497,11498,11498,11499,11500,11501,11502,11503,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11520,11521,11522,11522,11523,11524,11525,11526,11527,11527,11528,11529,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11543,11544,11545,11545,11546,11547,11548,11549,11550,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11564,11565,11566,11566,11567,11568,11568,11569,11570,11570,11571,11572,11572,11573,11574,11574,11575,11576,11576,11577,11578,11578,11579,11580,11581,11582,11583,11584,11585,11586,11586,11587,11588,11588,11589,11590,11591,11592,11593,11593,11594,11595,11595,11596,11597,11597,11598,11599,11600,11601,11602,11602,11603,11604,11604,11605,11606,11607,11608,11609,11609,11610,11611,11611,11612,11613,11614,11615,11616,11617,11618,11619,11619,11620,11621,11621,11622,11623,11623,11624,11625,11626,11627,11628,11628,11629,11630,11631,11632,11633,11634,11635,11636,11636,11637,11638,11639,11640,11641,11642,11643,11644,11644,11645,11646,11646,11647,11648,11648,11649,11650,11650,11651,11652,11653,11654,11655,11656,11657,11658,11658,11659,11660,11660,11661,11662,11663,11664,11665,11665,11666,11667,11668,11669,11670,11670,11671,11672,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11683,11684,11685,11686,11687,11688,11688,11689,11690,11690,11691,11692,11692,11693,11694,11695,11696,11697,11697,11698,11699,11700,11701,11702,11702,11703,11704,11704,11705,11706,11706,11707,11708,11709,11710,11711,11711,11712,11713,11713,11714,11715,11716,11717,11718,11718,11719,11720,11720,11721,11722,11723,11724,11725,11725,11726,11727,11728,2846,2845,4596,2844,2843,2843,2842,2841,2841,2840,3998,2838,2837,2836,2833,2832,3997,2830,2829,2828,2827,2826,2825,2824,2823,2822,2820,2819,4489,2817,2816,2815,2815,2814,2813,2812,2811,3996,3996,2810,2809,2809,2808,3995,2806,2805,2804,2801,2800,4173,4173,3994,2799,2798,2797,2796,2795,2794,2793,2792,2791,4172,4172,2790,2789,2787,2786,2785,2785,2784,2783,2782,2781,2780,2780,2779,2778,2778,2777,2776,2773,2772,3993,2770,2769,2768,2767,2766,2765,2765,2764,3992,2762,2761,4090,4090,4089,2760,2759,2758,2757,2757,2756,2755,9398,9400,9402,9402,9404,11729,9405,9407,9409,9409,9411,9413,9414,9416,9418,9419,9421,9422,9425,9427,9429,9429,9430,9432,9432,9434,11730,9435,9437,9438,9438,9440,9442,9443,9445,9447,9447,9449,9451,9455,9457,11731,9458,9460,9462,9462,9464,9466,9466,9468,11732,11733,9469,9471,9476,9478,9480,9480,9482,9484,9485,9487,11734,9488,9490,9491,9491,9493,9495,9496,9498,9500,9501,9503,9505,9506,9508,9509,9509,9511,9513,9514,9516,9518,9520,9521,9523,9524,9526,9527,9527,9529,9530,9530,9532,9534,9535,9537,9539,9541,9543,9545,9548,9550,9552,9552,9554,9556,9556,9558,9560,9562,9564,11735,9565,9567,11736,9568,9570,9572,9577,9579,9581,9582,9584,9586,9587,9589,9591,9592,9594,9596,9596,9598,9600,9601,9603,11737,11738,9604,9606,9607,9609,9611,9611,9613,9615,9616,9618,11739,9619,9621,11740,9622,9624,9626,9626,9628,9630,9631,9633,9635,9635,9637,9639,9639,9641,9643,9644,9646,9648,11741,9649,9651,9652,9654,9656,9656,9658,11742,9659,9661,9663,9663,9665,9667,9668,9670,9672,9672,9674,11743,11744,9675,6004,7592,7625,6002,8258,8174,5999,7621,7588,5996,5994,5993,7287,5988,7286,5986,5985,7587,7284,5982,7499,5980,5971,5970,5968,5965,7407,7497,5960,5958,5957,5955,5954,5952,5951,7283,7655,7655,5948,5947,5945,5944,5942,5941,5940,7496,5935,5933,5931,5929,7282,7555,7555,5927,5926,5921,5920,5918,5918,7554,7494,7494,5916,5915,5911,7406,5909,5902,7279,5900,5898,5897,5895,5893,5892,5890,5890,7278,7653,7653,7779,8038,8038,5887,5885,5882,7404,5880,5880,5879,7770,7770,7678,7618,5876,5874,5873,5873,5871,5870,5866,5864,5863,5863,7493,5861,5859,5858,5856,5856,5855,5853,5848,5846,11745,11745,9676,9678,9679,9681,11746,9682,9684,9686,9689,9691,9692,9694,9696,9698,9698,9699,9701,9701,9703,9705,9705,9707,9709,9709,9711,9712,9717,9719,9721,9727,9729,11747,9730,9732,9734,9740,9742,9744,9746,9748,9749,9749,9751,11748,9752,9754,9755,9762,9763,9765,9765,9767,9768,9768,9770,9772,9773,9775,9777,9777,9779,11749,9780,9782,9784,9785,9787,9789,9789,9791,9793,9793,9795,9797,9798,9800,9802,9802,9804,9806,9807,9809,9811,11750,9812,9814,9814,9816,9818,9818,9819,9821,9821,9823,11751,11752,9824,9826,9826,9828,9830,9831,9833,11753,9834,9836,9838,9838,9840,9842,9842,9844,9846,9847,9849,9851,9852,9854,11754,9857,9859,11755,9860,9862,9864,9865,9867,9869,9873,9875,9876,9876,9878,11756,9879,9881,9883,9883,9884,9886,11757,9887,9889,9890,9892,9894,9895,9897,9899,11758,9900,9902,9902,9904,11759,9908,9910,9912,9913,9915,9917,9917,9919,11760,9920,9922,11761,9923,9925,9926,9928,9930,9931,9933,9935,9936,9936,9938,11762,9939,9941,11763,9942,9944,9946,9947,9949,9951,9952,9954,9956,9960,9962,9964,9964,9966,9967,9967,9969,9971,9974,9976,9978,9981,9983,9984,9984,9986,9988,9989,9991,9993,9994,9996,9998,11764,9999,10001,10001,10003,10005,10006,10008,10010,10013,10014,10016,10016,10018,10020,10021,10023,10025,10026,10028,10030,10031,10033,10035,10035,10037,11765,10038,10040,11766,10041,10043,11767,10044,10046,10048,10048,10050,10052,11768,10055,10057,10057,10059,10061,10062,10064,10066,10066,10068,10070,10071,10073,10075,10075,10077,10079,10079,10081,11769,10082,10084,10086,10087,10089,11770,10090,10092,10094,10094,10096,11771,10099,10101,10103,10103,10105,10107,10108,10110,10112,10113,10115,10117,10117,10119,10121,10121,10123,11772,10124,10126,10127,10127,10129,10131,10132,10134,10136,10136,10138,11773,10139,10141,10143,10143,10145,10147,10151,10153,10155,10155,10157,10159,10160,10162,10164,10164,10166,10167,10167,10169,10171,10175,10177,10179,10180,10182,10184,10187,10189,11774,10190,10192,10194,10195,10197,10199,10199,10201,10203,10204,10206,10208,10208,10210,10212,10213,10215,10217,10217,10219,10221,10221,10223,11775,10227,10229,10231,10234,10236,11776,10237,10239,11777,10240,10242,10244,10244,10246,11778,10247,10249,10251,10252,10254,10256,10259,10261,10263,10263,10265,10267,10269,10271,10272,10272,10274,10276,10277,10279,10281,10282,10284,10285,10285,10287,10289,10290,10292,10293,10293,10295,10297,10297,10299,10301,10301,10303,10305,10305,10307,10308,10310,10311,10313,10314,10316,10318,10321,10323,10325,10325,10327,11779,10328,10330,10332,10333,10335,10337,10338,10340,11780,10341,10343,10345,10346,10348,10350,10351,10353,11781,10354,10356,10358,10358,10360,10362,10362,10364,10366,10366,10368,11782,10375,10377,11783,10386,10388,10390,10391,10393,10395,11784,10398,10400,10401,10403,10405,10406,10408,10409,10409,10411,11785,10412,10414,10416,10417,10419,10421,10422,10424,10425,10425,10427,11786,10428,10430,11787,11787,10431,10433,10434,10436,10438,10439,10441,10443,10446,10448,10450,10451,10453,10455,10455,10457,10459,10460,10462,10464,10464,10466,10468,10469,10471,10473,10473,10475,10477,10480,10482,10484,10485,10487,10489,10491,10493,11788,11789,10494,10496,10497,10499,10501,10504,10506,10508,10508,10510,11790,10511,10513,10514,10516,10518,11791,10519,10521,11792,10522,10524,10526,10527,10529,10531,10532,10534,10536,11793,10537,10539,10540,10542,11794,11795,10543,10545,10549,10551,10553,10553,10555,11796,10556,10558,10560,10561,10563,10565,10565,10567,10569,10572,10574,11797,10575,10577,10579,10579,10580,10582,10582,10584,11798,10585,10587,10588,10588,10590,10592,10593,10595,10597,10597,10599,10601,10602,10604,10606,10607,10609,11799,10610,10612,10614,10615,10617,10619,10620,10622,10624,10625,10627,10629,10630,10632,10634,10635,10637,10639,10640,10642,10644,10644,10646,11800,10647,10649,11801,10650,10652,11802,10653,10655,10657,10657,10659,11803,10660,10662,11804,10663,10665,10667,10668,10670,10672,10672,10674,10676,10679,10681,10683,10684,10686,10688,11805,10689,10691,10691,10693,10695,10696,10698,10699,10699,10701,10703,10703,10705,11806,10706,10708,10710,10711,10713,10715,10718,10720,10722,10722,10724,10726,10727,10729,10731,10734,10736,10738,10741,10743,10745,10746,10748,10750,10750,10752,10754,10755,10757,10759,10759,10761,10763,10764,10766,10768,10769,10771,10773,10774,10776,10777,10777,10779,10781,10782,10784,11807,10785,10787,10788,10788,10790,10792,10792,10794,10796,10797,10799,10801,10801,10803,10805,10806,10808,11808,10809,10811,11809,10812,10814,10816,10816,10818,10820,10821,10823,10825,10825,10827,11810,10828,10830,11811,10831,10833,10835,10838,10840,11812,10841,10843,10845,10850,10851,10853,10853,10855,10857,10857,10859,10860,10860,10862,10864,10865,10867,10869,10869,10871,10873,10873,10875,11813,10876,10878,10880,10884,10886,11814,10890,10892,10893,10893,10895,10897,10897,10899,10901,10901,10903,11815,10904,10906,10908,10908,10910,10912,10913,10915,10917,11816,10918,10920,10920,10922,10924,10927,10929,10931,10932,10934,10936,10937,10939,11817,10940,10942,11818,10943,10945,10947,10947,10949,11819,10953,10955,10957,10958,10960,10962,10962,10964,10966,10967,10969,10971,11820,10972,10974,10975,10977,11821,10981,10983,10985,10985,10987,10989,10991,10992,10994,10994,10996,11822,10997,10999,11001,11001,11003,11005,11006,11008,11823,11009,11011,11824,11012,11014,11016,11017,11019,11825,11020,11022,11023,11029,11031,11033,11034,11036,11038,11040,11041,11043,11826,11044,11046,11046,11048,11050,11051,11053,11055,11056,11058,11060,11060,11062,11827,11066,11068,11070,11070,11072,11074,11074,11076,11078,11079,11081,11082,11082,11084,11086,11090,11092,11094,11094,11096,11098,11101,11103,11105,11106,11108,11110,11110,11112,11114,11114,11116,11118,11124,11126,11128,11128,11130,11132,11133,11135,11828,11828,11136,11138,11138,11140,11142,11143,11145,11146,11146,11148,11150,11151,11153,11155,11156,11158,11160,11161,11163,11165,11166,11168,11170,11170,11172,11829,11173,11175,11830,11176,11178,11179,11179,11181,11183,11183,11185,11831,11186,11188,11190,11190,11192,11194,11832,11197,11199,11202,11204,11833,11834,11208,11210,11210,11212,11214,11220,11222,11224,11225,11227,11835,11228,11230,11836,11231,11233,11234,11234,11236,11238,11238,11240,11242,11242,11244,11837,11245,11247,11249,11250,11252,11838,11253,11255,11839,11839,11256,11258,11258,11260,11840,11261,11263,11265,11266,11268,11270,11270,11272,11841,11273,11275,11277,11280,11282,11283,11283,11285,11287,11288,11290,11292,11292,11294,11842,11300,11302,11304,11304,11306,11308,11309,11311,11843,11844,11312,11314,11314,11316,11845,11317,11319,11320,11323,11325,11846,11329,11331,11333,11334,11336,11338,11339,11341,11343,11344,11346,11348,11348,11350,11352,11356,11358,11360,11360,11362,11364,11365,11367,11369,11847,11370,11372,11848,11373,11375,11849,11376,11378,11381,11383,11385,11386,11388,11850,11389,11391,11393,11394,11396,11398,11401,11403,11405,11406,11408,11851,11409,11411,11852,11412,11414,11416,11416,11418,11420,11853,11421,11423,11423,11425,11854,11854,11426,11428,11429,11431,11433,11433,11435,11437,11438,11440,11442,11443,11445,11447,11448,11450,11855,11451,11453,11455,11455,11457,11856,11857,11458,11460,11461,11463,11465,11858,11466,11468,11469,11471,11859,11472,11474,11860,11478,11480,11861,11483,11485,11487,11487,11489,11862,11490,11492,11494,11494,11496,11498,11498,11500,11501,11501,11503,11505,11506,11508,11509,11515,11517,11863,11518,11520,11522,11522,11524,11525,11527,11529,11531,11864,11538,11540,11541,11543,11545,11545,11547,11548,11548,11550,11552,11553,11555,11865,11866,11556,11558,11559,11561,11867,11562,11564,11566,11566,11568,11570,11570,11572,11574,11576,11578,11580,11581,11583,11868,11584,11586,11588,11591,11593,11595,11595,11597,11599,11600,11602,11604,11604,11606,11869,11607,11609,11611,11611,11613,11870,11616,11617,11619,11619,11621,11623,11626,11628,11630,11631,11633,11871,11634,11636,11638,11639,11641,11642,11642,11644,11646,11646,11648,11650,11650,11652,11872,11656,11658,11660,11660,11662,11873,11663,11665,11667,11668,11670,11672,11675,11677,11874,11678,11680,11875,11876,11681,11683,11686,11688,11690,11690,11692,11694,11695,11697,11699,11700,11702,11704,11704,11706,11708,11709,11711,11713,11716,11718,11720,11723,11725,11727,11877,11728,2845,4586,4596,2843,2841,3998,2839,2834,2833,3997,2830,2828,2827,2827,2825,2824,2821,2820,4489,2817,2815,2813,2812,3996,2809,2809,3995,2807,2802,2801,4173,2795,2793,2792,2792,4172,2789,2788,2787,2785,2785,2783,2782,2780,2778,2776,2774,2773,3993,2771,2770,2768,2767,2765,3992,2763,2762,4090,4090,2760,2759,2757,2755,2754,9398,9402,11729,11729,9405,9409,9414,9418,11878,9419,9422,9424,9425,9429,9432,9432,11730,11879,11880,9435,9438,9438,9442,9443,9443,9447,9451,9454,9455,11731,11881,9458,9462,9462,9466,11732,11733,9471,9473,9476,9480,9484,11882,9485,11734,9488,9491,9495,9496,9500,9501,9501,9505,11883,11884,9506,9509,9509,9513,11885,11886,9514,9518,11887,9524,9527,9527,9530,9534,9535,9539,9541,9541,9545,9547,11888,9548,9552,9552,9556,9560,9560,9562,11735,11735,9565,11736,11889,9568,9572,9575,9577,9581,9581,9582,9586,9587,9591,11890,9592,9596,9600,11738,9606,11891,9607,9611,9615,9615,9616,11739,11739,9619,11740,11892,9622,9626,9631,9635,9639,9639,9643,9644,9644,9648,11893,9651,9652,9656,9659,9663,9667,9668,9672,11743,11744,6004,7292,7560,7592,6002,8302,8258,5999,7657,7621,5996,7288,5994,7287,5988,5986,5985,5985,7284,5983,5983,5982,5980,5971,5968,5967,5965,7497,5962,5960,5957,5955,5955,5952,5951,5951,7655,5947,5941,7496,5938,5936,5935,5931,5929,7555,5926,5921,5918,7494,5912,5911,5909,5904,5902,5900,5899,5898,5895,5893,5890,7653,7653,8038,5885,5883,5882,5880,5880,7770,7618,5866,5863,5861,5856,5853,5852,5849,5848,11745,11745,9678,11894,9679,11746,9682,9682,9686,9688,9688,9689,9692,9694,9698,9701,9701,9705,9709,9715,9717,9721,11895,9727,11747,11896,9730,9734,9739,9740,9744,9746,9749,11748,11748,9752,9755,9760,9762,9765,9768,9772,9773,9773,9777,11749,9780,9784,11897,11898,9785,9789,9789,9793,9797,9798,9802,9806,9807,9811,11750,9814,9818,9821,9821,11751,11752,11752,9826,9830,11899,9834,9838,9842,9846,11900,9847,9851,11901,11902,9852,11754,9857,11755,9860,9860,9864,9865,9865,9869,11903,9872,9873,9876,9876,11756,11904,11904,9879,9883,9883,9886,11757,11757,9889,9890,9890,9894,11905,11906,9895,9899,11758,9902,11759,11907,9908,9912,9912,9913,9917,9920,11761,9923,9923,9926,9928,9928,9931,9933,9933,9936,11762,11908,9939,11763,9942,9946,11909,9947,9951,11910,11911,9952,9956,9960,9964,9967,9967,9971,11912,9972,9974,9978,9981,9984,9988,11913,9989,9993,9994,9998,11914,11764,10001,10005,10006,10010,11915,10013,10016,10020,10025,10026,10030,11916,10031,10035,10035,11765,10038,10041,11767,11917,11917,10044,10048,10048,10052,10054,11768,10057,10061,10061,10062,10066,10066,10070,11918,10071,10075,10079,10079,11769,11919,10082,10086,11920,10087,11770,10090,10090,10094,11771,10097,10099,10103,10103,10107,11921,10108,10112,11922,10113,10117,10121,10124,10127,10131,10132,10136,11773,10139,10143,10147,11923,10151,10155,10155,10159,10160,10160,10164,10167,10167,10171,11924,10175,10179,11925,11926,10180,10184,10186,10187,11774,11774,10190,10194,11927,10195,10199,10199,10203,11928,10204,10208,10212,10213,10217,10221,10221,11775,10224,10227,10231,10233,10234,11776,11929,11930,10237,11777,11931,10240,10244,10244,11778,11932,10247,10251,10252,10252,10256,10258,10259,10263,10267,10269,10272,10276,11933,10277,10281,10282,10285,10289,10289,10290,10293,10293,10297,10301,10301,10305,10308,10310,10313,11934,11935,10314,10318,10321,10325,11779,10332,10333,10337,10338,11780,10341,10346,10350,10351,10351,11781,11936,10354,10358,10362,10362,10366,11782,10384,10386,10390,11937,10391,10395,10397,11784,10400,10406,10409,11785,11785,10412,10416,10417,10421,11938,11939,10422,10425,10425,11786,10428,10428,11787,10433,10438,10439,10443,10445,10446,10450,11940,10451,10455,10460,10464,10468,11941,10469,10473,10473,10477,10479,10479,10480,10484,11942,10485,10489,10489,10491,11788,11789,10496,11943,11943,10497,10501,11944,10504,10508,10508,11790,10511,10511,10514,10516,10516,11791,10519,11792,10522,10526,11945,10527,10531,10531,10532,10536,10540,11794,11795,11795,10545,10546,10548,10549,10553,10556,10560,11946,10561,10565,10569,11797,10575,10579,10579,10582,11798,11947,10585,10588,10592,10593,10597,10597,10601,11948,11948,10602,10606,11949,10607,11799,11799,10610,10614,11950,10615,10619,10620,10624,11951,10625,10629,11952,10630,10634,11953,11953,10635,10639,11954,10640,10644,11955,10647,11801,11802,10653,10657,11804,10663,10667,10667,10668,10672,10672,10676,10678,10678,10679,10683,10684,10688,11805,11805,10691,10695,11956,10696,10699,10699,10703,11806,11957,10706,10710,10711,10715,10717,10718,10722,10726,10726,10727,10731,11958,10734,10738,10740,10741,10745,10746,10750,10754,10755,10759,10763,10764,10768,10769,10769,10773,11959,11960,10774,10777,10777,10781,11961,11962,10782,11807,10785,10788,10792,10792,10796,10797,10797,10801,10805,11963,10806,11808,10812,10816,10820,10821,10825,11810,11810,10828,11811,11811,10831,10835,10841,10845,10847,10850,10853,10857,10857,10860,10864,10865,10869,10873,10873,11813,11964,11965,10876,10880,10884,11814,11966,10889,10890,10893,10893,10897,10901,10904,10908,10912,11967,10913,10917,11816,10920,10924,10926,10927,10931,10932,10936,11968,11969,10937,11817,10940,11818,10943,10943,10947,11819,10953,10957,11970,11971,10958,10962,10962,10966,11972,10967,10971,11973,11820,10974,11974,11975,10975,11821,10981,10985,10989,10991,10994,11822,11822,10997,11001,11001,11005,11976,11977,11012,11016,11825,11020,11023,11029,11033,11978,11979,11034,11038,11826,11046,11050,11980,11051,11055,11056,11060,11827,11066,11070,11074,11074,11078,11981,11079,11082,11086,11090,11094,11098,11982,11101,11105,11106,11110,11114,11114,11118,11120,11983,11124,11128,11132,11133,11828,11828,11138,11142,11146,11150,11151,11151,11155,11984,11984,11156,11160,11161,11165,11985,11986,11166,11170,11170,11829,11987,11988,11173,11830,11989,11176,11179,11179,11183,11831,11990,11186,11190,11190,11194,11196,11832,11199,11201,11991,11202,11833,11834,11210,11214,11992,11220,11224,11228,11836,11231,11231,11234,11238,11238,11242,11837,11837,11245,11249,11253,11839,11258,11258,11840,11993,11261,11265,11994,11266,11270,11841,11841,11273,11277,11280,11283,11287,11995,11288,11292,11300,11304,11308,11844,11314,11845,11317,11320,11322,11322,11323,11846,11328,11329,11333,11996,11334,11338,11339,11343,11997,11344,11348,11352,11355,11356,11360,11360,11364,11365,11365,11369,11998,11847,11372,11999,11848,11375,12000,11849,11378,11380,11380,11381,11385,12001,11386,11850,11389,11393,12002,11394,11398,11400,12003,11401,11405,11406,11851,12004,11409,11852,12005,12005,11412,11416,11853,11423,11854,12006,11429,11433,11433,11437,12007,12007,11438,11442,12008,11443,11447,11448,11855,11451,11451,11455,11856,11857,11460,12009,11461,11465,12010,11859,11472,11860,11478,11861,12011,11483,11487,11862,11490,11494,11498,11498,11501,11505,11506,11509,11511,12012,11515,11863,11518,11522,11525,11525,11527,11531,11864,11540,12013,12014,11541,11545,11545,11548,11552,11553,11865,11866,11866,11558,11559,11559,11867,12015,12016,11562,11566,11566,11570,11574,11581,11868,12017,11584,11588,11590,12018,11591,11595,11599,11600,11604,11607,11611,11870,11616,11619,11623,11626,11630,12019,12020,11631,11871,11634,11638,12021,11639,11642,11646,11646,11650,11872,11655,11656,11660,11873,11663,11667,12022,11668,11672,12023,11675,11874,12024,11678,11875,11876,11683,11685,11685,11686,11690,11695,11699,12025,11700,11704,11708,12026,11709,11713,11716,11720,11722,11723,11727,11877,11877,2845,3999,4581,4586,2843,2841,2839,2838,2835,2834,3997,2830,2827,2824,2822,2821,4489,2818,2817,2813,2809,2807,2806,2802,4173,2799,2795,2792,2789,2785,2782,2780,2780,2776,2775,2774,3993,2771,2771,2768,2767,2767,3992,2763,2763,4090,2759,2759,2757,2754,2751,9398,11729,11729,9409,9413,9414,11878,9419,9419,9424,9425,9425,9432,11879,11880,9438,9443,9443,9451,12027,11881,9462,11732,11733,9473,9474,9474,9476,9484,11882,11734,9488,9488,9495,12028,9496,9501,11883,11884,9509,11885,11886,9518,9520,12029,11887,9527,9527,9534,9535,9535,9541,9547,12030,11888,9552,9552,9560,11735,11735,11736,11889,11889,9572,9574,9575,9581,9586,9586,9587,11890,9592,9600,12031,11738,11891,9607,9607,9615,11739,11892,9626,9630,12032,9631,9639,9639,9644,11893,11741,9651,9656,12033,9659,9667,9667,9668,11743,11744,7292,7414,7503,7560,6002,8218,8302,5999,7780,7657,5996,7410,7288,7287,5988,5985,5983,5983,5980,5979,5971,5967,5966,5966,5965,5962,5961,5960,5955,5955,5951,5947,5937,5936,5931,5929,5926,5924,5922,5921,7494,5912,5909,5908,5904,5900,5899,5899,5895,5894,5893,7653,5885,5883,5880,7618,5867,5866,5861,5856,5852,5851,5849,11745,11894,9679,9682,9688,9692,9694,9701,9701,9709,9712,9714,9715,9721,11747,11896,9734,11748,9755,9757,9760,9765,9768,9768,9773,11749,12034,9780,11897,11897,11898,9789,9789,9797,9798,9798,9806,12035,9807,11750,9814,9814,9821,11752,11752,9830,9831,9842,11900,12036,9847,11901,12037,11902,11754,12038,9857,9860,9865,9865,11903,12039,9872,9876,11904,11904,9883,11757,11757,9890,11905,11905,11906,9899,12040,11758,11759,11907,9912,9917,9920,9923,9928,9933,11762,12041,11908,11763,12042,12042,9942,11909,12043,9947,11910,11911,9956,9957,12044,9960,9967,9967,11912,12045,9972,9978,9980,9981,9988,11913,11913,9993,12046,12046,9994,11914,12047,11764,10005,12048,10006,11915,10011,10013,10020,10021,10025,10030,11916,10035,10038,10041,11917,10048,10048,10054,11768,11768,10061,10066,10071,10079,11919,10082,11920,10087,10087,10090,11771,10097,10103,11921,11921,10108,11922,10113,10121,11772,10124,10131,12049,10132,11773,12050,10139,10147,12051,11923,10155,10160,10160,10167,11924,10175,11925,12052,11926,10184,10186,10186,11774,10194,12053,11927,10199,10199,11928,12054,10204,10212,12055,12056,10213,10221,12057,10227,10233,11930,11777,12058,11931,10244,11932,10247,10252,10258,10259,10267,10269,10269,10276,11933,11933,10281,10282,10289,10293,10301,10301,10308,10310,10310,11934,12059,12060,11935,10318,10321,11779,10328,10328,10332,10337,10338,10341,10345,10346,10351,11936,10354,10362,11782,10384,10390,12061,11937,10395,10397,10397,10400,12062,10406,11785,10416,10417,11938,11939,10425,10428,10433,10438,10443,10445,10445,10450,11940,11940,10455,10459,10460,10468,12063,11941,10473,10479,11942,10489,11788,12064,11789,11943,11943,10501,10503,12065,11944,10508,10508,10511,10516,10516,10519,11792,11792,10526,11945,11945,10531,10536,10540,11795,10546,10548,10553,11796,11796,10556,11946,10561,10569,10571,10572,11797,10579,10579,11798,11947,11947,10588,10592,10597,11948,10606,11949,11799,10614,11950,10619,12066,12066,10620,11951,10625,11952,10630,10630,11953,10639,11954,10644,11800,11802,10657,11803,11804,10667,10672,10672,10678,10683,12067,10684,11805,11805,10695,12068,10699,11806,12069,11957,10710,10711,10711,10717,10718,10726,10731,10733,11958,10738,10740,10740,10745,10746,10746,10754,10755,10755,10763,12070,12071,10764,10769,11960,10777,11961,11962,11807,10785,10785,10792,10797,10797,10805,12072,10812,10820,12073,12073,10821,11810,11810,11811,10835,11812,10841,10847,10848,10850,10857,10857,10864,12074,12074,10865,10873,11965,10880,12075,10883,10884,11966,10889,10893,10901,11815,10904,10912,11967,10917,11816,11816,10924,10926,10926,10931,12076,10932,11968,11969,11969,11817,10940,10940,10943,11819,10952,10953,11970,11971,10962,11972,12077,10967,11973,11820,11974,12078,11975,11821,12079,12080,10981,10989,10989,10991,11822,11822,11001,11976,11017,11825,11023,11028,11029,11978,12081,11979,11038,11043,11826,11050,12082,11980,11055,11056,11827,12083,11074,11981,12084,11079,11086,11087,11090,11098,11100,11982,11105,12085,12086,11106,11114,11114,11120,11121,11983,11128,11132,11132,11828,11142,11146,11151,11984,11984,11160,12087,12087,11161,11985,11986,11170,11987,11989,11179,11831,11990,11190,11196,12088,11832,11201,11991,11833,11205,11207,11834,11214,11992,11224,12089,11228,11231,11238,11238,11837,11249,11253,11258,11993,12090,11261,11994,11994,11266,11841,11841,11277,11278,11278,11280,11287,11995,11292,11842,11298,11300,11308,11844,11845,11317,11322,11846,11326,11328,11333,12091,11996,11338,11339,12092,11344,11352,11353,11355,11360,11360,11365,11998,11847,11999,12093,12093,11848,12000,12094,11849,11380,11380,11385,12095,11850,11389,12002,12002,11394,11400,12003,11405,12096,11409,12005,11416,11853,11854,11428,12006,11433,12007,12007,11442,12097,12098,12008,11447,11448,11451,11856,11857,12009,11461,11483,11862,11490,11490,11498,11505,11506,11511,11512,12099,12012,11863,12100,11518,11525,11525,11531,12101,12102,11864,12013,11545,11552,12103,11553,11866,11559,11566,11574,11576,11581,12017,12104,11584,11590,12018,12018,11595,11599,11599,11604,11869,11607,11870,12105,11614,11616,11623,11646,11872,11653,11653,11655,11660,11873,11667,12022,12022,11672,11674,12023,11874,12106,12024,11875,12107,12107,11876,11685,11685,11690,11694,11695,12025,11700,11700,11708,12026,12026,11713,11715,12108,11723,11877,11877,3999,4091,4571,4581,2843,2835,3997,2831,2830,2824,2822,2822,4489,2818,2818,2813,2812,2803,2802,2799,2796,2795,2789,2785,2780,2775,2775,2774,2771,2771,2767,2763,2751,11729,9413,9419,9425,11879,11880,9443,12027,11881,11732,12109,11733,9474,9484,9488,12028,12110,9496,11883,12111,12112,11886,9520,12029,9527,9535,9535,9547,12113,12030,9552,11735,11735,11889,9574,12114,9575,9586,9586,11890,12115,9592,12031,12116,11737,11738,9607,9607,11739,11740,12117,11892,9630,12032,9639,11893,11741,9656,11742,12033,9667,11743,11744,7414,7503,8122,8218,5999,7820,7780,5996,7500,7410,7287,5988,5983,5979,5973,5971,5966,5966,5962,5961,5961,5955,5947,5929,5924,5923,5922,7494,5915,5912,5908,5907,5905,5904,5899,5894,5893,5885,5883,7618,5877,5867,5861,5860,5850,5849,11894,9688,9692,9701,9701,9712,9714,9714,9721,9723,11747,9734,9735,11748,9757,9758,9758,9760,9768,9768,11749,12034,12034,11897,9789,9789,9798,12035,12035,9807,9814,9814,11752,9831,9842,12036,12118,9847,12037,11902,9865,12039,9870,9872,11904,11757,11757,11905,9899,12040,11759,9905,9907,11907,9917,9920,9928,9933,9933,12041,11908,12042,11909,12043,12043,11910,11911,11911,9957,9959,12044,9967,12045,12119,9972,9980,9981,11913,12046,12047,10005,12048,10011,10020,10021,10021,10030,12120,11916,10038,11766,10041,10048,11768,11768,10066,11918,11918,10071,11919,10082,10087,11771,10097,11921,11922,10113,11772,10124,10124,12049,12121,10132,12050,12122,10139,12051,12123,12124,11923,10160,10160,11924,12125,11926,10186,10194,12053,10199,12054,10204,12055,12126,12127,12056,10221,12057,10233,10234,12058,11931,11932,10247,10258,12128,10259,10269,11933,10282,10289,10301,12059,12060,10318,10321,10328,10337,10345,10346,11936,11936,10354,11782,10384,12061,11937,10405,10406,10416,10416,10417,11939,10425,10433,12129,10438,10445,11940,11940,10459,12130,10460,12063,12131,11941,10479,10484,11942,11788,12132,12064,11943,10503,12065,10508,10516,10516,11792,11945,11945,10536,11793,10540,10546,10548,10548,11796,11946,10561,10571,10572,10572,10579,11947,11947,10592,10597,10597,10606,11949,11949,10614,11950,12066,11951,12133,10625,10630,10639,12134,11954,11800,10650,11802,11803,11804,10672,10683,12067,11805,12068,10699,12069,11957,11957,10711,10718,10718,10726,10733,11958,10740,10746,10746,10755,12070,12071,10769,11959,11960,11961,12135,11962,10785,10797,10797,12072,11963,10812,12073,11810,11810,10835,10837,10838,11812,10847,12136,10848,10857,10857,12074,10873,12137,11965,12075,10887,10889,10901,11815,10912,12138,11967,11816,10926,10926,12076,10932,10932,11969,10940,10940,11819,12139,10950,10952,11970,12140,11971,11972,12077,11973,12141,12142,11820,12078,12080,10989,11822,11822,11976,11006,11017,11023,11025,11026,11028,11978,12081,11038,11040,11043,11050,12082,12082,11055,12143,11066,11074,12084,11079,11087,11089,11090,11100,11982,11982,12085,12086,12086,11114,11121,12144,11983,11132,11132,11142,11143,11146,11984,12087,12087,11985,12145,12145,11986,11987,12146,11989,11831,11831,11990,11196,12147,12088,11201,11991,11205,11207,11207,11214,11216,12148,11992,12089,11228,11238,11249,11838,11253,11993,12090,11994,11841,11278,11287,11995,11995,11842,12149,11298,11308,12150,11844,11317,11322,11326,11328,12091,11996,11339,11997,11352,11353,11360,11360,11998,11847,11847,12093,12000,12151,12094,11380,12001,11850,12002,12002,11400,12003,12003,12096,11406,12004,11409,11416,12006,12007,12097,12098,11447,12152,12152,11448,11856,11856,11857,11461,11483,11490,11505,12099,11863,12100,12100,11525,12101,12102,12013,12153,11545,12103,12154,11553,11559,12015,11566,11576,11580,12155,11584,12018,11599,11869,11607,11607,12105,12156,11614,11623,11625,11639,11646,11653,11653,11660,11873,12022,11674,12157,12158,12023,12106,12107,11685,11694,11695,11700,12026,12026,11715,12159,11722,12108,11877,11877,4091,4174,4561,4571,2843,2835,2831,2830,2822,2818,2812,2803,2799,2798,2796,2789,2788,2785,2775,2771,2771,2763,2759,2752,2751,9413,9419,11879,11880,11880,12027,9452,11881,12109,12160,11733,9484,12161,9488,12110,9496,9496,12111,11884,12112,9520,9523,12162,12029,9535,9535,12113,12163,12030,11735,9574,12114,9586,12115,9592,12116,9601,11737,9607,11740,12164,12032,11893,11742,12033,11743,7503,6002,12165,7503,12165,11744,8045,8122,5999,7868,7820,5996,7411,7500,7287,5989,5988,5979,5974,5973,5966,5961,5947,12166,5961,12166,5966,5922,5915,5914,5913,5912,5907,5899,5894,5885,5883,5877,5876,5867,5860,5859,5851,5850,11894,9701,9714,12167,9701,12167,9688,9714,9723,9724,11895,11747,9735,9768,12034,12168,9768,12168,9758,12034,9789,12035,12035,9814,9831,9838,9842,12118,9847,11902,12038,9865,9870,9872,9872,11757,9899,12040,9905,9907,9907,9917,11760,9920,9933,11908,12042,12043,11911,11911,9959,12169,12170,12044,12045,12119,9980,12171,9981,12046,11914,12047,12048,11915,10011,10021,12120,11916,11766,10041,10041,11768,11918,11918,11919,12172,12173,10082,11771,10097,11922,12174,10113,10124,12121,12121,10132,12122,12122,10139,12123,12124,10160,12125,12052,11926,10194,10194,12053,12054,10204,12126,12175,12176,12127,10221,12057,10234,11929,12058,11932,12177,10247,12128,10259,10259,11933,10282,10282,10301,10310,12059,10318,10320,10321,10337,10338,10345,11936,11782,10383,10384,11937,10405,10416,11939,10425,12129,12178,10438,11940,12130,10460,12131,11941,11941,10484,11942,12179,12064,10503,10503,12065,10516,11945,11793,10539,12180,10540,10548,10548,11946,12181,10561,10572,11947,12066,12133,12182,10625,10639,12183,12134,11800,11955,11801,10650,11803,10660,11804,10683,12067,12068,12184,10699,11957,10718,11958,10746,12070,12185,12071,11959,12186,11962,10797,11809,10812,11810,11810,10837,12187,10838,10847,12136,12136,10857,10873,12137,12075,12188,12189,10887,10901,11815,12138,11967,11967,10926,10932,10932,10940,12139,10950,11970,12140,12140,11972,12190,12191,12080,11822,11822,11006,11823,11026,11978,12081,12081,11040,11043,12082,12143,12192,11065,11066,12084,12193,11079,11089,11090,11982,12086,12086,11121,11123,12144,11132,11143,11143,11146,12087,12146,11831,11196,11991,11207,11216,12148,12089,12194,12195,11228,11249,11838,11993,12196,12090,11841,11278,11278,11995,12149,11298,12150,12197,12198,11844,11322,11326,12091,12199,12200,11996,11997,11352,11360,11847,11847,12000,12201,12095,12001,12002,12002,12003,11406,12004,11416,11420,12006,12097,12202,12202,12098,12152,12152,11856,11461,11481,11483,11505,12099,12100,12101,12102,12153,12014,12014,11545,12154,12154,11553,12015,12016,11566,11580,12155,12018,11599,11599,11607,12156,12156,11614,11625,12203,11639,11653,11653,11873,12022,12022,12157,12158,12158,12106,12024,12107,11694,11695,11695,12026,12159,11722,11877,4174,4550,4561,2843,2835,2830,2822,2822,2812,2809,2803,2798,2796,2771,2759,12204,2771,12204,2785,2752,9413,9414,9419,11880,9452,11881,12160,12205,11733,12161,11882,9488,9496,11884,12112,9523,12162,12162,9535,12163,12030,9574,12114,12114,12115,9592,9601,11737,11740,9630,12164,11893,11742,11743,12206,6002,6001,12207,12207,11744,12165,12207,12165,6002,7976,8045,5999,7972,7868,5996,7289,7411,7287,5990,5989,5979,12208,5966,12166,12208,12166,5947,5966,12208,5974,5922,5914,5913,5899,5885,12209,5899,12209,5905,5883,5876,5873,5867,5859,5856,5856,5851,11894,12210,9688,12167,12210,12167,9714,9688,12210,9679,9714,9724,9726,9726,11895,9735,12211,9758,12168,12211,12168,12034,9758,12211,11748,12035,9831,12212,12035,12212,12034,11899,9838,12118,9865,9872,9899,12213,12040,9907,9907,11760,9920,9920,11908,12042,12042,11911,12169,12169,12170,12045,12119,12171,12214,9981,11914,12047,12047,11915,10011,10011,12120,12215,11916,10041,11918,11918,12172,12173,12173,11771,12216,10097,12174,12217,12218,10113,12121,12121,12122,12123,10150,12124,12125,10175,12052,10194,10204,12175,12219,12176,10221,10224,12220,12057,11929,11930,12058,12177,12177,10247,10259,10282,10310,12221,10282,12221,10259,10310,12059,10320,10345,11782,10369,10383,11937,10397,10405,11939,10425,10425,12178,10434,10438,12130,10460,10503,10516,12222,10503,12222,12179,11945,10539,12180,10548,12181,12223,10548,12223,12180,12224,10561,11947,12066,12182,10625,12134,11955,11801,11801,11803,12225,12226,10660,10683,12067,12184,12227,10699,10718,10733,12228,11958,12070,12186,10797,11963,11809,11810,12187,10838,12136,10873,12137,12188,10881,12189,10901,11815,11815,11967,10932,10932,12139,10950,12140,12190,12229,10980,12191,11822,11822,11823,12230,11026,12081,11043,11065,12084,12193,11090,12086,11123,11123,12144,11143,11143,12087,12145,12231,12146,11196,11991,11216,12232,11219,12148,12194,12195,11249,12233,11838,12196,12090,12090,11278,12149,12234,11298,12197,11326,12199,12235,12200,11997,12236,11352,11847,12201,11380,12095,12002,12002,11406,12004,12004,11420,12237,12006,12202,12152,12152,11461,12010,12011,11481,11505,11514,12099,12101,12102,12014,12154,12154,12015,12238,12239,12016,11580,12240,12155,11599,11599,12156,11625,12203,11653,12022,12022,12158,12024,12107,11695,12159,11716,11722,4174,4540,4550,2843,2835,2822,2809,2803,2796,2788,2759,2754,12241,12241,2785,12204,12241,12204,2759,2752,9414,9419,9419,9452,9454,11733,11882,9488,9488,11884,11885,12162,12163,12242,12030,12114,9592,9601,11740,12243,12117,9630,11893,11742,12206,12244,6001,7291,12245,12245,11744,12207,12245,12207,6001,7976,5999,12246,7976,12246,7917,7972,5996,12247,7972,12247,7915,5995,7289,7287,5990,5979,5978,12248,5974,12208,12248,12208,5947,5974,12248,5975,5922,5913,5907,12209,5883,12249,12209,12249,5905,5883,12209,5885,5883,5873,5870,5856,11894,12250,5856,12250,5867,9726,9735,12251,9726,12251,9714,12252,11748,12211,12252,12211,12034,11748,12252,9746,9831,11753,12253,12253,12034,12212,12253,12212,9831,11753,11899,12118,9865,9899,12254,12254,12213,9907,9920,12042,12169,12169,12045,12119,10011,12215,12255,12255,11916,11918,12173,12216,10097,10097,12217,12256,12121,12123,10148,10150,12125,10172,10175,10194,12054,10204,12219,12176,12176,10224,10226,12257,11930,12177,12258,10259,12221,12258,12221,10310,10259,12258,12177,10310,10320,10321,10345,10369,10371,10381,10383,10397,12259,12179,12222,12259,12222,10516,12179,12259,12132,12260,12180,12223,12260,12223,12181,12180,12260,12261,12180,12261,11945,11950,12066,10625,12183,12134,11801,11801,12225,12262,12226,10683,12263,10699,10733,12228,12228,12070,12185,12135,12186,11963,10809,11809,12187,12264,10838,10873,12265,12137,10881,12189,11815,10932,12140,12229,12077,10978,10980,11822,11822,12230,11009,11025,11026,11043,11065,12193,11089,11089,11090,11123,11123,11143,12145,12231,11196,12266,11991,12232,12267,11219,12194,12268,12269,12195,12233,12090,12149,12270,12234,12197,12271,11352,12201,12272,11380,12002,12004,11428,12006,12152,12152,12010,12273,11478,12011,11505,11512,11514,12101,12274,12102,12154,12275,12239,11580,12276,12240,11599,11599,11625,12277,12021,12203,12022,12024,12107,12159,12278,11716,4174,4540,2843,12279,4540,12279,4523,2835,2809,2806,2803,2788,2785,2753,2752,9419,9419,9454,11731,11733,9488,11885,12162,12242,12030,12030,9592,9601,9601,12243,12280,12117,11893,12281,11742,12244,11744,7291,7413,12282,12282,11744,12245,12282,12245,7291,12283,7917,12246,12283,12246,5999,7917,12283,7876,12284,7915,12247,12284,12247,5996,7915,12284,7874,5995,7287,12285,5995,12285,5996,5990,5978,5977,12286,5975,12248,12286,12248,5947,5975,12286,5976,12287,5905,12249,12287,12249,5883,5905,12287,5906,12288,5867,12250,12288,12250,11894,5867,12288,5868,9735,9737,12289,12289,9714,12251,12289,12251,9735,12290,9746,12252,12252,12034,12291,12252,12291,12290,9746,12290,12292,9746,12292,9744,11753,12118,12293,12293,12034,12253,12293,12253,11753,9865,12254,9907,12169,12119,12214,10011,12255,11918,10097,12256,12218,12121,10148,10150,10150,10172,10174,10174,10175,12054,10204,12176,10226,12294,12177,12258,12294,12258,10310,12177,12294,12257,10310,10321,10338,10338,10345,10371,10380,10381,10397,12295,12132,12259,12295,12259,10516,12132,12295,11942,12181,12224,12296,12181,12296,12297,12260,12297,12298,12298,11945,12261,12298,12261,12260,12297,12260,12181,11949,11950,10625,12183,11801,12262,12226,12263,12067,12228,12185,12299,12228,12299,10699,11960,12135,11963,12300,10809,12187,12301,12264,10873,12265,10881,10883,11966,12189,10932,12140,12077,12141,10978,11822,11009,11017,11025,11043,11063,11065,11089,11089,11123,12145,12302,12231,12266,11201,11991,12267,12269,12233,11250,12090,12270,12303,12234,12271,11309,11352,12272,12304,12151,11380,12004,11853,11428,12152,11477,11478,11505,11512,12101,12305,12274,12154,12238,12275,11580,11581,12306,12276,11599,11599,12277,12307,11634,12021,12022,12024,12159,12308,12278,4174,4224,12309,4523,12279,12309,12279,2843,4523,12309,4507,12310,2785,12241,12310,12241,2754,2785,12310,2803,9419,11731,12311,12205,11733,11885,12162,12030,9601,9601,12280,12312,12312,12117,12281,11742,11744,12282,12282,7413,12313,12282,12313,11742,12314,7876,12283,12314,12283,5999,7876,12314,7828,12315,7874,12284,12315,12284,5996,7874,12315,7826,7287,5991,12316,12316,5996,12285,12316,12285,7287,5990,5977,5976,5947,5946,12317,12317,5976,12286,12317,12286,5947,12318,5906,12287,12318,12287,5883,5906,12318,5907,12319,5868,12288,12319,12288,11894,5868,12319,5870,9737,9739,12320,12320,9714,12289,12320,12289,9737,12293,9847,12321,12293,12321,12034,9847,12293,12118,9865,9907,9920,12169,12214,9981,12047,10011,11918,12173,10097,12218,10174,12054,10204,10204,10226,12220,12322,12257,12294,12322,12294,10310,12257,12322,11929,10371,12323,12324,10371,12324,10338,10378,10380,10397,10516,11945,12325,12325,11942,12295,12325,12295,10516,12183,12262,12326,12226,12067,12227,11959,10699,12299,11959,12299,12185,12327,11960,11963,12300,12187,12328,12301,10873,11964,10883,11966,10932,12329,10978,11009,11017,11043,12082,12083,11063,11089,11089,12145,11987,12302,12266,12330,11201,12267,11217,12269,11250,11838,11838,12090,12303,12234,11309,11843,11352,12304,12331,12332,12151,12004,12152,12273,12333,12152,12333,11853,11477,11505,12334,11512,12305,11532,12335,12274,12238,12275,11581,12104,12336,12306,11599,11599,12307,11626,11871,11634,12022,12024,12308,12337,4224,4267,12338,4224,12338,12278,12339,4507,12309,12339,12309,2843,4507,12339,4494,9419,12311,11881,11881,12205,11885,12162,9601,12340,12162,12340,12112,12341,11742,12313,12341,12313,7413,11742,12341,11741,12342,7828,12314,12342,12314,5999,7828,12342,7788,12343,7826,12315,12343,12315,5996,7826,12343,7786,12344,5976,12317,12344,12317,5946,5976,12344,5990,12318,5870,12345,12318,12345,5907,5870,12318,5883,12319,9679,12346,12319,12346,5870,9679,12319,11894,12347,12034,12321,12347,12321,9847,12347,12348,12349,12347,12349,12034,12290,12348,12350,12350,9744,12292,12350,12292,12290,12348,12290,12291,12291,12034,12349,12291,12349,12348,9857,9865,9920,12169,9981,12047,12047,11918,12173,10204,12220,11929,10310,10338,12351,12351,11929,12322,12351,12322,10310,12323,10372,12352,12352,10338,12324,12352,12324,12323,11783,10378,10397,12353,11942,12325,12325,11945,12354,12325,12354,12353,11942,12353,12355,11942,12355,11941,12183,12326,12226,12226,12227,11956,10699,11959,12356,12357,12327,11963,12300,12328,12358,12301,11964,12359,12265,10883,10932,12079,12329,11009,11016,11017,12082,11056,12083,11089,11089,11987,11988,12302,12330,12360,11201,11217,11219,11838,12303,12361,12362,12234,11843,11352,12331,12363,12332,12004,12237,12364,11853,12333,12364,12333,12273,11853,12364,12365,11477,12334,11506,11532,11534,12366,11532,12366,11512,12367,12335,12238,12368,12275,12104,12020,11871,12022,12022,12024,12337,4267,4292,12369,12369,12278,12338,12369,12338,4267,12370,4494,12339,12370,12339,2843,4494,12370,4467,11881,11885,12371,11881,12371,9419,12372,12112,12340,12372,12340,9601,12112,12372,12373,12374,11741,12341,12374,12341,7413,11741,12374,12281,12375,7788,12342,12375,12342,5999,7788,12375,7753,12376,7786,12343,12376,12343,5996,7786,12376,7751,12377,5907,12345,12345,5870,12378,12345,12378,12377,5907,12377,12379,5907,12379,5922,12380,9679,12210,12380,12210,9714,9679,12380,12381,12346,12381,12382,12346,12382,5870,12381,12346,9679,12350,12383,12384,12350,12384,9744,12383,12350,12348,12385,12348,12347,12385,12347,9847,12348,12385,12383,12386,9744,12384,12386,12384,12383,9744,12386,9739,9920,12169,12387,9920,12387,9857,12047,12173,12388,12047,12388,12169,10204,11929,12389,10204,12389,10174,12390,10338,12352,12390,12352,10372,12390,11929,12351,12390,12351,10338,11783,10397,12062,12391,11945,12298,12391,12298,12297,11945,12391,12392,12393,12297,12296,12393,12296,12224,12391,12393,12394,12391,12394,12392,12393,12391,12297,12395,12353,12396,12396,12392,12397,12396,12397,12395,12355,12395,12398,12355,12398,11941,12395,12355,12353,11945,12392,12396,12396,12353,12354,12396,12354,11945,12183,12226,11956,10699,12356,12399,12357,11963,11808,12300,12358,12400,12301,12359,12265,12265,10932,10950,11975,12079,11009,11016,12082,12192,11056,11089,11988,12302,12360,12401,12269,11838,12361,12362,11843,12198,12092,11352,12363,12402,12365,12364,12402,12364,12273,12365,12402,12403,11477,11506,11512,11534,12404,12405,12405,11512,12366,12405,12366,11534,12367,12238,12406,12407,12368,12104,12020,12022,12337,4292,4308,12408,12408,12278,12369,12408,12369,4292,12409,4467,12370,12409,12370,2843,4467,12409,4452,12410,9419,12371,12410,12371,11885,9419,12410,2753,12411,12373,12372,12411,12372,9601,12373,12411,12412,12413,12281,12374,12413,12374,7413,12281,12413,12312,12414,7753,12375,12414,12375,5999,7753,12414,7718,12415,7751,12376,12415,12376,5996,7751,12415,7716,12379,12416,12417,12379,12417,5922,12416,12379,12377,12418,12377,12378,12418,12378,5870,12377,12418,12416,12419,5922,12417,12419,12417,12416,5922,12419,5923,12420,9739,12386,12420,12386,12383,12421,12383,12385,12385,9847,12422,12385,12422,12421,12383,12421,12423,12383,12423,12420,9739,12420,12424,9739,12424,12425,12320,12425,12426,12320,12426,9714,12425,12320,9739,12427,12169,12388,12427,12388,12173,12169,12427,12428,12387,12428,12429,12387,12429,9857,12428,12387,12169,12390,10174,12389,12390,12389,11929,12390,10372,12430,12390,12430,10174,11783,12062,12431,11783,12431,10375,10625,12183,11956,12357,11808,12300,12300,12400,12301,12301,12265,10950,11975,11009,11824,11977,11016,12192,12192,11056,11988,11830,12302,12401,12432,12269,12361,12362,12198,11322,12092,12363,12433,12273,11858,12434,12434,12403,12402,12434,12402,12273,12435,11512,12405,12435,12405,12404,11512,12435,11477,11537,12367,12406,12436,12407,12104,12437,12020,12337,4308,4321,12438,12438,12278,12408,12438,12408,4308,12439,4452,12409,12439,12409,2843,4452,12439,4437,11885,12412,12440,12440,2753,12410,12440,12410,11885,9601,12312,12441,12441,12412,12411,12441,12411,9601,7413,7502,12442,12442,12312,12413,12442,12413,7413,12443,7718,12414,12443,12414,5999,7718,12443,7687,12444,7716,12415,12444,12415,5996,7716,12444,7685,12445,12446,12447,12447,12381,12448,12447,12448,12445,12446,5870,12382,12382,12381,12447,12382,12447,12446,12449,12381,12380,12449,12380,9714,12448,12449,12450,12448,12450,12445,12449,12448,12381,12451,12416,12452,12452,12445,12453,12452,12453,12451,12419,12451,12454,12419,12454,5923,12451,12419,12416,5870,12446,12455,12455,12416,12418,12455,12418,5870,12446,12445,12452,12452,12416,12455,12452,12455,12446,12456,12420,12457,12456,12457,12038,12420,12456,12458,12425,12458,12459,12459,9714,12426,12459,12426,12425,12458,12425,12424,12458,12424,12420,12421,12038,12457,12457,12420,12423,12457,12423,12421,12038,12421,12422,12038,12422,9847,12429,12460,12461,12429,12461,9857,12460,12429,12428,12462,12428,12427,12462,12427,12173,12428,12462,12460,12463,9857,12461,12463,12461,12460,9857,12463,9855,12464,10174,12430,12464,12430,10372,10174,12464,10150,12062,10401,12465,12465,10375,12431,12465,12431,12062,10625,11956,12466,10625,12466,11949,12300,12301,12467,12300,12467,12357,12301,10950,12140,12468,11975,11824,11977,12192,11988,11830,12401,12147,12432,12361,11295,12092,12433,12332,11858,11468,12469,12469,12403,12434,12469,12434,11858,12470,11477,12435,12470,12435,12404,11477,12470,11475,12436,12104,12471,12472,12437,12337,4321,4330,12473,12473,12278,12438,12473,12438,4321,12474,4437,12439,12474,12439,2843,4437,12474,4424,12475,12412,12441,12475,12441,12312,12412,12475,12476,12440,12476,12477,12440,12477,2753,12476,12440,12412,7502,7559,12478,7502,12478,12479,12479,12312,12442,12479,12442,7502,12480,7687,12443,12480,12443,5999,7687,12480,7662,12481,7685,12444,12481,12444,5996,7685,12481,7660,12451,12482,12483,12483,5923,12454,12483,12454,12451,12482,12451,12453,12482,12453,12445,12484,12445,12450,12484,12450,12449,12449,9714,12485,12449,12485,12484,12445,12484,12486,12445,12486,12482,12487,5923,12483,12483,12482,12488,12483,12488,12487,5923,12487,12489,5923,12489,5929,12490,12458,12491,12490,12491,9855,12458,12490,12492,12459,12492,12493,12459,12493,9714,12492,12459,12458,12456,9855,12491,12456,12491,12458,9855,12456,12038,12494,12460,12495,12494,12495,12218,12460,12494,12496,12463,12496,12497,12463,12497,9855,12496,12463,12460,12462,12218,12495,12462,12495,12460,12218,12462,12173,12464,10374,12498,12464,12498,10150,10374,12464,10372,10401,10405,12499,12499,10375,12465,12499,12465,10401,11956,10699,12500,12500,11949,12466,12500,12466,11956,12301,12140,12141,12468,11824,12501,11977,11988,11830,11830,12147,11201,12432,11295,11297,12236,12092,12332,11468,11469,12502,12502,12403,12469,12502,12469,11468,12404,11535,12503,12503,11475,12470,12503,12470,12404,12504,12436,12471,12505,12472,12337,4330,4337,12506,12506,12278,12473,12506,12473,4330,12507,4424,12474,12507,12474,2843,4424,12507,4412,12477,12508,12509,12477,12509,2753,12508,12477,12476,12510,12476,12475,12510,12475,12312,12476,12510,12508,12511,2753,12509,12511,12509,12508,2753,12511,2754,7559,7591,12512,7559,12512,12513,12479,12513,12514,12479,12514,12312,12513,12479,12478,12513,12478,7559,12515,7662,12480,12480,5999,12516,12480,12516,12515,7662,12515,12517,7662,12517,7624,12518,7660,12481,12481,5996,12519,12481,12519,12518,7660,12518,12520,7660,12520,7623,12521,12487,12522,12521,12522,12523,12487,12521,12524,12489,12524,12525,12489,12525,5929,12524,12489,12487,12488,12523,12522,12488,12522,12487,12523,12488,12482,12486,12526,12527,12486,12527,12482,12526,12486,12484,12528,12484,12485,12528,12485,9714,12484,12528,12526,12529,12482,12527,12529,12527,12526,12482,12529,12523,12530,5929,12525,12530,12525,12524,12531,12524,12521,12531,12521,12523,12524,12531,12530,5929,12530,12532,5929,12532,5931,12533,12534,12535,12533,12535,12496,12533,12536,12537,12533,12537,12534,12497,12534,12538,12497,12538,9855,12497,12496,12535,12497,12535,12534,12494,12539,12540,12494,12540,12496,12494,12218,12541,12494,12541,12539,12533,12539,12542,12533,12542,12536,12533,12496,12540,12533,12540,12539,12543,12544,12545,12543,12545,12492,12543,12536,12546,12543,12546,12544,12493,12544,12547,12493,12547,9714,12493,12492,12545,12493,12545,12544,12490,12534,12548,12490,12548,12492,12490,9855,12538,12490,12538,12534,12543,12534,12537,12543,12537,12536,12543,12492,12548,12543,12548,12534,12549,10150,12498,12498,10374,12550,12498,12550,12549,10150,12549,12551,10150,12551,12121,10405,10425,12552,12552,10375,12499,12552,12499,10405,12301,12141,12142,12468,12501,11977,11977,11830,11201,12432,11297,12553,12200,12236,12332,11469,11859,12554,12554,12403,12502,12554,12502,11469,11535,11537,12555,12555,11475,12503,12555,12503,11535,12504,12471,12336,12556,12505,12337,12557,12278,12506,12557,12506,4337,12278,12557,12337,12558,4412,12507,12507,2843,12559,12507,12559,12558,4412,12558,12560,4412,12560,4401,12513,12561,12562,12562,12312,12514,12562,12514,12513,12563,12513,12512,12563,12512,7591,12513,12563,12561,12564,12312,12562,12564,12562,12561,12564,12565,12566,12564,12566,12312,12508,12565,12567,12508,12567,12568,12511,12568,12569,12511,12569,2754,12568,12511,12508,12565,12508,12510,12510,12312,12566,12510,12566,12565,12570,7624,12517,12570,12517,12515,12571,12515,12516,12571,12516,5999,12515,12571,12570,7624,12570,12572,7624,12572,7591,12573,7623,12520,12573,12520,12518,12574,12518,12519,12574,12519,5996,12518,12574,12573,7623,12573,12575,7623,12575,7590,12530,12576,12577,12532,12577,12578,12532,12578,5931,12577,12532,12530,12576,12530,12531,12576,12531,12523,12579,12523,12529,12579,12529,12526,12580,12526,12528,12580,12528,9714,12526,12580,12579,12523,12579,12581,12523,12581,12576,12582,5931,12578,12582,12578,12577,12577,12576,12583,12577,12583,12582,5931,12582,12584,5931,12584,5937,12585,12536,12586,12585,12586,12587,12588,12587,12589,12588,12589,12121,12587,12588,12585,12536,12585,12590,12536,12590,12591,12592,12544,12593,12592,12593,12591,12544,12592,12594,12547,12594,12595,12547,12595,9714,12594,12547,12544,12546,12591,12593,12546,12593,12544,12591,12546,12536,12539,12121,12589,12539,12589,12587,12542,12587,12586,12542,12586,12536,12587,12542,12539,12121,12539,12541,12121,12541,12218,12596,12549,12597,12596,12597,12598,12549,12596,12599,12551,12599,12600,12551,12600,12121,12599,12551,12549,12550,12598,12597,12550,12597,12549,12598,12550,10374,12601,10375,12552,12601,12552,10425,10375,12601,12602,12301,12142,12078,11977,11201,12603,11977,12603,12468,12432,12553,12604,12200,12332,12237,11859,11860,12605,12605,12403,12554,12605,12554,11859,11537,12406,12606,12606,11475,12555,12606,12555,11537,12504,12336,11599,12607,12337,12557,12607,12557,4337,12337,12607,12556,12608,4401,12560,12608,12560,12558,12609,12558,12559,12609,12559,2843,12558,12609,12608,4401,12608,12610,4401,12610,4389,12568,12611,12612,12612,2754,12569,12612,12569,12568,12611,12568,12567,12567,12565,12613,12567,12613,12611,12614,12565,12564,12614,12564,12561,12615,12561,12563,12615,12563,7591,12561,12615,12614,12565,12614,12616,12616,12611,12613,12616,12613,12565,12617,2754,12612,12617,12612,12611,2754,12617,12618,12310,12618,12619,12310,12619,2803,12618,12310,2754,12575,12620,12621,12575,12621,7590,12620,12575,12573,12622,12573,12574,12622,12574,5996,12573,12622,12620,12623,7590,12621,12623,12621,12620,7590,12623,7558,12624,12582,12625,12624,12625,12626,12582,12624,12627,12584,12627,12628,12584,12628,5937,12627,12584,12582,12583,12626,12625,12583,12625,12582,12626,12583,12576,12581,12629,12630,12581,12630,12576,12629,12581,12579,12631,12579,12580,12631,12580,9714,12579,12631,12629,12632,12576,12630,12632,12630,12629,12576,12632,12626,12628,12633,12634,12628,12634,5937,12633,12628,12627,12635,12627,12624,12635,12624,12626,12627,12635,12633,12636,5937,12634,12636,12634,12633,5937,12636,5938,12637,12638,12639,12637,12639,12591,12637,12640,12641,12637,12641,12638,12642,12640,12643,12643,12598,12644,12643,12644,12642,12641,12642,12645,12641,12645,12638,12642,12641,12640,12646,12594,12647,12647,12638,12648,12647,12648,12646,12595,12646,12649,12595,12649,9714,12646,12595,12594,12647,12591,12639,12647,12639,12638,12647,12594,12592,12647,12592,12591,12650,12599,12651,12650,12651,12640,12650,12121,12600,12650,12600,12599,12643,12599,12596,12643,12596,12598,12643,12640,12651,12643,12651,12599,12637,12585,12652,12637,12652,12640,12637,12591,12590,12637,12590,12585,12650,12585,12588,12650,12588,12121,12650,12640,12652,12650,12652,12585,12653,12602,12601,12653,12601,10425,12602,12653,12654,12078,12357,12467,12078,12467,12301,11201,11219,12655,12655,12468,12603,12655,12603,11201,11835,12432,12604,12235,12200,12237,11860,11475,12656,12656,12403,12605,12656,12605,11860,12406,12504,12657,12657,11475,12606,12657,12606,12406,11599,11626,12658,11599,12658,12504,12659,12556,12607,12659,12607,4337,12556,12659,12019,12610,12660,12661,12610,12661,4389,12660,12610,12608,12662,12608,12609,12662,12609,2843,12608,12662,12660,12663,4389,12661,12663,12661,12660,4389,12663,4377,12664,7591,12572,12664,12572,12570,12664,12665,12666,12664,12666,7591,12667,12570,12571,12571,5999,12668,12571,12668,12667,12664,12667,12669,12664,12669,12665,12667,12664,12570,12670,12671,12672,12670,12672,12665,12671,12670,12673,12674,12673,12675,12674,12675,12676,12673,12674,12671,12677,12665,12672,12677,12672,12671,12677,7591,12666,12677,12666,12665,12611,12676,12678,12611,12678,12679,12679,12680,12681,12679,12681,12611,12618,12680,12682,12682,2803,12619,12682,12619,12618,12680,12618,12617,12617,12611,12681,12617,12681,12680,12676,12611,12616,12616,12614,12683,12616,12683,12676,12671,12614,12615,12615,7591,12677,12615,12677,12671,12614,12671,12674,12674,12676,12683,12674,12683,12614,12623,12684,12685,12623,12685,7558,12684,12623,12620,12686,12620,12622,12686,12622,5996,12620,12686,12684,12687,7558,12685,12687,12685,12684,7558,12687,7501,12688,12633,12689,12688,12689,12690,12633,12688,12691,12636,12691,12692,12636,12692,5938,12691,12636,12633,12635,12690,12689,12635,12689,12633,12690,12635,12626,12632,12693,12694,12632,12694,12626,12693,12632,12629,12695,12629,12631,12695,12631,9714,12629,12695,12693,12696,12626,12694,12696,12694,12693,12626,12696,12690,12697,5938,12692,12697,12692,12691,12698,12691,12688,12698,12688,12690,12691,12698,12697,5938,12697,12699,5938,12699,5941,12700,12701,12702,12700,12702,12638,12701,12700,12703,12704,12703,12705,12704,12705,12706,12703,12704,12701,12707,12638,12702,12707,12702,12701,12638,12707,12708,12709,12646,12710,12709,12710,12708,12646,12709,12711,12649,12711,12712,12649,12712,9714,12711,12649,12646,12648,12708,12710,12648,12710,12646,12708,12648,12638,12642,12706,12705,12642,12705,12703,12645,12703,12700,12645,12700,12638,12703,12645,12642,12706,12642,12644,12706,12644,12598,10425,10434,12713,10425,12713,12714,12653,12714,12715,12653,12715,12654,12714,12653,10425,12357,12078,12716,12717,12468,12655,12717,12655,11219,12468,12717,12716,11835,12604,12362,12235,12237,12718,12235,12718,11326,12719,11475,12657,12657,12504,12720,12657,12720,12719,11475,12719,12721,12721,12403,12656,12721,12656,11475,11626,12019,12722,12722,12504,12658,12722,12658,11626,4337,4349,12723,12723,12019,12659,12723,12659,4337,12663,12724,12725,12663,12725,4377,12724,12663,12660,12726,12660,12662,12726,12662,2843,12660,12726,12724,12727,4377,12725,12727,12725,12724,4377,12727,4363,12728,12680,12729,12729,12730,12731,12729,12731,12728,12680,12728,12732,12682,12732,12733,12682,12733,2803,12732,12682,12680,12679,12730,12729,12679,12729,12680,12730,12679,12678,12730,12678,12676,12734,12673,12735,12734,12735,12736,12673,12734,12737,12675,12737,12738,12675,12738,12676,12737,12675,12673,12670,12736,12735,12670,12735,12673,12736,12670,12665,12669,12739,12740,12669,12740,12665,12739,12669,12667,12741,12667,12668,12741,12668,5999,12667,12741,12739,12742,12665,12740,12742,12740,12739,12665,12742,12736,12738,12743,12744,12738,12744,12676,12743,12738,12737,12745,12737,12734,12745,12734,12736,12737,12745,12743,12746,12676,12744,12746,12744,12743,12676,12746,12730,12733,12747,12748,12733,12748,2803,12747,12733,12732,12749,12732,12728,12750,12728,12731,12750,12731,12730,12728,12750,12749,12732,12749,12751,12732,12751,12747,12752,2803,12748,12752,12748,12747,2803,12752,2804,12687,12753,12754,12687,12754,7501,12753,12687,12684,12755,12684,12686,12755,12686,5996,12684,12755,12753,12756,7501,12754,12756,12754,12753,7501,12756,7412,12757,12697,12758,12757,12758,12759,12697,12757,12760,12699,12760,12761,12699,12761,5941,12760,12699,12697,12698,12759,12758,12698,12758,12697,12759,12698,12690,12696,12762,12763,12696,12763,12690,12762,12696,12693,12764,12693,12695,12764,12695,9714,12693,12764,12762,12765,12690,12763,12765,12763,12762,12690,12765,12759,12761,12766,12767,12761,12767,5941,12766,12761,12760,12768,12760,12757,12768,12757,12759,12760,12768,12766,12769,5941,12767,12769,12767,12766,5941,12769,5942,12770,12708,12771,12770,12771,12772,12708,12770,12773,12708,12773,12774,12711,12774,12775,12711,12775,12776,12712,12776,12777,12712,12777,9714,12776,12712,12711,12774,12711,12709,12774,12709,12708,12701,12772,12771,12771,12708,12707,12771,12707,12701,12772,12701,12704,12772,12704,12706,12357,12716,12717,12357,12717,11219,11225,11835,12362,12778,11326,12718,12778,12718,12237,11326,12778,11322,12779,12504,12722,12722,12019,12780,12722,12780,12779,12781,12779,12782,12781,12782,12783,12779,12781,12504,12719,12783,12784,12719,12784,12785,12721,12785,12786,12721,12786,12403,12785,12721,12719,12783,12719,12720,12720,12504,12781,12720,12781,12783,4349,4363,12787,12787,12019,12723,12787,12723,4349,12788,12724,12789,12788,12789,2841,12724,12788,12790,12727,12790,12791,12727,12791,4363,12790,12727,12724,12726,2841,12789,12726,12789,12724,2841,12726,2843,12792,12747,12793,12794,12793,12795,12794,12795,12796,12793,12794,12792,12747,12792,12797,12752,12797,12798,12752,12798,2804,12797,12752,12747,12749,12796,12795,12749,12795,12793,12793,12747,12751,12793,12751,12749,12796,12749,12750,12796,12750,12730,12799,12743,12800,12799,12800,12801,12743,12799,12802,12746,12802,12803,12746,12803,12730,12802,12746,12743,12745,12801,12800,12745,12800,12743,12801,12745,12736,12742,12804,12805,12742,12805,12736,12804,12742,12739,12806,12739,12741,12806,12741,5999,12739,12806,12804,12807,12736,12805,12807,12805,12804,12736,12807,12801,12803,12808,12809,12803,12809,12730,12808,12803,12802,12810,12802,12799,12810,12799,12801,12802,12810,12808,12811,12730,12809,12811,12809,12808,12730,12811,12796,12798,12812,12813,12798,12813,2804,12812,12798,12797,12814,12797,12792,12815,12792,12794,12815,12794,12796,12792,12815,12814,12797,12814,12816,12797,12816,12812,12817,2804,12813,12817,12813,12812,2804,12817,2806,12756,12818,12819,12756,12819,7412,12818,12756,12753,12820,12753,12755,12820,12755,5996,12753,12820,12818,12821,7412,12819,12821,12819,12818,7412,12821,7290,12822,12766,12823,12822,12823,12824,12766,12822,12825,12769,12825,12826,12769,12826,5942,12825,12769,12766,12768,12824,12823,12768,12823,12766,12824,12768,12759,12765,12827,12828,12765,12828,12759,12827,12765,12762,12829,12762,12764,12829,12764,9714,12762,12829,12827,12830,12759,12828,12830,12828,12827,12759,12830,12824,12826,12831,12832,12826,12832,5942,12831,12826,12825,12833,12825,12822,12833,12822,12824,12825,12833,12831,12834,5942,12832,12834,12832,12831,5942,12834,5945,12835,12774,12836,12835,12836,12837,12774,12835,12838,12776,12838,12839,12777,12839,12840,12777,12840,9714,12839,12777,12776,12838,12776,12775,12838,12775,12774,12770,12837,12836,12836,12774,12773,12836,12773,12770,12837,12770,12772,12399,12357,11219,12362,11322,12841,12362,12841,11225,12842,12785,12843,12842,12843,12844,12785,12842,12845,12786,12845,12846,12786,12846,12403,12845,12786,12785,12784,12844,12843,12784,12843,12785,12844,12784,12783,12782,12847,12848,12782,12848,12783,12847,12782,12779,12849,12779,12780,12849,12780,12019,12779,12849,12847,12850,12783,12848,12850,12848,12847,12783,12850,12844,12846,12851,12852,12846,12852,12403,12851,12846,12845,12853,12845,12842,12853,12842,12844,12845,12853,12851,12854,12403,12852,12854,12852,12851,12403,12854,12237,12855,4363,12791,12791,12790,12856,12791,12856,12855,12857,12790,12788,12788,2841,12858,12788,12858,12857,12790,12857,12859,12859,12855,12856,12859,12856,12790,12855,12860,12861,12855,12861,4363,12860,12019,12787,12787,4363,12861,12787,12861,12860,5999,5998,12862,12862,12863,12864,12862,12864,5999,12865,12863,12866,12866,12867,12868,12866,12868,12865,12863,12865,12869,12869,5999,12864,12869,12864,12863,12870,12867,12871,12871,12872,12873,12871,12873,12870,12874,12872,12875,12875,12876,12877,12875,12877,12874,12872,12874,12878,12878,12870,12873,12878,12873,12872,12867,12870,12879,12879,12880,12881,12879,12881,12867,12865,12880,12882,12882,5999,12869,12882,12869,12865,12880,12865,12868,12868,12867,12881,12868,12881,12880,12796,12876,12883,12883,12884,12885,12883,12885,12796,12886,12884,12887,12887,12888,12889,12887,12889,12886,12884,12886,12890,12890,12796,12885,12890,12885,12884,12812,12888,12891,12891,2806,12817,12891,12817,12812,12888,12812,12816,12888,12816,12814,12886,12814,12815,12815,12796,12890,12815,12890,12886,12814,12886,12889,12814,12889,12888,12876,12796,12811,12811,12808,12892,12811,12892,12876,12893,12808,12810,12810,12801,12894,12810,12894,12893,12808,12893,12895,12895,12876,12892,12895,12892,12808,12870,12801,12807,12807,12804,12896,12807,12896,12870,12880,12804,12806,12806,5999,12882,12806,12882,12880,12804,12880,12879,12879,12870,12896,12879,12896,12804,12801,12870,12878,12878,12874,12897,12878,12897,12801,12893,12874,12877,12877,12876,12895,12877,12895,12893,12874,12893,12894,12894,12801,12897,12894,12897,12874,12821,12898,12899,12821,12899,7290,12898,12821,12818,12900,12818,12820,12900,12820,5996,12818,12900,12898,12901,7290,12899,12901,12899,12898,7290,12901,5998,12902,12831,12903,12902,12903,12904,12831,12902,12905,12834,12905,12906,12834,12906,5945,12905,12834,12831,12833,12904,12903,12833,12903,12831,12904,12833,12824,12830,12907,12908,12830,12908,12824,12907,12830,12827,12909,12827,12829,12909,12829,9714,12827,12909,12907,12910,12824,12908,12910,12908,12907,12824,12910,12904,12906,12911,12912,12906,12912,5945,12911,12906,12905,12913,12905,12902,12913,12902,12904,12905,12913,12911,12914,5945,12912,12914,12912,12911,5945,12914,5946,12915,12838,12916,12915,12916,12917,12838,12915,12918,12839,12918,12919,12919,9714,12840,12919,12840,12839,12918,12839,12838,12835,12917,12916,12835,12916,12838,12917,12835,12837,12399,11219,12920,12399,12920,10699,12921,11322,12778,12778,12237,12922,12778,12922,12921,12841,12921,12923,12841,12923,11225,12921,12841,11322,12924,12925,12926,12924,12926,12927,12924,12855,12928,12924,12928,12925,12929,12925,12930,12929,12930,12931,12929,12927,12926,12929,12926,12925,12932,12860,12933,12932,12933,12927,12860,12932,12019,12860,12855,12924,12924,12927,12933,12924,12933,12860,12934,12857,12935,12934,12935,12936,12934,12855,12859,12934,12859,12857,12937,12857,12858,12937,12858,2841,12937,12936,12935,12937,12935,12857,12938,12925,12939,12938,12939,12936,12938,12931,12930,12938,12930,12925,12934,12925,12928,12934,12928,12855,12934,12936,12939,12934,12939,12925,12940,12941,12942,12940,12942,12943,12941,12940,12844,12944,12941,12945,12944,12945,12931,12944,12943,12942,12944,12942,12941,12851,12943,12946,12946,12237,12854,12946,12854,12851,12940,12851,12853,12940,12853,12844,12851,12940,12943,12847,12927,12947,12947,12844,12850,12947,12850,12847,12932,12847,12849,12932,12849,12019,12847,12932,12927,12929,12941,12948,12929,12948,12927,12929,12931,12945,12929,12945,12941,12941,12844,12947,12947,12927,12948,12947,12948,12941,12898,12949,12950,12950,5998,12901,12950,12901,12898,12951,12898,12900,12951,12900,5996,12898,12951,12949,12952,12950,12953,12952,12953,12954,12950,12952,5998,12950,12949,12955,12955,12954,12953,12955,12953,12950,12956,12957,12958,12956,12958,12954,12957,12956,12959,12960,12959,12961,12960,12961,12962,12959,12960,12957,12963,12954,12958,12963,12958,12957,12963,5998,12952,12963,12952,12954,12964,12876,12965,12964,12965,12962,12876,12964,12966,12967,12966,12968,12967,12968,12969,12966,12967,12876,12888,12969,12970,12888,12970,12971,12891,12971,12972,12891,12972,2806,12971,12891,12888,12969,12888,12887,12969,12887,12884,12967,12884,12883,12967,12883,12876,12884,12967,12969,12872,12962,12965,12965,12876,12875,12965,12875,12872,12973,12872,12871,12973,12871,12867,12872,12973,12962,12957,12867,12866,12957,12866,12863,12963,12863,12862,12963,12862,5998,12863,12963,12957,12867,12957,12960,12960,12962,12973,12960,12973,12867,12911,12974,12975,12975,5946,12914,12975,12914,12911,12974,12911,12913,12974,12913,12904,12976,12904,12910,12976,12910,12907,12977,12907,12909,12977,12909,9714,12907,12977,12976,12904,12976,12978,12904,12978,12974,12979,5946,12975,12979,12975,12974,5946,12979,12980,12344,12980,12981,12344,12981,5990,12980,12344,5946,12982,12918,12983,12982,12983,12984,12918,12982,12985,12919,12985,12986,12919,12986,9714,12985,12919,12918,12915,12984,12983,12915,12983,12918,12984,12915,12917,12987,10699,12920,12987,12920,11219,10699,12987,12988,12500,12988,12989,12500,12989,11949,12988,12500,10699,12943,12990,12991,12943,12991,12992,12946,12992,12993,12946,12993,12237,12992,12946,12943,12990,12943,12944,12944,12931,12994,12944,12994,12990,12938,12995,12996,12938,12996,12931,12995,12938,12936,12997,12936,12937,12937,2841,12998,12937,12998,12997,12936,12997,12999,12936,12999,12995,13000,12931,12996,12996,12995,13001,12996,13001,13000,12931,13000,13002,13002,12990,12994,13002,12994,12931,13003,12237,12993,12993,12992,13004,12993,13004,13003,13005,12992,12991,12991,12990,13006,12991,13006,13005,12992,13005,13007,13007,13003,13004,13007,13004,12992,12237,13003,13008,13008,13009,13010,13008,13010,12237,12921,13009,13011,13011,11225,12923,13011,12923,12921,13010,12921,12922,13010,12922,12237,12921,13010,13009,13012,5996,12316,13012,12316,5991,5996,13012,13013,13014,13013,13015,13015,13016,13017,13015,13017,13014,13013,13014,13018,13013,13018,5996,13019,13016,13020,13020,13021,13022,13020,13022,13019,13023,13021,13024,13024,13025,13026,13024,13026,13023,13021,13023,13027,13027,13019,13022,13027,13022,13021,13016,13019,13028,13016,13028,13029,13014,13029,13030,13030,5996,13018,13030,13018,13014,13029,13014,13017,13029,13017,13016,12962,13025,13031,13031,13032,13033,13031,13033,12962,13034,13032,13035,13035,13036,13037,13035,13037,13034,13032,13034,13038,13038,12962,13033,13038,13033,13032,12969,13036,13039,13039,13040,13041,13039,13041,12969,12971,13040,13042,13042,2806,12972,13042,12972,12971,13040,12971,12970,12970,12969,13041,12970,13041,13040,13036,12969,12968,12968,12966,13043,12968,13043,13036,13034,12966,12964,12964,12962,13038,12964,13038,13034,12966,13034,13037,13037,13036,13043,13037,13043,12966,13025,12962,12961,13025,12961,12959,13044,12959,12956,12956,12954,13045,12956,13045,13044,12959,13044,13046,12959,13046,13025,13019,12954,12955,12955,12949,13047,12955,13047,13019,13029,12949,12951,12951,5996,13030,12951,13030,13029,12949,13029,13028,13028,13019,13047,13028,13047,12949,12954,13019,13027,13027,13023,13048,13027,13048,12954,13044,13023,13026,13026,13025,13046,13026,13046,13044,13023,13044,13045,13045,12954,13048,13045,13048,13023,13049,12980,13050,13049,13050,13051,12980,13049,13052,12981,13052,13053,12981,13053,5990,13052,12981,12980,12979,13051,13050,12979,13050,12980,13051,12979,12974,12978,13054,13055,12978,13055,12974,13054,12978,12976,13056,12976,12977,13056,12977,9714,12976,13056,13054,13057,12974,13055,13057,13055,13054,12974,13057,13051,13053,13058,13059,13053,13059,5990,13058,13053,13052,13060,13052,13049,13060,13049,13051,13052,13060,13058,13061,5990,13059,13061,13059,13058,5990,13061,5991,13062,12985,13063,13062,13063,12654,12985,13062,13064,12986,13064,13065,12986,13065,9714,13064,12986,12985,12982,12654,13063,12982,13063,12985,12654,12982,12984,12989,13066,13067,12989,13067,11949,13066,12989,12988,13068,12988,12987,13068,12987,11219,12988,13068,13066,13069,11949,13067,13069,13067,13066,11949,13069,10597,13070,13071,13072,13070,13072,13003,13071,13070,13073,13074,13073,13075,13074,13075,13076,13073,13074,13071,13077,13003,13072,13077,13072,13071,13003,13077,13078,13079,13009,13080,13079,13080,13078,13009,13079,13081,13011,13081,13082,13011,13082,11225,13081,13011,13009,13008,13078,13080,13008,13080,13009,13078,13008,13003,13075,13005,13083,13075,13083,13076,13005,13075,13073,13007,13073,13070,13007,13070,13003,13073,13007,13005,13006,13076,13083,13006,13083,13005,13076,13006,12990,13084,13000,13085,13084,13085,13086,13000,13084,13087,13002,13087,13088,13002,13088,12990,13087,13002,13000,13001,13086,13085,13001,13085,13000,13086,13001,12995,12999,13089,13090,12999,13090,12995,13089,12999,12997,13091,12997,12998,13091,12998,2841,12997,13091,13089,13092,12995,13090,13092,13090,13089,12995,13092,13086,13088,13093,13094,13088,13094,12990,13093,13088,13087,13095,13087,13084,13095,13084,13086,13087,13095,13093,13096,12990,13094,13096,13094,13093,12990,13096,13076,13097,13081,13098,13097,13098,13099,13081,13097,13100,13082,13100,13101,13082,13101,11225,13100,13082,13081,13079,13099,13098,13079,13098,13081,13099,13079,13078,13077,13102,13103,13077,13103,13078,13102,13077,13071,13104,13071,13074,13104,13074,13076,13071,13104,13102,13105,13078,13103,13105,13103,13102,13078,13105,13099,13101,13106,13107,13101,13107,11225,13106,13101,13100,13108,13100,13097,13108,13097,13099,13100,13108,13106,13109,11225,13107,13109,13107,13106,11225,13109,12268,13110,13058,13111,13110,13111,13112,13058,13110,13113,13061,13113,13114,13061,13114,5991,13113,13061,13058,13111,13060,13115,13111,13115,13112,13060,13111,13058,13060,13051,13116,13116,13112,13115,13116,13115,13060,13057,13117,13118,13057,13118,13051,13117,13057,13054,13119,13054,13056,13056,9714,13120,13056,13120,13119,13054,13119,13121,13054,13121,13117,13122,13051,13118,13118,13117,13123,13118,13123,13122,13116,13122,13124,13116,13124,13112,13122,13116,13051,13114,13125,13126,13114,13126,5991,13125,13114,13113,13125,13127,13128,13128,5991,13126,13128,13126,13125,13129,13113,13110,13110,13112,13130,13110,13130,13129,13125,13129,13131,13125,13131,13127,13129,13125,13113,13132,13133,13134,13134,13127,13135,13134,13135,13132,13136,13132,13137,13136,13137,13138,13132,13136,13133,13134,13139,13140,13134,13140,13127,13139,13134,13133,13139,5991,13128,13128,13127,13140,13128,13140,13139,13141,13142,13143,13141,13143,13025,13142,13141,13144,13145,13144,13146,13146,13138,13147,13146,13147,13145,13144,13145,13148,13144,13148,13142,13149,13025,13143,13143,13142,13150,13143,13150,13149,13151,13149,13152,13151,13152,13153,13149,13151,13025,13154,13036,13155,13155,13153,13156,13155,13156,13154,13036,13154,13157,13036,13157,13158,13040,13158,13159,13159,2806,13042,13159,13042,13040,13158,13040,13039,13158,13039,13036,13032,13153,13155,13155,13036,13035,13155,13035,13032,13151,13032,13031,13151,13031,13025,13032,13151,13153,13160,13146,13161,13160,13161,13016,13146,13160,13138,13146,13144,13162,13162,13016,13161,13162,13161,13146,13021,13144,13141,13141,13025,13024,13141,13024,13021,13162,13021,13020,13162,13020,13016,13021,13162,13144,13013,13133,13163,13163,13016,13015,13163,13015,13013,13139,13013,13012,13139,13012,5991,13013,13139,13133,13160,13163,13164,13160,13164,13138,13163,13160,13016,13163,13133,13136,13136,13138,13164,13136,13164,13163,13165,13166,13167,13165,13167,13064,13165,10434,13168,13165,13168,13166,13065,13166,13169,13065,13169,9714,13065,13064,13167,13065,13167,13166,13062,12714,13170,13062,13170,13064,13062,12654,12715,13062,12715,12714,13165,12714,12713,13165,12713,10434,13165,13064,13170,13165,13170,12714,13171,13066,13172,13171,13172,12268,13066,13171,13173,13069,13173,13174,13069,13174,10597,13173,13069,13066,13068,12268,13172,13068,13172,13066,12268,13068,11219,13175,13176,13177,13175,13177,13178,13176,13175,13179,13180,13179,13181,13180,13181,13076,13179,13180,13176,13182,13178,13177,13182,13177,13176,13178,13182,13183,13184,13185,13186,13184,13186,13183,13185,13184,13187,13188,13187,13189,13188,13189,2838,13187,13188,13185,13190,13183,13186,13190,13186,13185,13183,13190,13178,13181,13191,13192,13181,13192,13076,13191,13181,13179,13193,13179,13175,13193,13175,13178,13179,13193,13191,13194,13076,13192,13194,13192,13191,13076,13194,13195,13196,13197,13198,13196,13198,13099,13197,13196,13199,13200,13199,13201,13200,13201,13195,13199,13200,13197,13202,13099,13198,13202,13198,13197,13099,13202,13203,13204,13106,13205,13204,13205,13203,13106,13204,13206,13109,13206,13207,13109,13207,12268,13206,13109,13106,13108,13203,13205,13108,13205,13106,13203,13108,13099,13201,13102,13208,13201,13208,13195,13102,13201,13199,13105,13199,13196,13105,13196,13099,13199,13105,13102,13104,13195,13208,13104,13208,13102,13195,13104,13076,13209,13187,13210,13209,13210,13086,13187,13209,13211,13189,13211,13212,13189,13212,2838,13211,13189,13187,13184,13086,13210,13184,13210,13187,13086,13184,13183,13182,13093,13213,13182,13213,13183,13093,13182,13176,13096,13176,13180,13096,13180,13076,13176,13096,13093,13095,13183,13213,13095,13213,13093,13183,13095,13086,13212,13089,13214,13212,13214,2838,13089,13212,13211,13092,13211,13209,13092,13209,13086,13211,13092,13089,13091,2838,13214,13091,13214,13089,2838,13091,2841,13215,13166,13216,13215,13216,10438,13166,13215,13217,13169,13217,13218,13169,13218,9714,13217,13169,13166,13168,10438,13216,13168,13216,13166,10438,13168,10434,13219,13220,13221,13219,13221,13222,13220,13219,13223,13224,13223,13225,13224,13225,13195,13223,13224,13220,13226,13222,13221,13226,13221,13220,13222,13226,13227,13228,13229,13230,13228,13230,13227,13229,13228,13231,13232,13231,13233,13232,13233,2836,13231,13232,13229,13234,13227,13230,13234,13230,13229,13227,13234,13222,13225,13235,13236,13225,13236,13195,13235,13225,13223,13237,13223,13219,13237,13219,13222,13223,13237,13235,13238,13195,13236,13238,13236,13235,13195,13238,13239,13240,13241,13242,13240,13242,13203,13241,13240,13243,13244,13243,13245,13244,13245,13239,13243,13244,13241,13246,13203,13242,13246,13242,13241,13203,13246,13247,13248,13206,13249,13248,13249,13247,13206,13248,13250,13207,13250,13251,13207,13251,12268,13250,13207,13206,13204,13247,13249,13204,13249,13206,13247,13204,13203,13245,13197,13252,13245,13252,13239,13197,13245,13243,13202,13243,13240,13202,13240,13203,13243,13202,13197,13200,13239,13252,13200,13252,13197,13239,13200,13195,13253,13231,13254,13253,13254,13178,13231,13253,13255,13233,13255,13256,13233,13256,2836,13255,13233,13231,13228,13178,13254,13228,13254,13231,13178,13228,13227,13226,13191,13257,13226,13257,13227,13191,13226,13220,13194,13220,13224,13194,13224,13195,13220,13194,13191,13193,13227,13257,13193,13257,13191,13227,13193,13178,13256,13185,13258,13256,13258,2836,13185,13256,13255,13190,13255,13253,13190,13253,13178,13255,13190,13185,13188,2836,13258,13188,13258,13185,2836,13188,2838,10438,10460,13259,13259,13260,13261,13259,13261,10438,13217,13260,13262,13262,9714,13218,13262,13218,13217,13260,13217,13215,13215,10438,13261,13215,13261,13260,13263,13264,13265,13263,13265,13266,13264,13263,13267,13268,13267,13269,13268,13269,13239,13267,13268,13264,13270,13266,13265,13270,13265,13264,13266,13270,13271,13272,13273,13274,13272,13274,13271,13273,13272,13275,13276,13275,13277,13276,13277,2835,13275,13276,13273,13278,13271,13274,13278,13274,13273,13271,13278,13266,13269,13279,13280,13269,13280,13239,13279,13269,13267,13281,13267,13263,13281,13263,13266,13267,13281,13279,13282,13239,13280,13282,13280,13279,13239,13282,13283,13284,13285,13286,13284,13286,13247,13285,13284,13287,13288,13287,13289,13288,13289,13283,13287,13288,13285,13290,13247,13286,13290,13286,13285,13247,13290,13291,13292,13250,13293,13292,13293,13291,13250,13292,13294,13251,13294,13295,13251,13295,12268,13294,13251,13250,13248,13291,13293,13248,13293,13250,13291,13248,13247,13289,13241,13296,13289,13296,13283,13241,13289,13287,13246,13287,13284,13246,13284,13247,13287,13246,13241,13244,13283,13296,13244,13296,13241,13283,13244,13239,13297,13275,13298,13297,13298,13222,13275,13297,13299,13277,13299,13300,13277,13300,2835,13299,13277,13275,13272,13222,13298,13272,13298,13275,13222,13272,13271,13270,13235,13301,13270,13301,13271,13235,13270,13264,13238,13264,13268,13238,13268,13239,13264,13238,13235,13237,13271,13301,13237,13301,13235,13271,13237,13222,13300,13229,13302,13300,13302,2835,13229,13300,13299,13234,13299,13297,13234,13297,13222,13299,13234,13229,13232,2835,13302,13232,13302,13229,2835,13232,2836,13303,13304,13305,13303,13305,13306,13304,13303,13307,13308,13307,13309,13308,13309,13138,13307,13308,13304,13310,13306,13305,13310,13305,13304,13306,13310,13311,13312,13313,13314,13312,13314,13311,13313,13312,13315,13316,13315,13317,13317,10460,13318,13317,13318,13316,13315,13316,13319,13315,13319,13313,13320,13311,13314,13320,13314,13313,13311,13320,13306,13321,13138,13309,13321,13309,13307,13322,13307,13303,13322,13303,13306,13307,13322,13321,13138,13321,13323,13323,13324,13325,13323,13325,13138,13326,13327,13328,13326,13328,13153,13327,13326,13329,13330,13329,13331,13330,13331,13324,13329,13330,13327,13332,13153,13328,13332,13328,13327,13153,13332,13333,13334,13158,13335,13334,13335,13333,13158,13334,13336,13159,13336,13337,13159,13337,2806,13336,13159,13158,13154,13333,13335,13335,13158,13157,13335,13157,13154,13333,13154,13156,13333,13156,13153,13142,13324,13331,13142,13331,13329,13149,13329,13326,13326,13153,13152,13326,13152,13149,13329,13149,13150,13329,13150,13142,13324,13142,13148,13324,13148,13145,13325,13145,13147,13325,13147,13138,13145,13325,13324,13315,13112,13338,13315,13338,13339,13317,13339,13340,13317,13340,10460,13339,13317,13315,13112,13315,13312,13312,13311,13341,13312,13341,13112,13310,13127,13342,13310,13342,13311,13127,13310,13304,13132,13304,13308,13308,13138,13137,13308,13137,13132,13304,13132,13135,13304,13135,13127,13131,13311,13342,13131,13342,13127,13311,13131,13129,13341,13129,13130,13341,13130,13112,13129,13341,13311,13340,13122,13343,13340,13343,10460,13122,13340,13339,13124,13339,13338,13124,13338,13112,13339,13124,13122,13123,10460,13343,13123,13343,13122,10460,13123,13117,13121,13260,13344,13121,13344,13117,13260,13121,13119,13262,13119,13120,13262,13120,9714,13119,13262,13260,13259,13117,13344,13259,13344,13260,13117,13259,10460,13345,13346,13347,13345,13347,13348,13346,13345,13283,13346,13349,13350,13350,13348,13347,13350,13347,13346,13351,13348,13352,13352,13353,13354,13352,13354,13351,13345,13351,13355,13345,13355,13283,13351,13345,13348,13291,13353,13356,13356,13357,13358,13356,13358,13291,13294,13357,13359,13359,12268,13295,13359,13295,13294,13357,13294,13292,13292,13291,13358,13292,13358,13357,13285,13351,13360,13360,13291,13290,13360,13290,13285,13351,13285,13288,13288,13283,13355,13288,13355,13351,13353,13291,13360,13360,13351,13354,13360,13354,13353,13266,13361,13362,13362,13363,13364,13362,13364,13266,13279,13363,13365,13365,13283,13282,13365,13282,13279,13363,13279,13281,13281,13266,13364,13281,13364,13363,13273,13366,13367,13367,13266,13278,13367,13278,13273,13366,13273,13276,13276,2835,13368,13276,13368,13366,13361,13266,13367,13367,13366,13369,13367,13369,13361,13370,13346,13371,13370,13371,13363,13346,13370,13349,13346,13283,13365,13365,13363,13371,13365,13371,13346,13372,13363,13362,13362,13361,13373,13362,13373,13372,13370,13372,13374,13370,13374,13349,13372,13370,13363,13375,13376,13377,13377,13173,13378,13377,13378,13375,13379,13375,13380,13379,13380,13353,13375,13379,13376,13381,13174,13382,13381,13382,13376,13174,13381,10597,13174,13173,13377,13377,13376,13382,13377,13382,13174,13383,13171,13384,13383,13384,13357,13171,13383,13173,13171,12268,13359,13359,13357,13384,13359,13384,13171,13375,13357,13356,13356,13353,13380,13356,13380,13375,13383,13375,13378,13383,13378,13173,13375,13383,13357,13385,13386,13387,13385,13387,13348,13386,13385,13388,13386,13353,13352,13352,13348,13387,13352,13387,13386,13389,13348,13350,13350,13349,13390,13350,13390,13389,13385,13389,13391,13385,13391,13388,13389,13385,13348,13392,13376,13393,13393,13388,13394,13393,13394,13392,13381,13392,13395,13381,13395,10597,13392,13381,13376,13379,13386,13396,13379,13396,13376,13386,13379,13353,13386,13388,13393,13393,13376,13396,13393,13396,13386,13397,13398,13399,13397,13399,13400,13398,13397,13401,13402,13401,13403,13402,13403,13324,13401,13402,13398,13404,13400,13399,13404,13399,13398,13400,13404,13405,13406,13407,13408,13406,13408,13405,13407,13406,13409,13410,13409,13411,13410,13411,11941,13409,13410,13407,13412,13405,13408,13412,13408,13407,13405,13412,13400,13403,13413,13414,13403,13414,13324,13413,13403,13401,13415,13401,13397,13415,13397,13400,13401,13415,13413,13416,13324,13414,13416,13414,13413,13324,13416,13417,13418,13419,13420,13418,13420,13333,13419,13418,13421,13422,13421,13423,13422,13423,13417,13421,13422,13419,13424,13333,13420,13424,13420,13419,13333,13424,13425,13426,13336,13427,13426,13427,13425,13336,13426,13428,13337,13428,13429,13337,13429,2806,13428,13337,13336,13334,13425,13427,13334,13427,13336,13425,13334,13333,13423,13327,13430,13423,13430,13417,13327,13423,13421,13332,13421,13418,13332,13418,13333,13421,13332,13327,13330,13417,13430,13330,13430,13327,13417,13330,13324,13431,13409,13432,13431,13432,13306,13409,13431,13433,13411,13433,13434,13411,13434,11941,13433,13411,13409,13406,13306,13432,13406,13432,13409,13306,13406,13405,13404,13321,13435,13404,13435,13405,13321,13404,13398,13323,13398,13402,13323,13402,13324,13398,13323,13321,13322,13405,13435,13322,13435,13321,13405,13322,13306,13434,13313,13436,13434,13436,11941,13313,13434,13433,13320,13433,13431,13320,13431,13306,13433,13320,13313,13316,11941,13436,13436,13313,13319,13436,13319,13316,11941,13316,13318,11941,13318,10460,13437,13438,13439,13437,13439,13388,13438,13437,13440,13441,13440,13442,13441,13442,13443,13440,13441,13438,13444,13388,13439,13444,13439,13438,13388,13444,13445,13446,13392,13447,13446,13447,13445,13392,13446,13448,13395,13448,13449,13395,13449,10597,13448,13395,13392,13394,13445,13447,13394,13447,13392,13445,13394,13388,13442,13389,13450,13442,13450,13443,13389,13442,13440,13391,13440,13437,13391,13437,13388,13440,13391,13389,13390,13443,13450,13390,13450,13389,13443,13390,13349,13451,13372,13452,13451,13452,13453,13372,13451,13454,13374,13454,13455,13374,13455,13349,13454,13374,13372,13373,13453,13452,13373,13452,13372,13453,13373,13361,13369,13456,13457,13369,13457,13361,13456,13369,13366,13458,13366,13368,13458,13368,2835,13366,13458,13456,13459,13361,13457,13459,13457,13456,13361,13459,13453,13455,13460,13461,13455,13461,13349,13460,13455,13454,13462,13454,13451,13462,13451,13453,13454,13462,13460,13463,13349,13461,13463,13461,13460,13349,13463,13443,13464,13448,13465,13464,13465,13466,13448,13464,13467,13449,13467,13468,13449,13468,10597,13467,13449,13448,13446,13466,13465,13446,13465,13448,13466,13446,13445,13444,13469,13470,13444,13470,13445,13469,13444,13438,13471,13438,13441,13471,13441,13443,13438,13471,13469,13472,13445,13470,13472,13470,13469,13445,13472,13466,13468,13473,13474,13468,13474,10597,13473,13468,13467,13475,13467,13464,13475,13464,13466,13467,13475,13473,13476,10597,13474,13476,13474,13473,10597,13476,11947,13477,13478,13479,13477,13479,13417,13478,13477,13480,13481,13480,13482,13482,12224,13483,13482,13483,13481,13480,13481,13484,13480,13484,13478,13479,13485,13486,13479,13486,13417,13479,13478,13487,13479,13487,13485,13488,13485,13489,13488,13489,13490,13488,13417,13486,13488,13486,13485,13491,13425,13492,13492,13490,13493,13492,13493,13491,13425,13491,13494,13425,13494,13495,13428,13495,13496,13428,13496,13497,13429,13497,13498,13429,13498,2806,13497,13429,13428,13495,13428,13426,13495,13426,13425,13419,13490,13492,13492,13425,13424,13492,13424,13419,13488,13419,13422,13488,13422,13417,13419,13488,13490,13482,13499,13500,13482,13500,12224,13499,13482,13480,13501,13499,13502,13501,13502,13400,13501,12224,13500,13501,13500,13499,13413,13480,13477,13477,13417,13416,13477,13416,13413,13415,13499,13503,13415,13503,13413,13415,13400,13502,13415,13502,13499,13480,13413,13503,13480,13503,13499,13504,12392,13505,13504,13505,13506,12392,13504,13407,13412,13506,13507,13412,13507,13400,13412,13407,13504,13412,13504,13506,13410,12395,13508,13410,13508,13407,13410,11941,12398,13410,12398,12395,12392,13407,13508,13508,12395,12397,13508,12397,12392,13509,13501,13510,13509,13510,13506,13501,13509,12224,13501,13400,13507,13507,13506,13510,13507,13510,13501,12393,13506,13505,13505,12392,12394,13505,12394,12393,12393,12224,13509,12393,13509,13506,13511,13512,13513,13511,13513,13466,13512,13511,13514,13515,13514,13516,13515,13516,13517,13514,13515,13512,13518,13466,13513,13518,13513,13512,13466,13518,13519,13520,13473,13521,13520,13521,13519,13473,13520,13522,13476,13522,13523,13476,13523,11947,13522,13476,13473,13475,13519,13521,13475,13521,13473,13519,13475,13466,13516,13469,13524,13516,13524,13517,13469,13516,13514,13472,13514,13511,13472,13511,13466,13514,13472,13469,13471,13517,13524,13471,13524,13469,13517,13471,13443,13525,13460,13526,13525,13526,13527,13460,13525,13528,13463,13528,13529,13463,13529,13443,13528,13463,13460,13462,13527,13526,13462,13526,13460,13527,13462,13453,13459,13530,13531,13459,13531,13453,13530,13459,13456,13532,13456,13458,13532,13458,2835,13456,13532,13530,13533,13453,13531,13533,13531,13530,13453,13533,13527,13529,13534,13535,13529,13535,13443,13534,13529,13528,13536,13528,13525,13536,13525,13527,13528,13536,13534,13537,13443,13535,13537,13535,13534,13443,13537,13517,13538,13522,13539,13538,13539,13540,13522,13538,13541,13523,13541,13542,13523,13542,11947,13541,13523,13522,13520,13540,13539,13520,13539,13522,13540,13520,13519,13518,13543,13544,13518,13544,13519,13543,13518,13512,13545,13512,13515,13545,13515,13517,13512,13545,13543,13546,13519,13544,13546,13544,13543,13519,13546,13540,13542,13547,13548,13542,13548,11947,13547,13542,13541,13549,13541,13538,13549,13538,13540,13541,13549,13547,13550,11947,13548,13550,13548,13547,11947,13550,12224,13551,13495,13552,13551,13552,13553,13554,13553,13555,13554,13555,13517,13553,13554,13551,13495,13551,13556,13495,13556,13557,13558,13497,13559,13558,13559,13557,13497,13558,13560,13498,13560,13561,13498,13561,2806,13560,13498,13497,13496,13557,13559,13496,13559,13497,13557,13496,13495,13491,13517,13555,13491,13555,13553,13494,13553,13552,13494,13552,13495,13553,13494,13491,13517,13491,13493,13517,13493,13490,13562,13485,13563,13562,13563,13540,13485,13562,13564,13489,13564,13565,13489,13565,13490,13564,13489,13485,13487,13540,13563,13487,13563,13485,13540,13487,13478,13484,13547,13566,13484,13566,13478,13547,13484,13481,13550,13481,13483,13550,13483,12224,13481,13550,13547,13549,13478,13566,13549,13566,13547,13478,13549,13540,13543,13490,13565,13543,13565,13564,13546,13564,13562,13546,13562,13540,13564,13546,13543,13490,13543,13545,13490,13545,13517,13560,13527,13567,13567,2806,13561,13567,13561,13560,13527,13560,13558,13527,13558,13557,13534,13557,13556,13534,13556,13551,13537,13551,13554,13537,13554,13517,13551,13537,13534,13557,13534,13536,13557,13536,13527,13530,2806,13567,13567,13527,13533,13567,13533,13530,2806,13530,13532,2806,13532,2835,13568,13569,13570,13571,13572,13573,13573,13574,13575,13575,13576,13577,13578,13579,13580,13580,13581,13582,13582,13583,13584,13584,13585,13586,13586,13587,13588,13589,13590,13591,13591,13592,13593,13594,13595,13596,13596,13597,13598,13599,13600,13601,13601,13602,13603,13603,13604,13605,13605,13606,13607,13607,13608,13609,13568,13570,13571,13571,13573,13575,13578,13580,13582,13582,13584,13586,13589,13591,13593,13594,13596,13598,13599,13601,13603,13603,13605,13607,13607,13609,13568,13568,13571,13575,13578,13582,13586,13589,13593,13610,13611,13594,13598,13599,13603,13607,13607,13568,13575,13577,13578,13586,13589,13610,13611,13611,13598,13599,13599,13607,13575,13577,13586,13588,13611,13599,13575,13575,13577,13588,13589,13611,13575,13575,13588,13589,13612,13613,13614,13615,13616,13617,13618,13619,13620,13620,13621,13622,13622,13623,13624,13625,13626,13627,13628,13629,13630,13630,13631,13632,13633,13634,13635,13635,13636,13637,13637,13638,13639,13640,13641,13642,13642,13643,13644,13644,13645,13646,13646,13647,13648,13648,13649,13650,13650,13651,13652,13653,13654,13655,13655,13656,13657,13657,13658,13612,13612,13614,13615,13615,13617,13659,13618,13620,13622,13622,13624,13625,13628,13630,13632,13635,13637,13639,13639,13640,13642,13642,13644,13646,13646,13648,13650,13653,13655,13657,13657,13612,13615,13615,13659,13618,13618,13622,13625,13627,13628,13632,13633,13635,13639,13639,13642,13646,13646,13650,13652,13653,13657,13615,13615,13618,13625,13627,13632,13633,13633,13639,13646,13646,13652,13660,13661,13653,13615,13615,13625,13627,13627,13633,13646,13661,13615,13627,13627,13646,13660,13662,13661,13627,13627,13660,13662,13663,13664,13665,13665,13666,13667,13667,13668,13669,13669,13670,13671,13671,13672,13673,13674,13675,13676,13677,13678,13679,13679,13680,13681,13682,13683,13684,13684,13685,13686,13687,13688,13689,13689,13690,13691,13692,13693,13694,13694,13695,13696,13696,13697,13698,13699,13700,13701,13702,13703,13704,13704,13705,13706,13706,13707,13708,13709,13710,13711,13711,13712,13713,13714,13715,13716,13717,13718,13719,13719,13720,13721,13721,13722,13723,13723,13724,13725,13725,13726,13727,13727,13728,13729,13730,13731,13732,13733,13734,13735,13735,13736,13737,13737,13738,13739,13739,13740,13741,13742,13743,13744,13744,13745,13746,13747,13748,13749,13749,13750,13751,13752,13753,13754,13755,13756,13757,13757,13758,13759,13759,13760,13761,13761,13762,13763,13763,13764,13765,13765,13766,13767,13767,13768,13769,13769,13770,13771,13772,13773,13774,13774,13775,13776,13776,13777,13778,13778,13779,13780,13781,13782,13783,13783,13784,13785,13786,13787,13788,13788,13789,13663,13663,13665,13667,13667,13669,13671,13671,13673,13790,13791,13674,13676,13792,13677,13679,13679,13681,13682,13684,13686,13793,13687,13689,13691,13692,13694,13696,13696,13698,13794,13699,13701,13795,13796,13702,13704,13704,13706,13708,13709,13711,13713,13717,13719,13721,13721,13723,13725,13725,13727,13729,13730,13732,13797,13733,13735,13737,13737,13739,13741,13742,13744,13746,13747,13749,13751,13755,13757,13759,13759,13761,13763,13763,13765,13767,13767,13769,13771,13772,13774,13776,13776,13778,13780,13798,13781,13783,13783,13785,13799,13786,13788,13663,13663,13667,13671,13791,13676,13792,13792,13679,13682,13682,13684,13793,13692,13696,13794,13800,13699,13795,13796,13704,13708,13801,13709,13713,13716,13717,13721,13721,13725,13729,13730,13797,13802,13733,13737,13741,13741,13742,13746,13803,13747,13751,13755,13759,13763,13763,13767,13771,13772,13776,13780,13798,13783,13799,13663,13671,13790,13791,13792,13682,13682,13793,13687,13691,13692,13794,13795,13796,13708,13801,13713,13804,13714,13716,13721,13721,13729,13805,13806,13733,13741,13741,13746,13807,13803,13751,13808,13809,13755,13763,13763,13771,13772,13772,13780,13810,13810,13798,13799,13663,13790,13811,13791,13682,13687,13691,13794,13812,13800,13795,13708,13813,13801,13804,13814,13714,13721,13721,13805,13730,13806,13741,13807,13803,13808,13815,13809,13763,13772,13772,13810,13799,13786,13663,13811,13816,13791,13687,13691,13812,13800,13800,13708,13813,13813,13804,13817,13814,13721,13730,13806,13807,13803,13818,13809,13772,13772,13799,13819,13819,13786,13811,13816,13687,13691,13691,13800,13813,13820,13814,13730,13806,13803,13815,13818,13772,13819,13819,13811,13816,13816,13691,13813,13817,13820,13730,13821,13806,13815,13754,13818,13819,13819,13816,13813,13817,13730,13802,13752,13754,13819,13817,13802,13821,13752,13819,13813,13817,13821,13815,13815,13752,13813,13813,13817,13815,13822,13823,13824,13824,13825,13826,13827,13828,13829,13830,13831,13832,13832,13833,13834,13835,13836,13837,13837,13838,13839,13839,13840,13841,13842,13843,13844,13844,13845,13846,13846,13847,13848,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13859,13860,13861,13862,13863,13864,13865,13866,13867,13867,13868,13869,13870,13871,13872,13872,13873,13874,13874,13875,13876,13876,13877,13878,13878,13879,13880,13880,13881,13882,13882,13883,13884,13885,13886,13887,13887,13888,13889,13889,13890,13891,13892,13893,13894,13894,13895,13896,13897,13898,13899,13899,13900,13901,13901,13902,13903,13903,13904,13905,13905,13906,13907,13908,13909,13910,13910,13911,13912,13912,13913,13914,13914,13915,13916,13916,13917,13918,13918,13919,13920,13920,13921,13922,13922,13923,13924,13924,13925,13926,13927,13928,13929,13929,13930,13931,13931,13932,13933,13933,13934,13935,13936,13937,13938,13938,13939,13940,13941,13942,13943,13944,13945,13946,13946,13947,13948,13949,13950,13951,13951,13952,13953,13954,13955,13956,13956,13957,13958,13959,13960,13961,13961,13962,13963,13963,13964,13965,13966,13967,13968,13968,13969,13970,13970,13971,13972,13972,13973,13974,13974,13975,13976,13976,13977,13978,13978,13979,13980,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13991,13992,13993,13993,13994,13995,13996,13997,13998,13998,13999,14000,14001,14002,14003,14003,14004,14005,14006,14007,14008,14008,14009,14010,14010,14011,14012,14012,14013,14014,14014,14015,14016,14016,14017,14018,14018,14019,14020,14020,14021,14022,14023,14024,14025,14026,14027,14028,14028,14029,14030,14030,14031,14032,14032,14033,14034,14035,14036,14037,14037,14038,14039,14039,14040,14041,14041,14042,14043,13822,13824,13826,13827,13829,14044,13830,13832,13834,13835,13837,13839,13842,13844,13846,13846,13848,13850,13851,13853,14045,13854,13856,14046,13857,13859,13861,13862,13864,13865,13865,13867,13869,13870,13872,13874,13874,13876,13878,13878,13880,13882,13882,13884,14047,13885,13887,13889,13891,13892,13894,13894,13896,14048,13897,13899,13901,13901,13903,13905,13905,13907,14049,13908,13910,13912,13912,13914,13916,13916,13918,13920,13922,13924,13926,13927,13929,13931,13931,13933,13935,13936,13938,13940,13941,13943,14050,13944,13946,13948,13949,13951,13953,13954,13956,13958,13959,13961,13963,13963,13965,14051,13966,13968,13970,13970,13972,13974,13974,13976,13978,13978,13980,13982,13982,13983,13985,14052,13986,13988,14053,13989,13991,13991,13993,13995,13996,13998,14000,14001,14003,14005,14006,14008,14010,14010,14012,14014,14014,14016,14018,14018,14020,14022,14023,14025,14054,14026,14028,14030,14030,14032,14034,14035,14037,14039,14039,14041,14043,14055,13822,13826,14056,13830,13834,13834,13835,13839,13841,13842,13846,14057,13851,14045,13854,14046,14058,14059,13857,13861,14060,13862,13865,13865,13869,14061,14062,13870,13874,13874,13878,13882,14063,13885,13889,13891,13894,14048,13897,13901,13905,13908,13912,13916,13916,13920,13922,13922,13926,14064,14065,13927,13931,13931,13935,14066,14067,13936,13940,14068,13941,14050,13944,13948,13949,13949,13953,13954,13954,13958,14069,14070,13959,13963,14071,13966,13970,13970,13974,13978,13978,13982,13985,14052,13988,14072,14053,13991,13995,13996,14000,14001,14001,14005,14006,14006,14010,14014,14014,14018,14022,14023,14054,14026,14026,14030,14034,14035,14039,14043,14073,14055,13826,14056,13834,13839,13841,13846,13850,14074,14057,14045,14059,13861,14075,14060,13865,14061,14062,13874,13882,14076,14063,13889,13889,13891,14048,14077,13897,13905,14078,13908,13916,13922,14064,14079,14065,13931,14066,14067,13940,14080,14068,14050,14081,14081,13944,13949,13949,13954,14069,14070,13963,14051,14071,13970,13978,13978,13985,14082,14083,14053,13995,13996,14001,14006,14006,14014,14022,14026,14034,14084,14085,14035,14043,14073,13826,14086,14044,14056,13839,13839,13841,13850,14087,14074,14045,14088,14059,14075,14089,14060,14061,14090,14062,13882,14076,13889,14048,14077,13905,14049,14078,13916,13922,13922,14079,14091,14092,14065,14066,14067,14080,14068,14081,13949,14069,14093,14071,13978,13978,14082,14094,14072,14083,13995,13995,13996,14006,14006,14022,14095,14026,14084,14096,14085,14043,14097,14073,14086,13827,13827,14044,13839,13839,13850,14098,14088,14075,14089,14099,14090,13882,14076,14048,14100,14100,14077,14049,14101,14078,13922,13922,14091,14102,14102,14092,14066,14081,14069,14070,14103,14093,13978,13978,14094,14052,14072,13995,14006,14006,14095,14023,14085,14097,14104,14073,13827,13839,13839,14098,14087,14088,14089,14061,14061,14099,13882,14076,14100,14049,14105,14101,13922,13922,14102,14066,14081,14070,14051,14103,13978,14052,14006,14023,14026,14104,14073,13839,13839,14087,14045,14061,13882,14047,14076,14049,14106,14107,14105,13922,13922,14066,14067,14081,14051,14108,14109,14103,14052,14072,14006,14026,14104,13839,14045,14061,14047,14110,14107,13922,14067,14111,14109,14052,14052,14072,14026,14085,14104,14045,14088,14061,14110,14106,14107,14067,14112,14111,14052,14052,14026,14096,14096,14085,14045,14058,14088,14110,14076,14106,14067,14096,14045,14113,14058,14110,14076,14076,14067,14068,14096,14113,14114,14058,14076,14068,14096,14114,14115,13854,14058,14068,14096,14115,14116,13854,14068,14081,14052,14096,14116,13854,14081,14108,14052,14116,14117,14117,13854,14108,14112,14052,14117,14117,14108,14112,14118,14119,14120,14120,14121,14122,14122,14123,14124,14124,14125,14126,14126,14127,14128,14128,14129,14130,14130,14131,14132,14132,14133,14134,14134,14135,14136,14136,14137,14138,14138,14139,14140,14140,14141,14142,14143,14144,14145,14145,14146,14147,14147,14148,14149,14149,14150,14151,14151,14152,14153,14154,14155,14156,14156,14157,14158,14158,14159,14160,14161,14162,14163,14164,14165,14166,14166,14167,14168,14169,14170,14171,14172,14173,14174,14174,14175,14176,14176,14177,14178,14178,14179,14180,14181,14182,14183,14183,14184,14185,14185,14186,14187,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14198,14199,14200,14200,14201,14202,14202,14203,14204,14204,14205,14206,14206,14207,14208,14209,14210,14211,14211,14212,14213,14213,14214,14215,14215,14216,14217,14218,14219,14220,14220,14221,14222,14222,14223,14224,14224,14225,14226,14227,14228,14229,14230,14231,14232,14232,14233,14234,14234,14235,14236,14237,14238,14239,14239,14240,14241,14241,14242,14243,14244,14245,14246,14246,14247,14248,14248,14249,14250,14251,14252,14253,14254,14255,14256,14256,14257,14258,14259,14260,14261,14261,14262,14263,14263,14264,14265,14266,14267,14268,14268,14269,14270,14270,14271,14272,14272,14273,14274,14274,14275,14276,14277,14278,14279,14279,14280,14281,14281,14282,14283,14283,14284,14285,14286,14287,14288,14288,14289,14290,14291,14292,14293,14294,14295,14296,14296,14297,14298,14298,14299,14300,14300,14301,14302,14302,14303,14304,14305,14306,14307,14307,14308,14309,14309,14310,14311,14312,14313,14314,14314,14315,14316,14316,14317,14318,14318,14319,14320,14320,14321,14322,14322,14323,14324,14324,14325,14326,14327,14328,14329,14329,14330,14331,14332,14333,14334,14335,14336,14337,14337,14338,14339,14340,14341,14342,14343,14344,14345,14345,14346,14347,14348,14349,14350,14350,14351,14352,14353,14354,14355,14356,14357,14358,14358,14359,14360,14361,14362,14363,14363,14364,14365,14365,14366,14367,14367,14368,14369,14369,14370,14371,14372,14373,14374,14374,14375,14376,14376,14377,14378,14379,14380,14381,14381,14382,14383,14383,14384,14385,14386,14387,14388,14389,14390,14391,14391,14392,14393,14394,14395,14396,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14407,14408,14409,14409,14410,14411,14411,14412,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14422,14423,14424,14424,14425,14426,14426,14427,14428,14429,14430,14431,14431,14432,14433,14433,14434,14435,14436,14437,14438,14438,14439,14440,14441,14442,14443,14444,14445,14446,14446,14447,14448,14448,14449,14450,14451,14452,14453,14453,14454,14455,14455,14456,14457,14457,14458,14459,14460,14461,14462,14462,14463,14464,14118,14120,14122,14122,14124,14126,14126,14128,14130,14130,14132,14134,14134,14136,14138,14138,14140,14142,14465,14143,14145,14145,14147,14149,14149,14151,14153,14154,14156,14158,14158,14160,14161,14164,14166,14168,14169,14171,14466,14172,14174,14176,14176,14178,14180,14181,14183,14185,14190,14192,14467,14195,14196,14198,14198,14200,14202,14202,14204,14206,14206,14208,14468,14209,14211,14213,14213,14215,14217,14218,14220,14222,14222,14224,14226,14227,14229,14469,14230,14232,14234,14234,14236,14470,14237,14239,14241,14244,14246,14248,14248,14250,14471,14254,14256,14258,14259,14261,14263,14263,14265,14266,14266,14268,14270,14270,14272,14274,14277,14279,14281,14281,14283,14285,14286,14288,14290,14294,14296,14298,14298,14300,14302,14305,14307,14309,14312,14314,14316,14316,14318,14320,14320,14322,14324,14327,14329,14331,14335,14337,14339,14340,14342,14343,14348,14350,14352,14353,14355,14472,14356,14358,14360,14361,14363,14365,14365,14367,14369,14369,14371,14473,14372,14374,14376,14376,14378,14474,14379,14381,14383,14386,14388,14475,14389,14391,14393,14394,14396,14398,14399,14401,14476,14407,14409,14411,14477,14414,14416,14416,14417,14419,14420,14422,14424,14424,14426,14428,14431,14433,14435,14478,14436,14438,14438,14440,14479,14443,14444,14446,14446,14448,14450,14450,14451,14453,14453,14455,14457,14460,14462,14464,14118,14122,14126,14126,14130,14134,14134,14138,14142,14465,14145,14149,14149,14153,14480,14154,14158,14161,14481,14164,14168,14169,14466,14172,14172,14176,14180,14482,14181,14185,14195,14198,14202,14202,14206,14468,14468,14209,14213,14213,14217,14483,14484,14218,14222,14222,14226,14227,14469,14230,14234,14237,14241,14243,14485,14244,14248,14248,14471,14251,14486,14254,14258,14259,14263,14266,14266,14270,14274,14487,14277,14281,14281,14285,14488,14489,14286,14290,14490,14294,14298,14298,14302,14304,14491,14305,14309,14492,14312,14316,14316,14320,14324,14327,14331,14493,14334,14335,14339,14494,14348,14352,14352,14353,14472,14356,14360,14495,14495,14361,14365,14365,14369,14473,14372,14376,14474,14474,14379,14383,14385,14386,14475,14389,14393,14394,14405,14407,14411,14477,14416,14419,14419,14420,14424,14424,14428,14429,14431,14435,14496,14478,14438,14479,14443,14446,14450,14450,14453,14457,14460,14464,14497,14118,14126,14134,14134,14142,14498,14465,14149,14480,14499,14154,14161,14481,14168,14500,14169,14172,14180,14482,14185,14187,14193,14195,14202,14202,14468,14213,14501,14484,14222,14222,14227,14469,14469,14234,14470,14470,14237,14243,14485,14248,14251,14253,14486,14258,14259,14266,14274,14502,14487,14281,14489,14290,14503,14490,14298,14304,14491,14309,14311,14492,14316,14324,14326,14327,14493,14332,14334,14339,14504,14494,14352,14352,14472,14505,14356,14495,14365,14365,14473,14372,14372,14474,14383,14383,14385,14475,14405,14411,14413,14477,14419,14424,14506,14478,14479,14443,14450,14457,14507,14118,14134,14134,14498,14508,14508,14465,14480,14499,14161,14163,14481,14500,14509,14509,14169,14180,14482,14187,14189,14467,14193,14202,14202,14213,14483,14501,14222,14469,14469,14470,14243,14510,14485,14251,14253,14258,14511,14259,14274,14276,14512,14502,14281,14489,14503,14291,14490,14304,14513,14491,14311,14492,14492,14324,14326,14326,14493,14332,14332,14339,14514,14504,14352,14505,14356,14365,14372,14372,14383,14475,14515,14405,14413,14413,14477,14424,14516,14506,14479,14443,14457,14459,14497,14507,14134,14134,14508,14480,14481,14509,14180,14180,14482,14189,14467,14202,14483,14517,14501,14469,14469,14243,14518,14510,14251,14253,14253,14511,14259,14259,14276,14519,14512,14281,14488,14489,14291,14293,14490,14513,14520,14491,14492,14326,14326,14332,14514,14521,14504,14505,14522,14356,14372,14372,14475,14389,14515,14413,14424,14523,14516,14479,14441,14443,14459,14497,14134,14480,14481,14180,14189,14190,14467,14483,14469,14518,14524,14469,14524,14517,14525,14510,14253,14253,14259,14519,14519,14512,14488,14489,14293,14526,14490,14520,14527,14527,14491,14326,14326,14514,14528,14521,14505,14522,14522,14372,14389,14515,14424,14429,14523,14479,14441,14441,14459,14529,14460,14497,14480,14530,14481,14189,14531,14190,14483,14532,14517,14524,14532,14524,14518,14517,14532,14533,14519,14488,14489,14490,14527,14326,14326,14528,14534,14521,14522,14389,14515,14429,14431,14441,14529,14535,14535,14460,14480,14530,14189,14536,14537,14531,14483,14538,14533,14532,14538,14532,14518,14533,14538,14483,14253,14519,14489,14539,14490,14326,14326,14534,14340,14347,14521,14389,14515,14431,14496,14441,14535,14480,14530,14536,14540,14537,14483,14538,14537,14538,14518,14525,14253,14489,14539,14326,14340,14345,14347,14389,14404,14515,14496,14441,14480,14499,14541,14530,14540,14542,14537,14518,14525,14489,14526,14526,14539,14340,14345,14389,14394,14402,14404,14496,14441,14499,14163,14541,14540,14543,14544,14542,14518,14545,14525,14526,14526,14340,14343,14343,14345,14394,14402,14496,14523,14523,14441,14163,14541,14543,14544,14544,14518,14545,14545,14526,14343,14343,14394,14398,14523,14163,14546,14523,14546,14402,14544,14545,14547,14544,14547,14541,14343,14398,14548,14343,14548,14545,14549,14402,14546,14549,14546,14163,14402,14549,14550,14548,14399,14551,14548,14551,14545,14399,14548,14398,14549,14541,14552,14549,14552,14550,14541,14549,14163,14476,14545,14551,14476,14551,14399,14547,14550,14552,14547,14552,14541,14550,14547,14545,14545,14476,14550,14553,14554,14555,14556,14557,14558,14558,14559,14560,14561,14562,14563,14563,14564,14565,14565,14566,14567,14567,14568,14569,14569,14570,14571,14572,14573,14574,14574,14575,14576,14577,14578,14579,14579,14580,14581,14582,14583,14584,14584,14585,14586,14587,14588,14589,14590,14591,14592,14592,14593,14594,14595,14596,14597,14597,14598,14599,14600,14601,14602,14603,14604,14605,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14616,14617,14618,14618,14619,14620,14620,14621,14622,14622,14623,14624,14625,14626,14627,14627,14628,14629,14629,14630,14631,14631,14632,14633,14634,14635,14636,14637,14638,14639,14639,14640,14641,14642,14643,14644,14644,14645,14646,14647,14648,14649,14649,14650,14651,14651,14652,14653,14653,14654,14655,14655,14656,14657,14657,14658,14659,14659,14660,14661,14661,14662,14663,14663,14664,14665,14665,14666,14667,14668,14669,14670,14670,14671,14672,14672,14673,14674,14675,14553,14555,14556,14558,14560,14561,14563,14565,14567,14569,14571,14574,14576,14577,14577,14579,14581,14582,14584,14586,14587,14589,14676,14590,14592,14594,14595,14597,14599,14600,14602,14677,14678,14603,14605,14608,14610,14679,14614,14616,14618,14618,14620,14622,14625,14627,14629,14629,14631,14633,14680,14634,14636,14637,14639,14641,14646,14647,14649,14649,14651,14653,14653,14655,14657,14657,14659,14661,14661,14663,14665,14665,14667,14681,14668,14670,14672,14672,14674,14682,14683,14675,14555,14684,14556,14560,14561,14565,14567,14567,14571,14685,14574,14577,14581,14582,14586,14587,14686,14590,14594,14687,14595,14599,14600,14677,14678,14678,14605,14607,14613,14614,14618,14618,14622,14624,14688,14625,14629,14629,14633,14680,14636,14637,14641,14646,14649,14653,14653,14657,14661,14661,14665,14681,14668,14672,14682,14683,14555,14684,14684,14560,14561,14561,14567,14685,14572,14574,14581,14582,14587,14676,14686,14594,14687,14687,14599,14600,14600,14678,14607,14613,14618,14624,14688,14629,14680,14636,14641,14689,14644,14646,14653,14653,14661,14681,14690,14668,14682,14682,14683,14684,14684,14561,14685,14572,14581,14691,14582,14676,14686,14686,14687,14600,14600,14607,14608,14611,14613,14624,14624,14688,14680,14642,14644,14653,14653,14681,14692,14682,14684,14685,14572,14691,14693,14686,14600,14608,14679,14611,14624,14624,14680,14636,14642,14653,14692,14690,14682,14685,14572,14693,14694,14582,14686,14608,14608,14679,14624,14689,14642,14692,14690,14685,14572,14572,14694,14695,14696,14582,14608,14608,14624,14636,14636,14689,14692,14690,14572,14695,14696,14608,14636,14636,14692,14690,14690,14695,14696,14696,14636,14690,14697,14698,14699,14699,14700,14701,14701,14702,14703,14703,14704,14705,14706,14707,14708,14708,14709,14710,14710,14711,14712,14712,14713,14714,14715,14716,14717,14717,14718,14719,14719,14720,14721,14721,14722,14723,14724,14725,14726,14727,14728,14729,14729,14730,14731,14731,14732,14733,14733,14734,14735,14735,14736,14737,14737,14738,14739,14740,14741,14742,14742,14743,14744,14745,14746,14747,14747,14748,14749,14749,14750,14751,14752,14753,14754,14754,14755,14756,14756,14757,14758,14759,14760,14761,14761,14762,14763,14763,14764,14765,14765,14766,14767,14768,14769,14770,14771,14772,14773,14773,14774,14775,14775,14776,14777,14778,14779,14780,14781,14782,14783,14783,14784,14785,14786,14787,14788,14788,14789,14790,14791,14792,14793,14794,14795,14796,14796,14797,14798,14798,14799,14800,14801,14802,14803,14803,14804,14805,14805,14806,14807,14808,14809,14810,14810,14811,14812,14812,14813,14814,14814,14815,14816,14816,14817,14818,14819,14820,14821,14822,14823,14824,14824,14825,14826,14827,14828,14829,14829,14830,14831,14831,14832,14833,14834,14835,14836,14836,14837,14838,14838,14839,14840,14841,14842,14843,14844,14845,14846,14846,14847,14848,14848,14849,14850,14850,14851,14852,14852,14853,14854,14854,14855,14856,14856,14857,14858,14859,14860,14861,14861,14862,14863,14863,14864,14865,14865,14866,14867,14867,14868,14869,14870,14871,14872,14872,14873,14874,14874,14875,14876,14877,14878,14879,14880,14881,14882,14882,14883,14884,14885,14886,14887,14887,14888,14889,14889,14890,14891,14891,14892,14893,14894,14895,14896,14897,14898,14899,14899,14900,14901,14901,14902,14903,14903,14904,14905,14906,14907,14908,14908,14909,14910,14911,14912,14913,14913,14914,14915,14915,14916,14917,14918,14919,14920,14920,14921,14922,14923,14924,14925,14926,14927,14928,14928,14929,14930,14931,14932,14933,14933,14934,14935,14935,14936,14937,14937,14938,14939,14940,14941,14942,14942,14943,14944,14944,14945,14946,14947,14948,14949,14949,14950,14951,14951,14952,14953,14953,14954,14955,14955,14956,14957,14958,14959,14960,14960,14961,14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14980,14981,14982,14982,14983,14984,14985,14986,14987,14987,14988,14989,14989,14990,14991,14991,14992,14993,14993,14994,14995,14995,14996,14997,14998,14999,15000,15001,15002,15003,15003,15004,15005,15005,15006,15007,15007,15008,15009,15009,15010,15011,15012,15013,15014,15015,15016,15017,15017,15018,15019,15019,15020,15021,15021,15022,15023,15023,15024,15025,15025,15026,15027,15027,15028,15029,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15040,15041,15042,15043,15044,15045,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055,15056,15056,15057,15058,15058,15059,15060,15061,15062,15063,15063,15064,15065,15065,15066,15067,15068,15069,15070,15070,15071,15072,15072,15073,15074,15074,15075,15076,15077,15078,15079,15080,15081,15082,15082,15083,15084,15085,15086,15087,15087,15088,15089,15089,15090,15091,15092,15093,15094,15094,15095,15096,15097,15098,15099,15099,15100,15101,15101,15102,15103,15103,15104,15105,15106,15107,15108,15108,15109,15110,15110,15111,15112,15113,15114,15115,15115,15116,15117,15118,15119,15120,15120,15121,15122,15123,15124,15125,15125,15126,15127,15128,15129,15130,15130,15131,15132,15132,15133,15134,15134,15135,15136,15137,15138,15139,15140,15141,15142,15142,15143,15144,15144,15145,15146,15146,15147,15148,15149,15150,15151,15151,15152,15153,15153,15154,15155,15156,15157,15158,15159,15160,15161,15161,15162,15163,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15174,15175,15176,15177,15178,15179,15179,15180,15181,15181,15182,15183,15184,15185,15186,15186,15187,15188,15188,15189,15190,15191,15192,15193,15193,15194,15195,15195,15196,15197,15198,15199,15200,15200,15201,15202,15202,15203,15204,15204,15205,15206,15206,15207,15208,15209,15210,15211,15211,15212,15213,15213,15214,15215,15215,15216,15217,15217,15218,15219,15220,15221,15222,15222,15223,15224,15224,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15235,15236,15237,15237,15238,15239,15240,15241,15242,15242,15243,15244,15244,15245,15246,15246,15247,15248,15249,15250,15251,15251,15252,15253,15254,15255,15256,15256,15257,15258,15259,15260,15261,15262,15263,15264,15264,15265,15266,15266,15267,15268,15268,15269,15270,15270,15271,15272,15272,15273,15274,15275,15276,15277,15277,15278,15279,15280,15281,15282,15282,15283,15284,15284,15285,15286,15287,15288,15289,15289,15290,15291,15291,15292,15293,15294,15295,15296,15296,15297,15298,15299,15300,15301,15302,15303,15304,15304,15305,15306,15306,15307,15308,15308,15309,15310,15311,15312,15313,14697,14699,14701,14701,14703,14705,14706,14708,14710,14710,14712,14714,14715,14717,14719,14719,14721,14723,14723,14724,14726,14727,14729,14731,14731,14733,14735,14735,14737,14739,14740,14742,14744,14745,14747,14749,14752,14754,14756,14759,14761,14763,14763,14765,14767,14768,14770,15314,14771,14773,14775,14775,14777,15315,15316,14778,14780,14781,14783,14785,14786,14788,14790,14794,14796,14798,14800,14801,14803,14803,14805,14807,14808,14810,14812,14812,14814,14816,14816,14818,15317,14819,14821,15318,14822,14824,14826,14827,14829,14831,14831,14833,15319,14834,14836,14838,14838,14840,14841,14841,14843,15320,15321,14844,14846,14846,14848,14850,14852,14854,14856,14859,14861,14863,14863,14865,14867,14867,14869,14870,14870,14872,14874,14874,14876,15322,14880,14882,14884,14885,14887,14889,14889,14891,14893,14894,14896,15323,14897,14899,14901,14901,14903,14905,14906,14908,14910,14911,14913,14915,14915,14917,15324,14918,14920,14922,14923,14925,14926,14926,14928,14930,14931,14933,14935,14935,14937,14939,14942,14944,14946,14947,14949,14951,14951,14953,14955,14955,14957,14958,14958,14960,14962,15325,14963,14965,14966,14968,14969,14969,14971,14972,14972,14974,15326,14975,14977,14978,14978,14980,14982,14982,14984,15327,15327,14985,14987,14987,14989,14991,14991,14993,14995,14995,14997,14998,14998,15000,15001,15001,15003,15005,15005,15007,15009,15012,15014,15328,15015,15017,15019,15019,15021,15023,15023,15025,15027,15027,15029,15031,15038,15040,15042,15042,15043,15045,15045,15047,15048,15048,15050,15329,15051,15053,15054,15056,15058,15060,15330,15061,15063,15063,15065,15067,15068,15070,15072,15072,15074,15076,15077,15079,15331,15080,15082,15084,15085,15087,15089,15089,15091,15092,15092,15094,15096,15097,15099,15101,15101,15103,15105,15106,15108,15110,15113,15115,15117,15118,15120,15122,15123,15125,15127,15128,15130,15132,15132,15134,15136,15137,15139,15140,15140,15142,15144,15144,15146,15148,15149,15151,15153,15153,15155,15156,15156,15158,15159,15159,15161,15163,15163,15165,15332,15166,15168,15333,15169,15171,15172,15177,15179,15181,15181,15183,15184,15188,15190,15334,15191,15193,15195,15195,15197,15335,15198,15200,15202,15202,15204,15206,15211,15213,15215,15215,15217,15219,15220,15222,15224,15227,15229,15230,15230,15232,15336,15233,15235,15237,15237,15239,15337,15240,15242,15244,15244,15246,15248,15249,15251,15253,15254,15256,15258,15259,15261,15262,15262,15264,15266,15266,15268,15270,15270,15272,15274,15275,15277,15279,15338,15280,15282,15282,15284,15286,15339,15287,15289,15289,15291,15293,15294,15296,15298,15298,15299,15301,15302,15304,15306,15306,15308,15310,15311,15313,15340,15340,14697,14701,14701,14705,15341,15342,14706,14710,14710,14714,15343,15344,14715,14719,14719,14723,14726,14727,14731,14735,14735,14739,14740,14745,14749,14751,15345,14752,14756,14759,14763,14767,15346,14768,15314,15314,14771,14775,15316,14780,15347,15347,14781,14785,14786,14790,15348,15349,14794,14798,14800,14803,14807,14808,14812,14816,14822,14826,15350,14827,14831,15319,15319,14834,14838,14838,14841,15320,15321,14846,14850,14850,14852,14856,14859,14863,14867,14867,14870,14874,15351,14880,14884,14884,14885,14889,14889,14893,15352,15353,14894,15323,14897,14901,14905,15354,14906,14910,14911,14915,15324,15324,14918,14922,15355,14923,14926,14926,14930,14931,14931,14935,14939,14940,14942,14946,14947,14951,14955,14955,14958,14962,15325,14965,15356,15356,14966,14969,14969,14972,15326,15326,14975,14978,14978,14982,15327,15327,14987,14991,14995,14998,15001,15001,15005,15009,15015,15019,15023,15023,15027,15031,15037,15038,15042,15042,15045,15048,15048,15329,15051,15051,15054,15056,15056,15060,15357,15330,15063,15067,15068,15072,15076,15358,15077,15331,15080,15084,15359,15085,15089,15092,15092,15096,15097,15097,15101,15105,15106,15110,15112,15113,15117,15360,15118,15122,15361,15362,15123,15127,15127,15128,15132,15132,15136,15363,15364,15137,15140,15140,15144,15148,15365,15149,15153,15153,15156,15159,15159,15163,15332,15366,15169,15172,15176,15177,15181,15181,15184,15186,15367,15191,15195,15195,15335,15198,15198,15202,15206,15209,15211,15215,15215,15219,15220,15220,15224,15226,15368,15227,15230,15230,15336,15369,15233,15237,15337,15240,15244,15248,15249,15253,15254,15254,15258,15259,15259,15262,15266,15266,15270,15274,15370,15275,15279,15338,15282,15286,15339,15289,15293,15371,15294,15298,15302,15306,15310,15340,14701,15341,15372,15342,14710,14710,15343,15373,15374,15344,14719,14719,14726,15375,14727,14735,14740,15376,14745,14751,15345,14756,14758,14758,14759,14767,15346,15314,14775,15377,15316,15347,15347,14785,14786,14786,15348,15378,15349,14798,14800,14800,14807,15379,15379,14808,14816,15318,14822,15350,14827,15319,14838,14838,15320,15380,15381,15321,14850,14850,14856,14858,14859,14867,14874,15351,14884,14889,15353,15323,15382,15383,14897,14905,15354,14910,15384,15384,14911,15324,15324,14922,15385,15355,14926,14931,14931,14939,15386,15387,14947,14955,14955,14962,15388,15356,14969,15326,15326,14978,15327,14995,15001,15009,15389,15015,15023,15023,15031,15390,15042,15048,15051,15051,15056,15357,15357,15330,15067,15068,15076,15358,15358,15331,15080,15080,15359,15391,15392,15085,15092,15092,15097,15105,15393,15106,15112,15112,15113,15360,15118,15361,15394,15362,15127,15132,15132,15363,15395,15364,15140,15148,15365,15153,15159,15159,15332,15396,15366,15172,15174,15176,15181,15186,15397,15367,15195,15195,15198,15206,15209,15215,15220,15220,15226,15398,15368,15230,15369,15369,15233,15337,15399,15240,15248,15254,15259,15266,15266,15274,15370,15370,15279,15400,15400,15338,15286,15339,15293,15371,15371,15298,15301,15401,15302,15310,15311,15340,15341,15372,14710,15373,15374,14719,15375,15402,14727,14740,15403,15376,14751,15345,14758,14767,15346,14775,15315,15377,15347,14786,14786,15378,15404,15349,14800,15379,15379,14816,15317,15318,15350,15405,14827,14838,15380,15381,14850,14858,14859,14874,15322,15351,14889,15352,15383,14905,15406,15354,15384,15324,15324,15385,15407,15408,15355,14931,14931,15386,14940,15387,14955,15388,15326,15327,14991,14995,15009,15011,15389,15023,15390,15037,15042,15051,15357,15067,15068,15358,15080,15391,15409,15392,15092,15092,15105,15410,15393,15112,15360,15118,15394,15411,15412,15362,15132,15364,15148,15413,15413,15365,15159,15366,15174,15176,15176,15186,15188,15397,15195,15206,15209,15220,15398,15414,15368,15369,15369,15337,15399,15399,15248,15415,15254,15266,15370,15370,15400,15286,15339,15371,15301,15401,15310,15311,15311,15341,15372,15373,15374,15375,15402,14740,14744,15403,14751,15345,15345,14767,15416,15346,15315,15417,15418,15377,14786,15379,15317,14819,15318,15405,15419,15420,14827,15380,15421,15381,14858,15422,14859,15322,14879,15351,15352,15383,15406,15423,15354,15324,15407,15408,14931,14940,14946,15387,15388,15356,15326,14991,14991,14995,15011,15424,15389,15390,15035,15037,15051,15051,15357,15068,15358,15391,15425,15409,15092,15410,15426,15393,15360,15118,15411,15412,15412,15132,15395,15364,15413,15159,15366,15176,15188,15397,15206,15208,15427,15209,15398,15369,15399,15415,15249,15254,15370,15370,15286,15339,15339,15301,15428,15401,15311,15372,15373,15375,15429,15402,14744,15403,15403,15345,15416,15346,15417,15418,15418,14786,15404,15349,15379,14819,15420,15380,15430,15431,15421,14858,15422,15322,14877,14877,14879,15352,15383,15423,15432,15433,15408,14940,14940,14946,15388,15325,15356,14991,14991,15011,15434,15435,15424,15390,15035,15051,15068,15409,15410,15436,15426,15360,15437,15412,15395,15364,15364,15159,15396,15438,15366,15188,15397,15208,15439,15427,15398,15440,15414,15369,15415,15249,15370,15339,15401,15372,15373,15373,15429,15402,15402,15403,15416,15346,15418,15404,14793,15349,14819,15420,15430,15441,15431,14858,15442,15422,14877,15352,15443,15433,14940,14940,15388,15444,15445,15325,14991,15435,15390,15032,15034,15035,15068,15425,15409,15436,15412,15364,15396,15438,15188,15334,15397,15439,15446,15427,15440,15414,15414,15415,15447,15249,15339,15428,15448,15401,15373,15373,15402,15416,15346,15404,14791,14791,14793,14819,15431,15442,15449,15422,15352,15353,15450,15443,14940,15445,14991,15434,15435,15032,15034,15034,15068,15358,15358,15425,15436,15412,15396,15166,15438,15334,15397,15397,15446,15427,15427,15414,15447,15447,15249,15428,15448,15373,15416,15346,14791,14819,15441,15431,15449,15422,15353,15382,15450,14940,15444,15451,15445,15434,15452,15435,15034,15034,15358,15436,15412,15166,15333,15397,15427,15447,15447,15428,15448,15448,15416,15453,15346,14819,15318,15441,15449,15454,15422,15382,15383,15455,15450,15444,15456,15451,15434,15457,15452,15034,15034,15436,15426,15412,15333,15438,15447,15448,15458,15447,15458,15397,15448,15453,15346,15346,15318,15419,15441,15454,15422,15459,15455,15444,15444,15456,15434,15457,15034,15426,15460,15397,15458,15460,15458,15448,15397,15460,15438,15346,15419,15420,15420,15441,15422,15407,15459,15444,15444,15434,15461,15462,15457,15426,15346,15420,15422,15354,15407,15444,15444,15461,15463,15462,15426,15437,15346,15422,15464,15346,15464,15448,15444,15463,15465,15444,15465,15354,15462,15437,15466,15383,15448,15464,15383,15464,15422,15463,15467,15468,15468,15354,15465,15468,15465,15463,15328,15462,15466,15448,15383,15432,15467,15469,15470,15470,15354,15468,15470,15468,15467,15012,15328,15466,15448,15432,15354,15012,15466,15471,15354,15438,15460,15354,15460,15448,15012,15471,15472,15438,15354,15473,15438,15473,15412,15469,15012,15472,15474,15412,15473,15474,15473,15354,15412,15474,15118,15469,15472,15118,15469,15118,15474,15474,15354,15470,15474,15470,15469,15475,15476,15477,15477,15478,15479,15479,15480,15481,15481,15482,15483,15483,15484,15485,15485,15486,15487,15487,15488,15489,15490,15491,15492,15492,15493,15494,15494,15495,15496,15496,15497,15498,15475,15477,15479,15479,15481,15483,15483,15485,15487,15487,15489,15490,15490,15492,15494,15496,15498,15475,15475,15479,15483,15483,15487,15490,15490,15494,15496,15496,15475,15483,15483,15490,15496,15499,15500,15501,15502,15503,15504,15504,15505,15506,15506,15507,15508,15508,15509,15510,15511,15512,15513,15514,15515,15516,15516,15517,15518,15518,15519,15520,15521,15522,15523,15523,15524,15525,15526,15527,15528,15529,15530,15531,15531,15532,15533,15534,15535,15536,15536,15537,15538,15539,15540,15541,15541,15542,15543,15543,15544,15545,15546,15499,15501,15502,15504,15506,15506,15508,15510,15510,15511,15513,15547,15514,15516,15516,15518,15520,15521,15523,15525,15526,15528,15529,15529,15531,15533,15534,15536,15538,15539,15541,15543,15546,15501,15502,15502,15506,15510,15510,15513,15548,15547,15516,15520,15549,15521,15525,15525,15526,15529,15529,15533,15534,15534,15538,15550,15550,15539,15543,15545,15546,15502,15502,15510,15548,15547,15520,15549,15549,15525,15529,15529,15534,15550,15550,15543,15545,15545,15502,15548,15548,15547,15549,15549,15529,15550,15550,15545,15548,15548,15549,15550,15551,15552,15553,15553,15554,15555,15555,15556,15557,15558,15559,15560,15560,15561,15562,15562,15563,15564,15564,15565,15566,15567,15568,15569,15569,15570,15571,15571,15572,15573,15573,15574,15575,15575,15576,15577,15577,15578,15579,15579,15580,15581,15582,15583,15584,15585,15586,15587,15587,15588,15589,15589,15590,15591,15591,15592,15593,15594,15595,15596,15597,15598,15599,15599,15600,15601,15602,15603,15604,15604,15605,15606,15606,15607,15608,15608,15609,15610,15610,15611,15612,15612,15613,15614,15614,15615,15616,15616,15617,15618,15619,15620,15621,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15632,15633,15634,15634,15635,15636,15637,15638,15639,15639,15640,15641,15641,15642,15643,15643,15644,15645,15646,15647,15648,15648,15649,15650,15650,15651,15652,15652,15653,15654,15654,15655,15656,15657,15658,15659,15659,15660,15661,15662,15663,15664,15664,15665,15666,15666,15667,15668,15669,15670,15671,15671,15672,15673,15673,15674,15675,15675,15676,15677,15677,15678,15679,15679,15680,15681,15682,15683,15684,15684,15685,15686,15687,15688,15689,15689,15690,15691,15691,15692,15693,15693,15694,15695,15695,15696,15697,15698,15699,15700,15700,15701,15702,15702,15703,15704,15704,15705,15706,15707,15708,15709,15709,15710,15711,15711,15712,15713,15713,15714,15715,15715,15716,15717,15717,15718,15719,15719,15720,15721,15721,15722,15723,15724,15725,15726,15726,15727,15551,15553,15555,15557,15728,15558,15560,15560,15562,15564,15564,15566,15729,15567,15569,15571,15571,15573,15575,15575,15577,15579,15585,15587,15589,15589,15591,15593,15594,15596,15730,15597,15599,15601,15601,15602,15604,15604,15606,15608,15608,15610,15612,15612,15614,15616,15619,15621,15623,15624,15626,15731,15627,15629,15630,15632,15634,15636,15637,15639,15641,15641,15643,15645,15646,15648,15650,15650,15652,15654,15656,15657,15659,15662,15664,15666,15669,15671,15673,15673,15675,15677,15677,15679,15681,15682,15684,15686,15687,15689,15691,15691,15693,15695,15700,15702,15704,15704,15706,15732,15709,15711,15713,15713,15715,15717,15717,15719,15721,15721,15723,15724,15553,15557,15733,15728,15560,15564,15734,15567,15571,15571,15575,15579,15735,15585,15589,15589,15593,15736,15737,15594,15730,15601,15604,15608,15608,15612,15616,15618,15619,15623,15738,15624,15731,15630,15632,15636,15636,15637,15641,15641,15645,15739,15740,15646,15650,15650,15654,15656,15656,15659,15661,15662,15666,15668,15669,15673,15677,15741,15682,15686,15686,15687,15691,15691,15695,15697,15700,15704,15732,15707,15709,15713,15713,15717,15721,15551,15553,15733,15728,15564,15729,15734,15571,15579,15735,15589,15736,15742,15737,15730,15597,15601,15608,15608,15616,15618,15618,15623,15743,15738,15731,15744,15630,15636,15641,15641,15739,15745,15740,15650,15656,15656,15661,15662,15662,15668,15669,15669,15677,15681,15686,15691,15697,15698,15700,15732,15707,15713,15721,15551,15733,15746,15728,15729,15747,15748,15734,15579,15584,15735,15736,15742,15730,15749,15750,15597,15608,15608,15618,15743,15627,15630,15641,15751,15740,15656,15656,15662,15669,15669,15681,15752,15741,15686,15697,15698,15732,15753,15754,15707,15721,15551,15746,15728,15728,15747,15755,15748,15579,15581,15584,15736,15756,15750,15608,15743,15627,15641,15745,15751,15656,15669,15669,15752,15741,15741,15697,15757,15758,15698,15753,15754,15721,15724,15551,15728,15755,15755,15748,15581,15584,15756,15759,15760,15750,15743,15744,15627,15745,15751,15669,15741,15758,15753,15761,15761,15754,15724,15726,15551,15755,15755,15581,15582,15584,15759,15762,15763,15760,15743,15738,15744,15745,15764,15751,15741,15758,15761,15724,15724,15726,15755,15755,15582,15584,15584,15762,15765,15766,15763,15743,15738,15745,15764,15764,15741,15757,15767,15758,15724,15724,15755,15584,15584,15765,15768,15749,15766,15743,15738,15764,15757,15767,15724,15584,15584,15768,15742,15742,15749,15743,15743,15738,15757,15769,15767,15584,15742,15743,15757,15757,15769,15584,15584,15742,15757,15770,15771,15772,15773,15774,15775,15775,15776,15777,15777,15778,15779,15779,15780,15781,15781,15782,15783,15783,15784,15785,15785,15786,15787,15787,15788,15789,15790,15791,15792,15792,15793,15794,15795,15796,15797,15797,15798,15799,15799,15800,15801,15801,15802,15803,15803,15804,15805,15805,15806,15807,15807,15808,15809,15810,15811,15812,15812,15813,15814,15814,15815,15816,15816,15817,15818,15818,15819,15820,15821,15822,15823,15823,15824,15825,15825,15826,15827,15828,15829,15830,15830,15831,15832,15833,15834,15835,15836,15837,15838,15838,15839,15840,15841,15842,15843,15843,15844,15845,15846,15847,15848,15848,15849,15850,15850,15851,15852,15853,15854,15855,15856,15857,15858,15858,15859,15860,15860,15861,15862,15862,15863,15864,15864,15865,15866,15867,15868,15869,15870,15871,15872,15872,15873,15874,15875,15876,15877,15877,15878,15879,15879,15880,15881,15773,15775,15777,15779,15781,15783,15783,15785,15787,15790,15792,15794,15795,15797,15799,15799,15801,15803,15803,15805,15807,15810,15812,15814,15814,15816,15818,15821,15823,15825,15828,15830,15832,15833,15835,15882,15836,15838,15840,15841,15843,15845,15846,15848,15850,15850,15852,15883,15884,15853,15855,15856,15858,15860,15860,15862,15864,15870,15872,15874,15875,15877,15879,15885,15773,15777,15777,15779,15783,15783,15787,15789,15789,15790,15794,15886,15795,15799,15799,15803,15807,15810,15814,15818,15887,15821,15825,15888,15828,15832,15833,15882,15889,15889,15836,15840,15840,15841,15845,15846,15850,15883,15884,15855,15890,15856,15860,15864,15869,15870,15874,15891,15875,15879,15885,15777,15783,15783,15789,15794,15886,15799,15807,15892,15810,15818,15887,15825,15827,15888,15832,15833,15833,15889,15840,15840,15845,15846,15846,15883,15884,15856,15864,15866,15867,15869,15874,15891,15879,15881,15772,15885,15783,15783,15794,15893,15894,15886,15807,15895,15892,15818,15887,15827,15896,15888,15833,15840,15840,15846,15884,15856,15866,15867,15867,15874,15891,15891,15881,15897,15772,15783,15893,15894,15807,15809,15895,15818,15820,15840,15884,15890,15856,15867,15891,15891,15897,15898,15770,15772,15893,15899,15894,15809,15809,15895,15820,15888,15840,15890,15890,15856,15891,15898,15770,15893,15893,15899,15809,15809,15820,15887,15888,15890,15891,15891,15898,15893,15893,15809,15887,15900,15888,15891,15891,15893,15887,15901,15900,15891,15891,15887,15896,15902,15901,15891,15891,15896,15902,15903,15904,15905,15905,15906,15907,15908,15909,15910,15910,15911,15912,15912,15913,15914,15915,15916,15917,15917,15918,15919,15919,15920,15921,15921,15922,15923,15923,15924,15925,15925,15926,15927,15928,15929,15930,15930,15931,15932,15933,15934,15935,15936,15937,15938,15938,15939,15940,15940,15941,15942,15943,15944,15945,15946,15947,15948,15948,15949,15950,15950,15951,15952,15952,15953,15954,15954,15955,15956,15956,15957,15958,15959,15960,15961,15961,15962,15963,15963,15964,15965,15965,15966,15967,15967,15968,15969,15969,15970,15971,15972,15973,15974,15974,15975,15976,15977,15978,15979,15979,15980,15981,15981,15982,15983,15983,15984,15985,15986,15987,15988,15989,15990,15991,15991,15992,15993,15993,15994,15995,15996,15997,15998,15998,15999,16000,16000,16001,16002,16002,16003,16004,16005,16006,16007,16008,16009,16010,16011,16012,16013,16013,16014,16015,16016,16017,16018,16018,16019,16020,16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16031,16032,16033,16034,16035,16036,16036,16037,16038,16039,16040,15903,15903,15905,15907,15908,15910,15912,15912,15914,16041,15915,15917,15919,15919,15921,15923,15923,15925,15927,15928,15930,15932,15936,15938,15940,15943,15945,16042,15946,15948,15950,15950,15952,15954,15954,15956,15958,15959,15961,15963,15965,15967,15969,15969,15971,16043,15972,15974,15976,15977,15979,15981,15983,15985,16044,15986,15988,15989,15991,15993,15995,15996,15998,16000,16000,16002,16004,16005,16007,16045,16008,16010,16011,16011,16013,16015,16016,16018,16020,16020,16022,16046,16023,16025,16026,16026,16028,16047,16029,16031,16033,16034,16036,16038,16039,15903,15907,15907,15908,15912,15915,15919,15923,16048,15928,15932,15935,15936,15940,16042,15946,15950,15950,15954,15958,15959,15963,15965,15965,15969,16043,16049,15972,15976,16050,15977,15981,15986,15989,15991,15991,15995,16051,15996,16000,16004,16005,16045,16008,16008,16011,16015,16016,16020,16046,16052,16023,16026,16029,16033,16053,16053,16034,16038,16054,16039,15907,15907,15912,16041,15915,15923,15927,16048,15932,15933,15935,15940,15942,16042,15950,15958,15959,15965,16043,16049,15976,16050,16050,15981,15983,15986,15991,16051,16055,15996,16004,16005,16008,16015,16056,16016,16046,16052,16026,16047,16029,16053,16038,16057,16054,15907,16041,15915,15927,16058,16048,15933,15935,15942,16059,16042,15958,16060,15959,16043,16061,16049,16050,15983,15986,16051,16055,16055,16004,16005,16005,16015,16062,16056,16046,16063,16063,16052,16047,16029,16038,16057,16057,15907,16041,16041,15927,16064,16058,15933,15935,15943,16042,16060,16065,16049,15983,15986,16055,16005,16005,16062,16066,16066,16056,16063,16063,16047,16029,16029,16057,16041,16041,16064,16058,16067,15943,16060,16061,16065,15983,16068,15986,16005,16005,16066,16063,16063,16029,16041,16041,16058,15935,16067,16060,15959,16061,15983,16044,16068,16005,16063,16063,16041,15935,16067,15959,16061,16061,16044,16068,16068,16063,15935,16069,16067,16061,16068,15935,16059,16070,16069,16061,16068,16059,16070,16070,16061,16068,16071,16072,16073,16074,16075,16076,16076,16077,16078,16078,16079,16080,16080,16081,16082,16083,16084,16085,16085,16086,16087,16087,16088,16089,16090,16091,16092,16093,16094,16095,16095,16096,16097,16098,16099,16100,16101,16102,16103,16103,16104,16105,16105,16106,16107,16107,16108,16109,16109,16110,16111,16112,16113,16114,16114,16115,16116,16116,16117,16118,16119,16120,16121,16121,16122,16123,16124,16125,16126,16126,16127,16128,16128,16129,16130,16131,16132,16133,16133,16134,16135,16135,16136,16137,16137,16138,16139,16139,16140,16141,16142,16143,16144,16145,16146,16147,16147,16148,16149,16150,16151,16152,16153,16154,16155,16155,16156,16157,16158,16159,16160,16160,16161,16162,16162,16163,16164,16165,16166,16167,16168,16169,16170,16170,16171,16172,16172,16173,16174,16174,16175,16071,16071,16073,16074,16074,16076,16078,16078,16080,16082,16176,16083,16085,16085,16087,16089,16093,16095,16097,16098,16100,16177,16101,16103,16105,16105,16107,16109,16109,16111,16178,16112,16114,16116,16124,16126,16128,16128,16130,16131,16131,16133,16135,16135,16137,16139,16142,16144,16179,16145,16147,16149,16150,16152,16180,16153,16155,16157,16158,16160,16162,16162,16164,16181,16165,16167,16168,16168,16170,16172,16172,16174,16071,16071,16074,16078,16078,16082,16182,16176,16085,16089,16093,16097,16183,16184,16098,16177,16185,16101,16105,16105,16109,16178,16112,16116,16118,16123,16124,16128,16128,16131,16135,16135,16139,16141,16179,16145,16149,16149,16150,16180,16186,16153,16157,16158,16162,16181,16187,16165,16168,16168,16172,16071,16071,16078,16182,16188,16176,16089,16092,16093,16183,16184,16177,16189,16185,16105,16178,16112,16118,16190,16123,16128,16135,16179,16149,16180,16186,16157,16158,16158,16181,16191,16187,16168,16071,16071,16182,16188,16188,16089,16192,16092,16183,16193,16194,16185,16178,16112,16190,16119,16121,16123,16135,16142,16179,16180,16195,16186,16158,16158,16191,16187,16071,16188,16192,16189,16194,16178,16112,16119,16121,16121,16135,16141,16141,16142,16180,16195,16158,16187,16187,16071,16192,16184,16189,16178,16112,16121,16141,16141,16180,16195,16187,16192,16090,16184,16178,16112,16112,16141,16195,16187,16090,16092,16184,16112,16195,16195,16187,16092,16193,16184,16195,16195,16092,16193,16196,16197,16198,16198,16199,16200,16200,16201,16202,16203,16204,16205,16205,16206,16207,16207,16208,16209,16209,16210,16211,16211,16212,16213,16214,16215,16216,16217,16218,16219,16219,16220,16221,16222,16223,16224,16225,16226,16227,16227,16228,16229,16230,16231,16232,16232,16233,16234,16234,16235,16236,16237,16238,16239,16239,16240,16241,16241,16242,16243,16243,16244,16245,16245,16246,16247,16248,16249,16250,16251,16252,16253,16253,16254,16255,16256,16257,16258,16259,16260,16261,16261,16262,16263,16263,16264,16265,16265,16266,16267,16268,16269,16270,16270,16271,16272,16273,16274,16275,16276,16277,16278,16278,16279,16280,16280,16281,16282,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292,16293,16293,16294,16295,16295,16296,16297,16297,16298,16299,16300,16301,16302,16302,16303,16304,16304,16305,16306,16306,16307,16308,16309,16310,16311,16311,16312,16313,16313,16314,16315,16315,16316,16317,16317,16318,16319,16319,16320,16321,16321,16322,16323,16323,16324,16325,16326,16327,16328,16329,16330,16331,16331,16332,16333,16333,16334,16335,16336,16337,16338,16338,16339,16340,16340,16341,16342,16342,16343,16344,16344,16345,16346,16347,16348,16349,16349,16350,16351,16351,16352,16353,16353,16354,16355,16356,16357,16358,16359,16360,16361,16361,16362,16363,16363,16364,16365,16365,16366,16367,16368,16369,16370,16371,16372,16373,16374,16375,16376,16376,16377,16378,16378,16379,16380,16380,16381,16382,16382,16383,16384,16385,16386,16387,16387,16388,16389,16389,16390,16391,16392,16393,16394,16394,16395,16396,16396,16397,16398,16398,16399,16400,16401,16402,16403,16403,16404,16405,16405,16406,16407,16407,16408,16409,16409,16410,16411,16411,16412,16413,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422,16423,16424,16424,16425,16426,16426,16427,16428,16428,16429,16430,16431,16432,16433,16434,16435,16436,16436,16437,16438,16196,16198,16200,16200,16202,16203,16203,16205,16207,16207,16209,16211,16439,16214,16216,16217,16219,16221,16222,16224,16440,16227,16229,16230,16230,16232,16234,16237,16239,16241,16241,16243,16245,16245,16247,16248,16248,16250,16441,16251,16253,16255,16442,16256,16258,16258,16259,16261,16261,16263,16265,16265,16267,16443,16268,16270,16272,16273,16275,16444,16276,16278,16280,16280,16282,16284,16285,16287,16445,16446,16288,16290,16291,16293,16295,16295,16297,16299,16300,16302,16304,16304,16306,16308,16309,16311,16313,16313,16315,16317,16317,16319,16321,16321,16323,16325,16326,16328,16329,16329,16331,16333,16333,16335,16447,16336,16338,16340,16340,16342,16344,16344,16346,16448,16347,16349,16351,16351,16353,16355,16356,16358,16449,16359,16361,16363,16363,16365,16367,16368,16370,16450,16371,16373,16451,16374,16376,16378,16380,16382,16384,16385,16387,16389,16389,16391,16452,16453,16392,16394,16394,16396,16398,16401,16403,16405,16405,16407,16409,16409,16411,16413,16419,16421,16454,16422,16424,16426,16426,16428,16430,16434,16436,16438,16455,16196,16200,16200,16203,16207,16207,16211,16213,16439,16216,16217,16217,16221,16456,16227,16230,16234,16457,16237,16241,16241,16245,16248,16248,16441,16458,16458,16251,16255,16459,16442,16258,16258,16261,16265,16460,16268,16272,16272,16273,16444,16276,16280,16284,16461,16285,16445,16446,16290,16291,16291,16295,16299,16462,16300,16304,16304,16308,16463,16309,16313,16317,16317,16321,16325,16326,16329,16333,16336,16340,16344,16344,16448,16464,16347,16351,16355,16359,16363,16367,16367,16368,16450,16371,16451,16374,16374,16378,16380,16380,16384,16465,16385,16389,16452,16453,16394,16398,16466,16401,16405,16405,16409,16413,16419,16454,16422,16422,16426,16430,16434,16438,16455,16200,16207,16213,16439,16217,16456,16225,16227,16234,16457,16241,16248,16458,16255,16467,16459,16258,16265,16460,16272,16444,16468,16276,16284,16446,16291,16299,16462,16304,16463,16309,16317,16325,16469,16326,16333,16470,16336,16344,16471,16347,16355,16359,16367,16450,16371,16374,16380,16380,16465,16385,16385,16452,16472,16453,16398,16400,16405,16413,16415,16419,16422,16430,16434,16455,16200,16200,16213,16473,16439,16456,16222,16474,16225,16234,16457,16248,16458,16467,16459,16265,16475,16460,16444,16476,16468,16284,16446,16299,16477,16462,16463,16478,16478,16309,16325,16469,16333,16447,16470,16344,16464,16471,16355,16479,16480,16359,16450,16450,16371,16380,16453,16400,16466,16466,16405,16415,16481,16419,16430,16434,16200,16473,16439,16222,16440,16474,16234,16236,16236,16457,16458,16458,16467,16265,16482,16475,16444,16483,16476,16284,16445,16446,16477,16477,16462,16478,16478,16325,16484,16485,16469,16447,16486,16470,16464,16471,16479,16356,16480,16450,16380,16466,16415,16487,16481,16430,16431,16434,16473,16488,16489,16439,16440,16474,16236,16458,16458,16265,16443,16482,16444,16490,16483,16284,16491,16445,16477,16478,16478,16484,16492,16492,16485,16447,16486,16464,16471,16471,16356,16449,16493,16480,16380,16453,16466,16487,16494,16481,16431,16434,16488,16495,16495,16489,16440,16474,16458,16443,16482,16490,16483,16445,16478,16492,16492,16447,16496,16486,16471,16449,16493,16380,16385,16453,16487,16497,16494,16431,16433,16434,16495,16440,16474,16443,16482,16482,16483,16491,16445,16492,16496,16486,16449,16498,16493,16385,16472,16453,16497,16416,16494,16433,16434,16434,16440,16474,16474,16482,16491,16445,16496,16486,16486,16498,16499,16500,16493,16472,16453,16416,16418,16494,16434,16474,16474,16491,16461,16445,16486,16499,16499,16500,16472,16453,16418,16501,16501,16494,16474,16474,16461,16445,16445,16499,16472,16453,16501,16474,16474,16445,16472,16472,16453,16474,16502,16503,16504,16504,16505,16506,16506,16507,16508,16509,16510,16511,16512,16513,16514,16514,16515,16516,16517,16518,16519,16519,16520,16521,16521,16522,16523,16523,16524,16525,16526,16527,16528,16528,16529,16530,16531,16532,16533,16534,16535,16536,16536,16537,16538,16539,16540,16541,16541,16542,16543,16544,16545,16546,16546,16547,16548,16548,16549,16550,16550,16551,16552,16553,16554,16555,16555,16556,16557,16557,16558,16559,16559,16560,16561,16562,16563,16564,16565,16566,16567,16568,16569,16570,16570,16571,16572,16572,16573,16574,16574,16575,16576,16576,16577,16578,16579,16580,16581,16582,16583,16584,16584,16585,16586,16587,16588,16589,16590,16591,16592,16592,16593,16594,16594,16595,16596,16597,16598,16599,16599,16600,16601,16601,16602,16603,16604,16605,16606,16607,16608,16609,16609,16610,16611,16611,16612,16613,16614,16615,16616,16616,16617,16618,16619,16620,16621,16621,16622,16623,16623,16624,16625,16625,16626,16627,16627,16628,16629,16629,16630,16631,16632,16633,16634,16635,16636,16637,16637,16638,16639,16639,16640,16641,16641,16642,16643,16643,16644,16645,16645,16646,16647,16648,16649,16650,16650,16651,16652,16653,16654,16655,16656,16657,16658,16658,16659,16660,16660,16661,16662,16662,16663,16664,16665,16666,16667,16667,16668,16669,16669,16670,16671,16671,16672,16673,16674,16675,16676,16676,16677,16678,16678,16679,16680,16681,16682,16683,16683,16684,16685,16685,16686,16687,16688,16689,16690,16691,16692,16693,16693,16694,16695,16696,16697,16698,16698,16699,16700,16701,16702,16703,16703,16704,16705,16706,16707,16708,16709,16710,16711,16711,16712,16713,16713,16714,16715,16716,16717,16718,16719,16720,16721,16721,16722,16723,16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16735,16736,16737,16737,16738,16739,16739,16740,16741,16741,16742,16743,16744,16745,16746,16746,16747,16748,16748,16749,16750,16750,16751,16752,16752,16753,16754,16754,16755,16756,16757,16758,16759,16760,16761,16762,16762,16763,16764,16764,16765,16766,16766,16767,16768,16769,16770,16771,16771,16772,16773,16502,16504,16506,16509,16511,16512,16512,16514,16516,16517,16519,16521,16523,16525,16774,16526,16528,16530,16531,16533,16775,16534,16536,16538,16539,16541,16543,16544,16546,16548,16548,16550,16552,16553,16555,16557,16557,16559,16561,16562,16564,16776,16565,16567,16568,16568,16570,16572,16572,16574,16576,16576,16578,16777,16579,16581,16778,16582,16584,16586,16590,16592,16594,16594,16596,16597,16599,16601,16603,16604,16606,16607,16607,16609,16611,16614,16616,16618,16619,16621,16623,16625,16627,16629,16629,16631,16779,16632,16634,16780,16635,16637,16639,16639,16641,16643,16643,16645,16647,16648,16650,16652,16781,16653,16655,16782,16656,16658,16658,16660,16662,16665,16667,16669,16669,16671,16673,16674,16676,16678,16681,16683,16685,16685,16687,16783,16688,16690,16691,16693,16695,16696,16696,16698,16700,16784,16701,16703,16703,16705,16785,16706,16708,16709,16709,16711,16713,16713,16715,16786,16716,16718,16787,16719,16721,16723,16723,16725,16788,16726,16728,16729,16729,16731,16732,16732,16734,16789,16735,16737,16739,16739,16741,16743,16744,16746,16748,16748,16750,16752,16752,16754,16756,16756,16757,16759,16790,16760,16762,16762,16764,16766,16766,16768,16769,16769,16771,16773,16502,16506,16508,16508,16509,16512,16791,16517,16521,16521,16523,16774,16792,16526,16530,16530,16531,16775,16534,16538,16793,16794,16544,16548,16548,16552,16795,16553,16557,16561,16561,16562,16776,16796,16565,16568,16568,16572,16576,16579,16778,16797,16798,16582,16586,16590,16594,16597,16597,16599,16603,16604,16607,16611,16614,16618,16799,16619,16623,16625,16625,16629,16779,16635,16639,16643,16643,16647,16800,16800,16648,16652,16781,16655,16801,16782,16658,16662,16665,16669,16673,16674,16678,16680,16802,16681,16685,16688,16691,16693,16693,16696,16700,16784,16703,16785,16785,16706,16709,16709,16713,16786,16719,16723,16788,16726,16729,16732,16735,16739,16743,16744,16748,16752,16752,16756,16759,16790,16762,16766,16766,16769,16773,16773,16502,16508,16508,16512,16516,16803,16791,16521,16774,16792,16530,16530,16775,16534,16534,16793,16804,16794,16548,16795,16795,16553,16561,16561,16776,16805,16796,16568,16576,16797,16798,16586,16589,16590,16597,16603,16604,16611,16613,16614,16799,16799,16619,16625,16625,16779,16806,16780,16635,16643,16643,16800,16652,16652,16781,16801,16807,16782,16662,16808,16665,16673,16809,16674,16680,16810,16802,16685,16783,16688,16693,16693,16700,16811,16784,16785,16709,16709,16786,16812,16787,16719,16788,16726,16732,16789,16813,16735,16743,16814,16744,16752,16752,16759,16815,16815,16790,16766,16766,16773,16508,16508,16516,16816,16803,16521,16774,16774,16530,16534,16534,16804,16817,16818,16794,16795,16795,16561,16805,16796,16576,16777,16797,16586,16819,16589,16597,16603,16603,16611,16613,16799,16625,16806,16780,16643,16652,16652,16801,16807,16807,16662,16664,16808,16673,16809,16809,16680,16810,16810,16685,16783,16783,16693,16811,16784,16709,16812,16787,16788,16726,16813,16743,16820,16821,16814,16752,16815,16766,16508,16816,16803,16774,16774,16534,16817,16818,16795,16805,16796,16777,16579,16587,16589,16603,16613,16799,16806,16632,16780,16652,16807,16664,16822,16808,16809,16810,16810,16783,16811,16811,16784,16812,16787,16726,16789,16813,16820,16823,16821,16752,16815,16815,16508,16816,16816,16774,16817,16824,16818,16805,16796,16579,16797,16587,16603,16613,16613,16806,16825,16826,16632,16652,16807,16822,16827,16808,16810,16811,16811,16812,16828,16813,16823,16821,16815,16816,16817,16829,16824,16805,16796,16797,16819,16587,16613,16825,16826,16652,16807,16807,16827,16808,16808,16811,16828,16813,16821,16815,16815,16817,16539,16830,16829,16805,16819,16587,16825,16826,16807,16808,16808,16828,16831,16789,16813,16815,16830,16805,16796,16796,16819,16825,16826,16808,16831,16789,16815,16539,16796,16825,16826,16826,16831,16716,16787,16789,16539,16796,16826,16716,16787,16539,16543,16830,16796,16716,16716,16787,16543,16543,16830,16716,16832,16833,16834,16834,16835,16836,16837,16838,16839,16839,16840,16841,16841,16842,16843,16843,16844,16845,16846,16847,16848,16848,16849,16850,16850,16851,16852,16853,16854,16855,16855,16856,16857,16857,16858,16859,16860,16861,16862,16862,16863,16864,16865,16866,16867,16867,16868,16869,16869,16870,16871,16872,16873,16874,16875,16876,16877,16877,16878,16879,16879,16880,16881,16882,16883,16884,16884,16885,16886,16886,16887,16888,16888,16889,16890,16832,16834,16836,16837,16839,16841,16841,16843,16845,16846,16848,16850,16853,16855,16857,16891,16860,16862,16862,16864,16892,16865,16867,16869,16869,16871,16872,16872,16874,16893,16875,16877,16879,16879,16881,16894,16882,16884,16886,16886,16888,16890,16832,16836,16837,16837,16841,16845,16846,16850,16852,16852,16853,16857,16891,16862,16892,16865,16869,16872,16872,16893,16875,16875,16879,16894,16882,16886,16890,16895,16832,16837,16837,16845,16896,16846,16852,16857,16897,16891,16892,16892,16865,16872,16872,16875,16894,16894,16882,16890,16895,16837,16896,16896,16846,16857,16859,16897,16892,16892,16872,16894,16894,16890,16895,16895,16896,16857,16859,16892,16894,16894,16895,16857,16857,16859,16894,16898,16899,16900,16900,16901,16902,16902,16903,16904,16904,16905,16906,16906,16907,16908,16908,16909,16910,16910,16911,16912,16912,16913,16914,16914,16915,16916,16917,16918,16919,16919,16920,16921,16921,16922,16923,16923,16924,16925,16926,16927,16928,16928,16929,16930,16930,16931,16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16941,16942,16943,16943,16944,16945,16945,16946,16947,16948,16949,16950,16950,16951,16952,16952,16953,16954,16954,16955,16956,16956,16957,16958,16958,16959,16960,16960,16961,16962,16963,16964,16965,16965,16966,16967,16967,16968,16969,16969,16970,16971,16971,16972,16973,16974,16975,16976,16976,16898,16900,16902,16904,16906,16906,16908,16910,16910,16912,16914,16917,16919,16921,16921,16923,16925,16926,16928,16930,16977,16933,16935,16936,16938,16978,16939,16941,16943,16943,16945,16947,16948,16950,16952,16952,16954,16956,16958,16960,16962,16963,16965,16967,16967,16969,16971,16971,16973,16979,16974,16976,16900,16902,16906,16910,16910,16914,16916,16980,16917,16921,16921,16925,16981,16981,16926,16930,16932,16977,16935,16982,16936,16978,16939,16943,16947,16983,16948,16952,16952,16956,16958,16958,16962,16984,16963,16967,16971,16979,16974,16900,16902,16910,16916,16980,16921,16981,16981,16930,16932,16932,16935,16982,16982,16978,16939,16939,16947,16985,16983,16952,16958,16958,16984,16963,16963,16971,16979,16979,16900,16902,16902,16916,16986,16986,16980,16981,16981,16932,16982,16982,16939,16985,16985,16983,16958,16958,16963,16979,16979,16902,16986,16986,16981,16982,16985,16958,16979,16986,16982,16985,16985,16979,16986,16987,16988,16989,16989,16990,16991,16991,16992,16993,16993,16994,16995,16995,16996,16997,16997,16998,16999,16999,17000,17001,17001,17002,17003,17004,17005,17006,17006,17007,17008,17008,17009,17010,17011,17012,17013,17013,17014,17015,17016,17017,17018,17018,17019,17020,17020,17021,17022,17022,17023,17024,17024,17025,17026,17027,17028,17029,17029,17030,17031,17031,17032,17033,17034,17035,17036,17036,17037,17038,17039,17040,17041,17042,17043,17044,17044,17045,17046,17046,17047,17048,17049,17050,17051,17051,17052,17053,17053,17054,17055,17055,17056,17057,17058,17059,17060,17060,17061,17062,17063,17064,17065,17065,17066,17067,16987,16989,16991,16991,16993,16995,16995,16997,16999,16999,17001,17003,17004,17006,17008,17008,17010,17011,17011,17013,17015,17068,17016,17018,17018,17020,17022,17022,17024,17026,17027,17029,17031,17031,17033,17069,17034,17036,17038,17038,17039,17041,17042,17044,17046,17046,17048,17070,17070,17049,17051,17051,17053,17055,17071,17058,17060,17063,17065,17067,17072,16987,16991,16991,16995,16999,17073,17004,17008,17011,17015,17074,17068,17018,17022,17022,17026,17075,17076,17027,17031,17077,17034,17038,17038,17041,17042,17042,17046,17070,17070,17051,17055,17071,17060,17062,17062,17063,17067,17072,16991,16999,17073,17008,17011,17078,17068,17022,17022,17075,17079,17076,17031,17069,17080,17077,17038,17038,17042,17070,17070,17055,17057,17081,17071,17062,17062,17067,17082,17083,17072,16999,17003,17073,17011,17084,17078,17022,17022,17079,17085,17086,17076,17069,17080,17038,17070,17070,17057,17087,17081,17062,17082,17088,17083,16999,17003,17011,17074,17084,17022,17085,17086,17069,17080,17080,17070,17087,17087,17081,17082,17088,16999,17003,17003,17074,17089,17089,17084,17085,17086,17080,17087,17087,17082,17088,17088,17003,17089,17089,17085,17086,17086,17087,17088,17088,17089,17086,17090,17091,17092,17092,17093,17094,17095,17096,17097,17097,17098,17099,17100,17101,17102,17102,17103,17104,17105,17106,17107,17108,17109,17110,17110,17111,17112,17112,17113,17114,17114,17115,17116,17117,17118,17119,17120,17121,17122,17122,17123,17124,17125,17126,17127,17128,17129,17130,17130,17131,17132,17132,17133,17134,17135,17136,17137,17137,17138,17139,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17153,17154,17155,17156,17090,17092,17092,17094,17157,17095,17097,17099,17099,17100,17102,17102,17104,17105,17105,17107,17158,17159,17108,17110,17110,17112,17114,17114,17116,17117,17120,17122,17124,17125,17127,17128,17128,17130,17132,17132,17134,17135,17135,17137,17139,17139,17141,17142,17142,17144,17160,17145,17147,17161,17148,17150,17162,17162,17151,17153,17156,17092,17157,17157,17095,17099,17099,17102,17105,17105,17158,17159,17159,17110,17114,17114,17117,17119,17119,17120,17124,17163,17125,17128,17128,17132,17135,17135,17139,17142,17164,17148,17162,17162,17153,17155,17165,17156,17157,17157,17099,17105,17105,17159,17114,17114,17119,17124,17124,17163,17128,17128,17135,17142,17164,17162,17155,17165,17157,17105,17128,17142,17160,17164,17155,17165,17165,17105,17114,17124,17128,17160,17164,17165,17114,17124,17160,17166,17161,17164,17114,17124,17166,17167,17145,17161,17114,17124,17167,17168,17168,17145,17114,17114,17124,17168,7188,17169,17170,17171,17172,17173,17173,17174,17175,17175,17176,17177,17178,17179,17180,17181,17182,17183,17184,17185,17186,17186,17187,17188,17189,17190,17191,17191,17192,17193,17194,17195,17196,17197,17198,17199,17199,17200,17201,17201,17202,17203,17203,17204,17205,17206,17207,17208,17208,17209,17210,17211,17212,17213,17213,17214,17215,17215,17216,17217,17218,17219,17220,17220,17221,17222,17223,17224,17225,17225,17226,17227,17227,17228,17229,17230,17231,17232,17232,17233,17234,17234,17235,17236,17237,17238,17239,17239,17240,17241,17241,17242,17243,17244,17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257,17258,17258,17259,17260,17260,17261,17262,17262,17263,17264,17265,17266,17267,17268,17269,17270,17270,17271,17272,17272,17273,17274,17274,17275,17276,17276,17277,17278,17279,17280,17281,17281,17282,17283,17284,17285,17286,17286,17287,17288,17288,17289,17290,17291,17292,17293,17294,17295,17296,17296,17297,17298,17298,17299,17300,17301,17302,17303,17303,17304,17305,17305,17306,17307,17308,17309,17310,17311,17312,17313,17314,17315,17316,17316,17317,17318,17318,17319,17320,17321,17322,17323,17323,17324,17325,17326,17327,17328,17328,17329,17330,17330,17331,17332,17332,17333,17334,17334,17335,17336,17336,17337,17338,17338,17339,17340,17341,17342,17343,17343,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17354,17355,17356,17357,17358,17359,17360,17361,17362,17363,17364,17365,17365,17366,17367,17368,17369,17370,17370,17371,17372,17372,17373,17374,17374,17375,17376,17377,17378,17379,17379,17380,17381,17382,17383,17384,17384,17385,17386,17386,17387,17388,17388,17389,17390,17390,17391,17392,17393,17394,17395,17395,17396,17397,17398,17399,17400,17401,17402,17403,17404,17405,17406,17406,17407,17408,17409,17410,17411,17411,17412,17413,17413,17414,17415,17415,17416,17417,17417,17418,17419,17420,17421,17422,17423,17424,17425,17425,17426,17427,17428,17429,17430,17430,17431,17432,17432,5846,5845,7274,7273,7272,7272,7271,7583,7583,7491,7270,7269,7268,7267,7264,7263,7403,7403,7490,7262,7259,7258,7552,7552,7257,7256,7254,7253,7252,7251,7250,7402,7402,7249,7248,7244,7243,7242,7241,7240,7401,7401,7489,7239,7238,7237,7236,7234,7233,7400,7400,7551,7581,7581,7616,7232,7231,7230,7399,7226,7225,7224,7223,7222,7398,7398,7221,7220,7220,7219,7218,7218,7217,7216,7216,7215,7397,7397,7396,7214,7213,7212,7488,7488,7649,7704,7704,7395,7211,7210,7209,7615,7615,7208,7207,7203,7202,7550,7550,7201,7200,7198,7197,7487,7487,7196,7195,7195,7194,7676,7676,7193,7192,7189,7188,17170,17171,17173,17175,17175,17177,17178,17178,17180,17181,17433,17184,17186,17186,17188,17189,17189,17191,17193,17434,17194,17196,17199,17201,17203,17203,17205,17206,17211,17213,17215,17218,17220,17222,17223,17225,17227,17227,17229,17435,17232,17234,17236,17237,17239,17241,17241,17243,17436,17437,17244,17246,17247,17249,17438,17438,17250,17252,17439,17253,17255,17260,17262,17264,17265,17267,17440,17268,17270,17272,17272,17274,17276,17276,17278,17279,17281,17283,17284,17284,17286,17288,17291,17293,17441,17294,17296,17298,17300,17301,17303,17303,17305,17307,17442,17308,17310,17311,17313,17314,17316,17318,17320,17321,17323,17325,17328,17330,17332,17336,17338,17340,17341,17343,17345,17346,17348,17443,17443,17349,17351,17352,17354,17356,17357,17359,17360,17360,17362,17444,17363,17365,17367,17368,17370,17372,17374,17376,17445,17377,17379,17381,17446,17382,17384,17384,17386,17388,17388,17390,17392,17393,17395,17397,17447,17398,17400,17400,17401,17403,17403,17404,17406,17413,17415,17417,17417,17419,17420,17420,17422,17423,17423,17425,17427,17428,17430,17432,17432,5845,7276,7274,7272,7583,7583,7270,7269,7269,7267,7266,7264,7403,7262,7260,7259,7552,7254,7252,7251,7251,7402,7248,7245,7244,7242,7241,7401,7239,7234,7400,7581,7581,7232,7231,7231,7399,7229,7223,7398,7220,7220,7218,7216,7216,7397,7214,7213,7488,7704,7210,7615,7207,7204,7203,7550,7198,7487,7195,7195,7676,7192,7190,7189,17170,17170,17171,17175,17175,17178,17181,17433,17186,17189,17189,17193,17448,17434,17196,17449,17197,17199,17203,17450,17218,17222,17223,17227,17435,17232,17236,17451,17237,17241,17436,17437,17246,17247,17247,17438,17252,17439,17255,17256,17258,17260,17264,17265,17440,17452,17452,17268,17272,17276,17279,17281,17281,17284,17288,17441,17294,17298,17300,17303,17307,17442,17310,17311,17316,17320,17453,17321,17325,17326,17328,17332,17334,17336,17340,17454,17454,17341,17345,17346,17443,17351,17351,17352,17356,17357,17360,17444,17363,17367,17368,17368,17372,17374,17374,17445,17377,17377,17381,17446,17446,17384,17388,17388,17392,17393,17393,17397,17447,17447,17400,17403,17411,17413,17417,17417,17420,17423,17428,17432,7276,7274,7583,7269,7269,7266,7265,7264,7262,7261,7260,7552,7256,7254,7251,7248,7245,7242,7241,7241,7239,7238,7234,7581,7231,7223,7220,7216,7216,7214,7213,7213,7704,7211,7211,7210,7207,7204,7550,7200,7199,7198,7195,7195,7192,7191,7191,7190,17170,17170,17175,17181,17433,17189,17448,17197,17203,17206,17217,17450,17222,17223,17435,17455,17230,17232,17451,17237,17436,17437,17437,17247,17252,17439,17256,17258,17258,17264,17456,17456,17265,17452,17452,17272,17276,17276,17281,17288,17291,17441,17298,17300,17307,17457,17457,17442,17311,17316,17453,17321,17326,17328,17334,17336,17454,17345,17346,17351,17356,17458,17357,17444,17368,17374,17377,17377,17446,17388,17388,17393,17447,17447,17403,17406,17411,17417,17423,17428,7276,7275,7275,7274,7269,7265,7264,7261,7261,7260,7256,7255,7254,7248,7234,7231,7229,7224,7223,7216,7216,7213,7211,7205,7204,7200,7199,7195,7191,7191,17170,17181,17433,17448,17434,17449,17197,17206,17217,17222,17223,17223,17455,17459,17230,17451,17237,17237,17437,17252,17252,17439,17258,17452,17276,17288,17290,17291,17298,17300,17457,17311,17336,17345,17460,17346,17356,17458,17458,17444,17461,17363,17368,17377,17388,17447,17462,17388,17462,17377,17447,17406,17408,17409,17411,17423,17427,17428,7275,7275,7269,7265,7265,7261,7256,7255,7248,7247,7235,7234,7229,7224,7216,7211,7205,7200,7199,7199,7191,17181,17449,17206,17208,17217,17223,17459,17230,17237,17252,17252,17258,17456,17452,17288,17290,17290,17298,17300,17300,17311,17314,17336,17460,17463,17346,17458,17461,17363,17377,17462,17363,17462,17447,17464,17409,17423,17427,7275,7265,7265,7256,7255,7255,7247,7246,7236,7235,7229,7224,7211,7207,7205,7199,17181,17449,17208,17210,17215,17217,17459,17459,17230,17252,17452,17290,17300,17300,17314,17316,17336,17463,17346,17461,17363,17447,17423,17427,17465,17423,17465,17464,17427,7265,7255,7255,7246,7245,7236,7229,7228,7224,7207,7206,7206,7205,17181,17449,17210,17466,17215,17459,17252,17452,17300,17316,17336,17346,17461,7255,17464,17465,7255,17465,17427,7255,7245,7241,7236,7228,7227,7224,7206,17181,17211,17215,17252,17456,17452,17316,17336,17461,17467,17336,17467,17334,17408,17464,7255,7224,17181,17183,17466,17211,17252,17461,17447,17468,17468,17334,17467,17468,17467,17461,17408,7255,7241,7224,17183,17433,17466,17252,17456,17447,17408,7241,17433,17434,17469,17433,17469,7224,17466,17456,17316,17447,7241,7238,17470,7224,17469,17470,17469,17434,7224,17470,7226,17449,17466,17316,17447,7238,7236,17471,7226,17470,17471,17470,17434,7226,17471,7227,17434,17449,17316,17447,7236,7227,17434,17316,17321,17468,7227,17472,17468,17472,17334,7227,17468,17447,17434,17321,17326,17473,17334,17472,17473,17472,7227,17334,17473,17326,17434,17326,17473,17473,7227,17471,17473,17471,17434,17474,17475,17476,17476,17477,17478,17478,17479,17480,17481,17482,17483,17484,17485,17486,17486,17487,17488,17489,17490,17491,17492,17493,17494,17494,17495,17496,17496,17497,17498,17499,17500,17501,17501,17502,17503,17504,17505,17506,17506,17507,17508,17509,17510,17511,17511,17512,17513,17513,17514,17515,17515,17516,17517,17518,17519,17520,17520,17521,17522,17523,17524,17525,17525,17526,17527,17527,17528,17529,17529,17530,17531,17532,17533,17534,17534,17535,17536,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545,17546,17547,17547,17548,17549,17549,17550,17551,17551,17552,17553,17553,17554,17555,17555,17556,17557,17558,17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17569,17570,17571,17572,17573,17574,17574,17575,17576,17577,17578,17579,17579,17580,17581,17582,17583,17584,17584,17585,17586,17586,17587,17588,17589,17590,17591,17591,17592,17593,17593,17594,17595,17596,17597,17598,17599,17600,17601,17601,17602,17603,17603,17604,17605,17605,17606,17607,17607,17608,17609,17610,17611,17612,17612,17613,17614,17614,17615,17616,17617,17618,17619,17619,17620,17621,17622,17623,17624,17624,17625,17626,17626,17627,17628,17628,17629,17630,17631,17632,17633,17634,17635,17636,17636,17637,17638,17638,17639,17640,17640,17641,17642,17642,17643,17644,17644,17645,17646,17647,17648,17649,17649,17650,17651,17651,17652,17653,17653,17654,17655,17656,17657,17658,17658,17659,17660,17660,17661,17662,17662,17663,17664,17664,17665,17666,17666,17667,17668,17668,17669,17670,17671,17672,17673,17673,17674,17675,17676,17677,17678,17678,17679,17680,17681,17682,17683,17684,17685,17686,17686,17687,17688,17689,17690,17691,17692,17693,17694,17694,17695,17696,17696,17697,17698,17699,17700,17701,17701,17702,17703,17703,17704,17705,17705,17706,17707,17707,17708,17709,17710,17711,17712,17713,17714,17715,17716,17717,17718,17719,17720,17721,17722,17723,17724,17724,17725,17726,17727,17728,17729,17729,17730,17731,17732,17733,17734,17734,17735,17736,17737,17738,17739,17739,17740,17741,17741,17742,17743,17743,17744,17745,17746,17747,17748,17748,17749,17750,17751,17752,17753,17753,17754,17755,17755,17756,17757,17758,17759,17760,17761,17762,17763,17763,17764,17765,17765,17766,17767,17768,17769,17770,17770,17771,17772,17772,17773,17774,17774,17775,17776,17776,17777,17778,17779,17780,17781,17781,17782,17783,17784,17785,17786,17787,17788,17789,17789,17790,17791,17791,17792,17793,17794,17795,17796,17796,17797,17798,17798,17799,17800,17801,17802,17803,17803,17804,17805,17806,17807,17808,17808,17809,17810,17810,17811,17812,17813,17814,17815,17816,17817,17818,17819,17820,17821,17821,17822,17823,17824,17825,17826,17826,17827,17828,17828,17829,17830,17830,17831,17832,17833,17834,17835,17835,17836,17837,17837,17838,17839,17839,17840,17841,17841,17842,17843,17844,17845,17846,17846,17847,17474,17474,17476,17478,17478,17480,17848,17481,17483,17484,17484,17486,17488,17489,17491,17849,17492,17494,17496,17498,17499,17501,17501,17503,17850,17504,17506,17508,17509,17511,17513,17513,17515,17517,17518,17520,17522,17523,17525,17527,17527,17529,17531,17532,17534,17536,17536,17538,17851,17851,17539,17541,17852,17542,17544,17545,17547,17549,17549,17551,17553,17553,17555,17557,17853,17558,17560,17561,17563,17564,17564,17566,17567,17567,17569,17571,17572,17574,17576,17577,17579,17581,17581,17582,17584,17584,17586,17588,17591,17593,17595,17854,17596,17598,17599,17601,17603,17603,17605,17607,17607,17609,17855,17610,17612,17614,17617,17619,17621,17622,17624,17626,17631,17633,17856,17634,17636,17638,17638,17640,17642,17642,17644,17646,17857,17647,17649,17649,17651,17653,17656,17658,17660,17660,17662,17664,17666,17668,17670,17670,17671,17673,17673,17675,17858,17676,17678,17680,17680,17681,17683,17684,17686,17688,17689,17691,17692,17692,17694,17696,17696,17698,17859,17699,17701,17703,17703,17705,17707,17707,17709,17860,17710,17712,17713,17713,17715,17716,17716,17718,17861,17719,17721,17722,17722,17724,17726,17727,17729,17731,17732,17734,17736,17737,17739,17741,17741,17743,17745,17746,17748,17750,17751,17753,17755,17755,17757,17862,17758,17760,17863,17761,17763,17765,17765,17767,17864,17770,17772,17774,17774,17776,17778,17779,17781,17783,17784,17786,17787,17787,17789,17791,17791,17793,17865,17794,17796,17798,17801,17803,17805,17806,17808,17810,17810,17812,17866,17813,17815,17867,17816,17818,17868,17819,17821,17823,17824,17826,17828,17828,17830,17832,17833,17835,17837,17837,17839,17841,17844,17846,17474,17474,17478,17848,17869,17481,17484,17484,17488,17870,17871,17489,17849,17492,17496,17498,17498,17501,17850,17850,17504,17508,17509,17513,17517,17872,17518,17522,17523,17527,17531,17873,17532,17536,17852,17544,17545,17545,17549,17553,17553,17557,17853,17853,17560,17561,17561,17564,17567,17567,17571,17874,17875,17577,17581,17581,17584,17588,17589,17591,17595,17854,17598,17876,17877,17599,17603,17603,17607,17855,17855,17610,17614,17878,17617,17621,17622,17626,17628,17634,17638,17642,17642,17646,17879,17857,17649,17653,17880,17656,17660,17660,17664,17666,17666,17670,17673,17881,17676,17680,17680,17683,17882,17684,17688,17883,17689,17692,17696,17859,17699,17703,17703,17707,17860,17860,17710,17713,17713,17716,17861,17719,17722,17726,17884,17727,17731,17732,17736,17737,17737,17741,17745,17745,17746,17750,17751,17755,17862,17761,17765,17864,17770,17774,17778,17885,17779,17783,17787,17791,17865,17794,17798,17800,17806,17810,17866,17866,17813,17867,17816,17868,17886,17819,17823,17887,17828,17832,17888,17888,17833,17837,17837,17841,17843,17889,17844,17474,17474,17848,17869,17869,17484,17870,17871,17849,17890,17891,17492,17498,17498,17850,17508,17892,17509,17517,17872,17522,17893,17894,17523,17531,17895,17873,17536,17852,17545,17553,17853,17561,17567,17567,17874,17572,17875,17581,17588,17854,17876,17877,17877,17603,17855,17855,17614,17616,17621,17622,17628,17856,17634,17642,17857,17653,17655,17880,17660,17666,17666,17673,17858,17896,17881,17680,17684,17883,17689,17859,17703,17860,17897,17719,17726,17884,17731,17898,17732,17737,17745,17750,17751,17862,17863,17761,17864,17770,17778,17899,17885,17783,17784,17787,17865,17900,17794,17800,17801,17805,17806,17866,17888,17837,17843,17889,17474,17869,17869,17870,17871,17871,17890,17891,17498,17508,17892,17892,17517,17872,17893,17894,17531,17901,17895,17536,17852,17553,17853,17853,17567,17572,17576,17875,17588,17854,17877,17855,17855,17616,17878,17621,17628,17630,17856,17642,17879,17857,17655,17902,17902,17880,17666,17666,17858,17903,17896,17680,17882,17904,17684,17689,17696,17859,17860,17897,17726,17905,17905,17884,17898,17732,17745,17750,17750,17862,17758,17758,17863,17864,17770,17899,17885,17885,17784,17787,17900,17794,17801,17805,17866,17867,17828,17888,17843,17889,17869,17871,17871,17891,17498,17892,17872,17893,17893,17531,17906,17906,17901,17536,17541,17852,17853,17853,17572,17576,17576,17588,17907,17908,17854,17855,17878,17621,17630,17631,17856,17879,17857,17902,17666,17666,17903,17909,17910,17896,17882,17689,17696,17860,17897,17905,17898,17732,17750,17758,17758,17864,17911,17768,17770,17885,17900,17801,17805,17805,17867,17816,17824,17828,17843,17912,17889,17871,17871,17498,17892,17906,17536,17851,17541,17853,17576,17576,17907,17589,17908,17855,17878,17913,17631,17879,17914,17857,17666,17666,17909,17915,17916,17910,17882,17689,17860,17713,17897,17898,17732,17732,17758,17911,17768,17885,17787,17900,17805,17816,17887,17824,17843,17917,17912,17871,17892,17893,17918,17892,17918,17871,17893,17906,17851,17576,17589,17595,17595,17908,17878,17913,17879,17914,17914,17666,17915,17919,17916,17882,17689,17713,17861,17897,17732,17911,17787,17900,17816,17887,17843,17920,17920,17917,17871,17893,17851,17541,17576,17595,17921,17576,17921,17541,17595,17878,17630,17914,17915,17922,17922,17919,17882,17904,17689,17861,17897,17911,17923,17768,17787,17816,17887,17920,17871,17893,17541,17921,17921,17595,17924,17921,17924,17893,17595,17630,17925,17914,17922,17882,17904,17861,17897,17897,17923,17768,17819,17887,17871,17595,17925,17926,17926,17893,17924,17926,17924,17595,17914,17882,17927,17904,17897,17768,17886,17819,17871,17914,17927,17928,17929,17904,17768,17886,17871,17918,17886,17918,17893,17913,17914,17928,17930,17929,17768,17816,17886,17893,17931,17913,17928,17768,17816,17932,17768,17932,17930,17816,17893,17926,17926,17925,17933,17926,17933,17816,17931,17928,17930,17925,17931,17934,17934,17816,17933,17934,17933,17925,17931,17930,17932,17932,17816,17934,17932,17934,17931,17935,17936,17937,17938,17939,17940,17940,17941,17942,17942,17943,17944,17945,17946,17947,17947,17948,17949,17950,17951,17952,17953,17954,17955,17955,17956,17957,17957,17958,17959,17959,17960,17961,17961,17962,17963,17963,17964,17965,17965,17966,17967,17967,17968,17969,17970,17971,17972,17972,17973,17974,17974,17975,17976,17977,17978,17979,17979,17980,17981,17981,17982,17983,17983,17984,17985,17985,17986,17987,17988,17989,17990,17990,17991,17992,17993,17994,17995,17995,17996,17997,17997,17998,17999,17999,18000,18001,18002,18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18013,18014,18015,18015,18016,18017,18018,18019,18020,18020,18021,18022,18023,18024,18025,18025,18026,18027,18028,18029,18030,18030,18031,18032,18032,18033,18034,18034,18035,18036,18036,18037,18038,18038,18039,18040,18041,18042,18043,18044,18045,18046,18046,18047,18048,18049,18050,18051,18051,18052,18053,18054,18055,18056,18056,18057,18058,18058,18059,18060,18060,18061,18062,18063,18064,18065,18065,18066,18067,18068,18069,18070,18070,18071,18072,18072,18073,18074,18074,18075,18076,18076,18077,18078,18078,18079,18080,18081,18082,18083,18084,18085,18086,18087,18088,18089,18089,18090,18091,18092,18093,18094,18094,18095,18096,18097,18098,18099,18099,18100,18101,18102,18103,18104,18105,18106,18107,18107,18108,18109,18109,18110,18111,18111,18112,18113,18114,18115,18116,18116,18117,18118,18119,18120,18121,18121,18122,18123,18123,18124,18125,18126,18127,18128,18129,18130,18131,18132,18133,18134,18134,18135,18136,18137,18138,18139,18139,18140,18141,18142,18143,18144,18144,18145,18146,18146,18147,18148,18148,18149,18150,18151,18152,18153,18153,18154,18155,18155,18156,18157,18158,18159,18160,18161,18162,18163,18164,18165,18166,18167,18168,18169,18169,18170,18171,18172,18173,18174,18174,18175,18176,18177,18178,18179,18179,18180,18181,18181,18182,18183,18184,18185,18186,18186,18187,18188,18189,18190,18191,18191,18192,18193,18194,18195,18196,18196,18197,18198,18199,18200,18201,18202,18203,18204,18204,18205,18206,18206,18207,18208,18208,18209,18210,18211,18212,18213,18213,18214,18215,18215,18216,18217,18218,18219,18220,18220,18221,18222,18223,18224,18225,18225,18226,18227,18227,18228,18229,18229,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,18242,18243,18244,18245,18246,18246,18247,18248,18248,18249,18250,18250,18251,18252,18253,18254,18255,18256,18257,18258,18258,18259,18260,18261,18262,18263,18263,18264,18265,18265,18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18277,18278,18279,18280,18281,18282,18282,18283,18284,18285,18286,18287,18287,18288,18289,18290,18291,18292,18293,18294,18295,18295,18296,18297,18297,18298,18299,18299,18300,18301,18302,18303,18304,18305,18306,18307,18307,18308,18309,18309,18310,18311,18312,18313,18314,18314,18315,18316,18316,18317,18318,18318,18319,18320,18321,18322,18323,18324,18325,18326,18326,18327,18328,18328,18329,18330,18330,18331,18332,18333,18334,18335,18335,18336,18337,18338,18339,18340,18340,18341,18342,18343,18344,18345,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18356,18357,18358,18358,18359,18360,18361,18362,18363,18363,18364,18365,18366,18367,18368,18369,18370,18371,18371,18372,18373,18373,18374,18375,18376,18377,18378,18378,18379,18380,18380,18381,18382,18383,18384,18385,18385,18386,18387,18388,18389,18390,18390,18391,18392,18393,18394,18395,18395,18396,18397,18397,18398,18399,18400,18401,18402,18403,18404,18405,18405,18406,18407,18407,18408,18409,18410,18411,18412,18412,18413,18414,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18425,18426,18427,18427,18428,18429,18430,18431,18432,18432,18433,18434,18434,18435,18436,18437,18438,18439,18439,18440,18441,18441,18442,18443,18444,18445,18446,18446,18447,18448,18449,18450,18451,18451,18452,18453,18453,18454,18455,18456,18457,18458,18458,18459,18460,18460,18461,18462,18463,18464,18465,18465,18466,18467,18468,18469,18470,18470,18471,18472,18472,18473,18474,18475,18476,18477,18478,18479,18480,18480,18481,18482,18482,18483,18484,18485,18486,18487,18488,18489,18490,18490,18491,18492,18493,18494,18495,18495,18496,18497,18497,18498,18499,18499,18500,18501,18502,18503,18504,18504,18505,18506,18506,18507,18508,18509,18510,18511,18511,18512,18513,18514,18515,18516,18516,18517,18518,18519,18520,18521,18521,18522,18523,18524,18525,18526,18526,18527,18528,18528,18529,18530,18530,18531,18532,18533,18534,18535,18536,18537,18538,18538,18539,18540,18540,18541,18542,18543,18544,18545,18545,18546,18547,18548,18549,18550,18550,18551,18552,18553,18554,18555,18555,18556,18557,18558,18559,18560,18560,18561,18562,18562,18563,18564,18564,18565,18566,18567,18568,18569,18570,18571,18572,18572,18573,18574,18574,18575,18576,18577,18578,18579,18579,18580,18581,18581,18582,18583,18584,18585,18586,18586,18587,18588,18588,18589,18590,18591,18592,18593,18594,18595,18596,18596,18597,18598,18598,18599,18600,18601,18602,18603,18603,18604,18605,18605,18606,18607,18608,18609,18610,18611,18612,18613,18614,18615,18616,18616,18617,18618,18619,18620,18621,18622,18623,18624,18624,18625,18626,18627,18628,18629,18629,18630,18631,18631,18632,18633,18634,18635,18636,18637,18638,18639,18639,18640,18641,18641,18642,18643,18644,18645,18646,18647,18648,18649,18649,18650,18651,18651,18652,18653,18653,18654,18655,18655,18656,18657,18658,18659,18660,18660,18661,18662,18663,18664,18665,18665,18666,18667,18668,18669,18670,18671,18672,18673,18673,18674,18675,18676,18677,18678,18679,18680,18681,18681,18682,18683,18684,18685,18686,18686,18687,18688,18689,18690,18691,18691,18692,18693,18693,18694,18695,18696,18697,18698,18698,18699,18700,18701,18702,18703,18704,18705,18706,18706,18707,18708,18708,18709,18710,18710,18711,18712,18712,18713,18714,18715,18716,18717,18717,18718,18719,18719,18720,18721,18721,18722,18723,18723,18724,18725,18725,18726,18727,18727,18728,18729,18729,18730,18731,18731,18732,18733,18733,18734,18735,18736,18737,18738,18739,18740,18741,18742,18743,18744,18744,18745,18746,18746,18747,18748,18748,18749,18750,18750,18751,18752,18752,18753,18754,18754,18755,18756,18756,18757,18758,18759,18760,18761,18762,18763,18764,18764,18765,18766,18766,18767,18768,18768,18769,18770,18770,18771,18772,18773,18774,18775,18775,18776,18777,18778,18779,18780,18780,18781,18782,18782,18783,18784,18784,18785,18786,18787,18788,18789,18789,18790,18791,18792,18793,18794,18794,18795,18796,18796,18797,18798,18798,18799,18800,18801,18802,18803,18803,18804,18805,18805,18806,18807,18807,18808,18809,18810,18811,18812,18813,18814,18815,18815,18816,18817,18817,18818,18819,18819,18820,18821,18821,18822,18823,18823,18824,18825,18826,18827,18828,18828,18829,18830,18831,18832,18833,18834,18835,18836,18836,18837,18838,18838,18839,18840,18840,18841,18842,18842,18843,18844,18844,18845,18846,18846,18847,18848,18849,18850,18851,18852,18853,18854,18855,18856,18857,18857,18858,18859,18859,18860,18861,18861,18862,18863,18864,18865,18866,18866,18867,18868,18868,18869,18870,18871,18872,18873,18873,18874,18875,18876,18877,18878,18878,18879,18880,18881,18882,18883,18884,18885,18886,18887,18888,18889,18889,18890,18891,18891,18892,18893,18893,18894,18895,18895,18896,18897,18897,18898,18899,18899,18900,18901,18902,18903,18904,18905,18906,18907,18907,18908,18909,18909,18910,18911,18911,18912,18913,18913,18914,18915,18916,18917,18918,18918,18919,18920,18920,18921,18922,18922,18923,18924,18924,18925,18926,18926,18927,18928,18928,18929,18930,18930,18931,18932,18933,18934,18935,18936,18937,18938,18938,18939,18940,18940,18941,18942,18943,18944,18945,18945,18946,18947,18948,18949,18950,18950,18951,18952,18952,18953,18954,18954,18955,18956,18957,18958,18959,18959,18960,18961,18962,18963,18964,18965,18966,18967,18968,18969,18970,18970,18971,18972,18972,18973,18974,18975,18976,18977,18977,18978,18979,18979,18980,18981,18982,18983,18984,18984,18985,18986,18987,18988,18989,18989,18990,18991,18991,18992,18993,18993,18994,18995,18995,18996,18997,18997,18998,18999,18999,19000,19001,19002,19003,19004,19005,19006,19007,19007,19008,19009,19010,19011,19012,19012,19013,19014,19014,19015,19016,19016,19017,19018,19018,19019,19020,19021,19022,19023,19023,19024,19025,19025,19026,19027,19028,19029,19030,19030,19031,19032,19033,19034,19035,19035,19036,19037,19038,19039,19040,19041,19042,19043,19043,19044,19045,19045,19046,19047,19048,19049,19050,19051,19052,19053,19053,19054,19055,19055,19056,19057,17937,17938,17940,17940,17942,17944,17945,17947,17949,17953,17955,17957,17957,17959,17961,17961,17963,17965,17965,17967,17969,17970,17972,17974,17974,17976,19058,17977,17979,17981,17981,17983,17985,17988,17990,17992,17993,17995,17997,17997,17999,18001,18002,18004,19059,18005,18007,18008,18008,18010,19060,18011,18013,18015,18018,18020,18022,18023,18025,18027,18028,18030,18032,18032,18034,18036,18036,18038,18040,18044,18046,18048,19061,18049,18051,18051,18053,18054,18054,18056,18058,18058,18060,18062,18065,18067,18068,18068,18070,18072,18072,18074,18076,18076,18078,18080,18081,18083,18084,18084,18086,18087,18087,18089,18091,18092,18094,18096,18097,18099,18101,18102,18104,19062,18105,18107,18109,18109,18111,18113,18114,18116,18118,18119,18121,18123,18123,18125,18126,19063,18129,18131,18132,18134,18136,18137,18139,18141,18142,18144,18146,18146,18148,18150,18151,18153,18155,18155,18157,19064,18158,18160,18161,18164,18166,19065,18167,18169,18171,18172,18174,18176,18177,18179,18181,18181,18183,19066,18184,18186,18188,18189,18191,18193,18194,18196,18198,18199,18201,19067,18202,18204,18206,18206,18208,18210,18211,18213,18215,18215,18217,19068,18218,18220,18222,18223,18225,18227,18227,18229,18231,18232,18234,19069,19069,18235,18237,18238,18240,19070,18241,18243,19071,18244,18246,18248,18248,18250,18252,18253,18255,19072,18256,18258,18260,19073,18261,18263,18263,18265,18267,18268,18270,18271,18274,18276,19074,18277,18279,19075,18280,18282,18284,18285,18287,18289,18290,18292,19076,18293,18295,18297,18297,18299,18301,18302,18304,18305,18307,18309,18311,18312,18314,18316,18316,18318,18320,18321,18323,18324,18324,18326,18328,18328,18330,18332,18333,18335,18337,18338,18340,18342,18343,18345,18347,18348,18350,19077,18351,18353,19078,18354,18356,18358,18361,18363,18365,18366,18368,19079,18369,18371,18373,18376,18378,18380,18380,18382,19080,18383,18385,18387,18388,18390,18392,18393,18395,18397,18397,18399,18400,18400,18402,19081,18403,18405,18407,18410,18412,18414,18414,18416,19082,18417,18419,18420,18420,18422,19083,18423,18425,18427,18430,18432,18434,19084,18437,18439,18439,18441,18443,18444,18446,18448,18449,18451,18453,18456,18458,18460,18460,18462,19085,18463,18465,18467,18468,18470,18472,18475,18477,19086,18478,18480,18482,18482,18484,19087,18485,18487,19088,18488,18490,18492,18493,18495,18497,18497,18499,18501,18502,18504,18506,18509,18511,18513,18514,18516,18518,19089,18519,18521,18521,18523,19090,18524,18526,18528,18528,18530,18532,18533,18535,19091,18536,18538,18540,18540,18542,19092,18543,18545,18547,18548,18550,18552,18553,18555,18557,19093,18558,18560,18560,18562,18564,18564,18566,19094,18567,18569,19095,18570,18572,18574,18574,18576,19096,19096,18577,18579,18579,18581,18583,18584,18586,18588,18588,18590,19097,18591,18593,19098,18594,18596,18598,18598,18600,19099,18601,18603,18605,18605,18607,18608,18608,18610,19100,19100,18611,18613,18613,18614,18616,18619,18621,18622,18622,18624,18626,18626,18627,18629,18637,18639,18641,18641,18643,19101,19101,18644,18646,18647,18649,18651,18651,18653,18655,18658,18660,18662,18663,18665,18667,18668,18670,18671,18671,18673,18675,18676,18678,19102,18679,18681,18683,18684,18686,18688,18691,18693,18695,18696,18698,18700,18701,18703,19103,18704,18706,18708,18708,18710,18712,18717,18719,18721,18721,18723,18725,18725,18727,18729,18729,18731,18733,18736,18738,19104,18739,18741,19105,18742,18744,18746,18746,18748,18750,18750,18752,18754,18754,18756,18758,19106,18759,18761,18762,18764,18766,18766,18768,18770,18773,18775,18777,18778,18780,18782,18782,18784,18786,18787,18789,18791,18792,18794,18796,18796,18798,18800,18801,18803,18805,18805,18807,18809,18810,18812,19107,18813,18815,18817,18817,18819,18821,18821,18823,18825,18826,18828,18830,18831,18833,19108,18834,18836,18838,18838,18840,18842,18842,18844,18846,18846,18848,18849,18849,18851,18852,18852,18854,19109,18857,18859,18861,18864,18866,18868,18868,18870,18871,18871,18873,18875,18876,18878,18880,18881,18883,19110,18884,18886,18887,18887,18889,18891,18891,18893,18895,18895,18897,18899,18899,18901,19111,18905,18907,18909,18909,18911,18913,19112,18916,18918,18918,18920,18922,18922,18924,18926,18926,18928,18930,18933,18935,18936,18936,18938,18940,18940,18942,19113,19114,18943,18945,18945,18947,19115,18948,18950,18952,18952,18954,18956,18957,18959,18961,18962,18964,19116,18965,18967,19117,18968,18970,18972,18975,18977,18979,18982,18984,18986,18987,18989,18991,18991,18993,18995,18997,18999,19001,19002,19004,19005,19005,19007,19009,19010,19012,19014,19014,19016,19018,19018,19020,19021,19021,19023,19025,19028,19030,19032,19033,19035,19037,19038,19040,19118,19041,19043,19045,19051,19053,19055,17937,17940,17944,19119,17945,17949,19120,17953,17957,17957,17961,17965,17965,17969,19121,17970,17974,19058,17977,17981,17985,17988,17992,17993,17993,17997,18001,19122,18005,18008,18008,19060,18011,18011,18015,18017,18017,18018,18022,19123,18023,18027,18032,18036,18040,18043,18044,18048,19061,18051,18054,18054,18058,18062,18065,18068,18072,18072,18076,18080,18081,18084,18087,19124,18092,18096,19125,18097,18101,18101,18102,19062,18105,18109,18113,19126,18114,18118,19127,18119,18123,18123,18126,18128,19063,18131,19128,19129,18132,18136,19130,18137,18141,19131,18142,18146,18146,18150,19132,19133,18151,18155,18158,18161,18163,19134,18167,18171,18172,18176,19135,19135,18177,18181,18181,19066,19136,18184,18188,19137,19138,18189,18193,19139,18194,18198,19140,18202,18206,18206,18210,19141,19141,18211,18215,18218,18222,18223,18223,18227,18231,19142,18232,19069,19069,18237,19143,19070,18241,19071,18244,18248,18252,19144,18256,18260,19073,18263,18267,18274,19074,19145,19145,18277,19075,19075,18280,18284,19146,18285,18289,19147,18290,19076,19148,18293,18297,18297,18301,19149,18302,18305,18307,18307,18311,19150,18312,18316,18320,18320,18321,18324,18324,18328,18332,18333,18337,19151,18338,18342,19152,18343,18347,19153,19153,18348,19077,19154,18354,18358,19155,18361,18365,18365,18366,19079,19079,18369,18373,19156,18376,18380,19157,18383,18387,19158,18388,18392,18393,18397,18400,19159,18403,18407,19160,18410,18414,18417,18420,19083,18423,18427,18429,18430,18434,18436,19161,19084,18439,18443,18444,18448,18448,18449,18453,19162,18456,18460,18463,18467,19163,19164,18468,18472,18474,18475,19086,19086,18478,18482,19165,18485,19088,19166,18488,18492,19167,18493,18497,18497,18501,19168,19169,18502,18506,18509,18513,19170,18514,18518,19089,19089,18521,19090,18524,18528,18532,18533,19091,18536,18536,18540,19092,18543,18547,18548,18548,18552,19171,18553,18557,19172,19093,18560,18564,18567,19095,18570,18570,18574,19096,19096,18579,18583,18584,18588,19097,19097,18591,19098,19173,18594,18598,19174,18601,18605,18605,18608,19100,19100,18613,18616,18619,18622,18626,18626,18629,18631,19175,18637,18641,18641,19101,18646,19176,18647,18651,18651,18655,18657,19177,18658,18662,19178,18663,18667,18668,18671,18675,18676,19102,19179,19179,18679,18683,18684,18688,19180,18689,18691,18695,19181,18696,18700,18701,19103,19182,19182,18704,18708,18708,18712,18714,18717,18721,18725,18725,18729,18733,18735,18736,19104,19183,18739,19105,18742,18746,18750,18750,18754,18758,19106,18761,19184,19185,18762,18766,18766,18770,18772,18773,18777,18778,18778,18782,18786,18786,18787,18791,18791,18792,18796,18796,18800,19186,18801,18805,18809,18810,19107,19187,19187,18813,18817,18817,18821,18825,18825,18826,18830,19188,18834,18838,18838,18842,18846,18846,18849,18852,18852,19109,18855,18855,18857,18861,18864,18868,18871,18871,18875,19189,18876,18880,18881,18881,19110,19190,18884,18887,18891,18891,18895,18899,18905,18909,18913,19112,18918,18922,18922,18926,18930,18933,18936,18940,19191,19114,18945,18948,18952,18956,19192,18957,18961,18962,19116,19193,19194,18965,19117,18968,18972,18974,18975,18979,18981,19195,18982,18986,18987,18991,18995,18997,19001,19196,19002,19005,19009,19010,19014,19018,19018,19021,19025,19197,19028,19032,19033,19037,19198,19198,19038,19118,19199,19041,19045,19200,19051,19055,17935,17937,17944,19201,19119,17949,19120,17957,17965,17965,19121,17970,17970,19058,17977,17977,17985,17987,17988,17993,18001,19122,18008,18011,18011,18017,18022,19123,18027,19202,18032,18040,18041,18043,18048,19203,19203,19061,18054,18054,18062,19204,18063,18065,18072,18072,18080,19205,18081,18087,18091,19124,18096,19206,19125,18101,19062,18105,18113,19207,19126,18118,19127,19127,18123,18128,19063,19128,19208,19129,18136,19130,19130,18141,19131,19131,18146,19132,19209,19133,18155,19134,18171,19210,18172,19135,18181,19211,18184,19137,19138,18193,19139,19139,18198,19212,19140,18206,19141,19141,18215,19068,19213,18218,18223,18223,18231,19142,19142,19069,19143,18238,19070,19071,19071,18244,18252,19144,18260,19214,19214,19073,18267,18273,18274,19145,19145,19075,18284,19146,18289,19215,19216,19147,19076,19148,18297,19149,18302,18307,19150,19217,18312,18320,18320,18324,18332,18333,19151,19218,19218,18338,19152,19153,19077,19219,19154,18358,18360,19079,18373,18375,19156,18380,19080,19220,19157,18387,19221,19158,18392,18393,18400,19081,19159,18407,18409,19160,18414,19082,19082,18417,19083,18423,18429,19222,19161,18439,18443,18443,18448,18453,19162,18460,19085,19223,18463,19163,19164,18472,18474,18474,19086,18482,19165,19088,19224,19225,19166,18492,19167,18497,19168,19226,19169,18506,18509,19170,19227,18514,19089,19090,19090,18524,18532,18536,19092,18543,18543,18548,19171,18553,19172,19228,19229,19093,18564,18570,19096,18583,18583,18584,19097,19173,18598,19099,19174,18605,19100,19100,18616,18618,18619,18626,18631,19175,18641,18646,19230,19176,18651,19177,18662,19231,19178,18667,19232,18668,18675,19233,18683,18684,19180,18689,18695,19234,19181,18700,19235,18701,19182,18708,18717,18725,18733,18735,19104,19236,19183,19105,19237,19238,18742,18750,18750,18758,19239,19240,19106,19184,19185,18766,18772,19241,18773,18778,18778,18786,18791,18791,18796,19186,18801,18809,19242,19187,18817,18825,18825,18830,19243,19188,18838,18846,18846,18852,18855,18855,18861,18863,18864,18871,19189,18876,18881,19190,18884,18891,18899,18904,18905,18913,19244,19112,18922,18922,18930,18932,19245,18933,18940,19191,18945,19115,19115,18948,18956,19192,18961,19246,19247,19194,19117,19117,18968,18974,19248,18975,18981,19195,18986,19249,19249,18987,18995,18995,18997,19196,19002,19009,19250,19010,19018,19025,19197,19032,19251,19252,19033,19198,19198,19118,19199,19199,19045,19047,19253,19200,19055,19254,17935,17944,19255,19201,17949,19256,19120,17965,17965,17970,17977,17977,17987,17988,17988,18001,19257,19258,19122,18011,18011,18022,19123,19123,19202,18028,18032,18041,18043,19203,18054,19204,18063,18072,19205,18081,18091,19259,19259,19124,19206,19260,19125,19062,19261,18105,19207,19126,19127,18128,18128,19063,19208,19129,19130,19131,19131,19132,19262,19209,18155,19064,19134,19210,18172,18172,18181,19136,19211,19137,19263,19263,19138,19139,19139,19212,19264,19265,19140,19141,19141,19068,19213,19213,18223,19142,19142,19143,18238,19071,18252,19266,19144,19214,18267,18273,19145,18284,19146,19215,19216,19267,19148,19149,18302,19150,19217,19217,18320,18332,18332,18333,19218,19218,19152,18343,19153,19219,19268,19269,19154,18360,18365,19079,18375,19156,19080,19220,19220,18387,19270,19270,19221,18392,19271,18393,19081,19159,18409,19272,19273,19160,19082,19082,19083,18423,19161,18443,18453,19274,19162,19085,19223,19163,19164,18474,18482,19087,19165,19224,19225,19225,18492,19275,19167,19168,19276,19226,18506,18508,19277,18514,19090,19090,18532,19278,18533,18536,18543,18543,19171,19279,18553,19228,19229,19229,18564,19094,18570,18583,19097,19280,19173,19099,19281,19174,19100,18619,18631,18633,19175,18646,19282,19230,18651,18657,19177,19231,19178,19178,19232,19283,19284,18668,19233,19179,18683,19180,19234,19181,19235,19285,18701,18708,18715,18717,18733,19183,19237,19286,19286,19238,18750,18750,19239,19240,19287,19185,18772,19241,18778,18791,18791,19186,19288,18801,19242,19289,18810,19187,18825,19108,19188,18846,18855,18863,18864,18864,19189,19290,18876,19190,18884,18884,18899,19111,18902,18904,18913,19244,18922,18932,19245,18940,19113,19291,19191,19115,19115,18956,19192,19192,19246,19292,19193,19247,19117,19248,18981,19293,19293,19195,19249,19249,18995,19196,19002,19250,19010,19010,19025,19027,19197,19251,19294,19252,19198,19199,19199,19047,19295,19296,19253,19055,19254,17944,19297,19255,17949,19298,17952,19256,17965,17965,17977,17988,17988,19257,18002,19258,18011,19123,18032,18043,19203,19203,19204,19299,19300,18063,19205,19259,19206,19301,19302,19260,19062,19261,19207,19303,19304,19126,18128,19129,19131,19262,19305,19209,19064,19134,18172,19136,19211,19263,19139,19139,19264,19306,19265,19141,19213,19213,19142,18238,18238,19071,19266,19144,18267,18268,18273,18284,19307,19146,19216,19076,19308,19267,19149,19217,18332,19309,19217,19309,18302,18332,19218,18343,18343,19153,19268,19310,19269,18360,19155,18365,18375,19156,19220,19270,19270,18392,19271,19271,19081,19159,19272,19273,19082,19082,18423,19222,18436,19161,18453,19274,19085,19223,19223,19164,18474,18474,19087,19311,19165,19225,19275,19312,19167,19276,19226,18508,18509,19277,19090,19278,18533,18543,19279,18553,19229,19094,18570,19097,19098,19098,19280,19099,19313,19281,19100,18619,18633,18634,19175,19282,19314,19314,19230,18657,19315,19177,19178,19284,19233,18676,19179,19180,18689,19234,19235,19316,19285,18708,18714,19317,18715,18733,19318,19183,19286,19286,18750,19240,19287,18772,19319,19320,19241,18791,18801,19289,18810,18810,18825,19243,18831,19108,18846,18855,18864,19290,18876,18884,19111,19321,18902,18913,18915,19244,18932,19245,19113,19322,19291,19115,19192,19193,19117,18974,19248,19293,19249,19249,19196,19002,19010,19027,19323,19252,19199,19295,19296,19055,19057,19254,19297,19324,17950,17952,17965,17988,18002,19325,17988,19325,17965,19326,19258,19123,18032,19203,19299,19300,19205,19327,19259,19301,19302,19302,19062,19328,19261,19303,19329,19330,19304,18128,19129,19262,19331,19332,19305,19064,19333,19134,19136,19211,19139,19306,19334,19265,19213,18238,19266,18253,19144,18268,18271,18273,19307,19146,19076,19308,19149,18343,18302,19309,18343,19309,18332,19155,18375,19156,19156,19270,19271,19271,19159,19272,19272,19082,19222,18436,18453,18455,19223,18474,19311,19165,19275,19335,19312,19276,19336,19226,18509,19227,19227,19277,19278,18533,19279,18553,18553,19094,18567,19098,19099,19313,19313,19100,18618,18619,18634,18636,19175,19314,18657,19315,19178,19283,19284,18676,19179,19179,18689,19234,19337,19285,18714,19338,19317,18733,19318,19286,19240,19339,19320,18791,18810,19243,19340,19340,18831,18846,18876,19111,19341,19321,18913,18915,18915,18932,19245,19245,19322,19342,19343,19291,19192,18962,19193,18974,18974,19248,19249,19249,19002,19010,19010,19323,19197,19252,19295,19344,19296,19057,19345,19254,19324,19346,19347,17950,17965,18002,19059,19348,19348,17965,19325,19348,19325,18002,19349,19326,19123,18032,19299,19300,19300,19327,19350,19259,19302,19328,19351,19330,18128,19129,19331,19352,19332,19064,18158,19333,19136,19353,19211,19306,18199,19334,19213,18238,19144,18271,18273,18273,19146,19076,19076,19149,18302,18302,18343,19268,18360,19155,19156,19156,19271,19272,19272,19222,18430,18436,18455,19274,19312,19336,19354,19227,19278,19355,18533,18553,18567,19098,19313,18618,18619,18636,19175,19175,18657,19315,19315,19283,19356,19284,19179,19234,19337,18714,19338,19338,18733,18735,19357,19318,19240,19339,18791,19288,18801,18810,19340,19340,18846,18855,18876,19341,19321,19321,18915,19245,19343,19192,19292,18974,19249,19010,19010,19197,19294,19252,19344,19358,19296,19345,19359,19254,19346,19255,19360,19347,17965,19059,19349,19123,19300,19350,19361,19300,19361,18032,19259,19328,19362,19363,19351,18128,19333,19353,19364,19211,18199,19067,19334,18238,18253,19076,18302,19268,18360,19156,19272,19272,18430,18436,18436,19274,19223,19335,19312,19354,19227,19355,19365,18533,18567,18570,18570,19098,18618,18619,19175,19315,19284,19234,19316,19338,18735,19236,19357,19240,19184,19366,19339,19288,19340,18855,19290,18876,19321,19245,19343,19292,19367,18962,18974,19010,19252,19358,19048,19254,19255,19298,19298,19360,17965,19059,19123,18028,19350,19368,19369,19369,18032,19361,19369,19361,19350,19259,19362,19261,19363,18128,19208,19333,19364,19211,19211,19067,19334,19334,18253,19072,19076,19268,19370,19076,19370,18273,19310,18360,19272,19272,18436,19223,19335,19354,19226,18533,18570,18618,18619,19315,19356,19337,19338,19236,19357,19184,19371,19319,19366,19288,18801,19340,19290,18876,19245,19342,19342,19343,19367,19367,18962,19010,19252,19048,19050,19298,17965,19372,19298,19372,19254,19059,18028,18032,19368,19373,19374,19374,18032,19369,19374,19369,19368,19329,19363,19208,19211,19334,19072,19370,18351,19375,19370,19375,18273,18351,19370,19268,19310,19272,19223,19365,18533,18618,18619,19356,19284,19357,19371,19287,19287,19319,19288,19290,18876,19342,19367,19010,19294,19252,19050,19376,19059,19254,19372,19372,17965,19348,19372,19348,19059,19377,18032,19374,19377,19374,19373,18032,19377,19059,19261,19329,19208,19211,19072,19378,19375,19078,19379,19375,19379,18273,19078,19375,18351,19310,19223,19311,19227,19365,18618,19284,19316,19380,19284,19380,18619,19357,19287,19288,19290,19342,19381,19290,19381,18801,19367,19294,19252,19359,19254,19059,19373,19382,19383,19383,19059,19377,19383,19377,19373,19261,19208,19384,19211,19378,19144,19385,18273,19379,19385,19379,19078,19386,19310,19311,19227,18618,18619,19236,19357,19288,19342,19367,19387,19387,18801,19381,19387,19381,19342,19367,19252,19376,19359,19059,19383,19383,19382,19388,19383,19388,19359,19261,19384,19129,19211,19144,18273,18273,19385,19386,19386,19311,19165,19227,18619,19380,19380,19316,19389,19380,19389,19227,19337,19236,19288,19367,19376,19390,19387,19390,19391,19387,19391,18801,19390,19387,19367,19296,19359,19388,19296,19388,19382,19261,19129,19352,19211,18273,19392,19211,19392,19333,19386,19165,19393,19386,19393,18273,19394,19227,19389,19394,19389,19316,19227,19394,19226,19337,19288,18801,19376,19296,19395,19376,19395,19396,19390,19396,19397,19397,18801,19391,19397,19391,19390,19396,19390,19376,19296,19382,19398,19392,19165,19399,19392,19399,19333,19392,18273,19393,19392,19393,19165,19400,19226,19394,19400,19394,19316,19226,19400,19335,19396,19398,19401,19401,18801,19397,19401,19397,19396,19398,19396,19395,19398,19395,19296,19402,19333,19399,19402,19399,19165,19333,19402,19065,19316,19337,19403,19403,19335,19400,19403,19400,19316,19404,18801,19401,19404,19401,19398,18801,19404,19337,19405,19065,19402,19405,19402,19165,19065,19405,18164,19404,18081,19406,19404,19406,19337,18081,19404,19398,19407,18164,19405,19407,19405,19165,18164,19407,18163,19406,19259,19408,19406,19408,19337,19259,19406,18081,19409,18163,19407,19409,19407,19165,18163,19409,18158,19408,19261,19410,19408,19410,19337,19261,19408,19259,19411,18158,19409,19411,19409,19165,18158,19411,19332,19352,19337,19410,19352,19410,19261,19411,19335,19412,19411,19412,19332,19335,19411,19165,19337,19352,19413,19413,19335,19403,19413,19403,19337,19413,19332,19412,19413,19412,19335,19332,19413,19352,19414,19415,19416,19416,19417,19418,19418,19419,19420,19421,19422,19423,19423,19424,19425,19426,19427,19428,19428,19429,19430,19430,19431,19432,19433,19434,19435,19435,19436,19437,19438,19414,19416,19416,19418,19420,19421,19423,19425,19426,19428,19430,19433,19435,19437,19437,19438,19416,19416,19420,19421,19421,19425,19426,19426,19430,19432,19439,19433,19437,19437,19416,19421,19421,19426,19432,19432,19439,19437,19437,19421,19432,19440,19441,19442,19442,19443,19444,19444,19445,19446,19447,19448,19449,19449,19450,19451,19451,19452,19453,19453,19454,19455,19455,19456,19457,19458,19459,19460,19461,19462,19463,19463,19464,19465,19465,19466,19467,19467,19468,19469,19470,19471,19472,19473,19474,19475,19475,19476,19477,19478,19479,19480,19481,19482,19483,19483,19484,19485,19485,19486,19487,19488,19489,19490,19491,19492,19493,19493,19494,19495,19495,19496,19497,19497,19498,19499,19500,19501,19502,19503,19504,19505,19506,19440,19442,19442,19444,19446,19447,19449,19451,19451,19453,19455,19455,19457,19507,19458,19460,19508,19509,19461,19463,19463,19465,19467,19473,19475,19477,19478,19480,19481,19481,19483,19485,19485,19487,19488,19491,19493,19495,19495,19497,19499,19500,19502,19503,19503,19505,19510,19442,19446,19447,19447,19451,19455,19507,19458,19508,19509,19463,19467,19511,19473,19477,19478,19481,19485,19491,19495,19499,19500,19503,19510,19447,19455,19507,19507,19508,19512,19512,19509,19467,19511,19477,19478,19478,19485,19488,19490,19491,19499,19513,19500,19510,19442,19447,19507,19507,19512,19467,19511,19478,19488,19488,19490,19499,19513,19510,19506,19506,19442,19507,19507,19467,19469,19511,19488,19499,19506,19507,19469,19472,19511,19499,19513,19506,19469,19470,19472,19499,19514,19513,19469,19470,19499,19515,19514,19469,19470,19470,19515,19514,19516,19517,19518,19518,19519,19520,19521,19522,19523,19524,19525,19526,19527,19528,19529,19529,19530,19531,19532,19533,19534,19535,19536,19537,19537,19538,19539,19539,19540,19541,19541,19542,19543,19543,19544,19545,19545,19546,19516,19516,19518,19520,19547,19524,19526,19527,19529,19531,19532,19534,19548,19535,19537,19539,19541,19543,19545,19545,19516,19520,19547,19526,19527,19527,19531,19549,19549,19532,19548,19548,19535,19539,19539,19541,19545,19545,19520,19521,19523,19547,19527,19527,19549,19548,19548,19539,19545,19545,19521,19523,19523,19527,19548,19548,19545,19523,19550,19551,19552,19553,19554,19555,19555,19556,19557,19557,19558,19559,19559,19560,19561,19561,19562,19563,19563,19564,19565,19566,19567,19568,19568,19569,19570,19570,19571,19572,19573,19574,19575,19576,19577,19578,19578,19579,19550,19550,19552,19580,19553,19555,19557,19557,19559,19561,19561,19563,19565,19566,19568,19570,19570,19572,19581,19573,19575,19576,19576,19578,19550,19550,19580,19553,19553,19557,19561,19561,19565,19566,19566,19570,19581,19581,19573,19576,19576,19550,19553,19553,19561,19566,19566,19581,19576,19576,19553,19566,19582,19583,19584,19584,19585,19586,19587,19588,19589,19589,19590,19591,19591,19592,19593,19593,19594,19595,19595,19596,19597,19597,19598,19599,19599,19600,19601,19601,19602,19603,19604,19605,19606,19606,19607,19608,19608,19609,19610,19610,19611,19612,19613,19614,19615,19615,19616,19617,19617,19618,19582,19582,19584,19586,19586,19587,19589,19589,19591,19593,19593,19595,19597,19597,19599,19601,19601,19603,19604,19604,19606,19608,19608,19610,19612,19613,19615,19617,19617,19582,19586,19586,19589,19593,19593,19597,19601,19601,19604,19608,19608,19612,19619,19613,19617,19586,19586,19593,19601,19601,19608,19619,19619,19613,19586,19586,19601,19619,19620,19621,19622,19622,19623,19624,19624,19625,19626,19626,19627,19628,19628,19629,19630,19631,19632,19633,19633,19634,19635,19635,19636,19637,19637,19638,19639,19640,19641,19642,19642,19643,19644,19644,19645,19646,19646,19647,19648,19649,19650,19651,19651,19652,19653,19653,19654,19655,19656,19657,19658,19659,19660,19661,19661,19662,19663,19664,19665,19666,19666,19667,19668,19668,19669,19670,19622,19624,19626,19626,19628,19630,19631,19633,19635,19635,19637,19639,19640,19642,19644,19644,19646,19648,19649,19651,19653,19656,19658,19671,19659,19661,19663,19664,19666,19668,19620,19622,19626,19626,19630,19631,19631,19635,19639,19672,19640,19644,19644,19648,19673,19649,19653,19655,19656,19671,19659,19663,19664,19668,19670,19620,19626,19626,19631,19639,19672,19644,19673,19674,19649,19655,19655,19656,19659,19659,19663,19668,19670,19626,19639,19672,19673,19674,19674,19655,19659,19659,19668,19670,19670,19639,19672,19672,19674,19659,19659,19670,19672,19675,19676,19677,19677,19678,19679,19679,19680,19681,19681,19682,19683,19683,19684,19685,19685,19686,19687,19687,19688,19689,19689,19690,19691,19691,19675,19677,19677,19679,19681,19681,19683,19685,19685,19687,19689,19689,19691,19677,19677,19681,19685,19685,19689,19677,19692,19693,19694,19694,19695,19696,19696,19697,19698,19698,19699,19700,19700,19701,19702,19703,19704,19705,19705,19692,19694,19694,19696,19698,19698,19700,19702,19703,19705,19694,19694,19698,19702,19706,19703,19694,19694,19702,19706,19707,19708,19709,19710,19711,19712,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19723,19724,19725,19725,19726,19727,19727,19728,19729,19730,19731,19732,19732,19733,19734,19734,19735,19736,19737,19738,19739,19739,19740,19741,19741,19742,19743,19744,19745,19746,19746,19747,19748,19707,19709,19749,19710,19712,19714,19715,19717,19750,19718,19720,19751,19721,19723,19725,19725,19727,19729,19730,19732,19734,19734,19736,19752,19737,19739,19741,19741,19743,19753,19744,19746,19748,19748,19707,19749,19749,19710,19714,19714,19715,19750,19750,19718,19751,19725,19729,19754,19730,19734,19752,19755,19737,19741,19756,19744,19748,19748,19749,19714,19714,19750,19751,19721,19725,19754,19730,19752,19757,19755,19741,19753,19758,19756,19748,19714,19751,19759,19721,19754,19760,19730,19757,19755,19755,19753,19761,19758,19748,19714,19714,19759,19762,19721,19760,19730,19761,19758,19714,19714,19762,19763,19721,19730,19755,19755,19761,19714,19764,19721,19755,19755,19714,19763,19763,19764,19755,19765,19766,19767,19767,19768,19769,19769,19770,19771,19772,19773,19774,19775,19776,19777,19777,19778,19765,19767,19769,19771,19772,19774,19775,19775,19777,19765,19765,19767,19771,19772,19775,19765,19765,19771,19772,19779,19780,19781,19781,19782,19783,19783,19784,19785,19785,19786,19787,19787,19788,19789,19789,19790,19791,19791,19792,19793,19793,19794,19795,19795,19796,19797,19797,19798,19799,19799,19779,19781,19781,19783,19785,19785,19787,19789,19789,19791,19793,19793,19795,19797,19797,19799,19781,19781,19785,19789,19789,19793,19797,19797,19781,19789,19800,19801,19802,19802,19803,19804,19804,19805,19806,19806,19807,19808,19809,19810,19811,19811,19812,19813,19813,19814,19815,19815,19816,19817,19818,19819,19820,19820,19821,19822,19822,19823,19824,19825,19800,19802,19802,19804,19806,19809,19811,19813,19813,19815,19817,19820,19822,19824,19824,19825,19802,19802,19806,19808,19808,19809,19813,19813,19817,19818,19818,19820,19824,19824,19802,19808,19808,19813,19818,19818,19824,19808,19826,19827,19828,19828,19829,19830,19830,19831,19832,19832,19833,19834,19834,19835,19836,19836,19837,19838,19838,19839,19840,19840,19841,19842,19843,19844,19845,19845,19846,19847,19847,19848,19849,19849,19826,19828,19828,19830,19832,19832,19834,19836,19836,19838,19840,19840,19842,19850,19851,19843,19845,19845,19847,19849,19849,19828,19832,19832,19836,19840,19851,19845,19849,19832,19840,19850,19850,19851,19849,19849,19832,19850,19852,19853,19854,19854,19855,19856,19857,19858,19859,19859,19860,19861,19861,19862,19863,19863,19864,19865,19866,19867,19868,19868,19869,19870,19870,19871,19872,19872,19873,19874,19874,19875,19876,19877,19878,19879,19879,19880,19881,19881,19852,19854,19854,19856,19857,19857,19859,19861,19861,19863,19865,19866,19868,19870,19870,19872,19874,19874,19876,19882,19883,19877,19879,19879,19881,19854,19854,19857,19861,19861,19865,19866,19866,19870,19874,19883,19879,19854,19854,19861,19866,19866,19874,19882,19883,19854,19866,19866,19882,19883,19884,19885,19886,19886,19887,19888,19888,19889,19890,19891,19892,19893,19893,19894,19895,19896,19897,19898,19899,19900,19901,19901,19902,19903,19903,19904,19905,19906,19907,19908,19908,19909,19884,19886,19888,19890,19891,19893,19895,19896,19898,19910,19899,19901,19903,19906,19908,19884,19886,19890,19891,19891,19895,19911,19899,19903,19905,19905,19906,19884,19884,19886,19891,19891,19911,19896,19910,19899,19905,19905,19884,19891,19891,19896,19910,19910,19905,19891,19912,19913,19914,19914,19915,19916,19916,19917,19918,19918,19919,19920,19920,19921,19922,19922,19923,19924,19924,19925,19926,19926,19927,19928,19928,19929,19930,19930,19931,19932,19933,19934,19935,19935,19936,19937,19912,19914,19916,19916,19918,19920,19920,19922,19924,19924,19926,19928,19928,19930,19932,19933,19935,19937,19912,19916,19920,19920,19924,19928,19928,19932,19933,19937,19912,19920,19920,19928,19933,19933,19937,19920,19938,19939,19940,19940,19941,19942,19942,19943,19944,19944,19945,19946,19946,19947,19948,19949,19950,19951,19952,19953,19954,19954,19955,19956,19956,19957,19958,19958,19959,19938,19938,19940,19942,19942,19944,19946,19946,19948,19949,19949,19951,19952,19952,19954,19956,19958,19938,19942,19942,19946,19949,19949,19952,19956,19956,19958,19942,19942,19949,19956,19960,19961,19962,19962,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19973,19974,19975,19976,19977,19978,19978,19979,19980,19980,19960,19962,19962,19964,19965,19965,19967,19968,19968,19970,19981,19971,19973,19975,19982,19976,19978,19978,19980,19962,19962,19965,19968,19981,19971,19975,19975,19982,19978,19978,19962,19968,19968,19981,19975,19975,19978,19968,19983,19984,19985,19985,19986,19987,19987,19988,19989,19989,19990,19991,19991,19992,19993,19993,19983,19985,19985,19987,19989,19989,19991,19993,19993,19985,19989,19994,19995,19996,19996,19997,19998,19998,19999,20000,20000,20001,19994,19994,19996,19998,19998,20000,19994,20002,20003,20004,20004,20005,20006,20006,20007,20008,20008,20009,20010,20010,20011,20012,20012,20013,20014,20014,20015,20016,20017,20018,20019,20019,20020,20021,20021,20002,20004,20004,20006,20008,20008,20010,20012,20012,20014,20016,20017,20019,20021,20021,20004,20008,20012,20016,20022,20023,20017,20021,20012,20022,20024,20023,20021,20008,20012,20024,20025,20025,20023,20008,20008,20012,20025,20026,20027,20028,20028,20029,20030,20030,20031,20032,20032,20033,20034,20034,20035,20036,20036,20037,20038,20038,20039,20026,20026,20028,20030,20030,20032,20034,20034,20036,20038,20038,20026,20030,20030,20034,20038,3983,3982,20040,20040,20041,20042,20042,3985,3984,3984,3983,20040,20040,20042,3984,20043,20044,20045,20045,20046,20047,20047,20048,20049,20049,20050,20051,20052,20053,20054,20054,20055,20056,20056,20057,20058,20058,20059,20060,20061,20062,20063,20064,20065,20066,20066,20067,20068,20068,20069,20043,20043,20045,20047,20047,20049,20051,20052,20054,20056,20056,20058,20060,20061,20063,20064,20064,20066,20068,20068,20043,20047,20047,20051,20052,20052,20056,20060,20061,20064,20068,20047,20052,20060,20061,20068,20047,20047,20060,20070,20070,20061,20047,20071,20072,20073,20073,20074,20075,20075,20076,20077,20077,20071,20073,20073,20075,20077,20078,20079,20080,20080,20081,20082,20082,20083,20084,20084,20085,20086,20087,20088,20089,20089,20078,20080,20080,20082,20084,20086,20087,20089,20080,20084,20086,20086,20089,20080,20090,20091,20092,20092,20093,20094,20094,20095,20096,20096,20097,20098,20099,20100,20101,20101,20102,20103,20103,20104,20090,20090,20092,20094,20094,20096,20098,20099,20101,20103,20103,20090,20094,20094,20098,20105,20105,20099,20103,20103,20094,20105,20106,20107,20108,20108,20109,20110,20110,20111,20112,20112,20113,20114,20114,20115,20116,20116,20117,20118,20106,20108,20110,20110,20112,20114,20114,20116,20118,20106,20110,20114,20114,20118,20106,20119,20120,20121,20121,20122,20123,20123,20124,20125,20125,20126,20127,20127,20128,20129,20130,20119,20121,20121,20123,20125,20125,20127,20129,20129,20130,20121,20121,20125,20129,20131,20132,20133,20133,20134,20135,20136,20137,20138,20138,20139,20140,20140,20141,20142,20142,20143,20144,20144,20131,20133,20133,20135,20136,20136,20138,20140,20140,20142,20144,20144,20133,20136,20136,20140,20144,20145,20146,20147,20147,20148,20149,20149,20150,20151,20151,20152,20153,20153,20154,20155,20156,20145,20147,20147,20149,20151,20151,20153,20155,20157,20156,20147,20147,20151,20155,20155,20157,20147,20158,20159,20160,20160,20161,20162,20162,20163,20164,20164,20165,20166,20166,20167,20168,20168,20158,20160,20160,20162,20164,20164,20166,20168,20168,20160,20164,20169,20170,20171,20171,20172,20173,20173,20174,20175,20175,20176,20177,20177,20178,20179,20179,20180,20169,20169,20171,20173,20175,20177,20179,20179,20169,20173,20173,20175,20179,20181,20182,20183,20184,20185,20186,20186,20187,20188,20188,20189,20190,20190,20181,20183,20184,20186,20188,20188,20190,20183,20183,20184,20188,20191,20192,20193,20194,20195,20196,20196,20197,20191,20191,20193,20198,20194,20196,20191,20191,20198,20194,20199,20200,20201,20201,20202,20203,20203,20204,20205,20206,20199,20201,20201,20203,20205,20205,20206,20201,20207,20208,20209,20210,20211,20212,20212,20213,20214,20214,20215,20216,20216,20217,20218,20218,20219,20220,20220,20221,20222,20210,20212,20214,20218,20220,20222,20209,20210,20214,20218,20222,20223,20207,20209,20214,20218,20223,20224,20207,20214,20216,20218,20224,20225,20225,20207,20216,20216,20218,20225,20226,20227,20228,20228,20229,20230,20231,20232,20233,20233,20234,20226,20226,20228,20230,20231,20233,20226,20226,20230,20231,20235,20236,20237,20237,20238,20239,20239,20240,20235,20235,20237,20239,20241,20242,20243,20243,20244,20245,20245,20241,20243,20246,20247,20248,20248,20249,20250,20250,20251,20246,20246,20248,20250,20252,20253,20254,20255,20256,20257,20258,20259,20260,20260,20261,20262,20262,20252,20254,20254,20255,20257,20258,20260,20262,20262,20254,20257,20257,20258,20262,20263,20264,20265,20265,20266,20267,20267,20263,20265,20268,20269,20270,20270,20271,20272,20272,20273,20274,20274,20268,20270,20270,20272,20274,20275,20276,20277,20277,20278,20279,20279,20280,20281,20281,20282,20283,20283,20284,20275,20275,20277,20279,20279,20281,20283,20283,20275,20279,20285,20286,20287,20287,20288,20289,20290,20291,20292,20292,20293,20294,20294,20295,20296,20296,20297,20285,20285,20287,20289,20290,20292,20294,20294,20296,20285,20285,20289,20298,20299,20290,20294,20285,20298,20299,20299,20294,20285,20300,20301,20302,20302,20303,20304,20304,20305,20306,20306,20300,20302,20302,20304,20306,20307,20308,20309,20310,20311,20312,20312,20313,20314,20314,20315,20316,20316,20317,20307,20307,20309,20310,20310,20312,20314,20314,20316,20307,20307,20310,20314,20318,20319,20320,20320,20321,20322,20322,20323,20324,20325,20326,20327,20327,20318,20320,20320,20322,20324,20325,20327,20320,20320,20324,20328,20328,20325,20320,20329,20330,20331,20331,20332,20333,20334,20335,20336,20336,20337,20338,20338,20339,20340,20340,20341,20342,20342,20343,20344,20329,20331,20333,20334,20336,20338,20338,20340,20342,20342,20344,20329,20329,20333,20334,20334,20338,20342,20342,20329,20334,20345,20346,20347,20347,20348,20349,20349,20350,20351,20351,20352,20353,20353,20354,20355,20356,20357,20358,20358,20359,20345,20345,20347,20349,20349,20351,20353,20353,20355,20356,20356,20358,20345,20345,20349,20353,20353,20356,20345,20360,20361,20362,20362,20363,20364,20365,20366,20367,20367,20368,20369,20369,20370,20371,20371,20372,20373,20374,20375,20376,20376,20377,20378,20378,20360,20362,20362,20364,20365,20365,20367,20369,20369,20371,20373,20374,20376,20378,20378,20362,20365,20365,20369,20373,20373,20374,20378,20378,20365,20373,20379,20380,20381,20381,20382,20383,20384,20385,20386,20386,20387,20388,20388,20389,20390,20390,20391,20392,20392,20393,20394,20394,20395,20396,20396,20397,20379,20381,20383,20384,20384,20386,20388,20388,20390,20392,20392,20394,20396,20396,20379,20381,20381,20384,20388,20388,20392,20396,20396,20381,20388,20398,20399,20400,20400,20401,20402,20402,20403,20404,20404,20405,20406,20406,20407,20408,20408,20409,20410,20411,20412,20413,20398,20400,20402,20402,20404,20406,20406,20408,20410,20411,20413,20414,20414,20398,20402,20402,20406,20410,20415,20411,20414,20402,20410,20415,20415,20414,20402,20416,20417,20418,20419,20420,20421,20421,20422,20423,20424,20425,20426,20427,20416,20418,20428,20419,20421,20421,20423,20424,20424,20426,20427,20427,20418,20428,20428,20421,20424,20424,20427,20428,20429,20430,20431,20432,20433,20434,20434,20435,20436,20436,20437,20438,20438,20439,20429,20429,20431,20432,20432,20434,20436,20436,20438,20429,20429,20432,20436,20440,20441,20442,20442,20443,20444,20444,20445,20446,20446,20447,20448,20448,20449,20450,20440,20442,20444,20444,20446,20448,20448,20450,20440,20440,20444,20448,20451,20452,20453,20453,20454,20455,20455,20456,20457,20457,20458,20459,20459,20460,20461,20461,20451,20453,20455,20457,20459,20459,20461,20453,20453,20455,20459,20462,20463,20464,20464,20465,20466,20466,20467,20468,20468,20469,20470,20470,20471,20462,20462,20464,20466,20466,20468,20470,20470,20462,20466,20472,20473,20474,20474,20475,20476,20476,20477,20478,20479,20480,20481,20481,20482,20472,20472,20474,20476,20476,20478,20479,20479,20481,20472,20472,20476,20479,20483,20484,20485,20485,20486,20487,20487,20488,20489,20489,20490,20491,20491,20492,20493,20493,20494,20495,20495,20496,20497,20483,20485,20487,20487,20489,20491,20491,20493,20495,20495,20497,20483,20483,20487,20491,20491,20495,20483,20498,20499,20500,20500,20501,20502,20502,20503,20504,20504,20505,20498,20498,20500,20502,20502,20504,20498,20506,20507,20508,20508,20509,20510,20510,20511,20512,20512,20513,20514,20514,20515,20516,20516,20517,20518,20518,20506,20508,20508,20510,20512,20512,20514,20516,20518,20508,20512,20512,20516,20518,20519,20520,20521,20521,20522,20523,20523,20524,20525,20525,20526,20527,20527,20528,20529,20530,20531,20519,20519,20521,20523,20523,20525,20527,20527,20529,20530,20530,20519,20523,20523,20527,20530,20532,20533,20534,20534,20535,20536,20536,20537,20538,20538,20539,20532,20532,20534,20536,20536,20538,20532,20540,20541,20542,20542,20543,20544,20544,20545,20546,20546,20547,20548,20548,20549,20550,20550,20540,20542,20544,20546,20548,20548,20550,20542,20542,20544,20548,20551,20552,20553,20554,20555,20556,20556,20557,20551,20551,20553,20554,20554,20556,20551,20558,20559,20560,20560,20561,20562,20562,20563,20564,20565,20566,20558,20558,20560,20562,20562,20564,20567,20567,20565,20558,20558,20562,20567,20568,20569,20570,20570,20571,20572,20572,20573,20574,20574,20575,20576,20577,20578,20579,20579,20580,20581,20581,20582,20583,20583,20584,20585,20585,20586,20587,20587,20568,20570,20570,20572,20574,20574,20576,20577,20577,20579,20581,20581,20583,20585,20585,20587,20570,20570,20574,20577,20577,20581,20585,20585,20570,20577,20588,20589,20590,20590,20591,20592,20592,20593,20594,20594,20595,20596,20596,20597,20598,20598,20599,20600,20600,20601,20602,20602,20603,20604,20604,20605,20606,20588,20590,20592,20592,20594,20596,20596,20598,20600,20600,20602,20604,20604,20606,20588,20588,20592,20596,20596,20600,20604,20604,20588,20596,20607,20608,20609,20609,20610,20611,20611,20612,20613,20614,20615,20616,20616,20617,20618,20618,20619,20620,20620,20621,20622,20623,20624,20625,20625,20626,20607,20607,20609,20611,20614,20616,20618,20618,20620,20622,20623,20625,20607,20607,20611,20613,20613,20614,20618,20618,20622,20627,20627,20623,20607,20607,20613,20618,20618,20627,20607,20628,20629,20630,20630,20631,20632,20632,20633,20634,20634,20635,20636,20636,20628,20630,20630,20632,20634,20634,20636,20630,20637,20638,20639,20639,20640,20641,20641,20642,20643,20643,20644,20637,20637,20639,20641,20641,20643,20637,20645,20646,20647,20647,20648,20649,20649,20650,20651,20651,20652,20653,20654,20655,20656,20656,20657,20658,20658,20659,20660,20660,20661,20645,20645,20647,20649,20649,20651,20653,20654,20656,20658,20658,20660,20645,20645,20649,20653,20653,20654,20658,20658,20645,20653,20662,20663,20664,20664,20665,20666,20666,20667,20668,20668,20669,20670,20670,20662,20664,20664,20666,20668,20668,20670,20664,20671,20672,20673,20673,20674,20675,20675,20676,20677,20677,20678,20679,20679,20680,20681,20682,20683,20684,20684,20685,20686,20687,20688,20689,20689,20690,20691,20691,20692,20693,20693,20694,20695,20696,20671,20673,20673,20675,20677,20677,20679,20681,20682,20684,20686,20687,20689,20691,20691,20693,20695,20696,20673,20677,20677,20681,20682,20682,20686,20687,20687,20691,20695,20696,20677,20682,20682,20687,20695,20695,20696,20682,20697,20698,20699,20700,20701,20702,20702,20703,20704,20704,20705,20706,20706,20707,20708,20708,20709,20697,20697,20699,20700,20700,20702,20704,20704,20706,20708,20708,20697,20700,20700,20704,20708,20710,20711,20712,20712,20713,20714,20714,20715,20716,20716,20717,20718,20718,20719,20720,20720,20721,20722,20722,20710,20712,20712,20714,20716,20716,20718,20720,20720,20722,20712,20712,20716,20720,20723,20724,20725,20725,20726,20727,20728,20729,20730,20730,20731,20732,20732,20733,20734,20734,20723,20725,20725,20727,20728,20728,20730,20732,20732,20734,20725,20725,20728,20732,20735,20736,20737,20737,20738,20739,20740,20741,20742,20743,20744,20745,20745,20746,20747,20747,20748,20749,20749,20750,20751,20751,20752,20753,20753,20735,20737,20737,20739,20754,20740,20742,20743,20743,20745,20747,20747,20749,20751,20751,20753,20737,20737,20754,20740,20740,20743,20747,20747,20751,20737,20737,20740,20747,20755,20756,20757,20757,20758,20759,20759,20760,20761,20761,20762,20755,20755,20757,20759,20759,20761,20755,20763,20764,20765,20765,20766,20767,20767,20768,20769,20769,20770,20763,20763,20765,20767,20767,20769,20763,20771,20772,20773,20773,20774,20775,20775,20776,20777,20777,20778,20771,20771,20773,20775,20775,20777,20771,20779,20780,20781,20781,20782,20783,20784,20785,20786,20786,20787,20788,20789,20790,20791,20792,20793,20794,20794,20795,20796,20796,20797,20798,20799,20800,20801,20802,20803,20804,20804,20805,20806,20806,20807,20808,20809,20810,20811,20811,20812,20813,20813,20779,20781,20786,20788,20789,20789,20791,20814,20792,20794,20796,20799,20801,20815,20802,20804,20806,20806,20808,20809,20809,20811,20813,20813,20781,20783,20786,20789,20814,20792,20796,20798,20798,20799,20815,20802,20806,20809,20809,20813,20783,20786,20814,20792,20792,20798,20815,20815,20802,20809,20809,20783,20784,20786,20792,20815,20815,20809,20784,20784,20786,20815,20816,20817,20818,20818,20819,20820,20821,20822,20823,20823,20824,20825,20825,20826,20827,20828,20829,20830,20831,20832,20833,20833,20816,20818,20818,20820,20834,20821,20823,20825,20825,20827,20828,20828,20830,20831,20831,20833,20818,20818,20834,20821,20821,20825,20828,20831,20818,20821,20821,20828,20831,20835,20836,20837,20837,20838,20839,20839,20840,20841,20841,20842,20843,20843,20844,20835,20835,20837,20839,20839,20841,20843,20843,20835,20839,20845,20846,20847,20847,20848,20849,20849,20850,20851,20851,20852,20853,20853,20854,20855,20845,20847,20849,20849,20851,20853,20853,20855,20845,20845,20849,20853,20856,20857,20858,20858,20859,20860,20861,20862,20863,20864,20865,20866,20866,20867,20868,20868,20869,20870,20870,20871,20872,20872,20873,20874,20874,20875,20876,20877,20878,20879,20880,20881,20882,20883,20884,20885,20885,20886,20887,20887,20856,20858,20858,20860,20861,20861,20863,20888,20864,20866,20868,20868,20870,20872,20872,20874,20876,20877,20879,20889,20880,20882,20890,20883,20885,20887,20887,20858,20861,20861,20888,20891,20891,20864,20868,20868,20872,20876,20880,20890,20883,20883,20887,20861,20861,20891,20868,20868,20876,20877,20880,20883,20861,20861,20868,20877,20889,20880,20861,20861,20877,20889,20892,20893,20894,20895,20896,20897,20897,20898,20899,20899,20900,20901,20901,20902,20903,20903,20904,20905,20905,20906,20907,20907,20908,20909,20909,20910,20911,20911,20892,20894,20895,20897,20899,20901,20903,20905,20905,20907,20909,20909,20911,20894,20912,20895,20899,20899,20901,20905,20905,20909,20894,20912,20899,20905,20905,20894,20912,20913,20914,20915,20915,20916,20917,20917,20918,20919,20919,20920,20921,20921,20922,20923,20923,20924,20925,20925,20926,20927,20927,20928,20929,20930,20913,20915,20915,20917,20919,20921,20923,20925,20925,20927,20929,20930,20915,20919,20919,20921,20925,20925,20929,20930,20930,20919,20925,20931,20932,20933,20933,20934,20935,20935,20936,20937,20937,20938,20939,20939,20940,20941,20941,20942,20943,20944,20945,20946,20947,20948,20949,20949,20950,20951,20951,20952,20953,20953,20954,20955,20955,20956,20957,20957,20958,20959,20960,20961,20962,20962,20963,20964,20964,20965,20966,20966,20967,20968,20931,20933,20935,20935,20937,20939,20939,20941,20943,20946,20947,20949,20953,20955,20957,20960,20962,20964,20964,20966,20968,20931,20935,20939,20939,20943,20944,20946,20949,20951,20953,20957,20959,20960,20964,20968,20969,20931,20939,20944,20946,20951,20953,20959,20970,20971,20960,20968,20969,20939,20944,20944,20951,20953,20953,20970,20971,20971,20968,20972,20969,20944,20953,20953,20971,20972,20973,20969,20953,20953,20972,20973,20974,20975,20976,20976,20977,20978,20978,20979,20980,20980,20981,20982,20983,20984,20985,20985,20986,20987,20987,20988,20989,20990,20991,20992,20992,20993,20994,20994,20995,20996,20996,20997,20998,20998,20999,21000,21000,20974,20976,20976,20978,20980,20982,20983,20985,20985,20987,20989,20990,20992,20994,20994,20996,20998,20998,21000,20976,20976,20980,20982,20982,20985,20989,20989,20990,20994,20994,20998,20976,20976,20982,20989,20989,20994,20976,21001,21002,21003,21003,21004,21005,21005,21006,21007,21008,21009,21010,21010,21011,21012,21012,21013,21014,21014,21015,21016,21016,21017,21018,21018,21019,21020,21021,21022,21023,21023,21001,21003,21003,21005,21007,21008,21010,21012,21012,21014,21016,21016,21018,21020,21021,21023,21003,21003,21007,21008,21008,21012,21016,21016,21020,21021,21021,21003,21008,21008,21016,21021,21024,21025,21026,21026,21027,21028,21028,21029,21030,21030,21024,21026,21026,21028,21030,21031,21032,21033,21033,21034,21035,21035,21036,21037,21037,21038,21039,21039,21040,21041,21041,21042,21031,21031,21033,21035,21035,21037,21039,21039,21041,21031,21031,21035,21039,21043,21044,21045,21045,21046,21047,21047,21048,21049,21049,21050,21051,21051,21052,21053,21053,21043,21045,21045,21047,21049,21049,21051,21053,21053,21045,21049,21054,21055,21056,21057,21058,21059,21059,21060,21061,21061,21062,21063,21063,21064,21065,21065,21066,21067,21067,21068,21069,21069,21070,21071,21071,21072,21054,21056,21057,21059,21059,21061,21063,21063,21065,21067,21067,21069,21071,21071,21054,21056,21056,21059,21063,21063,21067,21071,21071,21056,21063,21073,21074,21075,21076,21077,21078,21078,21079,21080,21080,21081,21082,21082,21083,21084,21084,21085,21086,21086,21087,21088,21088,21089,21090,21090,21091,21092,21093,21073,21075,21076,21078,21080,21080,21082,21084,21084,21086,21088,21088,21090,21092,21093,21075,21094,21095,21076,21080,21080,21084,21088,21088,21092,21093,21093,21094,21096,21095,21080,21088,21088,21093,21096,21097,21095,21088,21088,21096,21097,21098,21099,21100,21100,21101,21102,21102,21103,21104,21104,21105,21106,21107,21108,21109,21109,21110,21111,21111,21112,21113,21113,21114,21115,21116,21117,21118,21098,21100,21102,21102,21104,21106,21107,21109,21111,21111,21113,21115,21116,21118,21098,21098,21102,21106,21106,21107,21111,21111,21115,21119,21116,21098,21106,21106,21111,21119,21120,21116,21106,21106,21119,21120,21121,21122,21123,21123,21124,21125,21125,21126,21127,21127,21128,21129,21129,21130,21131,21131,21132,21133,21133,21121,21123,21123,21125,21127,21127,21129,21131,21131,21133,21123,21123,21127,21131,21134,21135,21136,21136,21137,21138,21138,21139,21140,21140,21141,21142,21142,21143,21144,21145,21146,21147,21147,21134,21136,21136,21138,21140,21140,21142,21144,21145,21147,21136,21140,21144,21148,21149,21145,21136,21140,21148,21149,21149,21136,21140,21150,21151,21152,21152,21153,21154,21154,21155,21156,21156,21157,21158,21158,21159,21160,21160,21161,21150,21150,21152,21154,21154,21156,21158,21158,21160,21150,21150,21154,21158,21162,21163,21164,21164,21165,21166,21166,21167,21168,21168,21169,21170,21170,21171,21172,21172,21173,21174,21174,21175,21176,21176,21177,21178,21178,21179,21180,21181,21182,21183,21183,21184,21185,21185,21162,21164,21164,21166,21168,21170,21172,21174,21174,21176,21178,21181,21183,21185,21185,21164,21168,21170,21174,21178,21180,21181,21185,21185,21168,21170,21170,21178,21180,21180,21185,21170,21186,21187,21188,21188,21189,21190,21190,21191,21192,21192,21193,21194,21194,21195,21196,21197,21198,21199,21199,21200,21201,21201,21202,21203,21204,21205,21206,21206,21207,21208,21208,21186,21188,21190,21192,21194,21194,21196,21209,21197,21199,21201,21204,21206,21208,21208,21188,21190,21190,21194,21209,21209,21197,21201,21210,21204,21208,21208,21190,21209,21209,21201,21203,21210,21208,21209,21209,21203,21210,21211,21212,21213,21213,21214,21215,21215,21216,21217,21217,21218,21219,21219,21220,21221,21221,21222,21211,21211,21213,21215,21215,21217,21219,21219,21221,21211,21211,21215,21219,21223,21224,21225,21226,21227,21228,21228,21229,21230,21230,21231,21232,21232,21233,21234,21234,21235,21223,21223,21225,21236,21236,21226,21228,21228,21230,21232,21232,21234,21223,21223,21236,21228,21228,21232,21223,21237,21238,21239,21239,21240,21241,21241,21242,21243,21243,21244,21245,21246,21247,21248,21248,21249,21250,21250,21251,21252,21253,21254,21255,21255,21256,21257,21257,21258,21259,21259,21260,21261,21261,21237,21239,21239,21241,21243,21243,21245,21246,21246,21248,21250,21250,21252,21262,21253,21255,21257,21257,21259,21261,21243,21246,21250,21263,21253,21257,21257,21261,21239,21243,21250,21262,21264,21263,21257,21243,21262,21265,21266,21264,21257,21239,21243,21265,21266,21257,21239,21239,21265,21267,21267,21266,21239,21268,21269,21270,21271,21272,21273,21273,21274,21275,21275,21276,21277,21277,21278,21279,21280,21281,21282,21283,21284,21268,21268,21270,21285,21285,21271,21273,21273,21275,21277,21277,21279,21286,21280,21282,21283,21283,21268,21285,21285,21273,21277,21280,21283,21285,21285,21277,21286,21287,21280,21285,21285,21286,21287,21288,21289,21290,21290,21291,21292,21292,21293,21294,21294,21295,21296,21297,21298,21299,21299,21300,21301,21301,21288,21290,21290,21292,21294,21294,21296,21302,21297,21299,21301,21301,21290,21294,21294,21302,21297,21297,21301,21294,21303,21304,21305,21305,21306,21307,21307,21308,21309,21309,21310,21311,21311,21312,21313,21313,21314,21315,21315,21316,21317,21317,21303,21305,21305,21307,21309,21309,21311,21313,21313,21315,21317,21317,21305,21309,21309,21313,21317,21318,21319,21320,21320,21321,21322,21323,21324,21325,21325,21326,21327,21328,21329,21330,21330,21331,21332,21332,21333,21318,21318,21320,21322,21323,21325,21327,21328,21330,21332,21332,21318,21322,21323,21327,21328,21328,21332,21322,21322,21323,21328,21334,21335,21336,21336,21337,21338,21338,21339,21340,21340,21341,21342,21342,21343,21334,21334,21336,21338,21338,21340,21342,21342,21334,21338,21344,21345,21346,21347,21348,21349,21349,21350,21351,21351,21344,21346,21346,21347,21349,21349,21351,21346,21352,21353,21354,21354,21355,21356,21356,21357,21352,21352,21354,21356,21358,21359,21360,21360,21361,21362,21362,21363,21364,21364,21365,21358,21358,21360,21362,21362,21364,21358,915,914,913,913,912,911,911,910,909,909,908,907,906,905,904,21366,21367,21368,21368,21369,21370,21370,21371,21372,21373,21374,21375,21375,21376,21377,21377,21378,21379,21379,21380,21381,21382,1465,1464,1464,1765,1463,1462,1461,1460,1458,1457,1764,1764,1845,1815,913,911,909,909,907,906,906,904,21383,21366,21368,21370,21384,21373,21375,21377,21379,21381,21382,1464,1463,1458,1764,1815,913,909,906,906,21383,21385,21366,21370,21372,21375,21377,21381,21382,1463,1462,1458,1815,915,915,913,906,906,21385,21366,21366,21372,21384,21384,21375,21381,21386,21382,1462,1459,1458,915,915,906,21366,21366,21384,21381,21386,1462,1460,1459,915,21366,21366,21381,21386,1460,1459,21366,21366,21386,1460,21387,21388,21389,21389,21390,21391,21392,21393,21387,21387,21389,21391,21391,21392,21387,21394,21395,21396,21396,21397,21398,21399,21400,21401,21401,21402,21394,21394,21396,21398,21398,21399,21401,21401,21394,21398,21403,21404,21405,21405,21406,21407,21407,21408,21409,21410,21411,21412,21413,21414,21415,21415,21416,21417,21418,21419,21420,21421,21422,21423,21424,21425,21426,21426,21427,21428,21428,21429,21430,21431,21432,21433,21433,21434,21435,21436,21437,21438,21438,21439,21440,21441,21442,21443,21444,1,0,101,100,111,98,97,126,126,130,96,91,90,116,116,120,89,86,85,115,115,110,84,82,81,21445,21446,21447,21448,21449,21450,21451,21452,21453,21454,21455,21456,21457,21458,21459,21460,21460,21461,21462,21463,21464,21465,21465,21466,21467,21467,21468,21469,21469,21470,21471,21471,21472,21473,21474,21475,21476,21476,21477,21478,21478,21479,21480,21480,21481,21482,21483,21484,21485,21485,21486,21487,21487,21488,21489,21490,21491,21492,21493,21494,21495,21495,21496,21497,21498,21499,21500,21500,21501,21502,21502,21503,21504,21505,21506,21507,21507,21508,21509,21509,21510,21511,21512,21513,21514,21515,21516,21517,21517,21518,21519,21520,21521,21522,21523,21524,21525,21525,21526,21527,21527,21528,21529,21530,21531,21532,21533,21534,21535,21535,21536,21537,21538,21539,21540,21540,21541,21542,21543,21544,21545,21546,21403,21405,21405,21407,21409,21410,21412,21413,21413,21415,21417,21418,21420,21421,21421,21423,21547,21424,21426,21428,21436,21438,21440,21441,21443,21444,21444,0,104,102,101,111,98,126,96,91,116,89,86,115,84,83,82,21445,21446,21448,21449,21449,21451,21548,21454,21455,21457,21458,21460,21462,21467,21469,21471,21474,21476,21478,21480,21482,21549,21483,21485,21487,21487,21489,21490,21490,21492,21550,21495,21497,21551,21498,21500,21502,21502,21504,21552,21552,21505,21507,21507,21509,21511,21512,21514,21553,21517,21519,21520,21523,21525,21527,21527,21529,21530,21530,21532,21554,21533,21535,21537,21538,21540,21542,21555,21543,21545,21545,21546,21405,21405,21409,21556,21556,21410,21413,21413,21417,21418,21424,21428,21430,21435,21436,21440,21557,21441,21444,21444,104,103,102,111,99,99,98,96,92,91,89,87,86,84,83,21445,21558,21449,21548,21452,21454,21457,21458,21458,21462,21463,21465,21467,21471,21473,21474,21478,21483,21487,21490,21493,21495,21551,21498,21502,21552,21552,21507,21511,21512,21553,21559,21515,21517,21520,21560,21523,21527,21527,21530,21554,21561,21533,21537,21562,21538,21542,21545,21405,21556,21556,21413,21418,21424,21430,21563,21435,21440,21557,21557,21444,103,102,99,96,92,89,88,87,84,83,21449,21452,21454,21454,21458,21463,21465,21471,21473,21473,21478,21480,21564,21483,21490,21498,21552,21511,21515,21520,21522,21522,21560,21527,21527,21554,21565,21566,21561,21537,21567,21562,21542,21555,21545,21556,21556,21418,21421,21424,21563,21431,21435,21557,103,103,102,96,92,88,87,87,83,21558,21454,21463,21465,21465,21473,21480,21551,21498,21511,21559,21515,21522,21522,21527,21565,21568,21566,21537,21567,21542,21555,21556,21421,21547,21424,21431,21433,21435,103,96,92,87,21558,21454,21465,21480,21493,21551,21511,21559,21522,21565,21568,21537,21567,21555,21556,21569,21555,21569,21567,21556,21547,21570,21571,21424,21433,21435,96,95,92,21558,21572,21449,21454,21480,21493,21511,21512,21559,21565,21568,21433,21435,95,92,21572,21446,21449,21480,21549,21559,21568,21567,21571,21433,95,92,21446,21449,21449,21549,21573,21512,21559,21567,21571,95,94,93,92,21449,21449,21573,21574,21512,21567,21569,21512,21569,21556,21571,94,93,21449,21574,21575,21449,21575,93,21493,21512,21556,21571,93,21575,21571,21575,21574,21576,21493,21556,21577,21571,21574,21578,21576,21556,21570,21577,21574,21579,21578,21556,21570,21574,21564,21550,21579,21556,21570,21564,21490,21490,21550,21556,21556,21570,21490,21580,21581,21582,21582,21583,21584,21584,21585,21586,21587,21588,21589,21580,21582,21584,21584,21586,21587,21587,21589,21580,21580,21584,21587,21590,21591,21592,21593,21594,21595,21595,21596,21597,21597,21598,21599,21599,21600,21601,21601,21590,21592,21593,21595,21597,21597,21599,21601,21601,21592,21602,21602,21593,21597,21597,21601,21602,21603,21604,21605,21605,21606,21607,21607,21603,21605,21608,21609,21610,21610,21611,21612,21612,21608,21610,21613,21614,21615,21615,21616,21617,21618,21619,21620,21620,21621,21622,21623,21624,21625,21625,21626,21627,21628,21629,21630,21630,21631,21632,21633,21634,21635,21635,21636,21637,21637,21638,21639,21640,21641,21642,21643,21644,21645,21645,21646,21647,21647,21648,21649,21650,21651,21652,21653,21654,21655,21655,21656,21657,21657,21658,21659,21659,21660,21661,21662,21663,21664,21664,21665,21666,21666,21667,21668,21669,21670,21671,21672,21673,21674,21674,21675,21676,21676,21677,21678,21678,21679,21680,21681,21682,21683,21683,21684,21685,21686,21687,21688,21688,21689,21690,21690,21691,21692,21692,21693,21694,21694,21695,21696,21697,21698,21699,21699,21700,21701,21701,21702,21703,21703,21704,21705,21706,21707,21708,21709,21710,21711,21711,21712,21713,21713,21714,21715,21715,21716,21717,21717,21718,21719,21720,21721,21722,21722,21723,21724,21724,21725,21726,21727,21728,21729,21730,21731,21732,21733,21734,21735,21736,21737,21738,21738,21739,21740,21740,21741,21742,21742,21743,21744,21745,21746,21747,21747,21748,21749,21749,21750,21751,21751,21752,21753,21754,21755,21756,21756,21757,21758,21758,21759,21760,21761,21762,21763,21764,21765,21766,21766,21767,21768,21768,21769,21770,21770,21771,21772,21772,21773,21774,21774,21775,21776,21777,21778,21779,21779,21780,21781,21782,21783,21784,21785,21786,21787,21787,21788,21789,21789,21790,21791,21792,21793,21794,21794,21795,21796,21797,21798,21799,21799,21800,21801,21801,21802,21803,21804,21805,21806,21806,21807,21808,21809,21810,21811,21811,21812,21813,21813,21814,21815,21815,21816,21817,21817,21818,21819,21820,21821,21822,21822,21823,21824,21824,21825,21826,21827,21828,21829,21829,21830,21831,21831,21832,21833,21834,21835,21836,21836,21837,21838,21839,21840,21841,21841,21842,21843,21843,21844,21845,21845,21846,21847,21848,21849,21850,21850,21851,21852,21852,21853,21854,21855,21856,21857,21858,21859,21860,21860,21861,21862,21862,21863,21864,21865,21866,21867,21867,21868,21869,21869,21870,21871,21871,21872,21873,21874,21875,21876,21876,21877,21878,21878,21879,21880,21880,21881,21882,21883,21884,21885,21885,21886,21887,21887,21888,21889,21889,21890,21891,21892,21893,21894,21894,21895,21896,21896,21897,21898,21899,21900,21901,21901,21902,21903,21903,21904,21905,21906,21907,21908,21908,21909,21910,21911,21912,21913,21913,21914,21915,21916,21917,21918,21918,21919,21920,21921,21922,21923,21923,21924,21925,21926,21927,21928,21929,21930,21931,21932,21933,21934,21934,21935,21936,21937,21938,21939,21940,21941,21942,21943,21944,21945,21946,21947,21948,21948,21949,21950,21951,21952,21953,21953,21954,21955,21955,21956,21957,21958,21959,21960,21960,21961,21962,21962,21963,21964,21965,21966,21967,21968,21969,21970,21971,21972,21973,21973,21974,21975,21975,21976,21977,21978,21979,21980,21981,21982,21983,21983,21984,21985,21985,21986,21987,21987,21988,21989,21989,21990,21991,21991,21992,21993,21994,21995,21996,21997,21998,21999,21999,22000,22001,22001,22002,22003,22004,22005,22006,22006,22007,22008,22008,22009,22010,22011,22012,22013,22014,22015,22016,22016,22017,22018,22018,22019,22020,22021,22022,22023,22023,22024,22025,22025,22026,22027,22027,22028,22029,22030,22031,22032,22033,22034,22035,22035,22036,22037,22037,22038,22039,22040,22041,22042,22043,22044,22045,22045,22046,22047,22048,22049,22050,22051,22052,22053,22053,22054,22055,22055,22056,22057,22058,22059,22060,22061,22062,22063,22064,22065,22066,22066,22067,22068,22068,22069,22070,22071,22072,22073,22074,22075,22076,22077,22078,22079,22079,22080,22081,22081,22082,22083,22084,22085,22086,22086,22087,22088,22088,22089,22090,22091,22092,22093,22094,22095,22096,22096,22097,22098,22099,22100,22101,22101,22102,22103,22103,22104,22105,22105,22106,22107,22107,22108,22109,22109,22110,22111,22112,22113,22114,22115,22116,22117,22118,22119,22120,22121,22122,22123,22124,22125,22126,22127,22128,22129,22129,22130,22131,22131,22132,22133,22134,22135,22136,22137,22138,22139,22140,22141,22142,22142,22143,22144,22145,22146,22147,22147,22148,22149,22150,22151,22152,22152,22153,22154,22155,22156,22157,22157,22158,22159,22159,22160,22161,22161,22162,22163,22164,22165,22166,22167,22168,22169,22169,22170,22171,22172,22173,22174,22175,22176,22177,22177,22178,22179,22180,22181,22182,22183,22184,22185,22185,22186,22187,22188,22189,22190,22191,22192,22193,22194,22195,22196,22196,22197,22198,22199,22200,22201,22202,22203,22204,22204,22205,22206,22207,22208,22209,22210,22211,22212,22213,22214,22215,22216,22217,22218,22219,22220,22221,22221,22222,22223,22223,22224,22225,22225,22226,22227,22228,22229,22230,22230,22231,22232,22233,22234,22235,22236,22237,22238,22239,22240,22241,22242,22243,22244,22245,22246,22247,22247,22248,22249,22250,22251,22252,22252,22253,22254,22255,22256,22257,22257,22258,22259,22260,22261,22262,22262,22263,22264,22265,22266,22267,22267,22268,22269,22270,22271,22272,22272,22273,22274,22274,22275,22276,22276,22277,22278,22278,22279,22280,22281,22282,22283,22283,22284,22285,22285,22286,22287,22287,22288,22289,22290,22291,22292,22292,22293,22294,22294,22295,22296,22297,22298,22299,22300,22301,22302,22302,22303,22304,22304,22305,22306,22307,22308,22309,22309,22310,22311,22312,22313,22314,22314,22315,22316,22316,22317,22318,22318,22319,22320,22320,22321,22322,22323,22324,22325,22325,22326,22327,22328,22329,22330,22331,22332,22333,22334,22335,22336,22337,22338,22339,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22350,22351,22352,22353,22354,22355,22355,22356,22357,22357,22358,22359,22360,22361,22362,22362,22363,22364,22364,22365,22366,22367,22368,22369,22370,22371,22372,22372,22373,22374,22374,22375,22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22388,22389,22390,22390,22391,22392,22393,22394,22395,22395,22396,22397,22397,22398,22399,22399,22400,22401,22402,22403,22404,22405,22406,22407,22408,22409,22410,22411,22412,22413,22413,22414,22415,22416,22417,22418,22418,22419,22420,22420,22421,22422,22423,22424,22425,22425,22426,22427,22428,22429,22430,22430,22431,22432,22432,22433,22434,22435,22436,22437,22437,22438,22439,22440,22441,22442,22443,22444,22445,22445,22446,22447,22447,22448,22449,22449,22450,22451,22452,22453,22454,22455,22456,22457,22458,22459,22460,22460,22461,22462,22462,22463,22464,22465,22466,22467,22468,22469,22470,22471,22472,22473,22473,22474,22475,22476,22477,22478,22479,22480,22481,22482,22483,22484,22484,22485,22486,22486,22487,22488,22489,22490,22491,22491,22492,22493,22494,22495,22496,22496,22497,22498,22499,22500,22501,22502,22503,22504,22505,22506,22507,22508,22509,22510,22510,22511,22512,22513,22514,22515,22516,22517,22518,22518,22519,22520,22520,22521,22522,22523,22524,22525,22525,22526,22527,22527,22528,22529,22529,22530,22531,22531,22532,22533,22533,22534,22535,22536,22537,22538,22539,22540,22541,22541,22542,22543,22543,22544,22545,22545,22546,22547,22547,22548,22549,22550,22551,22552,22553,22554,22555,22555,22556,22557,22558,22559,22560,22561,22562,22563,22564,22565,22566,22567,22568,22569,22569,22570,22571,22572,22573,22574,22574,22575,22576,22576,22577,22578,22578,22579,22580,22580,22581,22582,22582,22583,22584,22584,22585,22586,22586,22587,22588,22588,22589,22590,22591,22592,22593,22593,22594,22595,22595,22596,22597,22597,22598,22599,22600,22601,22602,22603,22604,22605,22606,22607,22608,22608,22609,22610,22610,22611,22612,22613,22614,22615,22615,22616,22617,22617,22618,22619,22619,22620,22621,22622,22623,22624,22624,22625,22626,22627,22628,22629,22629,22630,22631,22631,22632,22633,22633,22634,22635,22636,22637,22638,22638,22639,22640,22641,22642,22643,22643,22644,22645,22645,22646,22647,22647,22648,22649,22650,22651,22652,22653,22654,22655,22656,22657,22658,22659,22660,22661,22661,22662,22663,22664,22665,22666,22667,22668,22669,22669,22670,22671,22672,22673,22674,22674,22675,22676,22677,22678,22679,22680,22681,22682,22682,22683,22684,22685,22686,22687,22687,22688,22689,22689,22690,22691,22692,22693,22694,22694,22695,22696,22697,22698,22699,22699,22700,22701,22701,22702,22703,22703,22704,22705,22706,22707,22708,22708,22709,22710,22711,22712,22713,22713,22714,22715,22716,22717,22718,22718,22719,22720,22720,22721,22722,22722,22723,22724,22725,22726,22727,22728,22729,22730,22730,22731,22732,22732,22733,22734,22734,22735,22736,22737,22738,22739,22739,22740,22741,22741,22742,22743,22743,22744,22745,22745,22746,22747,22747,22748,22749,22750,22751,22752,22753,22754,22755,22756,22757,22758,22758,22759,22760,22760,22761,22762,22763,22764,22765,22766,22767,22768,22769,22770,22771,22771,22772,22773,22773,22774,22775,22775,22776,22777,22777,22778,22779,22779,22780,22781,22781,22782,22783,22783,22784,22785,22785,22786,22787,22788,22789,22790,22790,22791,22792,22793,22794,22795,22796,22797,22798,22798,22799,22800,22801,22802,22803,22804,22805,22806,22807,22808,22809,22810,22811,22812,22813,22814,22815,22815,22816,22817,22817,22818,22819,22819,22820,22821,22822,22823,22824,22825,22826,22827,22827,22828,22829,22830,22831,22832,22832,22833,22834,22834,22835,22836,22837,22838,22839,22839,22840,22841,22841,22842,22843,22844,22845,22846,22847,22848,22849,22849,22850,22851,22851,22852,22853,22853,22854,22855,22855,22856,22857,22858,22859,22860,22861,22862,22863,22864,22865,22866,22866,22867,22868,22868,22869,22870,22871,22872,22873,22874,22875,22876,22876,22877,22878,22879,22880,22881,22882,22883,22884,22885,22886,22887,22887,22888,22889,22889,22890,22891,22892,22893,22894,22894,22895,22896,22896,22897,22898,22899,22900,22901,22902,22903,22904,22904,22905,22906,22907,22908,22909,22909,22910,22911,22912,22913,22914,22914,22915,22916,22917,22918,22919,22919,22920,22921,22921,22922,22923,22924,22925,22926,22926,22927,22928,22928,22929,22930,22930,22931,22932,22932,22933,22934,22934,22935,22936,22936,22937,22938,22938,22939,22940,22941,22942,22943,22943,22944,22945,22945,22946,22947,22947,22948,22949,22949,22950,22951,22952,22953,22954,22954,22955,22956,22957,22958,22959,22960,22961,22962,22962,22963,22964,22964,22965,22966,22966,22967,22968,22969,22970,22971,22971,22972,22973,22974,22975,22976,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22987,22988,22989,22990,22991,22992,22993,22994,22995,22995,22996,22997,22997,22998,22999,22999,23000,23001,23001,23002,23003,23003,23004,23005,23006,23007,23008,23009,23010,23011,23011,23012,23013,23013,23014,23015,23015,23016,23017,23017,23018,23019,23019,23020,23021,23022,23023,23024,23025,23026,23027,23028,23029,23030,23030,23031,23032,23032,23033,23034,23035,23036,23037,23037,23038,23039,23039,23040,23041,23041,23042,23043,23044,23045,23046,23046,23047,23048,23048,23049,23050,23051,23052,23053,23053,23054,23055,23056,23057,23058,23058,23059,23060,23060,23061,23062,23063,23064,23065,23066,23067,23068,23068,23069,23070,23070,23071,23072,23073,23074,23075,23075,23076,23077,23078,23079,23080,23080,23081,23082,23082,23083,23084,23084,23085,23086,23086,23087,23088,23089,23090,23091,23092,23093,23094,23094,23095,23096,23096,23097,23098,23099,23100,23101,23101,23102,23103,23104,23105,23106,23106,23107,23108,23109,23110,23111,23112,23113,23114,23115,23116,23117,23117,23118,23119,23119,23120,23121,23121,23122,23123,23123,23124,23125,23125,23126,23127,23127,23128,23129,23129,23130,23131,23131,23132,23133,23134,23135,23136,23136,23137,23138,23138,23139,23140,23141,23142,23143,23143,23144,23145,23145,23146,23147,23147,23148,23149,23149,23150,23151,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23161,23162,23162,23163,23164,23164,23165,23166,23167,23168,23169,23169,23170,23171,23171,23172,23173,23173,23174,23175,23175,23176,23177,23178,21613,21615,21615,21617,23179,21618,21620,21622,21623,21625,21627,21628,21630,21632,21633,21635,21637,21637,21639,23180,21643,21645,21647,21647,21649,23181,21653,21655,21657,21659,21661,21662,21662,21664,21666,21666,21668,23182,21672,21674,21676,21676,21678,21680,23183,21681,21683,21683,21685,23184,21686,21688,21690,21690,21692,21694,21699,21701,21703,21703,21705,23185,23186,21709,21711,21711,21713,21715,21715,21717,21719,21720,21722,21724,21727,21729,23187,21730,21732,23188,21733,21735,21736,21736,21738,21740,21740,21742,21744,21745,21747,21749,21749,21751,21753,21754,21756,21758,21758,21760,21761,21764,21766,21768,21768,21770,21772,21772,21774,21776,21777,21779,21781,21782,21784,23189,21785,21787,21789,21792,21794,21796,21797,21799,21801,21804,21806,21808,21809,21811,21813,21813,21815,21817,21820,21822,21824,21824,21826,23190,21827,21829,21831,21834,21836,21838,21839,21841,21843,21843,21845,21847,21848,21850,21852,21852,21854,23191,23192,21855,21857,21858,21860,21862,21862,21864,21865,21865,21867,21869,21869,21871,21873,21874,21876,21878,21878,21880,21882,23193,21883,21885,21885,21887,21889,21892,21894,21896,21896,21898,21899,21899,21901,21903,21903,21905,23194,21906,21908,21910,21911,21913,21915,21916,21918,21920,21921,21923,21925,21926,21928,23195,21937,21939,23196,21940,21942,23197,23198,21943,21945,21946,21948,21950,21951,21953,21955,21958,21960,21962,21962,21964,23199,23200,21968,21970,23201,21971,21973,21973,21975,21977,23202,21978,21980,21981,21983,21985,21985,21987,21989,21989,21991,21993,21994,21996,23203,21999,22001,22003,22004,22006,22008,23204,22011,22013,22014,22016,22018,22018,22020,22021,22021,22023,22025,22025,22027,22029,23205,22030,22032,22033,22035,22037,22040,22042,23206,22043,22045,22047,22048,22050,23207,23208,22051,22053,22053,22055,22057,22058,22060,23209,22061,22063,23210,22064,22066,22068,22071,22073,23211,22077,22079,22081,22084,22086,22088,22094,22096,22098,22099,22101,22103,22103,22105,22107,22107,22109,22111,22112,22114,22115,22115,22117,23212,23213,22118,22120,22121,22123,23214,23215,22124,22126,22129,22131,22133,23216,22137,22139,22139,22140,22142,22145,22147,22149,22150,22152,22154,22155,22157,22159,22159,22161,22163,22164,22166,23217,22167,22169,22171,22172,22174,23218,23218,22175,22177,22183,22185,22187,23219,22188,22190,22191,22193,23220,22194,22196,22198,22199,22201,22202,22202,22204,22206,22207,22209,23221,22210,22212,22213,22213,22215,23222,23222,22216,22218,22219,22221,22223,22223,22225,22227,22233,22235,23223,22236,22238,22239,22239,22241,22242,22242,22244,22245,22245,22247,22249,22250,22252,22254,22255,22257,22259,22260,22262,22264,22264,22265,22267,22270,22272,22274,22274,22276,22278,22278,22280,23224,23225,22281,22283,22283,22285,22287,23226,22290,22292,22292,22294,22296,22300,22302,22304,22304,22306,22307,22307,22309,22311,22312,22314,22316,22318,22320,22322,22323,22325,22327,22328,22330,22331,22331,22333,22334,22334,22336,22337,22337,22339,22341,22344,22345,22347,22348,22350,22352,23227,22353,22355,22355,22357,22359,22360,22362,22364,22364,22366,23228,22367,22369,22370,22370,22372,22374,22374,22376,23229,23229,22377,22379,22380,22382,22383,22386,22388,22390,23230,22393,22395,22395,22397,22399,22399,22401,22402,22405,22407,23231,23231,22408,22410,22411,22413,22415,22416,22418,22420,23232,22423,22425,23233,22428,22430,22430,22432,22434,22435,22437,22439,22439,22440,22442,22443,22445,22447,22447,22449,22451,23234,22452,22454,22454,22455,22457,22457,22458,22460,22460,22462,22464,22465,22467,22468,22468,22470,22471,22473,22475,23235,23236,22476,22478,22478,22479,22481,22482,22484,22486,22486,22488,23237,22491,22493,22494,22494,22496,22498,23238,22499,22501,22501,22502,22504,22504,22505,22507,22510,22512,22513,22513,22515,22516,22516,22518,22520,23239,22523,22525,22527,22529,22531,22533,22535,23240,22541,22543,22545,22545,22547,22549,22550,22552,22553,22553,22555,22557,23241,22558,22560,23242,22561,22563,22567,22569,22571,22571,22572,22574,22574,22576,22578,22582,22584,22586,22586,22588,22590,22591,22593,22595,22595,22597,22599,23243,22603,22605,22606,22608,22610,23244,22613,22615,22617,22619,22621,22622,22624,22626,22629,22631,22633,22636,22638,22640,22641,22643,22645,22645,22647,22649,22650,22652,23245,22653,22655,22656,22659,22661,22663,22664,22666,23246,22667,22669,22671,22672,22674,22676,22677,22679,22680,22680,22682,22684,22685,22687,22689,22689,22691,23247,22694,22696,23248,22699,22701,22703,22703,22705,23249,22706,22708,22710,22711,22713,22715,22716,22718,22720,22720,22722,22724,22725,22727,23250,22728,22730,22732,22732,22734,22736,22737,22739,22741,22741,22743,22745,22745,22747,22749,22753,22755,23251,22756,22758,22760,22760,22762,22763,22763,22765,22766,22769,22771,22773,22773,22775,22777,22777,22779,22781,22783,22785,22787,22788,22790,22792,22796,22798,22800,22801,22803,22804,22804,22806,22807,22807,22809,22810,22810,22812,23252,22813,22815,22817,22817,22819,22821,22822,22824,23253,22825,22827,22829,22830,22832,22834,22837,22839,22841,22841,22843,22844,22844,22846,23254,22847,22849,22851,22851,22853,22855,22858,22860,22861,22861,22863,23255,22864,22866,22868,22871,22873,22874,22874,22876,22878,23256,22879,22881,22885,22887,22889,22889,22891,22892,22892,22894,22896,22896,22898,23257,22899,22901,22902,22902,22904,22906,22907,22909,22911,22912,22914,22916,23258,22917,22919,22919,22921,22923,22924,22926,22928,22928,22930,22932,22934,22936,22938,22941,22943,22945,22945,22947,22949,22952,22954,22956,22956,22957,22959,23259,22960,22962,22962,22964,22966,22966,22968,23260,22969,22971,22973,22974,22976,22978,23261,22979,22981,22982,22984,23262,23263,22985,22987,22993,22995,22997,22997,22999,23001,23001,23003,23005,23006,23008,23264,23009,23011,23013,23013,23015,23017,23017,23019,23021,23265,23022,23024,23025,23027,23266,23028,23030,23032,23035,23037,23039,23039,23041,23043,23044,23046,23048,23267,23051,23053,23056,23058,23060,23060,23062,23268,23063,23065,23066,23066,23068,23070,23073,23075,23077,23078,23080,23082,23082,23084,23086,23086,23088,23089,23089,23091,23092,23092,23094,23096,23101,23103,23269,23104,23106,23108,23270,23109,23111,23112,23114,23271,23115,23117,23119,23119,23121,23123,23123,23125,23127,23127,23129,23131,23134,23136,23138,23141,23143,23145,23145,23147,23149,23149,23151,23153,23154,23156,23272,23272,23157,23159,23162,23164,23166,23169,23171,23173,23173,23175,23177,23178,21615,23179,21618,21622,21623,21623,21627,23273,23273,21628,21632,23274,21633,21637,21643,21647,23181,21652,21653,21657,21657,21659,21662,21662,21666,23182,23275,21672,21676,21676,21680,23276,23183,21683,23184,21686,21690,21694,21699,21703,23185,23186,21711,21715,21719,21720,21724,21726,21727,23187,23277,21730,23188,23188,21733,21736,21736,21740,21744,23278,21745,21749,21749,21753,23279,21754,21758,21761,21764,21768,21772,21772,21776,23280,23280,21777,21781,21781,21782,23189,21785,21789,21791,23281,21792,21796,21796,21797,21801,21809,21813,21817,21819,21820,21824,23190,21827,21831,21834,21838,21839,21839,21843,21847,23282,21848,21852,23192,21857,23283,21858,21862,21865,21865,21869,21873,21874,21878,21882,23193,21885,21889,21892,21896,21899,21899,21903,23194,21906,21910,23284,23285,21911,21915,21916,21920,23286,23287,21921,21925,23288,21926,23195,21936,21937,23196,23289,21940,23197,23198,21945,23290,23291,21946,21950,21951,21955,21957,21958,21962,23199,21967,23200,21970,23201,21973,21977,23292,23202,21980,23293,21981,21985,21985,21989,21993,21999,22003,23294,23294,22004,22008,23204,22013,22014,22014,22018,22021,22021,22025,22029,23205,22032,23295,23295,22033,22037,23296,22040,23206,23297,22043,22047,23298,22048,23207,23208,22053,22057,22058,23209,23299,22061,23210,22064,22064,22068,22070,22071,23211,22074,23300,22077,22081,23301,22084,22088,22093,22094,22098,23302,22099,22103,22103,22107,22111,23303,22112,22115,23213,22120,23304,23305,22121,23214,23215,22126,22127,22127,22129,22133,23216,22139,22142,23306,22145,22149,22149,22150,22154,22155,22159,22163,23307,22164,23217,22167,22171,23308,22172,23218,22177,22183,22187,23309,23219,22190,23310,22191,23220,22194,22194,22198,23311,23311,22199,22202,22202,22206,22207,22210,22213,23222,23222,22218,22219,22219,22223,22227,23312,22233,23223,22236,22239,22242,22245,22249,22250,22250,22254,23313,22255,22259,22260,22260,22264,22267,22270,22274,22278,23225,22283,22287,23226,22292,22296,22300,22304,22307,22307,22311,22312,22312,22316,22318,23314,22323,22327,22328,22331,22334,22334,22337,22341,22344,22347,23315,22348,22352,23227,23227,22355,22359,22360,22364,23228,22367,22370,22374,23229,22379,23316,23316,22380,22383,22386,22390,22392,23230,22395,22399,22405,23231,22410,22411,22415,23317,23318,22416,22420,22422,23232,22425,23319,23233,22430,22430,22434,23320,23321,22435,22439,22439,22442,22443,22443,22447,22451,23234,22454,22457,22457,22460,22464,22465,22468,22471,22471,22473,23235,23236,22478,22481,22482,22486,23237,22489,22491,22494,22494,22498,23322,23238,22501,22504,22504,22507,22508,22510,22513,22516,22516,22520,22522,23239,22525,22527,22527,22531,22533,22533,23240,22536,22539,22541,22545,22550,22553,22557,23241,22560,23242,23242,22563,23323,22567,22571,22574,22574,22578,22580,22582,22586,22590,23324,22591,22595,22595,22599,22600,23243,22605,22606,22606,22610,22612,23244,22615,22617,22617,22621,22622,22627,22629,22633,22636,22640,23325,22641,22645,22649,22650,23245,23326,23327,22653,22656,22663,22664,23246,22667,22671,23328,22677,22680,22684,22685,22689,23247,22692,22694,23248,22697,22699,22703,22703,23249,23329,23329,22706,22710,22710,22711,22715,23330,22716,22720,22725,23250,23331,22728,22732,22736,23332,22737,22741,22741,22745,22749,23333,22753,23251,22756,22760,22763,22763,22766,22768,22769,22773,22777,22781,22783,22787,22787,22788,22792,22795,22796,22800,22801,22804,22807,22807,22810,23252,23334,22813,22817,22817,22821,22822,23335,22825,22829,22830,22834,22836,22836,22837,22841,22841,22844,23254,22847,22851,22855,23336,22864,22868,22871,22874,22878,23256,22881,22882,23337,22885,22889,22892,22896,23257,23257,22899,22902,22902,22906,23338,23339,22907,22911,23258,22919,22923,22923,22924,22928,22928,22932,22934,22934,22938,22940,22941,22945,22949,22952,22956,22959,23340,23259,22962,22962,22966,23260,23260,22969,22973,22973,22974,22978,22978,23261,22981,23341,22982,23262,23263,22987,22989,22992,22993,22997,22997,23001,23005,23342,23006,23264,23343,23009,23013,23013,23017,23021,23265,23024,23344,23344,23025,23266,23345,23028,23032,23035,23039,23043,23346,23044,23048,23267,23053,23055,23055,23056,23060,23060,23268,23347,23063,23066,23070,23348,23073,23077,23078,23082,23086,23086,23089,23092,23092,23096,23098,23099,23101,23269,23269,23104,23108,23111,23112,23271,23115,23119,23123,23123,23127,23131,23134,23138,23140,23141,23145,23149,23153,23154,23272,23272,23159,23160,23160,23162,23166,23169,23173,23177,23178,23179,21618,21618,21623,23273,23273,21632,23274,23274,21637,23180,21643,23181,21650,21652,21657,21662,21662,23182,21669,23275,21676,23276,23183,23184,23349,23350,21686,21694,21699,23185,23351,23186,21715,21719,21719,21724,21726,21726,23187,23352,23277,23188,21736,21736,21744,23353,23278,21749,23279,21754,21761,21763,21763,21764,21772,21772,23280,21781,21785,21791,23354,23281,21796,21801,21808,21809,21817,21819,21824,23190,23190,21831,21833,21834,21839,21847,23282,21852,23191,21858,21865,21873,21873,21874,21882,21882,23193,21889,23355,21892,21899,21899,23194,23356,21906,23284,23357,23285,21915,21916,23287,21925,23358,23288,23195,21929,21934,21936,23196,23289,23197,23198,23198,23290,23359,23359,23291,21950,23360,21951,21957,21957,21958,23199,23201,21977,23292,23292,21980,23361,23293,21985,21993,21997,21999,23294,23294,22008,22010,23204,22014,22021,22021,22029,23205,23205,23295,22037,23297,22047,23362,23363,23298,23207,23364,23208,22057,22061,22064,22070,22070,22071,22074,23300,22081,22083,23301,22088,22090,22093,22098,23302,23302,22103,22111,23365,23303,22115,23305,23214,23215,23215,22127,22133,23366,23216,22142,23306,22149,22154,22154,22155,22163,23307,23217,23367,23368,22167,23308,23308,22172,22177,22183,23309,23369,22191,22194,23311,23311,22202,22207,23370,22210,23222,23222,22219,22227,23312,23223,23371,23371,22236,22242,22245,22250,23313,22255,22260,22267,22269,22270,22278,23225,22287,22289,23226,22296,23372,23373,22300,22307,22307,22312,22318,22328,22334,22341,22342,22344,23315,22348,23227,22359,22360,23228,23374,22367,22374,23229,23229,23316,22383,22385,22386,22392,23230,22399,22402,22404,22405,22410,23375,23318,22420,22422,22425,22427,23319,22430,23320,23321,22439,22443,22443,22451,23234,23234,22457,22464,23376,22465,22471,23235,23236,22481,22482,23237,23377,22489,22494,23322,23378,23238,22504,22510,22516,22522,22522,23239,22527,22527,22533,22536,22539,22545,22549,22550,22557,23379,23241,23242,23323,22567,22574,22580,22582,22590,23324,23324,22595,22600,23243,22606,22612,23244,22617,22622,23380,22627,22633,22635,22636,23325,23381,22641,22649,22650,23326,23327,23327,22656,22658,22659,22663,23246,23246,22667,23328,22676,22677,22684,23382,22685,23247,23247,22692,23248,22697,22703,23329,23329,22710,22715,23330,22720,22724,23331,22728,22736,23332,22741,22749,23383,22756,22763,22769,22777,22781,22781,22787,22792,22795,22800,22801,22801,22807,23252,23334,22817,22822,23335,22829,23384,22830,22836,22841,22841,23254,22847,22847,22855,22857,23385,23336,22868,22871,22878,23386,23386,23256,22882,23337,22889,22892,22892,23257,22902,22902,23338,23387,23339,22911,23388,23389,23258,22923,22923,22928,22934,22934,22940,23390,23391,22941,22949,23340,22962,23260,23260,22973,22978,22978,22981,23392,23341,23262,23393,23394,23263,22989,22990,22992,22997,22997,23005,23395,23343,23013,23021,23396,23265,23344,23345,23032,23034,23397,23035,23043,23398,23346,23048,23267,23055,23060,23060,23347,23399,23063,23070,23072,23348,23077,23078,23078,23086,23092,23092,23098,23400,23099,23269,23108,23111,23271,23401,23402,23115,23123,23123,23131,23133,23141,23149,23153,23153,23272,23160,23160,23166,23403,23167,23169,23177,23178,21618,23273,23273,23274,23180,21650,21652,21662,21662,21669,21671,23404,23275,23276,23350,21694,21696,21699,23351,23405,23406,23186,21719,21719,21726,23352,23277,21736,23353,23407,23278,23279,21754,21763,21772,21772,21781,23189,21785,23354,23408,23281,21801,21803,21804,21808,21817,21817,21819,23190,23190,21833,23409,23409,21834,21847,23282,23191,23410,21858,21873,21882,21882,21889,21891,23355,21899,23356,23285,21916,23286,23287,23358,23288,23288,21929,21931,23289,23198,23359,23359,21950,23360,23360,21957,23199,23201,23292,23361,23411,23293,21993,23412,21997,23294,23413,23204,22021,22021,23205,22037,23297,23362,23363,23207,23364,22057,23414,22061,22070,23415,23300,22083,23301,22090,23416,22093,23302,22111,23365,22115,23212,23215,22133,22134,23366,22142,22144,23417,23306,22154,22154,22163,23418,23308,22177,22179,22191,23311,22207,23370,23222,22227,23371,22242,22245,22245,23313,23419,22255,22267,22269,22269,22278,23224,23420,23225,22289,23226,23372,22297,23373,22307,22318,22327,22328,22341,22341,22342,23315,22348,22359,23421,23421,22360,23374,22367,23229,22383,22385,22392,23230,23230,22402,22404,22404,22410,23422,23375,22420,22422,23423,23319,23320,23321,22443,23234,23234,22464,23424,23425,23376,22471,23235,22481,22482,22482,23377,23426,23427,22489,23322,23378,22504,22508,22508,22510,22522,22522,22527,22536,22539,22549,22550,22550,23379,23241,22567,22580,22582,22582,23324,22600,23243,22612,23244,23380,22633,22635,22635,23325,23428,23381,22649,22650,22650,23327,22658,22658,22659,23246,23246,23328,22672,22676,22684,23382,23247,23248,22697,22697,23329,22715,23429,23330,22724,23331,22736,23430,23431,23332,22749,23383,22763,22768,22769,22781,22792,22795,22801,23252,23334,22822,23253,22830,22841,22847,22847,22857,22858,23385,22868,22870,22871,23386,22882,23432,23337,22892,22892,22902,23387,23433,23339,23388,23389,22923,22934,23391,22949,22951,22959,23340,23260,23260,22978,23392,23341,23393,23434,23394,22989,23435,22990,22997,23395,23436,23343,23021,23396,23344,23266,23345,23034,23397,23397,23043,23437,23398,23048,23050,23438,23267,23060,23399,23063,23072,23348,23078,23092,23099,23108,23270,23270,23111,23401,23402,23123,23133,23141,23153,23160,23167,23177,23178,23178,23273,23180,21643,21650,21662,23404,23276,23183,23439,23350,21696,21697,21699,23405,23406,21719,23352,23440,23277,23353,23279,21754,21772,21772,23189,23441,21785,23408,23442,23281,21803,23443,21804,21817,23190,23409,21847,23282,21858,21882,21891,23444,23355,23356,23357,23285,23286,23445,23289,23359,23360,23199,23446,23447,23201,23361,23448,23411,21993,23412,23294,22010,23413,22021,22037,23297,23363,23207,23207,22057,23449,23414,22070,22074,23415,22083,23301,22091,22093,22111,22111,23365,23212,23215,22134,22136,23366,22144,23450,23417,22154,23418,23368,23308,22179,23451,22191,22207,23452,23370,22227,23312,23371,22245,22245,23419,23453,22255,22269,23224,23224,23420,22289,23373,22318,22322,22327,22341,23315,22348,23421,23374,22367,22383,22385,23230,22404,23422,23375,22422,22427,23454,23423,23320,23321,23234,23424,23425,22471,23235,23235,22482,23426,23427,23322,23455,23378,22508,22522,22522,22536,22538,22550,23241,23323,22567,22582,22600,23243,23244,22622,22626,23380,22635,22635,23428,23381,23381,22650,22658,22658,23246,22672,23247,22697,22715,23456,23429,22724,23331,23430,23457,23457,23431,22749,23458,23383,22768,22768,22769,22792,22793,22795,23252,23459,23334,23253,23460,22830,22847,22847,22858,22861,23461,23385,22870,22871,22882,22884,23432,22892,23387,22916,23389,22934,23391,22951,23462,22952,22959,23260,23260,23392,23463,23341,23434,23464,23465,22990,23395,23466,23436,23021,23396,23266,23467,23467,23345,23397,23397,23437,23468,23468,23398,23050,23438,23060,23399,23399,23072,23348,23348,23092,23400,23099,23270,23401,23469,23402,23133,23470,23141,23160,23167,23178,23180,21643,21662,21671,23404,23183,23349,23439,21696,23471,21697,23405,21706,23406,23352,23472,23440,23353,23473,23407,23279,21772,23281,23443,21804,21804,23190,23409,23409,23282,23410,21858,21891,23444,23444,23356,23474,21906,23357,23286,23445,23359,23360,23360,23446,23475,21970,23447,23361,23476,23448,21993,23477,23412,22010,23478,23413,22037,23297,23207,23449,23414,22074,22076,23415,23301,23416,22091,22111,23212,23305,23215,22136,23479,23417,23418,23480,23368,22179,23451,22207,23221,23452,22227,22228,23481,23312,22245,22245,23453,23482,23224,22289,23483,23373,22322,23314,22327,23315,22348,22348,23374,23484,22367,22385,23230,23230,23422,22411,23485,23375,22427,23454,23320,23486,23487,23321,23424,23425,23235,23426,23427,23455,23488,22522,22538,22539,22566,22567,22600,23243,22622,22626,22626,22635,23381,22658,22672,23489,22658,23489,23381,23382,23247,22715,23490,23456,22724,23457,22749,23491,23251,23458,22768,22768,22792,22793,22793,23252,23459,23459,23253,23492,23460,22847,22861,23461,22870,22871,22871,22884,23493,23432,23387,23494,22916,22934,23390,23391,23462,23495,22952,23260,23463,23435,23465,23395,23496,23466,23021,23467,23397,23468,23468,23050,23497,23438,23399,23348,23348,23400,23099,23498,23469,23133,23470,23160,23403,23499,23167,23180,23500,21643,21671,23404,23349,23501,23439,23471,23502,23502,21697,21706,23406,23472,23503,23503,23440,23473,23407,21772,23441,23281,21804,23409,23409,23410,23504,21858,23444,23474,21906,23286,23287,23505,23445,23360,23360,23475,21965,21970,23361,23476,23476,21993,23506,23477,22010,23478,23478,22037,22039,23297,23449,22058,23299,23414,22076,22076,23415,23416,23507,22091,23212,23305,22136,23366,23508,23479,23418,23480,22179,22180,23451,23221,23509,23452,22228,22230,23481,22245,23482,22255,23224,23483,23373,23314,22327,22327,22348,23484,22367,23230,22411,23454,23486,23487,23487,23424,23425,23425,23426,23427,23427,23488,23378,22564,22566,22600,22626,23381,23510,22626,23510,23243,22672,22676,23511,23511,23381,23489,23511,23489,22672,22676,23382,22715,23490,22724,22725,23457,23491,23512,23333,23251,22768,22768,22793,23459,23459,23492,23513,23384,23460,22861,22871,23493,23432,23432,23494,23433,22916,23390,23391,23391,23495,23514,22952,23463,23341,23394,23435,23395,23496,23021,23515,23467,23468,23497,23438,23348,23099,23498,23133,23516,23517,23470,23403,23499,23180,21640,23500,21671,23518,23439,23502,21706,23503,23473,23519,23520,23407,23441,23521,23281,23409,23283,21858,23474,23360,21965,21967,23476,23506,23522,23477,23478,22039,23297,22058,23299,23523,23507,23212,23524,23508,23418,23480,22180,22182,23451,23509,23452,23452,22230,22232,23525,23481,23482,23526,22255,23483,22327,23484,23527,22327,23527,23373,22367,22411,23317,23454,23487,23425,23427,23378,22522,23528,22564,22600,22676,22715,23529,23490,22725,23331,23457,23512,23530,23333,22768,23459,23459,23513,23335,23335,23384,22861,23432,23433,23388,22916,23391,23514,22952,23341,23464,23394,23395,23342,23264,23496,23515,23467,23497,23531,23532,23438,23099,23498,23516,23533,23534,23517,23403,23499,21640,21642,23500,23518,23404,23439,21706,21708,23503,23519,23535,23520,23441,23536,23537,23521,23409,23283,23474,23538,23360,21967,21970,23477,22039,23296,23523,23212,23213,23524,23418,23539,23480,22182,22183,23451,23452,22232,23525,23482,23526,23526,23483,23226,23540,23373,23527,23540,23527,23484,23373,23540,22299,22367,23317,23485,22427,23454,23425,22522,22539,23541,22522,23541,23427,23528,22600,22602,23511,23529,23542,23511,23542,23381,23529,23511,22676,23457,23530,23543,23544,23333,23459,23335,22861,23255,23432,23388,22912,22912,22916,23514,23394,23342,23264,23264,23515,23545,23467,23531,23546,23547,23532,23099,23498,23533,23548,23534,23403,23499,23499,21642,23549,23500,23404,23501,23439,21708,23406,23503,23535,23520,23520,23536,23550,23537,23409,23504,23283,23538,21906,23360,21970,23476,23203,23477,23296,23523,23213,23304,23450,23524,23539,23551,23480,22183,23451,22232,23552,23525,23526,23226,23484,22367,23553,23553,22299,23540,23553,23540,23484,23485,22427,23425,23528,22602,23243,23542,23490,23554,23542,23554,23381,23490,23542,23529,22752,23544,23459,23335,23255,23555,23432,22912,23514,23394,23264,23545,23467,23546,23556,23557,23547,23099,23498,23548,23134,23534,23499,23549,23500,23501,23439,23439,23406,23503,23503,23520,23550,23558,23537,23504,23192,23283,21906,23360,23476,23522,21994,23203,23296,23416,23523,23304,23366,23450,23539,23551,22183,23369,23451,23552,23525,23525,23226,22297,22367,23485,23559,23559,22299,23553,23559,23553,22367,23485,23425,23427,23560,23243,23510,23560,23510,23381,23243,23560,23528,23490,23331,23561,23561,23381,23554,23561,23554,23490,22750,22752,23459,23335,23555,23562,22871,23432,23514,23563,23394,23545,23467,23556,23564,23557,23099,23401,23498,23134,23140,23534,23549,23500,23503,23550,23565,23503,23565,23439,23442,23558,23504,23192,21906,23287,23522,21994,23296,23416,23304,23566,23366,23539,23567,23367,23551,23369,23525,22297,23568,23525,23568,23451,23569,22299,23559,23569,23559,23485,22299,23569,22297,23570,23427,23541,23570,23541,22539,23427,23570,23485,23571,23528,23560,23571,23560,23381,23528,23571,23323,23331,23457,23572,23572,23381,23561,23572,23561,23331,23573,22750,23459,22871,23514,23574,23575,23563,23545,23467,23564,23576,23576,23557,23401,23498,23140,23534,23534,23500,23439,23550,21785,23577,23577,23439,23565,23577,23565,23550,23442,23504,23578,23442,23578,21785,23579,23192,23287,23522,23296,23580,23522,23580,23360,22076,23416,23566,23366,23567,23581,23307,23367,23369,23582,22297,23569,23569,23485,23583,23569,23583,23582,22297,23582,23584,23584,23451,23568,23584,23568,22297,23585,23381,23572,23572,23457,23586,23572,23586,23585,23571,23585,23587,23571,23587,23323,23585,23571,23381,23543,23573,23459,22871,23574,23588,23575,23545,23589,23467,23576,23401,23534,23439,23590,23534,23590,23498,23591,21785,23578,23591,23578,23504,21785,23591,23592,23577,23592,23593,23577,23593,23439,23592,23577,21785,23579,23287,23288,23580,23206,23594,23580,23594,23360,23206,23580,23296,22076,23566,23305,23366,23581,23307,23307,23369,23219,23595,23582,23596,23596,22539,23597,23596,23597,23595,23595,23451,23584,23595,23584,23582,23583,23570,23598,23583,23598,23582,23570,23583,23485,23570,22539,23596,23596,23582,23598,23596,23598,23570,23587,23599,23600,23587,23600,23323,23599,23587,23585,23601,23585,23586,23601,23586,23457,23585,23601,23599,23602,23323,23600,23602,23600,23599,23323,23602,22550,23543,23459,23335,22871,23588,22952,23575,23589,23396,23467,23401,23603,23467,23603,23396,23604,23498,23590,23604,23590,23439,23498,23604,23401,23504,23605,23606,23606,23607,23608,23606,23608,23504,23592,23607,23609,23609,23439,23593,23609,23593,23592,23607,23592,23591,23591,23504,23608,23591,23608,23607,23579,23288,21931,23594,23610,23611,23594,23611,23360,23610,23594,23206,23366,23307,23219,23612,23451,23595,23613,23595,23597,23613,23597,22539,23595,23613,23612,23451,23612,23310,23457,23543,23614,23614,23615,23616,23614,23616,23457,23599,23615,23617,23617,22550,23602,23617,23602,23599,23615,23599,23601,23601,23457,23616,23601,23616,23615,23543,23335,23562,22952,23464,23618,22952,23618,22871,23619,23396,23603,23619,23603,23401,23396,23619,23575,23609,23620,23621,23609,23621,23439,23620,23609,23607,23622,23607,23606,23606,23605,23623,23606,23623,23622,23607,23622,23620,23621,23624,23625,23621,23625,23439,23624,23621,23620,23624,23401,23604,23604,23439,23625,23604,23625,23624,23605,23579,21931,23610,23297,23626,23626,23360,23611,23626,23611,23610,23366,23219,23310,22539,22550,23627,23627,23628,23629,23627,23629,22539,23612,23628,23630,23612,23630,23310,23628,23612,23613,23613,22539,23629,23613,23629,23628,23543,23562,23631,23631,23632,23633,23631,23633,23543,23615,23632,23634,23617,23634,23635,23617,23635,22550,23634,23617,23615,23632,23615,23614,23614,23543,23633,23614,23633,23632,23464,23575,23636,23636,22871,23618,23636,23618,23464,23620,23637,23638,23620,23638,23639,23624,23639,23640,23624,23640,23401,23639,23624,23620,23622,23641,23642,23622,23642,23620,23641,23622,23623,23623,23605,23643,23623,23643,23641,23637,23620,23642,23642,23641,23644,23642,23644,23637,23619,23639,23645,23619,23645,23575,23619,23401,23640,23619,23640,23639,23646,23639,23638,23638,23637,23647,23638,23647,23646,23645,23646,23648,23645,23648,23575,23646,23645,23639,23605,21931,21932,23297,23299,23649,23649,23360,23626,23649,23626,23297,23650,23310,23630,23650,23630,23628,23651,23628,23627,23651,23627,22550,23628,23651,23650,23310,23650,23652,23310,23652,23366,23562,23653,23654,23654,23655,23656,23654,23656,23562,23632,23655,23657,23634,23657,23658,23658,22550,23635,23658,23635,23634,23657,23634,23632,23655,23632,23631,23631,23562,23656,23631,23656,23655,23637,23659,23660,23660,23661,23662,23660,23662,23637,23646,23661,23663,23663,23575,23648,23663,23648,23646,23662,23646,23647,23662,23647,23637,23646,23662,23661,23641,23664,23665,23665,23637,23644,23665,23644,23641,23666,23641,23643,23666,23643,23605,23641,23666,23664,23659,23637,23665,23665,23664,23667,23665,23667,23659,23668,23636,23669,23668,23669,23661,23636,23668,22871,23636,23575,23663,23663,23661,23669,23663,23669,23636,23670,23661,23660,23660,23659,23671,23660,23671,23670,23668,23670,23672,23668,23672,22871,23670,23668,23661,23605,21932,21934,23652,23673,23674,23652,23674,23366,23673,23652,23650,23675,23650,23651,23675,23651,22550,23650,23675,23673,23676,23366,23674,23676,23674,23673,23366,23676,23305,23653,23461,23677,23677,23678,23679,23677,23679,23653,23655,23678,23680,23657,23680,23681,23681,22550,23658,23681,23658,23657,23680,23657,23655,23678,23655,23654,23654,23653,23679,23654,23679,23678,23682,23683,23684,23682,23684,23685,23683,23682,23659,23672,23685,23686,23672,23686,22871,23685,23672,23670,23682,23670,23671,23682,23671,23659,23670,23682,23685,23667,23687,23688,23667,23688,23659,23687,23667,23664,23689,23664,23666,23689,23666,23605,23664,23689,23687,23690,23659,23688,23690,23688,23687,23659,23690,23683,23685,23691,23692,23692,22871,23686,23692,23686,23685,23693,23685,23684,23693,23684,23683,23685,23693,23691,23694,22871,23692,23694,23692,23691,22871,23694,23461,21934,23196,23695,21934,23695,23605,23676,23696,23697,23676,23697,23305,23696,23676,23673,23698,23673,23675,23698,23675,22550,23673,23698,23696,23699,23305,23697,23699,23697,23696,23305,23699,22076,23700,23683,23701,23700,23701,23196,23683,23700,23702,23691,23702,23703,23694,23703,23704,23694,23704,23461,23703,23694,23691,23702,23691,23693,23702,23693,23683,23687,23196,23701,23701,23683,23690,23701,23690,23687,23695,23687,23689,23695,23689,23605,23687,23695,23196,23699,23705,23706,23699,23706,22076,23705,23699,23696,23707,23696,23698,23707,23698,22550,23696,23707,23705,23708,22076,23706,23708,23706,23705,22076,23708,23299,23709,23702,23710,23709,23710,23505,23702,23709,23711,23703,23711,23712,23704,23712,23713,23704,23713,23461,23712,23704,23703,23711,23703,23702,23700,23505,23710,23700,23710,23702,23505,23700,23196,23714,23299,23708,23714,23708,23705,23715,23705,23707,23707,22550,23716,23707,23716,23715,23705,23715,23717,23705,23717,23714,23299,23714,23718,23299,23718,23719,23649,23719,23720,23649,23720,23360,23719,23649,23299,23721,23711,23722,23721,23722,23360,23711,23721,23723,23712,23723,23724,23724,23461,23713,23724,23713,23712,23723,23712,23711,23709,23360,23722,23709,23722,23711,23360,23709,23505,23725,23726,23727,23725,23727,23728,23726,23725,23723,23726,23714,23729,23729,23728,23727,23729,23727,23726,23724,23728,23730,23724,23730,23461,23724,23723,23725,23724,23725,23728,23721,23719,23731,23721,23731,23723,23721,23360,23720,23721,23720,23719,23726,23719,23718,23726,23718,23714,23726,23723,23731,23726,23731,23719,23732,23715,23733,23733,23678,23734,23733,23734,23732,23717,23732,23735,23717,23735,23714,23732,23717,23715,23736,22550,23681,23736,23681,23680,23736,23715,23716,23736,23716,22550,23680,23678,23733,23733,23715,23736,23733,23736,23680,23737,23677,23738,23737,23738,23728,23677,23737,23678,23677,23461,23730,23730,23728,23738,23730,23738,23677,23732,23728,23729,23729,23714,23735,23729,23735,23732,23737,23732,23734,23737,23734,23678,23732,23737,23728,23739,23740,23741,23741,23742,23743,23743,23744,23745,23745,23746,23747,23747,23748,23749,23749,23750,23751,23751,23752,23753,23754,23755,23756,23756,23757,23758,23758,23759,23760,23760,23761,23762,23763,23764,23765,23765,23766,23767,23768,23769,23770,23770,23771,23772,23772,23773,23774,23774,23775,23776,23776,23777,23778,23778,23779,23780,23780,23781,23782,23782,23783,23784,23785,23786,23787,23787,23788,23789,23789,23790,23791,23739,23741,23743,23743,23745,23747,23747,23749,23751,23754,23756,23758,23758,23760,23762,23792,23763,23765,23765,23767,23793,23768,23770,23772,23772,23774,23776,23776,23778,23780,23780,23782,23784,23785,23787,23789,23739,23743,23747,23747,23751,23753,23754,23758,23762,23793,23768,23772,23772,23776,23780,23780,23784,23785,23785,23789,23791,23791,23739,23747,23753,23754,23762,23793,23772,23780,23780,23785,23791,23791,23747,23753,23753,23762,23792,23765,23793,23780,23780,23791,23753,23753,23792,23765,23765,23780,23753,23794,23795,23796,23797,23798,23799,23799,23800,23801,23801,23802,23803,23803,23804,23805,23805,23806,23807,23807,23808,23809,23809,23794,23796,23797,23799,23801,23801,23803,23805,23805,23807,23809,23809,23796,23810,23811,23797,23801,23801,23805,23809,23809,23810,23811,23811,23801,23809,23812,23813,23814,23814,23815,23816,23816,23817,23818,23818,23819,23820,23820,23821,23822,23822,23823,23824,23824,23825,23826,23826,23812,23814,23814,23816,23818,23818,23820,23822,23822,23824,23826,23826,23814,23818,23818,23822,23826,23827,23828,23829,23829,23830,23831,23832,23833,23834,23835,23836,23837,23837,23838,23839,23840,23841,23842,23843,23844,23845,23845,23846,23847,23847,23827,23829,23829,23831,23848,23832,23834,23835,23835,23837,23839,23840,23842,23843,23843,23845,23847,23847,23829,23848,23849,23832,23835,23835,23839,23850,23840,23843,23847,23847,23848,23849,23849,23835,23850,23850,23840,23847,23847,23849,23850,23851,23852,23853,23853,23854,23855,23855,23856,23857,23857,23858,23859,23859,23860,23861,23861,23862,23863,23863,23851,23853,23853,23855,23857,23857,23859,23861,23861,23863,23853,23853,23857,23861,23864,23865,23866,23866,23867,23868,23868,23869,23870,23871,23872,23873,23873,23874,23875,23876,23864,23866,23866,23868,23870,23870,23871,23873,23873,23875,23877,23877,23876,23866,23866,23870,23873,23873,23877,23866,23878,23879,23880,23881,23882,23883,23884,23885,23886,23886,23887,23888,23889,23890,23891,23891,23892,23893,23893,23894,23895,23896,23897,23898,23898,23899,23900,23901,23902,23903,23903,23904,23905,23906,23907,23908,23908,23909,23878,23878,23880,23910,23910,23881,23883,23884,23886,23888,23889,23891,23893,23893,23895,23911,23896,23898,23900,23901,23903,23905,23906,23908,23878,23878,23910,23883,23912,23884,23888,23889,23893,23911,23913,23896,23900,23900,23901,23905,23906,23878,23883,23914,23912,23888,23888,23889,23911,23913,23900,23905,23906,23883,23915,23916,23914,23888,23888,23911,23917,23917,23913,23905,23905,23906,23915,23916,23888,23917,23917,23905,23915,23915,23916,23917,23918,23919,23920,23920,23921,23922,23922,23923,23924,23924,23925,23926,23926,23927,23918,23918,23920,23922,23922,23924,23926,23926,23918,23922,23928,23929,23930,23930,23931,23932,23932,23933,23934,23934,23935,23936,23936,23937,23928,23928,23930,23932,23932,23934,23936,23936,23928,23932,23938,23939,23940,23941,23942,23943,23943,23944,23945,23945,23946,23947,23947,23938,23940,23948,23941,23943,23943,23945,23947,23947,23940,23948,23948,23943,23947,23949,23950,23951,23951,23952,23953,23953,23954,23955,23955,23956,23949,23949,23951,23953,23953,23955,23949,23957,23958,23959,23960,23961,23962,23962,23963,23964,23964,23965,23966,23966,23967,23968,23968,23969,23970,23971,23957,23959,23960,23962,23964,23964,23966,23968,23970,23971,23959,23959,23960,23964,23964,23968,23970,23970,23959,23964,23972,23973,23974,23974,23975,23976,23976,23977,23978,23978,23979,23980,23980,23972,23974,23974,23976,23978,23978,23980,23974,23981,23982,23983,23983,23984,23985,23985,23986,23987,23987,23981,23983,23983,23985,23987,23988,23989,23990,23990,23991,23992,23992,23993,23994,23994,23995,23996,23997,23998,23988,23988,23990,23992,23992,23994,23996,23997,23988,23992,23992,23996,23997,23999,24000,24001,24001,24002,24003,24003,24004,24005,24005,24006,24007,24007,24008,23999,23999,24001,24003,24003,24005,24007,24007,23999,24003,24009,24010,24011,24012,24013,24014,24014,24015,24016,24016,24017,24009,24009,24011,24012,24012,24014,24016,24016,24009,24012,24018,24019,24020,24020,24021,24022,24022,24023,24024,24025,24026,24018,24018,24020,24022,24022,24024,24025,24025,24018,24022,24027,24028,24029,24029,24030,24031,24031,24032,24033,24033,24034,24027,24027,24029,24031,24031,24033,24027,24035,24036,24037,24037,24038,24039,24039,24040,24041,24042,24043,24035,24035,24037,24039,24039,24041,24042,24042,24035,24039,24044,24045,24046,24046,24047,24048,24048,24049,24050,24050,24051,24052,24044,24046,24048,24048,24050,24052,24052,24044,24048,24053,24054,24055,24056,24057,24058,24058,24059,24060,24060,24061,24062,24062,24063,24064,24064,24065,24066,24066,24067,24068,24069,24070,24071,24071,24072,24073,24074,24053,24055,24058,24060,24062,24062,24064,24066,24066,24068,24075,24069,24071,24073,24074,24055,24056,24056,24058,24062,24062,24066,24075,24075,24069,24073,24074,24056,24062,24062,24075,24073,24073,24074,24062,24076,24077,24078,24079,24080,24081,24081,24082,24083,24084,24085,24086,24087,24088,24089,24090,24091,24092,24092,24093,24094,24095,24096,24097,24098,24099,24100,24100,24101,24102,24103,24104,24105,24105,24076,24078,24083,24084,24086,24090,24092,24094,24102,24103,24105,24105,24078,24079,24083,24086,24087,24089,24090,24094,24102,24105,24079,24083,24087,24089,24089,24094,24095,24100,24102,24079,24083,24089,24095,24098,24100,24079,24083,24095,24097,24098,24079,24081,24081,24083,24097,24097,24098,24081,24106,24107,24108,24108,24109,24110,24111,24112,24113,24114,24115,24116,24117,24118,24119,24119,24120,24121,24121,24122,24106,24106,24108,24110,24111,24113,24114,24114,24116,24117,24117,24119,24121,24121,24106,24110,24123,24111,24114,24114,24117,24121,24121,24110,24123,24123,24114,24121,24124,24125,24126,24126,24127,24128,24128,24129,24130,24130,24131,24132,24133,24134,24135,24136,24137,24138,24138,24139,24140,24140,24141,24142,24142,24143,24144,24144,24145,24146,24146,24147,24148,24148,24149,24150,24150,24124,24126,24128,24130,24132,24133,24135,24151,24136,24138,24140,24142,24144,24146,24146,24148,24150,24150,24126,24128,24128,24132,24152,24133,24151,24153,24153,24136,24140,24142,24146,24150,24150,24128,24152,24152,24133,24153,24153,24140,24142,24142,24150,24152,24152,24153,24142,24154,24155,24156,24157,24158,24159,24159,24160,24161,24161,24162,24163,24164,24165,24166,24166,24167,24168,24168,24169,24170,24171,24154,24156,24157,24159,24161,24161,24163,24164,24164,24166,24168,24168,24170,24171,24171,24156,24172,24173,24157,24161,24161,24164,24168,24171,24172,24174,24174,24173,24161,24161,24168,24171,24171,24174,24161,24175,24176,24177,24177,24178,24179,24179,24180,24181,24181,24182,24183,24183,24175,24177,24177,24179,24181,24181,24183,24177,24184,24185,24186,24186,24187,24188,24188,24189,24190,24190,24191,24192,24192,24193,24184,24186,24188,24190,24190,24192,24184,24184,24186,24190,24194,24195,24196,24196,24197,24198,24198,24199,24194,24194,24196,24198,24200,24201,24202,24202,24203,24204,24205,24206,24207,24207,24208,24209,24210,24211,24212,24212,24213,24214,24214,24215,24200,24200,24202,24204,24204,24205,24207,24207,24209,24216,24210,24212,24214,24214,24200,24204,24204,24207,24216,24210,24214,24204,24204,24216,24217,24217,24210,24204,24218,24219,24220,24221,24222,24223,24224,24225,24226,24226,24227,24228,24229,24230,24231,24231,24232,24233,24234,24235,24236,24237,24238,24239,24239,24240,24241,24218,24220,24221,24221,24223,24224,24231,24233,24234,24234,24236,24237,24239,24241,24242,24218,24221,24224,24231,24234,24237,24243,24218,24224,24229,24231,24237,24243,24224,24226,24229,24237,24239,24242,24243,24226,24228,24229,24239,24239,24242,24226,24226,24228,24239,24244,24245,24246,24246,24247,24248,24248,24249,24250,24251,24252,24244,24244,24246,24248,24248,24250,24251,24251,24244,24248,24253,24254,24255,24255,24256,24257,24257,24258,24259,24259,24260,24261,24261,24262,24263,24263,24264,24265,24266,24267,24268,24268,24269,24270,24270,24253,24255,24257,24259,24261,24261,24263,24265,24266,24268,24270,24270,24255,24257,24257,24261,24265,24266,24270,24257,24257,24265,24271,24271,24266,24257,24272,24273,24274,24274,24275,24276,24276,24277,24278,24278,24279,24280,24280,24281,24282,24282,24283,24284,24285,24286,24287,24287,24288,24289,24274,24276,24278,24278,24280,24282,24285,24287,24289,24272,24274,24278,24278,24282,24284,24284,24285,24289,24272,24278,24284,24284,24289,24272,24290,24291,24292,24292,24293,24294,24295,24296,24297,24297,24298,24299,24299,24300,24301,24301,24290,24292,24295,24297,24299,24299,24301,24292,24294,24295,24299,24299,24292,24294,24302,24303,24304,24304,24305,24302,24306,24307,24308,24308,24309,24310,24310,24311,24312,24312,24313,24306,24306,24308,24310,24310,24312,24306,24314,24315,24316,24317,24318,24319,24319,24320,24321,24321,24322,24323,24324,24325,24326,24326,24314,24316,24317,24319,24321,24324,24326,24316,24317,24321,24323,24323,24324,24316,24327,24317,24323,24323,24316,24327,24328,24329,24330,24330,24331,24332,24332,24333,24334,24334,24328,24330,24330,24332,24334,24335,24336,24337,24338,24339,24340,24341,24342,24343,24343,24344,24345,24345,24346,24347,24347,24348,24349,24349,24350,24351,24351,24352,24353,24354,24355,24356,24356,24357,24358,24358,24359,24335,24335,24337,24338,24338,24340,24341,24343,24345,24347,24347,24349,24351,24354,24356,24358,24358,24335,24338,24341,24343,24347,24347,24351,24353,24360,24354,24358,24358,24338,24341,24341,24347,24353,24360,24358,24341,24341,24353,24361,24362,24360,24341,24341,24361,24363,24363,24362,24341,24364,24365,24366,24366,24367,24368,24368,24369,24370,24371,24364,24366,24366,24368,24370,24370,24371,24366,24372,24373,24374,24374,24375,24376,24376,24377,24378,24378,24379,24380,24380,24372,24374,24374,24376,24378,24378,24380,24374,24381,24382,24383,24383,24384,24385,24386,24387,24388,24389,24390,24391,24391,24392,24393,24394,24395,24396,24397,24398,24399,24381,24383,24385,24386,24388,24389,24389,24391,24393,24394,24396,24400,24397,24399,24381,24381,24385,24386,24386,24389,24393,24401,24394,24400,24402,24397,24381,24386,24393,24401,24401,24400,24402,24381,24386,24401,24401,24402,24381,24403,24404,24405,24406,24407,24408,24408,24409,24410,24410,24411,24412,24412,24413,24414,24415,24416,24417,24417,24403,24405,24406,24408,24410,24410,24412,24414,24415,24417,24405,24405,24406,24410,24414,24415,24405,24405,24410,24414,24418,24419,24420,24421,24422,24423,24423,24424,24425,24425,24418,24420,24420,24421,24423,24423,24425,24420,24426,24427,24428,24428,24429,24430,24430,24431,24432,24432,24433,24434,24434,24426,24428,24428,24430,24432,24432,24434,24428,24435,24436,24437,24437,24438,24439,24439,24440,24441,24441,24442,24443,24443,24435,24437,24437,24439,24441,24441,24443,24437,24444,24445,24446,24446,24447,24448,24448,24449,24450,24450,24451,24452,24452,24453,24454,24444,24446,24448,24448,24450,24452,24452,24454,24444,24444,24448,24452,24455,24456,24457,24457,24458,24459,24459,24460,24461,24461,24462,24463,24463,24455,24457,24457,24459,24461,24461,24463,24457,24464,24465,24466,24466,24467,24468,24468,24469,24464,24464,24466,24468,24470,24471,24472,24472,24473,24474,24474,24475,24470,24470,24472,24474,24476,24477,24478,24479,24480,24481,24481,24482,24483,24483,24484,24485,24485,24486,24487,24487,24476,24478,24479,24481,24483,24483,24485,24487,24487,24478,24479,24479,24483,24487,24488,24489,24490,24490,24491,24492,24492,24488,24490,24493,24494,24495,24495,24496,24497,24497,24493,24495,24498,24499,24500,24500,24501,24502,24502,24503,24498,24498,24500,24502,24504,24505,24506,24506,24507,24508,24509,24510,24511,24511,24512,24513,24513,24504,24506,24506,24508,24509,24509,24511,24513,24513,24506,24509,24514,24515,24516,24516,24517,24518,24518,24514,24516,24519,24520,24521,24522,24523,24524,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24535,24536,24537,24537,24538,24539,24539,24540,24541,24541,24542,24543,24543,24544,24545,24545,24546,24547,24548,24549,24550,24551,24552,24553,24553,24554,24555,24556,24519,24521,24522,24524,24526,24526,24527,24529,24557,24530,24532,24533,24535,24537,24541,24543,24545,24545,24547,24548,24548,24550,24551,24551,24553,24555,24556,24521,24522,24522,24526,24529,24557,24532,24533,24539,24541,24545,24545,24548,24551,24551,24555,24556,24556,24522,24529,24558,24557,24533,24539,24545,24551,24551,24556,24529,24558,24533,24537,24537,24539,24551,24551,24529,24558,24558,24537,24551,24559,24560,24561,24561,24562,24563,24563,24564,24565,24565,24566,24559,24559,24561,24563,24563,24565,24559,24567,24568,24569,24570,24571,24572,24572,24573,24574,24574,24575,24576,24576,24577,24578,24578,24579,24580,24581,24582,24583,24583,24567,24569,24584,24570,24572,24572,24574,24576,24576,24578,24580,24581,24583,24569,24584,24572,24576,24576,24580,24581,24581,24569,24584,24584,24576,24581,24585,24586,24587,24587,24588,24589,24589,24590,24585,24585,24587,24589,24591,24592,24593,24593,24594,24595,24595,24596,24591,24591,24593,24595,24597,24598,24599,24599,24600,24601,24601,24602,24603,24603,24604,24597,24599,24601,24603,24603,24597,24599,24605,24606,24607,24608,24609,24610,24611,24612,24613,24613,24614,24615,24615,24616,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24628,24629,24629,24630,24631,24632,24633,24634,24634,24635,24636,24636,24637,24638,24638,24639,24640,24640,24641,24642,24643,24644,24645,24605,24607,24608,24608,24610,24646,24611,24613,24615,24620,24621,24623,24647,24624,24626,24627,24629,24631,24632,24634,24636,24636,24638,24640,24640,24642,24643,24643,24645,24648,24648,24605,24608,24608,24646,24611,24611,24615,24617,24618,24620,24623,24649,24647,24626,24632,24636,24640,24640,24643,24648,24648,24608,24611,24611,24617,24618,24618,24623,24649,24649,24626,24650,24651,24632,24640,24640,24648,24611,24611,24618,24649,24649,24650,24627,24651,24640,24611,24611,24649,24627,24631,24651,24611,24611,24627,24631,24652,24653,24654,24654,24655,24656,24656,24657,24658,24658,24659,24660,24660,24661,24662,24663,24652,24654,24656,24658,24660,24660,24662,24663,24663,24654,24656,24656,24660,24663,24664,24665,24666,24666,24667,24668,24668,24669,24670,24670,24671,24672,24672,24673,24674,24674,24675,24664,24664,24666,24668,24668,24670,24672,24674,24664,24668,24668,24672,24674,24676,24677,24678,24678,24679,24680,24680,24681,24682,24683,24684,24676,24676,24678,24680,24680,24682,24683,24683,24676,24680,24685,24686,24687,24687,24688,24689,24689,24690,24691,24685,24687,24689,24689,24691,24685,24692,24693,24694,24695,24696,24697,24697,24692,24694,24694,24695,24697,24698,24699,24700,24700,24701,24702,24702,24703,24704,24704,24705,24706,24707,24708,24709,24709,24698,24700,24700,24702,24704,24704,24706,24707,24707,24709,24700,24700,24704,24707,24710,24711,24712,24713,24714,24715,24716,24717,24718,24719,24720,24721,24722,24723,24724,24724,24725,24726,24727,24728,24729,24729,24730,24731,24731,24732,24733,24734,24735,24736,24736,24737,24738,24738,24739,24740,24740,24741,24742,24743,24744,24745,24745,24746,24747,24747,24748,24749,24749,24750,24751,24751,24752,24753,24753,24754,24755,24756,24757,24758,24758,24759,24760,24760,24761,24762,24763,24764,24765,24765,24766,24767,24768,24769,24770,24770,24771,24772,24772,24773,24774,24775,24776,24777,24777,24778,24779,24780,24781,24782,24782,24783,24784,24785,24786,24787,24787,24788,24789,24790,24791,24792,24792,24793,24794,24794,24795,24796,24797,24798,24799,24800,24801,24802,24802,24803,24804,24804,24805,24806,24806,24807,24808,24809,24810,24811,24811,24812,24813,24813,24814,24815,24816,24817,24818,24818,24819,24820,24821,24822,24823,24823,24824,24825,24826,24827,24828,24829,24830,24831,24831,24832,24833,24834,24835,24836,24836,24837,24838,24838,24839,24840,24840,24841,24842,24843,24844,24845,24845,24846,24847,24848,24849,24850,24850,24851,24852,24852,24853,24854,24854,24855,24856,24856,24857,24858,24859,24860,24861,24861,24862,24863,24863,24864,24865,24866,24867,24868,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24879,24879,24880,24881,24882,24883,24884,24885,24886,24887,24887,24888,24889,24889,24890,24891,24892,24893,24894,24894,24895,24896,24896,24897,24898,24898,24899,24900,24901,24902,24903,24903,24904,24905,24906,24907,24908,24909,24910,24911,24911,24912,24913,24914,24915,24916,24916,24917,24918,24918,24919,24920,24921,24922,24923,24923,24924,24925,24925,24926,24927,24927,24928,24929,24930,24931,24932,24933,24934,24935,24935,24936,24937,24938,24939,24940,24940,24941,24942,24942,24943,24944,24944,24945,24946,24946,24947,24948,24948,24949,24950,24950,24951,24952,24953,24954,24955,24956,24957,24958,24958,24959,24960,24960,24961,24962,24962,24963,24964,24965,24966,24967,24967,24968,24969,24969,24970,24971,24971,24972,24973,24974,24975,24976,24976,24977,24978,24978,24979,24980,24980,24981,24982,24983,24984,24985,24985,24986,24987,24987,24988,24989,24989,24990,24991,24992,24993,24994,24995,24996,24997,24998,24999,25000,25000,25001,25002,25002,25003,25004,25005,25006,25007,25008,25009,25010,25010,25011,25012,25012,25013,25014,25014,25015,25016,25016,25017,25018,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25029,25030,25031,25032,25033,25034,25034,25035,25036,25036,25037,25038,25038,25039,25040,25041,25042,25043,25043,25044,25045,25045,25046,25047,25047,25048,25049,25050,25051,25052,25053,25054,25055,25055,25056,25057,25058,25059,25060,25061,25062,25063,25063,25064,25065,25066,25067,25068,25069,25070,25071,25071,25072,25073,25073,25074,25075,25076,25077,25078,25078,25079,25080,25081,25082,25083,25084,25085,25086,25087,25088,25089,25089,25090,25091,25092,25093,25094,25095,25096,25097,25097,25098,25099,25100,25101,25102,25102,25103,25104,25104,25105,25106,25107,25108,25109,25109,25110,25111,25112,25113,25114,25114,25115,25116,25117,25118,25119,25119,25120,25121,25122,25123,25124,25124,25125,25126,25127,25128,25129,25129,25130,25131,25131,25132,25133,25134,25135,25136,25137,25138,25139,25139,25140,25141,25141,25142,25143,25143,25144,25145,25146,25147,25148,25149,25150,25151,25151,25152,25153,25153,25154,25155,25155,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25167,25168,25169,25169,25170,25171,25171,25172,25173,25174,25175,25176,25176,25177,25178,25178,25179,25180,25181,25182,25183,25184,25185,25186,25187,25188,25189,25189,25190,25191,25192,25193,25194,25194,25195,25196,25196,25197,25198,25198,25199,25200,25200,25201,25202,25202,25203,25204,25204,25205,25206,25207,25208,25209,25210,25211,25212,25212,25213,25214,25214,25215,25216,25217,25218,25219,25219,25220,25221,25222,25223,25224,25225,25226,25227,25227,25228,25229,25229,25230,25231,25232,25233,25234,25234,25235,25236,25237,25238,25239,25239,25240,25241,25242,25243,25244,25244,25245,25246,25246,25247,25248,25248,25249,25250,25250,25251,25252,25252,25253,25254,25255,25256,25257,25258,25259,25260,25260,25261,25262,25262,25263,25264,25264,25265,25266,25267,25268,25269,25269,25270,25271,25272,25273,25274,25274,25275,25276,25276,25277,25278,25279,25280,25281,25281,25282,25283,25284,25285,25286,25287,25288,25289,25290,25291,25292,25293,25294,25295,25295,25296,25297,25297,25298,25299,25299,25300,25301,25302,25303,25304,25304,25305,25306,25307,25308,25309,25309,25310,25311,25312,25313,25314,25315,25316,25317,25317,25318,25319,25320,25321,25322,25323,25324,25325,25325,25326,25327,25328,25329,25330,25330,25331,25332,25332,25333,25334,25335,25336,25337,25337,25338,25339,25340,25341,25342,25342,25343,25344,25345,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25356,25357,25358,25358,25359,25360,25361,25362,25363,25363,25364,25365,25365,25366,25367,25368,25369,25370,25371,25372,25373,25373,25374,25375,25376,25377,25378,25379,25380,25381,25381,25382,25383,25384,25385,25386,25386,25387,25388,25388,25389,25390,25390,25391,25392,25393,25394,25395,25395,25396,25397,25397,25398,25399,25399,25400,25401,25402,25403,25404,25405,25406,25407,25408,25409,25410,25410,25411,25412,25413,25414,25415,25416,25417,25418,25419,25420,25421,25421,25422,25423,25423,25424,25425,25425,25426,25427,25427,25428,25429,25429,25430,25431,25431,25432,25433,25433,25434,25435,25436,25437,25438,25439,25440,25441,25442,25443,25444,25444,25445,25446,25446,25447,25448,25449,25450,25451,25451,25452,25453,25453,25454,25455,25456,25457,25458,25458,25459,25460,25461,25462,25463,25464,25465,25466,25466,25467,25468,25469,25470,25471,25471,25472,25473,25474,25475,25476,25476,25477,25478,25478,25479,25480,25481,25482,25483,25484,25485,25486,25487,25488,25489,25490,25491,25492,25493,25494,25495,25495,25496,25497,25497,25498,25499,25500,25501,25502,25502,25503,25504,25505,25506,25507,25507,25508,25509,25509,25510,25511,25511,25512,25513,25513,25514,25515,25516,25517,25518,25519,25520,25521,25521,25522,25523,25524,25525,25526,25527,25528,25529,25529,25530,25531,25531,25532,25533,25534,25535,25536,25536,25537,25538,25539,25540,25541,25541,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25553,25554,25555,25555,25556,25557,25557,25558,25559,25559,25560,25561,25562,25563,25564,25565,25566,25567,25568,25569,25570,25570,25571,25572,25573,25574,25575,25576,25577,25578,25578,25579,25580,25581,25582,25583,25583,25584,25585,25586,25587,25588,25589,25590,25591,25592,25593,25594,25594,25595,25596,25597,25598,25599,25599,25600,25601,25602,25603,25604,25605,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25618,25619,25619,25620,25621,25622,25623,25624,25624,25625,25626,25627,25628,24710,24713,24715,24716,24719,24721,25629,24724,24726,25630,25631,24727,24729,24729,24731,24733,24734,24736,24738,24738,24740,24742,25632,24743,24745,24751,24753,24755,24756,24758,24760,24763,24765,24767,24768,24770,24772,24772,24774,24775,25633,24780,24782,24785,24787,24789,24794,24796,24797,24797,24799,25634,25634,24800,24802,24804,24806,24808,24809,24811,24813,24813,24815,25635,24816,24818,24820,25636,24821,24823,24825,24826,24828,24829,24831,24833,24834,24836,24838,24838,24840,24842,24843,24845,24847,24848,24850,24852,24852,24854,24856,24859,24861,24863,24863,24865,25637,25637,24866,24868,24871,24873,24874,24874,24876,25638,24877,24879,24881,25639,24885,24887,24887,24889,24891,24892,24894,24896,24896,24898,24900,24901,24903,24905,24906,24908,24909,24909,24911,24913,24914,24916,24918,24918,24920,24921,24921,24923,24925,24925,24927,24929,24932,24933,24935,24935,24937,24938,24940,24942,24944,24944,24946,24948,24948,24950,24952,24953,24955,25640,24956,24958,24960,24960,24962,24964,24967,24969,24971,24974,24976,24978,24978,24980,24982,24983,24985,24987,24987,24989,24991,24992,24994,24995,24998,25000,25002,25002,25004,25005,25005,25007,25641,25642,25008,25010,25010,25012,25014,25014,25016,25018,25021,25023,25643,25024,25026,25644,25645,25027,25029,25032,25034,25036,25036,25038,25040,25041,25043,25045,25045,25047,25049,25050,25052,25053,25053,25055,25057,25061,25063,25065,25068,25069,25071,25071,25073,25075,25646,25076,25078,25078,25080,25081,25081,25083,25084,25084,25086,25647,25087,25089,25091,25092,25094,25648,25095,25097,25099,25100,25102,25104,25104,25106,25649,25107,25109,25111,25112,25114,25116,25117,25119,25121,25124,25126,25650,25129,25131,25133,25651,25134,25136,25137,25139,25141,25143,25145,25652,25148,25149,25151,25151,25153,25155,25155,25157,25653,25158,25160,25654,25161,25163,25655,25164,25166,25656,25167,25169,25171,25171,25173,25174,25174,25176,25178,25178,25180,25657,25658,25184,25186,25187,25189,25191,25192,25194,25196,25196,25198,25200,25200,25202,25204,25204,25206,25659,25212,25214,25216,25217,25219,25221,25660,25222,25224,25224,25225,25227,25227,25229,25231,25232,25234,25236,25237,25239,25241,25242,25244,25246,25246,25248,25250,25250,25252,25254,25255,25257,25258,25258,25260,25262,25264,25266,25661,25269,25271,25662,25272,25274,25276,25276,25278,25663,25664,25279,25281,25281,25283,25665,25666,25284,25286,25286,25287,25289,25289,25290,25292,25293,25295,25297,25297,25299,25301,25302,25304,25306,25307,25309,25311,25667,25312,25314,25315,25317,25319,25320,25322,25323,25323,25325,25327,25330,25332,25334,25335,25337,25339,25340,25342,25344,25345,25347,25668,25668,25348,25350,25354,25356,25358,25358,25360,25669,25669,25361,25363,25363,25365,25367,25368,25370,25670,25371,25373,25375,25376,25378,25379,25384,25386,25388,25388,25390,25392,25395,25397,25399,25671,25402,25404,25405,25407,25672,25408,25410,25412,25673,25413,25415,25418,25419,25421,25425,25427,25429,25429,25431,25433,25433,25435,25674,25436,25438,25439,25439,25441,25442,25444,25446,25448,25449,25451,25453,25675,25456,25458,25458,25460,25676,25461,25463,25677,25464,25466,25468,25469,25471,25473,25481,25483,25484,25484,25486,25678,25489,25490,25492,25493,25495,25497,25497,25499,25679,25500,25502,25504,25680,25505,25507,25513,25515,25681,25681,25516,25518,25521,25523,25682,25524,25526,25527,25527,25529,25531,25683,25534,25536,25536,25538,25684,25539,25541,25543,25543,25544,25546,25549,25550,25552,25685,25553,25555,25555,25557,25559,25559,25561,25686,25565,25567,25568,25568,25570,25572,25572,25573,25575,25575,25576,25578,25578,25580,25687,25581,25583,25585,25586,25588,25589,25592,25594,25596,25688,25597,25599,25599,25601,25689,25689,25602,25604,25605,25607,25608,25608,25610,25611,25611,25613,25690,25690,25614,25616,25617,25619,25621,25622,25624,25626,25627,24710,24712,24712,24713,24716,25691,24719,25629,24722,24724,25630,25631,24729,24733,24734,24738,24742,25632,24745,24747,24751,24755,25692,25693,24756,24760,24762,24763,24767,24768,24772,24775,24779,25633,24782,24785,24789,24790,24794,24797,25634,24802,24804,24808,25694,24809,24813,24813,25635,25695,25695,24816,24820,25636,24823,24825,24825,24828,24829,24833,24834,24838,24838,24842,25696,25697,24843,24847,24848,24852,24856,24859,24863,25637,25637,24868,24870,24871,24874,25638,25638,24877,24881,25698,25639,24887,25699,24892,24896,24896,24900,25700,25701,24906,24909,24909,24913,25702,24914,24918,24921,24921,24925,24929,24932,24935,24938,24938,24940,24944,24944,24948,24952,24956,24960,24964,24967,24971,24973,24974,24978,24982,24982,24983,24987,25703,24992,24995,24998,25002,25005,25005,25641,25704,25642,25010,25014,25014,25018,25020,25024,25644,25645,25645,25029,25031,25032,25036,25040,25705,25041,25045,25050,25053,25057,25068,25071,25075,25646,25078,25081,25081,25084,25647,25087,25091,25092,25648,25095,25099,25099,25100,25104,25706,25107,25111,25707,25112,25116,25116,25117,25121,25124,25650,25708,25127,25129,25133,25651,25136,25709,25709,25137,25141,25141,25143,25652,25148,25151,25155,25653,25158,25654,25710,25161,25655,25711,25164,25656,25167,25171,25174,25174,25178,25657,25187,25191,25192,25192,25196,25200,25200,25204,25659,25210,25212,25216,25217,25221,25660,25660,25224,25227,25237,25241,25712,25712,25242,25246,25246,25250,25254,25255,25258,25262,25262,25264,25661,25269,25662,25713,25272,25276,25663,25664,25281,25665,25714,25666,25286,25289,25292,25715,25293,25297,25301,25716,25302,25306,25717,25307,25311,25311,25667,25314,25315,25319,25320,25320,25323,25327,25330,25334,25335,25335,25339,25718,25340,25344,25719,25668,25350,25720,25354,25358,25669,25669,25363,25367,25670,25371,25375,25721,25376,25379,25722,25384,25388,25388,25392,25723,25393,25395,25399,25671,25404,25724,25405,25672,25408,25408,25412,25725,25673,25415,25416,25418,25421,25423,25423,25425,25429,25429,25433,25674,25726,25436,25439,25448,25449,25453,25675,25458,25676,25461,25677,25727,25727,25464,25468,25728,25469,25473,25481,25484,25678,25487,25489,25492,25493,25497,25679,25500,25504,25729,25680,25507,25509,25513,25681,25518,25524,25527,25531,25683,25536,25684,25539,25543,25546,25730,25685,25555,25555,25559,25686,25731,25565,25568,25575,25578,25687,25732,25581,25585,25586,25589,25591,25733,25592,25596,25734,25688,25599,25608,25611,25690,25690,25616,25735,25617,25621,25622,25622,25626,25736,25737,25627,24712,24712,24716,24718,25691,25629,25738,25739,25631,24733,25740,24734,24742,25741,25632,24747,24749,24751,25692,24760,24762,24767,25742,24768,24775,24779,24782,24784,24785,24790,24792,24794,25634,24802,24802,24808,25743,25743,25694,24813,25636,24825,24829,24833,24838,25696,25697,24847,25744,25745,24848,24856,24859,25637,24870,24871,25638,24881,25698,24887,24891,25699,24896,25700,25701,24909,25702,24921,24929,25746,24930,24932,24938,24944,24952,25747,24956,24964,25748,24967,24973,25749,25750,24974,24982,24982,24987,24991,25703,24995,24997,25751,24998,25005,25752,25642,25014,25014,25020,25021,25024,25645,25031,25753,25032,25040,25705,25045,25049,25049,25050,25057,25066,25068,25075,25754,25646,25081,25755,25087,25092,25648,25099,25104,25706,25111,25756,25707,25116,25121,25122,25124,25708,25127,25133,25651,25651,25709,25141,25146,25148,25155,25710,25655,25757,25656,25167,25174,25174,25657,25758,25759,25187,25192,25200,25659,25760,25761,25210,25216,25217,25660,25227,25712,25246,25254,25269,25713,25272,25272,25663,25664,25664,25665,25714,25286,25289,25715,25293,25301,25716,25716,25306,25762,25717,25311,25314,25315,25320,25327,25328,25330,25335,25340,25719,25763,25353,25354,25669,25368,25670,25375,25721,25379,25381,25722,25388,25723,25764,25393,25399,25401,25671,25724,25416,25418,25423,25423,25429,25674,25726,25439,25442,25448,25453,25455,25765,25675,25676,25766,25461,25727,25728,25473,25767,25480,25481,25678,25493,25679,25500,25680,25509,25511,25513,25518,25519,25768,25524,25531,25769,25683,25684,25770,25539,25546,25552,25730,25555,25555,25686,25771,25731,25568,25572,25572,25575,25687,25772,25732,25585,25773,25586,25591,25733,25596,25774,25734,25599,25689,25605,25608,25690,25690,25735,25617,25617,25622,25736,25737,24712,24718,25630,25739,24733,25741,24747,24749,24749,25692,25693,25693,24760,24767,25775,25742,24775,24779,24784,24785,24785,24792,24794,24794,24802,25743,25743,24813,25695,25776,25636,24829,24829,24833,25696,25696,25697,25744,25745,24856,24858,24859,24870,25777,24871,24881,24882,25778,25698,24891,25699,25700,24901,25701,25702,25779,24921,25746,25780,25781,24930,24938,24944,25747,25782,24956,25748,25783,24965,24967,25749,25784,25750,24982,25751,25005,25704,25752,25014,25021,25785,25024,25031,25753,25040,25786,25705,25049,25057,25066,25075,25754,25754,25081,25647,25755,25092,25648,25648,25104,25649,25707,25121,25787,25122,25708,25788,25127,25651,25141,25146,25155,25653,25711,25656,25174,25174,25758,25789,25759,25192,25200,25200,25760,25207,25790,25217,25227,25237,25712,25254,25269,25272,25664,25286,25715,25791,25792,25293,25716,25716,25762,25717,25717,25314,25793,25315,25327,25794,25328,25335,25718,25718,25340,25763,25351,25353,25669,25368,25375,25795,25721,25381,25383,25383,25722,25723,25764,25399,25401,25416,25423,25674,25444,25448,25455,25455,25765,25676,25766,25727,25468,25728,25767,25474,25480,25678,25487,25493,25500,25729,25729,25680,25511,25513,25519,25521,25682,25768,25531,25796,25770,25546,25552,25555,25771,25731,25572,25687,25687,25772,25585,25733,25774,25734,25734,25689,25604,25605,25690,25617,25617,25736,25797,25798,25737,24718,25630,24733,25740,25693,24767,25799,24775,24777,25800,24775,25800,25775,25743,25695,25801,25743,25801,24794,25776,24829,25696,25696,25744,25802,25802,25745,24858,24859,25777,24871,24871,24882,24884,25778,24891,25803,25699,24901,24905,25701,25779,25804,24921,25780,25805,25781,24938,24944,24944,25782,24953,24956,25783,25806,25784,24982,24991,25751,25704,25752,25752,25021,25643,25785,25031,25753,25753,25786,25705,25705,25057,25807,25808,25066,25754,25754,25647,25809,25755,25648,25649,25707,25787,25810,25122,25788,25127,25127,25141,25652,25146,25653,25654,25711,25174,25789,25186,25759,25200,25200,25207,25209,25216,25790,25227,25237,25254,25255,25269,25664,25714,25286,25791,25792,25716,25717,25793,25315,25794,25811,25811,25328,25718,25718,25763,25812,25720,25351,25669,25795,25721,25383,25813,25764,25401,25673,25416,25674,25442,25444,25455,25455,25676,25814,25766,25468,25815,25815,25728,25474,25480,25487,25492,25492,25493,25729,25511,25513,25521,25682,25531,25533,25684,25796,25546,25549,25552,25771,25564,25731,25687,25687,25585,25816,25733,25734,25604,25605,25617,25797,25797,25798,24718,24722,25630,25740,25693,25799,25817,25693,25817,24749,25695,24820,25818,25818,24794,25801,25818,25801,25695,25776,25696,25819,25776,25819,24820,24859,24871,24884,25778,25803,25699,25699,24905,25820,25821,25701,25804,24914,24921,25805,25781,24944,24953,24956,25806,25822,25749,25784,24991,25751,25752,25643,25753,25705,25807,25808,25754,25809,25809,25755,25649,25823,25707,25810,25824,25122,25127,25127,25652,25825,25825,25146,25654,25826,25711,25789,25658,25186,25200,25200,25209,25827,25761,25216,25227,25828,25237,25255,25269,25714,25286,25286,25792,25716,25716,25793,25829,25315,25811,25718,25718,25812,25345,25720,25669,25367,25368,25795,25383,25813,25401,25724,25673,25674,25726,25726,25442,25455,25455,25814,25830,25766,25815,25474,25480,25492,25729,25511,25521,25682,25682,25533,25831,25684,25546,25832,25547,25549,25771,25687,25816,25833,25687,25833,25564,25591,25733,25604,25834,25605,25797,25797,24718,25691,25740,24742,25835,25740,25835,24722,25799,25775,25836,25836,24749,25817,25836,25817,25799,25837,24794,25818,25818,24820,25838,25818,25838,25837,24794,25837,25839,24794,25839,24785,25696,25802,25840,25840,24820,25819,25840,25819,25696,24858,24859,24884,25699,25820,25841,25821,25804,25842,24914,25805,25781,25781,24953,25640,24965,25749,24991,25751,25643,25785,25785,25753,25807,25065,25808,25809,25809,25649,25843,25823,25810,25824,25824,25127,25825,25825,25654,25844,25826,25789,25181,25845,25658,25200,25827,25761,25227,25236,25828,25255,25267,25269,25286,25716,25829,25846,25716,25846,25286,25829,25315,25718,25720,25367,25368,25723,25813,25724,25725,25673,25726,25726,25455,25830,25830,25766,25474,25511,25682,25831,25684,25832,25847,25847,25547,25771,25773,25591,25604,25834,25797,25691,24742,25741,25848,25848,24722,25835,25848,25835,24742,25849,25775,25800,25849,25800,24777,25775,25849,25850,25836,25850,25851,25836,25851,24749,25850,25836,25775,25852,24820,25840,25852,25840,25802,24820,25852,25853,25837,25853,25854,25854,24785,25839,25854,25839,25837,25853,25837,25838,25853,25838,24820,24858,24884,25778,25821,25842,25855,24914,25781,25640,24965,24991,25703,25785,25807,25058,25061,25065,25809,25809,25843,25856,25823,25824,25825,25825,25844,25710,25826,25181,25183,25845,25200,25827,25827,25227,25231,25857,25286,25846,25846,25829,25858,25846,25858,25857,25286,25857,25859,25286,25859,25267,25829,25718,25345,25383,25723,25724,25726,25830,25860,25726,25860,25725,25830,25474,25476,25511,25831,25861,25847,25771,25562,25773,25604,25834,25691,25738,25862,25691,25862,25834,25851,25863,25864,25851,25864,24749,25863,25851,25850,25865,25850,25849,25865,25849,24777,25850,25865,25863,25866,24749,25864,25866,25864,25863,24749,25866,25741,25854,25867,25868,25854,25868,24785,25867,25854,25853,25869,25853,25852,25869,25852,25802,25853,25869,25867,25870,24785,25868,25870,25868,25867,24785,25870,24779,25855,24914,25640,24965,25703,24997,25785,25058,25060,25061,25809,25856,25823,25825,25710,25871,25826,25183,25872,25845,25827,25827,25231,25232,25829,25345,25873,25829,25873,25874,25857,25874,25875,25875,25267,25859,25875,25859,25857,25874,25857,25858,25874,25858,25829,25383,25724,25405,25830,25476,25876,25830,25876,25877,25860,25877,25878,25860,25878,25725,25877,25860,25830,25511,25861,25769,25847,25562,25564,25773,25834,25862,25773,25862,25738,24777,24779,25879,25879,25880,25881,25879,25881,24777,25863,25880,25882,25882,25741,25866,25882,25866,25863,25880,25863,25865,25865,24777,25881,25865,25881,25880,25855,25640,24956,25883,24965,24997,25060,25061,25856,25884,25823,25710,25871,25183,25885,25886,25872,25827,25345,25668,25887,25887,25888,25889,25887,25889,25345,25874,25888,25890,25890,25267,25875,25890,25875,25874,25888,25874,25873,25873,25345,25889,25873,25889,25888,25405,25408,25891,25405,25891,25383,25769,25684,25892,25769,25892,25511,25893,25564,25833,25893,25833,25816,25564,25893,25847,25816,25773,25738,25894,24779,25870,25870,25867,25895,25870,25895,25894,25896,25867,25869,25869,25802,25897,25869,25897,25896,25867,25896,25898,25898,25894,25895,25898,25895,25867,24779,25894,25899,25899,25900,25901,25899,25901,24779,25880,25900,25902,25902,25741,25882,25902,25882,25880,25900,25880,25879,25879,24779,25901,25879,25901,25900,25821,25855,24956,25060,25856,25903,25060,25903,25785,25904,25884,25710,25871,25885,25886,25886,25827,25232,25668,25720,25905,25905,25906,25907,25905,25907,25668,25888,25906,25908,25908,25267,25890,25908,25890,25888,25906,25888,25887,25887,25668,25907,25887,25907,25906,25408,25725,25909,25909,25383,25891,25909,25891,25408,25910,25511,25892,25910,25892,25684,25511,25910,25729,25911,25847,25893,25893,25816,25912,25893,25912,25911,25847,25911,25913,25847,25913,25684,25816,25738,24722,25802,24858,25914,25914,25915,25916,25914,25916,25802,25917,25915,25918,25918,25919,25920,25918,25920,25917,25915,25917,25921,25921,25802,25916,25921,25916,25915,25894,25919,25922,25922,25923,25924,25922,25924,25894,25900,25923,25925,25925,25741,25902,25925,25902,25900,25923,25900,25899,25899,25894,25924,25899,25924,25923,25919,25894,25898,25898,25896,25926,25898,25926,25919,25917,25896,25897,25897,25802,25921,25897,25921,25917,25896,25917,25920,25920,25919,25926,25920,25926,25896,25821,24956,25822,25903,25927,25928,25903,25928,25785,25927,25903,25856,25929,25904,25710,25871,25886,25232,25720,25368,25930,25930,25931,25932,25930,25932,25720,25906,25931,25933,25933,25267,25908,25933,25908,25906,25931,25906,25905,25905,25720,25932,25905,25932,25931,25934,25383,25909,25934,25909,25725,25383,25934,25368,25935,25684,25913,25935,25913,25911,25936,25911,25912,25936,25912,25816,25911,25936,25935,25684,25935,25937,25937,25729,25910,25937,25910,25684,25938,24722,25848,25848,25741,25939,25848,25939,25938,24722,25938,25940,24722,25940,25816,25941,25821,25822,25929,25710,25757,25942,25871,25232,25933,25943,25944,25933,25944,25267,25943,25933,25931,25945,25931,25930,25945,25930,25368,25931,25945,25943,25946,25267,25944,25946,25944,25943,25267,25946,25661,25947,25725,25878,25947,25878,25877,25948,25877,25876,25876,25476,25949,25876,25949,25948,25877,25948,25950,25877,25950,25947,25725,25947,25951,25725,25951,25952,25934,25952,25953,25934,25953,25368,25952,25934,25725,25937,25954,25955,25937,25955,25729,25954,25937,25935,25956,25935,25936,25936,25816,25957,25936,25957,25956,25935,25956,25958,25935,25958,25954,25959,25729,25955,25955,25954,25960,25955,25960,25959,25729,25959,25961,25729,25961,25480,25923,25962,25963,25923,25963,25964,25925,25964,25965,25925,25965,25741,25964,25925,25923,25962,25923,25922,25922,25919,25966,25922,25966,25962,25918,25967,25968,25918,25968,25919,25967,25918,25915,25969,25915,25914,25914,24858,25970,25914,25970,25969,25915,25969,25971,25915,25971,25967,25972,25919,25968,25968,25967,25973,25968,25973,25972,25919,25972,25974,25974,25962,25966,25974,25966,25919,25975,25741,25965,25965,25964,25976,25965,25976,25975,25977,25964,25963,25963,25962,25978,25963,25978,25977,25964,25977,25979,25979,25975,25976,25979,25976,25964,25741,25975,25980,25980,25981,25982,25980,25982,25741,25938,25981,25983,25983,25816,25940,25983,25940,25938,25981,25938,25939,25939,25741,25982,25939,25982,25981,25941,25822,25883,25984,25929,25757,25985,25942,25232,25476,25478,25986,25476,25986,25987,25988,25987,25989,25988,25989,25990,25987,25988,25476,25947,25990,25991,25947,25991,25992,25952,25992,25993,25993,25368,25953,25993,25953,25952,25992,25952,25951,25992,25951,25947,25990,25947,25950,25990,25950,25948,25988,25948,25949,25988,25949,25476,25948,25988,25990,25994,25959,25995,25994,25995,25996,25959,25994,25997,25961,25997,25998,25961,25998,25480,25997,25961,25959,25960,25996,25995,25960,25995,25959,25996,25960,25954,25958,25999,26000,25958,26000,25954,25999,25958,25956,26001,25956,25957,26001,25957,25816,25956,26001,25999,26002,25954,26000,26002,26000,25999,25954,26002,25996,25998,26003,26004,25998,26004,25480,26003,25998,25997,26005,25997,25994,26005,25994,25996,25997,26005,26003,26006,25480,26004,26006,26004,26003,25480,26006,25478,25941,25883,24997,25756,25984,25757,25757,25985,25232,26007,26003,26008,26007,26008,25975,26003,26007,26009,26006,26009,26010,26006,26010,25478,26009,26006,26003,26005,25975,26008,26005,26008,26003,25975,26005,25996,26002,25981,26011,26002,26011,25996,25981,26002,25999,25983,25999,26001,25983,26001,25816,25999,25983,25981,25980,25996,26011,25980,26011,25981,25996,25980,25975,26010,25977,26012,26010,26012,25478,25977,26010,26009,25979,26009,26007,25979,26007,25975,26009,25979,25977,25978,25478,26012,25978,26012,25977,25478,25978,25962,26013,25972,26014,26013,26014,26015,25972,26013,26016,25974,26016,26017,25974,26017,25962,26016,25974,25972,25973,26015,26014,25973,26014,25972,26015,25973,25967,25971,26018,26019,25971,26019,25967,26018,25971,25969,26020,25969,25970,26020,25970,24858,25969,26020,26018,26021,25967,26019,26021,26019,26018,25967,26021,26015,26017,26022,26023,26017,26023,25962,26022,26017,26016,26024,26016,26013,26024,26013,26015,26016,26024,26022,26025,25962,26023,26025,26023,26022,25962,26025,25478,25841,25941,24997,25706,25756,25757,25757,25232,25236,25992,26015,26026,26026,25368,25993,26026,25993,25992,26015,25992,25991,26015,25991,25990,26022,25990,25989,26022,25989,25987,26025,25987,25986,26025,25986,25478,25987,26025,26022,25990,26022,26024,25990,26024,26015,26018,25368,26026,26026,26015,26021,26026,26021,26018,25368,26018,26020,25368,26020,24858,25841,24997,26027,25841,26027,25699,26028,25706,25757,24858,25778,26029,24858,26029,25368,26030,25699,26027,26030,26027,24997,25699,26030,25778,26028,25757,25236,25943,25778,26031,25943,26031,26032,25946,26032,26033,25946,26033,25661,26032,25946,25943,25778,25943,25945,25945,25368,26029,25945,26029,25778,24997,25751,26034,26034,25778,26030,26034,26030,24997,26035,26028,25236,25751,25661,26033,25751,26033,26032,26034,26032,26031,26034,26031,25778,26032,26034,25751,26036,26035,25236,25661,25751,25785,25927,26036,25236,25262,25661,25785,25927,25236,25255,25262,25785,25928,25262,25928,25927,25927,25255,25262,26037,26038,26039,26039,26040,26041,26042,26043,26044,26044,26045,26046,26047,26048,26049,26049,26050,26051,26052,26053,26054,26055,26056,26057,26057,26058,26059,26059,26060,26061,26061,26062,26063,26063,26064,26065,26066,26067,26068,26068,26069,26070,26070,26071,26072,26073,26074,26075,26076,26077,26078,26078,26079,26080,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26091,26092,26093,26093,26094,26095,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26106,26107,26108,26108,26109,26110,26111,26112,26113,26113,26114,26115,26116,26117,26118,26119,26120,26121,26121,26122,26123,26124,26125,26126,26127,26128,26129,26130,26131,26132,26132,26133,26134,26134,26135,26136,26136,26137,26138,26138,26139,26140,26141,26142,26143,26143,26144,26145,26145,26146,26147,26148,26037,26039,26039,26041,26149,26042,26044,26046,26047,26049,26051,26051,26052,26054,26055,26057,26059,26059,26061,26063,26066,26068,26070,26070,26072,26150,26073,26075,26151,26152,26076,26078,26078,26080,26082,26083,26085,26153,26086,26088,26089,26089,26091,26093,26093,26095,26097,26104,26106,26108,26111,26113,26115,26116,26118,26119,26119,26121,26123,26126,26127,26129,26130,26132,26134,26136,26138,26140,26140,26141,26143,26143,26145,26147,26147,26148,26039,26149,26042,26046,26047,26051,26054,26154,26055,26059,26059,26063,26065,26155,26066,26070,26070,26150,26156,26157,26073,26151,26152,26078,26082,26086,26089,26093,26093,26097,26158,26104,26108,26110,26159,26111,26115,26116,26119,26123,26124,26126,26129,26129,26130,26134,26136,26140,26143,26143,26147,26039,26149,26046,26160,26161,26047,26054,26162,26154,26059,26059,26065,26163,26155,26070,26156,26152,26082,26164,26086,26093,26158,26104,26110,26165,26115,26116,26123,26124,26129,26134,26143,26039,26149,26149,26160,26166,26161,26054,26167,26162,26059,26163,26168,26155,26156,26152,26164,26169,26153,26086,26158,26104,26165,26159,26159,26115,26123,26124,26134,26136,26149,26166,26161,26161,26167,26170,26170,26162,26163,26171,26168,26156,26152,26169,26172,26083,26153,26158,26103,26104,26159,26159,26123,26124,26124,26136,26143,26149,26161,26170,26170,26163,26173,26172,26083,26158,26103,26159,26124,26149,26170,26173,26172,26158,26098,26101,26103,26124,26149,26173,26174,26152,26172,26098,26101,26124,26143,26149,26174,26175,26152,26098,26100,26149,26175,26171,26152,26100,26101,26143,26149,26171,26152,26101,26143,26143,26171,26156,26151,26152,26143,26143,26156,26157,26157,26151,26143,26176,26177,26178,26178,26179,26180,26181,26182,26183,26183,26184,26185,26185,26186,26187,26187,26188,26189,26189,26190,26191,26192,26193,26194,26194,26195,26196,26196,26197,26176,26176,26178,26180,26181,26183,26185,26185,26187,26189,26189,26191,26198,26192,26194,26196,26196,26176,26180,26180,26181,26185,26185,26189,26198,26199,26192,26196,26180,26185,26198,26199,26196,26180,26180,26198,26200,26201,26199,26180,26180,26200,26201,26202,26203,26204,26205,26206,26207,26207,26208,26209,26210,26211,26212,26213,26214,26215,26215,26216,26217,26218,26219,26220,26221,26222,26223,26223,26224,26225,26225,26226,26227,26228,26229,26230,26231,26232,26233,26234,26235,26236,26237,26238,26239,26239,26240,26241,26241,26242,26243,26243,26244,26202,26202,26204,26205,26205,26207,26209,26209,26210,26212,26215,26217,26245,26218,26220,26221,26221,26223,26225,26225,26227,26246,26231,26233,26247,26234,26236,26248,26237,26239,26241,26241,26243,26202,26205,26209,26212,26213,26215,26245,26218,26221,26225,26225,26246,26228,26231,26247,26234,26249,26237,26241,26241,26202,26205,26205,26212,26250,26251,26213,26245,26245,26218,26225,26225,26228,26230,26231,26234,26248,26248,26249,26241,26241,26205,26250,26251,26245,26225,26225,26230,26231,26231,26248,26241,26241,26250,26251,26251,26225,26231,26231,26241,26251,26252,26253,26254,26254,26255,26256,26257,26258,26259,26259,26260,26261,26261,26262,26263,26264,26265,26266,26267,26268,26269,26269,26270,26271,26271,26272,26273,26274,26275,26276,26276,26277,26278,26278,26279,26280,26280,26281,26282,26282,26283,26284,26285,26286,26287,26288,26289,26290,26290,26291,26292,26292,26293,26294,26294,26295,26296,26296,26297,26298,26299,26300,26301,26301,26302,26303,26304,26305,26252,26252,26254,26256,26257,26259,26261,26306,26264,26266,26267,26269,26271,26271,26273,26307,26274,26276,26278,26278,26280,26282,26285,26287,26288,26288,26290,26292,26292,26294,26296,26296,26298,26299,26299,26301,26303,26304,26252,26256,26256,26257,26261,26306,26266,26308,26309,26267,26271,26274,26278,26282,26285,26288,26292,26292,26296,26299,26299,26303,26310,26304,26256,26261,26306,26308,26309,26309,26271,26307,26307,26274,26282,26311,26285,26292,26292,26299,26310,26310,26304,26261,26309,26307,26282,26311,26292,26310,26310,26261,26263,26306,26309,26282,26312,26311,26310,26310,26263,26306,26306,26282,26284,26312,26310,26306,26306,26284,26313,26314,26312,26306,26306,26313,26315,26315,26314,26306,26316,26317,26318,26318,26319,26320,26320,26321,26322,26322,26323,26324,26324,26325,26326,26326,26327,26328,26329,26330,26316,26316,26318,26320,26320,26322,26324,26324,26326,26328,26329,26316,26320,26320,26324,26328,26328,26329,26320,26331,26332,26333,26333,26334,26335,26335,26336,26337,26338,26339,26340,26340,26341,26342,26342,26343,26344,26345,26346,26347,26347,26348,26349,26349,26350,26351,26351,26352,26353,26353,26354,26355,26356,26357,26358,26358,26359,26360,26361,26362,26363,26331,26333,26335,26335,26337,26338,26338,26340,26342,26345,26347,26349,26349,26351,26353,26353,26355,26364,26364,26356,26358,26358,26360,26361,26331,26335,26338,26365,26345,26349,26349,26353,26364,26364,26358,26361,26363,26331,26338,26366,26365,26349,26364,26361,26363,26363,26338,26342,26366,26349,26364,26363,26342,26344,26367,26366,26364,26364,26363,26344,26344,26367,26364,26368,26369,26370,26370,26371,26372,26372,26373,26374,26375,26376,26377,26378,26379,26380,26381,26382,26383,26384,26385,26386,26386,26387,26388,26389,26390,26391,26392,26368,26370,26370,26372,26374,26375,26377,26393,26378,26380,26381,26381,26383,26384,26384,26386,26388,26389,26391,26392,26392,26370,26374,26374,26375,26393,26393,26378,26381,26381,26384,26388,26388,26389,26392,26392,26374,26393,26393,26381,26388,26388,26392,26393,26394,26395,26396,26396,26397,26398,26398,26399,26400,26400,26401,26402,26403,26404,26405,26405,26406,26407,26407,26408,26409,26410,26411,26412,26412,26413,26414,26414,26415,26416,26417,26418,26419,26420,26421,26422,26422,26423,26424,26424,26425,26426,26427,26428,26429,26429,26430,26431,26432,26433,26434,26435,26436,26437,26437,26438,26439,26394,26396,26398,26398,26400,26402,26440,26403,26405,26405,26407,26409,26410,26412,26414,26414,26416,26441,26417,26419,26442,26420,26422,26424,26426,26427,26429,26429,26431,26443,26443,26432,26434,26435,26437,26439,26394,26398,26402,26440,26405,26409,26444,26410,26414,26414,26441,26445,26446,26420,26424,26426,26429,26443,26443,26434,26435,26435,26439,26447,26447,26394,26402,26440,26409,26448,26449,26444,26414,26446,26424,26426,26426,26443,26435,26447,26402,26440,26440,26448,26450,26449,26414,26445,26451,26446,26426,26447,26440,26450,26450,26449,26445,26451,26426,26435,26435,26447,26450,26450,26445,26417,26442,26451,26435,26435,26450,26417,26417,26442,26435,26452,26453,26454,26455,26456,26457,26458,26459,26460,26460,26461,26462,26463,26464,26465,26465,26466,26467,26452,26454,26455,26455,26457,26458,26458,26460,26462,26463,26465,26467,26467,26452,26455,26455,26458,26462,26462,26463,26467,26467,26455,26462,26468,26469,26470,26471,26472,26473,26474,26475,26476,26477,26478,26479,26479,26480,26481,26481,26482,26483,26483,26484,26485,26486,26487,26488,26489,26490,26491,26491,26492,26493,26494,26495,26496,26496,26497,26498,26499,26500,26501,26501,26502,26503,26503,26504,26505,26505,26506,26507,26508,26509,26510,26510,26511,26512,26513,26514,26515,26515,26516,26517,26517,26468,26470,26471,26473,26518,26474,26476,26519,26477,26479,26481,26481,26483,26485,26486,26488,26520,26489,26491,26493,26499,26501,26503,26503,26505,26507,26521,26508,26510,26513,26515,26517,26517,26470,26471,26471,26518,26474,26477,26481,26485,26522,26486,26520,26523,26489,26493,26499,26503,26507,26521,26510,26512,26524,26513,26517,26517,26471,26474,26477,26485,26525,26522,26520,26523,26523,26493,26494,26498,26499,26507,26526,26521,26512,26512,26524,26517,26517,26474,26519,26519,26477,26525,26523,26494,26496,26496,26498,26507,26526,26512,26517,26519,26525,26527,26523,26496,26507,26519,26527,26528,26523,26507,26526,26519,26528,26529,26522,26523,26526,26517,26519,26529,26522,26526,26517,26517,26529,26522,26530,26531,26532,26532,26533,26534,26534,26535,26536,26537,26538,26539,26540,26541,26542,26542,26543,26544,26544,26545,26546,26546,26547,26548,26549,26550,26551,26551,26530,26532,26532,26534,26536,26552,26537,26539,26542,26544,26546,26546,26548,26549,26551,26532,26536,26536,26552,26539,26542,26546,26549,26549,26551,26536,26536,26539,26553,26540,26542,26549,26549,26536,26553,26553,26540,26549,26554,26555,26556,26556,26557,26558,26559,26560,26561,26561,26562,26563,26564,26565,26566,26566,26567,26568,26568,26569,26570,26570,26571,26572,26572,26573,26574,26575,26576,26577,26577,26578,26579,26580,26581,26582,26582,26583,26584,26584,26585,26586,26587,26588,26589,26589,26590,26591,26592,26554,26556,26558,26559,26561,26561,26563,26593,26564,26566,26568,26568,26570,26572,26572,26574,26575,26575,26577,26579,26580,26582,26584,26586,26587,26589,26589,26591,26594,26595,26592,26556,26556,26558,26561,26596,26564,26568,26568,26572,26575,26575,26579,26580,26580,26584,26586,26586,26589,26594,26595,26556,26561,26596,26568,26575,26575,26580,26586,26597,26595,26561,26593,26596,26575,26575,26586,26594,26594,26597,26561,26561,26593,26575,26575,26594,26561,26598,26599,26600,26601,26602,26603,26603,26604,26605,26605,26606,26607,26607,26608,26609,26610,26611,26612,26612,26613,26614,26614,26615,26598,26598,26600,26601,26601,26603,26605,26605,26607,26609,26610,26612,26614,26614,26598,26601,26601,26605,26609,26616,26610,26614,26601,26609,26616,26616,26614,26601,26617,26618,26619,26619,26620,26621,26621,26622,26623,26623,26624,26625,26625,26617,26619,26619,26621,26623,26623,26625,26619,26626,26627,26628,26628,26629,26630,26630,26631,26632,26632,26633,26634,26635,26636,26637,26637,26638,26639,26639,26626,26628,26628,26630,26632,26632,26634,26640,26640,26635,26637,26637,26639,26628,26628,26632,26640,26640,26637,26628,26641,26642,26643,26643,26644,26645,26646,26647,26648,26648,26649,26650,26650,26651,26652,26653,26654,26655,26655,26656,26657,26657,26658,26659,26659,26641,26643,26646,26648,26650,26653,26655,26657,26657,26659,26643,26645,26646,26650,26653,26657,26643,26643,26645,26650,26660,26653,26643,26643,26650,26652,26652,26660,26643,26661,26662,26663,26664,26665,26666,26666,26667,26668,26668,26669,26670,26671,26661,26663,26664,26666,26668,26668,26670,26671,26671,26663,26664,26664,26668,26671,26672,26673,26674,26674,26675,26676,26676,26677,26678,26678,26679,26680,26680,26672,26674,26674,26676,26678,26678,26680,26674,26681,26682,26683,26683,26684,26685,26685,26686,26687,26687,26688,26689,26689,26690,26691,26692,26693,26694,26694,26681,26683,26683,26685,26687,26687,26689,26691,26692,26694,26683,26683,26687,26691,26691,26692,26683,26695,26696,26697,26697,26698,26699,26700,26701,26702,26703,26704,26705,26705,26706,26707,26708,26709,26710,26710,26711,26712,26713,26714,26715,26715,26695,26697,26697,26699,26716,26716,26700,26702,26702,26703,26705,26705,26707,26708,26708,26710,26712,26713,26715,26697,26697,26716,26702,26702,26705,26708,26712,26713,26697,26697,26702,26708,26708,26712,26697,26717,26718,26719,26719,26720,26721,26722,26723,26724,26724,26725,26726,26727,26728,26729,26729,26730,26731,26731,26717,26719,26719,26721,26722,26722,26724,26726,26727,26729,26731,26731,26719,26722,26722,26726,26727,26727,26731,26722,26732,26733,26734,26734,26735,26736,26736,26737,26738,26738,26739,26740,26740,26741,26742,26742,26743,26732,26732,26734,26736,26736,26738,26740,26742,26732,26736,26736,26740,26742,26744,26745,26746,26746,26747,26748,26749,26750,26751,26751,26752,26753,26754,26755,26756,26756,26757,26744,26744,26746,26748,26749,26751,26753,26753,26754,26756,26756,26744,26748,26749,26753,26756,26756,26748,26749,26758,26759,26760,26760,26761,26762,26762,26763,26764,26764,26765,26766,26766,26767,26768,26769,26770,26771,26771,26772,26773,26773,26774,26775,26775,26758,26760,26762,26764,26766,26769,26771,26773,26773,26775,26760,26760,26762,26766,26768,26769,26773,26773,26760,26766,26766,26768,26773,26776,26777,26778,26778,26779,26780,26780,26781,26782,26782,26783,26784,26784,26785,26786,26787,26776,26778,26778,26780,26782,26782,26784,26786,26786,26787,26778,26778,26782,26786,26788,26789,26790,26790,26791,26792,26792,26793,26794,26794,26795,26796,26796,26797,26788,26788,26790,26792,26792,26794,26796,26796,26788,26792,26798,26799,26800,26800,26801,26802,26802,26803,26804,26804,26805,26806,26806,26807,26808,26809,26810,26811,26812,26813,26814,26815,26816,26817,26818,26819,26820,26820,26821,26822,26822,26823,26824,26824,26825,26826,26826,26827,26828,26829,26798,26800,26800,26802,26804,26804,26806,26808,26812,26814,26815,26815,26817,26830,26831,26818,26820,26820,26822,26824,26804,26808,26832,26811,26812,26815,26815,26830,26833,26831,26820,26824,26804,26832,26834,26811,26815,26833,26833,26831,26824,26800,26804,26834,26809,26811,26833,26833,26824,26826,26800,26834,26809,26833,26826,26828,26829,26800,26809,26809,26833,26828,26828,26829,26809,26835,26836,26837,26837,26838,26839,26839,26840,26841,26841,26842,26843,26843,26844,26845,26845,26846,26847,26848,26835,26837,26837,26839,26841,26843,26845,26847,26849,26848,26837,26837,26841,26843,26843,26847,26849,26849,26837,26843,26850,25620,25619,25618,25617,25735,25615,25614,25690,25690,25613,25612,25612,25611,25610,25609,25608,25607,25606,25605,25834,25834,25604,25603,25603,25602,25689,25598,25597,25688,25688,25734,25774,25593,25592,25733,25733,25591,25590,25590,25589,25588,25587,25586,25773,25773,25816,25585,25582,25581,25732,25732,25772,25687,25687,25580,25579,25579,25578,25577,25577,25576,25575,25574,25573,25572,25569,25568,25567,25566,25565,25731,25731,25564,25563,25563,25562,25771,25771,25686,25561,25561,25560,26851,26851,26852,26853,26854,26855,26856,26857,26858,26859,26859,26860,26861,26861,26862,26863,26864,26865,26866,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26877,26878,26879,26880,26881,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26891,26892,26893,26894,26895,26896,26897,26898,26899,26899,26900,26901,26901,26902,26903,26903,26904,26905,26906,26907,26908,26909,26910,26911,26912,26913,26914,26914,26915,26916,26917,26918,26919,26920,26921,26922,26922,26923,26924,26925,26926,26927,26928,26929,26930,26930,26931,26932,26933,26934,26935,26936,26937,26938,26939,26940,26941,26941,26942,26943,26943,26944,26945,26946,26947,26948,26949,26950,26951,26951,26952,26953,26954,26955,26956,26956,26957,26958,26958,26959,26960,26961,26962,26963,26963,26964,26965,26965,26966,26967,26967,26968,26969,26969,26970,26971,26971,26972,26973,26973,26974,26975,26976,26977,26978,26979,26980,26981,26982,26983,26984,26985,26986,26987,26987,26988,26989,26990,26991,26992,26992,26993,26994,26995,26996,26997,26998,26999,27000,27001,27002,27003,27004,27005,27006,27006,27007,27008,27008,27009,27010,27011,27012,27013,27014,27015,27016,27017,27018,27019,27020,27021,27022,27022,27023,27024,27025,27026,27027,27027,27028,27029,27029,27030,27031,27032,27033,27034,27034,27035,27036,27037,27038,27039,27040,27041,27042,27042,27043,27044,27044,27045,27046,27047,27048,27049,27049,27050,27051,27052,27053,27054,27054,27055,27056,27057,27058,27059,27060,27061,27062,27062,27063,27064,27065,27066,27067,27067,27068,27069,27069,27070,27071,27072,27073,27074,27075,27076,27077,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27087,27088,27089,27090,27091,27092,27093,27094,27095,27096,27097,27097,27098,27099,27100,27101,27102,27102,27103,27104,27104,27105,27106,27106,27107,27108,27109,27110,27111,27111,27112,27113,27114,27115,27116,27117,27118,27119,27119,27120,27121,27121,27122,27123,27124,26850,25619,25618,25735,25616,25615,25690,25612,25610,25609,25607,25607,25606,25834,25603,25689,25601,25598,25688,25774,25593,25733,25590,25588,25587,25773,25773,25585,25584,25582,25732,25687,25577,25575,25574,25574,25572,25571,25570,25569,25567,25566,25731,25563,25563,25771,25561,25561,26851,26853,26854,26856,27125,26857,26859,26861,26864,26866,26868,26875,26877,26879,26883,26885,27126,26886,26888,26889,26889,26891,26893,26893,26894,26896,27127,26897,26899,26901,26903,26905,27128,26909,26911,26912,26914,26916,27129,26920,26922,26925,26927,27130,26930,26932,27131,26939,26941,26943,27132,26949,26951,26951,26953,26954,26954,26956,26958,26958,26960,27133,26961,26963,26965,26965,26967,26969,26969,26971,26973,26976,26978,27134,27135,26979,26981,26984,26985,26987,26990,26992,26994,27136,26998,27000,27001,27003,27137,27004,27006,27008,27008,27010,27138,27139,27011,27013,27014,27016,27140,27141,27017,27019,27020,27022,27024,27024,27025,27027,27027,27029,27031,27032,27034,27036,27036,27037,27039,27040,27042,27044,27047,27049,27051,27057,27059,27060,27060,27062,27064,27065,27067,27069,27071,27072,27074,27075,27077,27079,27080,27082,27083,27083,27085,27142,27086,27088,27143,27143,27089,27091,27091,27092,27094,27095,27097,27099,27100,27102,27104,27104,27106,27108,27109,27111,27113,27114,27116,27144,27144,27117,27119,27119,27121,27123,27124,25619,25618,25615,25612,25610,25610,25607,25834,25603,25601,25600,25598,25774,25596,25593,25590,25588,25588,25773,25584,25582,25687,25579,25577,25574,25571,25571,25570,25567,25567,25566,25563,25563,25561,26853,26853,26854,27125,26857,26861,26863,26864,26868,26869,27145,26875,26879,26883,27126,27146,26886,26889,26893,26893,26896,27127,27127,26899,26901,26901,26905,26906,27128,26911,27147,27147,26912,26916,27129,26922,26924,27148,26925,27130,26928,26930,27131,26939,26943,26945,27132,26951,26954,26954,26958,27133,27149,26961,26965,26965,26969,26973,27150,26976,27134,26984,26987,26989,27151,26990,26994,27136,27000,27001,27001,27137,27004,27004,27008,27138,27139,27013,27152,27014,27140,27153,27141,27019,27154,27020,27024,27027,27027,27031,27032,27032,27036,27039,27040,27044,27046,27046,27047,27051,27056,27057,27060,27060,27064,27065,27065,27069,27071,27074,27075,27079,27155,27080,27083,27143,27091,27094,27094,27095,27099,27100,27104,27108,27109,27113,27156,27114,27144,27119,27119,27123,27157,27158,27124,25618,25615,25610,25834,25598,25596,25595,25594,25593,25588,25588,25584,25583,25583,25582,25579,25567,25563,26853,26853,27125,26857,26857,26863,27159,26864,26869,26871,27145,26879,27160,27161,26886,26893,27128,27147,26916,26919,27129,26924,27162,27148,27130,26928,27131,26933,27163,26939,26945,27164,27132,26954,26954,27133,27149,27149,26965,26973,27165,27150,27134,26982,26984,26989,27151,26994,26995,27136,27001,27004,27004,27138,27139,27139,27152,27014,27141,27154,27166,27167,27020,27027,27027,27032,27039,27168,27040,27046,27046,27051,27169,27056,27060,27065,27074,27079,27170,27155,27083,27142,27143,27094,27099,27100,27108,27171,27172,27109,27156,27156,27114,27119,27119,27157,27158,27158,25618,25616,25615,25834,25603,25598,25595,25594,25594,25588,25583,25583,25579,25577,25571,25567,26853,27173,26864,26871,27174,27145,27160,27146,27161,26893,27175,27128,26916,26917,26919,26924,27176,27162,27130,27130,26928,26933,27163,26945,27177,26954,27149,26973,27165,27134,27135,26981,26982,26989,26989,27151,26995,27153,27141,27166,27167,27027,27039,27046,27169,27178,27054,27056,27065,27071,27074,27170,27170,27155,27142,27086,27143,27099,27100,27171,27179,27156,27119,27158,25616,25615,25603,25598,25594,25583,25577,25571,26853,27173,26871,27180,27174,27160,26880,26883,27146,26893,27181,27175,26916,27182,26917,26924,26924,27176,27130,27130,26933,26935,27163,27177,27183,26954,26973,27184,26954,27184,27164,27165,27135,26981,26981,26989,26995,27153,27166,27167,27167,27039,27168,27046,27178,27052,27054,27065,27071,27071,27170,27142,27086,27099,27185,27100,27179,27186,27156,27158,25616,25616,25603,25600,25598,25583,25577,25577,26853,26857,27173,27180,26872,27174,26880,26882,27187,26883,26893,27188,27181,26916,27182,26924,27130,27130,26935,26936,26938,27163,27183,26973,26975,27189,27189,27164,27184,27189,27184,26973,26975,27165,26981,26981,26995,26997,27153,27167,27168,27052,27054,27071,27071,27142,27190,27190,27086,27185,27172,27156,25616,25616,25600,25599,25577,26857,27191,25577,27191,25598,26874,27174,26882,27187,26893,27127,26908,27188,26916,27130,26936,27192,27130,27192,27182,26938,27183,26946,26975,26981,27193,27193,27164,27189,27193,27189,26975,26981,26997,27136,27014,27153,27168,27046,27052,27071,27190,27185,27100,25616,25599,27194,25616,27194,27172,27195,25598,27191,27195,27191,26857,25598,27195,25599,26872,26874,26882,27196,27187,27127,26908,26916,27182,26936,26938,27197,27197,27182,27192,27197,27192,26936,26938,26946,26948,26981,27136,27198,26981,27198,27199,27193,27199,27200,27193,27200,27164,27199,27193,26981,27014,27168,27201,27014,27201,27139,27046,27071,27202,27046,27202,27168,27190,27100,27186,27203,25599,27195,27195,26857,27204,27195,27204,27203,25599,27203,27205,27205,27172,27194,27205,27194,25599,27173,26872,26882,26882,27196,27127,26908,27182,27197,27197,26938,27206,27197,27206,26908,26938,26948,27164,27136,27004,27207,27207,27208,27209,27207,27209,27136,27199,27208,27210,27210,27164,27200,27210,27200,27199,27208,27199,27198,27198,27136,27209,27198,27209,27208,27211,27139,27201,27211,27201,27168,27139,27211,27004,27071,27190,27212,27212,27168,27202,27212,27202,27071,27190,27186,27172,27213,27203,27214,27213,27214,27159,27203,27213,27215,27205,27215,27216,27205,27216,27172,27215,27205,27203,27204,27159,27214,27204,27214,27203,27159,27204,26857,26882,27127,27217,26882,27217,27173,27218,26908,27206,27218,27206,26938,26908,27218,26906,27219,27004,27211,27211,27168,27220,27211,27220,27219,27004,27219,27221,27004,27221,27222,27208,27222,27223,27208,27223,27224,27224,27164,27210,27224,27210,27208,27222,27208,27207,27222,27207,27004,27190,27172,27225,27190,27225,27226,27212,27226,27227,27212,27227,27168,27226,27212,27190,27159,27173,27228,27228,27229,27230,27228,27230,27159,27215,27229,27231,27231,27172,27216,27231,27216,27215,27229,27215,27213,27213,27159,27230,27213,27230,27229,27127,26901,27232,27127,27232,27233,27217,27233,27234,27217,27234,27173,27233,27217,27127,27235,26906,27218,27235,27218,26938,26906,27235,26901,27236,27237,27238,27238,27222,27239,27238,27239,27236,27240,27236,27241,27240,27241,27172,27236,27240,27237,27242,27224,27243,27242,27243,27237,27224,27242,27164,27238,27224,27223,27238,27223,27222,27238,27237,27243,27238,27243,27224,27244,27219,27245,27244,27245,27226,27244,27222,27221,27244,27221,27219,27227,27219,27220,27227,27220,27168,27227,27226,27245,27227,27245,27219,27225,27236,27246,27225,27246,27226,27225,27172,27241,27225,27241,27236,27244,27236,27239,27244,27239,27222,27244,27226,27246,27244,27246,27236,27247,27233,27248,27247,27248,27249,27247,27173,27234,27247,27234,27233,27250,27233,27232,27250,27232,26901,27250,27249,27248,27250,27248,27233,27251,27229,27252,27251,27252,27249,27251,27172,27231,27251,27231,27229,27247,27229,27228,27247,27228,27173,27247,27249,27252,27247,27252,27229,27235,27164,27253,27235,27253,26901,27164,27235,26938,27242,27254,27255,27242,27255,27164,27254,27242,27237,27254,26901,27253,27253,27164,27255,27253,27255,27254,27249,27237,27240,27240,27172,27251,27240,27251,27249,27254,27249,27250,27254,27250,26901,27249,27254,27237,27256,27257,27258,27258,27259,27260,27261,27262,27263,27263,27264,27265,27266,27267,27268,27268,27269,27270,27270,27271,27272,27272,27273,27274,27274,27275,27276,27277,27278,27279,27279,27280,27281,27281,27282,27283,27283,27284,27285,27285,27286,27287,27287,27288,27289,27290,27291,27292,27292,27293,27294,27294,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27305,27306,27307,27308,27309,27310,27311,27311,27312,27313,27313,27314,27315,27316,27317,27318,27319,27320,27321,27321,27322,27323,27324,27325,27326,27326,27327,27328,27329,27330,27331,27331,27332,27333,27333,27334,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27344,27345,27346,27347,27348,27349,27349,27350,27351,27351,27352,27353,27354,27355,27356,27356,27357,27358,27359,27360,27361,27362,27363,27364,27364,27365,27366,27366,27367,27368,27368,27369,27370,27371,27372,27373,27373,27374,27375,27375,27376,27377,27377,27378,27379,27379,27380,27381,27382,27383,27384,27384,27385,27386,27387,27388,27389,27389,27390,27391,27391,27392,27393,27394,27395,27396,27397,27398,27399,27399,27400,27401,27402,27403,27404,27404,27405,27406,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27417,27418,27419,27420,27421,27422,27422,27423,27424,27424,27425,27426,27427,27428,27429,27430,27431,27432,27433,27434,27435,27436,27437,27438,27439,27440,27441,27441,27442,27443,27443,27444,27445,27446,27447,27448,27448,27449,27450,27451,27452,27453,27453,27454,27455,27455,27456,27457,27458,27459,27460,27461,27462,27463,27463,27464,27465,27465,27466,27467,27468,27469,27470,27471,27472,27473,27473,27474,27475,27476,27477,27478,27478,27479,27480,27480,27481,27482,27482,27483,27484,27484,27485,27486,27487,27488,27489,27490,27491,27492,27492,27493,27494,27495,27496,27497,27498,27499,27500,27501,27502,27503,27504,27505,27506,27506,27507,27508,27508,27509,27510,27511,27512,27513,27513,27514,27515,27516,27517,27518,27518,27519,27520,27521,27522,27523,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27534,27534,27535,27536,27536,27537,27538,27538,24711,24710,25628,25627,25737,25737,25798,25797,25797,25736,25626,25623,25622,25621,25621,25620,26850,26850,27124,27158,27158,27157,27123,27120,27119,27118,27118,27117,27144,27115,27114,27156,27110,27109,27172,27172,27186,27179,27179,27171,27108,27101,27100,27185,27096,27095,27094,27093,27092,27091,27090,27089,27143,27087,27086,27190,27190,27142,27085,27084,27083,27082,27081,27080,27155,27155,27170,27079,27076,27075,27074,27073,27072,27071,27070,27069,27068,27068,27067,27066,27066,27065,27064,27064,27063,27539,27539,27540,27541,27542,27543,27544,27545,27546,27547,27547,27548,27549,27550,27551,27552,27553,27554,27555,27555,27556,27557,27557,27558,27559,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27570,27571,27572,27572,27573,27574,27575,27576,27577,27577,27578,27579,27579,27580,27581,27581,27582,27583,27583,27584,27585,27586,27587,27588,27589,27590,27591,27592,27593,27594,27595,27596,27597,27597,27598,27599,27600,27601,27602,27602,27603,27604,27605,27606,27607,27608,27609,27610,27610,27611,27612,27613,27614,27615,27616,27617,27618,27618,27619,27620,27621,27622,27623,27623,27624,27625,27625,27626,27627,27627,27628,27629,27630,27631,27632,27632,27633,27634,27635,27636,27637,27638,27639,27640,27640,27641,27642,27642,27643,27644,27645,27646,27647,27648,27649,27650,27650,27651,27652,27652,27653,27654,27655,27656,27657,27658,27659,27660,27660,27661,27662,27662,27663,27664,27664,27256,27258,27260,27261,27263,27263,27265,27665,27270,27272,27274,27274,27276,27666,27277,27279,27281,27283,27285,27287,27290,27292,27294,27294,27296,27667,27668,27303,27305,27306,27308,27669,27670,27309,27311,27311,27313,27315,27316,27318,27319,27319,27321,27323,27324,27326,27328,27329,27331,27333,27333,27335,27336,27336,27338,27339,27339,27341,27671,27672,27342,27344,27349,27351,27353,27354,27356,27358,27359,27361,27673,27362,27364,27366,27368,27370,27674,27371,27373,27375,27375,27377,27379,27382,27384,27386,27387,27389,27391,27391,27393,27394,27394,27396,27397,27397,27399,27401,27404,27406,27408,27409,27411,27675,27415,27417,27419,27422,27424,27426,27427,27429,27676,27433,27435,27677,27677,27436,27438,27439,27441,27443,27445,27446,27448,27448,27450,27451,27451,27453,27455,27455,27457,27678,27458,27460,27679,27461,27463,27465,27465,27467,27680,27471,27473,27475,27478,27480,27482,27482,27484,27486,27681,27487,27489,27682,27490,27492,27492,27494,27495,27495,27497,27498,27498,27500,27683,27501,27503,27504,27504,27506,27508,27508,27510,27511,27513,27515,27516,27518,27520,27521,27521,27523,27525,27526,27528,27529,27529,27531,27684,27532,27534,27536,27536,27538,24710,24710,25628,25737,25737,25797,25626,25623,25621,26850,26850,27158,27123,27121,27120,27118,27118,27144,27116,27115,27156,27113,27111,27110,27172,27172,27179,27108,27102,27101,27185,27096,27094,27093,27093,27091,27090,27090,27143,27088,27087,27190,27085,27082,27081,27155,27076,27074,27073,27073,27071,27070,27068,27066,27064,27064,27539,27541,27685,27542,27544,27686,27545,27547,27550,27552,27687,27688,27553,27555,27557,27559,27561,27561,27562,27564,27689,27568,27570,27570,27572,27574,27575,27577,27579,27579,27581,27583,27583,27585,27690,27586,27588,27589,27592,27594,27595,27595,27597,27599,27600,27602,27604,27605,27607,27691,27608,27610,27612,27615,27616,27618,27618,27620,27692,27621,27623,27625,27625,27627,27629,27630,27632,27634,27634,27635,27637,27638,27640,27642,27642,27644,27693,27645,27647,27648,27650,27652,27654,27655,27657,27694,27658,27660,27662,27662,27664,27258,27260,27263,27665,27268,27270,27274,27274,27666,27277,27277,27281,27283,27283,27287,27289,27290,27294,27667,27302,27668,27305,27670,27311,27315,27316,27319,27323,27324,27328,27695,27329,27333,27336,27339,27671,27696,27672,27344,27346,27347,27349,27353,27697,27362,27366,27368,27674,27698,27699,27371,27375,27375,27379,27381,27700,27382,27386,27391,27394,27397,27397,27401,27402,27404,27408,27701,27702,27415,27419,27420,27422,27426,27427,27676,27430,27433,27677,27438,27439,27443,27445,27445,27448,27451,27451,27455,27678,27458,27679,27703,27704,27461,27465,27471,27475,27476,27482,27486,27705,27705,27681,27489,27682,27492,27495,27495,27498,27683,27706,27501,27504,27504,27508,27511,27511,27513,27516,27518,27521,27525,27526,27529,27684,27707,27532,27536,27536,24710,25737,25737,25626,25625,25623,26850,27123,27121,27118,27116,27116,27115,27113,27111,27172,27108,27102,27185,27099,27093,27090,27088,27088,27087,27085,27082,27155,27079,27077,27076,27073,27073,27070,27068,27068,27064,27541,27685,27544,27686,27686,27547,27549,27550,27687,27688,27688,27555,27557,27689,27570,27574,27574,27575,27579,27579,27583,27690,27586,27589,27591,27592,27595,27599,27708,27600,27604,27608,27612,27709,27613,27615,27618,27710,27621,27625,27711,27630,27634,27712,27638,27642,27645,27648,27650,27650,27654,27713,27694,27658,27662,27662,27258,27260,27260,27665,27714,27268,27274,27277,27277,27283,27289,27290,27667,27715,27302,27305,27716,27670,27315,27717,27718,27316,27323,27329,27336,27339,27339,27696,27719,27719,27672,27346,27347,27353,27354,27720,27697,27366,27721,27699,27375,27375,27381,27722,27700,27386,27387,27391,27397,27402,27404,27701,27409,27723,27702,27419,27420,27426,27724,27427,27430,27432,27433,27438,27725,27439,27445,27451,27451,27678,27458,27704,27465,27680,27470,27471,27476,27482,27705,27726,27482,27726,27478,27705,27489,27682,27682,27495,27683,27706,27504,27511,27511,27516,27518,27525,27526,27684,27707,27536,25737,25737,25625,25624,25624,25623,27123,27121,27116,27113,27112,27111,27108,27103,27102,27099,27093,27088,27085,27082,27079,27078,27077,27073,27068,27068,27541,27727,27550,27688,27557,27689,27574,27579,27579,27690,27586,27586,27591,27592,27592,27599,27708,27708,27604,27605,27613,27618,27692,27710,27625,27629,27711,27634,27637,27645,27650,27713,27694,27662,27260,27260,27714,27266,27268,27277,27289,27290,27715,27297,27302,27716,27728,27669,27670,27717,27718,27323,27324,27729,27329,27339,27339,27719,27346,27346,27347,27354,27720,27366,27368,27730,27721,27375,27700,27387,27391,27391,27402,27404,27731,27723,27419,27420,27724,27732,27733,27433,27725,27725,27439,27451,27451,27458,27703,27734,27704,27680,27705,27682,27735,27735,27478,27726,27735,27726,27705,27683,27706,27511,27518,27525,27736,27518,27736,27511,27684,27707,25737,25624,27123,27122,27121,27113,27112,27112,27108,27107,27103,27099,27098,27096,27093,27085,27078,27077,27068,27068,27727,27737,27549,27550,27557,27579,27586,27592,27708,27605,27691,27709,27613,27692,27738,27710,27629,27629,27711,27637,27655,27694,27260,27260,27266,27268,27268,27289,27739,27290,27297,27299,27302,27728,27740,27669,27717,27741,27718,27324,27695,27729,27339,27346,27346,27354,27358,27673,27720,27368,27730,27375,27722,27742,27700,27391,27731,27419,27420,27733,27725,27451,27451,27703,27734,27734,27680,27468,27682,27683,27743,27682,27743,27744,27735,27744,27745,27735,27745,27478,27744,27735,27682,27746,27511,27736,27736,27525,27747,27736,27747,27746,27511,27746,27748,27511,27748,27683,27684,25737,25624,25624,27122,27121,27121,27112,27107,27103,27098,27097,27096,27085,27084,27082,27078,27068,27068,27737,27749,27686,27549,27557,27579,27592,27708,27708,27691,27608,27709,27692,27750,27751,27738,27629,27713,27655,27260,27268,27739,27290,27290,27299,27300,27669,27741,27718,27695,27729,27346,27346,27358,27359,27722,27742,27391,27731,27420,27732,27432,27733,27451,27734,27468,27752,27734,27752,27451,27746,27753,27754,27754,27683,27748,27754,27748,27746,27755,27746,27747,27755,27747,27525,27746,27755,27753,27756,27683,27754,27756,27754,27753,27683,27756,27757,27758,27744,27759,27758,27759,27757,27744,27758,27760,27745,27760,27761,27745,27761,27478,27760,27745,27744,27743,27757,27759,27743,27759,27744,27757,27743,27683,27684,25624,27762,27684,27762,27525,25624,27121,27107,27104,27103,27097,27096,27084,27082,27068,27749,27763,27068,27763,27082,27686,27557,27561,27579,27708,27608,27709,27750,27764,27751,27629,27637,27713,27260,27268,27268,27290,27300,27669,27718,27695,27695,27346,27359,27730,27722,27391,27414,27731,27732,27427,27432,27451,27765,27760,27766,27765,27766,27767,27760,27765,27768,27761,27768,27769,27761,27769,27478,27768,27761,27760,27758,27767,27766,27758,27766,27760,27767,27758,27757,27756,27770,27771,27756,27771,27757,27770,27756,27753,27772,27753,27755,27772,27755,27525,27753,27772,27770,27773,27757,27771,27773,27771,27770,27757,27773,27767,27774,27478,27769,27774,27769,27768,27775,27768,27765,27775,27765,27767,27768,27775,27774,27478,27774,27776,27478,27776,27476,25624,27107,27777,27777,27525,27762,27777,27762,25624,27778,27082,27763,27778,27763,27749,27082,27778,27096,27686,27561,27564,27709,27764,27751,27645,27713,27268,27268,27300,27302,27695,27359,27779,27695,27779,27669,27391,27404,27780,27391,27780,27730,27414,27732,27781,27427,27451,27752,27752,27468,27782,27752,27782,27427,27774,27783,27784,27774,27784,27785,27776,27785,27786,27776,27786,27476,27785,27776,27774,27783,27774,27775,27783,27775,27767,27773,27787,27788,27773,27788,27767,27787,27773,27770,27789,27770,27772,27789,27772,27525,27770,27789,27787,27790,27767,27788,27790,27788,27787,27767,27790,27783,27791,27476,27786,27791,27786,27785,27792,27785,27784,27792,27784,27783,27785,27792,27791,27476,27791,27793,27476,27793,27470,27777,27106,27794,27777,27794,27525,27106,27777,27107,27795,27096,27778,27795,27778,27749,27096,27795,27097,27686,27564,27796,27797,27645,27268,27302,27740,27798,27302,27798,27268,27779,27673,27799,27779,27799,27669,27673,27779,27359,27800,27730,27780,27800,27780,27404,27730,27800,27801,27802,27427,27782,27782,27468,27803,27782,27803,27802,27794,27804,27805,27794,27805,27525,27804,27794,27106,27804,27806,27807,27807,27525,27805,27807,27805,27804,27808,27806,27809,27809,27810,27811,27809,27811,27808,27807,27808,27812,27807,27812,27525,27808,27807,27806,27783,27810,27813,27813,27814,27815,27813,27815,27783,27791,27814,27816,27816,27470,27793,27816,27793,27791,27814,27791,27792,27792,27783,27815,27792,27815,27814,27810,27783,27790,27790,27787,27817,27790,27817,27810,27808,27787,27789,27789,27525,27812,27789,27812,27808,27787,27808,27811,27811,27810,27817,27811,27817,27787,27818,27097,27795,27795,27749,27819,27795,27819,27818,27097,27818,27820,27097,27820,27104,27686,27796,27565,27693,27797,27268,27740,27306,27821,27821,27268,27798,27821,27798,27740,27673,27368,27822,27822,27669,27799,27822,27799,27673,27823,27801,27800,27823,27800,27404,27801,27823,27824,27781,27802,27803,27803,27468,27825,27803,27825,27781,27826,27814,27827,27826,27827,27828,27814,27826,27829,27816,27829,27830,27816,27830,27470,27829,27816,27814,27813,27828,27827,27813,27827,27814,27828,27813,27810,27809,27831,27832,27809,27832,27810,27831,27809,27806,27833,27806,27804,27833,27804,27106,27806,27833,27831,27834,27810,27832,27834,27832,27831,27810,27834,27828,27830,27835,27836,27830,27836,27470,27835,27830,27829,27837,27829,27826,27837,27826,27828,27829,27837,27835,27838,27470,27836,27838,27836,27835,27470,27838,27468,27749,27839,27840,27840,27841,27842,27840,27842,27749,27818,27841,27843,27843,27104,27820,27843,27820,27818,27841,27818,27819,27819,27749,27842,27819,27842,27841,27686,27565,27567,27642,27693,27268,27306,27669,27844,27844,27268,27821,27844,27821,27306,27368,27698,27845,27845,27669,27822,27845,27822,27368,27846,27824,27823,27846,27823,27404,27824,27846,27847,27414,27781,27825,27414,27825,27468,27848,27849,27850,27848,27850,27828,27849,27848,27851,27852,27851,27853,27852,27853,27105,27851,27852,27849,27854,27828,27850,27854,27850,27849,27828,27854,27855,27856,27835,27857,27856,27857,27855,27835,27856,27858,27838,27858,27859,27838,27859,27468,27858,27838,27835,27837,27855,27857,27837,27857,27835,27855,27837,27828,27853,27831,27860,27853,27860,27105,27831,27853,27851,27834,27851,27848,27834,27848,27828,27851,27834,27831,27833,27105,27860,27833,27860,27831,27105,27833,27106,27839,27685,27861,27861,27862,27863,27861,27863,27839,27841,27862,27864,27864,27104,27843,27864,27843,27841,27862,27841,27840,27840,27839,27863,27840,27863,27862,27686,27567,27689,27642,27268,27844,27844,27669,27865,27844,27865,27642,27698,27847,27866,27866,27669,27845,27866,27845,27698,27404,27409,27867,27867,27847,27846,27867,27846,27404,27412,27414,27468,27868,27869,27870,27868,27870,27855,27869,27868,27871,27872,27871,27873,27872,27873,27104,27871,27872,27869,27874,27855,27870,27874,27870,27869,27855,27874,27875,27876,27858,27877,27876,27877,27875,27858,27876,27878,27859,27878,27879,27859,27879,27468,27878,27859,27858,27856,27875,27877,27856,27877,27858,27875,27856,27855,27873,27849,27880,27873,27880,27104,27849,27873,27871,27854,27871,27868,27854,27868,27855,27871,27854,27849,27852,27104,27880,27852,27880,27849,27104,27852,27105,27685,27686,27881,27881,27882,27883,27881,27883,27685,27862,27882,27884,27884,27104,27864,27884,27864,27862,27882,27862,27861,27861,27685,27883,27861,27883,27882,27689,27579,27885,27689,27885,27686,27886,27642,27865,27886,27865,27669,27642,27886,27712,27887,27847,27867,27867,27409,27888,27867,27888,27887,27847,27887,27889,27889,27669,27866,27889,27866,27847,27675,27412,27468,27890,27875,27891,27891,27686,27892,27891,27892,27890,27875,27890,27893,27893,27894,27895,27893,27895,27875,27878,27894,27896,27878,27896,27897,27879,27897,27898,27879,27898,27468,27897,27879,27878,27894,27878,27876,27876,27875,27895,27876,27895,27894,27899,27891,27900,27899,27900,27869,27891,27899,27686,27891,27875,27874,27874,27869,27900,27874,27900,27891,27882,27869,27872,27872,27104,27884,27872,27884,27882,27899,27882,27881,27899,27881,27686,27882,27899,27869,27901,27712,27886,27901,27886,27669,27712,27901,27637,27409,27675,27902,27902,27903,27904,27902,27904,27409,27887,27903,27905,27905,27669,27889,27905,27889,27887,27903,27887,27888,27888,27409,27904,27888,27904,27903,27894,27579,27906,27894,27906,27907,27897,27907,27908,27908,27468,27898,27908,27898,27897,27907,27897,27896,27907,27896,27894,27579,27894,27893,27579,27893,27890,27885,27890,27892,27885,27892,27686,27890,27885,27579,27909,27637,27901,27901,27669,27910,27901,27910,27909,27637,27909,27911,27637,27911,27751,27675,27468,27912,27912,27913,27914,27912,27914,27675,27903,27913,27915,27915,27669,27905,27915,27905,27903,27913,27903,27902,27902,27675,27914,27902,27914,27913,27916,27907,27917,27916,27917,27608,27907,27916,27918,27908,27918,27919,27908,27919,27468,27918,27908,27907,27906,27608,27917,27906,27917,27907,27608,27906,27579,27920,27751,27911,27920,27911,27909,27921,27909,27910,27921,27910,27669,27909,27921,27920,27751,27920,27922,27751,27922,27709,27923,27924,27925,27923,27925,27913,27923,27608,27926,27923,27926,27924,27915,27924,27927,27915,27927,27669,27915,27913,27925,27915,27925,27924,27912,27918,27928,27912,27928,27913,27912,27468,27919,27912,27919,27918,27923,27918,27916,27923,27916,27608,27923,27913,27928,27923,27928,27918,27922,27924,27929,27922,27929,27709,27924,27922,27920,27927,27920,27921,27927,27921,27669,27920,27927,27924,27926,27709,27929,27926,27929,27924,27709,27926,27608,27930,27931,27932,27932,27933,27934,27935,27936,27937,27937,27938,27939,27940,27941,27942,27943,27944,27945,27946,27947,27948,27949,27950,27951,27951,27952,27953,27954,27955,27956,27957,27958,27959,27960,27961,27962,27963,27964,27965,27966,27967,27968,27968,27969,27970,27971,27972,27973,27974,27975,27976,27976,27977,27978,27978,27979,27980,27981,27982,27983,27983,27984,27985,27985,27986,27987,27987,27988,27989,27990,27991,27992,27992,27993,27994,27994,27995,27996,27996,27997,27998,27999,28000,28001,28002,28003,28004,28005,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28016,28017,28018,28018,28019,28020,28021,28022,28023,28024,28025,28026,28027,28028,28029,28030,28031,28032,28033,28034,28035,28036,28037,28038,28039,28040,28041,28042,28043,28044,28045,28046,28047,28048,28049,28050,28051,28052,28053,28053,28054,28055,28055,28056,28057,28057,28058,28059,28059,28060,28061,28062,28063,28064,28065,28066,28067,28067,28068,28069,28070,28071,28072,28073,28074,28075,28076,28077,28078,28079,28080,26890,26890,26889,26888,26887,26886,27161,27161,27146,27126,26884,26883,27187,27187,27196,26882,26881,26880,27160,26876,26875,27145,27145,27174,26874,26873,26872,27180,27180,26871,26870,26870,26869,26868,26867,26866,26865,26865,26864,27173,27173,27159,26863,26860,26859,26858,26858,26857,27125,26855,26854,26853,26852,26851,25560,25558,25557,25556,25556,25555,25554,25554,25553,25685,25685,25730,25552,25551,25550,25549,25548,25547,25847,25847,25832,25546,25545,25544,25543,25540,25539,25770,25770,25796,25684,25535,25534,25683,25683,25769,25861,25861,25831,25533,25528,25527,25526,25525,25524,25768,25768,25682,25523,25522,25521,25520,25520,25519,25518,25517,25516,25681,25514,25513,25512,25512,25511,25510,25510,25509,25508,25508,25507,25506,25506,25505,25680,25680,25729,25504,25501,25500,25679,25498,25497,25496,25494,25493,25492,25491,25490,25489,25488,25487,25678,25485,25484,25483,25482,25481,25480,25479,25478,25477,25477,25476,25475,25475,25474,25767,25470,25469,25728,25728,25815,25468,25467,25466,25465,25465,25464,25727,25727,25677,25463,25462,25461,25766,25766,25830,25814,25814,25676,25460,25459,25458,25457,25457,25456,25675,25675,25765,25455,25454,25453,25452,25450,25449,25448,25445,25444,25443,25443,25442,25441,25440,25439,25438,25437,25436,25726,25726,25674,25435,25434,25433,25432,25432,25431,25430,25430,25429,25428,25426,25425,25424,25424,25423,25422,25420,25419,25418,25417,25416,25415,25414,25413,25673,25673,25725,25412,25409,25408,25672,25406,25405,25724,25724,25404,25403,25403,25402,25671,25671,25401,25400,25396,25395,25394,25394,25393,25764,25764,25813,25723,25389,25388,25387,25385,25384,25722,25722,25383,25382,25382,25381,25380,25380,25379,25378,25377,25376,25721,25721,25795,25375,25372,25371,25670,25369,25368,25367,25366,25365,25364,25364,25363,25362,25362,25361,25669,25355,25354,25353,25352,25351,25720,25349,25348,25668,25346,25345,25812,25812,25763,25719,25341,25340,25718,25718,25339,25338,25336,25335,25334,25333,25332,25331,25331,25330,25329,25329,25328,25811,25811,25794,25327,25324,25323,25322,25321,25320,25319,25318,25317,25316,25316,25315,25829,25829,25793,25314,25313,25312,25667,25310,25309,25308,25308,25307,25717,25717,25762,25306,25303,25302,25716,25294,25293,25792,25792,25791,25715,25291,25290,25289,25288,25287,25286,25285,25284,25666,25666,25714,25665,25280,25279,25664,25664,25663,25278,25273,25272,25713,25713,25662,25271,25270,25269,25268,25268,25267,25661,25265,25264,25263,25263,25262,25261,25259,25258,25257,25256,25255,25254,25251,25250,25249,25243,25242,25712,25712,25241,25240,25238,25237,25828,25828,25236,25235,25233,25232,25231,25226,25225,25224,25223,25222,25660,25660,25221,25220,25220,25219,28081,28081,28082,28083,28083,28084,28085,28085,28086,28087,28087,28088,28089,28090,28091,28092,28092,28093,28094,28094,28095,28096,28096,28097,28098,28099,28100,28101,28102,28103,28104,28104,28105,28106,28106,28107,28108,28109,28110,28111,28112,28113,28114,28114,28115,28116,28116,28117,28118,28118,28119,28120,28121,28122,28123,28124,28125,28126,28126,28127,28128,28128,28129,28130,28130,28131,28132,28132,28133,28134,28135,28136,28137,28137,28138,28139,28139,28140,28141,28141,28142,28143,28144,28145,28146,28147,28148,28149,28150,28151,28152,28152,28153,28154,28155,28156,28157,28157,28158,28159,28159,28160,28161,28162,28163,28164,28165,28166,28167,28167,28168,28169,28170,28171,28172,28173,28174,28175,28175,28176,28177,28177,28178,28179,28179,28180,28181,28181,28182,28183,28183,28184,28185,28185,28186,28187,28187,28188,28189,28190,28191,28192,28192,28193,28194,28194,28195,28196,28197,28198,28199,28200,28201,28202,28203,28204,28205,28205,28206,28207,28208,28209,28210,28210,28211,28212,28213,28214,28215,28215,28216,28217,28218,28219,28220,28220,28221,28222,28223,28224,28225,28226,28227,28228,28228,28229,28230,28230,28231,28232,28232,28233,28234,28234,28235,28236,28236,28237,28238,28239,28240,28241,28241,28242,28243,28243,28244,28245,28245,28246,28247,28248,28249,28250,28250,28251,28252,28252,28253,28254,28255,28256,28257,28257,28258,28259,28259,28260,28261,28262,28263,28264,28265,28266,28267,28267,28268,28269,28270,28271,28272,28273,28274,28275,28276,28277,28278,28278,28279,28280,28280,28281,28282,28283,28284,28285,28285,28286,28287,28288,28289,28290,28290,28291,28292,28293,28294,28295,27932,27934,28296,27935,27937,27939,27940,27942,28297,27943,27945,28298,27946,27948,28299,27949,27951,27953,27954,27956,28300,27957,27959,28301,27960,27962,28302,27963,27965,28303,27966,27968,27970,27971,27973,27974,27974,27976,27978,27983,27985,27987,27987,27989,27990,27992,27994,27996,27996,27998,28304,28304,27999,28001,28002,28004,28305,28005,28007,28306,28008,28010,28307,28011,28013,28308,28014,28016,28018,28018,28020,28309,28021,28023,28310,28024,28026,28311,28027,28029,28312,28030,28032,28313,28033,28035,28314,28036,28038,28315,28315,28039,28041,28042,28044,28316,28045,28047,28317,28048,28050,28318,28051,28053,28055,28055,28057,28059,28062,28064,28319,28065,28067,28069,28070,28072,28320,28073,28075,28321,28076,28078,28322,28079,26890,26888,26887,27161,27126,26884,27187,26882,26881,27160,26879,26876,27145,26874,26873,27180,26870,26867,26865,27173,27173,26863,26862,26860,26858,27125,26855,26853,26852,26852,25560,25559,25554,25685,25552,25551,25549,25548,25548,25847,25546,25545,25543,25542,25541,25540,25770,25770,25684,25538,25535,25683,25861,25861,25533,25532,25529,25528,25526,25525,25768,25523,25522,25520,25518,25517,25681,25515,25515,25514,25512,25512,25510,25508,25506,25680,25504,25502,25501,25679,25494,25492,25491,25491,25489,25488,25488,25678,25486,25483,25482,25480,25479,25477,25475,25475,25767,25473,25470,25728,25468,25465,25727,25463,25462,25766,25814,25457,25675,25455,25451,25450,25448,25446,25445,25443,25441,25440,25438,25437,25726,25435,25430,25428,25427,25426,25424,25422,25420,25418,25417,25417,25415,25414,25414,25673,25412,25410,25409,25672,25407,25406,25724,25403,25671,25400,25396,25394,25764,25764,25723,25392,25390,25389,25387,25385,25722,25382,25377,25721,25375,25372,25670,25370,25370,25369,25367,25366,25364,25362,25362,25669,25360,25355,25353,25352,25352,25720,25350,25349,25668,25347,25346,25812,25719,25342,25341,25718,25337,25336,25334,25333,25331,25329,25329,25811,25327,25321,25319,25318,25318,25316,25829,25829,25314,25313,25313,25667,25311,25308,25717,25306,25303,25716,25301,25295,25294,25792,25792,25715,25292,25291,25289,25288,25288,25286,25285,25285,25666,25665,25280,25664,25278,25274,25273,25713,25713,25271,25270,25270,25268,25661,25265,25263,25261,25260,25259,25257,25257,25256,25254,25243,25712,25240,25239,25238,25828,25233,25231,25230,25226,25224,25223,25223,25660,25220,25220,28081,28083,28083,28085,28087,28090,28092,28094,28094,28096,28098,28099,28101,28323,28324,28102,28104,28104,28106,28108,28109,28111,28325,28326,28112,28114,28114,28116,28118,28118,28120,28327,28124,28126,28128,28128,28130,28132,28132,28134,28328,28135,28137,28139,28139,28141,28143,28147,28149,28329,28150,28152,28154,28155,28157,28159,28165,28167,28169,28173,28175,28177,28177,28179,28181,28181,28183,28185,28185,28187,28189,28190,28192,28194,28197,28199,28330,28331,28200,28202,28332,28203,28205,28205,28207,28208,28208,28210,28212,28333,28213,28215,28215,28217,28218,28218,28220,28222,28226,28228,28230,28230,28232,28234,28234,28236,28238,28239,28241,28243,28243,28245,28247,28248,28250,28252,28334,28255,28257,28257,28259,28261,28265,28267,28269,28270,28272,28335,28273,28275,28336,28276,28278,28280,28280,28282,28337,28283,28285,28287,28288,28290,28292,28293,28295,27930,27930,27932,28296,27935,27939,28338,28338,27940,28297,27943,28298,27946,27946,28299,28339,28340,27949,27953,28341,27954,28300,28300,27957,28301,27960,28302,28342,27963,28303,27966,27966,27970,28343,27971,27974,27978,27981,27983,27987,27987,27990,27992,27992,27996,28304,28304,28001,28344,28002,28305,28005,28306,28008,28307,28307,28011,28308,28014,28018,28309,28021,28310,28024,28311,28027,28312,28313,28033,28314,28036,28315,28041,28345,28042,28316,28045,28317,28048,28318,28051,28055,28055,28059,28061,28065,28069,28346,28070,28320,28073,28347,28076,28322,26888,26887,27126,26885,26884,26882,26882,26881,26879,26877,26876,26874,26874,26873,26870,26867,27173,26862,26860,27125,26856,26855,26852,25559,25554,25552,25551,25551,25548,25546,25541,25770,25538,25535,25861,25532,25526,25525,25523,25522,25518,25517,25517,25515,25512,25512,25508,25506,25506,25504,25503,25502,25679,25499,25495,25494,25491,25491,25488,25486,25483,25480,25479,25479,25475,25473,25471,25470,25468,25463,25462,25814,25457,25455,25454,25451,25448,25447,25446,25443,25441,25438,25437,25435,25426,25422,25421,25420,25417,25414,25414,25412,25411,25410,25672,25407,25407,25724,25403,25403,25400,25399,25396,25764,25392,25390,25387,25386,25386,25385,25382,25377,25375,25374,25372,25370,25367,25366,25362,25360,25356,25355,25352,25352,25350,25349,25349,25347,25346,25346,25719,25344,25342,25718,25338,25337,25334,25333,25333,25329,25327,25321,25318,25829,25310,25308,25306,25303,25301,25300,25295,25792,25292,25291,25288,25285,25285,25665,25283,25280,25278,25277,25274,25713,25270,25270,25661,25266,25265,25261,25260,25260,25257,25254,25244,25243,25240,25239,25828,25235,25234,25233,25230,25223,25220,28083,28083,28087,28089,28348,28090,28094,28094,28098,28349,28099,28323,28350,28324,28104,28108,28351,28109,28325,28326,28114,28118,28118,28327,28352,28124,28128,28132,28135,28139,28143,28147,28329,28353,28150,28154,28354,28155,28159,28161,28355,28165,28169,28356,28173,28177,28177,28181,28185,28185,28189,28357,28358,28190,28194,28197,28330,28359,28331,28202,28332,28332,28205,28208,28208,28212,28360,28361,28333,28215,28215,28218,28222,28226,28230,28234,28234,28238,28362,28239,28243,28247,28363,28248,28252,28334,28257,28261,28265,28269,28364,28364,28270,28335,28276,28280,28337,28283,28287,28365,28365,28288,28292,28296,27935,28338,28338,28297,27943,27943,27946,28339,28340,27953,28366,28300,28301,27960,27960,28342,28367,28367,27963,27966,27966,28343,27971,27971,27978,27980,27980,27981,27987,27987,27992,28304,28304,28344,28368,28002,28005,28306,28306,28307,28308,28369,28014,28309,28021,28024,28311,28313,28314,28036,28036,28041,28370,28045,28048,28318,28318,28055,28061,28371,28065,28346,28070,28073,28321,28347,28322,28079,28079,26888,27126,26885,26882,26879,26877,26874,26870,26867,26862,26861,26860,26856,26855,26855,25559,25558,25554,25551,25546,25542,25541,25538,25535,25532,25531,25526,25523,25522,25517,25512,25506,25506,25503,25502,25502,25499,25498,25495,25491,25486,25483,25479,25473,25471,25468,25467,25463,25814,25460,25457,25454,25452,25451,25447,25446,25446,25441,25438,25438,25435,25434,25421,25420,25414,25414,25411,25410,25410,25407,25403,25396,25392,25391,25391,25390,25386,25386,25382,25380,25378,25377,25374,25372,25367,25366,25366,25360,25359,25356,25352,25349,25349,25346,25344,25343,25342,25338,25337,25333,25327,25321,25829,25313,25310,25306,25305,25304,25303,25300,25296,25295,25292,25291,25285,25283,25280,25277,25276,25275,25274,25270,25270,25266,25265,25265,25260,25254,25244,25240,25239,25239,25235,25234,25234,25230,25229,25226,25223,28083,28083,28089,28348,28348,28094,28349,28099,28350,28372,28373,28324,28108,28351,28325,28326,28326,28118,28352,28123,28124,28132,28135,28143,28374,28147,28353,28150,28150,28354,28155,28155,28161,28375,28355,28169,28376,28177,28185,28357,28358,28194,28196,28331,28332,28208,28208,28360,28377,28361,28215,28222,28378,28226,28234,28234,28362,28239,28239,28247,28379,28363,28252,28254,28334,28261,28262,28264,28265,28364,28364,28335,28273,28336,28276,28337,28283,28365,28292,28296,28338,27943,28339,28340,28366,28300,27960,28367,28367,27966,27971,27971,27980,27987,27987,28304,28368,28306,28308,28380,28369,28309,28021,28021,28311,28312,28313,28036,28370,28045,28318,28061,28371,28346,28381,28070,28321,28382,28347,28079,27126,27126,26885,26879,26878,26877,26870,26868,26867,26861,26860,26855,25558,25554,25546,25545,25542,25538,25537,25529,25526,25522,25517,25506,25502,25496,25495,25486,25485,25483,25473,25471,25467,25465,25463,25460,25459,25451,25446,25438,25438,25434,25432,25421,25414,25410,25410,25403,25399,25397,25396,25391,25391,25386,25380,25378,25374,25373,25372,25366,25359,25357,25356,25349,25349,25344,25343,25343,25338,25337,25337,25327,25326,25322,25321,25313,25310,25305,25304,25304,25300,25299,25296,25292,25291,25291,25283,25282,25275,25270,25265,25265,25254,25253,25244,25239,25234,25234,25229,25228,25227,25226,28083,28348,28349,28099,28372,28373,28108,28326,28352,28121,28123,28132,28328,28135,28374,28383,28147,28150,28155,28355,28376,28384,28177,28357,28385,28358,28196,28386,28387,28331,28208,28208,28377,28361,28361,28222,28223,28234,28239,28388,28234,28388,28378,28239,28379,28389,28390,28363,28254,28264,28364,28273,28336,28337,28283,28296,27943,28339,28339,28366,28341,28341,28300,28367,28367,27971,27987,27987,28368,28391,28030,28313,28370,28316,28045,28061,28319,28371,28381,28382,28347,27126,27126,26879,26878,26878,26870,26868,26868,26861,26860,26860,25558,25556,25554,25545,25542,25542,25537,25536,25529,25522,25517,25502,25498,28392,25502,28392,25517,25498,25496,25486,25485,25473,25472,25471,25465,25463,25452,25451,25438,25438,25432,25430,25426,25421,25410,25397,25391,25380,25380,25378,25373,25373,25372,25359,25357,25349,25343,25343,25337,25326,25322,25313,25311,25310,25304,25299,25291,25282,25281,25275,25265,25253,25245,25244,25234,25234,25228,25227,25227,28083,28348,28099,28372,28108,28326,28121,28123,28123,28328,28135,28135,28383,28393,28147,28155,28375,28164,28355,28384,28177,28385,28394,28387,28208,28361,28361,28223,28225,28239,28389,28395,28239,28395,28396,28388,28396,28397,28388,28397,28378,28396,28388,28239,28389,28390,28254,28264,28273,28336,28336,28283,28292,28367,27987,28398,28367,28398,28341,27987,28391,28002,28030,28370,28399,28345,28316,28061,28062,28319,28381,28382,27126,28400,28382,28400,28070,26878,26868,26860,26860,25556,25554,25542,25536,28401,25542,28401,25554,28402,25517,28392,28402,28392,25498,25517,28402,25529,25498,25486,25485,25485,25472,25471,25471,25463,25459,25452,25438,25430,25427,25426,25410,25397,25380,25373,25373,25359,25358,25358,25357,25343,25343,25326,25325,25324,25322,25311,25310,25299,25298,25276,25275,25253,25245,25234,25227,25227,28348,28099,28099,28108,28351,28123,28135,28403,28123,28403,28326,28135,28393,28404,28405,28147,28375,28162,28164,28384,28356,28177,28394,28406,28387,28361,28389,28254,28407,28407,28408,28409,28407,28409,28389,28396,28408,28410,28410,28378,28397,28410,28397,28396,28409,28396,28395,28409,28395,28389,28396,28409,28408,28262,28264,28336,28411,28341,28398,28411,28398,27987,28341,28411,28339,27987,28002,28306,28030,28399,28345,28345,28061,28062,28381,28412,28413,28381,28413,28062,27126,26878,28414,28414,28070,28400,28414,28400,27126,26860,25554,28415,26860,28415,26878,25536,25535,28416,28416,25554,28401,28416,28401,25536,28417,25529,28402,28417,28402,25498,25529,28417,25530,25498,25485,25471,25452,25430,25427,25410,25399,28418,25410,28418,25427,25398,25397,25373,25358,25343,28419,25358,28419,25373,25324,25311,25310,25310,25298,25297,25276,25253,28420,25276,28420,25280,25246,25245,25227,25227,28099,28351,28135,28404,28421,28421,28326,28403,28421,28403,28135,28405,28375,28162,28162,28384,28422,28423,28356,28394,28361,28225,28424,28361,28424,28406,28254,28425,28426,28426,28427,28428,28426,28428,28254,28408,28427,28429,28429,28378,28410,28429,28410,28408,28427,28408,28407,28407,28254,28428,28407,28428,28427,28430,28339,28411,28411,27987,28431,28411,28431,28430,28339,28430,28432,28339,28432,28296,27987,28306,28380,28030,28345,28062,28433,28070,28414,28433,28414,26878,28070,28433,28412,28434,25554,28416,28434,28416,25535,25554,28434,28435,28415,28435,28436,28415,28436,26878,28435,28415,25554,25498,25471,28437,25498,28437,28438,28417,28438,28439,28417,28439,25530,28438,28417,25498,28440,25427,28418,28440,28418,25399,25427,28440,25452,28441,25373,28419,28419,25343,28442,28419,28442,28441,25373,28441,28443,25373,28443,25398,25310,25297,25296,28444,25280,28420,28444,28420,25253,25280,28444,25281,25247,25246,25227,28445,28326,28421,28445,28421,28404,28326,28445,28351,28162,28422,28446,28162,28446,28405,28172,28423,28394,28447,28406,28424,28447,28424,28225,28406,28447,28448,28425,28449,28450,28450,28451,28452,28450,28452,28425,28427,28451,28453,28453,28378,28429,28453,28429,28427,28451,28427,28426,28426,28425,28452,28426,28452,28451,28454,28296,28432,28454,28432,28430,28455,28430,28431,28455,28431,27987,28430,28455,28454,28296,28454,28456,28296,28456,27930,28030,28062,28457,28030,28457,28458,28459,28412,28433,28433,26878,28460,28433,28460,28459,28412,28459,28461,28461,28062,28413,28461,28413,28412,25535,25531,28462,28462,28463,28464,28462,28464,25535,28435,28463,28465,28465,26878,28436,28465,28436,28435,28463,28435,28434,28434,25535,28464,28434,28464,28463,25471,25459,28466,25471,28466,28467,28438,28467,28468,28468,25530,28439,28468,28439,28438,28467,28438,28437,28467,28437,25471,25399,25398,28469,28469,25452,28440,28469,28440,25399,25343,25325,28470,25343,28470,28471,28441,28471,28472,28472,25398,28443,28472,28443,28441,28471,28441,28442,28471,28442,25343,28473,25281,28444,28473,28444,25253,25281,28473,25291,25227,28351,28474,25227,28474,25247,28404,28475,28476,28476,28351,28445,28476,28445,28404,28477,28405,28446,28477,28446,28422,28405,28477,28146,28172,28394,28478,28225,28378,28479,28479,28448,28447,28479,28447,28225,28449,28334,28480,28480,28481,28482,28480,28482,28449,28451,28481,28483,28483,28378,28453,28483,28453,28451,28481,28451,28450,28450,28449,28482,28450,28482,28481,28454,28380,28484,28484,27930,28456,28484,28456,28454,28380,28454,28455,28380,28455,27987,28461,28485,28486,28461,28486,28062,28485,28461,28459,28487,28459,28460,28487,28460,26878,28459,28487,28485,28488,28062,28486,28488,28486,28485,28488,28458,28457,28488,28457,28062,25531,25530,28489,28489,28490,28491,28489,28491,25531,28463,28490,28492,28492,26878,28465,28492,28465,28463,28490,28463,28462,28462,25531,28491,28462,28491,28490,25459,25457,28493,28493,28494,28495,28493,28495,25459,28467,28494,28496,28496,25530,28468,28496,28468,28467,28494,28467,28466,28466,25459,28495,28466,28495,28494,28497,25398,28472,28497,28472,28471,28498,28471,28470,28470,25325,28499,28470,28499,28498,28471,28498,28500,28471,28500,28497,25398,28497,28501,25398,28501,28502,28469,28502,28503,28469,28503,25452,28502,28469,25398,28504,25291,28473,28504,28473,25253,25291,28504,25296,28505,25247,28474,28505,28474,28351,25247,28505,25248,28475,28506,28507,28507,28351,28476,28507,28476,28475,28422,28170,28508,28508,28146,28477,28508,28477,28422,28172,28478,28509,28510,28378,28483,28510,28483,28481,28511,28481,28480,28511,28480,28334,28481,28511,28510,28378,28510,28512,28512,28448,28479,28512,28479,28378,28484,28369,28513,28484,28513,27930,28369,28484,28380,28488,28514,28515,28488,28515,28458,28514,28488,28485,28516,28485,28487,28516,28487,26878,28485,28516,28514,28517,28458,28515,28517,28515,28514,28458,28517,28312,28518,25530,28496,28496,28494,28519,28496,28519,28518,28520,28494,28493,28493,25457,28521,28493,28521,28520,28494,28520,28522,28522,28518,28519,28522,28519,28494,25530,28518,28523,28523,28524,28525,28523,28525,25530,28490,28524,28526,28526,26878,28492,28526,28492,28490,28525,28490,28489,28525,28489,25530,28490,28525,28524,28504,25252,28527,28504,28527,25296,25252,28504,25253,28528,25248,28505,28528,28505,28351,25248,28528,25249,28506,28529,28530,28530,28351,28507,28530,28507,28506,28170,28172,28509,28334,28262,28531,28531,28532,28533,28531,28533,28334,28510,28532,28534,28534,28448,28512,28534,28512,28510,28532,28510,28511,28511,28334,28533,28511,28533,28532,28535,27930,28513,28535,28513,28369,27930,28535,28293,28536,28524,28537,28537,28538,28539,28537,28539,28536,28526,28536,28540,28526,28540,26878,28536,28526,28524,28523,28541,28542,28523,28542,28524,28541,28523,28518,28541,28538,28537,28537,28524,28542,28537,28542,28541,28543,28544,28545,28543,28545,28514,28544,28543,28538,28544,28312,28517,28517,28514,28545,28517,28545,28544,28536,28514,28516,28516,26878,28540,28516,28540,28536,28543,28536,28539,28543,28539,28538,28536,28543,28514,28522,28546,28547,28522,28547,28518,28546,28522,28520,28546,28548,28549,28549,28518,28547,28549,28547,28546,28550,28520,28521,28521,25457,28551,28521,28551,28550,28546,28550,28552,28546,28552,28548,28550,28546,28520,28553,28538,28554,28554,28548,28555,28554,28555,28553,28544,28553,28556,28544,28556,28312,28553,28544,28538,28554,28541,28557,28554,28557,28548,28541,28554,28538,28541,28518,28549,28549,28548,28557,28549,28557,28541,28527,25251,28558,28527,28558,25296,25251,28527,25252,28559,25249,28528,28559,28528,28351,25249,28559,25251,28529,28560,28561,28561,28351,28530,28561,28530,28529,28170,28509,28358,28262,28336,28562,28262,28562,28563,28564,28563,28565,28564,28565,28566,28563,28564,28262,28532,28566,28567,28532,28567,28568,28534,28568,28569,28534,28569,28448,28568,28534,28532,28566,28532,28531,28531,28262,28564,28531,28564,28566,28535,28021,28570,28535,28570,28293,28021,28535,28369,28553,28571,28572,28553,28572,28573,28556,28573,28574,28556,28574,28312,28573,28556,28553,28571,28553,28555,28571,28555,28548,28552,28575,28576,28552,28576,28548,28575,28552,28550,28577,28550,28551,28577,28551,25457,28550,28577,28575,28578,28548,28576,28578,28576,28575,28548,28578,28571,28579,28312,28574,28579,28574,28573,28580,28573,28572,28580,28572,28571,28573,28580,28579,28312,28579,28581,28312,28581,28021,28582,28558,28583,28582,28583,28351,28558,28582,25296,28583,25251,28559,28583,28559,28351,25251,28583,28558,28170,28358,28386,28584,28568,28585,28584,28585,28586,28568,28584,28587,28569,28587,28588,28569,28588,28448,28587,28569,28568,28567,28586,28585,28567,28585,28568,28586,28567,28566,28565,28589,28590,28565,28590,28566,28589,28565,28563,28591,28563,28562,28591,28562,28336,28563,28591,28589,28592,28566,28590,28592,28590,28589,28566,28592,28586,28588,28593,28594,28588,28594,28448,28593,28588,28587,28595,28587,28584,28595,28584,28586,28587,28595,28593,28596,28448,28594,28596,28594,28593,28448,28596,28597,28581,28293,28570,28581,28570,28021,28293,28581,28579,28598,28579,28580,28580,28571,28599,28580,28599,28598,28579,28598,28600,28579,28600,28293,28601,28571,28578,28601,28578,28575,28602,28575,28577,28577,25457,28603,28577,28603,28602,28575,28602,28604,28575,28604,28601,28571,28601,28605,28571,28605,28606,28598,28606,28607,28607,28293,28600,28607,28600,28598,28606,28598,28599,28606,28599,28571,28608,25296,28582,28582,28351,28609,28582,28609,28608,25296,28608,28610,25296,28610,25310,28170,28386,28611,28611,28146,28508,28611,28508,28170,28336,28292,28612,28336,28612,28613,28614,28613,28615,28615,28616,28617,28615,28617,28614,28613,28614,28618,28613,28618,28336,28586,28616,28619,28619,28620,28621,28619,28621,28586,28593,28620,28622,28622,28597,28596,28622,28596,28593,28620,28593,28595,28595,28586,28621,28595,28621,28620,28616,28586,28592,28616,28592,28589,28614,28589,28591,28591,28336,28618,28591,28618,28614,28589,28614,28617,28589,28617,28616,28292,28293,28607,28607,28606,28623,28607,28623,28292,28624,28606,28605,28605,28601,28625,28605,28625,28624,28606,28624,28626,28626,28292,28623,28626,28623,28606,28627,28601,28604,28604,28602,28628,28604,28628,28627,28629,28602,28603,28603,25457,28630,28603,28630,28629,28602,28629,28631,28631,28627,28628,28631,28628,28602,28601,28627,28632,28632,28633,28634,28632,28634,28601,28624,28633,28635,28635,28292,28626,28635,28626,28624,28633,28624,28625,28625,28601,28634,28625,28634,28633,28636,25310,28610,28636,28610,28608,28637,28608,28609,28637,28609,28351,28608,28637,28636,25310,28636,28638,25310,28638,25324,28639,28146,28611,28639,28611,28386,28146,28639,28144,28640,28641,28642,28642,28643,28644,28642,28644,28640,28645,28640,28646,28645,28646,28616,28640,28645,28641,28647,28648,28649,28647,28649,28641,28648,28647,25457,28648,28643,28642,28642,28641,28649,28642,28649,28648,28650,28651,28652,28650,28652,28620,28651,28650,28643,28651,28597,28622,28622,28620,28652,28622,28652,28651,28640,28620,28619,28619,28616,28646,28619,28646,28640,28650,28640,28644,28650,28644,28643,28640,28650,28620,28653,28654,28655,28653,28655,28613,28654,28653,28627,28654,28616,28615,28615,28613,28655,28615,28655,28654,28633,28613,28612,28612,28292,28635,28612,28635,28633,28653,28633,28632,28653,28632,28627,28633,28653,28613,28629,28641,28656,28656,28627,28631,28656,28631,28629,28647,28629,28630,28647,28630,25457,28629,28647,28641,28645,28654,28657,28645,28657,28641,28654,28645,28616,28654,28627,28656,28656,28641,28657,28656,28657,28654,28638,28658,28659,28638,28659,25324,28658,28638,28636,28660,28636,28637,28660,28637,28351,28636,28660,28658,28661,25324,28659,28661,28659,28658,25324,28661,25325,28386,28197,28662,28662,28144,28639,28662,28639,28386,28651,28663,28664,28651,28664,28597,28663,28651,28643,28665,28643,28648,28665,28648,25457,28643,28665,28663,28666,28597,28664,28666,28664,28663,28597,28666,28667,28668,25325,28661,28668,28661,28658,28669,28658,28660,28669,28660,28351,28658,28669,28668,25325,28668,28670,28670,28671,28672,28670,28672,25325,28673,28497,28674,28673,28674,28671,28497,28673,28675,28502,28675,28676,28676,25452,28503,28676,28503,28502,28675,28502,28501,28675,28501,28497,28498,28671,28674,28674,28497,28500,28674,28500,28498,28672,28498,28499,28672,28499,25325,28498,28672,28671,28197,28359,28677,28197,28677,28678,28662,28678,28679,28662,28679,28144,28678,28662,28197,28666,28680,28681,28666,28681,28667,28680,28666,28663,28682,28663,28665,28682,28665,25457,28663,28682,28680,28683,28667,28681,28683,28681,28680,28667,28683,28359,28684,28675,28685,28684,28685,28686,28675,28684,28687,28676,28687,28688,28676,28688,25452,28687,28676,28675,28673,28686,28685,28673,28685,28675,28686,28673,28671,28670,28689,28690,28670,28690,28671,28689,28670,28668,28691,28668,28669,28691,28669,28351,28668,28691,28689,28692,28671,28690,28692,28690,28689,28671,28692,28686,28688,28693,28694,28688,28694,25452,28693,28688,28687,28695,28687,28684,28695,28684,28686,28687,28695,28693,28696,25452,28694,28696,28694,28693,25452,28696,25457,28679,28697,28698,28679,28698,28144,28697,28679,28678,28699,28678,28677,28699,28677,28359,28678,28699,28697,28700,28144,28698,28700,28698,28697,28144,28700,28560,28701,28686,28702,28701,28702,28703,28704,28703,28705,28704,28705,28560,28703,28704,28701,28686,28701,28706,28686,28706,28707,28708,28693,28709,28708,28709,28707,28693,28708,28710,28696,28710,28711,28696,28711,25457,28710,28696,28693,28695,28707,28709,28695,28709,28693,28707,28695,28686,28689,28560,28705,28689,28705,28703,28692,28703,28702,28692,28702,28686,28703,28692,28689,28560,28689,28691,28691,28351,28561,28691,28561,28560,28683,28707,28712,28683,28712,28359,28683,28680,28713,28683,28713,28707,28710,28680,28682,28682,25457,28711,28682,28711,28710,28680,28710,28708,28708,28707,28713,28708,28713,28680,28712,28706,28714,28712,28714,28359,28706,28712,28707,28706,28701,28715,28715,28359,28714,28715,28714,28706,28697,28701,28704,28704,28560,28700,28704,28700,28697,28715,28697,28699,28715,28699,28359,28697,28715,28701,26143,26142,28716,28716,28717,28718,28719,28720,28721,28722,28723,28724,28724,28725,28726,28726,28727,28728,28729,28730,28731,28731,28732,28733,28733,28734,28735,28735,28736,28737,28738,28739,28740,28741,28742,28743,28744,28745,28746,28747,28748,28749,28749,28750,28751,28751,26038,26037,26037,26148,26147,26146,26145,26144,26144,26143,28716,28719,28721,28752,28722,28724,28726,28726,28728,28753,28729,28731,28733,28733,28735,28737,28738,28740,28754,28741,28743,28755,28744,28746,28756,28757,28747,28749,28749,28751,26037,26037,26147,26146,26146,26144,28716,28752,28722,28726,28729,28733,28737,28738,28754,28758,28755,28744,28756,28757,28749,26037,26037,26146,28716,28752,28726,28753,28753,28729,28737,28755,28756,28759,28760,28757,26037,26037,28716,28718,28719,28752,28753,28753,28737,28761,28741,28755,28759,28762,28760,26037,26037,28718,28719,28719,28753,28761,28763,28762,26037,28719,28761,28764,28763,26037,28719,28719,28764,28765,28759,28763,28719,28719,28765,28738,28741,28759,28719,28719,28738,28758,28758,28741,28719,28766,28767,28768,28769,28770,28771,28771,28772,28773,28774,28775,28776,28777,28778,28779,28779,28780,28781,28782,28783,28784,28784,28785,28766,28766,28768,28769,28769,28771,28773,28776,28777,28779,28779,28781,28782,28782,28784,28766,28766,28769,28773,28776,28779,28782,28766,28773,28774,28776,28782,28766,28766,28774,28776,28786,28787,28788,28788,28789,28790,28790,28791,28792,28792,28793,28786,28786,28788,28790,28790,28792,28786,28794,28795,28796,28796,28797,28798,28798,28799,28800,28800,28801,28802,28802,28803,28804,28804,28805,28806,28806,28807,28808,28809,28810,28811,28811,28812,28813,28813,28814,28815,28815,28816,28817,28818,28819,28820,28821,28822,28823,28824,28825,28826,28827,28828,28829,28829,28830,28831,28832,28833,28834,28834,28835,28836,28837,28838,28839,28840,28841,28842,28842,28843,28844,28845,28846,28847,28848,28849,28850,28850,28851,28852,28852,28853,28854,28855,28856,28857,28858,28859,28860,28861,28862,28863,28864,28865,28866,28866,28867,28868,28868,28869,28870,28870,28871,28872,28873,28874,28875,28876,28877,28878,28878,28879,28880,28881,28882,28883,28884,28885,28886,28886,28887,28888,28889,28890,28891,28892,28893,28894,28895,28896,28897,28898,28899,28900,28901,28902,28903,28903,28904,28905,28906,28907,28908,28909,28910,28911,28911,28912,28913,28914,28915,28916,28916,28917,28918,28919,28920,28921,28921,28922,28923,28923,28924,28925,28925,28926,28927,28928,28929,28930,28931,28932,28933,28934,28935,28936,28937,28938,28939,28940,28941,28942,28943,28944,28945,28946,28947,28948,28949,28794,28796,28796,28798,28800,28800,28802,28804,28804,28806,28808,28809,28811,28813,28813,28815,28817,28818,28820,28950,28950,28821,28823,28824,28826,28951,28827,28829,28831,28831,28832,28834,28834,28836,28952,28837,28839,28953,28953,28840,28842,28844,28845,28847,28848,28850,28852,28852,28854,28954,28855,28857,28955,28858,28860,28861,28861,28863,28864,28866,28868,28870,28870,28872,28956,28873,28875,28876,28876,28878,28880,28957,28881,28883,28884,28886,28888,28888,28889,28891,28891,28892,28894,28895,28897,28958,28898,28900,28901,28901,28903,28905,28906,28908,28959,28909,28911,28913,28960,28914,28916,28916,28918,28919,28919,28921,28923,28923,28925,28927,28928,28930,28931,28931,28933,28961,28961,28934,28936,28937,28939,28940,28940,28942,28962,28943,28945,28963,28949,28796,28800,28800,28804,28808,28809,28813,28817,28818,28950,28823,28964,28824,28951,28827,28831,28834,28834,28952,28965,28953,28842,28844,28844,28847,28848,28848,28852,28954,28855,28955,28858,28858,28861,28864,28870,28956,28873,28873,28876,28880,28957,28883,28884,28884,28888,28891,28966,28895,28958,28898,28901,28905,28905,28906,28959,28909,28913,28967,28960,28916,28919,28919,28923,28927,28928,28931,28961,28961,28936,28968,28943,28963,28969,28948,28949,28800,28800,28808,28809,28809,28817,28818,28818,28823,28970,28971,28827,28834,28837,28953,28844,28844,28848,28954,28855,28858,28864,28870,28873,28880,28957,28884,28891,28972,28898,28905,28909,28967,28960,28960,28919,28927,28927,28928,28961,28948,28800,28809,28809,28818,28970,28971,28834,28965,28965,28837,28844,28844,28954,28973,28855,28864,28866,28866,28870,28880,28880,28957,28891,28972,28905,28959,28909,28960,28927,28927,28961,28968,28946,28948,28809,28809,28970,28974,28971,28965,28844,28855,28866,28880,28880,28891,28894,28972,28959,28909,28909,28927,28968,28969,28946,28809,28809,28974,28975,28951,28971,28844,28855,28880,28894,28972,28909,28968,28943,28969,28809,28809,28975,28964,28964,28951,28844,28973,28855,28894,28976,28972,28968,28962,28943,28809,28964,28844,28977,28964,28977,28809,28973,28894,28966,28976,28968,28937,28940,28962,28809,28977,28973,28978,28977,28978,28809,28973,28977,28844,28973,28966,28958,28937,28940,28979,28937,28979,28976,28980,28809,28978,28980,28978,28973,28809,28980,28940,28973,28958,28976,28980,28976,28979,28980,28979,28940,28976,28980,28973,28981,28982,28983,28983,28984,28985,28986,28987,28988,28988,28989,28990,28991,28992,28993,28994,28995,28996,28997,28998,28999,28999,29000,29001,29001,29002,29003,29003,29004,29005,29006,29007,29008,29008,29009,29010,29010,29011,29012,29013,29014,29015,29015,29016,29017,29017,29018,29019,29020,29021,29022,29022,29023,29024,29024,29025,29026,29026,29027,29028,29029,29030,29031,29032,29033,29034,29035,29036,29037,29038,29039,29040,29041,29042,29043,29043,29044,29045,29045,29046,29047,29047,29048,29049,29049,29050,29051,29052,29053,29054,29055,29056,29057,29058,29059,29060,29060,29061,29062,29062,29063,29064,29064,29065,29066,29067,29068,29069,29069,29070,29071,29072,29073,29074,29075,29076,29077,29078,29079,29080,29081,29082,29083,29083,28882,28881,28881,28957,28880,28877,28876,28875,28874,28873,28956,28871,28870,28869,28867,28866,28865,28865,28864,28863,28862,28861,28860,28859,28858,28955,28856,28855,28973,28973,28954,28854,28849,28848,28847,28846,28845,28844,28841,28840,28953,28838,28837,28965,28965,28952,28836,28833,28832,28831,28828,28827,28971,28971,28951,28826,28825,28824,28964,28964,28975,28974,28974,28970,28823,28822,28821,28950,28820,28819,29084,29084,29085,29086,29086,29087,29088,29089,29090,29091,29091,29092,29093,29094,29095,29096,29096,29097,29098,29099,29100,29101,29102,29103,29104,29104,29105,29106,29107,29108,29109,29109,29110,29111,29111,29112,29113,29114,29115,29116,29117,29118,29119,29120,29121,29122,29123,29124,29125,29126,29127,29128,29129,29130,29131,29131,29132,29133,29134,29135,29136,29137,29138,29139,29139,29140,29141,29141,29142,29143,29143,29144,29145,29145,29146,29147,29148,29149,29150,29151,29152,29153,29153,29154,29155,29156,28981,28983,28983,28985,28986,28990,28991,28993,28994,28996,29157,28997,28999,29001,29006,29008,29010,29010,29012,29158,29017,29019,29159,29020,29022,29024,29024,29026,29028,29160,29029,29031,29161,29032,29034,29035,29037,29038,29038,29040,29162,29041,29043,29045,29047,29049,29051,29052,29054,29163,29055,29057,29058,29058,29060,29062,29064,29066,29164,29164,29067,29069,29072,29074,29165,29075,29077,29078,29078,29080,29166,29081,29083,28881,28881,28880,28879,28878,28877,28875,28874,28956,28872,28872,28871,28869,28868,28867,28865,28860,28859,28955,28857,28856,28973,28973,28854,28853,28850,28849,28847,28846,28844,28843,28841,28953,28839,28838,28965,28836,28833,28831,28830,28829,28828,28971,28825,28964,28974,28822,28950,28820,28820,29084,29086,29086,29088,29089,29089,29091,29093,29094,29096,29098,29099,29101,29102,29102,29104,29106,29107,29109,29111,29114,29116,29167,29117,29119,29120,29120,29122,29168,29123,29125,29169,29169,29126,29128,29129,29131,29133,29134,29136,29137,29137,29139,29141,29141,29143,29145,29145,29147,29148,29151,29153,29155,29155,29156,28983,28983,28986,28988,29157,28997,29001,29006,29010,29158,29017,29159,29170,29020,29024,29028,29160,29031,29171,29161,29034,29035,29035,29038,29162,29041,29045,29047,29047,29051,29172,29052,29163,29173,29055,29058,29062,29164,29069,29071,29075,29078,29166,29166,29081,28881,28878,28875,28874,28872,28869,28868,28868,28865,28863,28862,28860,28955,28857,28973,28853,28850,28847,28846,28841,28839,28838,28838,28836,28835,28829,28971,28826,28826,28825,28974,28822,28820,29086,29089,29093,29094,29094,29098,29174,29099,29102,29106,29106,29107,29111,29175,29114,29167,29120,29168,29123,29123,29169,29128,29176,29129,29133,29137,29141,29145,29151,29155,28983,29157,29001,29003,29177,29006,29158,29015,29017,29170,29170,29020,29028,29178,29160,29171,29161,29035,29162,29162,29041,29047,29172,29052,29173,29055,29062,29064,29064,29164,29071,29165,29075,29166,29166,28881,28879,28872,28868,28863,28862,28955,28857,28857,28853,28852,28841,28838,28835,28830,28829,28826,28826,28974,28823,28822,29086,29089,29089,29094,29174,29099,29106,29111,29113,29175,29167,29120,29123,29128,29176,29133,29179,29137,29145,29148,29150,29151,28983,28994,29157,29003,29015,29170,29028,29178,29171,29161,29161,29162,29047,29047,29172,29173,29173,29055,29064,29064,29071,29180,29165,29166,28879,28874,28872,28863,28862,28857,28852,28830,28826,28823,28822,29089,29174,29099,29111,29113,29113,29167,29181,29120,29128,29176,29176,29179,29182,29134,29137,29148,29148,29150,28983,28993,28994,29003,29013,29015,29028,29178,29161,29047,29173,29064,29180,29165,28879,28878,28863,28862,28852,28833,28830,28823,28823,28822,29174,29099,29113,29181,29117,29120,29176,29176,29182,29183,29134,29148,28983,28993,29003,29005,29013,29028,29178,29178,29047,29173,29173,29180,29072,29072,29165,28878,28874,28863,28852,28833,28823,29174,29099,29181,29117,29117,29176,29183,29184,29134,28983,28993,29005,29185,29178,29173,29186,29178,29186,29013,29072,28878,28874,28874,28852,28851,28834,28833,29174,29099,29117,29183,29187,29184,28983,28993,29185,29177,29188,29013,29186,29188,29186,29173,29013,29188,29158,29173,29072,28874,28874,28851,28850,28835,28834,29174,29099,29183,29189,29187,28983,28988,29190,29158,29188,29190,29188,29173,29158,29190,29177,29173,28874,28850,28835,29174,29191,28835,29191,28841,29099,29189,29187,29187,28988,28990,29192,29177,29190,29192,29190,29173,29177,29192,28993,29173,28850,28846,29193,28841,29191,29193,29191,29174,28841,29193,28842,29099,29187,28990,29192,28846,29194,29192,29194,28993,28846,29192,29173,29195,28842,29193,29195,29193,29174,28842,29195,28843,29174,29099,28990,29196,28993,29194,29196,29194,28846,28993,29196,28990,29195,28990,29197,29195,29197,28843,28990,29195,29174,29196,28843,29197,29196,29197,28990,28843,29196,28846,29198,29199,29200,29201,29202,29203,29203,29204,29205,29206,29207,29208,29208,29209,29210,29210,29211,29212,29212,29213,29214,29215,29216,29217,29217,29218,29219,29219,29220,29221,29222,29223,29224,29224,29225,29226,29227,29228,29229,29229,29230,29231,29231,29232,29233,29233,29234,29235,29235,29236,29237,29238,29239,29240,29240,29241,29242,29243,29244,29245,29246,29247,29248,29248,29249,29250,29250,29251,29252,29253,29254,29255,29256,29257,29258,29258,29259,29260,29260,29261,29262,29262,29263,29264,29265,29266,29267,29267,29268,29269,29269,29270,29271,29271,29272,29273,29274,29275,29276,29277,29278,29279,29280,29281,29282,29282,29283,29284,29285,29286,29287,29288,29289,29290,29290,29291,29292,29292,29293,29294,29295,29296,29297,29297,29298,29299,29300,27257,27256,27663,27662,27661,27659,27658,27694,27656,27655,27713,27713,27654,27653,27651,27650,27649,27649,27648,27647,27646,27645,27797,27797,27693,27644,27643,27642,27641,27639,27638,27712,27712,27637,27636,27636,27635,27634,27631,27630,27711,27711,27629,27628,27628,27627,27626,27622,27621,27710,27710,27738,27751,27751,27764,27750,27750,27692,27620,27617,27616,27615,27614,27613,27709,27709,27612,27611,27609,27608,27691,27606,27605,27604,27601,27600,27708,27596,27595,27594,27593,27592,27591,27590,27589,27588,27587,27586,27690,27584,27583,27582,27580,27579,27578,27576,27575,27574,27571,27570,27569,27569,27568,27689,27689,27567,27566,27566,27565,27796,27796,27564,27563,27563,27562,27561,27560,27559,27558,27558,27557,27556,27554,27553,27688,27688,27687,27552,27551,27550,27549,27548,27547,27546,27546,27545,27686,27543,27542,27685,27685,27839,27749,27749,27737,27727,27540,27539,27063,27061,27060,27059,27058,27057,27056,27055,27054,27053,27053,27052,27178,27178,27169,27051,27048,27047,27046,27043,27042,27041,27041,27040,27168,27038,27037,27036,27033,27032,27031,27026,27025,27024,27021,27020,27167,27167,27166,27154,27018,27017,27141,27141,27153,27140,27015,27014,27152,27012,27011,27139,27139,27138,27010,27007,27006,27005,27005,27004,27137,27002,27001,27000,26999,26998,27136,27136,26997,26996,26996,26995,26994,26991,26990,27151,27151,26989,26988,26986,26985,26984,26983,26982,26981,26980,26979,27135,27135,27134,26978,26977,26976,27150,27150,27165,26975,26974,26973,26972,26972,26971,26970,26968,26967,26966,26962,26961,27149,27149,27133,26960,26959,26958,26957,26955,26954,26953,26950,26949,27132,27132,27164,26948,26947,26946,27183,27183,27177,26945,26942,26941,26940,26940,26939,27163,27163,26938,26937,26937,26936,26935,26934,26933,27131,26931,26930,26929,26929,26928,27130,26926,26925,27148,27148,27162,27176,27176,26924,26923,26923,26922,26921,26921,26920,27129,27129,26919,26918,26918,26917,27182,27182,26916,26915,26913,26912,27147,26911,26910,29301,29301,29302,29303,29303,29304,29305,29306,29307,29308,29308,29309,29310,29311,29312,29313,29314,29315,29316,29317,29318,29319,29319,29320,29321,29321,29322,29323,29324,29325,29326,29327,29328,29329,29330,29331,29332,29332,29333,29334,29334,29335,29336,29337,29338,29339,29340,29341,29342,29343,29344,29345,29345,29346,29347,29347,29348,29349,29350,29351,29352,29352,29353,29354,29354,29355,29356,29356,29357,29358,29359,29360,29361,29362,29363,29364,29365,29366,29367,29368,29369,29370,29371,29372,29373,29373,29374,29375,29376,29377,29378,29378,29379,29380,29380,29381,29382,29382,29383,29384,29385,29386,29387,29388,29389,29390,29390,29391,29392,29392,29393,29394,29395,29396,29397,29398,29399,28001,28000,27999,28304,27997,27996,27995,27993,27992,27991,27991,27990,27989,27988,27987,27986,27984,27983,27982,27982,27981,27980,27975,27974,27973,27972,27971,28343,27969,27968,27967,27967,27966,28303,27964,27963,28367,28367,28342,28302,27961,27960,28301,27958,27957,28300,27955,27954,28341,28341,28366,27953,27950,27949,28340,28340,28339,28299,27947,27946,28298,27944,27943,28297,27941,27940,28338,27936,27935,28296,27933,27932,27931,27931,29400,29401,29401,29402,29403,29404,29405,29406,29406,29407,29408,29409,29410,29411,29411,29412,29413,29413,29414,29415,29416,29417,29418,29419,29420,29421,29422,29423,29424,29424,29425,29426,29426,29427,29428,29429,29430,29431,29431,29432,29433,29434,29435,29436,29437,29438,29439,29439,29440,29441,29441,29442,29443,29444,29445,29446,29447,29448,29449,29449,29450,29451,29451,29452,29453,29453,29454,29455,29455,29456,29457,29457,29458,29459,29459,29460,29461,29462,29463,29464,29465,29466,29467,29468,29469,29470,29470,29471,29472,29473,29474,29475,29476,29477,29478,29479,29480,29481,29482,29483,29484,29485,29486,29487,29488,29489,29490,29491,29492,29493,29494,29495,29496,29497,29498,29499,29499,29500,29501,29502,29503,29504,29504,29505,29506,29506,29507,29508,29509,29510,29511,29511,29512,29513,29513,29514,29515,29516,29517,29518,29518,29519,29520,29520,29521,29522,29523,29524,29525,29525,29526,29527,29528,29529,29530,29531,29532,29533,29534,29535,29536,29536,29537,29538,29539,29540,29541,29541,29542,29543,29544,29545,29546,29546,29547,29548,29549,29550,29551,29551,29552,29553,29554,29555,29556,29557,29558,29559,29560,29561,29562,29563,29564,29565,29565,29566,29567,29568,29569,29570,29570,29571,29572,29572,29573,29574,29575,29576,29577,29578,29579,29580,29580,29581,29582,29582,29583,29584,29584,29585,29586,29586,29587,29588,29589,29590,29591,29591,29592,29593,29593,29594,29595,29596,29597,29598,29598,29599,29600,29601,29602,29603,29603,29604,29605,29605,29606,29607,29608,29609,29610,29611,29612,29613,29613,29614,29615,29615,29616,29617,29618,29619,29620,29620,29621,29622,29623,29624,29625,29626,29627,29628,29629,29630,29631,29631,29632,29633,29634,29635,29636,29636,29637,29638,29639,29640,29641,29641,29642,29643,29643,29644,29645,29646,29647,29648,29648,29649,29650,29651,29652,29653,29654,29655,29656,29656,29657,29658,29658,29659,29660,29660,29661,29662,29662,29663,29664,29665,29666,29667,29667,29668,29669,29670,29671,29672,29673,29674,29675,29675,29676,29677,29677,29678,29679,29679,29680,29681,29681,29682,29683,29683,29684,29685,29686,29687,29688,29689,29690,29691,29692,29693,29694,29694,29695,29696,29696,29697,29698,29698,29699,29700,29700,29701,29702,29702,29703,29704,29704,29705,29706,29707,29708,29709,29710,29711,29712,29713,29714,29715,29715,29716,29717,29717,29718,29719,29719,29720,29721,29722,29723,29724,29725,29726,29727,29727,29728,29729,29729,29730,29731,29731,29732,29733,29734,29735,29736,29737,29738,29739,29739,29740,29741,29741,29742,29743,29744,29745,29746,29746,29747,29748,29749,29750,29751,29751,29752,29753,29753,29754,29755,29755,29756,29757,29758,29759,29760,29761,29762,29763,29763,29764,29765,29765,29766,29767,29767,29768,29769,29769,29770,29771,29772,29773,29774,29774,29775,29776,29776,29777,29778,29778,29779,29780,29781,29782,29783,29783,29784,29785,29786,29787,29788,29789,29790,29791,29791,29792,29793,29793,29794,29795,29795,29796,29797,29798,29799,29800,29801,29802,29803,29803,29804,29805,29805,29806,29807,29807,29808,29809,29810,29811,29812,29812,29813,29814,29814,29815,29816,29817,29818,29819,29820,29821,29822,29822,29823,29824,29824,29825,29826,29826,29827,29828,29828,29829,29830,29830,29831,29832,29832,29833,29834,29834,29835,29836,29836,29837,29838,29838,29839,29840,29841,29842,29843,29844,29845,29846,29846,29847,29848,29849,29850,29851,29851,29852,29853,29853,29854,29855,29856,29857,29858,29859,29860,29861,29861,29862,29863,29864,29865,29866,29867,29868,29869,29870,29871,29872,29872,29873,29874,29875,29876,29877,29878,29879,29880,29881,29882,29883,29883,29884,29885,29885,29886,29887,29887,29888,29889,29889,29890,29891,29892,29893,29894,29894,29895,29896,29896,29897,29898,29899,29900,29901,29901,29902,29903,29903,29904,29905,29905,29906,29907,29907,29908,29909,29910,29911,29912,29912,29913,29914,29915,29916,29917,29918,29919,29920,29920,29921,29922,29923,29924,29925,29926,29927,29928,29928,29929,29930,29930,29931,29932,29933,29934,29935,29936,29937,29938,29939,29940,29941,29941,29942,29943,29944,29945,29946,29946,29947,29948,29948,29949,29950,29950,29951,29952,29953,29954,29955,29956,29957,29958,29959,29960,29961,29961,29962,29963,29964,29965,29966,29966,29967,29968,29969,29970,29971,29971,29972,29973,29974,29975,29976,29976,28917,28916,28915,28914,28960,28960,28967,28913,28910,28909,28959,28907,28906,28905,28904,28903,28902,28902,28901,28900,28899,28898,28972,28972,28976,28958,28896,28895,28966,28966,28894,28893,28893,28892,28891,28890,28889,28888,28885,28884,28883,28883,28882,29083,29082,29081,29166,29079,29078,29077,29076,29075,29165,29073,29072,29180,29180,29071,29070,29068,29067,29164,29065,29064,29063,29059,29058,29057,29056,29055,29173,29173,29163,29054,29053,29052,29172,29048,29047,29046,29042,29041,29162,29039,29038,29037,29036,29035,29034,29033,29032,29161,29161,29171,29031,29030,29029,29160,29160,29178,29028,29027,29026,29025,29021,29020,29170,29170,29159,29019,29018,29017,29016,29016,29015,29014,29014,29013,29158,29011,29010,29009,29007,29006,29177,29177,29185,29005,29004,29003,29002,28998,28997,29157,28995,28994,28993,28992,28991,28990,28989,28988,28987,28987,28986,28985,28984,28983,28982,29977,29978,29979,29980,29981,29982,29982,29983,29984,29985,29986,29987,29987,29988,29989,29990,29991,29992,29992,29993,29994,29995,29996,29997,29997,29998,29999,29999,30000,30001,30002,30003,30004,30004,30005,30006,30007,30008,30009,30009,30010,30011,30011,30012,30013,30014,30015,30016,30016,30017,30018,30019,30020,30021,30022,30023,30024,30024,30025,30026,30027,30028,30029,30029,30030,30031,30031,30032,30033,30034,30035,30036,30037,30038,30039,30039,30040,30041,30042,30043,30044,30045,30046,30047,30047,30048,30049,30050,30051,30052,30053,30054,30055,30055,30056,30057,30057,30058,30059,30059,30060,30061,30062,29198,29200,29201,29203,29205,29205,29206,29208,29208,29210,29212,30063,29215,29217,29217,29219,29221,29222,29224,29226,29227,29229,29231,29231,29233,29235,29235,29237,30064,30064,29238,29240,29240,29242,29243,29243,29245,30065,29248,29250,29252,29253,29255,30066,29256,29258,29260,29262,29264,30067,29265,29267,29269,29269,29271,29273,29273,29274,29276,30068,29277,29279,29280,29282,29284,29285,29287,30069,29290,29292,29294,29295,29297,29299,27663,27661,27660,27659,27694,27657,27657,27656,27713,27651,27649,27647,27647,27646,27797,27644,27643,27641,27639,27712,27636,27636,27634,27633,27631,27711,27628,27622,27710,27751,27751,27750,27620,27617,27615,27614,27614,27709,27611,27610,27609,27691,27607,27606,27604,27601,27708,27599,27596,27594,27593,27593,27591,27590,27588,27587,27690,27581,27580,27578,27572,27571,27569,27569,27689,27566,27566,27796,27563,27563,27561,27560,27554,27688,27552,27552,27551,27549,27546,27686,27544,27543,27685,27749,27749,27727,27541,27540,27063,27062,27058,27056,27055,27055,27053,27178,27048,27046,27045,27041,27168,27039,27038,27036,27035,27033,27031,27030,27026,27024,27023,27022,27021,27167,27167,27154,27019,27018,27141,27140,27015,27152,27013,27012,27139,27010,27007,27005,27137,27002,27000,26999,26999,27136,26996,26991,27151,26988,26986,26984,26983,26983,26981,26980,26980,27135,26978,26977,27150,26975,26974,26972,26970,26962,27149,26960,26960,26959,26957,26956,26955,26953,26950,27132,26948,26947,27183,26945,26940,27163,26937,26937,26935,26934,26934,27131,26932,26931,26929,27130,26926,27148,27176,27176,26923,26921,26921,27129,26918,26918,27182,26915,26914,26913,27147,27147,26911,29301,29301,29303,29305,29306,29308,29310,29311,29313,29314,29314,29316,30070,29317,29319,29321,29321,29323,30071,29326,29327,29329,29330,29332,29334,29334,29336,30072,30073,29337,29339,29339,29340,29342,30074,29343,29345,29345,29347,29349,29350,29352,29354,29359,29361,30075,29362,29364,29365,29365,29367,30076,30076,29368,29370,29371,29373,29375,30077,29376,29378,29378,29380,29382,29382,29384,29385,29390,29392,29394,29395,29397,30078,29398,28001,28000,28000,28304,27998,27998,27997,27995,27994,27993,27991,27989,27988,27986,27984,27982,27980,27976,27975,27973,27972,28343,27970,27967,28303,27965,27964,28367,28302,27961,28301,27959,27958,28300,27956,27955,28341,27953,27950,28340,28299,27947,28298,27945,27944,28297,27942,27941,28338,27939,27936,28296,27934,27933,27931,29401,29401,29403,30079,29409,29411,29413,29413,29415,30080,30080,29416,29418,29419,29421,29422,29422,29424,29426,29429,29431,29433,29434,29436,29437,29439,29441,29443,29447,29449,29451,29451,29453,29455,29455,29457,29459,29459,29461,30081,30082,29462,29464,29465,29467,30083,29468,29470,29472,29475,29476,29478,29479,29481,30084,29482,29484,29485,29485,29487,30085,29488,29490,30086,29491,29493,30087,29494,29496,30088,29499,29501,29502,29502,29504,29506,29506,29508,30089,29509,29511,29513,29513,29515,30090,30091,29516,29518,29518,29520,29522,29525,29527,29528,29531,29533,30092,29534,29536,29538,29539,29541,29543,29544,29546,29548,29551,29553,29554,29554,29556,30093,30094,29557,29559,29559,29560,29562,29563,29565,29567,29570,29572,29574,30095,29575,29577,29578,29580,29582,29582,29584,29586,29589,29591,29593,29595,29596,29598,29598,29600,30096,29601,29603,29605,29611,29613,29615,29618,29620,29622,29623,29625,30097,29629,29631,29633,29636,29638,30098,29641,29643,29645,30099,29646,29648,29648,29650,29651,29651,29653,30100,29654,29656,29658,29658,29660,29662,29665,29667,29669,29670,29672,30101,30102,29673,29675,29675,29677,29679,29679,29681,29683,29683,29685,29686,29686,29688,30103,29689,29691,29692,29692,29694,29696,29696,29698,29700,29700,29702,29704,29704,29706,29707,29710,29712,29713,29717,29719,29721,29721,29722,29724,29725,29727,29729,29729,29731,29733,29734,29736,30104,29737,29739,29741,29741,29743,29744,29744,29746,29748,29749,29751,29753,29753,29755,29757,29760,29761,29763,29763,29765,29767,29771,29772,29774,29774,29776,29778,29778,29780,29781,29781,29783,29785,29785,29786,29788,29789,29791,29793,29793,29795,29797,29798,29800,29801,29803,29805,29807,29807,29809,29810,29810,29812,29814,29814,29816,30105,30105,29817,29819,29820,29822,29824,29824,29826,29828,29828,29830,29832,29832,29834,29836,29840,29841,29843,29844,29846,29848,30106,29849,29851,29851,29853,29855,30107,29856,29858,29864,29866,30108,29867,29869,30109,29870,29872,29874,29877,29878,29880,29885,29887,29889,29889,29891,30110,29892,29894,29896,29899,29901,29903,29907,29909,29910,29910,29912,29914,30111,29915,29917,29918,29920,29922,29922,29923,29925,29926,29928,29930,29930,29932,30112,30112,29933,29935,29936,29938,29939,29939,29941,29943,29944,29946,29948,29950,29952,30113,29953,29955,30114,29956,29958,30115,29959,29961,29963,29964,29966,29968,29971,29973,30116,29974,29976,28916,28915,28960,28913,28911,28910,28959,28907,28905,28904,28900,28899,28972,28972,28958,28897,28896,28966,28893,28893,28891,28890,28885,28883,29083,29082,29166,29080,29076,29165,29074,29073,29180,29070,29068,29164,29066,29066,29065,29063,29059,29057,29056,29056,29173,29054,29053,29172,29051,29049,29048,29046,29043,29042,29162,29039,29037,29036,29036,29034,29033,29033,29161,29031,29030,29160,29028,29021,29170,29019,29019,29018,29016,29016,29014,29158,29007,29177,29005,29004,29002,29001,28998,29157,28996,28995,28993,28992,28992,28990,28989,28984,28982,30117,29977,29979,30118,30119,29980,29982,29987,29989,30120,29990,29992,29994,29995,29997,29999,30001,30002,30004,30007,30009,30011,30014,30016,30018,30019,30021,30121,30022,30024,30026,30027,30029,30031,30034,30036,30037,30037,30039,30041,30122,30042,30044,30045,30047,30049,30123,30050,30052,30053,30055,30057,30057,30059,30061,30124,30062,29200,29201,29205,29208,29208,29212,29214,30063,29217,29221,29222,29226,30125,30126,29227,29231,29231,29235,30064,29240,29243,30065,29248,29252,30127,30066,29256,29260,29262,30067,30128,30129,29265,29269,29269,29273,29276,30068,29279,29280,29280,29284,30130,30131,29285,30069,29290,29294,29295,27660,27659,27657,27657,27713,27653,27652,27651,27647,27647,27797,27644,27644,27641,27640,27640,27639,27636,27632,27631,27628,27623,27622,27751,27751,27620,27619,27617,27614,27611,27610,27691,27607,27607,27604,27603,27602,27601,27599,27596,27593,27590,27588,27690,27585,27581,27578,27577,27573,27572,27569,27569,27566,27563,27552,27549,27548,27548,27546,27544,27543,27749,27541,27540,27062,27061,27058,27055,27178,27049,27048,27045,27043,27041,27039,27034,27033,27030,27022,27167,27019,27018,27140,27016,27016,27015,27013,27012,27010,27009,27008,27007,27137,27002,26999,26996,26992,26991,26988,26986,26983,26980,26977,26975,26974,26963,26962,26960,26956,26953,26952,26951,26950,26948,26948,26947,26945,26940,26937,26934,26931,27130,26927,26927,26926,27176,26921,26918,26915,26914,27147,29301,29306,29310,30132,29311,29314,30070,29321,30071,29324,29326,29329,29330,29330,29334,30072,30073,29339,29342,29342,30074,29345,29345,29349,30133,29350,29354,29356,29359,30075,30134,30134,29362,29365,30076,29370,29371,29371,29375,30077,30077,29378,29382,29390,29394,29395,30078,29398,28000,28000,27998,27995,27989,27986,27985,27984,27980,27979,27973,27972,27970,27969,27967,27965,27965,27964,28302,27958,27956,27955,27955,27953,27952,27950,28299,27948,27945,27944,27942,27941,27939,27938,27937,27936,27934,27934,27933,29401,29409,29413,30080,30080,29418,30135,29419,29422,29426,29428,29429,29433,29437,29439,29443,29446,29447,29451,29451,29455,29459,30081,30082,29464,29468,29472,29473,29475,29478,29479,29482,29485,30085,30136,29488,30086,29491,30087,29494,29494,30088,30137,29499,29502,29506,29506,30089,29509,30138,30091,29518,29518,29522,29523,29523,29525,29528,29530,29531,30092,30139,29534,29538,29539,29543,30140,29544,29548,30141,29549,29551,29554,29554,30093,30094,30094,29559,29562,30142,29563,29567,29570,29574,30143,30095,29577,30144,30145,29578,29582,29582,29586,29588,30146,29589,29593,29593,29595,29598,30147,29601,29605,29610,29611,29615,29618,29622,30148,30149,29623,30097,29628,29629,29633,29636,30098,29639,29641,29645,30150,30099,29648,29651,30151,29654,29658,29658,29662,29664,30152,29665,29669,30153,30102,29675,29679,29683,29686,30103,29689,29692,29692,29696,29700,29700,29704,29707,29715,29717,29721,29721,29724,29725,29725,29729,29733,30154,29734,30104,29737,29741,29744,29744,29748,30155,30156,29749,29753,29760,29763,29767,29771,29774,29778,29781,29785,29788,29789,29793,29797,29798,29801,29803,29803,29807,29810,29810,29814,30105,30105,29819,30157,30157,29820,29824,29824,29828,29832,29832,29836,29838,29840,29843,29844,30106,29851,29855,30107,29858,29859,30108,29867,30109,30109,29870,29874,29883,29885,29889,29889,30110,30158,30158,29892,29896,29898,29899,29903,29905,29907,29910,29910,29914,30159,30111,29917,29918,29918,29922,29925,29925,29926,29930,30112,29935,29936,29936,29939,29943,29943,29944,29948,30115,29959,29963,30160,29964,29968,28916,28915,28913,28911,28959,28908,28908,28907,28904,28900,28972,28897,28897,28896,28893,28886,28885,29083,29082,29080,29079,29077,29076,29074,29074,29073,29070,29068,29066,29063,29059,29056,29054,29053,29051,29050,29049,29046,29045,29043,29162,29040,29039,29036,29033,29033,29031,29030,29030,29028,29027,29022,29021,29019,29019,29016,29158,29008,29007,29005,28999,28998,28996,28996,28995,28992,28992,28989,28987,28985,28984,30117,30161,29977,30118,30162,30119,29982,29987,30120,29990,29995,29999,30001,30001,30004,30006,30007,30011,30013,30013,30014,30018,30018,30019,30121,30022,30026,30163,30164,30027,30031,30037,30041,30165,30122,30044,30166,30045,30049,30123,30123,30052,30167,30168,30053,30057,30124,29200,30169,29201,29208,29214,30170,30063,29221,29222,30125,30126,30126,29231,30064,29253,30066,29260,30128,30129,29269,29269,29276,30171,30068,29280,30130,30131,30069,29288,29295,29299,30172,29295,30172,29290,27660,27657,27653,27652,27647,27644,27640,27636,27633,27632,27628,27626,27623,27751,27619,27617,27611,27610,27610,27607,27603,27602,27599,27598,27597,27596,27590,27588,27585,27584,27582,27581,27577,27573,27569,27563,27552,27548,27544,27059,27058,27178,27049,27045,27044,27035,27034,27030,27023,27022,27019,27018,27016,27013,27013,27012,27009,27008,27137,27003,27003,27002,26996,26993,26992,26988,26986,26980,26978,26977,26974,26970,26963,26960,26957,26956,26952,26951,26951,26948,26945,26942,26940,26934,26927,27176,26921,26914,29301,29305,29306,30132,29311,29311,30070,30173,29321,29324,29326,29326,29330,30072,30073,29342,29345,29345,30133,30174,29350,29356,29358,30134,29365,30076,30076,29371,30077,30077,29382,29385,30078,28000,27995,27984,27979,27978,27976,27973,27970,27969,27965,28302,27958,27955,27952,27951,27950,27948,27947,27945,27942,27937,27934,29401,29408,29409,30080,30175,29419,29426,29428,29433,30176,29437,29443,30177,29444,29446,29451,29451,29459,30081,30081,29464,30178,29468,29473,29475,29475,29479,30084,30179,29482,30085,29494,30137,29497,29499,29506,29509,30138,29518,29523,29523,29528,29530,29530,30092,30139,30139,29538,30180,30180,29539,30140,29544,30141,29549,29549,29554,30094,30142,29567,29568,29568,29570,30143,30145,29582,29588,30146,29593,29598,30181,30147,29605,29610,29615,29617,29617,29618,30148,30149,30097,30182,29626,29628,29633,29639,29641,30150,30183,30099,29651,30100,30151,29658,30184,30152,29669,30153,29675,29679,29679,29686,30103,30103,29692,29700,29700,29707,29709,29721,29725,30185,29721,30185,29715,30154,30104,30186,30186,29737,29744,30156,29753,29757,29758,29760,29767,29771,29778,29781,29781,29788,30187,29789,29797,29798,29803,29810,30105,30105,30157,29824,29824,29832,29838,29840,29844,29848,30106,29855,30107,30107,29859,29861,30108,30109,29874,29883,29889,30158,29896,29898,29903,29905,29910,30159,30188,30111,29918,29925,29930,30189,29925,30189,29918,30112,29936,29943,29943,29948,29950,30115,29963,30190,30191,30160,29968,28916,28913,28912,28912,28911,28908,28908,28904,28902,28900,28897,28893,28886,29083,29082,29077,29074,29070,29068,29063,29062,29059,29054,29053,29053,29050,29049,29040,29039,29033,29030,29027,29025,29023,29022,29019,29019,29158,29012,29008,29005,29004,28999,28996,28992,28992,28987,28985,28985,30117,30192,30161,30118,30193,30162,29982,29984,29987,29990,29994,29995,30001,30006,30006,30007,30013,30013,30018,30121,30163,30164,30031,30034,30037,30165,30122,30166,30194,30045,30123,30167,30168,30057,30061,30169,29201,29214,30170,29221,29222,29222,30126,30064,29253,29260,29262,29262,30128,29269,30195,30068,30130,29299,29300,30196,30196,29290,30172,30196,30172,29299,27663,27660,27653,27652,27644,27640,27640,27633,27632,27632,27626,27625,27623,27619,27618,27617,27610,27603,27603,27602,27598,27597,27590,27588,27588,27584,27582,27582,27577,27576,27574,27573,27563,27554,27552,27544,27061,27059,27178,27050,27049,27044,27035,27030,27029,27023,27019,27018,27018,27013,27009,27008,27003,26996,26993,26988,26987,26986,26978,26977,26957,26956,26951,26951,26945,26944,26943,26942,26934,26927,26921,26915,26915,26914,29305,29317,29321,29326,29326,30072,30073,30073,29345,30174,30134,30076,30077,30077,29385,29387,29395,30078,27995,27976,27970,27969,27969,28302,27962,27959,27958,27952,27951,27948,27947,27947,27942,27941,27938,27937,29401,29406,29408,30080,30197,30175,29426,29428,30176,29434,29437,30177,30198,29444,29451,30081,30081,30178,30199,30083,29468,29475,29475,30084,30200,30179,30085,30201,29497,29499,29509,30202,30138,29523,29523,29530,30139,30139,30180,30140,29544,29549,30094,30203,30142,29568,29568,30143,30204,30205,30145,29588,30146,29598,30096,30181,29605,29607,29617,30148,30206,29617,30206,29610,30207,30149,30182,29626,29633,29634,29636,29639,30150,30100,29658,29664,30184,29669,29670,30101,30153,29679,30103,29700,30208,30103,30208,29679,29700,29709,29710,29725,29733,30209,30209,29715,30185,30209,30185,29725,30186,29744,30155,30155,30156,29757,30210,29758,29767,29771,29781,30187,29789,29798,29803,29803,30105,29824,29840,29848,30211,30106,30107,29861,29864,30108,29874,29883,30158,29896,29896,29903,29905,29905,30159,30188,30112,29918,30189,30112,30189,29930,30112,29943,29950,30115,30190,30191,30191,29968,30212,28916,28912,28908,28902,28900,28893,28886,29082,29079,29079,29077,29070,29068,29062,29061,29060,29059,29053,29019,29012,29011,29009,29008,29004,29000,28999,28992,28992,28985,30192,29985,29987,29994,30006,30013,30121,30022,30163,30031,30034,30165,30213,30122,30194,30045,30168,30061,30214,30169,29214,30215,30216,30170,29222,29222,30064,29240,29253,29262,29269,30217,30195,30130,27663,27653,27652,27640,27632,30218,27640,30218,27652,27632,27625,27624,27618,27617,27603,27603,27598,27597,27597,27588,27582,27582,27576,27574,27574,27563,27560,27554,27544,27543,27540,27061,27178,27050,27044,27043,27023,27018,27009,27008,26996,26994,26986,26977,26970,26951,26944,30219,26951,30219,26957,26943,26934,26932,26915,29305,29306,29317,29326,30073,30073,30174,30220,30134,30077,29387,29390,29395,27995,27969,27962,27961,27961,27959,27952,27951,27947,27941,27941,27938,29401,29406,30080,30135,30197,29426,29428,29428,29434,29437,30198,29444,30081,30083,29475,30200,29497,29509,29513,30202,29523,30221,30202,30221,30090,30139,30140,29544,29544,30094,29562,30203,29568,30204,30144,30205,29588,30222,30146,30096,30181,29607,29608,30148,30223,30224,30224,29610,30206,30224,30206,30148,30207,30182,29626,29634,29636,30225,29634,30225,29626,30100,29664,30226,30226,30184,29670,29670,30101,29679,29700,29710,30227,29700,30227,30228,30208,30228,30229,30208,30229,29679,30228,30208,29700,30230,29715,30209,30209,29733,30231,30209,30231,30230,29715,30230,30232,29715,30232,29713,30186,30155,30233,30186,30233,30154,30155,29757,30234,30210,29767,29769,29771,30187,30235,29803,29824,30236,29803,30236,29789,29864,29874,29875,29896,29905,30188,29918,30112,29950,30115,30191,30212,29974,28916,28908,28902,28893,28890,28886,29079,29070,29061,29060,29053,29019,29011,29009,29009,29004,29001,29000,28992,30192,29984,29985,29994,29995,30006,30121,30022,30031,30033,30237,30034,30213,30122,30045,30167,30168,30214,30238,30169,30215,30216,30216,29222,29240,30239,29253,29269,30217,30130,30131,30240,27652,30218,30240,30218,27632,27652,30240,27663,27623,27618,27603,27603,27597,27582,27582,27574,27560,27554,27543,27541,27541,27540,27178,27050,27043,27039,27026,27023,27009,27008,26994,26993,30241,26957,30219,30241,30219,26944,26957,30241,26963,26943,26932,26931,26915,29306,29311,30173,29317,30073,29359,30134,29387,29390,27995,27994,27969,27961,27952,27941,29401,30242,27941,30242,27951,29404,29406,30135,29437,30198,30081,30083,30200,30179,29494,29497,29513,29523,30139,30243,30243,30090,30221,30243,30221,29523,30244,30203,30204,30144,29588,30245,30222,30096,30181,30181,29608,29610,30223,30207,30246,30246,29610,30224,30246,30224,30223,30247,29626,30225,30247,30225,29636,29626,30247,30207,30100,30226,29670,30248,29679,30229,30248,30229,30228,30249,30228,30227,30249,30227,29710,30228,30249,30248,29679,30248,30250,29679,30250,29670,29733,30154,30251,29733,30251,30252,30230,30252,30253,30253,29713,30232,30253,30232,30230,30252,30230,30231,30252,30231,29733,30155,30234,30254,30254,30154,30233,30254,30233,30155,30210,29769,29771,29771,30235,29789,29824,29838,30255,30255,29789,30236,30255,30236,29824,29864,29875,29877,29896,30188,30256,29896,30256,29883,30188,29918,29950,30115,30212,29969,29974,28908,28902,28902,28890,28888,28886,29070,29069,29061,29053,29049,29019,29009,29001,29000,30192,30257,30162,29984,29994,29995,30121,30022,30022,30033,30258,30237,30213,30259,30168,30238,30260,30216,29240,30261,30216,30261,30169,30262,30239,29269,30263,27663,30240,30263,30240,27632,27663,30263,27664,27624,27623,27603,27582,27560,30264,27582,30264,27603,27541,27178,30265,27541,30265,27554,27026,27009,27008,27008,26993,26987,30266,26963,30241,30266,30241,26944,26963,30266,26964,26943,26931,26927,26915,29311,30267,26915,30267,26927,30173,30073,30220,29359,29387,30268,29390,27994,27991,27976,27969,27952,30079,27951,30242,30079,30242,29401,30269,29404,30135,29428,29437,30081,29491,29494,29513,30270,30090,30243,30243,30139,30271,30243,30271,30270,30090,30270,30272,30090,30272,29513,30244,30204,30095,30144,30245,30273,30181,29610,30274,30181,30274,30222,30275,30207,30247,30247,29636,30276,30247,30276,30275,30207,30275,30277,30277,29610,30246,30277,30246,30207,30250,30278,30279,30250,30279,29670,30278,30250,30248,30280,30248,30249,30280,30249,29710,30248,30280,30278,30281,29670,30279,30281,30279,30278,29670,30281,30100,30282,30154,30254,30282,30254,30234,30154,30282,30283,30252,30283,30284,30284,29713,30253,30284,30253,30252,30283,30252,30251,30283,30251,30154,30285,30210,29771,30286,29789,30255,30286,30255,29838,29789,30286,29771,29863,29864,29877,29950,30287,30288,29950,30288,30188,30287,29883,30256,30256,30188,30288,30256,30288,30287,29956,30115,29969,30289,29974,28902,28886,29069,29068,29068,29061,29049,29023,29019,29001,29000,30257,30290,30193,30162,29994,30291,29995,30022,30261,30065,30292,30261,30292,30169,30065,30261,29240,30293,30262,29269,27632,27624,30294,30294,27664,30263,30294,30263,27632,30295,27603,30264,30295,30264,27560,27603,30295,27624,27178,27051,30296,30296,27554,30265,30296,30265,27178,27008,26987,30297,27008,30297,27026,30298,26964,30266,30298,30266,26944,26964,30298,26965,29311,30173,30299,30299,26927,30267,30299,30267,29311,30173,30220,29350,29359,30268,30300,29390,27991,27989,27976,27952,27951,27951,30079,30301,30269,30135,30302,29428,30081,30303,29428,30303,30197,30086,29491,29513,30139,29544,30304,30139,30304,30305,30270,30305,30306,30306,29513,30272,30306,30272,30270,30305,30270,30271,30305,30271,30139,30095,30144,30273,30307,30222,30274,30307,30274,29610,30222,30307,30273,29636,30150,30308,30308,30309,30310,30308,30310,29636,30275,30309,30311,30311,29610,30277,30311,30277,30275,30309,30275,30276,30276,29636,30310,30276,30310,30309,30281,30312,30313,30281,30313,30100,30312,30281,30278,30314,30278,30280,30314,30280,29710,30278,30314,30312,30315,30100,30313,30315,30313,30312,30100,30315,29651,30284,30316,30317,30284,30317,29713,30316,30284,30283,30318,30283,30282,30318,30282,30234,30283,30318,30316,30319,29713,30317,30319,30317,30316,29713,30319,29710,30320,29771,30286,30320,30286,29838,29771,30320,30285,29863,29877,29880,30287,30113,30321,30287,30321,29883,30113,30287,29950,29956,29969,29971,30116,30289,28902,29068,29049,30322,29068,30322,28886,29024,29023,29001,29000,30290,30323,30193,29994,30291,30291,30022,30258,30324,30169,30292,30324,30292,30065,30169,30324,30124,30325,30293,29269,30295,30326,30327,30295,30327,27624,30295,27560,30328,30295,30328,30326,30294,30326,30329,30294,30329,27664,30294,27624,30327,30294,30327,30326,27051,27050,30330,30330,27554,30296,30330,30296,27051,30331,27026,30297,30331,30297,26987,27026,30331,27027,30332,26965,30298,30332,30298,26944,26965,30332,26966,30173,29350,30333,30333,26927,30299,30333,30299,30173,30334,29359,30300,29390,27989,27985,27951,30301,30335,27951,30335,27976,30269,30302,30197,30303,30199,30336,30303,30336,30197,30199,30303,30081,30136,30086,29513,30337,30273,30307,30337,30307,29610,30273,30337,30095,30150,30183,30338,30338,30339,30340,30338,30340,30150,30309,30339,30341,30341,29610,30311,30341,30311,30309,30339,30309,30308,30308,30150,30340,30308,30340,30339,30315,30342,30343,30315,30343,29651,30342,30315,30312,30344,30312,30314,30344,30314,29710,30312,30344,30342,30345,29651,30343,30345,30343,30342,29651,30345,30183,30234,30285,30346,30346,30347,30348,30346,30348,30234,30316,30347,30349,30349,29710,30319,30349,30319,30316,30347,30316,30318,30318,30234,30348,30318,30348,30347,29838,29840,30350,30350,30285,30320,30350,30320,29838,29861,29863,29880,30321,30351,30352,30321,30352,29883,30351,30321,30113,30353,29956,29971,30116,28902,28888,29049,29045,30354,30354,28886,30322,30354,30322,29049,29025,29024,29001,29000,30323,30355,30291,30258,30356,30291,30356,30193,30357,30124,30324,30357,30324,30065,30124,30357,30260,30325,29269,30171,30329,30358,30359,30329,30359,27664,30358,30329,30326,30360,30326,30328,30360,30328,27560,30326,30360,30358,30361,27664,30359,30361,30359,30358,27664,30361,27256,27050,27039,30362,30362,27554,30330,30362,30330,27050,30363,27027,30331,30363,30331,26987,27027,30363,27028,26944,26943,30364,30364,26966,30332,30364,30332,26944,29350,29358,30365,30365,26927,30333,30365,30333,29350,30334,30300,29388,30335,30366,30367,30335,30367,27976,30366,30335,30301,30368,30197,30336,30368,30336,30199,30197,30368,30269,30369,30136,29513,30370,30095,30337,30337,29610,30371,30337,30371,30370,30095,30370,30372,30095,30372,30244,30373,30374,30375,30373,30375,30347,30373,30376,30377,30373,30377,30374,30349,30374,30378,30349,30378,29710,30349,30347,30375,30349,30375,30374,30346,30379,30380,30346,30380,30347,30346,30285,30381,30346,30381,30379,30373,30379,30382,30373,30382,30376,30373,30347,30380,30373,30380,30379,30383,30384,30385,30383,30385,30342,30383,30376,30386,30383,30386,30384,30345,30384,30387,30345,30387,30183,30345,30342,30385,30345,30385,30384,30344,30374,30388,30344,30388,30342,30344,29710,30378,30344,30378,30374,30383,30374,30377,30383,30377,30376,30383,30342,30388,30383,30388,30374,29840,30211,30389,29840,30389,30390,30350,30390,30391,30350,30391,30285,30390,30350,29840,29861,29880,30392,29861,30392,30106,30352,30393,30394,30352,30394,29883,30393,30352,30351,29971,30116,28888,29025,29001,29000,29000,30355,30161,30258,30395,30396,30396,30193,30356,30396,30356,30258,30357,30397,30398,30357,30398,30260,30397,30357,30065,30325,30171,30217,30361,30399,30400,30361,30400,27256,30399,30361,30358,30401,30358,30360,30401,30360,27560,30358,30401,30399,30402,27256,30400,30402,30400,30399,27256,30402,29300,27039,27038,30403,30403,27554,30362,30403,30362,27039,26987,26986,30404,30404,27028,30363,30404,30363,26987,29358,30334,30405,30405,26927,30365,30405,30365,29358,30334,29388,29390,30367,30269,30406,30367,30406,27976,30269,30367,30366,30368,29465,30407,30368,30407,30269,29465,30368,30199,30369,29513,30306,30369,30306,30305,30408,30305,30304,30304,29544,30409,30304,30409,30408,30305,30408,30410,30305,30410,30369,30372,30411,30412,30372,30412,30244,30411,30372,30370,30413,30370,30371,30413,30371,29610,30370,30413,30411,30414,30244,30412,30414,30412,30411,30244,30414,29562,30415,30384,30416,30415,30416,30417,30415,30183,30387,30415,30387,30384,30418,30384,30386,30418,30386,30376,30418,30417,30416,30418,30416,30384,30419,30376,30382,30419,30382,30379,30420,30379,30381,30381,30285,30421,30381,30421,30420,30379,30420,30422,30379,30422,30419,30376,30419,30423,30376,30423,30424,30418,30424,30425,30418,30425,30417,30424,30418,30376,30415,30426,30427,30415,30427,30183,30415,30417,30428,30415,30428,30426,30429,30426,30430,30429,30430,30431,30429,30183,30427,30429,30427,30426,30339,30431,30432,30339,30432,30433,30341,30433,30434,30341,30434,29610,30433,30341,30339,30338,30429,30435,30338,30435,30339,30429,30338,30183,30431,30339,30435,30431,30435,30429,30211,30436,30437,30437,30438,30439,30437,30439,30211,30390,30438,30440,30440,30285,30391,30440,30391,30390,30438,30390,30389,30389,30211,30439,30389,30439,30438,29880,29881,30441,30441,30106,30392,30441,30392,29880,30394,29953,30442,30394,30442,29883,29953,30394,30393,29971,28888,30443,29971,30443,30353,29025,29000,30161,30444,30193,30396,30444,30396,30395,30193,30444,30161,30398,30445,30446,30398,30446,30260,30445,30398,30397,30325,30217,30131,30447,29300,30402,30447,30402,30399,30448,30399,30401,30448,30401,27560,30399,30448,30447,29300,30447,30449,30449,29290,30196,30449,30196,29300,27038,27035,30450,30450,27554,30403,30450,30403,27038,26986,26970,30451,26986,30451,30452,30404,30452,30453,30404,30453,27028,30452,30404,26986,30334,29390,30454,30334,30454,30455,30405,30455,30456,30405,30456,26927,30455,30405,30334,30407,30457,30458,30407,30458,30269,30407,29465,30459,30407,30459,30457,30406,30457,30460,30406,30460,27976,30406,30269,30458,30406,30458,30457,30201,30369,30410,30410,30408,30461,30410,30461,30201,30462,30408,30409,30409,29544,30463,30409,30463,30462,30408,30462,30464,30464,30201,30461,30464,30461,30408,30465,30431,30466,30466,30467,30468,30466,30468,30465,30469,30467,30470,30469,30470,30471,30469,30465,30468,30469,30468,30467,30472,30433,30473,30472,30473,30465,30472,29610,30434,30472,30434,30433,30431,30465,30473,30473,30433,30432,30473,30432,30431,30474,30475,30476,30474,30476,30467,30475,30474,30417,30475,30471,30470,30470,30467,30476,30470,30476,30475,30426,30467,30466,30466,30431,30430,30466,30430,30426,30474,30426,30428,30474,30428,30417,30426,30474,30467,30477,30424,30478,30477,30478,30479,30477,30417,30425,30477,30425,30424,30419,30479,30478,30478,30424,30423,30478,30423,30419,30480,30419,30422,30480,30422,30420,30481,30420,30421,30481,30421,30285,30420,30481,30480,30419,30480,30482,30419,30482,30479,30477,30483,30484,30477,30484,30417,30477,30479,30485,30477,30485,30483,30475,30483,30486,30475,30486,30471,30475,30417,30484,30475,30484,30483,30487,30488,30489,30487,30489,30465,30487,30490,30491,30487,30491,30488,30472,30488,30492,30472,30492,29610,30472,30465,30489,30472,30489,30488,30469,30493,30494,30469,30494,30465,30469,30471,30495,30469,30495,30493,30487,30493,30496,30487,30496,30490,30487,30465,30494,30487,30494,30493,30497,30498,30499,30497,30499,30411,30497,30490,30500,30497,30500,30498,30414,30498,30501,30414,30501,29562,30414,30411,30499,30414,30499,30498,30413,30488,30502,30413,30502,30411,30413,29610,30492,30413,30492,30488,30497,30488,30491,30497,30491,30490,30497,30411,30502,30497,30502,30488,30436,30106,30503,30503,30504,30505,30503,30505,30436,30438,30504,30506,30506,30285,30440,30506,30440,30438,30504,30438,30437,30437,30436,30505,30437,30505,30504,29881,29883,30507,30507,30106,30441,30507,30441,29881,30442,30114,30508,30442,30508,29883,30114,30442,29953,28888,28887,30509,30509,30353,30443,30509,30443,28888,29025,30161,30510,29025,30510,29030,30395,30511,30512,30512,30161,30444,30512,30444,30395,30446,29246,30513,30446,30513,30260,29246,30446,30445,30325,30131,29288,30514,30447,30515,30514,30515,27558,30447,30514,30516,30449,30516,30517,30449,30517,29290,30516,30449,30447,30448,27558,30515,30448,30515,30447,27558,30448,27560,27035,27029,30518,27035,30518,30519,30450,30519,30520,30450,30520,27554,30519,30450,27035,26970,26969,30521,30521,30522,30523,30521,30523,26970,30452,30522,30524,30524,27028,30453,30524,30453,30452,30522,30452,30451,30451,26970,30523,30451,30523,30522,30456,30525,30526,30456,30526,26927,30525,30456,30455,30527,30455,30454,30527,30454,29390,30455,30527,30525,30528,26927,30526,30528,30526,30525,26927,30528,26943,30460,30529,30530,30460,30530,27976,30529,30460,30457,30531,30457,30459,30531,30459,29465,30457,30531,30529,30532,27976,30530,30532,30530,30529,27976,30532,27977,30462,30533,30534,30534,30201,30464,30534,30464,30462,30535,30462,30463,30535,30463,29544,30462,30535,30533,30179,30201,30534,30534,30533,30536,30534,30536,30179,30537,30490,30538,30537,30538,30539,30540,30539,30541,30540,30541,30542,30539,30540,30537,30490,30537,30543,30490,30543,30544,30545,30498,30546,30545,30546,30544,30498,30545,30547,30501,30547,30548,30501,30548,29562,30547,30501,30498,30500,30544,30546,30500,30546,30498,30544,30500,30490,30493,30542,30541,30493,30541,30539,30496,30539,30538,30496,30538,30490,30539,30496,30493,30542,30493,30495,30542,30495,30471,30549,30483,30550,30549,30550,30551,30483,30549,30552,30486,30552,30553,30486,30553,30471,30552,30486,30483,30485,30551,30550,30485,30550,30483,30551,30485,30479,30482,30554,30555,30482,30555,30479,30554,30482,30480,30556,30480,30481,30556,30481,30285,30480,30556,30554,30557,30479,30555,30557,30555,30554,30479,30557,30551,30558,30471,30553,30558,30553,30552,30559,30552,30549,30559,30549,30551,30552,30559,30558,30471,30558,30560,30471,30560,30542,30547,30561,30562,30562,29562,30548,30562,30548,30547,30561,30547,30545,30561,30545,30544,30563,30544,30543,30563,30543,30537,30564,30537,30540,30564,30540,30542,30537,30564,30563,30544,30563,30565,30544,30565,30561,30566,29562,30562,30562,30561,30567,30562,30567,30566,29562,30566,30568,29562,30568,29544,30508,30353,30569,30508,30569,29883,30353,30508,30114,28887,28886,30570,30570,30353,30509,30570,30509,28887,30510,30512,30571,30510,30571,29030,30512,30510,30161,30512,30511,30572,30572,29030,30571,30572,30571,30512,30573,30260,30513,30573,30513,29246,30260,30573,30168,30127,30325,29288,30574,30516,30575,30574,30575,27556,30516,30574,30576,30517,30576,30577,30517,30577,29290,30576,30517,30516,30514,27556,30575,30514,30575,30516,27556,30514,27558,27029,27028,30578,30578,30579,30580,30578,30580,27029,30519,30579,30581,30581,27554,30520,30581,30520,30519,30579,30519,30518,30518,27029,30580,30518,30580,30579,26969,26968,30582,30582,30583,30584,30582,30584,26969,30522,30583,30585,30585,27028,30524,30585,30524,30522,30583,30522,30521,30521,26969,30584,30521,30584,30583,30532,30586,30587,30532,30587,27977,30586,30532,30529,30588,30529,30531,30588,30531,29465,30529,30588,30586,30589,27977,30587,30589,30587,30586,27977,30589,27978,30590,30561,30591,30590,30591,30592,30561,30590,30593,30566,30593,30594,30594,29544,30568,30594,30568,30566,30593,30566,30567,30593,30567,30561,30563,30592,30591,30591,30561,30565,30591,30565,30563,30592,30563,30564,30564,30542,30595,30564,30595,30592,30558,30596,30597,30597,30542,30560,30597,30560,30558,30596,30558,30559,30596,30559,30551,30598,30551,30557,30598,30557,30554,30599,30554,30556,30599,30556,30285,30554,30599,30598,30551,30598,30600,30551,30600,30596,30601,30542,30597,30597,30596,30602,30597,30602,30601,30542,30601,30603,30603,30592,30595,30603,30595,30542,30604,29544,30594,30594,30593,30605,30594,30605,30604,30606,30593,30590,30590,30592,30607,30590,30607,30606,30593,30606,30608,30608,30604,30605,30608,30605,30593,29544,30604,30609,29544,30609,30610,30533,30610,30611,30611,30179,30536,30611,30536,30533,30610,30533,30535,30610,30535,29544,30570,30612,30613,30570,30613,30353,30570,28886,30614,30570,30614,30612,30569,30612,30615,30569,30615,29883,30569,30353,30613,30569,30613,30612,30616,29030,30572,30616,30572,30511,29030,30616,29033,30573,29248,30617,30573,30617,30168,29248,30573,29246,30577,30618,30619,30577,30619,29290,30618,30577,30576,30620,30576,30574,30620,30574,27556,30576,30620,30618,30621,29290,30619,30621,30619,30618,29290,30621,29288,26968,26966,30622,30622,30623,30624,30622,30624,26968,30583,30623,30625,30625,27028,30585,30625,30585,30583,30623,30583,30582,30582,26968,30624,30582,30624,30623,30626,27978,30589,30626,30589,30586,30627,30586,30588,30627,30588,29465,30586,30627,30626,27978,30626,30628,27978,30628,27984,30629,30630,30631,30629,30631,30604,30630,30629,30632,30633,30632,30634,30633,30634,30635,30632,30633,30630,30636,30604,30631,30636,30631,30630,30604,30636,30637,30638,30610,30639,30638,30639,30637,30610,30638,30640,30611,30640,30641,30611,30641,30179,30640,30611,30610,30609,30637,30639,30609,30639,30610,30637,30609,30604,30634,30606,30642,30634,30642,30635,30606,30634,30632,30608,30632,30629,30608,30629,30604,30632,30608,30606,30607,30635,30642,30607,30642,30606,30635,30607,30592,30643,30601,30644,30643,30644,30645,30601,30643,30646,30603,30646,30647,30603,30647,30592,30646,30603,30601,30602,30645,30644,30602,30644,30601,30645,30602,30596,30600,30648,30649,30600,30649,30596,30648,30600,30598,30650,30598,30599,30650,30599,30285,30598,30650,30648,30651,30596,30649,30651,30649,30648,30596,30651,30645,30647,30652,30653,30647,30653,30592,30652,30647,30646,30654,30646,30643,30654,30643,30645,30646,30654,30652,30655,30592,30653,30655,30653,30652,30592,30655,30635,30656,30640,30657,30656,30657,30658,30640,30656,30659,30641,30659,30660,30641,30660,30179,30659,30641,30640,30638,30658,30657,30638,30657,30640,30658,30638,30637,30636,30661,30662,30636,30662,30637,30661,30636,30630,30663,30630,30633,30663,30633,30635,30630,30663,30661,30664,30637,30662,30664,30662,30661,30637,30664,30658,30665,30179,30660,30665,30660,30659,30666,30659,30656,30666,30656,30658,30659,30666,30665,30179,30665,30667,30179,30667,30083,30668,28886,30354,30668,30354,29045,28886,30668,30669,30612,30669,30670,30670,29883,30615,30670,30615,30612,30669,30612,30614,30669,30614,28886,30671,29033,30616,30671,30616,30511,29033,30671,29040,30617,30127,30672,30617,30672,30168,30127,30617,29248,30673,30618,30674,30673,30674,27555,30618,30673,30675,30621,30675,30676,30621,30676,29288,30675,30621,30618,30620,27555,30674,30620,30674,30618,27555,30620,27556,30628,30677,30678,30628,30678,27984,30677,30628,30626,30679,30626,30627,30679,30627,29465,30626,30679,30677,30680,27984,30678,30680,30678,30677,27984,30680,27985,30681,30682,30683,30681,30683,30658,30682,30681,30684,30685,30684,30686,30685,30686,30687,30684,30685,30682,30688,30658,30683,30688,30683,30682,30658,30688,30689,30690,30665,30691,30690,30691,30689,30665,30690,30692,30667,30692,30693,30667,30693,30083,30692,30667,30665,30666,30689,30691,30666,30691,30665,30689,30666,30658,30686,30661,30694,30686,30694,30687,30661,30686,30684,30664,30684,30681,30664,30681,30658,30684,30664,30661,30663,30687,30694,30663,30694,30661,30687,30663,30635,30695,30652,30696,30695,30696,30697,30652,30695,30698,30655,30698,30699,30655,30699,30635,30698,30655,30652,30654,30697,30696,30654,30696,30652,30697,30654,30645,30651,30700,30701,30651,30701,30645,30700,30651,30648,30702,30648,30650,30702,30650,30285,30648,30702,30700,30703,30645,30701,30703,30701,30700,30645,30703,30697,30699,30704,30705,30699,30705,30635,30704,30699,30698,30706,30698,30695,30706,30695,30697,30698,30706,30704,30707,30635,30705,30707,30705,30704,30635,30707,30687,30708,30692,30709,30708,30709,30710,30692,30708,30711,30693,30711,30712,30693,30712,30083,30711,30693,30692,30690,30710,30709,30690,30709,30692,30710,30690,30689,30688,30713,30714,30688,30714,30689,30713,30688,30682,30715,30682,30685,30715,30685,30687,30682,30715,30713,30716,30689,30714,30716,30714,30713,30689,30716,30710,30712,30717,30718,30712,30718,30083,30717,30712,30711,30719,30711,30708,30719,30708,30710,30711,30719,30717,30720,30083,30718,30720,30718,30717,30083,30720,29465,29045,29044,30721,30721,30722,30723,30721,30723,29045,30669,30722,30724,30724,29883,30670,30724,30670,30669,30722,30669,30668,30668,29045,30723,30668,30723,30722,30725,29040,30671,30671,30511,30726,30671,30726,30725,29040,30725,30727,29040,30727,29043,30127,29288,30728,30728,30168,30672,30728,30672,30127,30729,30675,30730,30729,30730,27554,30675,30729,30731,30676,30731,30732,30676,30732,29288,30731,30676,30675,30673,27554,30730,30673,30730,30675,27554,30673,27555,30733,27985,30680,30733,30680,30677,30734,30677,30679,30734,30679,29465,30677,30734,30733,27985,30733,30735,27985,30735,29390,30736,30737,30738,30736,30738,30687,30737,30736,30739,30738,30740,30741,30738,30741,30687,30740,30738,30737,30742,30739,30743,30743,30744,30745,30743,30745,30742,30737,30742,30746,30737,30746,30740,30742,30737,30739,30747,30744,30748,30748,30749,30750,30748,30750,30747,30751,30749,30752,30752,30106,30753,30752,30753,30751,30750,30751,30754,30750,30754,30747,30751,30750,30749,30755,30742,30756,30756,30747,30757,30756,30757,30755,30746,30755,30758,30746,30758,30740,30755,30746,30742,30744,30747,30756,30756,30742,30745,30756,30745,30744,30759,30710,30760,30760,30761,30762,30760,30762,30759,30763,30761,30764,30764,30740,30765,30764,30765,30763,30762,30763,30766,30762,30766,30759,30763,30762,30761,30767,30717,30768,30768,30759,30769,30768,30769,30767,30720,30767,30770,30720,30770,29465,30767,30720,30717,30710,30759,30768,30768,30717,30719,30768,30719,30710,30764,30771,30772,30764,30772,30740,30771,30764,30761,30772,30687,30741,30772,30741,30740,30687,30772,30771,30713,30761,30760,30760,30710,30716,30760,30716,30713,30771,30713,30715,30771,30715,30687,30713,30771,30761,30773,30749,30774,30774,30775,30776,30774,30776,30773,30752,30773,30777,30752,30777,30106,30773,30752,30749,30748,30778,30779,30748,30779,30749,30778,30748,30744,30778,30775,30774,30774,30749,30779,30774,30779,30778,30780,30781,30782,30780,30782,30504,30781,30780,30775,30781,30285,30506,30506,30504,30782,30506,30782,30781,30773,30504,30503,30503,30106,30777,30503,30777,30773,30780,30773,30776,30780,30776,30775,30773,30780,30504,30743,30783,30784,30743,30784,30744,30783,30743,30739,30783,30697,30785,30785,30744,30784,30785,30784,30783,30704,30739,30736,30736,30687,30707,30736,30707,30704,30783,30704,30706,30783,30706,30697,30704,30783,30739,30700,30775,30786,30786,30697,30703,30786,30703,30700,30781,30700,30702,30781,30702,30285,30700,30781,30775,30786,30778,30787,30786,30787,30697,30778,30786,30775,30778,30744,30785,30785,30697,30787,30785,30787,30778,29044,29043,30788,30788,30789,30790,30788,30790,29044,30722,30789,30791,30791,29883,30724,30791,30724,30722,30789,30722,30721,30721,29044,30790,30721,30790,30789,30511,30237,30792,30792,30793,30794,30792,30794,30511,30725,30793,30795,30795,29043,30727,30795,30727,30725,30793,30725,30726,30726,30511,30794,30726,30794,30793,30796,30168,30728,30796,30728,29288,30168,30796,30167,30797,30798,30799,30797,30799,30579,30797,30800,30801,30797,30801,30798,30581,30798,30802,30581,30802,27554,30581,30579,30799,30581,30799,30798,30578,30803,30804,30578,30804,30579,30578,27028,30805,30578,30805,30803,30797,30803,30806,30797,30806,30800,30797,30579,30804,30797,30804,30803,30807,30808,30809,30807,30809,30731,30807,30800,30810,30807,30810,30808,30732,30808,30811,30732,30811,29288,30732,30731,30809,30732,30809,30808,30729,30798,30812,30729,30812,30731,30729,27554,30802,30729,30802,30798,30807,30798,30801,30807,30801,30800,30807,30731,30812,30807,30812,30798,30813,30735,30814,30813,30814,30759,30735,30813,29390,30735,30733,30815,30815,30759,30814,30815,30814,30735,30767,30733,30734,30734,29465,30770,30734,30770,30767,30815,30767,30769,30815,30769,30759,30767,30815,30733,30763,30816,30817,30817,30759,30766,30817,30766,30763,30818,30763,30765,30818,30765,30740,30763,30818,30816,30759,30817,30819,30819,29390,30813,30819,30813,30759,30817,30816,30820,30820,29390,30819,30820,30819,30817,30755,30821,30822,30822,30740,30758,30822,30758,30755,30823,30755,30757,30823,30757,30747,30755,30823,30821,30824,30747,30754,30824,30754,30751,30825,30751,30753,30753,30106,30826,30753,30826,30825,30751,30825,30827,30751,30827,30824,30747,30824,30828,30747,30828,30829,30823,30829,30830,30823,30830,30821,30829,30823,30747,30831,30740,30822,30822,30821,30832,30822,30832,30831,30740,30831,30833,30833,30834,30835,30833,30835,30740,30816,30834,30836,30816,30836,30837,30820,30837,30838,30820,30838,29390,30837,30820,30816,30834,30816,30818,30818,30740,30835,30818,30835,30834,30839,29043,30795,30839,30795,30793,30840,30793,30792,30840,30792,30237,30793,30840,30839,29043,30839,30841,29043,30841,30842,30843,30789,30844,30843,30844,30842,30789,30843,30845,30791,30845,30846,30791,30846,29883,30845,30791,30789,30788,30842,30844,30788,30844,30789,30842,30788,29043,30847,30848,30849,30847,30849,30850,30848,30847,30800,30808,30850,30851,30851,29288,30811,30851,30811,30808,30847,30808,30810,30847,30810,30800,30808,30847,30850,30803,30852,30853,30853,30800,30806,30853,30806,30803,30854,30803,30805,30854,30805,27028,30803,30854,30852,30855,30800,30853,30855,30853,30852,30800,30855,30848,30850,30856,30857,30857,29288,30851,30857,30851,30850,30858,30850,30849,30858,30849,30848,30850,30858,30856,30859,30796,30860,30859,30860,30856,30796,30859,30167,30796,29288,30857,30857,30856,30860,30857,30860,30796,30861,30862,30863,30861,30863,30525,30861,30834,30864,30861,30864,30862,30528,30862,30865,30528,30865,26943,30528,30525,30863,30528,30863,30862,30527,30837,30866,30527,30866,30525,30527,29390,30838,30527,30838,30837,30861,30837,30836,30861,30836,30834,30861,30525,30866,30861,30866,30837,30867,30831,30868,30867,30868,30869,30867,30834,30833,30867,30833,30831,30870,30831,30832,30870,30832,30821,30870,30869,30868,30870,30868,30831,30871,30862,30872,30871,30872,30869,30871,26943,30865,30871,30865,30862,30867,30862,30864,30867,30864,30834,30867,30869,30872,30867,30872,30862,30873,30829,30874,30873,30874,30875,30873,30821,30830,30873,30830,30829,30876,30829,30828,30876,30828,30824,30876,30875,30874,30876,30874,30829,30877,30824,30827,30877,30827,30825,30878,30825,30826,30878,30826,30106,30825,30878,30877,30824,30877,30879,30879,30875,30876,30879,30876,30824,30880,30873,30881,30880,30881,30882,30873,30880,30821,30873,30875,30883,30883,30882,30881,30883,30881,30873,30869,30882,30884,30884,26943,30871,30884,30871,30869,30880,30869,30870,30880,30870,30821,30869,30880,30882,30845,30885,30886,30886,29883,30846,30886,30846,30845,30885,30845,30843,30885,30843,30842,30887,30842,30841,30887,30841,30839,30888,30839,30840,30888,30840,30237,30839,30888,30887,30842,30887,30889,30842,30889,30885,30890,29883,30886,30886,30885,30891,30886,30891,30890,29883,30890,30892,30892,30106,30507,30892,30507,29883,30893,30856,30894,30893,30894,30895,30856,30893,30896,30859,30896,30897,30859,30897,30167,30896,30859,30856,30858,30895,30894,30858,30894,30856,30895,30858,30848,30855,30898,30899,30855,30899,30848,30898,30855,30852,30900,30852,30854,30900,30854,27028,30852,30900,30898,30901,30848,30899,30901,30899,30898,30848,30901,30895,30902,30167,30897,30902,30897,30896,30903,30896,30893,30903,30893,30895,30896,30903,30902,30167,30902,30904,30167,30904,30122,30884,30905,30906,30884,30906,26943,30905,30884,30882,30905,26966,30364,30364,26943,30906,30364,30906,30905,30907,30882,30883,30883,30875,30908,30883,30908,30907,30905,30907,30909,30905,30909,26966,30907,30905,30882,30910,30875,30879,30879,30877,30911,30879,30911,30910,30912,30877,30878,30878,30106,30913,30878,30913,30912,30911,30912,30914,30911,30914,30910,30912,30911,30877,30915,30910,30916,30915,30916,30917,30910,30915,30875,30907,30917,30918,30918,26966,30909,30918,30909,30907,30915,30907,30908,30915,30908,30875,30907,30915,30917,30237,30259,30919,30919,30920,30921,30919,30921,30237,30922,30920,30923,30923,30924,30925,30923,30925,30922,30920,30922,30926,30926,30237,30921,30926,30921,30920,30885,30924,30927,30927,30928,30929,30927,30929,30885,30890,30928,30930,30930,30106,30892,30930,30892,30890,30928,30890,30891,30891,30885,30929,30891,30929,30928,30924,30885,30889,30889,30887,30931,30889,30931,30924,30922,30887,30888,30888,30237,30926,30888,30926,30922,30887,30922,30925,30925,30924,30931,30925,30931,30887,30932,30902,30933,30932,30933,30934,30902,30932,30935,30904,30935,30936,30904,30936,30122,30935,30904,30902,30903,30934,30933,30903,30933,30902,30934,30903,30895,30901,30937,30938,30901,30938,30895,30937,30901,30898,30939,30898,30900,30939,30900,27028,30898,30939,30937,30940,30895,30938,30940,30938,30937,30895,30940,30934,30936,30941,30942,30936,30942,30122,30941,30936,30935,30943,30935,30932,30943,30932,30934,30935,30943,30941,30944,30122,30942,30944,30942,30941,30122,30944,30259,30945,30946,30947,30945,30947,30948,30946,30945,30949,30946,30910,30950,30950,30948,30947,30950,30947,30946,30917,30949,30951,30951,26966,30918,30951,30918,30917,30946,30917,30916,30946,30916,30910,30917,30946,30949,30912,30952,30953,30953,30910,30914,30953,30914,30912,30954,30912,30913,30954,30913,30106,30912,30954,30952,30953,30955,30956,30953,30956,30910,30955,30953,30952,30955,30948,30950,30950,30910,30956,30950,30956,30955,30957,30949,30958,30958,30959,30960,30958,30960,30957,30951,30957,30961,30951,30961,26966,30957,30951,30949,30945,30962,30963,30945,30963,30949,30962,30945,30948,30962,30959,30958,30958,30949,30963,30958,30963,30962,30964,30965,30966,30964,30966,30623,30965,30964,30959,30965,27028,30625,30625,30623,30966,30625,30966,30965,30957,30623,30622,30622,26966,30961,30622,30961,30957,30964,30957,30960,30964,30960,30959,30957,30964,30623,30967,30968,30969,30967,30969,30970,30968,30967,30971,30968,30934,30972,30972,30970,30969,30972,30969,30968,30973,30970,30974,30974,30948,30975,30974,30975,30973,30967,30973,30976,30967,30976,30971,30973,30967,30970,30977,30941,30978,30978,30971,30979,30978,30979,30977,30944,30977,30980,30944,30980,30259,30977,30944,30941,30943,30968,30981,30943,30981,30941,30968,30943,30934,30968,30971,30978,30978,30941,30981,30978,30981,30968,30982,30937,30983,30983,30959,30984,30983,30984,30982,30940,30982,30985,30940,30985,30934,30982,30940,30937,30939,30965,30986,30939,30986,30937,30965,30939,27028,30965,30959,30983,30983,30937,30986,30983,30986,30965,30987,30962,30988,30987,30988,30970,30962,30987,30959,30962,30948,30974,30974,30970,30988,30974,30988,30962,30982,30970,30972,30972,30934,30985,30972,30985,30982,30987,30982,30984,30987,30984,30959,30982,30987,30970,30989,30990,30991,30991,30952,30992,30991,30992,30989,30993,30989,30994,30993,30994,30924,30989,30993,30990,30995,30955,30996,30995,30996,30990,30955,30995,30948,30955,30952,30991,30991,30990,30996,30991,30996,30955,30997,30954,30998,30997,30998,30928,30954,30997,30952,30954,30106,30930,30930,30928,30998,30930,30998,30954,30989,30928,30927,30927,30924,30994,30927,30994,30989,30997,30989,30992,30997,30992,30952,30989,30997,30928,30999,31000,31001,30999,31001,30920,31000,30999,30971,31000,30924,30923,30923,30920,31001,30923,31001,31000,30977,30920,30919,30919,30259,30980,30919,30980,30977,30999,30977,30979,30999,30979,30971,30977,30999,30920,30973,30990,31002,31002,30971,30976,31002,30976,30973,30995,30973,30975,30995,30975,30948,30973,30995,30990,30993,31000,31003,30993,31003,30990,31000,30993,30924,31000,30971,31002,31002,30990,31003,31002,31003,31000,31004,31005,31006,31006,31007,31008,31008,31009,31010,31011,31012,31013,31013,31014,31015,31015,31016,31017,31018,31019,31020,31020,31021,31022,31022,31023,31024,31024,31025,31026,31026,31027,31028,31028,31029,31030,31031,31032,31033,31034,31035,31036,31036,31037,31038,31039,31040,31041,31041,31042,31043,31044,31045,31046,31046,31047,31048,31048,31049,31050,31051,31052,31053,31053,31054,31055,31055,31056,31057,31058,31059,31060,31061,31062,31063,31063,31064,31065,31065,31066,31067,31067,31068,31069,31069,31070,31071,31004,31006,31008,31011,31013,31015,31018,31020,31022,31022,31024,31026,31026,31028,31030,31031,31033,31034,31034,31036,31038,31038,31039,31041,31041,31043,31044,31044,31046,31048,31048,31050,31072,31051,31053,31055,31055,31057,31058,31058,31060,31073,31073,31061,31063,31063,31065,31067,31067,31069,31071,31074,31004,31008,31010,31011,31015,31075,31018,31022,31022,31026,31030,31031,31034,31038,31038,31041,31044,31044,31048,31072,31076,31051,31055,31058,31073,31063,31063,31067,31071,31074,31008,31010,31010,31015,31017,31075,31022,31030,31030,31031,31038,31038,31044,31072,31076,31055,31058,31058,31063,31071,31071,31074,31010,31010,31017,31077,31077,31075,31030,31030,31038,31072,31076,31058,31071,31071,31010,31077,31077,31030,31072,31072,31076,31071,31071,31077,31072,31078,31079,31080,31080,31081,31082,31083,31084,31085,31085,31086,31087,31087,31078,31080,31080,31082,31083,31083,31085,31087,31087,31080,31083,31088,31089,31090,31090,31091,31092,31092,31093,31094,31094,31088,31090,31090,31092,31094,31095,31096,31097,31097,31098,31099,31099,31100,31101,31102,31103,31104,31104,31095,31097,31097,31099,31101,31101,31102,31104,31104,31097,31101,31105,31106,31107,31108,31109,31110,31110,31111,31112,31113,31105,31107,31107,31108,31110,31110,31112,31113,31113,31107,31110,31114,31115,31116,31116,31117,31118,31118,31119,31120,31120,31121,31114,31114,31116,31118,31118,31120,31114,31122,31123,31124,31124,31125,31126,31126,31127,31128,31128,31129,31122,31122,31124,31126,31126,31128,31122,31130,31131,31132,31132,31133,31134,31134,31135,31136,31136,31137,31130,31130,31132,31134,31134,31136,31130,31138,31139,31140,31141,31142,31143,31143,31144,31145,31146,31147,31148,31148,31149,31138,31138,31140,31141,31141,31143,31145,31146,31148,31138,31138,31141,31145,31145,31146,31138,31150,31151,31152,31152,31153,31154,31154,31155,31156,31156,31157,31158,31158,31150,31152,31152,31154,31156,31156,31158,31152,31159,31160,31161,31161,31162,31163,31163,31164,31165,31165,31166,31167,31167,31168,31169,31169,31159,31161,31161,31163,31165,31165,31167,31169,31169,31161,31165,31170,31171,31172,31172,31173,31174,31174,31175,31176,31176,31177,31178,31178,31179,31170,31170,31172,31174,31174,31176,31178,31178,31170,31174,31180,31181,31182,31182,31183,31184,31184,31185,31186,31187,31188,31189,31189,31190,31180,31180,31182,31184,31184,31186,31191,31192,31187,31189,31180,31184,31191,31192,31189,31180,31180,31191,31192,31193,31194,31195,31195,31196,31197,31197,31198,31199,31199,31200,31201,31201,31202,31193,31193,31195,31197,31199,31201,31193,31193,31197,31199,31203,31204,31205,31205,31206,31207,31207,31208,31209,31209,31210,31211,31211,31212,31213,31214,31215,31203,31203,31205,31207,31207,31209,31211,31211,31213,31214,31214,31203,31207,31207,31211,31214,31216,31217,31218,31218,31219,31220,31220,31221,31222,31222,31223,31224,31224,31216,31218,31218,31220,31222,31222,31224,31218,31225,29457,29456,29452,29451,29450,29448,29447,29446,29445,29444,30198,30198,30177,29443,29440,29439,29438,29438,29437,29436,29435,29434,30176,29430,29429,29428,29427,29426,29425,29423,29422,29421,29420,29419,30175,30175,30197,30302,30302,30135,29418,29417,29416,30080,29410,29409,29408,29407,29406,29405,29405,29404,30269,30269,30366,30301,30301,30079,29403,29400,27931,27930,28294,28293,28292,28289,28288,28365,28284,28283,28337,28277,28276,28336,28274,28273,28335,28271,28270,31226,31226,31227,31228,31229,31230,31231,31232,31233,31234,31234,31235,31236,31237,31238,31239,31240,31241,31242,31242,31243,31244,31244,31245,31246,31247,31248,31249,31249,31250,31251,31252,31253,31254,31254,31255,31256,31256,31257,31258,31258,31225,29456,29448,29446,29445,29445,30198,29443,29440,29438,29436,29436,29435,30176,29430,29428,29427,29421,29420,30175,30175,30302,29418,29417,30080,29415,29411,29410,29408,29408,29407,29405,29405,30269,30301,29400,27930,28295,28294,28292,28291,28289,28365,28287,28284,28337,28282,28277,28336,28275,28274,28335,28272,28271,31226,31228,31229,31231,31232,31232,31234,31236,31259,31237,31239,31242,31244,31246,31247,31249,31251,31252,31254,31256,31256,31258,29456,29448,29445,29443,29441,29440,29436,29436,30176,29433,29431,29430,29427,29423,29421,30175,30175,29418,29417,29411,29408,29405,29405,30301,29403,29401,29400,28295,28295,28294,28291,28290,28289,28287,28285,28284,28282,28278,28277,28275,28275,28274,28272,28272,28271,31228,31260,31229,31232,31232,31236,31259,31259,31239,31261,31240,31242,31246,31262,31247,31251,31251,31252,31256,31256,29456,29455,29449,29448,29443,29441,29436,29433,29432,29431,29427,29423,30175,29417,29412,29411,29405,29405,29403,29402,29402,29401,28295,28295,28291,28290,28290,28287,28286,28285,28282,28281,28278,28275,28272,31260,31232,31259,31259,31261,31240,31240,31246,31263,31262,31251,31256,31256,29455,29454,29450,29449,29443,29441,29433,29432,29432,29427,29425,29423,29417,29415,29412,29405,29402,29402,28295,28290,28286,28285,28281,28279,28278,28272,31264,31260,31259,31240,31263,31262,31262,31256,29454,29450,29443,29442,29442,29441,29432,29432,29425,29424,29424,29423,29415,29412,29402,28290,28286,28281,28280,28280,28279,28272,31228,31264,31259,31262,29454,31265,31262,31265,31240,29450,29442,29432,29432,29424,29415,29412,28290,28286,28286,28280,28272,28272,31228,31259,31266,31240,31265,31266,31265,29454,31240,31266,31259,29452,29450,29432,29432,29415,29414,29413,29412,28286,28272,31259,31267,28272,31267,28286,31266,29453,31268,31266,31268,31259,29453,31266,29454,29453,29452,29432,29432,29414,29413,31269,28286,31267,31269,31267,31259,28286,31269,29413,29453,29432,31270,31270,31259,31268,31270,31268,29453,31270,29413,31269,31270,31269,31259,29413,31270,29432,27347,27346,31271,31271,31272,31273,31274,31275,31276,31276,31277,31278,31278,31279,31280,31281,31282,31283,31284,31285,31286,31287,31288,31289,31290,31291,31292,31293,31294,31295,31296,31297,31298,31298,31299,31300,31301,31302,31303,31303,31304,31305,31306,31307,31308,31308,31309,31310,31311,31312,31313,31313,31314,31315,31316,31317,31318,31319,31320,31321,31322,31323,31324,31325,31326,31327,31327,31328,31329,31330,31331,31332,31332,31333,31334,31335,31336,31337,31338,31339,31340,31340,31341,31342,31343,31344,31345,31346,31347,31348,31349,31350,31351,31351,31352,27449,27447,27446,27445,27444,27443,27442,27440,27439,27725,27437,27436,27677,27434,27433,27733,27733,27432,27431,27431,27430,27676,27428,27427,27802,27802,27781,27732,27732,27724,27426,27423,27422,27421,27421,27420,27419,27418,27417,27416,27416,27415,27702,27702,27723,27731,27731,27414,27413,27413,27412,27675,27675,27411,27410,27410,27409,27701,27405,27404,27403,27403,27402,27401,27398,27397,27396,27395,27394,27393,27392,27391,27390,27390,27389,27388,27388,27387,27386,27383,27382,27700,27700,27742,27722,27722,27381,27380,27378,27377,27376,27374,27373,27372,27372,27371,27699,27699,27721,27730,27730,27801,27824,27824,27847,27698,27698,27674,27370,27369,27368,27367,27367,27366,27365,27363,27362,27697,27697,27720,27673,27360,27359,27358,27355,27354,27353,27350,27349,27348,27348,27347,31271,31274,31276,31278,31278,31280,31353,31281,31283,31354,31355,31284,31286,31287,31289,31356,31290,31292,31357,31293,31295,31296,31296,31298,31300,31358,31301,31303,31303,31305,31306,31306,31308,31310,31359,31311,31313,31313,31315,31360,31360,31316,31318,31319,31321,31361,31362,31325,31327,31327,31329,31330,31330,31332,31334,31338,31340,31342,31343,31345,31363,31351,27449,27448,27447,27445,27444,27440,27725,27438,27437,27677,27435,27435,27434,27733,27733,27431,27676,27429,27428,27802,27802,27732,27426,27423,27421,27419,27416,27702,27731,27731,27413,27675,27410,27701,27408,27406,27405,27403,27403,27401,27400,27399,27398,27396,27395,27393,27392,27392,27390,27388,27383,27700,27722,27374,27372,27699,27699,27730,27824,27824,27698,27370,27370,27369,27367,27364,27363,27697,27697,27673,27361,27360,27358,27357,27356,27355,27353,27350,27348,31271,31364,31274,31278,31278,31353,31365,31281,31354,31366,31355,31286,31367,31287,31356,31368,31368,31290,31357,31293,31296,31300,31358,31303,31306,31306,31310,31369,31359,31313,31360,31360,31318,31370,31370,31319,31361,31362,31327,31330,31330,31334,31335,31338,31342,31371,31372,31343,31363,31351,27448,27447,27441,27440,27438,27435,27733,27676,27429,27802,27426,27424,27423,27419,27416,27731,27675,27675,27410,27408,27406,27403,27400,27399,27396,27395,27395,27392,27388,27384,27383,27722,27374,27699,27824,27824,27370,27367,27364,27697,27361,27361,27360,27357,27356,27353,27352,27351,27350,31271,31364,31278,31365,31373,31281,31366,31287,31368,31357,31374,31293,31300,31358,31306,31369,31369,31359,31360,31360,31370,31361,31375,31362,31330,31330,31335,31337,31337,31338,31371,31349,31351,27447,27442,27441,27438,27437,27435,27676,27429,27426,27425,27424,27419,27418,27416,27675,27408,27407,27406,27400,27395,27388,27386,27384,27722,27380,27824,27367,31376,27824,31376,27374,27364,27361,27357,27351,31271,31273,31273,31364,31365,31377,31287,31357,31374,31300,31358,31369,31360,31378,31369,31378,31358,31360,31361,31322,31324,31375,31330,31330,31337,31371,31349,27447,27444,27437,27676,27429,27429,27425,27424,27418,27416,27408,27407,27400,27399,27399,27395,27386,27385,27384,27380,27367,27365,31379,31379,27374,31376,31379,31376,27367,27365,27364,27357,27352,27351,31273,31273,31365,31373,31377,31357,31380,31380,31374,31358,31360,31322,31381,31381,31358,31378,31381,31378,31360,31322,31324,31330,31330,31371,31372,31382,31349,27444,27438,27437,27429,27429,27424,27418,27418,27408,27407,27407,27399,27386,27385,27380,27379,27365,27357,31383,31383,27374,31379,31383,31379,27365,27352,31273,31373,31377,31380,31358,31322,31330,31384,31384,31358,31381,31384,31381,31322,31382,27444,27442,27438,27429,27418,27418,27407,27386,27385,27379,27378,31385,27374,31383,31385,31383,27357,27374,31385,27375,27356,27352,31373,31386,31358,31384,31386,31384,31330,31358,31386,31377,31348,31382,27442,27442,27438,27418,27385,27378,27376,31385,27356,31387,31385,31387,27375,27356,31385,27357,27356,31373,31366,31388,31377,31386,31388,31386,31330,31377,31388,31367,31348,27442,27418,27386,27385,27376,31387,31366,31389,31387,31389,27375,31366,31387,27356,31390,31367,31388,31388,31330,31391,31388,31391,31390,31367,31390,31392,31367,31392,31355,31346,31348,27418,27386,27376,27375,31389,31393,31394,31389,31394,27375,31393,31389,31366,31392,31395,31396,31392,31396,31355,31395,31392,31390,31397,31390,31391,31397,31391,31330,31390,31397,31395,31398,31355,31396,31398,31396,31395,31355,31398,31393,31346,27418,27386,31399,27375,31394,31399,31394,31393,27375,31399,27386,31395,31372,31400,31400,31393,31398,31400,31398,31395,31372,31395,31397,31372,31397,31330,31363,31346,27386,27386,31399,31401,27386,31401,31372,31399,31393,31400,31400,31372,31401,31400,31401,31399,31372,31363,27386,31402,31403,31404,31405,31406,31407,31407,31408,31409,31409,31410,31411,31411,31412,31413,31413,31414,31415,31415,31402,31404,31404,31405,31407,31407,31409,31411,31411,31413,31415,31404,31407,31411,31411,31415,31404,31416,31417,31418,31418,31419,31420,31420,31416,31418,31421,31422,31423,31423,31424,31425,31425,31426,31427,31427,31428,31429,31429,31430,31421,31421,31423,31425,31425,31427,31429,31429,31421,31425,31431,31432,31433,31433,31434,31435,31435,31436,31437,31437,31438,31439,31440,31441,31442,31442,31443,31444,31444,31431,31433,31433,31435,31437,31437,31439,31440,31440,31442,31444,31444,31433,31437,31437,31440,31444,31445,31446,31447,31447,31448,31449,31449,31450,31451,31451,31452,31453,31453,31445,31447,31447,31449,31451,31451,31453,31447,31454,31455,31456,31456,31457,31458,31458,31459,31460,31460,31454,31456,31456,31458,31460,31461,31462,31463,31463,31464,31465,31465,31466,31467,31467,31468,31469,31470,31471,31472,31472,31473,31474,31475,31476,31477,31477,31478,31479,31479,31480,31481,31481,31482,31483,31483,31484,31485,31486,31487,31488,31489,31490,31461,31461,31463,31465,31465,31467,31469,31470,31472,31474,31475,31477,31479,31479,31481,31483,31483,31485,31491,31486,31488,31489,31489,31461,31465,31465,31469,31470,31475,31479,31483,31483,31491,31486,31489,31465,31470,31474,31475,31483,31483,31486,31489,31489,31470,31474,31474,31483,31489,31492,31493,31494,31494,31495,31496,31496,31497,31498,31498,31499,31492,31492,31494,31496,31496,31498,31492,31500,31501,31502,31502,31503,31504,31504,31505,31506,31506,31507,31508,31508,31509,31510,31511,31512,31513,31514,31515,31516,31517,31518,31519,31519,31520,31521,31522,31523,31524,31525,31526,31527,31528,31529,31530,31531,31532,31533,31533,31534,31535,31536,31537,31538,31538,31539,31540,31541,31542,31543,31544,31545,31546,31547,31548,31549,31549,31550,31551,31552,31553,31554,31554,31555,31556,31557,31558,31559,31559,31560,31561,31561,31562,31563,31564,31565,21404,21404,21403,21546,21546,21545,21544,21544,21543,21555,21539,21538,21562,21562,21567,21537,21534,21533,21561,21561,21566,21568,21568,21565,21554,21531,21530,21529,31566,31567,31568,31568,31569,31570,31571,31572,31573,31574,31575,31576,31577,31578,31579,31580,31581,31582,31583,31584,31585,31585,31586,31587,31588,31589,31590,31590,31591,31592,31593,31594,31595,31595,31596,31597,31598,31599,31600,31600,31601,31602,31602,31603,31604,31605,31606,31607,31608,31609,31610,31611,31612,31613,31614,31615,31616,31617,31618,31619,31619,31620,31621,31621,31622,31623,31623,31624,31625,31626,31627,31628,31628,31629,31630,31630,31299,31298,31297,31296,31295,31294,31293,31374,31374,31380,31357,31291,31290,31368,31368,31356,31289,31288,31287,31377,31377,31367,31286,31285,31284,31355,31355,31393,31366,31366,31354,31283,31282,31281,31373,31373,31365,31353,31275,31274,31364,31364,31273,31272,31272,31271,27346,27343,27342,27672,27672,27719,27696,27696,27671,27341,27340,27339,27338,27337,27336,27335,27332,27331,27330,27330,27329,27729,27729,27695,27328,27327,27326,27325,27325,27324,27323,27320,27319,27318,27317,27316,27718,27718,27741,27717,27310,27309,27670,27670,27669,27308,27307,27306,27740,27740,27728,27716,27304,27303,27668,27668,27302,27301,27301,27300,27299,27298,27297,27715,27715,27667,27296,27293,27292,27291,27291,27290,27739,27739,27289,27288,27288,27287,27286,27284,27283,27282,27282,27281,27280,27280,27279,27278,27278,27277,27666,27273,27272,27271,27271,27270,27269,27269,27268,27267,27267,27266,27714,27714,27665,27265,27264,27263,27262,27262,27261,27260,27258,27257,29300,29300,29299,29298,29298,29297,29296,29296,29295,29294,29293,29292,29291,29291,29290,29289,29289,29288,30069,29286,29285,30131,30131,30130,29284,29283,29282,29281,29281,29280,29279,29278,29277,30068,30068,30195,30217,30217,30171,29276,29275,29274,29273,29270,29269,29268,29266,29265,30129,30129,30128,30067,29263,29262,29261,29257,29256,30066,29254,29253,30239,30239,30262,30293,30293,30325,30127,30127,29252,29251,29251,29250,29249,29249,29248,29247,29247,29246,30445,30445,30397,30065,29244,29243,29242,29241,29240,29239,29239,29238,30064,29236,29235,29234,29234,29233,29232,29232,29231,29230,29228,29227,30126,30126,30125,29226,29226,29225,29224,29223,29222,29221,29216,29215,30063,30063,30170,30216,30216,30215,29214,29207,29206,29205,29202,29201,30169,30169,29200,29199,31631,31632,31633,31633,31634,31635,31635,31636,31637,31637,31638,31639,31639,31640,31641,31642,31643,31644,31644,31645,31646,31646,31647,31648,31648,31649,31650,31650,31651,31652,31653,31654,31655,31656,31657,31658,31658,31659,31660,31661,31662,31663,31664,31665,31666,31667,31668,31669,31670,31671,31672,31673,31674,31675,31676,31677,31678,31679,31680,31681,31681,31682,31683,31684,31685,31686,31687,31688,31689,31690,31691,31692,31692,31693,31694,31695,31696,31697,31697,31698,31699,31700,31701,31702,31702,31703,31704,31705,31706,31707,31708,31709,31710,31711,31712,31713,31713,31714,31715,31716,31717,31718,31719,31720,31721,31721,31722,31723,31724,31725,31726,31726,31727,31728,31728,31729,31730,31731,31732,31733,31733,31734,31735,31736,31737,31738,31739,31740,31741,31741,31742,31500,31500,31502,31504,31504,31506,31508,31508,31510,31511,31511,31513,31743,31744,31514,31516,31517,31519,31521,31525,31527,31528,31528,31530,31531,31531,31533,31535,31536,31538,31540,31543,31544,31546,31547,31549,31551,31745,31552,31554,31557,31559,31561,31561,31563,31564,31564,21404,21546,21546,21544,21555,21539,21562,21537,21534,21561,21568,21568,21554,21532,21531,21529,31746,31566,31568,31570,31747,31571,31573,31748,31574,31576,31577,31579,31749,31583,31585,31587,31588,31590,31592,31593,31595,31597,31750,31598,31600,31600,31602,31604,31604,31605,31607,31608,31610,31611,31611,31613,31751,31619,31621,31623,31623,31625,31752,31626,31628,31630,31630,31298,31297,31297,31295,31294,31294,31374,31357,31292,31291,31368,31288,31377,31286,31285,31355,31366,31282,31373,31353,31275,31364,31272,31272,27346,27345,27343,27672,27696,27341,27340,27338,27333,27332,27330,27330,27729,27328,27325,27323,27322,27317,27718,27717,27310,27670,27308,27307,27740,27716,27304,27668,27301,27301,27299,27298,27298,27715,27296,27293,27291,27739,27285,27284,27282,27278,27666,27276,27273,27271,27269,27269,27267,27714,27262,27260,27259,27259,27258,29300,29298,29296,29294,29294,29293,29291,29291,29289,30069,29287,29286,30131,29283,29281,29279,29278,30068,30217,30217,29276,29275,29266,30129,30067,29263,29261,29260,29257,30066,29255,29254,30239,30293,30293,30127,29251,29251,29249,29247,29247,30445,30065,29244,29242,29241,29239,30064,29237,29228,30126,29226,29226,29224,29223,29223,29221,29220,29216,30063,30216,30216,29214,29213,29207,29205,29204,29203,29202,30169,30169,29199,31631,31631,31633,31635,31635,31637,31639,31639,31641,31753,31642,31644,31646,31646,31648,31650,31650,31652,31653,31656,31658,31660,31661,31663,31754,31667,31669,31755,31670,31672,31756,31673,31675,31757,31676,31678,31679,31679,31681,31683,31684,31686,31758,31687,31689,31759,31690,31692,31694,31760,31695,31697,31697,31699,31761,31700,31702,31704,31762,31705,31707,31710,31711,31713,31713,31715,31763,31764,31716,31718,31719,31721,31723,31726,31728,31730,31735,31736,31738,31739,31741,31500,31500,31504,31508,31508,31511,31743,31765,31517,31521,31766,31525,31528,31528,31531,31535,31535,31536,31540,31541,31543,31546,31767,31547,31551,31745,31554,31556,31768,31557,31561,31561,31564,21546,21546,21555,21542,21534,21568,21532,21532,21531,31746,31746,31566,31570,31747,31573,31769,31748,31576,31770,31577,31749,31580,31583,31587,31771,31771,31588,31592,31593,31597,31750,31604,31607,31772,31611,31751,31614,31617,31619,31623,31626,31630,31297,31297,31294,31357,31292,31368,31289,31289,31288,31286,31285,31366,31283,31283,31282,31353,31276,31275,31272,31272,27345,27344,27343,27696,27341,27341,27338,27337,27333,27330,27328,27327,27325,27322,27318,27317,27717,27311,27310,27308,27308,27307,27716,27304,27301,27298,27293,27739,27288,27285,27282,27280,27273,27269,27714,27262,27259,29300,29298,29294,29291,29291,30069,29287,29287,30131,29284,29278,30217,29275,29267,29266,30067,29263,29260,29259,29258,29257,29255,29254,30293,29251,29251,29247,30065,29244,29241,29239,29229,29228,29226,29226,29223,29220,29216,30216,29213,29203,30169,31631,31631,31635,31639,31639,31753,31642,31642,31646,31650,31650,31653,31655,31773,31656,31660,31660,31661,31754,31666,31667,31755,31673,31757,31676,31676,31679,31683,31774,31684,31758,31775,31690,31694,31760,31697,31761,31762,31707,31776,31710,31713,31763,31764,31718,31777,31719,31723,31778,31724,31726,31730,31735,31738,31739,31739,31500,31508,31508,31743,31744,31765,31521,31522,31766,31528,31535,31535,31540,31541,31541,31546,31779,31551,31745,31556,31768,31561,21546,21546,21542,21541,21535,21534,21532,21532,31746,31570,31780,31747,31769,31748,31770,31577,31583,31771,31592,31600,31604,31772,31617,31623,31752,31626,31297,31357,31289,31286,31285,31285,31283,31353,31276,31272,27344,27333,27328,27327,27327,27322,27321,27318,27717,27315,27311,27308,27716,27304,27298,27296,27294,27293,27288,27285,27280,27278,27274,27273,27714,27262,29300,29298,29291,29287,31781,29291,31781,29298,29287,29284,29283,29279,29278,29275,29267,30067,29264,29264,29263,29259,29258,29255,29254,29254,29251,30065,29244,29239,29237,29229,29226,29220,29217,29216,29213,29204,29203,31631,31639,31642,31650,31773,31660,31754,31673,31676,31683,31774,31758,31687,31782,31775,31694,31783,31760,31761,31762,31776,31784,31708,31710,31763,31764,31777,31719,31724,31730,31785,31735,31739,31508,31516,31765,31522,31786,31766,31535,31535,31541,31779,31767,31551,31556,31787,31768,21546,21535,21532,31570,31780,31769,31748,31748,31577,31580,31582,31583,31592,31600,31772,31608,31616,31617,31752,31752,31626,31357,31292,31289,31285,31285,31353,31280,31277,31276,27344,27334,27333,27327,27320,27318,27315,27312,27311,27716,27304,27296,27295,27295,27294,27288,27285,27278,27276,27274,27714,27265,27264,27262,29298,29287,29283,31788,31788,29298,31781,31788,31781,29287,29279,29275,29273,29267,29264,29259,29258,29254,30065,29229,29220,29219,29217,29213,29212,29204,31631,31639,31639,31650,31655,31789,31773,31754,31756,31673,31683,31782,31694,31783,31783,31761,31790,31791,31708,31763,31764,31719,31778,31724,31785,31731,31733,31735,31508,31516,31522,31524,31792,31786,31535,31767,31556,31793,31787,21546,21541,21536,21535,31570,31794,31780,31748,31580,31582,31592,31614,31616,31752,31752,31357,31292,31292,31285,31280,31277,27344,27343,27334,27327,27321,27320,27315,27314,27313,27312,27716,27295,27288,27286,27274,27265,27264,31795,29298,31788,31795,31788,29283,29298,31795,27264,29283,29279,29273,29259,29258,30065,29230,29229,29219,29217,29212,29211,29207,29204,31639,31789,31754,31664,31670,31756,31683,31782,31783,31790,31791,31763,31764,31733,31508,31744,31516,31524,31796,31796,31792,31535,31767,31793,31797,31798,31787,21541,21537,21536,31570,31748,31580,31592,31611,31614,31752,31292,31280,31799,31292,31799,31752,27335,27334,27321,27321,27320,27314,27314,27313,27716,27274,27264,31795,27274,31795,29283,29283,29273,29272,29267,29259,30065,29230,29219,29218,29217,29211,29210,29208,29207,31639,31789,31664,31666,31755,31670,31683,31759,31782,31790,31800,31791,31764,31731,31733,31744,31796,31535,31779,31767,31797,31801,31798,21541,21540,21539,21537,31570,31748,31592,31593,31802,31752,31799,31802,31799,31280,31752,31802,31611,27337,27335,27321,27321,27314,27716,27275,27274,29283,29267,30065,29245,29230,29218,29217,29217,29210,29209,29208,31639,31655,31789,31666,31755,31755,31683,31803,31759,31790,31700,31800,31764,31778,31731,31744,31516,31796,31779,31804,31796,31804,31516,31798,21540,21539,21539,31570,31794,31748,31593,31750,31805,31611,31802,31805,31802,31280,31611,31805,31608,27321,27716,27305,27276,27275,29283,29267,29245,29244,29230,29217,29209,29209,29208,31655,31755,31803,31806,31755,31806,31789,31700,31704,31807,31700,31807,31759,31784,31800,31778,31724,31731,31516,31779,31767,31808,31808,31516,31804,31808,31804,31779,31798,21539,31794,31809,31608,31805,31809,31805,31280,31608,31809,31600,27321,27305,27304,27285,27276,29283,29267,29244,29237,29230,29209,31655,31806,31810,31811,31806,31811,31789,31810,31806,31803,31784,31778,31812,31812,31724,31516,31767,31801,31813,31767,31813,31814,31808,31814,31815,31808,31815,31516,31814,31808,31767,31801,31798,31794,31816,31600,31809,31816,31809,31280,31600,31816,31750,27321,27304,27295,27286,27285,29283,29267,29237,29236,29232,29230,31655,31817,31789,31811,31817,31811,31810,31789,31817,31655,31812,31516,31815,31812,31815,31814,31818,31814,31813,31818,31813,31801,31814,31818,31812,31801,31794,31748,31819,31750,31816,31816,31280,31820,31816,31820,31819,31750,31819,31821,31750,31821,31748,27321,27295,31822,27321,31822,27337,27286,29283,31823,27286,31823,27295,29267,29236,29234,29232,31655,31824,29232,31824,29234,31810,31774,31825,31825,31655,31817,31825,31817,31810,31826,31812,31818,31826,31818,31801,31812,31826,31784,31827,31748,31821,31827,31821,31819,31828,31819,31820,31828,31820,31280,31819,31828,31827,31748,31827,31829,31748,31829,31801,31830,27337,31822,31830,31822,27295,27337,31830,27341,29283,29272,31831,31831,27295,31823,31831,31823,29283,31832,31655,31825,31825,31774,31833,31825,31833,31832,31655,31832,31834,31834,29234,31824,31834,31824,31655,31835,31784,31826,31826,31801,31836,31826,31836,31835,31784,31835,31837,31784,31837,31762,31838,31827,31839,31838,31839,31279,31827,31838,31840,31829,31840,31841,31829,31841,31801,31840,31829,31827,31828,31279,31839,31828,31839,31827,31279,31828,31280,31842,27295,31831,31831,29272,31843,31831,31843,31842,31830,31842,31844,31830,31844,27341,31842,31830,27295,31832,31687,31845,31845,29234,31834,31845,31834,31832,31687,31832,31833,31687,31833,31774,31837,31846,31847,31837,31847,31762,31846,31837,31835,31848,31835,31836,31848,31836,31801,31835,31848,31846,31849,31762,31847,31849,31847,31846,31762,31849,31850,31851,31840,31852,31851,31852,31278,31840,31851,31853,31841,31853,31854,31841,31854,31801,31853,31841,31840,31838,31278,31852,31838,31852,31840,31278,31838,31279,31855,27341,31844,31855,31844,31842,31856,31842,31843,31856,31843,29272,31842,31856,31855,27341,31855,31857,27341,31857,27343,31858,29234,31845,31845,31687,31859,31845,31859,31858,29234,31858,31860,29234,31860,29267,31849,31861,31862,31849,31862,31850,31861,31849,31846,31863,31846,31848,31863,31848,31801,31846,31863,31861,31864,31850,31862,31864,31862,31861,31850,31864,31704,31278,31277,31865,31865,31866,31867,31865,31867,31278,31853,31866,31868,31868,31801,31854,31868,31854,31853,31866,31853,31851,31851,31278,31867,31851,31867,31866,31869,27343,31857,31869,31857,31855,31870,31855,31856,31870,31856,29272,31855,31870,31869,27343,31869,31871,27343,31871,31277,31687,31759,31872,31872,31873,31874,31872,31874,31687,31858,31873,31875,31875,29267,31860,31875,31860,31858,31874,31858,31859,31874,31859,31687,31858,31874,31873,31876,31704,31864,31876,31864,31861,31877,31861,31863,31877,31863,31801,31861,31877,31876,31704,31876,31878,31878,31759,31807,31878,31807,31704,31879,31880,31881,31879,31881,31869,31880,31879,31882,31880,31277,31871,31871,31869,31881,31871,31881,31880,31883,31869,31870,31870,29272,31884,31870,31884,31883,31879,31883,31885,31879,31885,31882,31883,31879,31869,31886,31866,31887,31887,31882,31888,31887,31888,31886,31868,31886,31889,31868,31889,31801,31886,31868,31866,31865,31880,31890,31865,31890,31866,31880,31865,31277,31880,31882,31887,31887,31866,31890,31887,31890,31880,31891,31892,31893,31891,31893,31876,31892,31891,31894,31892,31759,31878,31878,31876,31893,31878,31893,31892,31895,31876,31877,31877,31801,31896,31877,31896,31895,31891,31895,31897,31891,31897,31894,31895,31891,31876,31898,31873,31899,31899,31894,31900,31899,31900,31898,31875,31898,31901,31875,31901,29267,31898,31875,31873,31872,31892,31902,31872,31902,31873,31892,31872,31759,31892,31894,31899,31899,31873,31902,31899,31902,31892,31903,31904,31905,31903,31905,31882,31904,31903,31906,31907,31906,31908,31907,31908,29271,31906,31907,31904,31909,31882,31905,31909,31905,31904,31882,31909,31910,31911,31886,31912,31911,31912,31910,31886,31911,31913,31889,31913,31914,31889,31914,31801,31913,31889,31886,31888,31910,31912,31888,31912,31886,31910,31888,31882,31908,31883,31915,31908,31915,29271,31883,31908,31906,31885,31906,31903,31885,31903,31882,31906,31885,31883,31884,29271,31915,31884,31915,31883,29271,31884,29272,31916,31898,31917,31916,31917,31918,31898,31916,31919,31901,31919,31920,31901,31920,29267,31919,31901,31898,31900,31918,31917,31900,31917,31898,31918,31900,31894,31897,31921,31922,31897,31922,31894,31921,31897,31895,31923,31895,31896,31923,31896,31801,31895,31923,31921,31924,31894,31922,31924,31922,31921,31894,31924,31918,31920,31925,31926,31920,31926,29267,31925,31920,31919,31927,31919,31916,31927,31916,31918,31919,31927,31925,31928,29267,31926,31928,31926,31925,29267,31928,29268,31929,31930,31931,31929,31931,31910,31930,31929,31932,31933,31932,31934,31933,31934,29270,31932,31933,31930,31935,31910,31931,31935,31931,31930,31910,31935,31936,31937,31913,31938,31937,31938,31936,31913,31937,31939,31914,31939,31940,31914,31940,31801,31939,31914,31913,31911,31936,31938,31911,31938,31913,31936,31911,31910,31934,31904,31941,31934,31941,29270,31904,31934,31932,31909,31932,31929,31909,31929,31910,31932,31909,31904,31907,29270,31941,31907,31941,31904,29270,31907,29271,31942,31925,31943,31942,31943,31936,31925,31942,31944,31928,31944,31945,31928,31945,29268,31944,31928,31925,31927,31936,31943,31927,31943,31925,31936,31927,31918,31924,31939,31946,31924,31946,31918,31939,31924,31921,31940,31921,31923,31940,31923,31801,31921,31940,31939,31937,31918,31946,31937,31946,31939,31918,31937,31936,31945,31930,31947,31945,31947,29268,31930,31945,31944,31935,31944,31942,31935,31942,31936,31944,31935,31930,31933,29268,31947,31933,31947,31930,29268,31933,29270,31948,31949,31950,31950,31951,31952,31952,31953,31954,31954,31948,31950,31950,31952,31954,26910,26909,27128,27128,27175,27181,27181,27188,26908,26907,26906,26905,26904,26903,26902,26902,26901,26900,26898,26897,27127,27127,26896,26895,26895,26894,26893,26891,26890,28080,28080,28079,28322,28077,28076,28347,28347,28382,28321,28074,28073,28320,28071,28070,28412,28412,28381,28346,28066,28065,28371,28371,28319,28064,28063,28062,28061,28052,28051,28318,28049,28048,28317,28046,28045,28316,28043,28042,28345,28345,28399,28370,28040,28039,28315,28037,28036,28314,28034,28033,28313,28031,28030,28458,28458,28312,28029,28028,28027,28311,28025,28024,28310,28022,28021,28309,28015,28014,28369,28369,28380,28308,28012,28011,28307,28009,28008,28306,28006,28005,28305,28003,28002,28391,28391,28368,28344,28344,28001,29399,29399,29398,30078,29396,29395,29394,29391,29390,29389,29389,29388,30300,30300,30268,29387,29386,29385,29384,29377,29376,30077,29372,29371,29370,29369,29368,30076,29366,29365,29364,29363,29362,30134,30134,30075,29361,29360,29359,30334,30334,29358,29357,29357,29356,29355,29353,29352,29351,29351,29350,30220,30220,30174,30133,29348,29347,29346,29346,29345,29344,29344,29343,30074,30074,29342,29341,29341,29340,29339,29338,29337,30073,30073,30072,29336,29331,29330,29329,29328,29327,29326,29325,29324,30071,29322,29321,29320,29318,29317,30173,30173,30070,29316,29315,29314,29313,29312,29311,30132,29307,29306,29305,29304,29303,29302,29302,29301,26910,26910,27128,27181,27181,26908,26907,26907,26905,26904,26904,26902,26900,26898,27127,26895,26895,26893,26892,26892,26891,28080,28080,28322,28078,28077,28347,28321,28074,28320,28072,28071,28412,28346,28066,28371,28064,28063,28061,28060,28052,28318,28050,28049,28317,28047,28046,28316,28044,28043,28345,28370,28040,28315,28038,28037,28314,28035,28034,28313,28032,28031,28458,28029,28028,28311,28026,28025,28310,28023,28022,28309,28020,28016,28015,28369,28369,28308,28013,28012,28307,28010,28009,28306,28007,28006,28305,28004,28004,28003,28391,28391,28344,29399,29399,30078,29397,29396,29394,29393,29392,29391,29389,29389,30300,29387,29387,29386,29384,29377,30077,29375,29373,29372,29370,29369,30076,29367,29363,30134,29361,29360,30334,29357,29357,29355,29354,29351,30220,30133,29344,30074,29341,29341,29339,29338,29338,30073,29336,29332,29331,29329,29328,29326,29325,29325,30071,29323,29323,29322,29320,29319,29318,30173,29315,29313,29312,29312,30132,29310,29307,29305,29304,29302,26910,27181,26907,26904,31955,26907,31955,27181,26904,26900,26899,26899,26898,26895,26895,26892,28080,28077,28321,28075,28075,28074,28072,28072,28071,28346,28067,28066,28064,28064,28063,28060,28052,28050,28049,28047,28046,28044,28044,28043,28370,28038,28037,28035,28034,28032,28031,28031,28029,28028,28028,28026,28025,28023,28022,28020,28016,28369,28013,28009,28007,28006,28006,28004,28391,29399,29397,29396,29396,29393,29392,29392,29389,29387,29378,29377,29375,29373,29370,29369,29369,29367,29366,29364,29363,29361,29361,29360,29357,29353,29351,30133,29344,29341,29338,29338,29336,29335,29332,29329,29328,29328,29325,29323,29323,29320,29319,29319,30173,29316,29315,29312,29310,29308,29307,29304,31956,27181,31955,31956,31955,26904,27181,31956,29302,26904,26899,26895,26895,28080,28078,28077,28075,28072,28072,28346,28069,28068,28067,28064,28064,28060,28059,28052,28049,28047,28047,28044,28370,28035,28034,28031,28031,28028,28025,28025,28023,28020,28017,28016,28013,28010,28009,28006,28006,28391,29399,29399,29396,29392,29392,29387,29384,29378,29375,29374,29374,29373,29369,29364,29361,29357,29353,30133,29349,29332,29328,29323,29323,29319,29316,29315,29310,29309,29309,29308,29304,31957,29302,31956,31957,31956,26904,29302,31957,29304,26895,28078,31958,26895,31958,26904,28078,28077,28072,28072,28069,28068,28068,28064,28059,28053,28052,28047,28047,28370,28041,28035,28031,28025,28025,28020,28019,28018,28017,28013,28010,28006,29399,29399,29392,29384,29374,29369,29366,29366,29364,29357,29354,29353,29349,29333,29332,29323,29323,29316,29315,31959,29304,31957,31959,31957,26904,29304,31959,29309,28078,28072,31960,31960,26904,31958,31960,31958,28078,28068,28059,28058,28053,28047,28041,28038,28035,28025,28025,28019,28018,28018,28013,28012,28012,28010,29399,29399,29384,29383,29374,29366,29357,29354,29349,29348,29323,29315,29309,31960,31961,31962,31960,31962,26904,31961,31960,28072,31961,29309,31959,31959,26904,31962,31959,31962,31961,28053,28041,28040,28040,28038,28025,28025,28018,28012,29399,29383,31963,29399,31963,28012,29374,29357,29354,29354,29348,29346,29333,29323,29309,31961,28068,31964,31961,31964,29309,28068,31961,28072,28053,28040,28025,31965,28012,31963,31965,31963,29383,28012,31965,28025,29378,29374,29354,29354,29346,29344,29333,29309,31964,31964,28068,31966,31964,31966,29333,28054,28053,28025,31965,29382,31967,31965,31967,28025,29382,31965,29383,29378,29354,29344,29334,29333,31966,31966,28068,31968,31966,31968,29334,28055,28054,28025,31967,29381,31969,31967,31969,28025,29381,31967,29382,29344,29338,31970,29344,31970,29378,31971,29334,31968,31971,31968,28068,29334,31971,29335,28055,28025,31969,31969,29381,31972,31969,31972,28055,29338,29335,31973,31973,29378,31970,31973,31970,29338,28068,28058,31974,31974,29335,31971,31974,31971,28068,31975,28055,31972,31975,31972,29381,28055,31975,28056,31976,29378,31973,31976,31973,29335,29378,31976,29379,28058,28057,31977,31977,29335,31974,31977,31974,28058,31978,28056,31975,31978,31975,29381,28056,31978,28057,31976,31977,31979,31976,31979,29379,31977,31976,29335,31977,28057,31980,31980,29379,31979,31980,31979,31977,31978,29380,31981,31978,31981,28057,29380,31978,29381,31981,29379,31980,31981,31980,28057,29379,31981,29380,31982,31983,31984,31984,31985,31986,31986,31987,31988,31989,31990,31991,31991,31982,31984,31984,31986,31988,31989,31991,31984,31984,31988,31989,31992,31993,31994,31994,31995,31996,31997,31998,31999,31999,32000,32001,32001,32002,32003,32004,32005,32006,32006,32007,32008,32008,32009,31992,31992,31994,31996,31997,31999,32001,32001,32003,32004,32004,32006,32008,32008,31992,31996,32010,31997,32001,32004,32008,31996,31996,32010,32001,32001,32004,31996,32011,32012,32013,32013,32014,32015,32015,32016,32017,32017,32011,32013,32013,32015,32017,32018,32019,32020,32020,32021,32022,32023,32024,32025,32025,32026,32027,32027,32028,32018,32018,32020,32022,32023,32025,32027,32027,32018,32022,32022,32023,32027,29167,29116,32029,32029,32030,32031,32032,32033,32034,32035,32036,32037,32037,32038,32039,32040,32041,32042,32042,32043,32044,32045,32046,32047,32048,32049,32050,32050,32051,32052,32053,32054,32055,32056,32057,32058,32059,32060,32061,32062,32063,32064,32064,32065,32066,32066,32067,32068,32069,32070,32071,32072,32073,32074,32075,32076,32077,32077,32078,32079,32080,32081,32082,32082,32083,32084,32084,32085,32086,32087,32088,32089,32090,32091,32092,32092,32093,32094,32094,32095,32096,32096,32097,32098,32098,32099,32100,32101,32102,32103,32103,32104,32105,32106,32107,32108,32108,32109,32110,32111,32112,32113,32113,32114,32115,32116,32117,32118,32118,32119,32120,32121,32122,32123,32124,32125,32126,32126,32127,32128,32128,32129,32130,32131,32132,32133,32134,32135,32136,32136,32137,32138,32138,32139,32140,32140,32141,32142,32143,32144,32145,32146,32147,32148,32149,32150,32151,32151,32152,32153,32153,32154,32155,32155,32156,32157,32157,32158,32159,32159,32160,32161,32162,32163,32164,32164,32165,32166,32167,32168,32169,32170,32171,32172,32173,32174,32175,32175,32176,32177,32177,32178,32179,32180,32181,32182,32183,32184,32185,32185,32186,31501,31501,31500,31742,31740,31739,31738,31737,31736,31735,31734,31733,31732,31732,31731,31785,31727,31726,31725,31725,31724,31812,31812,31778,31723,31720,31719,31777,31717,31716,31764,31764,31763,31715,31712,31711,31710,31709,31708,31791,31791,31800,31784,31784,31776,31707,31706,31705,31762,31762,31850,31704,31701,31700,31790,31790,31761,31699,31696,31695,31760,31760,31783,31694,31691,31690,31775,31775,31782,31759,31688,31687,31758,31685,31684,31774,31774,31810,31803,31680,31679,31678,31677,31676,31757,31674,31673,31756,31671,31670,31755,31668,31667,31666,31665,31664,31754,31662,31661,31660,31657,31656,31773,31773,31789,31655,31654,31653,31652,31651,31650,31649,31647,31646,31645,31643,31642,31753,31640,31639,31638,31638,31637,31636,31636,31635,31634,31634,31633,31632,31632,31631,29199,29199,29198,30062,30062,30124,30260,30260,30238,30214,30214,30061,30060,30054,30053,30168,30168,30167,30052,30051,30050,30123,30046,30045,30194,30194,30166,30044,30043,30042,30122,30122,30259,30213,30213,30165,30041,30038,30037,30036,30035,30034,30237,30237,30511,30395,30395,30258,30033,30028,30027,30164,30164,30163,30026,30023,30022,30121,30020,30019,30018,30015,30014,30013,30008,30007,30006,30005,30004,30003,30003,30002,30001,29998,29997,29996,29996,29995,30291,30291,29994,29993,29991,29990,30120,29988,29987,29986,29986,29985,29984,29983,29982,29981,29981,29980,30119,30119,30162,30193,30193,30118,29979,29978,29977,30161,30161,30355,30323,30323,30290,30257,30257,30192,30117,28981,29156,29155,29152,29151,29150,29149,29148,29147,29142,29141,29140,29138,29137,29136,29135,29134,29184,29184,29187,29189,29189,29183,29182,29182,29179,29133,29130,29129,29176,29127,29126,29169,29124,29123,29168,29121,29120,29119,29118,29117,29181,29181,29167,32029,32029,32031,32032,32032,32034,32035,32037,32039,32040,32040,32042,32044,32048,32050,32052,32053,32055,32056,32056,32058,32187,32059,32061,32062,32062,32064,32066,32066,32068,32069,32188,32072,32074,32075,32077,32079,32080,32082,32084,32084,32086,32087,32089,32090,32092,32092,32094,32096,32096,32098,32100,32103,32105,32189,32116,32118,32120,32124,32126,32128,32128,32130,32131,32131,32133,32190,32134,32136,32138,32138,32140,32142,32143,32145,32191,32146,32148,32192,32193,32149,32151,32151,32153,32155,32155,32157,32159,32167,32169,32194,32173,32175,32177,32180,32182,32195,32185,31501,31742,31741,31740,31738,31737,31735,31734,31734,31732,31785,31728,31727,31725,31725,31812,31723,31720,31777,31718,31717,31764,31715,31712,31710,31709,31709,31791,31784,31784,31707,31706,31706,31762,31704,31701,31790,31699,31696,31760,31694,31692,31691,31775,31775,31759,31689,31689,31688,31758,31685,31774,31803,31677,31757,31675,31674,31756,31672,31671,31755,31669,31668,31666,31665,31665,31754,31663,31657,31773,31655,31651,31649,31648,31647,31645,31644,31643,31753,31641,31640,31638,31636,31636,31634,31632,31632,29199,30062,30062,30260,30214,30214,30060,30059,30054,30168,30052,30051,30123,30049,30046,30194,30044,30043,30122,30213,30038,30036,30035,30035,30237,30395,30395,30033,30032,30028,30164,30026,30024,30023,30121,30015,30013,30012,30008,30006,30005,30003,30001,30000,29998,29996,30291,29991,30120,29989,29988,29986,29984,29981,30119,30193,29979,29978,30161,30161,30323,30257,30257,30117,28982,28982,28981,29155,29152,29150,29149,29149,29147,29146,29143,29142,29140,29139,29138,29136,29136,29135,29184,29184,29189,29182,29130,29176,29128,29127,29169,29125,29124,29168,29122,29122,29121,29119,29118,29181,32029,32032,32035,32037,32040,32044,32045,32196,32048,32052,32053,32056,32187,32059,32062,32066,32066,32069,32071,32071,32188,32074,32197,32075,32079,32080,32084,32087,32089,32092,32096,32096,32100,32101,32101,32103,32189,32115,32116,32120,32124,32128,32131,32131,32190,32198,32199,32134,32138,32138,32142,32143,32143,32191,32200,32146,32192,32193,32193,32151,32155,32155,32159,32161,32201,32167,32194,32173,32177,32179,32179,32180,32195,32183,32185,31742,31737,31734,31785,31728,31725,31723,31720,31718,31717,31712,31709,31784,31706,31704,31703,31702,31701,31699,31697,31696,31694,31692,31775,31689,31689,31758,31686,31685,31803,31683,31675,31674,31672,31672,31671,31669,31668,31665,31663,31657,31655,31654,31651,31648,31647,31644,31643,31641,31636,31632,30062,30062,30214,30059,30055,30054,30052,30047,30046,30044,30043,30213,30041,30039,30038,30035,30035,30395,30032,30029,30028,30026,30025,30024,30121,30015,30012,30011,30009,30008,30005,30003,30000,29999,29998,30291,29993,29992,29991,29989,29988,29984,29983,29981,30193,29979,29979,30161,30257,30257,28982,29155,29153,29152,29149,29143,29140,29139,29139,29136,29184,29184,29182,29133,29131,29130,29128,29124,29122,29119,29119,29118,32029,32040,32045,32047,32047,32196,32052,32202,32053,32187,32059,32066,32071,32071,32074,32203,32197,32079,32204,32080,32087,32089,32089,32096,32101,32101,32189,32205,32115,32120,32121,32206,32124,32131,32207,32199,32138,32138,32143,32200,32146,32193,32155,32201,32194,32170,32172,32173,32179,32179,32195,32208,32183,31742,31741,31737,31785,31730,31729,31728,31723,31712,31784,31706,31706,31703,31702,31702,31699,31698,31697,31694,31693,31692,31689,31686,31677,31675,31672,31672,31669,31668,31668,31663,31662,31658,31657,31654,31652,31651,31647,31644,31641,31640,31640,31636,30062,30062,30059,30058,30055,30052,30051,30048,30047,30044,30044,30043,30041,30039,30035,30032,30029,30026,30025,30025,30121,30021,30016,30015,30011,30009,30005,30003,29999,29998,29993,29988,29983,29981,29981,29979,30257,29154,29153,29149,29143,29139,29184,29184,29133,29132,29124,29119,32029,32040,32047,32052,32202,32187,32059,32059,32071,32203,32197,32204,32209,32080,32089,32101,32101,32205,32210,32113,32115,32121,32211,32206,32131,32207,32138,32200,32212,32146,32155,32172,32179,32208,32183,31741,31738,31737,31730,31729,31729,31723,31722,31713,31712,31706,31706,31702,31698,31692,31686,31685,31677,31672,31668,31668,31662,31660,31658,31654,31652,31652,31647,31644,31644,31640,30062,30056,30055,30051,30048,30044,30041,30040,30039,30032,30029,30025,30021,30016,30011,30010,30010,30009,30003,29999,29993,29992,29989,29988,29981,29981,30257,29155,29154,29149,29146,29143,29184,29132,29125,29124,32029,32040,32052,32202,32059,32203,32213,32197,32209,32080,32080,32101,32210,32121,32123,32214,32121,32214,32113,32211,32131,32198,32198,32207,32200,32212,32155,32161,32172,32208,32215,32216,32183,31738,31738,31737,31729,31729,31722,31721,31714,31713,31706,31706,31698,31697,31685,31683,32217,31685,32217,31692,31678,31677,31668,31658,31652,31644,31644,30062,30058,30056,30051,30049,30049,30048,30041,30041,30040,30032,30029,30021,30020,30010,30003,29999,29999,29992,29989,29989,29981,29155,29144,29143,29132,29127,29125,32029,32040,32202,32059,32059,32213,32197,32197,32080,32210,32218,32113,32214,32218,32214,32123,32113,32218,32111,32219,32211,32198,32198,32200,32220,32212,32161,32162,32172,32215,32221,32222,32216,31738,31729,31721,32223,31729,32223,31738,31714,31706,31697,32224,31692,32217,32224,32217,31683,31692,32224,31693,31668,31660,32225,31668,32225,31678,31659,31658,31644,31644,30058,30057,30057,30056,30049,30049,30041,30032,30029,30020,30018,30016,30010,29999,29989,29155,32226,29989,32226,29999,29144,29132,29131,29127,32029,32032,32040,32059,32197,32197,32210,32227,32123,32219,32228,32228,32111,32218,32228,32218,32123,32219,32198,32220,32162,32164,32229,32162,32229,32212,32172,32221,32222,32222,31738,32223,32223,31721,32230,32223,32230,32222,31715,31714,31697,31683,31682,32231,32231,31693,32224,32231,32224,31683,31660,31659,31644,30057,30049,32232,30057,32232,31644,30049,30032,30031,32233,29999,32226,32233,32226,29155,29999,32233,30016,29144,29131,29128,29127,32032,32037,32197,32227,32234,32197,32234,32040,32219,32220,32212,32172,32222,32230,32172,32230,31721,31715,31697,32235,31715,32235,31717,31682,31681,32236,32236,31693,32231,32236,32231,31682,31660,31644,32237,32237,31678,32225,32237,32225,31660,30049,30031,32238,32238,31644,32232,32238,32232,30049,32239,30016,32233,32239,32233,29155,30016,32239,30017,29145,29144,29128,29128,29127,32037,32227,32106,32240,32240,32040,32234,32240,32234,32227,32241,32212,32229,32241,32229,32164,32212,32241,32219,32170,32172,31721,31697,31693,32242,32242,31717,32235,32242,32235,31697,32238,30030,32243,32238,32243,31644,30030,32238,30031,29155,29154,32244,32244,30017,32239,32244,32239,29155,29145,29128,32037,32106,32108,32245,32245,32040,32240,32245,32240,32106,32246,32219,32241,32241,32164,32247,32241,32247,32246,32228,32246,32248,32228,32248,32111,32246,32228,32219,32201,32170,31721,32249,31693,32236,32249,32236,31681,31693,32249,32250,32242,32250,32251,32242,32251,31717,32250,32242,31693,32243,30029,32252,32243,32252,31644,30029,32243,30030,29154,29146,32253,32253,30017,32244,32253,32244,29154,29146,29145,32037,32254,32040,32245,32254,32245,32108,32040,32254,32037,32248,32255,32256,32248,32256,32111,32255,32248,32246,32257,32246,32247,32257,32247,32164,32246,32257,32255,32258,32111,32256,32258,32256,32255,32111,32258,32110,32259,32201,31721,32251,32260,32261,32251,32261,31717,32260,32251,32250,32262,32250,32249,32262,32249,31681,32250,32262,32260,32263,31717,32261,32263,32261,32260,31717,32263,31720,32252,32264,32265,32252,32265,31644,32252,30029,32266,32252,32266,32264,32237,32264,32267,32237,32267,31678,32237,31644,32265,32237,32265,32264,29146,32037,32268,29146,32268,32269,32253,32269,32270,32253,32270,30017,32269,32253,29146,32108,32110,32271,32271,32037,32254,32271,32254,32108,32164,32166,32272,32272,32273,32274,32272,32274,32164,32255,32273,32275,32275,32110,32258,32275,32258,32255,32273,32255,32257,32257,32164,32274,32257,32274,32273,32276,32259,31721,32267,32277,32278,32267,32278,31678,32277,32267,32264,32279,32264,32266,32279,32266,30029,32264,32279,32277,32280,31678,32278,32280,32278,32277,31678,32280,31680,32281,32271,32282,32281,32282,32283,32271,32281,32037,32271,32110,32284,32284,32283,32282,32284,32282,32271,32269,32283,32285,32285,30017,32270,32285,32270,32269,32281,32269,32268,32281,32268,32037,32269,32281,32283,32166,32286,32287,32287,32288,32289,32287,32289,32166,32273,32288,32290,32290,32110,32275,32290,32275,32273,32288,32273,32272,32272,32166,32289,32272,32289,32288,32276,31721,31720,32277,30018,32291,32291,31680,32280,32291,32280,32277,30018,32277,32279,30018,32279,30029,32285,32292,32293,32285,32293,30017,32292,32285,32283,32294,32283,32284,32294,32284,32110,32283,32294,32292,32295,30017,32293,32295,32293,32292,30017,32295,30018,32286,32296,32297,32297,32298,32299,32297,32299,32286,32288,32298,32300,32300,32110,32290,32300,32290,32288,32298,32288,32287,32287,32286,32299,32287,32299,32298,32276,31720,32263,32276,32263,32260,32301,32260,32262,32262,31681,32302,32262,32302,32301,32260,32301,32303,32260,32303,32276,32304,32291,32305,32304,32305,32292,32291,32304,31680,32291,30018,32295,32295,32292,32305,32295,32305,32291,32306,32292,32294,32294,32110,32307,32294,32307,32306,32304,32306,32308,32304,32308,31680,32306,32304,32292,32296,32276,32303,32303,32301,32309,32303,32309,32296,32310,32301,32302,32302,31681,32311,32302,32311,32310,32301,32310,32312,32312,32296,32309,32312,32309,32301,31681,31680,32308,32308,32306,32313,32308,32313,31681,32314,32306,32307,32307,32110,32315,32307,32315,32314,32306,32314,32316,32316,31681,32313,32316,32313,32306,32317,32314,32318,32317,32318,32298,32317,31681,32316,32317,32316,32314,32300,32314,32315,32300,32315,32110,32300,32298,32318,32300,32318,32314,32297,32310,32319,32297,32319,32298,32297,32296,32312,32297,32312,32310,32317,32310,32311,32317,32311,31681,32317,32298,32319,32317,32319,32310,32320,32321,32322,32323,32324,32325,32326,32327,32328,32329,32330,32331,32331,32332,32333,32333,32334,32335,32336,32337,32338,32339,32340,32341,32341,32342,32343,32343,32344,32345,32346,32347,32348,32349,32350,32351,32352,32353,32354,32354,32355,32356,32356,32357,32358,32358,32359,32360,32361,32362,32363,32363,32364,32365,32320,32322,32323,32323,32325,32366,32326,32328,32329,32329,32331,32333,32333,32335,32367,32336,32338,32368,32339,32341,32343,32343,32345,32346,32346,32348,32349,32349,32351,32369,32369,32352,32354,32354,32356,32358,32370,32361,32363,32363,32365,32320,32320,32323,32366,32326,32329,32333,32333,32367,32336,32368,32339,32343,32346,32349,32369,32369,32354,32358,32370,32363,32320,32320,32366,32371,32371,32326,32333,32333,32336,32368,32368,32343,32346,32369,32358,32360,32372,32370,32320,32371,32333,32368,32368,32346,32369,32369,32360,32373,32372,32320,32371,32371,32368,32369,32374,32372,32371,32371,32369,32373,32375,32374,32371,32371,32373,32375,32376,32377,32378,32379,32380,32381,32381,32382,32383,32384,32385,32386,32386,32387,32388,32389,32390,32391,32391,32392,32393,32393,32394,32395,32395,32396,32397,32397,32398,32399,32400,32401,32402,32402,32403,32404,32405,32406,32407,32407,32408,32409,32409,32410,32411,32411,32412,32413,32414,32415,32416,32416,32417,32418,32419,32420,32421,32422,32423,32424,32424,32425,32426,32427,32376,32378,32379,32381,32383,32384,32386,32388,32393,32395,32397,32397,32399,32400,32400,32402,32404,32405,32407,32409,32411,32413,32414,32414,32416,32418,32422,32424,32426,32427,32378,32379,32428,32384,32388,32391,32393,32397,32397,32400,32404,32404,32405,32409,32411,32414,32418,32421,32422,32426,32427,32379,32383,32429,32428,32388,32389,32391,32397,32404,32409,32411,32411,32418,32419,32426,32427,32383,32429,32388,32430,32389,32397,32404,32404,32411,32419,32421,32426,32383,32429,32430,32431,32389,32404,32419,32419,32421,32383,32429,32431,32432,32432,32389,32419,32419,32383,32429,32429,32432,32419,32433,32434,32435,32435,32436,32437,32437,32438,32439,32439,32440,32441,32441,32433,32435,32435,32437,32439,32439,32441,32435,32442,32443,32444,32444,32445,32446,32446,32447,32442,32442,32444,32446,32448,32449,32450,32450,32451,32452,32452,32453,32454,32454,32448,32450,32450,32452,32454,32455,32456,32457,32457,32458,32459,32460,32461,32462,32462,32455,32457,32457,32459,32460,32460,32462,32457,32463,32464,32465,32465,32466,32467,32468,32469,32470,32471,32472,32473,32474,32475,32476,32476,32477,32478,32478,32479,32480,32480,32481,32463,32463,32465,32467,32467,32468,32470,32470,32471,32473,32482,32474,32476,32476,32478,32480,32480,32463,32467,32467,32470,32473,32482,32476,32480,32480,32467,32473,32473,32482,32480,32483,32484,32485,32485,32486,32487,32488,32489,32490,32491,32492,32493,32493,32494,32495,32495,32496,32497,32497,32498,32499,32499,32500,32501,32501,32483,32485,32485,32487,32488,32488,32490,32491,32491,32493,32495,32495,32497,32499,32499,32501,32485,32488,32491,32495,32495,32499,32485,32485,32488,32495,32502,32503,32504,32504,32505,32506,32506,32507,32508,32508,32509,32510,32510,32511,32512,32513,32514,32515,32515,32516,32517,32517,32518,32519,32519,32520,32521,32521,32522,32502,32502,32504,32506,32506,32508,32510,32510,32512,32523,32524,32513,32515,32515,32517,32519,32519,32521,32502,32502,32506,32510,32524,32515,32519,32519,32502,32510,32523,32524,32519,32519,32510,32523,32525,32526,32527,32527,32528,32529,32530,32531,32532,32532,32533,32534,32534,32535,32536,32536,32537,32538,32539,32540,32541,32541,32542,32543,32543,32544,32545,32546,32547,32548,32548,32549,32550,32550,32525,32527,32527,32529,32551,32530,32532,32534,32534,32536,32538,32552,32539,32541,32541,32543,32545,32546,32548,32550,32550,32527,32551,32530,32534,32538,32552,32541,32545,32546,32550,32551,32553,32530,32538,32554,32552,32545,32555,32546,32551,32551,32553,32538,32556,32554,32545,32545,32555,32551,32551,32538,32557,32556,32545,32551,32551,32557,32558,32559,32556,32551,32551,32558,32559,32560,32561,32562,32562,32563,32564,32564,32565,32566,32567,32568,32569,32569,32570,32571,32571,32572,32573,32574,32575,32576,32576,32577,32578,32578,32579,32580,32581,32582,32583,32584,32585,32586,32587,32588,32589,32589,32590,32591,32592,32593,32594,32595,32596,32597,32597,32598,32599,32599,32600,32601,32602,32603,32604,32605,32606,32607,32560,32562,32564,32567,32569,32571,32571,32573,32608,32574,32576,32578,32578,32580,32581,32584,32586,32609,32587,32589,32591,32595,32597,32599,32610,32602,32604,32605,32607,32611,32611,32560,32564,32612,32567,32571,32613,32574,32578,32584,32609,32587,32587,32591,32592,32594,32595,32599,32614,32610,32604,32605,32611,32564,32612,32571,32608,32613,32578,32581,32584,32587,32592,32592,32594,32599,32615,32614,32604,32604,32605,32564,32612,32608,32613,32613,32581,32583,32584,32592,32599,32601,32615,32604,32604,32564,32566,32612,32613,32583,32584,32599,32601,32601,32604,32566,32566,32612,32583,32584,32601,32566,32566,32583,32584,32616,32617,32618,32618,32619,32620,32620,32621,32622,32623,32624,32625,32625,32626,32627,32628,32629,32630,32631,32632,32633,32633,32634,32635,32636,32637,32638,32638,32639,32640,32641,32642,32643,32643,32644,32645,32645,32646,32647,32647,32648,32649,32650,32651,32652,32653,32654,32655,32656,32657,32616,32616,32618,32620,32620,32622,32658,32623,32625,32627,32628,32630,32631,32631,32633,32635,32636,32638,32640,32641,32643,32645,32645,32647,32649,32653,32655,32659,32659,32656,32616,32620,32658,32623,32627,32628,32631,32631,32635,32636,32636,32640,32660,32641,32645,32649,32659,32616,32620,32620,32623,32627,32627,32631,32636,32661,32641,32649,32653,32659,32620,32620,32627,32636,32660,32661,32649,32652,32653,32620,32620,32636,32660,32660,32649,32662,32650,32652,32620,32660,32662,32650,32650,32620,32660,32663,32664,32665,32665,32666,32667,32667,32668,32669,32670,32671,32672,32673,32674,32675,32675,32676,32677,32678,32679,32680,32680,32681,32663,32665,32667,32669,32669,32670,32672,32673,32675,32677,32678,32680,32663,32665,32669,32672,32673,32677,32678,32678,32663,32665,32665,32672,32682,32673,32678,32665,32665,32682,32673,32683,32684,32685,32685,32686,32687,32688,32689,32690,32690,32691,32692,32692,32693,32694,32695,32696,32697,32697,32683,32685,32685,32687,32688,32688,32690,32692,32692,32694,32698,32695,32697,32685,32685,32688,32692,32699,32695,32685,32685,32692,32698,32698,32699,32685,32700,32701,32702,32702,32703,32704,32704,32705,32706,32707,32708,32709,32709,32710,32711,32712,32713,32714,32714,32715,32716,32716,32717,32718,32719,32720,32721,32722,32723,32724,32724,32700,32702,32702,32704,32706,32707,32709,32711,32711,32712,32714,32714,32716,32718,32725,32719,32721,32722,32724,32702,32702,32706,32707,32707,32711,32714,32714,32718,32726,32725,32721,32722,32722,32702,32707,32707,32714,32726,32726,32725,32722,32722,32707,32726,32727,32728,32729,32729,32730,32731,32732,32733,32734,32735,32736,32737,32738,32739,32740,32740,32741,32742,32743,32744,32745,32745,32746,32747,32747,32748,32727,32729,32731,32749,32734,32735,32737,32738,32740,32742,32743,32745,32747,32747,32727,32729,32729,32749,32732,32734,32737,32738,32738,32742,32750,32750,32743,32747,32747,32729,32732,32734,32738,32750,32747,32732,32734,32734,32750,32747,32751,32752,32753,32753,32754,32755,32755,32756,32757,32757,32758,32759,32759,32760,32761,32762,32763,32764,32764,32765,32766,32766,32767,32768,32751,32753,32755,32755,32757,32759,32759,32761,32762,32762,32764,32766,32766,32768,32751,32751,32755,32759,32759,32762,32766,32766,32751,32759,32769,32770,32771,32771,32772,32773,32773,32774,32775,32775,32776,32777,32778,32779,32780,32781,32782,32783,32784,32785,32786,32786,32787,32788,32788,32789,32790,32791,32792,32793,32794,32795,32796,32796,32797,32798,32799,32800,32801,32801,32802,32803,32803,32804,32805,32805,32806,32769,32769,32771,32773,32775,32777,32778,32778,32780,32781,32781,32783,32807,32784,32786,32788,32788,32790,32791,32794,32796,32798,32799,32801,32803,32803,32805,32769,32769,32773,32775,32775,32778,32781,32781,32807,32784,32784,32788,32791,32794,32798,32808,32808,32799,32803,32775,32781,32784,32784,32791,32793,32794,32808,32803,32775,32784,32793,32794,32803,32769,32775,32793,32809,32809,32794,32769,32769,32775,32809,32810,32811,32812,32812,32813,32814,32814,32815,32816,32816,32817,32818,32818,32819,32820,32820,32810,32812,32812,32814,32816,32816,32818,32820,32820,32812,32816,32821,32822,32823,32824,32825,32826,32826,32827,32828,32828,32829,32830,32830,32831,32832,32832,32833,32834,32835,32836,32821,32821,32823,32824,32824,32826,32828,32828,32830,32832,32832,32834,32835,32835,32821,32824,32824,32828,32832,32832,32835,32824,32837,32838,32839,32840,32841,32842,32842,32843,32844,32844,32845,32846,32847,32848,32837,32837,32839,32840,32840,32842,32844,32844,32846,32847,32847,32837,32840,32840,32844,32847,32849,32850,32851,32851,32852,32853,32853,32854,32855,32855,32856,32857,32858,32859,32860,32860,32849,32851,32851,32853,32855,32855,32857,32858,32858,32860,32851,32851,32855,32858,32861,32862,32863,32863,32864,32865,32865,32866,32867,32867,32868,32869,32869,32870,32871,32871,32872,32873,32873,32874,32875,32875,32876,32877,32878,32879,32880,32880,32881,32882,32861,32863,32865,32865,32867,32869,32871,32873,32875,32875,32877,32878,32878,32880,32882,32861,32865,32869,32871,32875,32878,32878,32882,32861,32861,32869,32871,32871,32878,32861,32883,32884,32885,32886,32887,32888,32888,32889,32890,32890,32891,32892,32892,32893,32894,32894,32895,32896,32896,32897,32898,32898,32899,32900,32900,32901,32902,32902,32903,32904,32904,32905,32906,32906,32907,32908,32908,32909,32910,32910,32911,32912,32912,32883,32885,32888,32890,32892,32892,32894,32896,32898,32900,32902,32902,32904,32906,32906,32908,32910,32910,32912,32885,32886,32888,32892,32892,32896,32898,32898,32902,32906,32906,32910,32885,32886,32892,32898,32906,32885,32913,32913,32886,32898,32898,32906,32913,32914,32915,32916,32916,32917,32918,32919,32920,32921,32921,32922,32923,32923,32924,32925,32926,32927,32928,32928,32929,32930,32931,32932,32914,32914,32916,32918,32933,32919,32921,32921,32923,32925,32926,32928,32930,32931,32914,32918,32934,32933,32921,32921,32925,32935,32935,32926,32930,32936,32931,32918,32934,32921,32935,32935,32930,32936,32936,32918,32934,32934,32935,32936,32937,32938,32939,32939,32940,32941,32942,32943,32944,32944,32945,32946,32946,32947,32948,32948,32949,32950,32950,32951,32952,32937,32939,32941,32942,32944,32946,32946,32948,32950,32950,32952,32937,32937,32941,32942,32942,32946,32950,32950,32937,32942,32953,32954,32955,32955,32956,32957,32958,32959,32960,32960,32961,32962,32962,32963,32964,32964,32965,32966,32966,32953,32955,32955,32957,32958,32958,32960,32962,32962,32964,32966,32966,32955,32958,32958,32962,32966,32967,32968,32969,32969,32970,32971,32971,32972,32973,32973,32974,32975,32976,32977,32978,32979,32980,32981,32981,32982,32983,32984,32985,32986,32987,32988,32989,32990,32991,32992,32992,32993,32994,32995,32996,32997,32997,32998,32999,32999,33000,33001,33002,33003,33004,33005,33006,33007,33008,33009,33010,33010,33011,33012,33012,33013,33014,33015,33016,33017,33017,33018,33019,33020,33021,33022,33022,33023,33024,33025,33026,33027,33028,33029,33030,33031,33032,33033,33033,33034,33035,33035,33036,33037,33038,33039,33040,33040,33041,33042,33043,33044,33045,33045,33046,33047,33047,33048,33049,33049,33050,33051,33051,33052,33053,33054,33055,33056,33056,33057,33058,33059,33060,33061,33061,33062,33063,33063,33064,33065,33065,33066,33067,33067,33068,33069,33069,33070,33071,33071,33072,33073,33074,33075,33076,33076,33077,33078,33078,33079,33080,33081,33082,33083,33083,33084,33085,33085,33086,33087,33088,33089,33090,33091,33092,33093,33094,33095,33096,33096,33097,33098,33098,33099,33100,33100,33101,33102,33102,33103,33104,33105,33106,33107,33107,33108,33109,33109,33110,33111,33112,33113,33114,33114,33115,33116,33116,33117,33118,33119,33120,33121,33121,33122,33123,33123,33124,33125,33125,33126,33127,33127,33128,33129,33130,33131,33132,33133,33134,33135,33136,33137,33138,33138,33139,33140,33140,33141,33142,33143,33144,33145,33145,33146,33147,33148,33149,33150,33151,33152,33153,33154,33155,33156,33156,33157,33158,33159,33160,33161,32967,32969,32971,32971,32973,32975,32976,32978,32979,32979,32981,32983,33162,32984,32986,32987,32989,33163,32990,32992,32994,32997,32999,33001,33002,33004,33164,33005,33007,33008,33008,33010,33012,33015,33017,33019,33020,33022,33024,33025,33027,33165,33028,33030,33031,33031,33033,33035,33035,33037,33166,33038,33040,33042,33043,33045,33047,33047,33049,33051,33051,33053,33167,33054,33056,33058,33059,33061,33063,33063,33065,33067,33067,33069,33071,33074,33076,33078,33078,33080,33168,33083,33085,33087,33088,33090,33091,33094,33096,33098,33098,33100,33102,33102,33104,33169,33105,33107,33109,33109,33111,33170,33112,33114,33116,33116,33118,33171,33119,33121,33123,33123,33125,33127,33130,33132,33172,33133,33135,33173,33136,33138,33140,33140,33142,33174,33143,33145,33147,33148,33150,33175,33151,33153,33154,33154,33156,33158,33176,33159,33161,33177,32967,32971,32971,32975,33178,33178,32976,32979,32979,32983,33162,33162,32986,33179,33180,32987,33163,33181,32990,32994,32995,32997,33001,33182,33002,33164,33008,33012,33014,33014,33015,33019,33183,33020,33024,33024,33025,33165,33028,33031,33035,33038,33042,33184,33185,33043,33047,33047,33051,33167,33167,33054,33058,33059,33063,33067,33067,33071,33073,33074,33078,33168,33081,33083,33087,33186,33094,33098,33098,33102,33169,33105,33109,33170,33112,33116,33171,33119,33123,33127,33187,33133,33173,33173,33136,33140,33174,33143,33147,33148,33175,33151,33151,33154,33158,33176,33161,33188,33177,32971,33178,33178,32979,33162,33162,33179,33189,33190,33180,33163,33163,33181,32994,32995,33001,33191,33182,33164,33192,33005,33008,33014,33014,33019,33183,33183,33024,33165,33028,33035,33166,33038,33184,33193,33193,33185,33047,33047,33167,33058,33194,33059,33067,33067,33073,33195,33196,33074,33168,33081,33087,33197,33186,33098,33169,33105,33170,33198,33199,33112,33171,33200,33119,33127,33187,33173,33140,33148,33151,33158,33201,33177,33178,33162,33189,33202,33162,33202,33178,33163,32994,33203,33204,32995,33191,33182,33192,33205,33014,33183,33206,33014,33206,33005,33165,33028,33207,33165,33207,33183,33028,33166,33208,33193,33047,33058,33209,33194,33067,33210,33196,33168,33081,33197,33211,33093,33186,33169,33105,33198,33212,33199,33171,33200,33200,33127,33129,33140,33174,33213,33140,33213,33187,33147,33148,33158,33201,33178,33202,33201,33202,33189,33163,33203,33214,33204,33191,33182,33215,33183,33207,33215,33207,33028,33183,33215,33216,33206,33216,33217,33206,33217,33005,33216,33206,33183,33028,33208,33038,33038,33193,33058,33058,33209,33067,33210,33168,33081,33081,33211,33218,33091,33093,33169,33105,33212,33199,33199,33200,33129,33219,33187,33213,33219,33213,33174,33187,33219,33172,33147,33158,33176,33220,33201,33189,33163,33214,33221,33182,33205,33222,33182,33222,33204,33217,33223,33224,33217,33224,33005,33223,33217,33216,33225,33216,33215,33225,33215,33028,33216,33225,33223,33226,33005,33224,33226,33224,33223,33005,33226,33205,33038,33058,33227,33038,33227,33028,33058,33067,33195,33210,33081,33218,33088,33091,33169,33199,33129,33228,33199,33228,33105,33174,33147,33229,33229,33172,33219,33229,33219,33174,33147,33176,33188,33188,33220,33189,33163,33221,33230,33163,33230,33190,33231,33205,33226,33231,33226,33223,33232,33223,33225,33232,33225,33028,33223,33232,33231,33205,33231,33233,33233,33204,33222,33233,33222,33205,33058,33195,33234,33234,33028,33227,33234,33227,33058,33210,33218,33235,33236,33088,33169,33228,33237,33238,33228,33238,33105,33237,33228,33129,33147,33188,33239,33147,33239,33240,33229,33240,33241,33229,33241,33172,33240,33229,33147,33188,33189,33190,33233,33242,33243,33233,33243,33204,33242,33233,33231,33244,33231,33232,33244,33232,33028,33231,33244,33242,33245,33204,33243,33245,33243,33242,33204,33245,33246,33234,33247,33248,33234,33248,33028,33247,33234,33195,33247,33210,33235,33236,33169,33249,33237,33130,33250,33250,33105,33238,33250,33238,33237,33240,33190,33251,33251,33172,33241,33251,33241,33240,33190,33240,33239,33190,33239,33188,33252,33242,33253,33252,33253,33247,33242,33252,33254,33245,33254,33255,33245,33255,33246,33254,33245,33242,33253,33244,33256,33253,33256,33247,33244,33253,33242,33244,33028,33248,33248,33247,33256,33248,33256,33244,33247,33235,33257,33258,33236,33249,33130,33172,33259,33259,33105,33250,33259,33250,33130,33221,33172,33251,33251,33190,33230,33251,33230,33221,33255,33260,33261,33255,33261,33246,33260,33255,33254,33262,33254,33252,33262,33252,33247,33254,33262,33260,33263,33246,33261,33263,33261,33260,33246,33263,33221,33247,33257,33264,33258,33249,33265,33172,33221,33266,33266,33105,33259,33266,33259,33172,33260,33264,33267,33260,33267,33268,33263,33268,33269,33263,33269,33221,33268,33263,33260,33264,33260,33262,33264,33262,33247,33258,33265,33105,33270,33268,33271,33270,33271,33258,33268,33270,33272,33269,33272,33273,33269,33273,33221,33272,33269,33268,33267,33258,33271,33267,33271,33268,33258,33267,33264,33272,33105,33266,33266,33221,33273,33266,33273,33272,33105,33272,33270,33105,33270,33258,33274,33275,33276,33276,33277,33278,33278,33279,33280,33281,33282,33283,33283,33284,33285,33285,33286,33287,33288,33289,33290,33290,33291,33292,33293,33294,33295,33295,33296,33297,33298,33299,33300,33301,33302,33303,33303,33304,33305,33306,33307,33308,33309,33310,33311,33311,33312,33313,33314,33315,33316,33317,33318,33319,33319,33320,33321,33322,33323,33324,33325,33326,33327,33328,33329,33330,33330,33331,33332,33333,33334,33335,33336,33337,33338,33338,33339,33340,33341,33342,33343,33343,33344,33345,33274,33276,33278,33280,33281,33283,33283,33285,33287,33288,33290,33292,33293,33295,33297,33346,33298,33300,33301,33303,33305,33347,33306,33308,33309,33311,33313,33348,33314,33316,33317,33319,33321,33321,33322,33324,33328,33330,33332,33332,33333,33335,33349,33336,33338,33341,33343,33345,33345,33274,33278,33278,33280,33283,33283,33287,33350,33351,33288,33292,33293,33297,33346,33346,33300,33352,33301,33305,33347,33347,33308,33309,33309,33313,33348,33348,33316,33317,33317,33321,33324,33327,33328,33332,33349,33338,33340,33341,33345,33278,33278,33283,33350,33351,33292,33353,33293,33346,33352,33354,33301,33347,33347,33309,33348,33348,33317,33324,33327,33332,33335,33355,33349,33340,33340,33341,33278,33278,33350,33351,33351,33353,33356,33293,33352,33357,33354,33347,33348,33348,33324,33325,33325,33327,33335,33335,33355,33340,33278,33351,33356,33358,33293,33357,33357,33354,33348,33348,33325,33335,33340,33278,33356,33357,33348,33335,33340,33356,33358,33358,33357,33335,33335,33340,33358,33359,33360,33361,33362,33363,33364,33364,33365,33366,33366,33367,33368,33368,33369,33370,33370,33371,33372,33372,33373,33374,33374,33375,33376,33377,33378,33379,33380,33381,33382,33382,33383,33384,33384,33385,33386,33386,33387,33388,33388,33389,33390,33390,33391,33392,33392,33393,33394,33394,33395,33396,33397,33398,33399,33359,33361,33400,33362,33364,33366,33366,33368,33370,33370,33372,33374,33380,33382,33384,33384,33386,33388,33388,33390,33392,33392,33394,33396,33397,33399,33401,33401,33359,33400,33362,33366,33370,33370,33374,33376,33379,33380,33384,33384,33388,33392,33392,33396,33402,33403,33397,33401,33401,33400,33362,33362,33370,33376,33379,33384,33392,33392,33402,33403,33403,33401,33362,33362,33376,33377,33377,33379,33392,33392,33403,33362,33362,33377,33392,33404,33405,33406,33406,33407,33408,33408,33409,33410,33410,33411,33412,33412,33413,33414,33415,33416,33417,33417,33418,33419,33419,33420,33421,33422,33423,33424,33425,33426,33427,33428,33429,33430,33430,33431,33432,33433,33434,33435,33435,33436,33437,33437,33438,33439,33439,33440,33441,33442,33443,33444,33444,33445,33446,33447,33448,33449,33449,33450,33451,33451,33452,33453,33454,33455,33456,33456,33457,33458,33459,33460,33461,33461,33462,33463,33464,33465,33466,33466,33467,33468,33468,33469,33470,33471,33472,33473,33473,33474,33475,33475,33476,33477,33478,33479,33480,33480,33481,33482,33482,33483,33484,33404,33406,33408,33408,33410,33412,33412,33414,33485,33419,33421,33422,33422,33424,33486,33425,33427,33487,33428,33430,33432,33433,33435,33437,33437,33439,33441,33442,33444,33446,33446,33447,33449,33449,33451,33453,33454,33456,33458,33459,33461,33463,33464,33466,33468,33468,33470,33488,33471,33473,33475,33475,33477,33489,33478,33480,33482,33490,33404,33408,33408,33412,33485,33419,33422,33486,33486,33425,33487,33487,33428,33432,33432,33433,33437,33437,33441,33442,33446,33449,33453,33453,33454,33458,33458,33459,33463,33491,33464,33468,33468,33488,33471,33471,33475,33489,33489,33478,33482,33492,33490,33408,33408,33485,33493,33419,33486,33487,33487,33432,33437,33437,33442,33446,33453,33458,33463,33491,33468,33471,33489,33482,33484,33492,33408,33493,33419,33487,33437,33437,33446,33453,33453,33463,33494,33495,33491,33471,33471,33489,33484,33484,33492,33493,33417,33419,33437,33453,33494,33496,33496,33495,33471,33471,33484,33493,33417,33437,33453,33453,33496,33471,33471,33493,33497,33415,33417,33453,33453,33471,33497,33498,33415,33453,33453,33497,33498,33499,33500,33501,33501,33502,33503,33504,33505,33506,33506,33507,33508,33508,33509,33510,33510,33511,33512,33513,33514,33515,33516,33517,33518,33519,33520,33521,33521,33522,33523,33524,33525,33526,33526,33527,33528,33528,33529,33530,33531,33532,33533,33533,33534,33535,33536,33537,33538,33538,33539,33540,33540,33541,33542,33543,33544,33545,33546,33547,33548,33548,33549,33550,33551,33552,33553,33554,33555,33556,33556,33557,33558,33559,33560,33561,33561,33562,33563,33564,33565,33566,33566,33567,33568,33568,33569,33570,33570,33571,33572,33572,33573,33574,33575,33576,33577,33577,33578,33579,33580,33581,33582,33582,33583,33584,33585,33586,33587,33587,33588,33589,33589,33590,33591,33592,33593,33594,33594,33595,33596,33597,33598,33599,33600,33601,33602,33602,33603,33604,33604,33605,33606,33606,33607,33608,33608,33609,33610,33611,33612,33613,33614,33615,33616,33616,33617,33618,33619,33620,33621,33622,33623,33624,33624,33625,33626,33627,33628,33629,33629,33630,33631,33631,33632,33633,33634,33635,33636,33636,33637,33638,33638,33639,33640,33640,33641,33642,33642,33643,33644,33645,33646,33647,33648,33649,33650,33650,33651,33652,33652,33653,33654,33654,33655,33656,33657,33658,33659,33659,33660,33661,33662,33663,33664,33665,33666,33667,33667,33668,33669,33670,33671,33672,33673,33674,33675,33675,33676,33677,33678,33679,33680,33681,33682,33683,33683,33684,33685,33686,33687,33688,33688,33689,33690,33690,33691,33692,33693,33694,33695,33695,33696,33697,33697,33698,33699,33699,33700,33701,33701,33702,33703,33703,33704,33705,33705,33706,33707,33708,33709,33710,33710,33711,33712,33713,33714,33715,33715,33716,33717,33717,33718,33719,33720,33721,33722,33723,33724,33725,33726,33727,33728,33729,33730,33731,33732,33733,33734,33735,33736,33737,33737,33738,33739,33739,33740,33741,33741,33742,33743,33743,33744,33745,33745,33746,33747,33499,33501,33503,33504,33506,33508,33508,33510,33512,33513,33515,33748,33519,33521,33523,33524,33526,33528,33531,33533,33535,33536,33538,33540,33540,33542,33749,33543,33545,33750,33546,33548,33550,33551,33553,33751,33751,33554,33556,33559,33561,33563,33564,33566,33568,33568,33570,33572,33575,33577,33579,33580,33582,33584,33585,33587,33589,33589,33591,33752,33592,33594,33596,33597,33599,33600,33600,33602,33604,33604,33606,33608,33611,33613,33753,33753,33614,33616,33619,33621,33754,33622,33624,33626,33627,33629,33631,33631,33633,33755,33634,33636,33638,33638,33640,33642,33642,33644,33756,33757,33645,33647,33648,33650,33652,33652,33654,33656,33659,33661,33662,33662,33664,33758,33759,33665,33667,33667,33669,33760,33670,33672,33761,33673,33675,33677,33678,33680,33762,33681,33683,33685,33686,33688,33690,33693,33695,33697,33697,33699,33701,33701,33703,33705,33708,33710,33712,33763,33713,33715,33715,33717,33719,33720,33722,33764,33765,33723,33725,33726,33728,33766,33729,33731,33767,33735,33737,33739,33741,33743,33745,33745,33747,33768,33503,33504,33508,33512,33513,33748,33519,33523,33769,33770,33524,33528,33771,33531,33535,33535,33536,33540,33749,33543,33750,33772,33546,33550,33550,33551,33751,33751,33556,33558,33773,33559,33563,33564,33568,33572,33774,33580,33584,33585,33589,33752,33775,33592,33596,33600,33604,33608,33611,33753,33616,33776,33619,33754,33777,33622,33626,33778,33627,33631,33779,33634,33638,33638,33642,33756,33757,33647,33780,33648,33652,33656,33659,33662,33758,33759,33667,33760,33760,33670,33761,33673,33677,33781,33681,33685,33782,33686,33690,33692,33783,33693,33697,33697,33701,33705,33784,33708,33712,33763,33715,33719,33720,33764,33765,33765,33725,33785,33786,33726,33766,33787,33729,33767,33788,33735,33739,33739,33741,33745,33745,33768,33499,33499,33503,33508,33508,33512,33748,33519,33769,33770,33770,33528,33530,33789,33771,33535,33535,33540,33749,33790,33772,33550,33550,33751,33558,33558,33773,33563,33564,33572,33574,33791,33774,33584,33792,33585,33752,33775,33596,33793,33597,33600,33608,33611,33616,33618,33776,33754,33777,33777,33626,33794,33778,33631,33755,33779,33638,33756,33757,33780,33648,33648,33656,33795,33657,33659,33758,33759,33760,33761,33761,33673,33781,33681,33782,33686,33686,33692,33796,33783,33697,33705,33784,33712,33797,33798,33763,33719,33765,33785,33799,33786,33766,33787,33787,33767,33732,33788,33739,33745,33745,33499,33508,33508,33748,33516,33789,33535,33749,33790,33550,33558,33558,33563,33800,33564,33574,33575,33791,33584,33792,33792,33752,33801,33802,33597,33608,33610,33611,33618,33776,33777,33794,33803,33778,33755,33804,33779,33756,33805,33757,33648,33648,33795,33806,33657,33758,33807,33808,33759,33761,33761,33781,33678,33681,33686,33796,33783,33705,33707,33784,33797,33809,33809,33798,33719,33786,33787,33732,33734,33788,33745,33745,33508,33516,33530,33789,33749,33750,33790,33558,33558,33800,33564,33564,33575,33579,33791,33792,33801,33793,33802,33608,33608,33610,33618,33618,33776,33794,33810,33803,33755,33804,33756,33811,33805,33648,33806,33808,33761,33678,33681,33796,33812,33783,33707,33784,33784,33809,33719,33732,33734,33813,33732,33813,33786,33745,33516,33518,33770,33530,33749,33564,33579,33791,33791,33801,33814,33793,33608,33618,33618,33794,33815,33816,33810,33755,33804,33811,33817,33817,33805,33806,33808,33678,33762,33818,33783,33784,33784,33719,33819,33745,33518,33820,33770,33749,33750,33791,33814,33821,33791,33821,33564,33775,33793,33618,33816,33755,33804,33804,33817,33806,33812,33818,33784,33784,33819,33720,33734,33745,33820,33770,33750,33822,33770,33822,33519,33814,33823,33824,33824,33564,33821,33824,33821,33814,33775,33618,33815,33804,33806,33657,33681,33812,33784,33734,33820,33519,33823,33775,33825,33825,33564,33824,33825,33824,33823,33775,33815,33826,33816,33804,33657,33681,33784,33720,33734,33519,33827,33827,33786,33813,33827,33813,33734,33826,33564,33825,33826,33825,33775,33828,33816,33657,33829,33681,33720,33750,33786,33827,33827,33519,33822,33827,33822,33750,33564,33826,33830,33564,33830,33558,33828,33657,33807,33762,33829,33720,33831,33786,33750,33830,33832,33833,33830,33833,33558,33832,33830,33826,33828,33807,33808,33762,33720,33834,33762,33834,33808,33835,33831,33750,33833,33836,33837,33833,33837,33558,33836,33833,33832,33828,33808,33834,33828,33834,33720,33838,33835,33750,33837,33839,33840,33837,33840,33558,33839,33837,33836,33841,33828,33720,33842,33838,33750,33843,33841,33720,33842,33750,33558,33839,33843,33720,33844,33842,33558,33839,33720,33765,33845,33844,33558,33839,33765,33799,33846,33845,33558,33839,33799,33847,33848,33846,33558,33839,33847,33849,33850,33848,33558,33849,33558,33840,33849,33840,33839,33851,33850,33558,33558,33849,33851,33852,33853,33854,33855,33856,33857,33858,33859,33860,33861,33862,33863,33863,33864,33865,33865,33866,33867,33868,33869,33870,33871,33872,33873,33873,33874,33875,33875,33876,33877,33878,33879,33880,33881,33882,33883,33883,33884,33885,33885,33886,33887,33888,33889,33890,33890,33891,33892,33892,33893,33894,33895,33896,33897,33898,33899,33900,33900,33901,33902,33902,33903,33904,33905,33906,33907,33907,33908,33909,33910,33911,33912,33912,33913,33914,33915,33916,33917,33917,33918,33919,33919,33920,33921,33922,33923,33924,33924,33925,33926,33926,33927,33928,33929,33930,33931,33932,33933,33934,33934,33935,33936,33937,33938,33939,33940,33941,33942,33942,33943,33944,33945,33946,33947,33947,33948,33949,33949,33950,33951,33951,33952,33953,33954,33955,33956,33956,33957,33958,33959,33960,33961,33962,33963,33964,33965,33966,33967,33968,33969,33970,33970,33971,33972,33973,33974,33975,33852,33854,33855,33855,33857,33976,33858,33860,33861,33863,33865,33867,33977,33868,33870,33871,33873,33875,33875,33877,33978,33878,33880,33979,33881,33883,33885,33885,33887,33980,33888,33890,33892,33892,33894,33981,33898,33900,33902,33905,33907,33909,33910,33912,33914,33915,33917,33919,33922,33924,33926,33926,33928,33982,33983,33929,33931,33932,33934,33936,33939,33940,33942,33945,33947,33949,33949,33951,33953,33954,33956,33958,33984,33959,33961,33962,33964,33985,33965,33967,33968,33968,33970,33972,33973,33975,33986,33987,33852,33855,33858,33861,33863,33863,33867,33988,33988,33977,33870,33989,33871,33875,33875,33978,33878,33878,33979,33990,33991,33881,33885,33885,33980,33992,33993,33888,33892,33892,33981,33994,33995,33898,33902,33904,33905,33909,33914,33915,33919,33996,33922,33926,33926,33982,33997,33983,33931,33998,33998,33932,33936,33939,33942,33944,33999,33945,33949,33949,33953,34000,34001,33954,33958,33958,33984,33961,33965,33968,33972,33987,33855,33976,33858,33863,33988,33988,33870,34002,34003,33989,33875,33875,33878,33990,33991,33885,33992,33993,33892,33994,33902,33904,34004,33902,34004,33995,33904,33909,34005,33914,33919,33921,33996,33926,33997,33983,33998,33936,33937,33939,33944,33999,33949,34000,33958,33961,33962,33965,33972,34006,33986,33987,33976,34007,33858,33988,33988,34002,34008,34003,33875,33990,33991,33992,33993,33993,33994,34009,33904,34005,34010,34010,33995,34004,34010,34004,33904,33910,33914,33921,34011,33996,33997,33983,33936,34012,33937,33944,34013,34013,33999,34000,33965,34006,33973,33986,33976,34007,34007,33988,34008,34008,34003,33990,33993,34009,34014,33993,34014,33991,34015,33995,34010,34015,34010,34005,33995,34015,34016,33910,33921,34017,34017,34011,33997,33983,34012,33937,33937,34013,34000,34018,33965,33973,33973,33986,34007,34007,34008,33990,34019,33991,34014,34019,34014,34009,33991,34019,34020,34005,34021,34022,34022,34016,34015,34022,34015,34005,33910,34017,33997,33937,34000,34023,33937,34023,33983,34018,33973,34007,34007,33990,34024,34009,33895,34025,34025,34020,34019,34025,34019,34009,34021,33910,34026,34026,34016,34022,34026,34022,34021,33910,33997,34027,34028,33983,34023,34028,34023,34000,33983,34028,34029,34007,34024,34030,34007,34030,34018,33895,33897,34031,34031,34020,34025,34031,34025,33895,33910,34027,34032,34032,34016,34026,34032,34026,33910,34000,34033,34034,34034,34029,34028,34034,34028,34000,34035,34018,34030,34035,34030,34024,34018,34035,33985,34036,34020,34031,34036,34031,33897,34020,34036,34024,34037,34016,34032,34037,34032,34027,34016,34037,33897,34033,34038,34039,34039,34029,34034,34039,34034,34033,34040,33985,34035,34040,34035,34024,33985,34040,33962,34037,34041,34042,34037,34042,33897,34041,34037,34027,34038,34001,34043,34043,34029,34039,34043,34039,34038,34044,33962,34040,34044,34040,34024,33962,34044,33958,34045,33897,34042,34042,34041,34046,34042,34046,34045,33897,34045,34047,34047,34024,34036,34047,34036,33897,34001,33958,34048,34048,34029,34043,34048,34043,34001,34045,33958,34044,34044,34024,34047,34044,34047,34045,33958,34045,34046,34046,34041,34049,34046,34049,33958,34049,34029,34048,34049,34048,33958,34029,34049,34041,34050,34051,34052,34052,34053,34054,34054,34055,34056,34056,34057,34058,34058,34059,34060,34061,34062,34063,34063,34064,34065,34065,34066,34067,34068,34069,34070,34071,34072,34073,34073,34074,34075,34075,34076,34077,34077,34078,34079,34080,34081,34082,34082,34083,34084,34084,34085,34086,34087,34088,34089,34090,34091,34092,34092,34093,34094,34094,34095,34096,34097,34098,34099,34100,34101,34102,34102,34103,34104,34104,34105,34106,34107,34108,34109,34110,34111,34112,34112,34113,34114,34115,34116,34117,34117,34118,34119,34120,34121,34122,34122,34123,34124,34125,34126,34127,34127,34128,34129,34130,34131,34132,34132,34133,34134,34135,34136,34137,34137,34138,34139,34139,34140,34141,34141,34142,34143,34143,34144,34145,34145,34146,34147,34147,34148,34149,34150,34151,34152,34153,34154,34155,34156,34157,34158,34158,34159,34160,34160,34161,34162,34163,34164,34165,34165,34166,34167,34167,34168,34169,34169,34170,34171,34171,34172,34173,34174,34175,34176,34177,34178,34179,34179,34180,34181,34182,34183,34184,34184,34185,34186,34187,34188,34189,34189,34190,34191,34191,34192,34193,34194,34195,34196,34196,34197,34198,34198,34199,34200,34201,34202,34203,34203,34204,34205,34205,34206,34207,34208,34209,34210,34210,34211,34212,34212,34213,34214,34214,34215,34216,34217,34218,34219,34220,34221,34222,34223,34224,34225,34226,34227,34228,34228,34229,34230,34231,34232,34233,34234,34235,34236,34237,34238,34239,34239,34240,34241,34242,34243,34244,34245,34246,34247,34247,34248,34249,34250,34251,34252,34253,34254,34255,34255,34256,34257,34257,34258,34259,34259,34260,34261,34262,34263,34264,34265,34266,34267,34268,34269,34270,34271,34272,34273,34274,34275,34276,34277,34278,34279,34279,34280,34281,34281,34282,34283,34283,34284,34285,34285,34286,34287,34288,34289,34290,34290,34291,34292,34293,34294,34295,34295,34296,34297,34298,34299,34300,34300,34301,34302,34302,34303,34304,34304,34305,34306,34306,34307,34308,34309,34310,34311,34312,34313,34314,34314,34315,34316,34317,34318,34319,34320,34321,34322,34323,34324,34325,34326,34327,34328,34329,34330,34331,34331,34332,34333,34334,34335,34336,34337,34338,34339,34340,34341,34342,34342,34343,34344,34344,34345,34346,34346,34347,34348,34349,34350,34351,34352,34353,34354,34355,34356,34357,34358,34359,34360,34361,34362,34363,34363,34364,34365,34366,34367,34368,34369,34370,34371,34372,34050,34052,34054,34056,34058,34061,34063,34065,34065,34067,34373,34068,34070,34374,34071,34073,34075,34075,34077,34079,34080,34082,34084,34087,34089,34375,34092,34094,34096,34097,34099,34376,34100,34102,34104,34107,34109,34377,34378,34110,34112,34112,34114,34379,34115,34117,34119,34120,34122,34124,34380,34125,34127,34127,34129,34381,34130,34132,34134,34135,34137,34139,34143,34145,34147,34147,34149,34382,34152,34153,34155,34156,34158,34160,34160,34162,34383,34384,34163,34165,34165,34167,34169,34171,34173,34174,34174,34176,34385,34177,34179,34181,34182,34184,34186,34187,34189,34191,34191,34193,34386,34194,34196,34198,34201,34203,34205,34208,34210,34212,34212,34214,34216,34217,34219,34387,34220,34222,34223,34223,34225,34226,34226,34228,34230,34231,34233,34388,34389,34234,34236,34237,34239,34241,34245,34247,34249,34390,34250,34252,34253,34255,34257,34257,34259,34261,34265,34267,34391,34268,34270,34271,34271,34273,34274,34274,34276,34392,34392,34277,34279,34281,34283,34285,34285,34287,34288,34288,34290,34292,34293,34295,34297,34298,34300,34302,34304,34306,34308,34311,34312,34314,34314,34316,34393,34319,34320,34322,34326,34328,34329,34329,34331,34333,34334,34336,34394,34394,34337,34339,34340,34342,34344,34344,34346,34348,34352,34354,34395,34355,34357,34358,34366,34368,34396,34369,34371,34372,34372,34052,34054,34054,34058,34060,34397,34061,34065,34065,34373,34068,34071,34075,34079,34080,34084,34086,34398,34087,34375,34090,34092,34096,34097,34376,34399,34100,34104,34106,34107,34377,34400,34401,34378,34112,34115,34119,34120,34120,34124,34402,34380,34127,34381,34381,34130,34134,34135,34139,34141,34141,34143,34147,34147,34382,34150,34150,34152,34155,34156,34160,34383,34384,34165,34169,34171,34174,34385,34403,34177,34181,34181,34182,34186,34187,34191,34386,34404,34194,34198,34405,34201,34205,34207,34208,34212,34212,34216,34217,34223,34226,34230,34406,34231,34388,34389,34236,34237,34237,34241,34242,34245,34249,34407,34390,34252,34253,34253,34257,34261,34265,34391,34268,34268,34271,34274,34392,34279,34281,34281,34285,34288,34293,34297,34408,34409,34298,34302,34302,34304,34308,34311,34314,34393,34319,34322,34410,34326,34329,34333,34334,34394,34339,34339,34340,34344,34344,34348,34411,34355,34358,34360,34365,34366,34396,34369,34372,34054,34054,34060,34397,34397,34065,34068,34071,34079,34412,34412,34080,34086,34398,34375,34090,34090,34096,34413,34097,34399,34100,34100,34106,34107,34401,34112,34379,34379,34115,34120,34120,34402,34414,34414,34380,34381,34381,34134,34135,34135,34141,34147,34147,34150,34155,34156,34383,34415,34415,34384,34169,34403,34181,34186,34187,34386,34404,34404,34198,34200,34405,34205,34207,34207,34212,34217,34223,34230,34406,34406,34388,34389,34237,34242,34244,34244,34245,34407,34407,34390,34253,34253,34261,34262,34264,34265,34268,34268,34274,34392,34392,34281,34288,34416,34409,34302,34302,34308,34417,34309,34311,34393,34319,34410,34323,34326,34333,34418,34334,34339,34344,34344,34411,34349,34395,34355,34360,34419,34369,34054,34054,34397,34068,34071,34412,34086,34398,34090,34413,34100,34107,34400,34420,34401,34379,34120,34414,34381,34135,34147,34155,34156,34415,34169,34403,34186,34421,34187,34404,34200,34422,34405,34207,34207,34217,34387,34223,34406,34389,34389,34237,34244,34407,34253,34262,34264,34268,34392,34392,34288,34292,34416,34302,34417,34423,34309,34393,34319,34323,34325,34326,34418,34334,34334,34344,34349,34352,34395,34360,34396,34419,34054,34054,34068,34374,34071,34086,34424,34425,34398,34413,34097,34100,34400,34426,34420,34379,34120,34381,34135,34135,34155,34427,34156,34169,34171,34403,34421,34428,34187,34200,34429,34422,34207,34387,34223,34389,34244,34407,34262,34264,34264,34392,34292,34416,34417,34423,34423,34393,34317,34334,34349,34351,34352,34360,34430,34365,34396,34054,34054,34374,34071,34071,34424,34431,34425,34413,34097,34426,34379,34120,34135,34427,34432,34135,34432,34120,34427,34156,34171,34403,34428,34187,34187,34429,34433,34422,34387,34434,34223,34244,34407,34407,34264,34292,34423,34317,34319,34334,34351,34352,34363,34365,34054,34071,34431,34435,34071,34435,34054,34436,34425,34097,34400,34426,34120,34427,34171,34437,34437,34120,34432,34437,34432,34427,34187,34433,34438,34187,34438,34403,34422,34434,34220,34407,34292,34439,34407,34439,34223,34423,34319,34325,34361,34363,34054,34431,34440,34441,34441,34054,34435,34441,34435,34431,34097,34400,34442,34097,34442,34436,34443,34120,34437,34437,34171,34444,34437,34444,34443,34120,34443,34445,34120,34445,34400,34433,34422,34446,34446,34403,34438,34446,34438,34433,34422,34220,34223,34439,34293,34447,34439,34447,34223,34293,34439,34292,34361,34054,34441,34361,34441,34440,34448,34436,34442,34448,34442,34400,34436,34448,34449,34171,34385,34450,34450,34451,34452,34450,34452,34171,34443,34451,34453,34453,34400,34445,34453,34445,34443,34451,34443,34444,34444,34171,34452,34444,34452,34451,34422,34223,34454,34454,34403,34446,34454,34446,34422,34447,34408,34455,34447,34455,34223,34408,34447,34293,34430,34361,34440,34456,34449,34448,34456,34448,34400,34449,34456,34440,34385,34403,34457,34457,34458,34459,34457,34459,34385,34451,34458,34460,34460,34400,34453,34460,34453,34451,34458,34451,34450,34450,34385,34459,34450,34459,34458,34455,34461,34462,34455,34462,34223,34455,34408,34463,34455,34463,34461,34454,34461,34464,34454,34464,34403,34454,34223,34462,34454,34462,34461,34430,34440,34465,34430,34465,34352,34466,34400,34460,34466,34460,34458,34467,34458,34457,34467,34457,34403,34458,34467,34466,34400,34466,34468,34468,34440,34456,34468,34456,34400,34469,34461,34470,34469,34470,34416,34461,34469,34471,34464,34471,34472,34464,34472,34403,34471,34464,34461,34463,34416,34470,34463,34470,34461,34416,34463,34408,34473,34352,34465,34473,34465,34440,34352,34473,34334,34471,34423,34474,34474,34403,34472,34474,34472,34471,34423,34471,34469,34423,34469,34416,34475,34334,34473,34473,34440,34476,34473,34476,34475,34334,34475,34477,34334,34477,34326,34474,34325,34478,34474,34478,34403,34325,34474,34423,34477,34479,34480,34477,34480,34326,34479,34477,34475,34481,34475,34476,34481,34476,34440,34475,34481,34479,34482,34326,34480,34482,34480,34479,34326,34482,34325,34479,34466,34483,34483,34325,34482,34483,34482,34479,34468,34479,34481,34468,34481,34440,34479,34468,34466,34467,34478,34484,34467,34484,34466,34478,34467,34403,34478,34325,34483,34483,34466,34484,34483,34484,34478,34485,34486,34487,34487,34488,34489,34489,34490,34491,34491,34492,34493,34494,34495,34496,34496,34497,34498,34498,34499,34500,34500,34501,34502,34503,34504,34505,34505,34506,34507,34507,34508,34509,34510,34511,34512,34512,34513,34514,34514,34515,34516,34517,34518,34519,34520,34521,34522,34522,34523,34524,34525,34526,34527,34528,34529,34530,34531,34532,34533,34534,34535,34536,34537,34538,34539,34539,34540,34541,34542,34543,34544,34544,34545,34546,34547,34548,34549,34549,34550,34551,34552,34553,34554,34554,34555,34556,34556,34557,34558,34558,34559,34560,34561,34562,34563,34563,34564,34565,34485,34487,34489,34489,34491,34493,34494,34496,34498,34498,34500,34502,34502,34503,34505,34505,34507,34509,34510,34512,34514,34514,34516,34517,34517,34519,34520,34520,34522,34524,34525,34527,34528,34528,34530,34566,34531,34533,34567,34534,34536,34537,34537,34539,34541,34542,34544,34546,34547,34549,34551,34552,34554,34556,34556,34558,34560,34561,34563,34565,34485,34489,34493,34568,34494,34498,34498,34502,34505,34510,34514,34517,34517,34520,34524,34524,34525,34528,34528,34566,34569,34537,34541,34570,34542,34546,34571,34572,34547,34551,34551,34552,34556,34560,34561,34565,34573,34485,34493,34568,34498,34505,34509,34510,34517,34517,34524,34528,34528,34569,34574,34537,34570,34542,34572,34551,34556,34560,34565,34575,34573,34493,34568,34505,34509,34517,34517,34528,34574,34534,34537,34542,34576,34572,34556,34573,34568,34505,34517,34574,34577,34534,34542,34571,34576,34556,34560,34578,34573,34505,34517,34577,34531,34579,34534,34571,34571,34576,34560,34578,34505,34517,34517,34531,34567,34580,34579,34571,34571,34560,34575,34581,34578,34517,34517,34567,34582,34580,34571,34575,34583,34581,34517,34517,34582,34580,34580,34575,34584,34584,34583,34517,34517,34580,34584,34585,34586,34587,34587,34588,34589,34589,34590,34591,34592,34593,34594,34595,34596,34597,34597,34598,34599,34599,34600,34601,34602,34603,34604,34604,34605,34606,34606,34607,34608,34609,34610,34611,34611,34612,34613,34613,34614,34615,34616,34617,34618,34619,34620,34621,34621,34622,34623,34623,34624,34625,34626,34627,34628,34629,34630,34631,34631,34632,34633,34633,34634,34635,34636,34637,34638,34638,34639,34640,34585,34587,34589,34589,34591,34641,34642,34592,34594,34595,34597,34599,34602,34604,34606,34609,34611,34613,34616,34618,34619,34619,34621,34623,34626,34628,34643,34629,34631,34633,34633,34635,34644,34644,34636,34638,34638,34640,34645,34585,34589,34641,34642,34594,34646,34646,34595,34599,34601,34602,34606,34647,34609,34613,34648,34616,34619,34619,34623,34625,34626,34643,34629,34629,34633,34644,34644,34638,34645,34645,34585,34641,34599,34601,34606,34649,34647,34613,34648,34619,34625,34650,34626,34629,34629,34644,34645,34645,34641,34651,34599,34606,34608,34649,34613,34615,34652,34648,34625,34650,34629,34645,34645,34651,34642,34599,34608,34653,34654,34649,34615,34652,34625,34655,34656,34650,34645,34599,34653,34654,34654,34615,34657,34652,34655,34656,34656,34645,34642,34646,34599,34654,34654,34657,34658,34652,34656,34642,34642,34646,34654,34654,34658,34652,34652,34642,34654,34659,34660,34661,34661,34662,34663,34664,34665,34666,34666,34667,34668,34668,34669,34670,34670,34671,34672,34672,34673,34674,34674,34675,34676,34677,34678,34679,34680,34681,34682,34682,34683,34684,34685,34686,34659,34659,34661,34663,34664,34666,34668,34668,34670,34672,34672,34674,34676,34677,34679,34687,34687,34680,34682,34682,34684,34688,34685,34659,34663,34663,34664,34668,34668,34672,34676,34677,34687,34682,34682,34688,34685,34685,34663,34668,34668,34676,34677,34677,34682,34685,34685,34668,34677,34689,34690,34691,34691,34692,34693,34694,34695,34696,34697,34698,34699,34700,34701,34702,34703,34704,34705,34705,34706,34707,34707,34708,34709,34709,34710,34711,34712,34713,34714,34714,34715,34716,34716,34717,34718,34718,34719,34720,34720,34721,34722,34722,34723,34724,34724,34725,34726,34726,34727,34728,34728,34729,34730,34730,34731,34732,34733,34734,34735,34735,34736,34737,34737,34738,34739,34689,34691,34693,34693,34694,34696,34740,34703,34705,34705,34707,34709,34709,34711,34741,34712,34714,34716,34716,34718,34720,34720,34722,34724,34724,34726,34728,34728,34730,34732,34733,34735,34737,34742,34689,34693,34693,34696,34697,34740,34705,34709,34741,34712,34716,34716,34720,34724,34724,34728,34732,34743,34733,34737,34739,34742,34693,34693,34697,34699,34702,34740,34709,34741,34716,34724,34724,34732,34744,34743,34737,34739,34739,34693,34699,34700,34702,34709,34709,34741,34724,34724,34744,34743,34743,34739,34699,34699,34700,34709,34709,34724,34743,34743,34699,34709,34745,34746,34747,34748,34749,34750,34750,34751,34752,34752,34753,34754,34754,34755,34756,34756,34757,34758,34758,34759,34760,34760,34761,34762,34762,34763,34764,34764,34765,34766,34767,34768,34769,34769,34770,34771,34772,34773,34774,34775,34776,34777,34777,34778,34779,34779,34780,34781,34781,34745,34747,34748,34750,34752,34752,34754,34756,34756,34758,34760,34762,34764,34766,34767,34769,34771,34772,34774,34775,34775,34777,34779,34779,34781,34747,34748,34752,34756,34762,34766,34767,34767,34771,34772,34772,34775,34779,34779,34747,34748,34748,34756,34760,34760,34762,34767,34767,34772,34779,34779,34748,34760,34760,34767,34779,34782,34783,34784,34785,34786,34787,34787,34788,34789,34789,34790,34791,34792,34793,34794,34794,34795,34796,34796,34797,34798,34799,34800,34782,34782,34784,34785,34785,34787,34789,34801,34792,34794,34794,34796,34798,34799,34782,34785,34785,34789,34791,34791,34801,34794,34794,34798,34799,34799,34785,34791,34791,34794,34799,34802,34803,34804,34804,34805,34806,34806,34807,34808,34808,34809,34810,34810,34811,34812,34812,34813,34814,34814,34815,34816,34816,34817,34818,34818,34819,34820,34821,34802,34804,34804,34806,34808,34808,34810,34812,34812,34814,34816,34816,34818,34820,34822,34821,34804,34804,34808,34812,34812,34816,34820,34820,34822,34804,34804,34812,34820,34823,34824,34825,34825,34826,34827,34827,34828,34829,34830,34831,34832,34833,34834,34835,34836,34837,34838,34839,34840,34841,34841,34842,34843,34843,34844,34845,34845,34846,34847,34848,34849,34850,34850,34851,34852,34853,34854,34855,34856,34857,34858,34859,34860,34861,34862,34863,34864,34864,34865,34866,34866,34867,34868,34869,34870,34871,34872,34873,34874,34875,34876,34877,34877,34878,34879,34879,34880,34881,34882,34883,34884,34884,34885,34886,34887,34888,34889,34889,34890,34891,34891,34892,34893,34893,34894,34895,34895,34896,34897,34898,34899,34900,34900,34901,34902,34903,34904,34905,34905,34906,34907,34907,34908,34909,34909,34910,34911,34912,34913,34914,34915,34916,34917,34917,34918,34919,34919,34920,34921,34921,34922,34923,34924,34925,34926,34926,34927,34928,34929,34930,34931,34932,34933,34934,34935,34936,34937,34937,34938,34939,34940,34941,34942,34943,34944,34945,34945,34946,34947,34948,34949,34950,34950,34951,34952,34952,34953,34954,34954,34955,34956,34957,34958,34959,34959,34960,34961,34961,34962,34963,34964,34965,34966,34966,34967,34968,34969,34970,34971,34972,34973,34974,34975,34976,34977,34977,34978,34979,34979,34980,34981,34982,34983,34984,34984,34985,34986,34987,34988,34989,34990,34991,34992,34992,34993,34994,34995,34996,34997,34997,34998,34999,34999,35000,35001,35002,35003,35004,35004,35005,35006,35007,35008,35009,35010,35011,35012,35013,35014,35015,35015,35016,35017,35018,35019,35020,35021,35022,35023,35023,35024,35025,35025,35026,35027,35028,35029,35030,35030,35031,35032,35032,35033,35034,35035,35036,35037,35038,35039,35040,35041,35042,35043,35043,35044,35045,35045,35046,35047,35047,35048,35049,35050,35051,35052,35052,35053,35054,35054,35055,35056,35057,35058,35059,35060,35061,35062,35062,35063,35064,35065,35066,35067,35067,35068,35069,35070,35071,35072,35072,35073,35074,35074,35075,35076,35076,35077,35078,35079,35080,35081,35082,35083,35084,35084,35085,35086,35087,35088,35089,35089,35090,35091,35092,35093,35094,35094,35095,35096,35097,35098,35099,35099,35100,35101,35102,35103,35104,35105,35106,35107,35107,35108,35109,35110,35111,35112,35112,35113,35114,35115,35116,35117,35117,35118,35119,35119,35120,35121,35121,35122,35123,35123,35124,35125,35126,34823,34825,34825,34827,34829,34830,34832,35127,34833,34835,35128,34836,34838,35129,35129,34839,34841,34841,34843,34845,34848,34850,34852,34853,34855,35130,34856,34858,35131,34859,34861,35132,34862,34864,34866,34872,34874,35133,34875,34877,34879,35134,34882,34884,34884,34886,35135,34887,34889,34891,34891,34893,34895,34898,34900,34902,34903,34905,34907,34907,34909,34911,34912,34914,34915,34915,34917,34919,34919,34921,34923,34924,34926,34928,34928,34929,34931,34932,34934,35136,34935,34937,34939,34939,34940,34942,34943,34945,34947,35137,34948,34950,34950,34952,34954,34954,34956,35138,34957,34959,34961,34961,34963,34964,34964,34966,34968,34969,34971,34972,34972,34974,35139,35140,34975,34977,34977,34979,34981,34982,34984,34986,34987,34989,34990,34990,34992,34994,34995,34997,34999,34999,35001,35141,35142,35002,35004,35004,35006,35143,35143,35007,35009,35009,35010,35012,35015,35017,35144,35021,35023,35025,35028,35030,35032,35032,35034,35035,35035,35037,35145,35038,35040,35041,35041,35043,35045,35045,35047,35049,35050,35052,35054,35057,35059,35146,35062,35064,35065,35065,35067,35069,35069,35070,35072,35072,35074,35076,35078,35079,35081,35082,35084,35086,35087,35089,35091,35092,35094,35096,35097,35099,35101,35101,35102,35104,35105,35107,35109,35112,35114,35115,35119,35121,35123,35123,35125,35126,34825,34829,34830,34830,35127,35147,35148,34833,35128,35128,34836,35129,35129,34841,34845,35149,34848,34852,34853,35130,34856,35150,34859,35132,35151,34862,34866,35133,34875,34879,35134,34884,35135,35152,34887,34891,34891,34895,34897,34898,34902,35153,34903,34907,34911,34915,34919,34923,34924,34928,34931,35154,34932,35136,35155,34935,34939,34939,34942,34943,34943,34947,35156,35137,34950,34954,34954,35138,35157,34957,34961,34964,34964,34968,35158,34972,35139,35159,35140,34977,34981,34981,34982,34986,35160,34987,34990,34990,34994,35161,34995,34999,35141,35142,35004,35143,35009,35012,35013,35015,35144,35018,35020,35021,35025,35032,35035,35145,35041,35045,35049,35162,35050,35054,35056,35057,35146,35062,35065,35069,35072,35076,35078,35078,35081,35163,35163,35082,35086,35164,35087,35091,35092,35096,35097,35097,35101,35104,35105,35109,35110,35112,35115,35117,35119,35123,35126,34825,34830,35147,35147,35148,35128,35128,35129,34845,35149,34852,35165,35150,35132,35151,35151,34866,34868,35133,34879,34881,34881,35134,35135,35152,34891,34897,34898,35153,35166,35167,34903,34911,34915,34923,34924,34924,34931,35168,35154,35136,35155,34939,34943,35156,35137,34954,35157,35169,34957,34964,34964,35158,34969,35140,34981,34986,35160,34990,35161,34995,35141,35170,35142,35143,35009,35015,35018,35020,35020,35025,35027,35028,35032,35145,35038,35041,35049,35162,35054,35056,35060,35062,35069,35072,35078,35163,35163,35086,35164,35164,35091,35092,35097,35104,35171,35097,35171,35092,35105,35110,35112,35112,35117,35119,35119,35126,34825,35128,34845,35172,35128,35172,35147,35149,35165,34853,35150,35151,34868,35133,34881,35135,35135,35152,34897,34897,34898,35166,35166,35167,34911,34915,34924,35168,34939,35156,35137,35137,35157,35173,35169,34964,34969,35140,34986,35160,35160,35161,34995,34995,35170,35174,35142,35009,35013,35020,35027,35028,35028,35145,35038,35049,35162,35056,35175,35060,35069,35163,35164,35092,35104,35176,35177,35177,35092,35171,35177,35171,35104,35176,35105,35112,35119,34825,35178,35119,35178,35112,35179,35147,35172,35179,35172,34845,35147,35179,34825,35149,34853,34856,35180,35150,34868,34872,35133,35135,34897,35166,35181,34897,35181,35135,35166,34911,34912,34939,35137,35173,35182,35169,34969,35140,35160,34995,34995,35174,35142,35028,35038,35049,35049,35056,35146,35175,35069,35072,35163,35092,35177,35163,35177,35176,35183,35112,35178,35183,35178,34825,35112,35183,35176,35179,34847,35184,35179,35184,34825,34847,35179,34845,35149,34856,35131,35180,34868,34869,35185,34872,35135,35166,34912,35186,35186,35135,35181,35186,35181,35166,34939,35173,35182,35182,34969,34972,34995,35142,35187,34995,35187,35140,35049,35146,35175,35175,35072,35163,35188,35176,35183,35183,34825,35189,35183,35189,35188,35176,35188,35190,35176,35190,35163,35184,35191,35192,35184,35192,34825,35191,35184,34847,34915,35135,35186,34915,35186,34912,34939,35182,34972,35142,35013,35193,35193,35140,35187,35193,35187,35142,35049,35175,35163,35194,35192,35195,35194,35195,35196,35192,35194,34825,35192,35191,35197,35197,35196,35195,35197,35195,35192,35188,35196,35198,35198,35163,35190,35198,35190,35188,35194,35188,35189,35194,35189,34825,35188,35194,35196,35135,34915,35168,35155,34939,34972,35049,35163,35199,35049,35199,35028,35200,35196,35201,35200,35201,35149,35196,35200,35202,35198,35202,35203,35198,35203,35163,35202,35198,35196,35197,35149,35201,35197,35201,35196,35149,35197,35191,35185,35135,35168,35155,34972,35159,35203,35028,35199,35203,35199,35163,35028,35203,35202,35204,35202,35200,35204,35200,35149,35202,35204,35028,34871,35185,35168,35155,35159,35205,35020,35028,35204,35204,35149,35206,35204,35206,35020,34869,34871,35168,35155,35205,35207,35015,35020,35206,35206,35149,35208,35206,35208,35015,34869,35168,35154,35155,35207,35140,35013,35015,35208,35208,35149,35209,35208,35209,35013,34869,35154,35155,35209,35131,35210,35209,35210,35013,35131,35209,35149,35180,34869,35155,35131,35211,35212,35212,35013,35210,35212,35210,35131,35180,35155,35140,35211,35213,35214,35214,35013,35212,35214,35212,35211,35215,35180,35140,35213,35216,35217,35217,35013,35214,35217,35214,35213,35216,35215,35140,35216,35140,35193,35193,35013,35217,35193,35217,35216,35218,35219,35220,35220,35221,35222,35222,35223,35224,35224,35225,35226,35226,35227,35218,35218,35220,35222,35222,35224,35226,35226,35218,35222,35228,35229,35230,35231,35232,35233,35233,35234,35235,35235,35236,35237,35237,35238,35239,35239,35240,35228,35228,35230,35231,35231,35233,35235,35235,35237,35239,35239,35228,35231,35231,35235,35239,35241,35242,35243,35243,35244,35245,35246,35247,35248,35248,35249,35250,35250,35251,35252,35252,35253,35254,35254,35241,35243,35243,35245,35246,35246,35248,35250,35250,35252,35254,35254,35243,35246,35246,35250,35254,35255,35256,35257,35257,35258,35259,35259,35260,35261,35261,35262,35263,35264,35265,35255,35257,35259,35261,35261,35263,35266,35264,35255,35257,35257,35261,35266,35266,35264,35257,35267,35268,35269,35269,35270,35271,35272,35273,35274,35275,35276,35277,35277,35278,35279,35279,35280,35281,35282,35267,35269,35283,35272,35274,35275,35277,35279,35279,35281,35282,35282,35269,35271,35271,35283,35274,35274,35275,35279,35279,35282,35271,35271,35274,35279,35284,35285,35286,35286,35287,35288,35288,35289,35290,35290,35291,35292,35293,35294,35295,35295,35284,35286,35286,35288,35290,35293,35295,35286,35286,35290,35292,35296,35293,35286,35286,35292,35296,35297,35298,35299,35299,35300,35301,35301,35302,35303,35303,35297,35299,35299,35301,35303,35304,35305,35306,35306,35307,35308,35308,35309,35310,35310,35311,35304,35304,35306,35308,35308,35310,35304,35312,35313,35314,35314,35315,35316,35316,35317,35318,35318,35319,35320,35320,35321,35322,35322,35323,35312,35312,35314,35316,35316,35318,35320,35320,35322,35312,35312,35316,35320,35324,35325,35326,35326,35327,35328,35328,35329,35330,35330,35331,35332,35333,35334,35335,35335,35336,35337,35337,35338,35339,35339,35340,35341,35341,35342,35343,35343,35324,35326,35326,35328,35330,35330,35332,35344,35335,35337,35339,35339,35341,35343,35343,35326,35330,35333,35335,35339,35343,35330,35344,35344,35333,35339,35339,35343,35344,35345,35346,35347,35347,35348,35349,35349,35350,35351,35351,35352,35353,35353,35354,35355,35355,35356,35357,35358,35359,35360,35361,35362,35363,35347,35349,35351,35351,35353,35355,35355,35357,35358,35358,35360,35361,35345,35347,35351,35351,35355,35358,35358,35361,35363,35363,35345,35351,35351,35358,35363,35364,35365,35366,35366,35367,35368,35368,35369,35370,35371,35372,35373,35373,35374,35375,35376,35377,35364,35366,35368,35370,35370,35371,35373,35373,35375,35376,35376,35364,35366,35366,35370,35373,35373,35376,35366,35378,35379,35380,35380,35381,35382,35382,35383,35384,35384,35385,35378,35378,35380,35382,35382,35384,35378,35386,35387,35388,35388,35389,35390,35390,35391,35392,35392,35393,35394,35394,35395,35396,35396,35386,35388,35388,35390,35392,35392,35394,35396,35396,35388,35392,35397,35398,35399,35399,35400,35401,35401,35402,35403,35403,35404,35405,35405,35406,35407,35407,35408,35409,35410,35411,35412,35412,35413,35414,35414,35397,35399,35399,35401,35403,35403,35405,35407,35407,35409,35415,35410,35412,35414,35414,35399,35403,35403,35407,35415,35415,35410,35414,35414,35403,35415,35416,35417,35418,35419,35420,35421,35421,35422,35423,35423,35424,35416,35416,35418,35419,35419,35421,35423,35423,35416,35419,35425,35426,35427,35428,35429,35430,35430,35431,35432,35432,35433,35425,35425,35427,35428,35428,35430,35432,35432,35425,35428,35434,35435,35436,35436,35437,35438,35438,35439,35440,35441,35442,35443,35443,35444,35445,35445,35446,35447,35447,35448,35449,35450,35451,35452,35452,35453,35454,35454,35455,35456,35456,35457,35458,35459,35434,35436,35438,35440,35441,35441,35443,35445,35445,35447,35449,35449,35450,35452,35452,35454,35456,35459,35436,35438,35438,35441,35445,35449,35452,35456,35458,35459,35438,35438,35445,35449,35449,35456,35458,35458,35438,35449,35460,35461,35462,35462,35463,35464,35464,35465,35466,35467,35468,35469,35469,35460,35462,35462,35464,35466,35467,35469,35462,35462,35466,35467,35470,35471,35472,35472,35473,35474,35474,35475,35476,35477,35478,35479,35480,35470,35472,35472,35474,35476,35477,35479,35480,35472,35476,35477,35477,35480,35472,35481,35482,35483,35484,35485,35486,35486,35487,35488,35488,35489,35490,35490,35491,35492,35492,35493,35494,35495,35496,35497,35497,35481,35483,35484,35486,35488,35488,35490,35492,35492,35494,35498,35499,35495,35497,35497,35483,35484,35484,35488,35492,35499,35497,35484,35484,35492,35498,35498,35499,35484,35500,35501,35502,35502,35503,35504,35504,35505,35506,35506,35507,35508,35508,35509,35510,35511,35512,35513,35513,35500,35502,35502,35504,35506,35506,35508,35510,35514,35511,35513,35506,35510,35514,35514,35513,35502,35502,35506,35514,35515,35516,35517,35518,35519,35520,35520,35521,35522,35523,35524,35515,35515,35517,35518,35518,35520,35522,35525,35523,35515,35518,35522,35525,35525,35515,35518,35526,35527,35528,35528,35529,35530,35531,35532,35533,35533,35526,35528,35528,35530,35531,35531,35533,35528,35534,35535,35536,35536,35537,35538,35538,35539,35540,35540,35541,35542,35542,35534,35536,35536,35538,35540,35540,35542,35536,35543,35544,35545,35545,35546,35547,35547,35548,35549,35543,35545,35547,35547,35549,35543,35550,35551,35552,35553,35554,35555,35555,35556,35557,35557,35558,35559,35559,35560,35561,35562,35563,35564,35565,35566,35567,35550,35552,35553,35553,35555,35557,35557,35559,35561,35562,35564,35568,35565,35567,35550,35550,35553,35557,35557,35561,35569,35569,35562,35568,35565,35550,35557,35557,35569,35568,35568,35565,35557,35570,35571,35572,35572,35573,35574,35574,35575,35576,35576,35577,35570,35570,35572,35574,35574,35576,35570,35578,35579,35580,35580,35581,35582,35582,35583,35584,35584,35585,35586,35587,35588,35589,35578,35580,35582,35582,35584,35586,35590,35587,35589,35591,35578,35582,35582,35586,35590,35590,35589,35591,35591,35582,35590,35592,35593,35594,35594,35595,35596,35596,35597,35598,35599,35600,35601,35601,35592,35594,35594,35596,35598,35599,35601,35594,35594,35598,35599,35602,35603,35604,35605,35606,35607,35607,35608,35609,35610,35611,35612,35613,35602,35604,35605,35607,35609,35609,35610,35612,35612,35613,35604,35604,35605,35609,35609,35612,35604,35614,35615,35616,35616,35617,35618,35618,35619,35620,35620,35621,35622,35623,35624,35625,35625,35626,35614,35614,35616,35618,35618,35620,35622,35623,35625,35614,35614,35618,35622,35622,35623,35614,35627,35628,35629,35629,35630,35631,35632,35633,35634,35635,35636,35637,35638,35639,35640,35640,35641,35642,35642,35643,35644,35645,35646,35627,35627,35629,35631,35632,35634,35635,35635,35637,35638,35638,35640,35642,35645,35627,35631,35632,35635,35638,35638,35642,35644,35644,35645,35631,35631,35632,35638,35638,35644,35631,35647,35648,35649,35649,35650,35651,35651,35652,35653,35653,35654,35655,35655,35656,35657,35657,35658,35659,35659,35647,35649,35649,35651,35653,35655,35657,35659,35659,35649,35653,35653,35655,35659,35660,35661,35662,35663,35664,35665,35665,35666,35667,35667,35668,35669,35670,35671,35672,35672,35673,35674,35674,35675,35676,35677,35678,35679,35679,35680,35681,35681,35682,35683,35683,35684,35685,35686,35660,35662,35662,35663,35665,35665,35667,35669,35670,35672,35674,35677,35679,35681,35681,35683,35685,35686,35662,35665,35665,35669,35687,35688,35670,35674,35676,35677,35681,35681,35685,35689,35665,35687,35688,35688,35674,35676,35676,35681,35689,35686,35665,35688,35688,35676,35689,35689,35686,35688,35690,35691,35692,35692,35693,35694,35694,35695,35696,35697,35698,35690,35690,35692,35694,35694,35696,35699,35700,35697,35690,35690,35694,35699,35699,35700,35690,35701,35702,35703,35703,35704,35705,35705,35706,35707,35707,35708,35709,35709,35710,35701,35701,35703,35705,35705,35707,35709,35709,35701,35705,35711,35712,35713,35713,35714,35715,35715,35716,35717,35717,35718,35719,35719,35720,35721,35721,35711,35713,35713,35715,35717,35717,35719,35721,35721,35713,35717,35722,35723,35724,35724,35725,35726,35727,35728,35729,35730,35731,35732,35732,35733,35734,35734,35735,35736,35737,35738,35722,35722,35724,35726,35727,35729,35730,35730,35732,35734,35734,35736,35737,35737,35722,35726,35726,35727,35730,35730,35734,35737,35737,35726,35730,35739,35740,35741,35741,35742,35743,35743,35744,35745,35746,35747,35748,35749,35750,35751,35752,35753,35754,35754,35755,35739,35739,35741,35743,35743,35745,35746,35746,35748,35749,35752,35754,35739,35739,35743,35746,35746,35749,35751,35751,35752,35739,35739,35746,35751,35756,35757,35758,35758,35759,35760,35760,35761,35762,35763,35764,35765,35765,35766,35767,35768,35769,35770,35770,35771,35756,35756,35758,35760,35762,35763,35765,35765,35767,35768,35768,35770,35756,35756,35760,35762,35762,35765,35768,35768,35756,35762,35772,35773,35774,35774,35775,35776,35777,35778,35779,35779,35780,35781,35781,35782,35783,35784,35785,35786,35786,35787,35788,35788,35789,35790,35791,35792,35793,35793,35794,35795,35796,35797,35772,35772,35774,35776,35777,35779,35781,35784,35786,35788,35788,35790,35791,35791,35793,35795,35796,35772,35776,35798,35777,35781,35784,35788,35791,35791,35795,35799,35799,35796,35776,35798,35781,35783,35783,35784,35791,35791,35799,35776,35798,35783,35791,35791,35776,35798,35800,35801,35802,35802,35803,35804,35805,35806,35807,35807,35800,35802,35802,35804,35805,35805,35807,35802,35808,35809,35810,35810,35811,35812,35812,35808,35810,35813,35814,35815,35815,35816,35817,35817,35818,35819,35819,35813,35815,35815,35817,35819,35820,35821,35822,35822,35823,35824,35824,35825,35820,35820,35822,35824,35826,35827,35828,35829,35830,35831,35831,35832,35833,35833,35826,35828,35829,35831,35833,35833,35828,35829,35834,35835,35836,35836,35837,35838,35838,35839,35840,35840,35841,35834,35834,35836,35838,35838,35840,35834,35842,35843,35844,35844,35845,35846,35846,35847,35842,35842,35844,35846,35848,35849,35850,35850,35851,35852,35853,35854,35855,35855,35856,35857,35858,35859,35848,35848,35850,35852,35853,35855,35857,35857,35858,35848,35848,35852,35860,35860,35853,35857,35857,35848,35860,35861,35862,35863,35863,35864,35865,35865,35861,35863,35866,35867,35868,35868,35869,35870,35870,35866,35868,35871,35872,35873,35873,35874,35875,35875,35876,35877,35877,35871,35873,35873,35875,35877,35878,35879,35880,35880,35881,35882,35882,35883,35884,35884,35885,35878,35878,35880,35882,35882,35884,35878,35886,35887,35888,35888,35889,35890,35890,35891,35892,35892,35886,35888,35888,35890,35892,35893,35894,35895,35895,35896,35897,35897,35898,35899,35899,35893,35895,35895,35897,35899,35900,35901,35902,35902,35903,35904,35904,35905,35906,35906,35907,35900,35900,35902,35904,35904,35906,35900,35908,35909,35910,35910,35911,35912,35912,35913,35914,35915,35908,35910,35910,35912,35914,35914,35915,35910,35916,35917,35918,35918,35919,35920,35920,35921,35922,35922,35923,35916,35916,35918,35920,35920,35922,35916,35924,35925,35926,35927,35928,35929,35929,35930,35931,35931,35924,35926,35932,35927,35929,35931,35926,35932,35932,35929,35931,35933,35934,35935,35935,35936,35937,35937,35938,35939,35939,35940,35941,35941,35933,35935,35935,35937,35939,35939,35941,35935,35942,35943,35944,35944,35945,35946,35946,35942,35944,35947,35948,35949,35949,35950,35951,35951,35952,35947,35947,35949,35951,35953,35954,35955,35956,35957,35958,35958,35959,35960,35961,35962,35963,35963,35964,35965,35965,35966,35967,35967,35968,35953,35956,35958,35960,35961,35963,35965,35965,35967,35953,35955,35956,35960,35969,35961,35965,35965,35953,35955,35955,35960,35969,35969,35965,35955,35970,35971,35972,35972,35973,35974,35974,35975,35976,35976,35977,35978,35978,35970,35972,35972,35974,35976,35976,35978,35972,35979,35980,35981,35981,35982,35983,35983,35984,35985,35985,35979,35981,35981,35983,35985,35986,35987,35988,35988,35989,35990,35990,35991,35992,35992,35986,35988,35988,35990,35992,35993,35994,35995,35995,35996,35997,35997,35998,35999,35999,35993,35995,35995,35997,35999,36000,36001,36002,36002,36003,36004,36005,36000,36002,36002,36004,36005,36006,36007,36008,36008,36009,36010,36010,36011,36012,36012,36006,36008,36008,36010,36012,36013,36014,36015,36016,36017,36018,36018,36013,36015,36015,36016,36018,36019,36020,36021,36021,36022,36023,36023,36024,36025,36026,36027,36019,36019,36021,36023,36023,36025,36026,36026,36019,36023,36028,36029,36030,36030,36031,36032,36032,36028,36030,36033,36034,36035,36035,36036,36037,36037,36038,36039,36039,36033,36035,36035,36037,36039,36040,36041,36042,36042,36043,36044,36044,36045,36046,36046,36040,36042,36042,36044,36046,36047,36048,36049,36049,36050,36051,36051,36052,36047,36047,36049,36051,36053,36054,36055,36056,36057,36058,36058,36059,36060,36061,36062,36063,36064,36065,36066,36066,36053,36055,36058,36060,36061,36061,36063,36064,36066,36055,36067,36056,36058,36061,36061,36064,36066,36066,36067,36056,36056,36061,36066,36068,36069,36070,36070,36071,36072,36072,36073,36074,36074,36075,36076,36076,36068,36070,36070,36072,36074,36074,36076,36070,36077,36078,36079,36079,36080,36081,36082,36077,36079,36079,36081,36082,36083,36084,36085,36085,36086,36087,36087,36088,36089,36089,36083,36085,36085,36087,36089,36090,36091,36092,36092,36093,36094,36094,36095,36096,36096,36097,36090,36090,36092,36094,36094,36096,36090,36098,36099,36100,36100,36101,36102,36102,36103,36104,36104,36098,36100,36100,36102,36104,36105,36106,36107,36108,36109,36110,36110,36111,36112,36112,36113,36105,36105,36107,36108,36108,36110,36112,36112,36105,36108,36114,36115,36116,36116,36117,36118,36118,36114,36116,36119,36120,36121,36121,36122,36123,36123,36124,36119,36119,36121,36123,36125,36126,36127,36127,36128,36129,36129,36130,36131,36131,36132,36125,36125,36127,36129,36129,36131,36125,36133,36134,36135,36135,36136,36137,36137,36138,36139,36139,36133,36135,36135,36137,36139,36140,36141,36142,36142,36143,36144,36144,36145,36146,36146,36147,36140,36142,36144,36146,36146,36140,36142,36148,36149,36150,36150,36151,36152,36152,36153,36154,36154,36155,36156,36156,36148,36150,36150,36152,36154,36154,36156,36150,36157,36158,36159,36159,36160,36161,36161,36162,36163,36163,36157,36159,36159,36161,36163,36164,36165,36166,36166,36167,36168,36168,36169,36170,36170,36171,36164,36166,36168,36170,36170,36164,36166,36172,36173,36174,36174,36175,36176,36176,36177,36178,36178,36179,36180,36180,36172,36174,36174,36176,36178,36178,36180,36174,36181,36182,36183,36183,36184,36185,36185,36186,36181,36181,36183,36185,36187,36188,36189,36189,36190,36191,36191,36192,36193,36193,36194,36187,36187,36189,36191,36191,36193,36187,36195,36196,36197,36197,36198,36199,36199,36195,36197,36200,36201,36202,36202,36203,36204,36204,36205,36200,36200,36202,36204,36206,36207,36208,36208,36209,36210,36210,36211,36212,36212,36213,36214,36206,36208,36210,36210,36212,36214,36215,36206,36210,36210,36214,36215,36216,36217,36218,36219,36220,36221,36222,36223,36224,36225,36226,36227,36227,36228,36229,36230,36231,36232,36233,36234,36235,36236,36237,36238,36238,36239,36240,36241,36242,36243,36244,36245,36246,36246,36247,36248,36249,36250,36251,36251,36252,36253,36253,36254,36255,36256,36257,36258,36258,36259,36260,36260,36261,36262,36262,36263,36264,36265,36266,36267,36268,36269,36270,36270,36271,36272,36273,36274,36275,36275,36276,36277,36277,36278,36279,36279,36280,36281,36282,36283,36284,36284,36285,36286,36287,36288,36289,36290,36291,36292,36292,36293,36294,36294,36295,36296,36297,36298,36299,36300,36301,36302,36302,36303,36304,36305,36306,36307,36308,36309,36310,36310,36311,36312,36313,36314,36315,36315,36316,36317,36317,36216,36218,36219,36221,36222,36222,36224,36318,36225,36227,36229,36233,36235,36236,36238,36240,36241,36241,36243,36319,36244,36246,36248,36249,36251,36253,36256,36258,36260,36260,36262,36264,36264,36265,36267,36268,36270,36272,36273,36275,36277,36277,36279,36281,36282,36284,36286,36287,36289,36320,36290,36292,36294,36294,36296,36321,36300,36302,36304,36304,36305,36307,36308,36310,36312,36313,36315,36317,36317,36218,36322,36323,36219,36222,36222,36318,36225,36225,36229,36230,36324,36233,36236,36238,36241,36319,36319,36244,36248,36248,36249,36253,36255,36256,36260,36260,36264,36267,36268,36272,36273,36273,36277,36281,36325,36282,36286,36326,36290,36294,36300,36304,36307,36307,36308,36312,36313,36317,36322,36323,36222,36225,36225,36230,36232,36324,36236,36238,36238,36319,36248,36253,36255,36260,36260,36267,36327,36273,36281,36328,36273,36328,36268,36281,36325,36286,36326,36294,36321,36329,36300,36307,36307,36312,36330,36330,36313,36322,36225,36232,36331,36225,36331,36323,36232,36324,36238,36248,36253,36332,36248,36332,36238,36253,36260,36327,36281,36286,36333,36333,36268,36328,36333,36328,36281,36334,36326,36321,36329,36307,36330,36330,36322,36323,36232,36238,36335,36335,36323,36331,36335,36331,36232,36327,36238,36332,36327,36332,36253,36333,36287,36336,36333,36336,36268,36287,36333,36286,36337,36334,36321,36329,36330,36323,36238,36327,36338,36338,36323,36335,36338,36335,36238,36336,36320,36339,36336,36339,36268,36320,36336,36287,36337,36321,36340,36299,36329,36323,36338,36268,36341,36338,36341,36323,36268,36338,36327,36320,36337,36342,36342,36268,36339,36342,36339,36320,36297,36299,36323,36337,36340,36343,36343,36268,36342,36343,36342,36337,36297,36323,36341,36341,36268,36344,36341,36344,36297,36340,36297,36344,36344,36268,36343,36344,36343,36340,34391,34267,36345,36346,36347,36348,36349,36350,36351,36351,36352,36353,36353,36354,36355,36356,36357,36358,36358,36359,36360,36360,36361,36362,36362,36363,36364,36364,36365,36366,36366,36367,36368,36369,36370,36371,36371,36372,36373,36373,36374,36375,36375,36376,36377,36378,36379,36380,36380,36381,36382,36383,36384,36385,36385,36386,36387,36387,36388,36389,36389,36390,36391,36391,36392,36393,36394,36395,36396,36396,36397,36398,36399,36400,36401,36401,36402,36403,36403,36404,36405,36406,36407,36408,36409,36410,36411,36412,36413,36414,36414,36415,36416,36416,36417,36418,36419,36420,36421,36422,36423,36424,36425,36426,36427,36427,36428,36429,36429,36430,36431,36432,36433,36434,36435,36436,36437,36438,36439,36440,36441,36442,36443,36443,36444,36445,36446,36447,36448,36448,36449,36450,36451,36452,36453,36453,36454,36455,36456,36457,36458,36458,36459,36460,36460,36461,36462,36463,36464,36465,36465,36466,36467,36468,36469,36470,36471,36472,36473,36473,36474,36475,36476,36477,36478,36479,36480,36481,36482,34051,34050,34050,34372,34371,34370,34369,34419,34419,34396,34368,34367,34366,34365,34364,34363,34362,34362,34361,34430,34430,34360,34359,34359,34358,34357,34356,34355,34395,34353,34352,34351,34350,34349,34411,34411,34348,34347,34341,34340,34339,34338,34337,34394,34394,34336,34335,34335,34334,34418,34418,34333,34332,34330,34329,34328,34327,34326,34325,34324,34323,34410,34321,34320,34319,34318,34317,34393,34313,34312,34311,34310,34309,34423,34423,34417,34308,34305,34304,34303,34299,34298,34409,34409,34416,34408,34408,34297,34296,34294,34293,34292,34291,34290,34289,34289,34288,34287,34286,34285,34284,34282,34281,34280,34278,34277,34392,34275,34274,34273,34272,34271,34270,34269,34268,34391,34391,36345,36483,36346,36348,36484,36349,36351,36353,36353,36355,36485,36356,36358,36360,36360,36362,36364,36364,36366,36368,36371,36373,36375,36375,36377,36486,36378,36380,36382,36383,36385,36387,36387,36389,36391,36391,36393,36487,36394,36396,36398,36399,36401,36403,36406,36408,36409,36412,36414,36416,36419,36421,36488,36425,36427,36429,36429,36431,36489,36489,36432,36434,36490,36435,36437,36491,36438,36440,36441,36443,36445,36446,36448,36450,36451,36453,36455,36456,36458,36460,36492,36463,36465,36465,36467,36493,36468,36470,36494,36494,36471,36473,36473,36475,36495,36476,36478,36496,36479,36481,36497,36498,36482,34050,34050,34371,34370,34370,34419,34368,34367,34365,34364,34364,34362,34430,34356,34395,34354,34354,34353,34351,34350,34411,34347,34341,34339,34338,34338,34394,34335,34335,34418,34332,34330,34328,34327,34327,34325,34324,34324,34410,34322,34321,34319,34318,34318,34393,34316,34313,34311,34310,34310,34423,34308,34305,34303,34302,34299,34409,34408,34294,34292,34291,34283,34282,34280,34278,34392,34276,34276,34275,34273,34269,34391,36483,36346,36484,36349,36349,36353,36485,36499,36356,36360,36360,36364,36368,36371,36375,36486,36500,36378,36382,36383,36387,36391,36501,36394,36398,36502,36399,36403,36405,36406,36409,36503,36412,36416,36504,36419,36488,36505,36425,36429,36429,36489,36434,36506,36491,36440,36441,36445,36446,36446,36450,36507,36508,36451,36455,36509,36456,36460,36492,36465,36493,36494,36473,36495,36476,36496,36479,36479,36497,36510,36511,36498,34050,34370,34368,34367,34367,34364,34430,34356,34354,34351,34351,34350,34347,34342,34341,34338,34338,34335,34332,34327,34324,34322,34321,34318,34316,34313,34310,34308,34299,34408,34296,34295,34294,34291,34283,34280,34279,34279,34278,34276,34276,34273,34272,34270,34269,36483,36512,36346,36349,36349,36485,36513,36499,36360,36368,36369,36371,36486,36500,36382,36514,36383,36391,36487,36515,36501,36398,36502,36403,36405,36405,36409,36411,36516,36503,36416,36517,36504,36488,36518,36505,36429,36429,36434,36490,36441,36446,36507,36519,36509,36460,36520,36492,36493,36468,36494,36495,36476,36479,36510,36511,34050,34370,34370,34367,34430,34356,34351,34347,34342,34338,34332,34330,34327,34322,34322,34321,34316,34313,34308,34307,34299,34296,34295,34295,34291,34289,34276,34272,34270,34270,36483,36512,36512,36349,36513,36521,36499,36368,36369,36486,36522,36500,36514,36523,36383,36487,36515,36515,36398,36524,36525,36502,36405,36526,36516,36416,36517,36488,36422,36518,36429,36490,36440,36441,36507,36519,36460,36462,36527,36520,36493,36493,36468,36495,36476,36510,36528,36529,36511,34370,34370,34430,34359,34357,34356,34347,34343,34342,34332,34331,34330,34322,34322,34316,34315,34313,34307,34306,34300,34299,34295,34276,34270,36512,36512,36513,36521,36521,36368,36530,36369,36522,36531,36500,36523,36383,36383,36515,36524,36525,36405,36411,36526,36416,36418,36532,36517,36422,36533,36518,36490,36506,36440,36507,36534,36519,36462,36527,36493,36495,36476,36528,36529,36529,34370,34359,34359,34357,34347,34343,34332,34331,34331,34322,34315,34313,34306,34305,34301,34300,34295,34276,36512,36521,36521,36530,36369,36531,36500,36383,36383,36524,36535,36535,36525,36411,36411,36526,36418,36532,36422,36424,36536,36533,36490,36506,36507,36537,36534,36462,36527,36538,36476,36529,34359,34347,34346,34343,34331,34315,34313,34305,34302,34301,34295,34289,34279,34276,36521,36521,36369,36531,36383,36535,36411,36411,36418,36532,36536,36490,36437,36539,36506,36537,36527,36495,36540,36527,36540,36534,36538,36529,34359,34359,34346,34345,34343,34315,36541,34343,36541,34344,34302,34301,34289,34279,36521,36542,34279,36542,34283,36521,36531,36383,36383,36411,36532,36543,36536,36437,36539,36537,36544,36545,36534,36540,36545,36540,36495,36534,36545,36455,36495,36538,34359,34315,34314,36546,36546,34344,36541,36546,36541,34315,34313,34302,34289,36383,34283,36542,36383,36542,36521,36532,36424,36547,36532,36547,36383,36543,36437,36548,36539,36544,36508,36495,34359,36549,36549,36455,36545,36549,36545,36495,34314,34313,36550,36550,34344,36546,36550,36546,34314,34313,34289,34287,34283,36383,36551,34283,36551,34284,36424,36552,36553,36553,36383,36547,36553,36547,36424,36543,36548,36554,36539,36508,36455,34345,36455,36549,34345,36549,34359,34313,34287,36555,36555,34344,36550,36555,36550,34313,36556,34284,36551,36556,36551,36383,34284,36556,34286,36552,36543,36554,36557,36539,36455,36455,34345,34344,34287,34286,36558,36558,34344,36555,36558,36555,34287,36553,34286,36556,36553,36556,36383,34286,36553,36552,36552,36554,36557,36455,34344,36559,36455,36559,36557,36558,36552,36560,36558,36560,34344,36552,36558,34286,36560,36557,36559,36560,36559,34344,36557,36560,36552,36561,36562,36563,36563,36564,36565,36565,36566,36567,36567,36561,36563,36563,36565,36567,36568,36569,36570,36570,36571,36572,36572,36573,36574,36574,36568,36570,36570,36572,36574,36575,36576,36577,36578,36579,36580,36580,36581,36582,36582,36583,36584,36585,36586,36587,36587,36575,36577,36578,36580,36582,36582,36584,36585,36585,36587,36577,36577,36578,36582,36582,36585,36577,36588,36589,36590,36590,36591,36592,36592,36593,36594,36594,36595,36596,36588,36590,36592,36592,36594,36596,36596,36588,36592,36597,36598,36599,36599,36600,36601,36601,36602,36597,36597,36599,36601,36603,36604,36605,36606,36607,36608,36608,36609,36610,36610,36611,36603,36603,36605,36606,36606,36608,36610,36610,36603,36606,35986,35992,36612,36612,36613,36614,36615,35987,35986,35986,36612,36614,36614,36615,35986,36616,36617,36618,36618,36619,36620,36621,36622,36623,36623,36624,36625,36625,36626,36627,36627,36628,36629,36630,36631,36632,36632,36633,36634,36635,36636,36637,36637,36638,36639,36640,36641,36642,36642,36643,36644,36644,36645,36646,36646,36647,36648,36649,36650,36651,36652,36653,36654,36655,36656,36657,36657,36658,36659,36660,36661,36662,36662,36663,36664,36616,36618,36620,36620,36621,36623,36623,36625,36627,36630,36632,36634,36635,36637,36639,36640,36642,36644,36646,36648,36665,36666,36649,36651,36651,36652,36654,36655,36657,36659,36659,36660,36662,36667,36616,36620,36620,36623,36627,36629,36630,36634,36635,36639,36668,36668,36640,36644,36644,36646,36665,36655,36659,36662,36669,36667,36620,36620,36627,36629,36629,36634,36670,36670,36635,36668,36668,36644,36665,36654,36655,36662,36664,36669,36620,36620,36629,36670,36670,36668,36665,36654,36662,36664,36664,36620,36670,36670,36665,36666,36654,36664,36670,36670,36666,36651,36651,36654,36670,36671,36672,36673,36673,36674,36675,36676,36677,36678,36678,36679,36680,36680,36681,36682,36682,36683,36684,36684,36685,36686,36687,36688,36689,36690,36691,36692,36693,36694,36695,36695,36696,36697,36697,36698,36699,36700,36701,36702,36702,36703,36704,36704,36705,36706,36707,36708,36709,36709,36710,36711,36711,36712,36713,36713,36714,36715,36715,36716,36717,36717,36718,36719,36719,36720,36721,36721,36722,36723,36724,36725,36726,36727,36728,36729,36729,36730,36731,36732,36733,36734,36735,36736,36737,36737,36738,36739,36740,36741,36742,36742,36743,36744,36744,36745,36746,36747,36748,36749,36749,36750,36751,36752,36753,36754,36754,36755,36756,36757,36758,36759,36760,36761,36762,36762,36763,36764,36764,36765,36766,36766,36767,36768,36768,36769,36770,36770,36771,36772,36773,36774,36775,36775,36776,36777,36778,36779,36780,36780,36781,36782,36782,36783,36784,36784,36785,36786,36787,36788,36789,36789,36790,36791,36791,36792,36793,36793,36794,36795,36796,36797,36798,36798,36799,36800,36800,36801,36802,36802,36803,36804,36805,36806,36807,36808,36809,36810,36810,36811,36812,36813,36814,36815,36815,36816,36817,36817,36818,36819,36819,36820,36821,36821,36822,36823,36823,36824,36825,36826,36827,36828,36828,36829,36830,36830,36831,36832,36832,36833,36834,36835,36836,36837,36837,36838,36839,36840,36841,36842,36842,36843,36844,36845,36846,36847,36848,36849,36850,36850,36851,36852,36853,36854,36855,36855,36856,36857,36858,36859,36860,36860,36861,36862,36863,36864,36865,36866,36867,36868,36868,36869,36870,36870,36871,36872,36872,36873,36874,36875,36876,36877,36878,36879,36880,36880,36881,36882,36882,36883,36884,36885,36886,36887,36888,36889,36890,36891,36892,36893,36893,36894,36895,36896,36897,36898,36898,36899,36900,36901,36902,36903,36904,36905,36906,36906,36907,36908,36908,36909,36910,36910,36911,36912,36913,36914,36915,36915,36916,36917,36918,36919,36920,36920,36921,36922,36922,36923,36924,36925,36926,36927,36927,36928,36929,36930,36931,36932,36932,36933,36934,36934,36935,36936,36936,36937,36938,36939,36940,36941,36942,36943,36944,36945,36946,36947,36948,36949,36950,36951,36952,36953,36953,36954,36955,36955,36956,36957,36957,36958,36959,36960,36961,36962,36963,36964,36965,36965,36966,36967,36968,36969,36970,36970,36971,36972,36973,36974,36975,36976,36977,36978,36978,36979,36980,36980,36981,36982,36982,36983,36984,36984,36985,36986,36986,36987,36988,36988,36989,36990,36990,36991,36992,36992,36993,36994,36994,36995,36996,36996,36997,36998,36999,37000,37001,37002,37003,37004,37005,37006,37007,37008,37009,37010,37010,37011,37012,37013,37014,37015,37016,37017,37018,37018,37019,37020,37021,37022,37023,37023,37024,37025,37025,37026,37027,37028,37029,37030,37031,37032,37033,37034,37035,37036,37037,37038,37039,37039,37040,37041,37041,37042,37043,37044,37045,37046,37047,37048,37049,37049,37050,37051,37051,37052,37053,37054,37055,37056,37056,37057,37058,37058,37059,37060,37060,37061,37062,37063,37064,37065,37065,37066,37067,37067,37068,37069,37070,37071,37072,37072,37073,37074,37075,37076,37077,37078,37079,37080,37081,37082,37083,37084,37085,37086,37087,37088,37089,37089,37090,37091,37092,37093,37094,37094,37095,37096,37097,37098,37099,37099,37100,37101,37101,37102,37103,37103,37104,37105,37106,37107,37108,37108,37109,37110,37111,37112,37113,37113,37114,37115,37115,37116,37117,37118,37119,37120,37121,37122,37123,37124,37125,37126,37126,37127,37128,37128,37129,37130,37130,37131,37132,37133,37134,37135,37135,37136,37137,37137,37138,37139,37139,37140,37141,37142,37143,37144,37144,37145,37146,37147,37148,37149,37149,37150,37151,37152,37153,37154,37155,37156,37157,37157,37158,37159,37159,37160,37161,37161,37162,37163,37164,37165,37166,37166,37167,37168,37169,37170,37171,37172,37173,37174,37174,37175,37176,37177,37178,37179,37179,37180,37181,37181,37182,37183,37183,37184,37185,37186,37187,37188,37188,37189,37190,37191,37192,37193,37193,37194,37195,37196,37197,37198,37199,37200,37201,37202,37203,37204,37205,37206,37207,37207,37208,37209,37209,37210,37211,37212,37213,37214,37215,37216,37217,37217,37218,37219,37220,37221,37222,37222,37223,37224,37225,37226,37227,37227,37228,37229,37229,37230,37231,37232,37233,37234,37235,37236,37237,37238,37239,37240,37240,37241,37242,37243,37244,37245,37246,37247,37248,37248,37249,37250,37251,37252,37253,37253,37254,37255,37255,37256,37257,37258,37259,37260,37261,37262,37263,37264,37265,37266,37266,37267,37268,37269,37270,37271,37272,37273,37274,37275,37276,37277,37277,37278,37279,37280,37281,37282,37282,37283,37284,37285,37286,37287,37288,37289,37290,37291,37292,37293,37293,37294,37295,37295,37296,37297,37297,37298,37299,37299,37300,37301,37302,37303,37304,37304,37305,37306,37307,37308,37309,37309,37310,37311,37312,37313,37314,37315,37316,37317,37318,37319,37320,37321,37322,37323,37324,37325,37326,37327,37328,37329,37329,37330,37331,37332,37333,37334,37335,37336,37337,37337,37338,37339,37340,37341,37342,37343,37344,37345,37346,37347,37348,37348,37349,37350,37351,37352,37353,37353,37354,37355,37356,37357,37358,37358,37359,37360,37361,37362,37363,37364,37365,37366,37367,37368,37369,37370,37371,37372,37372,37373,37374,37374,37375,37376,37377,37378,37379,37379,37380,37381,37382,37383,37384,37385,37386,37387,37388,37389,37390,37390,37391,37392,37393,37394,37395,37395,37396,37397,37398,37399,37400,37400,37401,37402,37403,37404,37405,37406,37407,37408,37408,37409,37410,37411,37412,37413,37413,37414,37415,37416,37417,37418,37419,37420,37421,37422,37423,37424,37424,37425,37426,37427,37428,37429,37430,37431,37432,37432,37433,37434,37435,37436,37437,37438,37439,37440,37441,37442,37443,37444,37445,37446,37447,37448,37449,37449,37450,37451,37451,37452,37453,37453,37454,37455,37455,37456,37457,37458,37459,37460,37460,37461,37462,37462,37463,37464,37465,37466,37467,37468,37469,37470,37471,37472,37473,37473,37474,37475,37476,37477,37478,37478,37479,37480,37481,37482,37483,37484,37485,37486,37486,37487,37488,37488,37489,37490,37491,37492,37493,37494,37495,37496,37497,37498,37499,37499,37500,37501,37502,37503,37504,37504,37505,37506,37507,37508,37509,37510,37511,37512,37513,37514,37515,37515,37516,37517,37517,37518,37519,37520,37521,37522,37523,37524,37525,37525,37526,37527,37528,37529,37530,37530,37531,37532,37533,37534,37535,37536,37537,37538,37538,37539,37540,37541,37542,37543,37544,37545,37546,37546,37547,37548,37549,37550,37551,37552,37553,37554,37554,37555,37556,37556,37557,37558,37558,37559,37560,37560,37561,37562,37562,37563,37564,37565,37566,37567,37567,37568,37569,37569,37570,37571,37572,37573,37574,37574,37575,37576,37576,37577,37578,37579,37580,37581,37581,37582,37583,37583,37584,37585,37586,37587,37588,37589,37590,37591,37592,37593,37594,37594,37595,37596,37597,37598,37599,37599,37600,37601,37601,37602,37603,37604,37605,37606,37606,37607,37608,37609,37610,37611,37612,37613,37614,37614,37615,37616,37617,37618,37619,37619,37620,37621,37622,37623,37624,37624,37625,37626,37627,37628,37629,37630,37631,37632,37633,37634,37635,37635,37636,37637,37637,37638,37639,37639,37640,37641,37642,37643,37644,37644,37645,37646,37646,37647,37648,37648,37649,37650,37651,37652,37653,37654,37655,37656,37656,37657,37658,37658,37659,37660,37660,37661,37662,37663,37664,37665,37666,37667,37668,37669,37670,37671,37671,37672,37673,37673,37674,37675,37676,37677,37678,37679,37680,37681,37681,37682,37683,37683,37684,37685,37686,37687,37688,37688,37689,37690,37691,37692,37693,37693,37694,37695,37696,37697,37698,37698,37699,37700,37700,37701,37702,37702,37703,37704,37704,37705,37706,37706,36671,36673,36673,36675,37707,36676,36678,36680,36680,36682,36684,36687,36689,37708,36690,36692,37709,37709,36693,36695,36695,36697,36699,37710,36700,36702,36702,36704,36706,36709,36711,36713,36713,36715,36717,36717,36719,36721,36721,36723,37711,36727,36729,36731,37712,36732,36734,37713,36735,36737,36737,36739,36740,36740,36742,36744,36747,36749,36751,36752,36754,36756,36760,36762,36764,36766,36768,36770,36770,36772,36773,36773,36775,36777,36778,36780,36782,36782,36784,36786,36787,36789,36791,36791,36793,36795,36796,36798,36800,36800,36802,36804,36810,36812,37714,37715,36813,36815,36817,36819,36821,36826,36828,36830,36830,36832,36834,36835,36837,36839,36839,36840,36842,36845,36847,36848,36848,36850,36852,36853,36855,36857,37716,36858,36860,36866,36868,36870,36870,36872,36874,36875,36877,37717,36878,36880,36882,36885,36887,36888,36888,36890,37718,37719,36891,36893,36896,36898,36900,36904,36906,36908,36908,36910,36912,36913,36915,36917,36918,36920,36922,36922,36924,37720,36925,36927,36929,36930,36932,36934,36934,36936,36938,37721,36939,36941,36942,36944,37722,36945,36947,36948,36951,36953,36955,36955,36957,36959,36960,36962,37723,37724,36963,36965,36965,36967,36968,36968,36970,36972,36973,36975,37725,36976,36978,36980,36982,36984,36986,36988,36990,36992,36994,36996,36998,36999,37001,37726,37002,37004,37727,37005,37007,37008,37008,37010,37012,37013,37015,37728,37016,37018,37020,37729,37021,37023,37023,37025,37027,37028,37030,37730,37031,37033,37731,37037,37039,37041,37041,37043,37732,37044,37046,37047,37047,37049,37051,37051,37053,37733,37054,37056,37058,37058,37060,37062,37065,37067,37069,37070,37072,37074,37075,37077,37078,37078,37080,37734,37081,37083,37735,37087,37089,37091,37092,37094,37096,37097,37099,37101,37101,37103,37105,37106,37108,37110,37111,37113,37115,37115,37117,37736,37118,37120,37737,37738,37121,37123,37128,37130,37132,37137,37139,37141,37142,37144,37146,37147,37149,37151,37739,37152,37154,37155,37157,37159,37159,37161,37163,37164,37166,37168,37169,37171,37172,37172,37174,37176,37179,37181,37183,37183,37185,37740,37186,37188,37190,37191,37193,37195,37199,37201,37741,37741,37202,37204,37205,37207,37209,37212,37214,37215,37215,37217,37219,37742,37220,37222,37222,37224,37225,37227,37229,37231,37232,37234,37743,37743,37235,37237,37238,37240,37242,37246,37248,37250,37251,37253,37255,37255,37257,37258,37258,37260,37744,37261,37263,37745,37264,37266,37268,37269,37271,37272,37272,37274,37746,37275,37277,37279,37280,37282,37284,37747,37285,37287,37287,37288,37290,37291,37293,37295,37295,37297,37299,37299,37301,37748,37302,37304,37306,37307,37309,37311,37312,37314,37315,37315,37317,37749,37318,37320,37321,37326,37327,37329,37331,37332,37334,37337,37339,37750,37340,37342,37751,37343,37345,37346,37346,37348,37350,37351,37353,37355,37752,37356,37358,37358,37360,37753,37361,37363,37754,37754,37364,37366,37367,37369,37755,37370,37372,37374,37756,37377,37379,37379,37381,37757,37382,37384,37758,37388,37390,37392,37392,37393,37395,37398,37400,37402,37403,37405,37759,37406,37408,37410,37411,37413,37415,37419,37421,37760,37422,37424,37426,37430,37432,37434,37761,37438,37440,37441,37443,37444,37444,37446,37762,37447,37449,37451,37453,37455,37457,37763,37458,37460,37462,37464,37764,37467,37468,37470,37471,37473,37475,37478,37480,37765,37766,37481,37483,37484,37486,37488,37488,37490,37767,37491,37493,37494,37494,37496,37497,37497,37499,37501,37502,37504,37506,37768,37510,37512,37513,37515,37517,37517,37519,37520,37520,37522,37769,37523,37525,37527,37528,37530,37532,37770,37533,37535,37536,37538,37540,37541,37543,37771,37772,37544,37546,37546,37548,37773,37774,37549,37551,37552,37554,37556,37556,37558,37560,37560,37562,37564,37775,37565,37567,37567,37569,37571,37572,37574,37576,37576,37578,37776,37777,37579,37581,37581,37583,37585,37778,37586,37588,37592,37594,37596,37779,37597,37599,37599,37601,37603,37604,37606,37608,37780,37609,37611,37612,37614,37616,37617,37619,37621,37622,37624,37626,37627,37629,37781,37630,37632,37782,37633,37635,37637,37637,37639,37641,37642,37644,37646,37646,37648,37650,37650,37651,37653,37654,37656,37658,37658,37660,37662,37663,37665,37783,37669,37671,37673,37673,37675,37784,37676,37678,37785,37679,37681,37683,37683,37685,37786,37686,37688,37690,37691,37693,37695,37696,37698,37700,37702,37704,37706,37706,36673,37707,36676,36680,36684,37787,36687,37708,37710,36702,36706,36707,36709,36713,36713,36717,36721,36721,37711,36724,36726,36727,36731,37713,36737,36740,36740,36744,36746,36746,36747,36751,36752,36756,37788,36760,36764,36766,36770,36773,36777,37789,36778,36782,36782,36786,36787,36787,36791,36795,36800,36804,36805,36808,36810,37714,37715,36815,36817,36817,36821,36823,36825,36826,36830,36830,36834,37790,36835,36839,36842,36845,36848,36852,36852,36853,36857,37716,36860,36862,36866,36870,36874,36875,37717,37791,37792,36878,36882,37793,36885,36888,37719,36893,36895,36896,36900,37794,36904,36908,36912,36913,36917,36918,36918,36922,37720,37720,36925,36929,37795,36930,36934,36934,36938,37721,37721,36941,36942,36942,37722,36945,36945,36948,36950,37796,36951,36955,36955,36959,37797,37724,36965,36968,36968,36972,37798,36976,36980,36982,36982,36986,36988,36988,36992,36994,36998,36999,37726,37002,37727,37799,37800,37005,37008,37008,37012,37013,37013,37728,37801,37802,37016,37020,37729,37023,37027,37803,37028,37730,37031,37731,37804,37037,37041,37732,37805,37044,37047,37047,37051,37733,37806,37054,37058,37058,37062,37807,37063,37065,37069,37808,37070,37074,37078,37734,37809,37810,37081,37735,37811,37087,37091,37092,37096,37812,37812,37097,37101,37101,37105,37106,37106,37110,37813,37814,37111,37115,37115,37736,37815,37118,37737,37738,37128,37132,37133,37135,37137,37141,37816,37142,37146,37817,37147,37151,37818,37155,37159,37159,37163,37819,37164,37168,37169,37169,37172,37176,37179,37183,37740,37186,37190,37820,37820,37191,37195,37199,37741,37204,37205,37209,37211,37212,37215,37219,37742,37222,37225,37225,37227,37231,37743,37237,37238,37245,37246,37250,37821,37251,37255,37255,37258,37744,37261,37745,37264,37264,37268,37269,37269,37272,37746,37275,37279,37822,37823,37280,37284,37747,37287,37290,37291,37295,37299,37302,37306,37824,37307,37311,37825,37825,37312,37315,37826,37318,37321,37326,37329,37331,37337,37750,37827,37827,37340,37751,37343,37346,37350,37828,37351,37355,37752,37358,37753,37361,37754,37366,37829,37367,37755,37830,37370,37374,37756,37379,37757,37382,37758,37385,37387,37388,37392,37392,37395,37397,37397,37398,37402,37403,37759,37406,37406,37410,37411,37411,37415,37831,37832,37419,37760,37833,37422,37426,37834,37430,37434,37835,37761,37440,37836,37441,37444,37762,37447,37451,37451,37453,37457,37763,37460,37462,37467,37470,37837,37471,37475,37476,37484,37488,37767,37767,37491,37494,37494,37497,37501,37502,37506,37838,37768,37512,37839,37513,37517,37520,37527,37528,37532,37840,37770,37535,37841,37536,37540,37842,37541,37771,37772,37546,37773,37774,37551,37552,37552,37556,37560,37560,37564,37843,37775,37567,37571,37572,37576,37776,37777,37581,37585,37778,37588,37589,37592,37596,37844,37779,37599,37603,37604,37608,37845,37846,37780,37611,37611,37612,37616,37847,37617,37621,37622,37626,37848,37849,37633,37637,37637,37641,37850,37851,37642,37646,37646,37650,37653,37852,37654,37658,37853,37663,37783,37669,37673,37784,37854,37679,37683,37686,37690,37691,37691,37695,37696,37696,37700,37702,37702,37706,37707,36676,36684,36686,37855,37787,37708,36699,37710,36706,36713,36721,37856,36713,37856,36707,36724,36726,36731,37713,36740,36746,36746,36751,36752,36752,37788,36757,37857,36760,36766,36770,36777,37789,37789,36782,36787,36787,36795,36796,36800,36805,36807,37715,36817,36823,36825,36830,37790,37858,36835,36842,36844,36845,36852,36852,36857,37859,37860,37716,36862,37861,36866,36874,37792,36882,36884,37793,36888,37718,37719,36895,37862,37863,36896,37794,37864,36904,36912,36918,37720,37865,36918,37865,36913,37720,36929,37866,37867,37795,36934,37721,36942,36945,37796,36955,37797,37723,37724,36968,36968,37798,36973,37725,36976,36982,36982,36988,36994,36994,36998,37726,37002,37799,37868,37800,37008,37013,37020,37729,37027,37803,37730,37869,37036,37037,37732,37805,37047,37733,37806,37058,37807,37063,37069,37808,37808,37074,37075,37810,37735,37870,37811,37091,37871,37092,37812,37101,37101,37106,37813,37814,37115,37815,37815,37118,37738,37128,37133,37135,37135,37141,37872,37816,37146,37817,37817,37151,37873,37818,37159,37819,37164,37169,37176,37177,37179,37740,37874,37186,37820,37820,37195,37875,37198,37199,37204,37876,37205,37211,37877,37212,37219,37219,37742,37225,37225,37231,37878,37232,37743,37238,37245,37250,37821,37821,37255,37744,37261,37264,37269,37269,37746,37879,37880,37275,37822,37823,37284,37881,37882,37747,37290,37290,37291,37299,37302,37824,37883,37825,37315,37749,37826,37321,37323,37326,37331,37334,37827,37751,37884,37884,37343,37350,37885,37828,37355,37886,37752,37753,37366,37829,37755,37830,37374,37376,37887,37756,37757,37888,37382,37385,37387,37392,37397,37397,37402,37403,37406,37411,37831,37832,37760,37889,37889,37833,37426,37835,37440,37836,37836,37444,37762,37762,37451,37457,37890,37763,37462,37465,37467,37837,37837,37471,37476,37483,37484,37767,37767,37494,37501,37501,37502,37838,37891,37513,37520,37527,37532,37892,37892,37840,37535,37535,37841,37540,37842,37771,37893,37772,37773,37894,37895,37774,37552,37552,37560,37843,37896,37775,37571,37897,37572,37776,37898,37777,37585,37899,37778,37589,37592,37844,37900,37779,37603,37901,37604,37845,37846,37846,37611,37616,37847,37621,37902,37622,37848,37627,37849,37637,37850,37851,37646,37653,37903,37852,37658,37853,37783,37666,37904,37854,37683,37686,37691,37696,37702,37707,37905,36676,36686,37855,37855,37708,37906,36695,36699,36706,37907,36707,37856,37907,37856,36721,36707,37907,36706,36724,36731,37712,36746,36752,36757,37857,36766,36770,36770,37789,36787,36796,36800,37908,36796,37908,36787,36800,36807,37909,37715,36823,37910,37715,37910,37714,37911,37858,36842,36844,36852,37859,37860,36862,37912,37913,37861,36874,37791,37792,36884,37914,37793,37718,37863,37794,36901,37864,36912,37915,37916,36913,37865,37916,37865,37720,36913,37916,37917,37720,37866,37918,37867,36934,37721,37721,36945,36950,37796,37797,36960,37723,36968,36973,37725,36982,36994,36994,37726,37919,37002,37868,37800,37800,37013,37801,37020,37027,37803,37036,37732,37920,37921,37805,37733,37922,37806,37807,37063,37808,37075,37810,37870,37084,37101,37813,37923,37924,37814,37815,37126,37128,37135,37135,37872,37925,37925,37816,37817,37817,37873,37926,37154,37818,37819,37164,37176,37177,37177,37740,37927,37874,37820,37875,37198,37204,37928,37929,37876,37211,37877,37219,37225,37232,37238,37242,37245,37821,37744,37261,37269,37879,37880,37822,37823,37823,37881,37930,37882,37290,37299,37302,37883,37931,37749,37826,37323,37827,37884,37350,37885,37355,37932,37886,37753,37933,37366,37755,37830,37830,37376,37887,37887,37757,37934,37888,37385,37387,37387,37397,37403,37406,37831,37935,37832,37889,37426,37437,37835,37836,37762,37457,37936,37937,37890,37462,37465,37837,37476,37483,37767,37501,37501,37838,37507,37839,37891,37520,37523,37527,37892,37892,37535,37540,37895,37552,37843,37843,37896,37571,37897,37776,37938,37938,37898,37585,37899,37589,37591,37592,37900,37939,37779,37901,37604,37846,37616,37940,37941,37847,37902,37622,37627,37781,37942,37849,37850,37850,37851,37653,37903,37658,37662,37853,37666,37668,37904,37683,37786,37686,37696,37702,37702,37905,37943,36676,37855,37906,37709,36695,36706,37907,36724,37944,37907,37944,36706,36724,37907,36721,36746,36757,36759,36770,36787,37945,36770,37945,37857,36800,37909,37946,37946,36787,37908,37946,37908,36800,37947,37714,37910,37947,37910,36823,37714,37947,36808,37911,36842,36844,36844,37859,37948,37860,37912,37949,36865,37913,36874,37791,36884,37950,37791,37950,36875,37914,37718,37719,37951,37863,36901,37864,37915,37952,37720,37918,37953,37953,37917,37916,37953,37916,37720,37954,37867,37721,37721,36950,37955,37956,37796,36960,36960,37723,36973,36973,37725,36994,36994,37919,37002,37002,37800,37801,37020,37803,37869,37036,37920,37957,37958,37921,37733,37922,37807,37959,37960,37063,37075,37961,37810,37084,37092,37101,37923,37924,37815,37738,37126,37135,37925,37925,37817,37926,37739,37154,37819,37164,37177,37927,37874,37875,37962,37963,37929,37211,37964,37877,37225,37965,37232,37242,37243,37245,37744,37966,37261,37879,37879,37880,37823,37823,37930,37967,37968,37882,37299,37749,37323,37969,37827,37350,37970,37970,37885,37932,37886,37933,37971,37888,37387,37403,37418,37832,37426,37435,37437,37836,37972,37937,37462,37465,37476,37478,37766,37483,37501,37501,37507,37509,37839,37520,37769,37523,37892,37540,37894,37895,37843,37843,37571,37973,37897,37938,37585,37899,37591,37592,37779,37604,37846,37846,37940,37941,37941,37902,37974,37975,37942,37850,37850,37653,37976,37977,37903,37662,37978,37904,37786,37979,37686,37702,37702,37943,36676,36676,37906,37980,37709,36706,37944,37709,37944,36724,36746,36759,37857,37981,36787,37946,37946,37909,37982,37946,37982,37981,36787,37981,37983,37983,37857,37945,37983,37945,36787,36823,36825,37984,37984,36808,37947,37984,37947,36823,37911,36844,37948,37860,37949,37985,36863,36865,36874,36884,37914,37986,37986,36875,37950,37986,37950,36884,37914,37719,37862,37951,36901,36903,37864,37952,37987,37918,37988,37989,37989,37917,37953,37989,37953,37918,37954,37721,37955,36960,36973,36994,36994,37002,37801,37802,37020,37869,37958,37733,37990,37922,37959,37991,37960,37075,37078,37961,37084,37086,37871,37092,37923,37923,37924,37738,37126,37925,37926,37992,37164,37927,37993,37874,37962,37994,37963,37211,37964,37225,37878,37965,37242,37243,37243,37744,37995,37995,37966,37879,37879,37823,37967,37968,37299,37748,37825,37749,37969,37827,37970,37932,37934,37888,37403,37418,37426,37996,37997,37435,37836,37972,37462,37764,37465,37478,37765,37998,37766,37501,37501,37509,37768,37768,37839,37769,37769,37523,37540,37894,37843,37973,37897,37585,37999,37999,37899,37592,38000,37779,37846,37941,37974,38001,37975,37850,37976,37977,37662,38002,37978,37786,38003,38003,37979,37702,37702,36676,37980,36690,37709,36724,37983,38004,38005,37983,38005,37857,38004,37983,37981,38006,37981,37982,38006,37982,37909,37981,38006,38004,38007,37857,38005,38007,38005,38004,37857,38007,36746,36825,37790,38008,36825,38008,38009,37984,38009,38010,37984,38010,36808,38009,37984,36825,37790,37911,37948,37860,37985,38011,36863,36874,36875,37914,37862,38012,38012,36875,37986,38012,37986,37914,38013,37951,36903,37864,37987,37917,37988,37954,37955,36960,36994,37801,37802,37869,37031,37958,37990,38014,37991,37960,37078,37961,37086,37811,37811,37871,37923,37126,37926,37739,37992,37927,38015,37993,37962,37196,37994,37211,38016,38016,37964,37878,37965,37243,37995,37879,37967,38017,37879,38017,37995,38018,37968,37748,37825,37969,37324,37337,37827,37932,37403,37406,38019,37403,38019,37934,37416,37418,37996,38020,37997,37836,37936,37972,37764,37998,37501,37768,37768,37769,37540,37772,37894,37973,37897,37999,37592,37941,38001,37622,37782,37975,37976,37977,38002,37853,37978,38003,37702,38021,36690,36724,37909,36808,38022,38022,38023,38024,38022,38024,37909,38004,38023,38025,38025,36746,38007,38025,38007,38004,38023,38004,38006,38006,37909,38024,38006,38024,38023,37790,37948,38026,37790,38026,38027,38009,38027,38028,38028,36808,38010,38028,38010,38009,38027,38009,38008,38027,38008,37790,37948,37860,38011,38011,36863,36875,38013,36903,37864,38029,37917,37989,37989,37988,38030,37989,38030,38029,37917,38029,38031,37917,38031,37864,37955,37956,38032,37955,38032,37988,36960,37801,38033,36960,38033,37956,38034,37802,37031,37958,38014,37922,37078,37809,38035,37078,38035,37991,37961,37811,37923,37126,37739,37819,37992,38015,38036,37928,37994,38016,38016,37878,38037,38038,37995,38017,38038,38017,37967,37995,38038,37965,37967,38018,37748,37337,37932,37886,37416,37996,37427,38020,37836,37762,37762,37936,37764,37768,37540,38039,37768,38039,37998,37772,37973,37897,37897,37592,37939,37630,37782,37976,37978,37702,37980,37980,38021,36724,38027,38040,38041,38041,36808,38028,38041,38028,38027,38042,38027,38026,38042,38026,37948,38027,38042,38040,38043,36808,38041,38041,38040,38044,38041,38044,38043,38045,38023,38046,38045,38046,38043,38023,38045,38047,38025,38047,38048,38025,38048,36746,38047,38025,38023,38022,38043,38046,38022,38046,38023,38043,38022,36808,38011,36875,38049,38011,38049,37948,38050,37864,38031,38050,38031,38029,38051,38029,38030,38051,38030,37988,38029,38051,38050,37864,38050,38052,37864,38052,38013,38053,37956,38033,38033,37801,38054,38033,38054,38053,37956,38053,38055,38055,37988,38032,38055,38032,37956,38034,37031,37804,37809,38056,38057,38057,37991,38035,38057,38035,37809,37961,37923,37738,37124,37126,37819,37992,38036,37993,37928,38016,38037,38058,37965,38038,38058,38038,37967,37965,38058,38037,37967,37748,38059,37337,37886,37971,38060,38020,37762,37762,37764,38061,38062,37998,38039,38062,38039,37540,37998,38062,37765,37897,37939,38063,37897,38063,37772,38064,37630,37976,38065,37978,37980,37980,36724,37712,38066,38067,38068,38066,38068,38043,38067,38066,38069,38070,38069,38071,38070,38071,36875,38069,38070,38067,38072,38043,38068,38072,38068,38067,38043,38072,38073,38074,38047,38075,38074,38075,38073,38047,38074,38076,38048,38076,38077,38048,38077,36746,38076,38048,38047,38045,38073,38075,38045,38075,38047,38073,38045,38043,38071,38040,38078,38071,38078,36875,38040,38071,38069,38044,38069,38066,38044,38066,38043,38069,38044,38040,38042,36875,38078,38042,38078,38040,38042,37948,38049,38042,38049,36875,38055,38079,38080,38055,38080,37988,38079,38055,38053,38081,38053,38054,38081,38054,37801,38053,38081,38079,38082,37988,38080,38082,38080,38079,37988,38082,38083,38084,38050,38085,38084,38085,38083,38050,38084,38086,38052,38086,38087,38052,38087,38013,38086,38052,38050,38051,38083,38085,38051,38085,38050,38083,38051,37988,38088,38034,37804,37961,37738,37123,37123,37124,37819,37993,37196,38089,37993,38089,37992,37198,37928,38037,37967,38059,38090,38090,38037,38058,38090,38058,37967,37335,37337,37971,37434,38060,37762,37762,38061,38091,38092,37765,38062,38092,38062,37540,37765,38092,37465,38093,37772,38063,38093,38063,37939,37772,38093,37893,37781,38064,37976,37785,38065,37980,37980,37712,36734,38094,38076,38095,38094,38095,38096,38076,38094,38097,38077,38097,38098,38077,38098,36746,38097,38077,38076,38074,38096,38095,38074,38095,38076,38096,38074,38073,38072,38099,38100,38072,38100,38073,38099,38072,38067,38101,38067,38070,38101,38070,36875,38067,38101,38099,38102,38073,38100,38102,38100,38099,38073,38102,38096,38098,38103,38104,38098,38104,36746,38103,38098,38097,38105,38097,38094,38105,38094,38096,38097,38105,38103,38106,36746,38104,38106,38104,38103,36746,38106,37713,38107,38086,38108,38107,38108,38109,38086,38107,38110,38087,38110,38111,38087,38111,38013,38110,38087,38086,38084,38109,38108,38084,38108,38086,38109,38084,38083,38082,38112,38113,38082,38113,38083,38112,38082,38079,38114,38079,38081,38114,38081,37801,38079,38114,38112,38115,38083,38113,38115,38113,38112,38083,38115,38109,38111,38116,38117,38111,38117,38013,38116,38111,38110,38118,38110,38107,38118,38107,38109,38110,38118,38116,38119,38013,38117,38119,38117,38116,38013,38119,38120,38121,38088,37804,37961,37123,37819,37196,37198,38122,38122,37992,38089,38122,38089,37196,37198,38037,38090,38090,38059,38123,38090,38123,37198,37334,37335,37971,37834,37434,37762,38092,37842,38124,38092,38124,37465,37842,38092,37540,38125,37893,38093,38125,38093,37939,37893,38125,37842,37781,37976,38126,37676,37785,37980,37980,36734,38127,38128,38096,38129,38129,37862,38130,38129,38130,38128,38096,38128,38131,38096,38131,38132,38103,38132,38133,38103,38133,38134,38106,38134,38135,38106,38135,37713,38134,38106,38103,38132,38103,38105,38132,38105,38096,38129,38099,38136,38129,38136,37862,38129,38096,38102,38129,38102,38099,38012,38099,38101,38012,38101,36875,38012,37862,38136,38012,38136,38099,37801,38137,38138,38138,38139,38140,38138,38140,37801,38141,38139,38142,38142,38143,38144,38142,38144,38141,38139,38141,38145,38145,37801,38140,38145,38140,38139,38109,38143,38146,38146,38147,38148,38146,38148,38109,38116,38147,38149,38149,38120,38119,38149,38119,38116,38147,38116,38118,38118,38109,38148,38118,38148,38147,38143,38109,38115,38115,38112,38150,38115,38150,38143,38141,38112,38114,38114,37801,38145,38114,38145,38141,38112,38141,38144,38144,38143,38150,38144,38150,38112,38121,37804,38151,38152,37961,37819,38123,38153,38154,38123,38154,37198,38153,38123,38059,37326,37334,37971,38155,37834,37762,38156,38124,38157,38156,38157,37939,38124,38156,37465,38124,37842,38125,38125,37939,38157,38125,38157,38124,37781,38126,37977,38158,37676,37980,38127,37713,38159,38127,38159,37980,38160,38161,38162,38160,38162,38132,38161,38160,38163,38164,38163,38165,38164,38165,38166,38163,38164,38161,38167,38132,38162,38167,38162,38161,38132,38167,38168,38169,38134,38170,38169,38170,38168,38134,38169,38171,38135,38171,38172,38135,38172,37713,38171,38135,38134,38133,38168,38170,38133,38170,38134,38168,38133,38132,38165,38128,38173,38165,38173,38166,38128,38165,38163,38131,38163,38160,38131,38160,38132,38163,38131,38128,38130,38166,38173,38130,38173,38128,38166,38130,37862,38137,38121,38174,38174,38175,38176,38174,38176,38137,38177,38175,38178,38178,38179,38180,38178,38180,38177,38175,38177,38181,38181,38137,38176,38181,38176,38175,38143,38179,38182,38182,38183,38184,38182,38184,38143,38147,38183,38185,38185,38120,38149,38185,38149,38147,38183,38147,38146,38146,38143,38184,38146,38184,38183,38179,38143,38142,38142,38139,38186,38142,38186,38179,38177,38139,38138,38138,38137,38181,38138,38181,38177,38139,38177,38180,38180,38179,38186,38180,38186,38139,38187,38152,37819,38154,37302,38188,38154,38188,37198,37302,38154,38153,37324,37326,37971,37762,38091,38189,37762,38189,38155,38190,37465,38156,38190,38156,37939,37465,38190,38091,37977,37853,38191,37977,38191,37781,38192,37980,38159,38192,38159,37713,37980,38192,38158,38193,38194,38195,38193,38195,38168,38194,38193,38196,38197,38196,38198,38197,38198,38120,38196,38197,38194,38199,38168,38195,38199,38195,38194,38168,38199,38200,38201,38171,38202,38201,38202,38200,38171,38201,38203,38172,38203,38204,38172,38204,37713,38203,38172,38171,38169,38200,38202,38169,38202,38171,38200,38169,38168,38198,38161,38205,38198,38205,38120,38161,38198,38196,38167,38196,38193,38167,38193,38168,38196,38167,38161,38164,38120,38205,38164,38205,38161,38120,38164,38166,38121,38151,38206,38121,38206,38207,38208,38207,38209,38209,38210,38211,38209,38211,38208,38207,38208,38212,38207,38212,38121,38179,38210,38213,38213,38214,38215,38213,38215,38179,38183,38214,38216,38216,38120,38185,38216,38185,38183,38214,38183,38182,38182,38179,38215,38182,38215,38214,38210,38179,38178,38178,38175,38217,38178,38217,38210,38208,38175,38174,38174,38121,38212,38174,38212,38208,38175,38208,38211,38211,38210,38217,38211,38217,38175,38187,37819,37992,38188,38218,38219,38188,38219,37198,38218,38188,37302,38218,37992,38122,38122,37198,38219,38122,38219,38218,37324,37971,38220,38221,38155,38189,38221,38189,38091,38155,38221,38222,38190,38223,38224,38190,38224,38091,38223,38190,37939,38225,37781,38191,38225,38191,37853,37781,38225,37622,38226,38158,38192,38226,38192,37713,38158,38226,37784,38227,38228,38229,38227,38229,38230,38227,38210,38231,38227,38231,38228,38232,38228,38233,38232,38233,38234,38232,38230,38229,38232,38229,38228,38235,38214,38236,38235,38236,38230,38235,38120,38216,38235,38216,38214,38227,38214,38213,38227,38213,38210,38227,38230,38236,38227,38236,38214,38237,38207,38238,38237,38238,38239,38237,38210,38209,38237,38209,38207,38240,38207,38206,38240,38206,38151,38240,38239,38238,38240,38238,38207,38241,38228,38242,38241,38242,38239,38241,38234,38233,38241,38233,38228,38237,38228,38231,38237,38231,38210,38237,38239,38242,38237,38242,38228,38243,38244,38245,38243,38245,38246,38243,38200,38247,38243,38247,38244,38248,38244,38249,38248,38249,38234,38248,38246,38245,38248,38245,38244,38250,38203,38251,38250,38251,38246,38250,37713,38204,38250,38204,38203,38243,38203,38201,38243,38201,38200,38243,38246,38251,38243,38251,38203,38252,38194,38253,38252,38253,38230,38252,38200,38199,38252,38199,38194,38235,38194,38197,38235,38197,38120,38235,38230,38253,38235,38253,38194,38232,38244,38254,38232,38254,38230,38232,38234,38249,38232,38249,38244,38252,38244,38247,38252,38247,38200,38252,38230,38254,38252,38254,38244,38187,37992,38218,38218,37302,38255,38218,38255,38187,37324,38220,38256,37324,38256,37825,38257,38091,38224,38224,38223,38258,38224,38258,38257,38221,38257,38259,38221,38259,38222,38257,38221,38091,38260,37622,38225,38225,37853,38261,38225,38261,38260,37622,38260,38262,37622,38262,37941,38263,37784,38226,38263,38226,37713,37784,38263,37669,38151,37034,38264,38264,38265,38266,38264,38266,38151,38267,38265,38268,38268,38269,38270,38268,38270,38267,38265,38267,38271,38271,38151,38266,38271,38266,38265,38234,38269,38272,38272,38273,38274,38272,38274,38234,38246,38273,38275,38275,37713,38250,38275,38250,38246,38273,38246,38248,38248,38234,38274,38248,38274,38273,38269,38234,38241,38241,38239,38276,38241,38276,38269,38267,38239,38240,38240,38151,38271,38240,38271,38267,38239,38267,38270,38270,38269,38276,38270,38276,38239,38277,38187,38255,38255,37302,38278,38255,38278,38277,38279,38257,38280,38279,38280,38281,38257,38279,38282,38259,38282,38283,38259,38283,38222,38282,38259,38257,38258,38281,38280,38258,38280,38257,38281,38258,38223,38284,37941,38262,38284,38262,38260,38285,38260,38261,38285,38261,37853,38260,38285,38284,37941,38284,38286,37941,38286,37846,38287,37669,38263,38287,38263,37713,37669,38287,37668,37034,37036,38288,38288,38289,38290,38288,38290,37034,38291,38289,38292,38292,38293,38294,38292,38294,38291,38289,38291,38295,38295,37034,38290,38295,38290,38289,38269,38293,38296,38296,38297,38298,38296,38298,38269,38273,38297,38299,38299,37713,38275,38299,38275,38273,38297,38273,38272,38272,38269,38298,38272,38298,38297,38293,38269,38268,38268,38265,38300,38268,38300,38293,38291,38265,38264,38264,37034,38295,38264,38295,38291,38265,38291,38294,38294,38293,38300,38294,38300,38265,38056,38277,38278,38056,38278,37302,38301,38282,38302,38301,38302,38000,38282,38301,38303,38283,38303,38304,38283,38304,38222,38303,38283,38282,38279,38000,38302,38279,38302,38282,38000,38279,38281,37853,37668,38305,38305,38306,38307,38305,38307,37853,38284,38306,38308,38308,37846,38286,38308,38286,38284,38306,38284,38285,38285,37853,38307,38285,38307,38306,38309,38297,38310,38310,38311,38312,38310,38312,38309,38299,38309,38313,38299,38313,37713,38309,38299,38297,38296,38311,38310,38296,38310,38297,38311,38296,38293,38292,38314,38315,38292,38315,38293,38314,38292,38289,38316,38289,38288,38316,38288,37036,38289,38316,38314,38317,38293,38315,38317,38315,38314,38293,38317,38311,38309,38318,38319,38319,37713,38313,38319,38313,38309,38320,38309,38312,38320,38312,38311,38309,38320,38318,38319,38321,38322,38319,38322,37713,38321,38319,38318,38321,37668,38287,38287,37713,38322,38287,38322,38321,38056,37302,37931,38323,38303,38324,38324,37846,38325,38324,38325,38323,38304,38323,38326,38304,38326,38222,38323,38304,38303,38000,37846,38324,38324,38303,38301,38324,38301,38000,38056,37931,38327,38326,38328,38329,38326,38329,38222,38328,38326,38323,38330,38323,38325,38330,38325,37846,38323,38330,38328,38331,38222,38329,38331,38329,38328,38222,38331,38332,38056,38327,37307,38331,38333,38334,38331,38334,38332,38333,38331,38328,38335,38328,38330,38335,38330,37846,38328,38335,38333,38336,38332,38334,38336,38334,38333,38332,38336,37429,37307,37991,38057,37307,38057,38056,38336,38337,38338,38336,38338,37429,38337,38336,38333,38339,38333,38335,38339,38335,37846,38333,38339,38337,38340,37429,38338,38340,38338,38337,37429,38340,37427,37991,37307,37825,38341,37427,38340,38341,38340,38337,38342,38337,38339,38342,38339,37846,38337,38342,38341,37427,38341,38343,37427,38343,37416,37991,37825,38344,37991,38344,37922,38343,38345,38346,38343,38346,37416,38345,38343,38341,38347,38341,38342,38347,38342,37846,38341,38347,38345,38348,37416,38346,38348,38346,38345,37416,38348,37935,38349,37922,38344,38349,38344,37825,37922,38349,37958,38350,38351,38352,38350,38352,38306,38350,38353,38354,38350,38354,38351,38308,38351,38355,38308,38355,37846,38308,38306,38352,38308,38352,38351,38305,38356,38357,38305,38357,38306,38305,37668,38358,38305,38358,38356,38350,38356,38359,38350,38359,38353,38350,38306,38357,38350,38357,38356,38360,38361,38362,38360,38362,38345,38360,38353,38363,38360,38363,38361,38348,38361,38364,38348,38364,37935,38348,38345,38362,38348,38362,38361,38347,38351,38365,38347,38365,38345,38347,37846,38355,38347,38355,38351,38360,38351,38354,38360,38354,38353,38360,38345,38365,38360,38365,38351,38256,37958,38349,38256,38349,37825,37958,38256,38220,38361,38366,38367,38361,38367,38368,38364,38368,38369,38364,38369,37935,38368,38364,38361,38366,38361,38363,38366,38363,38353,38359,38370,38371,38359,38371,38353,38370,38359,38356,38372,38356,38358,38372,38358,37668,38356,38372,38370,38373,38353,38371,38373,38371,38370,38353,38373,38366,38374,37935,38369,38374,38369,38368,38375,38368,38367,38375,38367,38366,38368,38375,38374,37935,38374,38376,37935,38376,37406,37957,37958,38220,38374,38377,38378,38378,37406,38376,38378,38376,38374,38377,38374,38375,38377,38375,38366,38373,38379,38380,38373,38380,38366,38379,38373,38370,38381,38370,38372,38381,38372,37668,38370,38381,38379,38382,38366,38380,38382,38380,38379,38366,38382,38377,38383,37406,38378,38378,38377,38384,38378,38384,38383,37406,38383,38385,38385,37934,38019,38385,38019,37406,37036,37957,38220,38386,38383,38387,38386,38387,38388,38383,38386,38389,38385,38389,38390,38385,38390,37934,38389,38385,38383,38384,38388,38387,38384,38387,38383,38388,38384,38377,38382,38391,38392,38382,38392,38377,38391,38382,38379,38393,38379,38381,38393,38381,37668,38379,38393,38391,38394,38377,38392,38394,38392,38391,38377,38394,38388,38390,38395,38396,38390,38396,37934,38395,38390,38389,38397,38389,38386,38397,38386,38388,38389,38397,38395,38398,37934,38396,38398,38396,38395,37934,38398,37887,37036,38220,38399,38400,38395,38401,38400,38401,38402,38395,38400,38403,38398,38403,38404,38398,38404,37887,38403,38398,38395,38397,38402,38401,38397,38401,38395,38402,38397,38388,38394,38405,38406,38394,38406,38388,38405,38394,38391,38407,38391,38393,38407,38393,37668,38391,38407,38405,38408,38388,38406,38408,38406,38405,38388,38408,38402,38404,38409,38410,38404,38410,37887,38409,38404,38403,38411,38403,38400,38411,38400,38402,38403,38411,38409,38412,37887,38410,38412,38410,38409,37887,38412,37830,37036,38399,38413,38414,38409,38415,38414,38415,38416,38409,38414,38417,38412,38417,38418,38412,38418,37830,38417,38412,38409,38411,38416,38415,38411,38415,38409,38416,38411,38402,38408,38419,38420,38408,38420,38402,38419,38408,38405,38421,38405,38407,38421,38407,37668,38405,38421,38419,38422,38402,38420,38422,38420,38419,38402,38422,38416,38418,38423,38424,38418,38424,37830,38423,38418,38417,38425,38417,38414,38425,38414,38416,38417,38425,38423,38426,37830,38424,38426,38424,38423,37830,38426,37366,37036,38413,37361,38427,38423,38428,38427,38428,38429,38423,38427,38430,38426,38430,38431,38426,38431,37366,38430,38426,38423,38425,38429,38428,38425,38428,38423,38429,38425,38416,38422,38432,38433,38422,38433,38416,38432,38422,38419,38434,38419,38421,38434,38421,37668,38419,38434,38432,38435,38416,38433,38435,38433,38432,38416,38435,38429,38431,38436,38437,38431,38437,37366,38436,38431,38430,38438,38430,38427,38438,38427,38429,38430,38438,38436,38439,37366,38437,38439,38437,38436,37366,38439,37361,38440,38436,38441,38440,38441,38311,38436,38440,38442,38439,38442,38443,38439,38443,37361,38442,38439,38436,38438,38311,38441,38438,38441,38436,38311,38438,38429,38435,38318,38444,38435,38444,38429,38318,38435,38432,38321,38432,38434,38321,38434,37668,38432,38321,38318,38320,38429,38444,38320,38444,38318,38429,38320,38311,38443,38314,38445,38443,38445,37361,38314,38443,38442,38317,38442,38440,38317,38440,38311,38442,38317,38314,38316,37361,38445,38316,38445,38314,37361,38316,37036,38446,38447,38448,38448,38449,38450,38450,38451,38452,38452,38453,38454,38454,38446,38448,38448,38450,38452,38452,38454,38448,38455,38456,38457,38458,38459,38460,38460,38455,38457,38457,38458,38460,38461,38462,38463,38463,38464,38465,38465,38466,38461,38461,38463,38465,38467,38468,38469,38469,38470,38471,38471,38472,38473,38474,38467,38469,38469,38471,38473,38473,38474,38469,38475,38476,38477,38477,38478,38479,38479,38480,38481,38482,38483,38484,38484,38475,38477,38477,38479,38481,38482,38484,38477,38477,38481,38482,38485,38486,38487,38487,38488,38489,38489,38490,38491,38491,38492,38485,38485,38487,38489,38489,38491,38485,38493,38494,38495,38495,38496,38497,38497,38498,38499,38499,38500,38501,38501,38502,38493,38493,38495,38497,38497,38499,38501,38501,38493,38497,38503,38504,38505,38505,38506,38507,38508,38509,38503,38503,38505,38507,38507,38508,38503,38510,38511,38512,38513,38514,38515,38516,38517,38518,38518,38519,38520,38521,38522,38523,38523,38524,38525,38525,38526,38527,38527,38528,38529,38529,38530,38531,38532,38533,38534,38534,38535,38536,38536,38537,38538,38539,38540,38541,38542,38543,38544,38545,38546,38547,38547,38548,38549,38550,38551,38552,38552,38553,38554,38555,38556,38557,38558,38559,38560,38560,38510,38512,38513,38515,38561,38516,38518,38520,38521,38523,38525,38527,38529,38531,38532,38534,38536,38536,38538,38539,38542,38544,38545,38545,38547,38549,38550,38552,38554,38555,38557,38558,38558,38560,38512,38512,38513,38561,38516,38520,38521,38527,38531,38532,38532,38536,38539,38542,38545,38549,38562,38550,38554,38555,38558,38512,38512,38561,38516,38525,38527,38532,38532,38539,38541,38541,38542,38549,38562,38554,38555,38555,38512,38516,38525,38532,38541,38541,38549,38563,38562,38555,38516,38521,38525,38541,38541,38563,38562,38562,38516,38521,38521,38541,38562,38564,38565,38566,38566,38567,38568,38568,38564,38566,38569,38570,38571,38571,38572,38573,38573,38574,38569,38569,38571,38573,38575,38576,38577,38577,38578,38579,38579,38580,38581,38581,38582,38575,38575,38577,38579,38579,38581,38575,38583,38584,38585,38585,38586,38587,38588,38589,38590,38590,38591,38592,38592,38583,38585,38585,38587,38593,38588,38590,38592,38585,38593,38594,38594,38588,38592,38592,38585,38594,38595,38596,38597,38597,38598,38599,38599,38600,38601,38601,38602,38595,38595,38597,38599,38599,38601,38595,38603,38604,38605,38605,38606,38607,38607,38608,38609,38609,38610,38611,38611,38612,38613,38613,38614,38615,38615,38603,38605,38609,38611,38613,38613,38615,38605,38607,38609,38613,38613,38605,38607,38616,38617,38618,38618,38619,38620,38620,38621,38622,38622,38623,38624,38624,38616,38618,38618,38620,38622,38622,38624,38618,38625,38626,38627,38627,38628,38629,38629,38630,38631,38631,38625,38627,38627,38629,38631,38632,38633,38634,38634,38635,38636,38636,38637,38632,38632,38634,38636,38638,38639,38640,38641,38642,38643,38643,38644,38645,38645,38646,38647,38647,38648,38649,38649,38650,38651,38651,38638,38640,38641,38643,38645,38645,38647,38649,38649,38651,38640,38641,38645,38649,38649,38640,38641,38652,38653,38654,38654,38655,38656,38656,38657,38658,38658,38659,38660,38660,38661,38662,38652,38654,38656,38656,38658,38660,38660,38662,38652,38652,38656,38660,38663,38664,38665,38665,38666,38667,38667,38668,38669,38669,38663,38665,38665,38667,38669,38670,38671,38672,38672,38673,38674,38674,38675,38676,38677,38670,38672,38672,38674,38676,38676,38677,38672,38678,38679,38680,38681,38682,38683,38683,38684,38685,38685,38686,38687,38687,38688,38678,38680,38681,38683,38683,38685,38687,38687,38678,38680,38680,38683,38687,38689,38690,38691,38691,38692,38693,38693,38689,38691,38694,38695,38696,38697,38698,38699,38700,38701,38702,38702,38703,38704,38705,38706,38707,38708,38709,38710,38711,38712,38713,38714,38715,38716,38716,38717,38718,38718,38719,38720,38720,38721,38722,38723,38724,38725,38726,38727,38728,38729,38730,38731,38731,38732,38733,38733,38734,38735,38736,38737,38738,38739,38740,38741,38741,38742,38743,38743,38744,38745,38746,38747,38748,38749,38750,38751,38751,38752,38753,38754,38755,38756,38756,38757,38758,38759,38760,38761,38761,38762,38763,38764,38765,38766,38767,38768,38769,38770,38771,38772,38772,38773,38774,38775,38776,38777,38777,38778,38779,38780,38781,38782,38782,38783,38784,38784,38785,38786,38787,38788,38789,38789,38790,38791,38792,38793,38794,38794,38795,38796,38797,38798,38799,38800,38801,38802,38803,38804,38805,38805,38806,38807,38808,38809,38810,38811,38812,38813,38813,38814,38815,38815,38816,38817,38818,38819,38820,38821,38822,38823,38824,38825,38826,38826,38827,38828,38829,38830,38831,38832,38833,38834,38835,38836,38837,38838,38839,38840,38841,38842,38843,38843,38844,38845,38845,38846,38847,38848,38849,38850,38850,38851,38852,38853,38854,38855,38856,38857,38858,38859,38860,38861,38861,38862,38863,38864,38865,38866,38866,38867,38868,38868,38869,38870,38870,38871,38872,38873,38874,38875,38875,38876,38877,38878,38879,38880,38880,38881,38882,38882,38883,38884,38885,38886,38887,38888,38889,38890,38890,38891,38892,38892,38893,38894,38895,38896,38897,38898,38899,38900,38900,38901,38902,38902,38903,38904,38905,38906,38907,38907,38908,38909,38910,38911,38912,38912,38913,38914,38915,38916,38917,38917,38918,38919,38919,38920,38921,38922,38923,38924,38924,38925,38926,38927,38928,38929,38929,38930,38931,38932,38933,38934,38935,38936,38937,38937,38938,38939,38939,38940,38941,38942,38943,38944,38944,38945,38946,38947,38948,38949,38949,38950,38951,38951,38952,38953,38953,38954,38955,38956,38957,38958,38958,38959,38960,38960,38961,38962,38962,38963,38964,38965,38966,38967,38968,38969,38970,38970,38971,38972,38973,38974,38975,38976,38977,38978,38978,38979,38980,38981,38982,38983,38983,38984,38985,38985,38986,38987,38987,38988,38989,38990,38991,38992,38993,38994,38995,38995,38996,38997,38997,38998,38999,39000,39001,39002,39002,39003,39004,39005,39006,39007,39007,39008,39009,39009,39010,39011,39012,39013,39014,39014,39015,39016,39017,39018,39019,39020,39021,39022,39023,39024,39025,39025,39026,39027,39027,39028,39029,39029,39030,39031,39032,39033,39034,39034,39035,39036,39037,39038,39039,39039,39040,39041,39042,39043,39044,39045,39046,39047,39047,39048,39049,39049,39050,39051,39051,39052,39053,39054,39055,39056,39056,39057,39058,39059,39060,39061,39062,39063,39064,39064,39065,39066,39066,39067,39068,39068,39069,39070,39071,39072,39073,39074,39075,39076,39076,39077,39078,39079,39080,39081,39082,39083,39084,39085,39086,39087,39087,39088,39089,39090,39091,39092,39092,39093,39094,39094,39095,39096,39097,39098,39099,39099,39100,39101,39102,39103,39104,39105,39106,39107,39108,39109,39110,39110,39111,39112,39113,39114,39115,39116,39117,39118,39118,39119,39120,39121,39122,39123,39123,39124,39125,39125,39126,39127,39128,39129,39130,39130,39131,39132,39133,39134,39135,39136,39137,39138,39139,39140,39141,39141,39142,39143,39144,39145,39146,39146,39147,39148,39149,39150,39151,39152,39153,39154,39154,39155,39156,39156,39157,39158,39159,39160,39161,39161,39162,39163,39164,39165,39166,39167,39168,39169,39169,39170,39171,39172,39173,39174,39174,39175,39176,39177,39178,39179,39180,39181,39182,39182,39183,39184,39185,39186,39187,39187,39188,39189,39190,39191,39192,39192,39193,39194,39195,39196,39197,39197,39198,39199,39200,39201,39202,39202,39203,39204,39204,39205,39206,39207,39208,39209,39209,39210,39211,39212,39213,39214,39215,39216,39217,39217,39218,39219,39220,39221,39222,39222,39223,39224,39225,39226,39227,39228,39229,39230,39230,39231,39232,39232,39233,39234,39235,39236,39237,39238,39239,39240,39240,39241,39242,39243,39244,39245,39245,39246,39247,39248,39249,39250,39251,39252,39253,39253,39254,39255,39256,39257,39258,39259,39260,39261,39262,39263,39264,39265,39266,39267,39268,39269,39270,39270,39271,39272,39273,39274,39275,39275,39276,39277,39278,39279,39280,39280,39281,39282,39282,39283,39284,39284,39285,39286,39287,39288,39289,39290,39291,39292,39293,39294,39295,39296,39297,39298,39299,39300,39301,39302,39303,39304,39305,39306,39307,39307,39308,39309,39310,39311,39312,39313,39314,39315,39316,39317,39318,39318,39319,39320,39321,39322,39323,39323,39324,39325,39326,39327,39328,39329,39330,39331,39331,39332,39333,39334,39335,39336,39336,39337,39338,39339,39340,39341,39341,39342,39343,39344,39345,39346,39347,39348,39349,39349,39350,39351,39351,39352,39353,39354,39355,39356,39356,39357,39358,39358,39359,39360,39361,39362,39363,39364,39365,39366,39366,39367,39368,39368,39369,39370,39370,39371,39372,39373,39374,39375,39375,39376,39377,39378,39379,39380,39380,39381,39382,39383,39384,39385,39386,39387,39388,39388,39389,39390,39391,39392,39393,39393,39394,39395,39395,39396,39397,39398,39399,39400,39401,39402,39403,39404,39405,39406,39407,39408,39409,39409,39410,39411,39412,39413,39414,39415,39416,39417,39417,39418,39419,39419,39420,39421,39421,39422,39423,39423,39424,39425,39425,39426,39427,39428,39429,39430,39431,39432,39433,39434,39435,39436,39437,39438,39439,39440,39441,39442,39443,39444,39445,39446,39447,39448,39448,39449,39450,39451,39452,39453,39454,39455,39456,39457,39458,39459,39459,39460,39461,39462,39463,39464,39465,39466,39467,39468,39469,39470,39470,39471,39472,39473,39474,39475,39476,39477,39478,39479,39480,39481,39482,39483,39484,39484,39485,39486,39487,39488,39489,39490,39491,39492,39493,39494,39495,39496,39497,39498,39499,39500,39501,39501,39502,39503,39504,39505,39506,39507,39508,39509,39510,39511,39512,39512,39513,39514,39514,39515,39516,39516,39517,39518,39519,39520,39521,39521,39522,39523,39524,39525,39526,39526,39527,39528,39529,39530,39531,39532,39533,39534,39535,39536,39537,39538,39539,39540,39540,39541,39542,39543,39544,39545,39546,39547,39548,39549,39550,39551,39551,39552,39553,39554,39555,39556,39557,39558,39559,39560,39561,39562,39563,39564,39565,39566,39567,39568,39569,39570,39571,39572,39573,39574,39575,39576,39577,39578,39579,39580,39580,39581,39582,39582,39583,39584,39584,39585,39586,39587,39588,39589,39590,39591,39592,39592,39593,39594,39594,39595,39596,39596,39597,39598,39599,39600,39601,39602,39603,39604,39605,39606,39607,39607,39608,39609,39609,39610,39611,39612,39613,39614,39615,39616,39617,39618,39619,39620,39621,39622,39623,39624,39625,39626,39626,39627,39628,39629,39630,39631,39632,39633,39634,39635,39636,39637,39638,39639,39640,39641,39642,39643,39644,39645,39646,39647,39648,39649,39649,39650,39651,39651,39652,39653,39654,39655,39656,39656,39657,39658,39659,39660,39661,39661,39662,39663,39663,39664,39665,39666,39667,39668,39669,39670,39671,39672,39673,39674,39674,39675,39676,39677,39678,39679,39679,39680,39681,39681,39682,39683,39683,39684,39685,39686,39687,39688,39688,39689,39690,39691,39692,39693,39694,39695,39696,39697,39698,39699,39699,39700,39701,39702,39703,39704,39704,39705,39706,39706,39707,39708,39708,39709,39710,39710,39711,39712,39713,39714,39715,39715,39716,39717,39717,39718,39719,39719,39720,39721,39721,39722,39723,39724,39725,39726,39727,39728,39729,39730,39731,39732,39733,39734,39735,39735,39736,39737,39738,39739,39740,39741,39742,39743,39744,39745,39746,39747,39748,39749,39750,39751,39752,39752,39753,39754,39754,39755,39756,39756,39757,39758,39758,39759,39760,39761,39762,39763,39763,39764,39765,39765,39766,39767,39767,39768,39769,39770,39771,39772,39773,39774,39775,39776,39777,39778,39778,39779,39780,39780,39781,39782,39783,39784,39785,39785,39786,39787,39788,39789,39790,39791,39792,39793,39793,39794,39795,39795,39796,39797,39798,39799,39800,39801,39802,39803,39804,39805,39806,39806,39807,39808,39808,39809,39810,39811,39812,39813,39814,39815,39816,39816,39817,39818,39819,39820,39821,39821,39822,39823,39824,39825,39826,39827,39828,39829,39830,39831,39832,39833,39834,39835,39835,39836,39837,39838,39839,39840,39840,39841,39842,39843,39844,39845,39845,39846,39847,39847,39848,39849,39850,39851,39852,39852,39853,39854,39854,39855,39856,39856,39857,39858,39858,39859,39860,39860,39861,39862,39863,39864,39865,39866,39867,39868,39869,39870,39871,39871,39872,39873,39874,39875,39876,39876,39877,39878,39878,39879,39880,39881,39882,39883,39884,39885,39886,39887,39888,39889,39889,39890,39891,39892,39893,39894,39894,39895,39896,39897,39898,39899,39900,39901,39902,39903,39904,39905,39905,39906,39907,39907,39908,39909,39910,39911,39912,39912,39913,39914,39914,39915,39916,39916,39917,39918,39919,39920,39921,39922,39923,39924,39924,39925,39926,39926,39927,39928,39928,39929,39930,39931,39932,39933,39934,39935,39936,39937,39938,39939,39940,39941,39942,39942,39943,39944,39944,39945,39946,39947,39948,39949,39949,39950,39951,39951,39952,39953,39954,39955,39956,39956,39957,39958,39959,39960,39961,39961,39962,39963,39963,39964,39965,39966,39967,39968,39968,39969,39970,39971,39972,39973,39974,39975,39976,39977,39978,39979,39979,39980,39981,39982,39983,39984,39984,39985,39986,39986,39987,39988,39989,39990,39991,39992,39993,39994,39995,39996,39997,39998,39999,40000,40001,40002,40003,40003,40004,40005,40006,40007,40008,40009,40010,40011,40012,40013,40014,40014,40015,40016,40016,40017,40018,40018,40019,40020,40021,40022,40023,40023,40024,40025,40025,40026,40027,40027,40028,40029,40030,40031,40032,40033,40034,40035,40036,40037,40038,40038,40039,40040,40040,40041,40042,40042,40043,40044,40045,40046,40047,40048,40049,40050,40050,40051,40052,40052,40053,40054,40054,40055,40056,40057,40058,40059,40060,40061,40062,40063,40064,40065,40066,40067,40068,40068,40069,40070,40071,40072,40073,40073,40074,40075,40076,40077,40078,40078,40079,40080,40081,40082,40083,40083,40084,40085,40086,40087,40088,40089,40090,40091,40092,40093,40094,40094,40095,40096,40097,40098,40099,40099,40100,40101,40101,40102,40103,40103,40104,40105,40105,40106,40107,40108,40109,40110,40111,40112,40113,40113,40114,40115,40116,40117,40118,40119,40120,40121,40121,40122,40123,40124,40125,40126,40127,40128,40129,40130,40131,40132,40132,40133,40134,40134,40135,40136,40137,40138,40139,40140,40141,40142,40143,40144,40145,40146,40147,40148,40148,40149,40150,40150,40151,40152,40153,40154,40155,40155,40156,40157,40158,40159,40160,40160,40161,40162,40162,40163,40164,40165,40166,40167,40167,40168,40169,37534,37533,37770,37770,37840,37892,37529,37528,37527,37526,37525,37524,37524,37523,37769,37521,37520,37519,37514,37513,37891,37891,37839,37512,37511,37510,37768,37768,37509,37508,37508,37507,37838,37838,37506,37505,37503,37502,37501,37498,37497,37496,37495,37494,37493,37492,37491,37767,37485,37484,37483,37482,37481,37766,37766,37998,37765,37479,37478,37477,37477,37476,37475,37472,37471,37837,37837,37470,37469,37469,37468,37467,37466,37465,38091,38091,38061,37764,37463,37462,37461,37459,37458,37763,37763,37890,37937,37937,37972,37936,37454,37453,37452,37452,37451,37450,37448,37447,37762,37445,37444,37443,37442,37441,37836,37440,37439,40170,40170,40171,40172,40172,40173,40174,40175,40176,40177,40177,40178,40179,40179,40180,40181,40181,40182,40183,40184,40185,40186,40186,40187,40188,40189,40190,40191,40192,40193,40194,40194,40195,40196,40197,40198,40199,40200,40201,40202,40202,40203,40204,40204,40205,40206,40207,40208,40209,40209,40210,40211,40212,40213,40214,40214,40215,40216,40216,40217,40218,40219,40220,40221,40222,40223,40224,40225,40226,40227,40228,37355,37354,37352,37351,37828,37828,37885,37970,37347,37346,37345,37344,37343,37884,37884,37751,37342,40229,40230,40231,40232,40233,40234,40235,40236,40237,40238,40239,40240,40240,40241,40242,40243,40244,40245,40245,40246,40247,40248,40249,40250,40251,40252,37294,37292,37291,37290,37289,37288,37287,37286,37285,37747,37747,37882,37968,37968,38018,37967,37967,37930,37881,37881,37284,37283,37281,37280,37823,37823,37822,37279,37276,37275,37880,37880,37879,37746,37746,37274,37273,37273,37272,37271,37270,37269,37268,37265,37264,37745,37262,37261,37966,37966,37995,37744,37259,37258,37257,37252,37251,37821,37247,37246,37245,37244,37243,37242,37239,37238,37237,37236,37235,37743,37233,37232,37965,37965,38037,37878,37878,37231,37230,37228,37227,37226,37226,37225,37224,37223,37222,37221,37221,40253,40254,40255,40256,40257,40258,40259,40260,40260,40261,40262,40263,40264,40265,40266,40267,40268,40269,40270,40271,40271,40272,40273,40274,40275,40276,40276,40277,40278,40279,40280,40281,40282,40283,40284,40284,40285,40286,40287,40288,40289,40290,40291,40292,40293,40294,40295,40295,40296,40297,40298,40299,40300,40300,40301,40302,40302,40303,40304,40305,40306,40307,40308,40309,40310,40310,40311,40312,40312,40313,40314,40315,40316,40317,40317,40318,40319,40320,40321,40322,40322,40323,40324,40325,40326,40327,40328,40329,40330,40330,40331,40332,40333,40334,40335,40335,40336,40337,40338,40339,40340,40340,40341,40342,40342,40343,40344,40344,40345,40346,40347,40348,40349,40349,40350,40351,40352,40353,40354,40354,40355,40356,40357,40358,40359,40359,40360,40361,40362,40363,40364,40364,40365,40366,40366,40367,40368,40369,40370,40371,40371,40372,40373,40374,40375,40376,40377,40378,40379,40380,40381,40382,40382,40383,40384,40385,40386,40387,40387,40388,40389,40389,40390,40391,40392,40393,40394,40395,40396,40397,40398,40399,40400,40401,40402,40403,40403,40404,40405,40405,40406,40407,40408,40409,40410,40411,40412,40413,40413,40414,40415,40415,40416,40417,40418,40419,40420,40421,40422,40423,40423,40424,40425,40426,40427,40428,40428,40429,40430,40431,40432,40433,40433,40434,40435,40436,40437,40438,40438,40439,40440,40440,40441,40442,40443,40444,40445,40446,40447,40448,40449,40450,40451,40451,40452,40453,40454,40455,40456,40456,40457,40458,40459,40460,40461,40462,40463,40464,40464,40465,40466,40467,40468,40469,40469,40470,40471,40472,40473,40474,40475,40476,40477,40477,40478,40479,40479,40480,40481,40481,40482,40483,40484,38694,38696,38697,38699,40485,40486,38700,38702,38702,38704,40487,38705,38707,38708,38708,38710,38711,38714,38716,38718,38718,38720,38722,38723,38725,38726,38729,38731,38733,38733,38735,40488,38736,38738,40489,40490,38739,38741,38741,38743,38745,38745,38746,38748,38749,38751,38753,38754,38756,38758,38759,38761,38763,38764,38766,40491,38767,38769,38770,38770,38772,38774,38775,38777,38779,40492,38780,38782,38782,38784,38786,40493,38787,38789,38789,38791,40494,38792,38794,38796,38797,38799,40495,40496,38800,38802,38803,38805,38807,38808,38810,38811,38815,38817,40497,38818,38820,38821,38821,38823,38824,38824,38826,38828,40498,38832,38834,38835,38837,38838,38841,38843,38845,40499,38848,38850,38853,38855,38856,38856,38858,40500,38859,38861,38863,38864,38866,38868,38868,38870,38872,38873,38875,38877,38878,38880,38882,40501,38885,38887,38888,38890,38892,38895,38897,40502,38898,38900,38902,38902,38904,40503,38905,38907,38909,38910,38912,38914,38917,38919,38921,38922,38924,38926,38927,38929,38931,40504,38932,38934,38935,38937,38939,38942,38944,38946,38947,38949,38951,38951,38953,38955,38956,38958,38960,38962,38964,38965,38965,38967,40505,40506,38968,38970,38973,38975,38976,38976,38978,38980,38981,38983,38985,38985,38987,38989,38993,38995,38997,38997,38999,40507,39000,39002,39004,39007,39009,39011,39012,39014,39016,39017,39019,40508,40509,39023,39025,39025,39027,39029,39029,39031,40510,39032,39034,39036,39042,39044,40511,39045,39047,39049,39049,39051,39053,39054,39056,39058,39059,39061,39062,39064,39066,39068,39068,39070,40512,39071,39073,40513,39076,39078,39079,39079,39081,39082,39082,39084,39085,39085,39087,39089,39090,39092,39094,39094,39096,40514,39097,39099,39101,39102,39104,39105,39105,39107,40515,39108,39110,39112,39112,39113,39115,40516,39116,39118,39118,39120,40517,39121,39123,39125,39127,39128,39130,39130,39132,39133,39133,39135,40518,39136,39138,40519,39139,39141,39143,39143,39144,39146,39146,39148,40520,40521,39149,39151,39152,39154,39156,39156,39158,40522,39159,39161,39163,39164,39166,40523,39167,39169,39171,39182,39184,40524,39185,39187,39189,39189,39190,39192,39195,39197,39199,39200,39202,39204,39204,39206,39207,39207,39209,39211,39212,39214,39215,39215,39217,39219,39222,39224,39225,39225,39227,40525,39228,39230,39232,39238,39240,39242,39243,39245,39247,39248,39250,40526,39251,39253,39255,39256,39258,40527,39259,39261,40528,39265,39267,40529,39270,39272,39273,39275,39277,40530,39278,39280,39282,39282,39284,39286,40531,39287,39289,39290,39292,39293,39293,39295,40532,40532,39296,39298,40533,39299,39301,39302,39304,39305,39310,39312,40534,39316,39318,39320,39320,39321,39323,39323,39325,40535,39328,39329,39331,39331,39333,39334,39334,39336,39338,39338,39339,39341,39341,39343,40536,40536,39344,39346,39346,39347,39349,39349,39351,39353,39354,39356,39358,39358,39360,39361,39364,39366,39368,39370,39372,40537,40537,39373,39375,39375,39377,40538,39378,39380,39382,40539,39386,39388,39388,39390,40540,39391,39393,39395,39395,39397,39398,39398,39400,40541,40542,39401,39403,40543,39404,39406,40544,39407,39409,39409,39411,39412,39412,39414,40545,39415,39417,39419,39419,39421,39423,39423,39425,39427,40546,39428,39430,39431,39433,40547,39434,39436,40548,39437,39439,40549,39440,39442,40550,39443,39445,39446,39450,39451,39453,39454,39456,40551,39457,39459,39461,39462,39464,40552,39465,39467,40553,39468,39470,39472,39473,39475,40554,40555,39476,39478,39479,39481,40556,39482,39484,39486,39487,39489,40557,39490,39492,39493,39493,39495,40558,39496,39498,40559,40559,39499,39501,39501,39503,40560,39504,39506,40561,39507,39509,40562,39510,39512,39514,39514,39516,39518,39519,39521,39523,39524,39526,39528,39532,39534,40563,39535,39537,40564,39540,39542,40565,40566,39543,39545,40567,39546,39548,40568,39549,39551,39551,39553,40569,39554,39556,40570,39557,39559,39560,39560,39562,40571,39563,39565,40572,39566,39568,40573,40573,39569,39571,40574,39572,39574,40575,39578,39580,39580,39582,39584,39586,39587,39589,39590,39592,39594,39594,39596,39598,39599,39601,40576,39605,39607,39609,39609,39611,40577,39618,39620,39621,39624,39626,39628,39629,39631,39632,39632,39634,40578,39635,39637,40579,40580,39647,39649,39653,39654,39656,39656,39658,40581,39659,39661,39663,39663,39665,40582,39666,39668,39669,39669,39671,39672,39672,39674,39676,39677,39679,39681,39686,39688,39690,40583,39691,39693,40584,39694,39696,39697,39699,39701,39702,39704,39706,39706,39708,39710,39710,39712,40585,39713,39715,39717,39717,39719,39721,39724,39726,40586,39727,39729,39730,39730,39732,39733,39733,39735,39737,39737,39738,39740,39741,39743,39744,39744,39746,40587,39747,39749,39750,39750,39752,39754,39754,39756,39758,39758,39760,40588,40588,39761,39763,39763,39765,39767,39767,39769,40589,39770,39772,39773,39773,39775,40590,39776,39778,39780,39783,39785,39787,40591,39788,39790,39791,39793,39795,39798,39800,39801,39804,39806,39808,39808,39810,40592,40593,39811,39813,39814,39816,39818,39819,39821,39823,39823,39824,39826,39827,39829,40594,40595,39830,39832,39833,39835,39837,39838,39840,39842,39843,39845,39847,39847,39849,40596,39850,39852,39854,39854,39856,39858,39860,39862,40597,39863,39865,40598,39866,39868,40599,39869,39871,39873,39876,39878,39880,40600,39881,39883,39884,39886,39887,39887,39889,39891,40601,39892,39894,39894,39896,39897,40602,39900,39902,39903,39905,39907,39907,39909,40603,40604,39910,39912,39912,39914,39916,39922,39924,39926,39926,39928,39930,39930,39931,39933,40605,39937,39939,39940,39942,39944,39944,39946,40606,39947,39949,39951,39954,39956,39958,39959,39961,39963,40607,39966,39968,39971,39973,39974,39977,39979,39981,39981,39982,39984,39984,39986,39988,39992,39994,39995,39995,39997,40608,39998,40000,40001,40006,40008,40009,40012,40014,40016,40016,40018,40020,40021,40023,40025,40025,40027,40029,40609,40030,40032,40033,40035,40610,40611,40036,40038,40038,40040,40042,40045,40047,40048,40050,40052,40054,40054,40056,40612,40060,40062,40063,40063,40065,40613,40066,40068,40070,40071,40073,40075,40076,40078,40080,40081,40083,40085,40614,40086,40088,40615,40089,40091,40091,40092,40094,40097,40099,40101,40101,40103,40105,40105,40107,40108,40111,40113,40115,40116,40118,40119,40119,40121,40123,40127,40129,40130,40130,40132,40134,40134,40136,40616,40617,40137,40139,40140,40142,40618,40146,40148,40150,40153,40155,40157,40158,40160,40162,40162,40164,40165,40165,40167,40169,37534,37770,37892,37529,37527,37526,37526,37524,37769,37521,37519,37518,37514,37891,37512,37511,37768,37508,37508,37838,37505,37504,37503,37501,37499,37498,37496,37495,37493,37492,37492,37767,37490,37485,37483,37482,37482,37766,37765,37479,37477,37475,37473,37472,37837,37469,37467,37466,37466,38091,37764,37464,37463,37461,37459,37763,37937,37937,37936,37457,37454,37452,37450,37448,37762,37446,37446,37445,37443,37442,37836,37440,37440,40170,40172,40175,40177,40179,40179,40181,40183,40184,40186,40188,40189,40191,40619,40619,40192,40194,40194,40196,40197,40197,40199,40620,40200,40202,40204,40621,40207,40209,40209,40211,40622,40212,40214,40216,40623,40219,40221,40624,40222,40224,40625,40225,40227,40626,40228,37354,37352,37828,37970,37344,37884,37342,40229,40231,40627,40627,40232,40234,40628,40235,40237,40238,40240,40242,40243,40245,40247,40248,40250,40629,40251,37294,37293,37293,37292,37290,37289,37287,37286,37286,37747,37968,37968,37967,37881,37281,37823,37279,37276,37880,37746,37273,37271,37270,37266,37265,37745,37262,37966,37744,37260,37259,37257,37252,37821,37250,37247,37245,37244,37244,37242,37241,37239,37237,37236,37236,37743,37234,37233,37965,37878,37228,37226,37224,37223,37221,40254,40258,40260,40262,40630,40266,40268,40268,40269,40271,40631,40274,40276,40632,40279,40281,40282,40284,40286,40287,40289,40633,40290,40292,40634,40293,40295,40297,40298,40300,40302,40308,40310,40312,40635,40315,40317,40320,40322,40324,40325,40327,40636,40637,40328,40330,40333,40335,40337,40338,40340,40342,40342,40344,40346,40638,40347,40349,40349,40351,40639,40352,40354,40356,40640,40357,40359,40362,40364,40366,40366,40368,40369,40369,40371,40373,40374,40376,40377,40377,40379,40380,40380,40382,40384,40385,40387,40389,40641,40392,40394,40395,40397,40642,40398,40400,40643,40643,40401,40403,40403,40405,40407,40411,40413,40415,40415,40417,40418,40418,40420,40644,40421,40423,40425,40426,40428,40430,40431,40433,40435,40436,40438,40440,40443,40445,40645,40646,40446,40448,40448,40449,40451,40454,40456,40458,40461,40462,40464,40464,40466,40647,40467,40469,40471,40648,40472,40474,40475,40477,40479,40479,40481,40483,40484,38696,38697,40486,38702,40487,38705,38708,38711,40649,38714,38718,38723,38726,38728,38729,38733,40488,40650,38736,40489,40490,38741,38745,38745,38748,40651,40651,38749,38753,38758,38759,38763,38767,38770,38774,40492,38782,38786,40493,38789,40494,40652,38792,38796,38797,40495,40653,40653,40496,38802,40654,38803,38807,38808,38811,38813,38818,38821,38824,38824,38828,38829,38831,40498,38834,38834,38835,38838,40655,38841,38845,40499,38850,38852,38853,38856,40500,38859,38863,38864,38872,38873,38877,38877,38878,38882,40501,38887,38888,38888,38892,38894,40656,38895,40502,40657,38898,38902,38902,40503,38905,38905,38909,40658,40659,38910,38914,38917,38921,40660,40660,38922,38926,40661,38927,38931,40504,38934,38935,38942,38946,38947,38947,38951,38955,38956,38960,38962,38962,38965,40505,40506,38970,38972,38973,38976,38980,38980,38981,38985,38985,38989,40662,38992,38993,38997,40663,39000,39004,39007,39011,40664,39012,39016,40665,40666,39017,40508,40509,39025,39029,39029,40510,39032,39032,39036,40667,40668,39042,40511,39045,39049,39053,40669,39054,39058,40670,39059,39062,39064,39068,40512,40512,39071,40513,39079,39082,39085,39085,39089,40671,40672,39090,39094,39094,40514,40673,40673,39097,39101,40674,39102,39105,40675,39108,39112,39112,39115,40676,40516,39118,40517,40677,39121,39125,39127,39130,39133,39133,40518,40678,40678,39136,40519,39139,39143,39146,40521,39151,39152,39152,39156,40522,39159,39163,39164,40679,39167,39171,39182,40524,39185,39185,39189,39192,39199,39200,39204,39207,39211,40680,40680,39212,39215,39215,39219,40681,39222,39225,40525,39228,39232,39234,39238,39242,39243,39243,39247,39248,39248,40526,39251,39251,39255,40682,40527,39259,40528,39268,39270,39273,39273,39275,40530,40530,39278,39282,39282,39286,40531,39290,39293,40532,40532,39298,40683,40533,39301,40684,40684,39302,39305,39315,39316,39320,39320,39323,40535,39328,39331,39334,39334,39338,39341,40536,39346,39349,39354,39358,39361,39364,39368,39370,39370,40537,39375,39378,39382,39383,40539,39388,40540,40540,39391,39395,39398,40541,40685,40686,40542,39403,40544,39409,39412,39412,40545,40687,40688,39415,39419,39419,39423,39427,40546,39430,40689,40689,39431,40547,39437,40549,40690,40691,39440,40550,39443,39446,39448,39450,39453,40692,39454,40551,39457,39457,39461,39462,40553,39468,39472,40693,40555,39478,40556,39482,39486,39490,39493,40558,40558,39496,40559,39501,40560,39504,39504,40561,39507,39510,39514,39518,39519,39523,40694,40694,39524,39528,39531,39532,40563,40563,39535,40564,39538,39540,40565,40566,39545,40567,40567,39548,40568,40568,39551,40569,40695,39557,39560,40571,39563,40572,39566,40573,39571,40574,39574,40696,39577,40575,39580,39580,39584,39586,39586,39589,40697,39590,39594,39598,39599,40576,40698,39604,39605,39609,39618,39621,39623,39624,39628,39629,39629,39632,40578,39635,40579,39638,40580,39649,39651,39651,39653,39656,39659,39663,40582,40699,39666,39669,39669,39672,39676,39686,39690,40700,40584,39696,40701,39697,39701,40702,40703,39702,39706,39706,39710,40585,40585,39713,39717,39724,40586,39727,39727,39730,39733,39737,39740,39741,39744,40587,40704,39750,39754,39758,39758,40588,39763,39763,39767,40589,39773,40590,39776,39776,39780,39782,40705,39783,39787,40706,40591,39790,40707,39791,39795,39798,39801,39803,39804,39808,40592,40593,39813,40708,39818,39819,39823,39823,39826,40709,40709,39827,40594,39832,39833,39837,39843,39847,40596,39850,39854,39858,39863,40598,39866,39866,40599,40710,40710,39869,39873,39874,39876,39880,40600,39883,40711,39884,39887,39891,40601,39894,39897,40602,39902,40712,40712,39903,39907,40604,39912,39916,39921,39922,39926,39926,39930,39933,40605,39939,40713,40714,39940,39944,39944,40606,40715,40716,39947,39951,39954,39958,39959,39959,39963,39965,40607,39968,39970,40717,39971,39974,39977,39981,39984,39984,39988,40718,39992,39995,40608,40608,39998,40001,40006,40009,40011,40012,40016,40020,40021,40025,40029,40609,40032,40719,40033,40610,40611,40611,40038,40042,40720,40045,40048,40048,40050,40054,40054,40612,40057,40060,40063,40613,40066,40070,40721,40722,40071,40075,40080,40081,40085,40085,40614,40088,40615,40091,40094,40097,40101,40105,40111,40115,40116,40119,40123,40723,40724,40127,40130,40130,40134,40616,40725,40617,40139,40726,40140,40618,40146,40150,40152,40152,40153,40157,40158,40162,40165,40165,40169,37534,37534,37892,37532,37529,37526,37769,37515,37514,37512,37512,37511,37508,37504,37501,37500,37486,37485,37482,37482,37765,37480,37480,37479,37475,37473,37837,37469,37469,37466,37764,37764,37464,37461,37459,37937,37457,37455,37454,37450,37449,37448,37446,37440,40172,40174,40727,40175,40179,40728,40184,40188,40729,40189,40619,40194,40197,40620,40730,40200,40204,40621,40209,40622,40731,40212,40216,40623,40221,40624,40624,40224,40625,40625,40227,40732,40732,40626,37354,37352,37970,37350,37345,37344,37342,40733,40238,40242,40734,40243,40247,40735,40248,40629,40251,37293,37290,37286,37968,37881,37281,37279,37278,37277,37276,37746,37267,37266,37745,37263,37262,37744,37744,37260,37257,37253,37252,37250,37248,37247,37244,37236,37234,37233,37233,37878,37230,37229,37228,37224,37224,37223,40254,40736,40258,40262,40630,40268,40271,40281,40282,40286,40287,40633,40737,40737,40290,40634,40738,40293,40297,40298,40302,40304,40307,40308,40312,40739,40635,40317,40320,40324,40740,40325,40636,40637,40637,40330,40332,40333,40337,40338,40338,40342,40346,40638,40349,40639,40639,40352,40356,40640,40359,40361,40366,40369,40373,40374,40377,40380,40385,40389,40391,40641,40394,40395,40395,40642,40741,40742,40398,40643,40643,40403,40407,40411,40415,40418,40743,40421,40425,40744,40426,40430,40431,40435,40436,40436,40440,40442,40443,40645,40745,40746,40646,40448,40448,40451,40453,40747,40454,40458,40461,40464,40647,40748,40467,40471,40474,40475,40479,40479,40483,40749,40484,38697,40485,40485,40486,40487,40750,38705,38711,40649,38718,38722,40751,38723,38728,38729,40488,40650,40650,40489,40752,40752,40490,38745,38745,40651,38753,38758,38763,38764,40491,38767,38774,38779,40492,38786,40753,40493,40494,40494,40652,38796,38797,40653,38802,40654,38807,38808,38818,38824,38829,38831,38834,38838,40655,38845,38847,40499,38852,38853,38853,40500,38859,38859,38864,38868,38877,38882,38884,40501,38888,38894,40656,40502,40657,40657,38902,38905,38905,40658,40659,40659,38914,40754,38915,38917,40660,40660,38926,40755,40661,38931,40504,40504,38935,38939,38947,38955,40756,40757,38956,38962,38962,40505,40506,40758,38973,38980,38980,38985,40662,38990,38992,38997,40663,39004,39005,39005,39007,40664,40666,40508,39020,39022,40509,39029,39029,39032,40667,40668,40511,39045,39045,39053,40669,40669,39058,40670,40670,39062,39064,39064,40512,40513,39079,39085,40671,40672,39094,40673,40673,39101,40759,40674,39105,40515,40675,39112,40676,40516,40517,40677,40677,39125,39127,39127,39133,40678,40760,39139,39146,40521,39152,40522,39159,39164,40523,40679,39171,39172,39180,39182,39185,39185,39192,39194,39199,39204,39207,40680,39215,40681,39222,40525,39228,39228,39234,39235,39243,39248,39251,39251,40682,39256,39256,40527,40528,40761,39268,39273,40530,39282,40531,39290,40532,40683,40762,40533,40684,40684,39305,39307,39320,40535,40763,39326,39328,39334,39334,39341,40536,40536,39349,39353,40764,39354,39361,39364,39370,39375,40765,39378,39383,40540,39395,39398,39398,40685,40686,40686,39403,40766,39406,40544,39412,39412,40687,40688,40688,39419,39427,40546,40689,40547,39443,39448,39450,39450,40692,40767,39454,39457,39462,40553,39472,40768,40693,39478,39479,40556,39486,40769,40557,39490,40558,39501,39504,39507,40770,39510,39518,39519,40694,39528,39531,40563,40564,40564,39538,40565,40771,40566,40567,40567,40568,40569,40695,39560,40571,40571,40572,39566,39566,39571,40772,40574,40696,40773,39575,39577,39580,39580,39586,40697,40697,39590,39598,40774,39599,40698,39602,39604,39609,39617,39618,39623,39624,39629,40578,39646,40580,39651,39651,39656,40581,40775,39659,40582,40776,40699,39669,39669,39676,40777,39685,39686,40700,40703,39706,40585,40585,39717,39721,39727,39733,39737,39741,39744,40704,39747,39750,39758,39758,39763,40589,39770,39773,39776,40705,39787,40778,40706,39790,40779,40780,40707,39795,39804,40592,40781,40781,40593,40708,39818,39823,40709,40709,40594,40595,39832,39837,39838,40782,39843,40596,40596,39850,39858,40597,39863,39866,39866,40710,39873,40783,39874,39880,40784,40601,39897,40602,40712,39907,40604,39916,39918,39919,39921,39926,39926,39933,40785,40605,40713,40786,40714,39944,40715,40716,39951,39953,39954,39959,39965,40607,39970,40787,40717,39974,39976,39977,39984,40718,40788,39992,40608,40608,40001,40003,40789,40012,40020,40021,40029,40609,40033,40611,40042,40720,40048,40054,40790,40066,40721,40722,40075,40791,40080,40085,40088,40792,40615,40094,40793,40097,40105,40111,40116,40119,40724,40130,40616,40725,40139,40794,40726,40618,40795,40145,40146,40152,40152,40157,40796,40158,40165,37534,37534,37532,37531,37530,37529,37769,37515,37512,37508,37504,37500,37499,37487,37486,37482,37482,37480,37475,37469,37764,37461,37459,37457,37456,37456,37455,37450,37449,37446,37443,37442,37440,40174,40727,40179,40183,40183,40728,40188,40729,40619,40194,40730,40204,40206,40797,40621,40622,40731,40216,40218,40623,40624,40625,40732,37354,37353,37345,37342,40229,40798,40733,40242,40734,40247,40799,40629,40251,37290,37289,37286,37881,37277,37746,37273,37267,37745,37263,37263,37744,37257,37248,37244,37241,37236,37233,37230,37229,37224,40254,40736,40262,40800,40630,40271,40273,40632,40281,40286,40737,40634,40801,40802,40738,40297,40803,40298,40304,40307,40312,40314,40739,40317,40319,40320,40740,40325,40325,40637,40332,40333,40338,40346,40638,40639,40356,40356,40640,40361,40366,40373,40804,40374,40380,40384,40384,40385,40391,40742,40643,40407,40410,40411,40418,40743,40425,40744,40744,40430,40805,40431,40436,40442,40746,40448,40453,40747,40458,40806,40459,40461,40647,40748,40471,40648,40474,40479,40749,40749,40484,40485,40485,40487,40807,40750,38711,38713,38713,40649,38722,38729,40650,40752,40752,38745,38753,38758,38764,40491,40491,38774,40808,40753,40494,38796,38797,38802,40654,40654,38808,38813,38818,38829,38831,38831,38838,38840,40655,38847,40499,40499,38853,38859,38859,38868,38872,38872,38877,38884,40501,38894,40809,40657,38905,40659,40810,38915,40660,40660,40755,40811,40661,40504,38939,38947,40756,40757,40757,38962,40506,38972,40758,38980,38990,38997,40507,40663,39005,40664,40666,39020,39022,39022,39029,40667,40668,39045,40669,39064,40513,40812,39064,40812,40670,39076,39079,40671,40813,40672,40673,40814,40675,40676,40516,40677,39127,39127,40678,40519,40815,40760,39146,40816,40521,40522,39159,40523,40679,39180,39185,39194,39199,39207,40680,39222,39228,39235,39238,39243,39251,39251,39256,40528,40761,39273,40530,40530,40531,39289,40817,39290,40683,40762,40684,39307,39315,39320,40763,40818,39326,39334,39334,40536,39353,40764,39361,39363,39364,39375,40538,40765,39383,39385,40539,40540,39398,39398,40686,40766,39406,39412,40688,40688,39427,40546,40546,40547,39434,40550,39443,39450,39450,40767,39454,39454,39462,40552,39465,40553,40768,39479,40556,40769,39487,40557,40558,40559,39501,39507,40562,40770,39518,40819,39519,39528,39531,40564,40565,40771,40567,40569,40695,40571,39566,39566,40772,40820,40821,39575,39580,39580,40697,39598,39602,39609,40577,39617,39623,39624,39646,39651,40581,40581,40775,40582,40776,39669,40777,39683,39685,40700,40702,40703,40585,40585,39721,39723,39727,39737,39741,39758,40589,40822,39758,40822,39747,40705,40778,40706,40706,40779,40780,39795,39797,40823,39795,40823,40780,39804,40781,40708,39814,39818,40709,40782,40596,39858,40597,39866,39873,40783,39880,40824,39891,40784,39897,39899,40602,39907,40603,40604,39918,39919,39926,40785,40714,40715,40825,40825,40716,39953,39953,39954,39965,40787,40717,39976,39976,39977,40718,40788,40608,40003,40789,40020,40021,40021,40609,40719,40033,40042,40044,40720,40054,40057,40790,40721,40722,40722,40791,40076,40076,40080,40088,40826,40792,40094,40096,40793,40105,40111,40119,40723,40126,40724,40616,40726,40795,40827,40145,40152,40796,40158,37534,37531,37530,37769,37522,37516,37515,37508,37487,37482,37475,37473,37469,37461,37459,37456,37450,37449,37443,37442,37442,40174,40828,40727,40183,40188,40729,40194,40620,40206,40797,40622,40731,40218,40829,40623,40625,40732,40732,37353,37352,37345,40229,40627,40798,40242,40830,40830,40734,40799,40629,37290,37289,37289,37881,37283,37277,37273,37270,37267,37263,37257,37249,37248,37241,37236,37230,37229,37229,40254,40255,40630,40273,40831,40632,40286,40832,40287,40737,40801,40801,40802,40297,40803,40304,40305,40305,40307,40314,40319,40320,40325,40325,40332,40833,40333,40346,40834,40638,40356,40361,40362,40366,40804,40804,40374,40384,40384,40391,40641,40835,40742,40407,40408,40410,40418,40744,40805,40836,40837,40431,40442,40838,40746,40453,40459,40647,40839,40839,40748,40648,40474,40749,40485,40750,38713,38722,38728,38729,40752,40752,38753,40840,40491,40808,38775,38786,40753,38796,38797,40654,38813,38818,38831,38840,40655,40499,38859,38872,38884,40501,40501,40809,40656,40656,40657,40659,40810,40660,40811,40661,38939,38941,38947,40757,40506,40506,38972,38980,40841,38990,40507,40663,40664,39012,40666,39022,40667,39041,40668,40669,39076,40671,40842,40843,40813,40673,40515,40814,40676,40676,40516,39127,39127,40519,40844,40815,39146,40520,40816,40522,40845,39179,39180,39194,39195,39199,40680,39222,39235,39237,39238,39251,40528,40846,40761,40530,40530,39289,40847,40848,40817,40683,40849,40762,39307,39315,40763,40850,40818,39334,39353,39364,40538,40765,40765,39385,40539,40539,39398,40766,40543,39406,40688,40688,40546,39434,40550,39450,39454,39454,40552,39465,39465,40768,40851,40693,39479,40769,39487,40558,40559,40559,39507,40562,40562,39518,40819,40819,39528,40852,39529,39531,40565,40565,40771,40569,40695,39566,40820,40821,39580,39598,40698,39602,40577,39644,39646,40581,40581,40582,40853,40853,40776,40777,39683,40700,40854,39697,40702,40585,39724,39727,39741,40855,39747,40822,40855,40822,40589,39747,40855,40704,40705,40706,40780,39803,39804,40708,40856,39814,40709,40857,40782,39858,39860,40597,39873,40783,40824,40600,39891,39897,39899,39899,39907,40603,40603,39918,40858,40859,39919,40785,40714,40825,39953,39953,39965,40860,40607,40787,39976,39976,40718,39989,40788,40003,40005,40789,40021,40719,40033,40044,40720,40720,40057,40059,40790,40722,40076,40076,40088,40861,40826,40094,40096,40096,40105,40108,40111,40723,40862,40124,40126,40616,40143,40145,40796,37530,37522,37521,37516,37508,37505,37488,37487,37475,37474,37473,37461,37449,37442,40828,40727,40188,40863,40729,40620,40864,40730,40206,40622,40623,40732,37352,37347,37345,40627,40798,40830,40799,40735,40629,37289,37289,37283,37282,37277,37270,37268,37268,37267,37257,37249,37241,37240,37236,37229,40255,40630,40831,40865,40287,40801,40297,40803,40305,40314,40319,40325,40833,40333,40834,40866,40867,40638,40361,40362,40804,40384,40384,40641,40395,40835,40407,40868,40408,40418,40644,40744,40836,40837,40837,40442,40869,40838,40453,40870,40459,40839,40648,40648,40474,40485,40750,38722,40751,38728,40752,40840,40491,38775,38779,38786,38796,38797,38797,38813,38815,38818,38840,40655,38859,38872,40871,38859,40871,40655,38872,40501,40656,40656,40659,40754,40754,40810,40811,40661,38941,38942,38942,38947,40506,40506,38980,40662,40841,40507,40663,40663,39012,40665,40872,40666,40667,39041,40669,40670,40843,40673,40759,40515,40676,39127,40815,40520,40873,40816,40845,40874,39177,39179,39194,39195,40680,40681,39220,39222,39237,39238,40528,40875,40846,40530,40847,40848,40683,40876,40849,39307,39309,39315,40850,40877,40877,40818,39353,39364,40765,40539,40539,40766,40543,40543,40688,39434,40550,39454,39465,40693,40769,39487,39487,40559,40562,40562,40819,40852,40565,40569,40878,40565,40878,39529,40695,40820,40879,40821,39598,40880,40774,40698,40577,39643,39644,40581,40581,40853,40777,39683,40854,40583,39697,40585,39723,40881,39724,39741,40589,39770,40882,40882,40704,40855,40882,40855,40589,39782,40705,40780,39803,40708,40856,40709,40595,40883,40709,40883,40856,40857,39858,39860,39860,39873,40884,39891,39899,40603,40603,40858,40885,40885,40859,40785,40714,39953,40860,40607,39976,39989,40788,40005,40006,40720,40059,40886,40790,40076,40861,40887,40826,40096,40096,40108,40110,40124,40616,40725,40888,40143,40796,37530,37521,37518,37516,37505,37504,37489,37488,37475,37474,37461,37460,37450,37449,40828,40727,40863,40889,40729,40864,40730,40730,40622,40731,40829,40623,37352,37347,40627,40234,40890,40798,40799,40735,37289,37282,37268,37257,37256,37249,37240,37239,37239,37236,40255,40630,40865,40891,40287,40297,40803,40803,40314,40892,40319,40833,40893,40894,40333,40866,40867,40361,40895,40896,40362,40384,40835,40868,40897,40897,40408,40644,40744,40837,40869,40745,40838,40870,40459,40648,40485,38728,40840,38754,38758,40491,38779,38779,38786,38797,40898,40655,40871,40898,40871,38872,40655,40898,38818,40656,40754,40811,40506,40662,40899,40506,40899,38942,40662,40841,40663,40665,40872,40667,39039,39041,40670,40843,40759,40674,40674,40515,39127,40900,40815,40873,40816,40874,39159,39177,39194,39195,39195,40681,39220,39220,39237,39238,39238,40875,39262,40529,40846,40847,40848,40876,40901,40901,40849,39309,39315,40877,39353,40539,40543,40902,40539,40902,39364,40543,39434,40548,40691,40550,39465,39487,40562,40903,39487,40903,40693,40562,40852,39529,40878,40904,40905,40878,40905,39529,40904,40878,40569,40773,40821,40880,40774,40577,39612,40581,40777,40906,40581,40906,39643,39681,39683,40583,40701,39697,39723,39782,40780,40907,39782,40907,39776,40908,40856,40883,40908,40883,40595,40856,40908,39803,40909,40857,39860,39860,40884,40783,39891,40603,40885,40885,40785,39934,40786,40714,40860,40910,40607,39989,40788,40006,40011,40720,40886,40060,40613,40790,40861,40887,40096,40110,40911,40124,40725,40888,40796,40158,37516,37504,37499,37490,37489,37475,37474,37460,37459,37450,40828,40912,37450,40912,37459,40727,40889,40729,40729,40730,40731,40829,37352,37350,37348,37347,40234,40913,40890,40799,40735,37282,37281,37268,37256,37255,37249,37239,40255,40265,40630,40891,40287,40803,40892,40319,40893,40894,40894,40866,40867,40867,40895,40914,40896,40384,40395,40897,40644,40743,40743,40744,40869,40745,40870,40747,40459,40485,40807,38728,38754,38758,38779,38797,38815,38872,40656,40915,40915,38818,40898,40915,40898,38872,40656,40811,40916,40662,40663,40917,40917,38942,40899,40917,40899,40662,40665,40667,39037,39037,39039,40670,40843,40674,39127,40900,40873,40918,39159,40679,40919,39159,40919,40816,39177,39195,39220,39238,39262,40920,39238,40920,39220,40529,40847,40921,40848,40901,39309,39313,39315,39353,40922,39364,40902,40922,40902,40543,39364,40922,39363,40543,40548,39437,39465,40851,40923,39465,40923,40691,40562,39529,40924,40924,40693,40903,40924,40903,40562,40905,40925,40926,40905,40926,39529,40925,40905,40904,40773,40880,40927,40773,40927,40574,40774,39612,39614,40777,40928,40929,40929,39643,40906,40929,40906,40777,39681,40583,39693,40584,40701,39723,40930,40780,40823,40930,40823,39797,40780,40930,40931,40907,40931,40932,40907,40932,39776,40931,40907,40780,40933,39803,40908,40933,40908,40595,39803,40933,39798,39860,40783,40934,39860,40934,40909,39884,39891,40885,40786,40860,40935,40786,40935,40605,40910,39989,39991,40060,40613,40861,40861,40887,40110,40911,40725,40794,40936,40888,40158,37517,37516,37499,37492,37490,37475,40937,37459,40912,40937,40912,40828,37459,40937,37474,40731,40829,40938,40731,40938,40729,37349,37348,40234,40913,40799,40735,40735,37281,37278,37268,37255,37254,37249,40255,40257,40265,40891,40939,40832,40287,40892,40894,40867,40914,40914,40896,40395,40897,40743,40869,40745,40747,40806,40940,40459,40807,40751,38728,38758,38779,38815,40941,38779,40941,38758,40942,38818,40915,40942,40915,40656,38818,40942,40943,40656,40916,40661,40663,40665,40944,40944,38942,40917,40944,40917,40663,40945,40670,40812,40945,40812,40513,40670,40945,39037,40842,40843,39127,39176,39177,39220,39262,39264,40946,40946,39220,40920,40946,40920,39262,40529,40921,40848,40848,39309,40947,40534,39313,39353,40948,39363,40922,40948,40922,40543,39363,40948,40764,40543,39437,40690,40851,40949,40950,40950,40691,40923,40950,40923,40851,40951,40693,40924,40951,40924,39529,40693,40951,40554,40926,39554,40952,40926,40952,39529,39554,40926,40925,40953,40574,40927,40953,40927,40880,40574,40953,40954,40774,39614,39615,40928,40955,40956,40956,39643,40929,40956,40929,40928,39681,39693,40584,40584,39723,40957,40958,39798,40933,40958,40933,40595,39798,40958,39797,40783,40600,40959,40959,40909,40934,40959,40934,40783,40711,39884,40885,40860,40960,40961,40961,40605,40935,40961,40935,40860,40910,39991,40788,40861,40110,40962,40861,40962,40060,40862,40911,40794,40936,40158,37531,37492,37475,37474,40828,40963,40964,40964,37474,40937,40964,40937,40828,40965,40729,40938,40938,40829,40966,40938,40966,40965,40729,40965,40967,40729,40967,40727,37349,40234,40628,40735,37278,40968,40735,40968,40913,37250,37249,40257,40832,40892,40969,40894,40914,40970,40894,40970,40319,40914,40395,40741,40869,40443,40971,40869,40971,40897,40940,40807,40750,40972,38758,40941,40972,40941,38815,38758,40972,40751,40656,40661,40973,40656,40973,40974,40942,40974,40975,40942,40975,40943,40974,40942,40656,40976,38942,40944,40976,40944,40665,38942,40976,40661,40977,39037,40945,40945,40513,40978,40945,40978,40977,39037,40977,40979,39037,40979,40665,40842,39127,40844,39176,39220,40946,40946,39264,40980,40946,40980,39176,40848,40947,40981,40848,40981,40529,39310,40534,39353,40948,40690,40982,40948,40982,40764,40690,40948,40543,40949,39473,40983,40983,40691,40950,40983,40950,40949,40984,39529,40952,40952,39554,40985,40952,40985,40984,40951,40984,40986,40951,40986,40554,40984,40951,39529,40953,40774,40987,40953,40987,40954,40774,40953,40880,40955,39677,40988,40988,39643,40956,40988,40956,40955,40584,40957,40989,40584,40989,39681,40595,39832,40990,40990,39797,40958,40990,40958,40595,40991,40909,40959,40991,40959,40600,40909,40991,39842,40600,40711,40885,40960,40992,40993,40993,40605,40961,40993,40961,40960,40788,40011,40994,40788,40994,40910,40995,40060,40962,40995,40962,40110,40060,40995,40720,40862,40794,40996,40827,40936,37531,37492,37474,40964,40964,40963,40997,40964,40997,37492,40829,37350,40998,40829,40998,40999,40965,40999,41000,41000,40727,40967,41000,40967,40965,40999,40965,40966,40999,40966,40829,37350,37349,40628,41001,40913,40968,41001,40968,37278,40913,41001,41002,37253,37250,40257,40832,40969,40739,40970,40741,41003,40970,41003,40319,40741,40970,40914,40443,40745,41004,41004,40897,40971,41004,40971,40443,40750,40751,41005,40750,41005,40940,38815,40497,41006,41006,40751,40972,41006,40972,38815,40976,41007,41008,40976,41008,40661,40976,40665,41009,40976,41009,41007,41010,40661,41008,41008,41007,41011,41008,41011,41010,40974,41010,41012,40974,41012,41013,40975,41013,41014,40975,41014,40943,41013,40975,40974,41010,40974,40973,41010,40973,40661,40513,41015,41016,40513,41016,41017,40977,41017,41018,41018,40665,40979,41018,40979,40977,41017,40977,40978,41017,40978,40513,39076,40842,40844,41019,39176,40980,41019,40980,39264,39176,41019,39174,41020,40529,40981,41020,40981,40947,40529,41020,39265,40947,39310,39353,41021,40764,40982,41021,40982,40690,40764,41021,41022,40986,41023,41024,40986,41024,40554,41023,40986,40984,41025,40984,40985,41025,40985,39554,40984,41025,41023,41026,40554,41024,41026,41024,41023,40554,41026,39473,39615,40954,40987,39615,40987,40774,39677,39681,41027,41027,39643,40988,41027,40988,39677,40957,40881,41028,41028,39681,40989,41028,40989,40957,39832,39838,41029,39832,41029,41030,40990,41030,41031,40990,41031,39797,41030,40990,39832,40600,40885,41032,41032,39842,40991,41032,40991,40600,40992,41033,41034,41034,40605,40993,41034,40993,40992,41035,40910,40994,41035,40994,40011,40910,41035,41036,41037,40720,40995,40995,40110,41038,40995,41038,41037,40720,41037,41039,40720,41039,40033,40862,40996,40726,40827,37531,37530,41040,37492,40997,41040,40997,40963,37492,41040,37495,37350,40628,41041,41041,41042,41043,41041,41043,37350,40999,41042,41044,41044,40727,41000,41044,41000,40999,41042,40999,40998,40998,37350,41043,40998,41043,41042,37278,37277,41045,41045,41002,41001,41045,41001,37278,37253,40257,41046,40832,40739,40319,40741,40835,41047,41047,40319,41003,41047,41003,40741,41048,40940,41005,41048,41005,40751,40940,41048,40806,40497,40943,41049,41049,40751,41006,41049,41006,40497,41017,41050,41051,41051,40665,41018,41051,41018,41017,41052,41017,41016,41052,41016,41015,41017,41052,41050,41053,41054,41055,41053,41055,41050,41054,41053,41056,41054,40665,41051,41051,41050,41055,41051,41055,41054,41057,41010,41058,41057,41058,41056,41010,41057,41059,41013,41059,41060,41060,40943,41014,41060,41014,41013,41059,41013,41012,41059,41012,41010,41007,41056,41058,41058,41010,41011,41058,41011,41007,41054,41007,41009,41054,41009,40665,41007,41054,41056,39074,39076,40844,41061,39174,41019,41061,41019,39264,39174,41061,39172,41062,39265,41020,41062,41020,40947,39265,41062,39264,40947,39353,41022,40690,40691,41063,41063,41022,41021,41063,41021,40690,41064,39473,41026,41064,41026,41023,41065,41023,41025,41065,41025,39554,41023,41065,41064,39473,41064,41066,41066,40691,40983,41066,40983,39473,40954,39615,41067,40954,41067,40879,41068,39681,41028,41028,40881,41069,41028,41069,41068,39681,41068,41070,41070,39643,41027,41070,41027,39681,41071,39842,41032,41071,41032,40885,39842,41071,41072,39842,41072,39838,41033,41036,41073,41073,40605,41034,41073,41034,41033,40011,40789,41074,41074,41036,41035,41074,41035,40011,41075,41037,41076,41075,41076,41077,41037,41075,41078,41039,41078,41079,41039,41079,40033,41078,41039,41037,41038,41077,41076,41038,41076,41037,41077,41038,40110,40111,40862,40726,41080,37495,41040,41080,41040,40963,37495,41080,37496,40628,40237,41081,41081,41082,41083,41081,41083,40628,41042,41082,41084,41084,40727,41044,41084,41044,41042,41082,41042,41041,41041,40628,41083,41041,41083,41082,37277,37268,41085,41085,41002,41045,41085,41045,37277,37253,41046,40736,40832,40319,41086,40832,41086,40632,40835,40897,41087,41087,40319,41047,41087,41047,40835,41088,40751,41049,41049,40943,41089,41049,41089,41088,40751,41088,41090,41090,40806,41048,41090,41048,40751,41015,39074,41091,41091,41092,41093,41091,41093,41015,41094,41092,41095,41095,41096,41097,41095,41097,41094,41092,41094,41098,41098,41015,41093,41098,41093,41092,41056,41096,41099,41099,41100,41101,41099,41101,41056,41059,41100,41102,41102,40943,41060,41102,41060,41059,41100,41059,41057,41057,41056,41101,41057,41101,41100,41096,41056,41053,41053,41050,41103,41053,41103,41096,41094,41050,41052,41052,41015,41098,41052,41098,41094,41050,41094,41097,41097,41096,41103,41097,41103,41050,39074,40844,41104,41105,39172,41061,41105,41061,39264,39172,41105,40679,40947,41022,41106,41106,39264,41062,41106,41062,40947,41066,41107,41108,41066,41108,40691,41107,41066,41064,41109,41064,41065,41065,39554,41110,41065,41110,41109,41064,41109,41111,41064,41111,41107,41112,40691,41108,41108,41107,41113,41108,41113,41112,41063,41112,41114,41063,41114,41022,41112,41063,40691,41115,40879,41067,41115,41067,39615,40879,41115,40695,40881,39741,41116,41116,41117,41118,41116,41118,40881,41068,41117,41119,41119,39643,41070,41119,41070,41068,41117,41068,41069,41069,40881,41118,41069,41118,41117,41071,39934,41120,41120,39838,41072,41120,41072,41071,39934,41071,40885,41121,41036,41074,41121,41074,40789,41036,41121,41122,41073,41122,41123,41073,41123,40605,41122,41073,41036,41079,41124,41125,41079,41125,40033,41124,41079,41078,41126,41078,41075,41126,41075,41077,41078,41126,41124,41127,40033,41125,41127,41125,41124,40033,41127,41128,40111,40726,40827,41129,37496,41080,41129,41080,40963,37496,41129,37499,40237,41130,41131,41131,41132,41133,41131,41133,40237,41082,41132,41134,41134,40727,41084,41134,41084,41082,41132,41082,41081,41081,40237,41133,41081,41133,41132,41135,41002,41085,41135,41085,37268,41002,41135,41130,41136,40632,41086,41136,41086,40319,40632,41136,41137,41138,40897,41004,41138,41004,40745,40897,41138,41139,41087,41139,41140,41087,41140,40319,41139,41087,40897,41090,41141,41142,41090,41142,40806,41141,41090,41088,41143,41088,41089,41143,41089,40943,41088,41143,41141,41144,40806,41142,41144,41142,41141,40806,41144,40745,39074,41104,41145,39074,41145,41146,41147,41146,41148,41148,41149,41150,41148,41150,41147,41146,41147,41151,41146,41151,39074,41096,41149,41152,41152,41153,41154,41152,41154,41096,41100,41153,41155,41155,40943,41102,41155,41102,41100,41153,41100,41099,41099,41096,41154,41099,41154,41153,41149,41096,41095,41149,41095,41092,41147,41092,41091,41091,39074,41151,41091,41151,41147,41092,41147,41150,41092,41150,41149,41156,39264,41106,41106,41022,41157,41106,41157,41156,41105,41156,41158,41105,41158,40679,41156,41105,39264,41159,41160,41161,41159,41161,41107,41160,41159,41162,41163,41162,41164,41163,41164,40570,41162,41163,41160,41165,41107,41161,41165,41161,41160,41107,41165,41166,41167,41112,41168,41167,41168,41166,41112,41167,41169,41114,41169,41170,41114,41170,41022,41169,41114,41112,41113,41166,41168,41113,41168,41112,41166,41113,41107,41164,41109,41171,41164,41171,40570,41109,41164,41162,41111,41162,41159,41111,41159,41107,41162,41111,41109,41110,40570,41171,41110,41171,41109,40570,41110,39554,41115,39617,41172,41115,41172,40695,39617,41115,39615,41173,39838,41120,41173,41120,39934,39838,41173,41174,41030,41174,41175,41031,41175,41176,41031,41176,39797,41175,41031,41030,41174,41030,41029,41174,41029,39838,41123,41177,41178,41123,41178,40605,41177,41123,41122,41179,41122,41121,41179,41121,40789,41122,41179,41177,41180,40605,41178,41180,41178,41177,40605,41180,39936,41181,41124,41182,41181,41182,41183,41124,41181,41184,41127,41184,41185,41127,41185,41128,41184,41127,41124,41126,41183,41182,41126,41182,41124,41183,41126,41077,41186,40111,40827,41187,37499,41129,41129,40963,41188,41129,41188,41187,37499,41187,41189,37499,41189,37517,41190,41130,41135,41135,37268,41191,41135,41191,41190,41130,41190,41192,41130,41192,41193,41132,41193,41194,41132,41194,41195,41134,41195,41196,41134,41196,40727,41195,41134,41132,41193,41132,41131,41193,41131,41130,41197,41137,41136,41197,41136,40319,41137,41197,40278,41198,40745,41144,41144,41141,41199,41144,41199,41198,41200,41141,41143,41143,40943,41201,41143,41201,41200,41141,41200,41202,41202,41198,41199,41202,41199,41141,40745,41198,41203,41203,41204,41205,41203,41205,40745,41139,41204,41206,41206,40319,41140,41206,41140,41139,41204,41139,41138,41138,40745,41205,41138,41205,41204,41207,41208,41209,41207,41209,41149,41208,41207,41210,41211,41210,41212,41211,41212,41213,41210,41211,41208,41214,41149,41209,41214,41209,41208,41149,41214,41215,41216,41153,41217,41216,41217,41215,41153,41216,41218,41155,41218,41219,41155,41219,40943,41218,41155,41153,41152,41215,41217,41152,41217,41153,41215,41152,41149,41212,41146,41220,41212,41220,41213,41146,41212,41210,41148,41210,41207,41148,41207,41149,41210,41148,41146,41145,41213,41220,41145,41220,41146,41213,41145,41104,41221,41222,41223,41221,41223,41166,41222,41221,41224,41225,41224,41226,41225,41226,41227,41224,41225,41222,41228,41166,41223,41228,41223,41222,41166,41228,41229,41230,41169,41231,41230,41231,41229,41169,41230,41232,41170,41232,41233,41170,41233,41022,41232,41170,41169,41167,41229,41231,41167,41231,41169,41229,41167,41166,41226,41160,41234,41226,41234,41227,41160,41226,41224,41165,41224,41221,41165,41221,41166,41224,41165,41160,41163,41227,41234,41163,41234,41160,41227,41163,40570,41235,40695,41172,41235,41172,39617,40695,41235,41227,41236,39936,41237,41236,41237,41238,39936,41236,39934,41174,41238,41239,41175,41239,41240,41240,39797,41176,41240,41176,41175,41239,41175,41174,41236,41174,41173,41236,41173,39934,41174,41236,41238,40789,40719,41241,40789,41241,41242,41177,41242,41243,41243,39936,41180,41243,41180,41177,41242,41177,41179,41242,41179,40789,41244,41184,41245,41244,41245,41186,41184,41244,41246,41185,41246,41247,41185,41247,41128,41246,41185,41184,41181,41186,41245,41181,41245,41184,41186,41181,41183,40827,37530,41248,40827,41248,41186,41189,41249,41250,41189,41250,37517,41249,41189,41187,41251,41187,41188,41251,41188,40963,41187,41251,41249,41252,37517,41250,41252,41250,41249,37517,41252,37518,41253,41195,41254,41253,41254,41255,41195,41253,41256,41196,41256,41257,41196,41257,40727,41256,41196,41195,41194,41255,41254,41194,41254,41195,41255,41194,41193,41192,41258,41259,41192,41259,41193,41258,41192,41190,41260,41190,41191,41260,41191,37268,41190,41260,41258,41261,41193,41259,41261,41259,41258,41193,41261,41255,41257,41262,41263,41257,41263,40727,41262,41257,41256,41264,41256,41253,41264,41253,41255,41256,41264,41262,41265,40727,41263,41265,41263,41262,40727,41265,40963,41266,41204,41267,41267,41268,41269,41267,41269,41266,41206,41266,41270,41206,41270,40319,41266,41206,41204,41198,41268,41267,41267,41204,41203,41267,41203,41198,41202,41271,41272,41202,41272,41198,41271,41202,41200,41273,41200,41201,41273,41201,40943,41200,41273,41271,41274,41198,41272,41274,41272,41271,41198,41274,41268,41266,41275,41276,41276,40319,41270,41276,41270,41266,41277,41266,41269,41277,41269,41268,41266,41277,41275,41197,41276,41278,41197,41278,40278,41276,41197,40319,41276,41275,41279,41279,40278,41278,41279,41278,41276,41213,41280,41281,41281,41282,41283,41281,41283,41213,41284,41282,41285,41285,41286,41287,41285,41287,41284,41282,41284,41288,41288,41213,41283,41288,41283,41282,41215,41286,41289,41289,41290,41291,41289,41291,41215,41218,41290,41292,41292,40943,41219,41292,41219,41218,41290,41218,41216,41216,41215,41291,41216,41291,41290,41286,41215,41214,41214,41208,41293,41214,41293,41286,41284,41208,41211,41211,41213,41288,41211,41288,41284,41208,41284,41287,41287,41286,41293,41287,41293,41208,41294,41295,41296,41294,41296,41297,41295,41294,41229,41295,41298,41299,41299,41297,41296,41299,41296,41295,41232,41297,41300,41300,41022,41233,41300,41233,41232,41294,41232,41230,41294,41230,41229,41232,41294,41297,41222,41301,41302,41302,41229,41228,41302,41228,41222,41303,41222,41225,41303,41225,41227,41222,41303,41301,41304,41295,41305,41304,41305,41301,41295,41304,41298,41295,41229,41302,41302,41301,41305,41302,41305,41295,41306,41307,41308,41308,41156,41309,41308,41309,41306,41310,41306,41311,41310,41311,41298,41306,41310,41307,41312,41158,41313,41312,41313,41307,41158,41312,40679,41158,41156,41308,41308,41307,41313,41308,41313,41158,41314,41157,41315,41314,41315,41297,41157,41314,41156,41157,41022,41300,41300,41297,41315,41300,41315,41157,41306,41297,41299,41299,41298,41311,41299,41311,41306,41314,41306,41309,41314,41309,41156,41306,41314,41297,39617,39624,41316,39617,41316,41317,41235,41317,41318,41235,41318,41227,41317,41235,39617,41319,41320,41321,41319,41321,41242,41322,41319,41323,41322,41323,41324,41319,41322,41320,41243,41320,41325,41243,41325,39936,41243,41242,41321,41243,41321,41320,41326,41241,41327,41326,41327,41328,41241,41326,41242,41241,40719,41329,41329,41328,41327,41329,41327,41241,41319,41328,41330,41330,41324,41323,41330,41323,41319,41319,41242,41326,41319,41326,41328,41331,41332,41333,41331,41333,41334,41332,41331,41238,41332,41324,41335,41335,41334,41333,41335,41333,41332,41239,41334,41336,41336,39797,41240,41336,41240,41239,41239,41238,41331,41239,41331,41334,41237,41320,41337,41237,41337,41238,41237,39936,41325,41237,41325,41320,41332,41320,41322,41332,41322,41324,41332,41238,41337,41332,41337,41320,41338,41248,41339,41338,41339,41340,41248,41338,41186,41248,37530,41341,41341,41340,41339,41341,41339,41248,41246,41340,41342,41342,41128,41247,41342,41247,41246,41338,41246,41244,41338,41244,41186,41246,41338,41340,41343,41262,41344,41343,41344,41345,41343,40963,41265,41343,41265,41262,41264,41345,41344,41264,41344,41262,41264,41255,41346,41264,41346,41345,41261,41347,41348,41261,41348,41255,41347,41261,41258,41349,41258,41260,41349,41260,37268,41258,41349,41347,41350,41255,41348,41350,41348,41347,41350,41345,41346,41350,41346,41255,41351,41343,41352,41351,41352,41353,41343,41351,40963,41343,41345,41354,41354,41353,41352,41354,41352,41343,41249,41353,41355,41355,37518,41252,41355,41252,41249,41351,41249,41251,41351,41251,40963,41249,41351,41353,41356,41275,41357,41356,41357,41358,41275,41356,41359,41279,41359,41360,41279,41360,40278,41359,41279,41275,41277,41358,41357,41277,41357,41275,41358,41277,41268,41274,41361,41362,41274,41362,41268,41361,41274,41271,41363,41271,41273,41363,41273,40943,41271,41363,41361,41364,41268,41362,41364,41362,41361,41268,41364,41358,41360,41365,41366,41360,41366,40278,41365,41360,41359,41367,41359,41356,41367,41356,41358,41359,41367,41365,41368,40278,41366,41368,41366,41365,40278,41368,40276,41280,40900,41369,41369,41370,41371,41369,41371,41280,41372,41370,41373,41373,41374,41375,41373,41375,41372,41370,41372,41376,41376,41280,41371,41376,41371,41370,41286,41374,41377,41377,41378,41379,41377,41379,41286,41290,41378,41380,41380,40943,41292,41380,41292,41290,41378,41290,41289,41289,41286,41379,41289,41379,41378,41374,41286,41285,41285,41282,41381,41285,41381,41374,41372,41282,41281,41281,41280,41376,41281,41376,41372,41282,41372,41375,41375,41374,41381,41375,41381,41282,39624,40578,41382,39624,41382,41383,41317,41383,41384,41384,41227,41318,41384,41318,41317,41383,41317,41316,41383,41316,39624,41334,41385,41386,41386,39797,41336,41386,41336,41334,41385,41334,41335,41335,41324,41387,41335,41387,41385,41388,41324,41330,41388,41330,41328,41389,41328,41329,41389,41329,40719,41328,41389,41388,41324,41388,41390,41390,41385,41387,41390,41387,41324,41391,39797,41386,41391,41386,41385,39797,41391,41392,40931,41392,41393,41393,39776,40932,41393,40932,40931,41392,40931,40930,41392,40930,39797,41342,41394,41395,41342,41395,41128,41394,41342,41340,41396,41340,41341,41396,41341,37530,41340,41396,41394,41397,41128,41395,41397,41395,41394,41128,41397,40719,41398,41353,41399,41398,41399,41400,41353,41398,41401,41355,41401,41402,41355,41402,37518,41401,41355,41353,41354,41400,41399,41354,41399,41353,41400,41354,41345,41350,41403,41404,41350,41404,41345,41403,41350,41347,41405,41347,41349,41405,41349,37268,41347,41405,41403,41406,41345,41404,41406,41404,41403,41345,41406,41400,41402,41407,41408,41402,41408,37518,41407,41402,41401,41409,41401,41398,41409,41398,41400,41401,41409,41407,41410,37518,41408,41410,41408,41407,37518,41410,37530,41411,41365,41412,41411,41412,41413,41365,41411,41414,41368,41414,41415,41368,41415,40276,41414,41368,41365,41367,41413,41412,41367,41412,41365,41413,41367,41358,41364,41416,41417,41364,41417,41358,41416,41364,41361,41418,41361,41363,41418,41363,40943,41361,41418,41416,41419,41358,41417,41419,41417,41416,41358,41419,41413,41415,41420,41421,41415,41421,40276,41420,41415,41414,41422,41414,41411,41422,41411,41413,41414,41422,41420,41423,40276,41421,41423,41421,41420,40276,41423,40631,40900,40918,41424,41424,41425,41426,41424,41426,40900,41427,41425,41428,41428,41429,41430,41428,41430,41427,41425,41427,41431,41431,40900,41426,41431,41426,41425,41374,41429,41432,41432,41433,41434,41432,41434,41374,41378,41433,41435,41435,40943,41380,41435,41380,41378,41433,41378,41377,41377,41374,41434,41377,41434,41433,41429,41374,41373,41373,41370,41436,41373,41436,41429,41427,41370,41369,41369,40900,41431,41369,41431,41427,41370,41427,41430,41430,41429,41436,41430,41436,41370,40578,39635,41437,41437,41438,41439,41437,41439,40578,41383,41438,41440,41440,41227,41384,41440,41384,41383,41438,41383,41382,41382,40578,41439,41382,41439,41438,41441,41392,41442,41441,41442,41443,41392,41441,41444,41393,41444,41445,41393,41445,39776,41444,41393,41392,41391,41443,41442,41391,41442,41392,41443,41391,41385,41390,41446,41447,41390,41447,41385,41446,41390,41388,41448,41388,41389,41389,40719,41449,41389,41449,41448,41388,41448,41450,41388,41450,41446,41451,41385,41447,41447,41446,41452,41447,41452,41451,41385,41451,41453,41385,41453,41443,41445,41454,41455,41445,41455,39776,41454,41445,41444,41456,41444,41441,41441,41443,41457,41441,41457,41456,41444,41456,41458,41444,41458,41454,41459,39776,41455,41455,41454,41460,41455,41460,41459,39776,41459,41461,39776,41461,39770,41462,41463,41464,41462,41464,41465,41463,41462,41466,41463,41400,41467,41467,41465,41464,41467,41464,41463,41407,41466,41468,41468,37530,41410,41468,41410,41407,41463,41407,41409,41463,41409,41400,41407,41463,41466,41403,41469,41470,41470,41400,41406,41470,41406,41403,41471,41403,41405,41471,41405,37268,41403,41471,41469,41470,41472,41473,41470,41473,41400,41472,41470,41469,41472,41465,41467,41467,41400,41473,41467,41473,41472,41474,41466,41475,41475,41476,41477,41475,41477,41474,41468,41474,41478,41468,41478,37530,41474,41468,41466,41462,41479,41480,41462,41480,41466,41479,41462,41465,41479,41476,41475,41475,41466,41480,41475,41480,41479,41481,41482,41483,41481,41483,41394,41482,41481,41476,41482,40719,41397,41397,41394,41483,41397,41483,41482,41474,41394,41396,41396,37530,41478,41396,41478,41474,41481,41474,41477,41481,41477,41476,41474,41481,41394,41484,41420,41485,41484,41485,41486,41420,41484,41487,41423,41487,41488,41423,41488,40631,41487,41423,41420,41422,41486,41485,41422,41485,41420,41486,41422,41413,41419,41489,41490,41419,41490,41413,41489,41419,41416,41491,41416,41418,41491,41418,40943,41416,41491,41489,41492,41413,41490,41492,41490,41489,41413,41492,41486,41488,41493,41494,41488,41494,40631,41493,41488,41487,41495,41487,41484,41495,41484,41486,41487,41495,41493,41496,40631,41494,41496,41494,41493,40631,41496,40939,40918,41497,41498,41498,41499,41500,41498,41500,40918,41501,41499,41502,41502,41503,41504,41502,41504,41501,41499,41501,41505,41505,40918,41500,41505,41500,41499,41429,41503,41506,41506,41507,41508,41506,41508,41429,41433,41507,41509,41509,40943,41435,41509,41435,41433,41507,41433,41432,41432,41429,41508,41432,41508,41507,41503,41429,41428,41428,41425,41510,41428,41510,41503,41501,41425,41424,41424,40918,41505,41424,41505,41501,41425,41501,41504,41504,41503,41510,41504,41510,41425,39635,39638,41511,41511,41512,41513,41511,41513,39635,41438,41512,41514,41514,41227,41440,41514,41440,41438,41512,41438,41437,41437,39635,41513,41437,41513,41512,41515,41516,41517,41515,41517,41518,41515,41519,41520,41515,41520,41516,41521,41516,41522,41521,41522,41523,41521,41518,41517,41521,41517,41516,41524,41525,41526,41524,41526,41518,41524,41443,41527,41524,41527,41525,41515,41525,41528,41515,41528,41519,41515,41518,41526,41515,41526,41525,41529,41530,41531,41529,41531,41532,41529,41519,41533,41529,41533,41530,41534,41530,41535,41534,41535,37268,41534,41532,41531,41534,41531,41530,41536,41516,41537,41536,41537,41532,41536,41523,41522,41536,41522,41516,41529,41516,41520,41529,41520,41519,41529,41532,41537,41529,41537,41516,41538,41539,41540,41538,41540,41541,41538,41454,41542,41538,41542,41539,41543,41539,41544,41543,41544,41523,41543,41541,41540,41543,41540,41539,41545,41459,41546,41545,41546,41541,41545,39770,41461,41545,41461,41459,41538,41459,41460,41538,41460,41454,41538,41541,41546,41538,41546,41459,41547,41456,41548,41547,41548,41518,41547,41454,41458,41547,41458,41456,41524,41456,41457,41524,41457,41443,41524,41518,41548,41524,41548,41456,41521,41539,41549,41521,41549,41518,41521,41523,41544,41521,41544,41539,41547,41539,41542,41547,41542,41454,41547,41518,41549,41547,41549,41539,41550,41551,41552,41550,41552,41553,41550,41446,41554,41550,41554,41551,41555,41551,41556,41555,41556,41465,41555,41553,41552,41555,41552,41551,41557,41451,41558,41557,41558,41553,41557,41443,41453,41557,41453,41451,41550,41451,41452,41550,41452,41446,41550,41553,41558,41550,41558,41451,41559,41448,41560,41559,41560,41476,41559,41446,41450,41559,41450,41448,41482,41448,41449,41482,41449,40719,41482,41476,41560,41482,41560,41448,41479,41551,41561,41479,41561,41476,41479,41465,41556,41479,41556,41551,41559,41551,41554,41559,41554,41446,41559,41476,41561,41559,41561,41551,41562,41563,41564,41562,41564,41469,41562,41519,41565,41562,41565,41563,41472,41563,41566,41472,41566,41465,41472,41469,41564,41472,41564,41563,41471,41530,41567,41471,41567,41469,41471,37268,41535,41471,41535,41530,41562,41530,41533,41562,41533,41519,41562,41469,41567,41562,41567,41530,41568,41525,41569,41568,41569,41553,41568,41519,41528,41568,41528,41525,41557,41525,41527,41557,41527,41443,41557,41553,41569,41557,41569,41525,41555,41563,41570,41555,41570,41553,41555,41465,41566,41555,41566,41563,41568,41563,41565,41568,41565,41519,41568,41553,41570,41568,41570,41563,41571,41493,41572,41571,41572,41573,41493,41571,41574,41496,41574,41575,41496,41575,40939,41574,41496,41493,41495,41573,41572,41495,41572,41493,41573,41495,41486,41492,41576,41577,41492,41577,41486,41576,41492,41489,41578,41489,41491,41578,41491,40943,41489,41578,41576,41579,41486,41577,41579,41577,41576,41486,41579,41573,41575,41580,41581,41575,41581,40939,41580,41575,41574,41582,41574,41571,41582,41571,41573,41574,41582,41580,41583,40939,41581,41583,41581,41580,40939,41583,40265,41497,41584,41585,41585,41586,41587,41585,41587,41497,41588,41586,41589,41589,41590,41591,41589,41591,41588,41586,41588,41592,41592,41497,41587,41592,41587,41586,41503,41590,41593,41593,41594,41595,41593,41595,41503,41507,41594,41596,41596,40943,41509,41596,41509,41507,41594,41507,41506,41506,41503,41595,41506,41595,41594,41590,41503,41502,41502,41499,41597,41502,41597,41590,41588,41499,41498,41498,41497,41592,41498,41592,41588,41499,41588,41591,41591,41590,41597,41591,41597,41499,41298,39638,41598,41598,41599,41600,41598,41600,41298,41307,41599,41601,41601,40679,41312,41601,41312,41307,41599,41307,41310,41310,41298,41600,41310,41600,41599,39638,41298,41304,41304,41301,41602,41304,41602,39638,41512,41301,41303,41303,41227,41514,41303,41514,41512,41301,41512,41511,41511,39638,41602,41511,41602,41301,41603,41541,41604,41603,41604,41605,41541,41603,41606,41545,41606,41607,41545,41607,39770,41606,41545,41541,41543,41605,41604,41543,41604,41541,41605,41543,41523,41536,41608,41609,41536,41609,41523,41608,41536,41532,41610,41532,41534,41534,37268,41611,41534,41611,41610,41532,41610,41612,41532,41612,41608,41613,41523,41609,41609,41608,41614,41609,41614,41613,41523,41613,41605,41607,41615,41616,41607,41616,39770,41615,41607,41606,41617,41606,41603,41617,41603,41605,41606,41617,41615,41618,39770,41616,41618,41616,41615,41618,40704,40882,41618,40882,39770,41619,41580,41620,41619,41620,41621,41580,41619,41622,41583,41622,41623,41583,41623,40265,41622,41583,41580,41582,41621,41620,41582,41620,41580,41621,41582,41573,41579,41624,41625,41579,41625,41573,41624,41579,41576,41626,41576,41578,41626,41578,40943,41576,41626,41624,41627,41573,41625,41627,41625,41624,41573,41627,41621,41623,41628,41629,41623,41629,40265,41628,41623,41622,41630,41622,41619,41630,41619,41621,41622,41630,41628,41631,40265,41629,41631,41629,41628,40265,41631,40263,41584,41632,41633,41633,41634,41635,41633,41635,41584,41636,41634,41637,41637,41638,41639,41637,41639,41636,41634,41636,41640,41640,41584,41635,41640,41635,41634,41590,41638,41641,41641,41642,41643,41641,41643,41590,41594,41642,41644,41644,40943,41596,41644,41596,41594,41642,41594,41593,41593,41590,41643,41593,41643,41642,41638,41590,41589,41589,41586,41645,41589,41645,41638,41636,41586,41585,41585,41584,41640,41585,41640,41636,41586,41636,41639,41639,41638,41645,41639,41645,41586,41646,41599,41647,41646,41647,39640,41599,41646,41648,41601,41648,41649,41601,41649,40679,41648,41601,41599,41598,39640,41647,41598,41647,41599,39640,41598,39638,41650,41615,41651,41650,41651,41652,41615,41650,41653,41618,41653,41654,41618,41654,40704,41653,41618,41615,41617,41652,41651,41617,41651,41615,41652,41617,41605,41613,41655,41656,41613,41656,41605,41655,41613,41614,41655,41614,41608,41657,41608,41612,41657,41612,41610,41658,41610,41611,41658,41611,37268,41610,41658,41657,41608,41657,41659,41608,41659,41655,41660,41605,41656,41656,41655,41661,41656,41661,41660,41605,41660,41662,41605,41662,41652,41654,41663,41664,41654,41664,40704,41663,41654,41653,41665,41653,41650,41650,41652,41666,41650,41666,41665,41653,41665,41667,41653,41667,41663,41668,40704,41664,41664,41663,41669,41664,41669,41668,40704,41668,39741,41670,41628,41671,41670,41671,41672,41628,41670,41673,41631,41673,41674,41631,41674,40263,41673,41631,41628,41630,41672,41671,41630,41671,41628,41672,41630,41621,41627,41675,41676,41627,41676,41621,41675,41627,41624,41677,41624,41626,41677,41626,40943,41624,41677,41675,41678,41621,41676,41678,41676,41675,41621,41678,41672,41674,41679,41680,41674,41680,40263,41679,41674,41673,41681,41673,41670,41681,41670,41672,41673,41681,41679,41682,40263,41680,41682,41680,41679,40263,41682,40800,41649,41683,41684,41649,41684,40679,41683,41649,41648,41685,41648,41646,41685,41646,39640,41648,41685,41683,41686,40679,41684,41686,41684,41683,41686,40816,40919,41686,40919,40679,41663,41687,41688,41663,41688,41689,41668,41689,41690,41668,41690,39741,41689,41668,41669,41689,41669,41663,41687,41663,41667,41687,41667,41665,41691,41665,41666,41691,41666,41652,41665,41691,41687,41660,41692,41693,41693,41652,41662,41693,41662,41660,41692,41660,41661,41692,41661,41655,41694,41655,41659,41694,41659,41657,41695,41657,41658,41695,41658,37268,41657,41695,41694,41655,41694,41696,41655,41696,41692,41697,41652,41693,41697,41693,41692,41652,41697,41698,41691,41698,41699,41691,41699,41687,41698,41691,41652,41690,41700,41701,41690,41701,39741,41700,41690,41689,41702,41689,41688,41702,41688,41687,41689,41702,41700,41703,39741,41701,41703,41701,41700,41703,41704,41705,41703,41705,39741,41706,41117,41707,41706,41707,41704,41117,41706,41708,41119,41708,41709,41119,41709,39643,41708,41119,41117,41116,41704,41707,41116,41707,41117,41116,39741,41705,41116,41705,41704,41710,41679,41711,41710,41711,41712,41679,41710,41713,41682,41713,41714,41682,41714,40800,41713,41682,41679,41681,41712,41711,41681,41711,41679,41712,41681,41672,41678,41715,41716,41678,41716,41672,41715,41678,41675,41717,41675,41677,41717,41677,40943,41675,41717,41715,41718,41672,41716,41718,41716,41715,41672,41718,41712,41714,41719,41720,41714,41720,40800,41719,41714,41713,41721,41713,41710,41721,41710,41712,41713,41721,41719,41722,40800,41720,41722,41720,41719,40800,41722,40736,41686,41723,41724,41686,41724,40816,41723,41686,41683,41725,41683,41685,41725,41685,39640,41683,41725,41723,41726,40816,41724,41726,41724,41723,40816,41726,41727,41728,41729,41730,41728,41730,41704,41729,41728,41731,41732,41731,41733,41732,41733,41734,41731,41732,41729,41735,41704,41730,41735,41730,41729,41704,41735,41736,41737,41708,41738,41737,41738,41736,41708,41737,41739,41709,41739,41740,41709,41740,39643,41739,41709,41708,41706,41736,41738,41706,41738,41708,41736,41706,41704,41733,41700,41741,41733,41741,41734,41700,41733,41731,41703,41731,41728,41703,41728,41704,41731,41703,41700,41702,41734,41741,41702,41741,41700,41734,41702,41687,41742,41698,41743,41742,41743,41744,41698,41742,41745,41699,41745,41746,41699,41746,41687,41745,41699,41698,41697,41744,41743,41697,41743,41698,41744,41697,41692,41696,41747,41748,41696,41748,41692,41747,41696,41694,41749,41694,41695,41749,41695,37268,41694,41749,41747,41750,41692,41748,41750,41748,41747,41692,41750,41744,41746,41751,41752,41746,41752,41687,41751,41746,41745,41753,41745,41742,41753,41742,41744,41745,41753,41751,41754,41687,41752,41754,41752,41751,41687,41754,41734,41755,41739,41756,41755,41756,41757,41739,41755,41758,41740,41758,41759,41740,41759,39643,41758,41740,41739,41737,41757,41756,41737,41756,41739,41757,41737,41736,41735,41760,41761,41735,41761,41736,41760,41735,41729,41762,41729,41732,41762,41732,41734,41729,41762,41760,41763,41736,41761,41763,41761,41760,41736,41763,41757,41759,41764,41765,41759,41765,39643,41764,41759,41758,41766,41758,41755,41766,41755,41757,41758,41766,41764,41767,39643,41765,41767,41765,41764,39643,41767,39641,41768,41719,41769,41768,41769,41770,41719,41768,41771,41722,41771,41772,41722,41772,40736,41771,41722,41719,41721,41770,41769,41721,41769,41719,41770,41721,41712,41718,41773,41774,41718,41774,41712,41773,41718,41715,41775,41715,41717,41775,41717,40943,41715,41775,41773,41776,41712,41774,41776,41774,41773,41712,41776,41770,41772,41777,41778,41772,41778,40736,41777,41772,41771,41779,41771,41768,41779,41768,41770,41771,41779,41777,41780,40736,41778,41780,41778,41777,40736,41780,37253,41726,41781,41782,41726,41782,41727,41781,41726,41723,41783,41723,41725,41783,41725,39640,41723,41783,41781,41784,41727,41782,41784,41782,41781,41727,41784,41785,41786,41787,41788,41786,41788,41789,41787,41786,41790,41791,41790,41792,41791,41792,41734,41790,41791,41787,41793,41789,41788,41793,41788,41787,41789,41793,41794,41795,41796,41797,41795,41797,41794,41796,41795,41798,41799,41798,41800,41799,41800,37254,41798,41799,41796,41801,41794,41797,41801,41797,41796,41794,41801,41789,41792,41802,41803,41792,41803,41734,41802,41792,41790,41804,41790,41786,41804,41786,41789,41790,41804,41802,41805,41734,41803,41805,41803,41802,41734,41805,41806,41807,41808,41809,41807,41809,41757,41808,41807,41810,41811,41810,41812,41811,41812,41806,41810,41811,41808,41813,41757,41809,41813,41809,41808,41757,41813,41814,41815,41764,41816,41815,41816,41814,41764,41815,41817,41767,41817,41818,41767,41818,39641,41817,41767,41764,41766,41814,41816,41766,41816,41764,41814,41766,41757,41812,41760,41819,41812,41819,41806,41760,41812,41810,41763,41810,41807,41763,41807,41757,41810,41763,41760,41762,41806,41819,41762,41819,41760,41806,41762,41734,41820,41798,41821,41820,41821,41744,41798,41820,41822,41800,41822,41823,41800,41823,37254,41822,41800,41798,41795,41744,41821,41795,41821,41798,41744,41795,41794,41793,41751,41824,41793,41824,41794,41751,41793,41787,41754,41787,41791,41754,41791,41734,41787,41754,41751,41753,41794,41824,41753,41824,41751,41794,41753,41744,41823,41747,41825,41823,41825,37254,41747,41823,41822,41750,41822,41820,41750,41820,41744,41822,41750,41747,41749,37254,41825,41749,41825,41747,37254,41749,37268,41826,41777,41827,41826,41827,41828,41777,41826,41829,41780,41829,41830,41780,41830,37253,41829,41780,41777,41779,41828,41827,41779,41827,41777,41828,41779,41770,41776,41831,41832,41776,41832,41770,41831,41776,41773,41833,41773,41775,41833,41775,40943,41773,41833,41831,41834,41770,41832,41834,41832,41831,41770,41834,41828,41830,41835,41836,41830,41836,37253,41835,41830,41829,41837,41829,41826,41837,41826,41828,41829,41837,41835,41838,37253,41836,41838,41836,41835,37253,41838,37254,41784,41839,41840,41784,41840,41785,41839,41784,41781,41841,41781,41783,41841,41783,39640,41781,41841,41839,41842,41785,41840,41842,41840,41839,41785,41842,41632,41843,41844,41845,41843,41845,41846,41843,41847,41848,41843,41848,41844,41849,41844,41850,41849,41850,41638,41849,41846,41845,41849,41845,41844,41851,41852,41853,41851,41853,41846,41851,41854,41855,41851,41855,41852,41843,41852,41856,41843,41856,41847,41843,41846,41853,41843,41853,41852,41857,41858,41859,41857,41859,41642,41857,41847,41860,41857,41860,41858,41644,41858,41861,41644,41861,40943,41644,41642,41859,41644,41859,41858,41641,41844,41862,41641,41862,41642,41641,41638,41850,41641,41850,41844,41857,41844,41848,41857,41848,41847,41857,41642,41862,41857,41862,41844,41863,41864,41865,41863,41865,41634,41863,41866,41867,41863,41867,41864,41637,41864,41868,41637,41868,41638,41637,41634,41865,41637,41865,41864,41633,41869,41870,41633,41870,41634,41633,41632,41871,41633,41871,41869,41863,41869,41872,41863,41872,41866,41863,41634,41870,41863,41870,41869,41873,41874,41875,41873,41875,41846,41873,41866,41876,41873,41876,41874,41851,41874,41877,41851,41877,41854,41851,41846,41875,41851,41875,41874,41849,41864,41878,41849,41878,41846,41849,41638,41868,41849,41868,41864,41873,41864,41867,41873,41867,41866,41873,41846,41878,41873,41878,41864,41879,41880,41881,41879,41881,41882,41879,41883,41884,41879,41884,41880,41885,41880,41886,41885,41886,41828,41885,41882,41881,41885,41881,41880,41887,41888,41889,41887,41889,41882,41887,41854,41890,41887,41890,41888,41879,41888,41891,41879,41891,41883,41879,41882,41889,41879,41889,41888,41892,41893,41894,41892,41894,41835,41892,41883,41895,41892,41895,41893,41838,41893,41896,41838,41896,37254,41838,41835,41894,41838,41894,41893,41837,41880,41897,41837,41897,41835,41837,41828,41886,41837,41886,41880,41892,41880,41884,41892,41884,41883,41892,41835,41897,41892,41897,41880,41898,41899,41900,41898,41900,41831,41898,41847,41901,41898,41901,41899,41834,41899,41902,41834,41902,41828,41834,41831,41900,41834,41900,41899,41833,41858,41903,41833,41903,41831,41833,40943,41861,41833,41861,41858,41898,41858,41860,41898,41860,41847,41898,41831,41903,41898,41903,41858,41904,41852,41905,41904,41905,41882,41904,41847,41856,41904,41856,41852,41887,41852,41855,41887,41855,41854,41887,41882,41905,41887,41905,41852,41885,41899,41906,41885,41906,41882,41885,41828,41902,41885,41902,41899,41904,41899,41901,41904,41901,41847,41904,41882,41906,41904,41906,41899,41907,41839,41908,41907,41908,39641,41839,41907,41909,41842,41909,41910,41842,41910,41632,41909,41842,41839,41841,39641,41908,41841,41908,41839,39641,41841,39640,41911,41912,41913,41911,41913,41909,41911,41814,41914,41911,41914,41912,41910,41912,41915,41910,41915,41632,41910,41909,41913,41910,41913,41912,41907,41817,41916,41907,41916,41909,41907,39641,41818,41907,41818,41817,41911,41817,41815,41911,41815,41814,41911,41909,41916,41911,41916,41817,41917,41808,41918,41917,41918,41919,41917,41814,41813,41917,41813,41808,41920,41808,41811,41920,41811,41806,41920,41919,41918,41920,41918,41808,41921,41912,41922,41921,41922,41919,41921,41632,41915,41921,41915,41912,41917,41912,41914,41917,41914,41814,41917,41919,41922,41917,41922,41912,41923,41802,41924,41923,41924,41854,41923,41806,41805,41923,41805,41802,41925,41802,41804,41925,41804,41789,41925,41854,41924,41925,41924,41802,41883,41789,41801,41883,41801,41796,41893,41796,41799,41799,37254,41896,41799,41896,41893,41796,41893,41895,41796,41895,41883,41789,41883,41891,41789,41891,41888,41925,41888,41890,41925,41890,41854,41888,41925,41789,41923,41874,41926,41923,41926,41806,41923,41854,41877,41923,41877,41874,41927,41874,41876,41927,41876,41866,41927,41806,41926,41927,41926,41874,41919,41866,41872,41919,41872,41869,41921,41869,41871,41921,41871,41632,41869,41921,41919,41919,41920,41928,41919,41928,41866,41920,41806,41927,41927,41866,41928,41927,41928,41920,41929,41930,41931,41932,41933,41934,41934,41935,41936,41937,41938,41939,41939,41940,41941,41941,41942,41943,41943,41944,41945,41946,41947,41948,41949,41950,41951,41951,41952,41953,41953,41954,41955,41956,41957,41958,41958,41959,41960,41960,41961,41962,41962,41963,41964,41965,41966,41967,41967,41968,41969,41970,41971,41972,41972,41973,41974,41975,41976,41977,41977,41978,41979,41979,41980,41981,41982,41983,41984,41984,41985,41986,41987,41988,41989,41990,41991,41992,41993,41994,41995,41995,41996,41997,41997,41929,41931,41932,41934,41936,41937,41939,41941,41941,41943,41945,41946,41948,41998,41949,41951,41953,41958,41960,41962,41962,41964,41965,41965,41967,41969,41999,41970,41972,41972,41974,42000,42001,41975,41977,41982,41984,41986,41986,41987,41989,41993,41995,41997,41997,41931,41932,41932,41936,41937,41941,41945,41946,41946,41998,41949,41949,41953,41955,41956,41958,41962,41962,41965,41969,41999,41972,42000,42001,41977,41979,41981,41982,41986,41992,41993,41997,41997,41932,41937,41937,41941,41946,41946,41949,41955,41956,41962,41969,41969,41999,42000,42001,41979,41981,41981,41986,41989,41990,41992,41997,41997,41937,41946,41946,41955,41956,41956,41969,42000,42001,41981,41989,41990,41997,41946,41946,41956,42000,42000,42001,41989,41989,41990,41946,41946,42000,41989,42002,42003,42004,42005,42006,42007,42007,42008,42009,42010,42011,42012,42013,42014,42015,42016,42017,42018,42019,42020,42021,42021,42022,42023,42024,42025,42026,42027,42028,42029,42029,42030,42031,42031,42032,42033,42033,42034,42035,42035,42036,42037,42038,42039,42040,42040,42041,42042,42042,42043,42044,42044,42045,42046,42046,42047,42048,42049,42050,42051,42052,42053,42054,42054,42055,42056,42057,42058,42059,42060,42061,42062,42062,42063,42064,42065,42066,42067,42068,42069,42070,42070,42071,42072,42073,42074,42075,42076,42077,42078,42078,42079,42080,42081,42082,42083,42084,42085,42086,42087,42002,42004,42007,42009,42088,42089,42010,42012,42013,42015,42090,42091,42016,42018,42019,42021,42023,42092,42024,42026,42093,42027,42029,42029,42031,42033,42033,42035,42037,42038,42040,42042,42044,42046,42048,42094,42052,42054,42054,42056,42095,42057,42059,42060,42068,42070,42072,42096,42073,42075,42075,42076,42078,42078,42080,42081,42081,42083,42084,42086,42087,42004,42005,42007,42088,42089,42012,42013,42091,42018,42019,42019,42023,42097,42097,42092,42026,42093,42029,42033,42038,42042,42044,42044,42048,42098,42094,42054,42095,42057,42060,42062,42067,42068,42072,42096,42075,42078,42081,42084,42086,42086,42004,42005,42089,42013,42090,42090,42091,42019,42019,42097,42026,42026,42093,42033,42099,42038,42044,42044,42098,42100,42051,42094,42095,42065,42067,42072,42101,42096,42078,42081,42086,42005,42088,42089,42090,42090,42019,42026,42026,42033,42037,42037,42099,42044,42044,42100,42102,42049,42051,42095,42065,42072,42103,42101,42078,42081,42081,42005,42088,42026,42037,42044,42049,42095,42104,42065,42103,42101,42101,42081,42088,42026,42044,42102,42049,42104,42057,42065,42101,42088,42026,42102,42105,42049,42057,42062,42106,42065,42088,42026,42105,42049,42106,42088,42090,42090,42026,42049,42064,42106,42090,42090,42049,42062,42062,42064,42090,42018,42017,42107,42107,42108,42109,42109,42022,42021,42020,42019,42018,42018,42107,42109,42109,42021,42020,42020,42018,42109,42110,42071,42070,42069,42068,42067,42066,42065,42106,42106,42064,42063,42063,42062,42061,42061,42060,42059,42058,42057,42104,42104,42095,42056,42053,42052,42094,42094,42051,42050,42050,42049,42105,42105,42102,42100,42100,42098,42048,42048,42047,42111,42112,42113,42114,42115,42110,42070,42069,42067,42066,42066,42106,42063,42063,42061,42059,42058,42104,42056,42053,42094,42050,42050,42105,42100,42100,42048,42111,42111,42112,42114,42114,42115,42070,42069,42066,42063,42059,42058,42056,42053,42050,42100,42100,42111,42114,42114,42070,42069,42069,42063,42059,42059,42056,42055,42053,42100,42114,42114,42069,42059,42059,42055,42054,42054,42053,42114,42114,42059,42054,42116,42117,42118,42119,42120,42121,42122,42123,42124,42124,42125,42126,42127,42012,42011,42011,42010,42089,42089,42088,42009,42008,42007,42006,42006,42005,42004,42003,42128,42129,42130,42131,42132,42132,42133,42134,42135,42136,42137,42137,42138,42139,42140,42141,42142,42142,42143,42144,42144,42145,42146,42147,42148,42149,42149,42150,42151,42152,42116,42118,42119,42121,42122,42124,42126,42127,42127,42011,42089,42008,42006,42004,42003,42129,42153,42130,42132,42134,42154,42135,42137,42155,42140,42142,42142,42144,42146,42147,42149,42151,42152,42118,42119,42119,42122,42124,42124,42127,42089,42009,42008,42004,42004,42003,42153,42153,42130,42134,42154,42137,42139,42155,42142,42146,42147,42151,42152,42152,42119,42124,42124,42089,42009,42009,42004,42153,42153,42134,42156,42157,42154,42139,42158,42155,42146,42159,42147,42152,42152,42124,42009,42009,42153,42156,42160,42157,42139,42161,42158,42146,42159,42152,42009,42009,42156,42162,42160,42139,42161,42161,42146,42159,42159,42009,42162,42160,42161,42159,42159,42162,42163,42164,42160,42159,42159,42163,42164,42165,42166,42167,42167,42168,42169,42170,42171,42172,42172,42173,42174,42174,42175,42117,42117,42116,42152,42148,42147,42159,42141,42140,42155,42155,42158,42161,42161,42139,42138,42136,42135,42154,42154,42157,42160,42160,42164,42163,42163,42162,42156,42156,42134,42133,42131,42130,42153,42128,42176,42002,42002,42087,42086,42085,42084,42083,42082,42081,42080,42079,42078,42077,42077,42076,42075,42075,42074,42177,42178,42179,42180,42181,42182,42183,42183,42184,42185,42186,42187,42188,42189,42190,42191,42192,42193,42194,42195,42196,42197,42198,42199,42200,42200,42201,42202,42202,42203,42204,42205,42206,42207,42207,42208,42209,42210,42211,42212,42212,42213,42214,42214,42215,42216,42216,42217,42218,42218,42219,42220,42221,42222,42223,42224,42225,42226,42226,42227,42228,42229,42230,42231,42232,42233,42234,42234,42235,42236,42236,42237,42238,42239,42240,42241,42242,42243,42244,42245,42246,42247,42247,42248,42249,42249,42250,42251,42251,42252,42253,42254,42255,42256,42256,42257,42258,42258,42259,42260,42261,42165,42167,42167,42169,42170,42172,42174,42117,42117,42152,42151,42149,42148,42159,42141,42155,42161,42136,42154,42160,42160,42163,42156,42131,42153,42129,42129,42128,42002,42002,42086,42085,42082,42080,42079,42077,42075,42177,42177,42178,42180,42180,42181,42183,42183,42185,42186,42189,42191,42192,42192,42194,42195,42195,42197,42262,42198,42200,42202,42263,42205,42207,42207,42209,42264,42210,42212,42214,42214,42216,42218,42218,42220,42221,42221,42223,42265,42266,42224,42226,42226,42228,42267,42232,42234,42236,42236,42238,42239,42239,42241,42268,42268,42242,42244,42244,42245,42247,42247,42249,42251,42269,42254,42256,42258,42260,42270,42261,42167,42170,42172,42117,42151,42149,42159,42146,42141,42161,42138,42136,42160,42156,42131,42129,42002,42002,42085,42083,42082,42079,42077,42077,42177,42180,42180,42183,42186,42192,42195,42262,42262,42198,42202,42263,42207,42264,42210,42214,42218,42218,42221,42265,42266,42226,42267,42232,42236,42239,42244,42247,42251,42269,42256,42258,42270,42261,42170,42170,42172,42151,42149,42146,42145,42142,42141,42138,42136,42156,42133,42131,42002,42083,42083,42082,42077,42077,42180,42186,42262,42202,42271,42262,42271,42192,42272,42263,42264,42210,42218,42265,42273,42266,42267,42231,42232,42239,42268,42244,42251,42269,42258,42270,42270,42170,42151,42149,42145,42144,42142,42138,42137,42136,42133,42132,42132,42131,42083,42083,42077,42186,42274,42192,42271,42274,42271,42202,42192,42274,42189,42204,42272,42264,42275,42210,42265,42276,42273,42267,42231,42239,42268,42268,42251,42253,42269,42270,42151,42137,42136,42132,42132,42083,42186,42277,42189,42274,42277,42274,42202,42189,42277,42188,42275,42265,42278,42279,42276,42267,42229,42231,42268,42268,42253,42269,42269,42151,42150,42137,42132,42186,42280,42188,42277,42280,42277,42202,42188,42280,42186,42275,42278,42279,42279,42267,42281,42282,42229,42268,42268,42269,42150,42142,42137,42186,42202,42204,42283,42283,42186,42280,42283,42280,42202,42284,42275,42279,42279,42281,42285,42268,42150,42286,42268,42286,42282,42143,42142,42186,42204,42264,42287,42204,42287,42288,42283,42288,42289,42283,42289,42186,42288,42283,42204,42284,42279,42285,42290,42282,42286,42290,42286,42150,42282,42290,42285,42144,42143,42186,42264,42291,42292,42292,42293,42294,42292,42294,42264,42288,42293,42295,42295,42186,42289,42295,42289,42288,42293,42288,42287,42287,42264,42294,42287,42294,42293,42296,42284,42285,42290,42149,42297,42290,42297,42285,42149,42290,42150,42149,42144,42186,42291,42296,42298,42298,42299,42300,42298,42300,42291,42293,42299,42301,42301,42186,42295,42301,42295,42293,42299,42293,42292,42292,42291,42300,42292,42300,42299,42302,42285,42297,42302,42297,42149,42285,42302,42296,42149,42186,42301,42301,42299,42303,42301,42303,42149,42302,42299,42298,42302,42298,42296,42302,42149,42303,42302,42303,42299,42304,42305,42306,42306,42307,42308,42308,42309,42310,42311,42312,42313,42314,42315,42316,42316,42317,42318,42319,42320,42321,42322,42323,42324,42324,42325,42326,42327,42328,42329,42329,42330,42331,42332,42333,42334,42335,42336,42337,42338,42339,42340,42340,42341,42342,42343,42344,42345,42346,42347,42348,42348,42349,42350,42351,42352,42353,42353,42354,42355,42355,42356,42357,42358,42359,42360,42361,42362,42363,42364,42365,42366,42366,42367,42368,42369,42370,42371,42371,42372,42373,42374,42375,42376,42377,42378,42379,42379,42380,42381,42382,42383,42384,42385,42386,42387,42387,42388,42389,42390,42391,42392,42393,42394,42395,42396,42397,42398,42398,42399,42400,42401,42402,42403,42403,42404,42405,42405,42406,42407,42407,42408,42409,42409,42410,42411,42412,42413,42414,42415,42416,42417,42418,42419,42420,42420,42421,42422,42422,42423,42424,42425,42426,42427,42427,42428,42429,42430,42431,42432,42433,42434,42435,42435,42436,42437,42437,42438,42439,42440,42441,42442,42306,42308,42310,42311,42313,42314,42314,42316,42318,42322,42324,42326,42327,42329,42331,42332,42334,42335,42338,42340,42342,42343,42345,42443,42346,42348,42350,42351,42353,42355,42355,42357,42358,42358,42360,42444,42445,42361,42363,42446,42364,42366,42369,42371,42373,42374,42376,42447,42377,42379,42381,42381,42382,42384,42385,42387,42389,42393,42395,42396,42396,42398,42400,42401,42403,42405,42405,42407,42409,42409,42411,42448,42415,42417,42418,42418,42420,42422,42422,42424,42425,42425,42427,42429,42449,42430,42432,42433,42435,42437,42439,42440,42442,42304,42306,42310,42314,42318,42450,42321,42322,42326,42326,42327,42331,42331,42332,42335,42337,42338,42342,42343,42443,42451,42346,42350,42452,42453,42351,42355,42355,42358,42444,42445,42363,42446,42446,42366,42368,42368,42369,42373,42454,42374,42447,42455,42377,42381,42381,42384,42456,42385,42389,42457,42393,42396,42400,42401,42405,42409,42409,42448,42458,42415,42418,42422,42422,42425,42429,42449,42432,42433,42433,42437,42439,42439,42442,42304,42304,42310,42311,42314,42450,42459,42321,42326,42331,42337,42342,42460,42346,42452,42453,42453,42355,42444,42445,42446,42368,42368,42373,42454,42454,42447,42461,42455,42381,42456,42462,42385,42457,42393,42400,42463,42464,42401,42409,42414,42415,42422,42422,42429,42465,42449,42433,42439,42439,42304,42311,42311,42314,42459,42321,42331,42335,42335,42337,42460,42346,42453,42444,42445,42368,42454,42461,42455,42456,42462,42457,42466,42392,42393,42463,42463,42464,42409,42422,42465,42467,42422,42467,42414,42468,42449,42439,42439,42311,42459,42321,42335,42460,42451,42346,42444,42445,42454,42461,42461,42456,42469,42462,42466,42470,42392,42463,42409,42471,42414,42467,42471,42467,42465,42414,42471,42412,42468,42439,42459,42319,42321,42460,42451,42444,42445,42445,42461,42469,42469,42462,42470,42390,42392,42409,42471,42472,42473,42471,42473,42412,42472,42471,42465,42472,42468,42459,42459,42319,42460,42451,42445,42469,42469,42470,42390,42390,42409,42458,42459,42412,42473,42459,42473,42472,42459,42460,42343,42343,42451,42469,42469,42390,42458,42458,42412,42459,42459,42343,42469,42469,42458,42459,42474,42475,42476,42476,42477,42478,42478,42479,42480,42480,42474,42476,42476,42478,42480,42481,42482,42483,42484,42485,42486,42486,42487,42488,42488,42489,42490,42490,42491,42481,42481,42483,42484,42484,42486,42488,42490,42481,42484,42484,42488,42490,42492,42493,42494,42494,42495,42496,42496,42497,42498,42498,42499,42500,42501,42492,42494,42494,42496,42498,42498,42500,42501,42501,42494,42498,42502,42503,42504,42504,42505,42506,42506,42507,42508,42508,42509,42502,42502,42504,42506,42506,42508,42502,42510,42511,42512,42512,42513,42514,42514,42515,42510,42510,42512,42514,42516,42517,42518,42518,42519,42516,42520,42521,42522,42522,42523,42524,42524,42520,42522,42525,42526,42527,42527,42528,42529,42530,42531,42532,42532,42525,42527,42527,42529,42530,42530,42532,42527,42533,42534,42535,42535,42536,42537,42537,42538,42539,42539,42533,42535,42535,42537,42539,42540,42541,42542,42542,42543,42544,42544,42545,42546,42546,42547,42548,42548,42549,42550,42550,42551,42552,42552,42553,42554,42554,42555,42540,42540,42542,42544,42544,42546,42548,42548,42550,42552,42552,42554,42540,42540,42544,42548,42548,42552,42540,42427,42426,42556,42556,42557,42558,42558,42559,42560,42560,42561,42562,42563,42564,42565,42566,42567,42568,42568,42569,42570,42571,42572,42573,42574,42575,42576,42576,42577,42578,42579,42580,42581,42581,42582,42583,42584,42585,42586,42587,42588,42589,42590,42591,42592,42593,42594,42595,42595,42596,42597,42598,42599,42600,42601,42602,42603,42604,39322,39321,39317,39316,39315,39314,39313,40534,39311,39310,40947,40947,39309,39308,39308,39307,39306,39306,39305,39304,39303,39302,40684,39300,39299,40533,40533,40762,40849,40849,40901,40876,40876,40683,39298,39297,39296,40532,39294,39293,39292,39291,39290,40817,40817,40848,40921,40921,40847,39289,39288,39287,40531,39279,39278,40530,39276,39275,39274,39274,39273,39272,39271,39270,39269,39269,39268,40761,40761,40846,40529,39266,39265,39264,39263,39262,40875,40875,40528,39261,39260,39259,40527,40527,39258,39257,39257,39256,40682,39254,39253,39252,39252,39251,40526,39249,39248,39247,39246,39245,39244,39244,39243,39242,39239,39238,39237,39236,39235,39234,39234,39233,42605,42605,42606,42607,42608,42609,42610,42610,42611,42612,42613,42614,42615,42616,42617,42618,42619,42620,42621,42621,42622,42623,42624,42625,42626,42626,42627,42628,42628,42629,42630,42631,42632,42633,42634,42635,42636,42637,42638,42639,42640,42641,42642,42643,42644,42645,42645,42646,42647,42647,42648,42649,42650,42651,42652,42652,42653,42654,42655,42656,42657,42657,42305,42304,42304,42442,42441,42441,42440,42439,42434,42433,42432,42431,42430,42449,42449,42468,42472,42472,42465,42429,42428,42427,42556,42556,42558,42560,42560,42562,42563,42566,42568,42570,42574,42576,42578,42579,42581,42583,42584,42586,42587,42587,42589,42658,42590,42592,42659,42597,42598,42600,42601,42603,42604,42604,39321,39320,39317,39315,39314,39314,40534,39312,39311,40947,39308,39308,39306,39304,39303,40684,39301,39300,40533,40849,40849,40876,39298,39297,40532,39295,39295,39294,39292,39291,40817,40921,40921,39289,39288,39288,40531,39286,39280,39279,40530,39271,39269,40761,40761,40529,39267,39266,39264,39263,39263,40875,39261,39260,40527,39257,39257,40682,39255,39254,39252,40526,39249,39247,39246,39246,39244,39242,39240,39239,39237,39236,39234,42605,42605,42607,42660,42660,42608,42610,42613,42615,42661,42619,42621,42623,42624,42626,42628,42628,42630,42631,42631,42633,42634,42637,42639,42640,42642,42643,42645,42645,42647,42649,42652,42654,42662,42655,42657,42304,42441,42439,42438,42434,42432,42431,42431,42449,42472,42472,42429,42428,42428,42556,42560,42560,42563,42565,42663,42566,42570,42573,42574,42578,42579,42583,42584,42584,42587,42658,42597,42600,42601,42601,42604,39320,39317,39314,39312,39312,39311,39308,39300,40849,39298,39292,39291,40921,40921,39288,39286,39280,40530,39277,39271,40761,39267,39266,39263,39261,39257,39255,39254,39254,40526,39250,39246,39242,39241,39240,39237,39236,39236,42605,42660,42660,42610,42612,42613,42661,42616,42618,42619,42623,42664,42624,42628,42628,42631,42634,42637,42640,42642,42642,42645,42649,42650,42652,42662,42655,42304,42441,42434,42431,42472,42472,42428,42560,42665,42663,42570,42573,42578,42579,42579,42584,42658,42597,42601,39320,39318,39317,39312,39312,39308,39304,39301,39300,39298,39295,39292,40921,39271,39267,39266,39266,39261,39260,39254,39250,39249,39246,39241,39240,39240,39236,42660,42660,42612,42613,42618,42623,42666,42664,42628,42634,42637,42642,42649,42650,42662,42655,42655,42441,42438,42434,42472,42560,42573,42579,42658,42595,42597,39320,39318,39312,39304,39303,39301,39298,39295,40921,39286,39272,39271,39266,39254,39249,39246,39246,39240,42660,42618,42666,42664,42664,42634,42636,42667,42637,42649,42650,42655,42438,42435,42434,42560,42573,42658,42668,42573,42668,42571,42593,42595,39320,39319,39318,39304,39303,39298,39297,39295,39286,39285,39272,39266,39260,39254,39246,42660,42664,42636,42667,42667,42649,42650,42650,42438,42437,42436,42435,42560,42658,42669,42670,42670,42571,42668,42670,42668,42658,42659,42593,39320,39320,39319,39304,39303,39297,39295,39295,39285,39284,39274,39272,39260,39254,42660,42613,42664,42667,42650,42650,42437,42436,42436,42560,42565,42669,42590,42671,42671,42571,42670,42671,42670,42669,42590,42659,39320,39320,39304,39303,39303,39295,39284,39276,39274,39260,39257,39254,42613,42618,42664,42650,42650,42436,42565,42590,39320,42672,42672,42571,42671,42672,42671,42590,39320,39303,39284,39277,39276,39260,39260,39257,42613,42616,42618,42650,42650,42565,42665,39284,42571,42672,39284,42672,39320,39280,39277,39260,39260,42613,42616,42616,42650,42665,42570,42571,39284,39281,39280,39260,39260,42616,42665,42570,39284,39283,39260,42665,42570,42570,39283,39282,39281,39260,42570,42570,39282,39281,42673,42674,42675,42675,42676,42677,42677,42673,42675,37295,37294,40252,40252,40251,40629,40249,40248,40735,40735,40799,40247,40244,40243,40734,40734,40830,40242,40239,40238,40733,40733,40798,40890,40890,40913,41002,41002,41130,40237,40236,40235,40628,40628,40234,40233,40233,40232,40627,40230,40229,37342,37341,37340,37827,37827,37750,37339,37338,37337,37336,37336,37335,37334,37333,37332,37331,37328,37327,37326,37325,37324,37969,37969,37323,37322,37322,37321,37320,37319,37318,37826,37826,37749,37317,37316,37315,37314,37313,37312,37825,37308,37307,38327,38327,37931,37883,37883,37824,37306,37303,37302,38153,38153,38059,37748,37296,37295,40252,40252,40629,40250,40249,40735,40247,40245,40244,40734,40239,40733,40890,40890,41002,40237,40236,40628,40233,40233,40627,40231,40231,40230,37342,37341,37827,37339,37338,37336,37334,37333,37331,37330,37328,37326,37325,37325,37969,37322,37319,37826,37317,37317,37316,37314,37313,37825,37311,37309,37308,38327,38327,37883,37306,37304,37303,38153,38153,37748,37301,37297,37296,40252,40252,40250,40249,40249,40247,40246,40245,40734,40242,40240,40239,40890,40890,40237,40236,40236,40233,40231,40231,37342,37341,37341,37339,37338,37338,37334,37333,37329,37328,37325,37325,37322,37320,37320,37319,37317,37313,37311,37310,37309,38327,37306,37305,37304,38153,38153,37301,37300,37297,40252,40249,40245,40242,40241,40240,40890,40236,40236,40231,37341,37341,37338,37333,37329,37325,37320,37320,37317,37314,37313,37310,37309,37309,37306,37305,37305,38153,37300,37298,37297,40249,40241,40240,40236,40236,37341,37333,37330,37329,37320,37320,37314,37313,37313,37309,37305,37305,37300,37299,37298,40249,40246,40241,40236,37333,37333,37330,37320,37320,37313,37305,37305,37299,37298,37298,40246,40245,40245,40241,37333,37320,37305,42678,37320,42678,37333,37305,37298,40245,40245,37333,42678,40245,42678,37305,42679,42680,42681,42682,42683,42684,42685,42686,42687,42687,42679,42681,42681,42682,42684,42684,42685,42687,42687,42681,42684,42688,42689,42690,42690,42691,42692,42692,42693,42694,42695,42696,42697,42697,42698,42699,42699,42700,42701,42702,42703,42704,42704,42705,42706,42707,42708,42709,42709,42710,42711,42712,42713,42714,42715,42716,42717,42718,42719,42720,42721,42722,42723,42723,42724,42725,42725,42726,42727,42728,42729,42730,42731,42732,42733,42733,42734,42735,42735,42736,42737,42737,42738,42739,42740,42741,42742,42742,42743,42744,42745,42746,42747,42747,42748,42749,42750,42751,42752,42753,42754,42755,42756,42757,42758,42758,42759,42760,42760,42761,42762,42763,42764,42765,42765,42766,42767,42767,42768,42769,42769,42770,42771,42771,42772,42773,42774,42775,42776,42776,42777,42778,42779,42780,42781,42782,42783,42784,42785,42786,42787,42787,42788,42789,42790,42791,42792,42792,42793,42794,42794,42795,42796,42797,42798,42799,42799,42800,42801,42802,42803,42804,42804,42805,42806,42806,42807,42808,42809,42810,42811,42811,42812,42813,42813,42814,42815,42816,42817,42818,42818,42819,42820,42821,42822,42823,42823,42824,42825,42826,42827,42828,42828,42829,42830,42831,42832,42833,42833,42834,42835,42835,42836,42837,42838,42839,42840,42841,42842,42843,42844,42845,42846,42846,42847,42848,42849,42850,42851,42852,42853,42854,42855,42688,42690,42690,42692,42694,42856,42695,42697,42697,42699,42701,42857,42702,42704,42707,42709,42711,42715,42717,42718,42858,42721,42723,42723,42725,42727,42728,42730,42731,42731,42733,42735,42735,42737,42739,42742,42744,42745,42745,42747,42749,42750,42752,42859,42756,42758,42760,42760,42762,42860,42763,42765,42767,42767,42769,42771,42774,42776,42778,42779,42781,42782,42785,42787,42789,42790,42792,42794,42794,42796,42797,42797,42799,42801,42804,42806,42808,42809,42811,42813,42813,42815,42861,42823,42825,42826,42826,42828,42830,42833,42835,42837,42862,42838,42840,42841,42843,42863,42863,42844,42846,42846,42848,42849,42849,42851,42852,42854,42855,42690,42864,42856,42697,42697,42701,42865,42857,42704,42706,42866,42707,42711,42858,42723,42727,42867,42728,42731,42731,42735,42739,42742,42745,42749,42755,42756,42760,42868,42763,42767,42767,42771,42773,42773,42774,42778,42778,42779,42782,42869,42785,42789,42790,42794,42797,42797,42801,42802,42804,42808,42870,42870,42809,42813,42813,42861,42816,42821,42823,42826,42826,42830,42831,42831,42833,42837,42840,42841,42863,42863,42846,42849,42852,42854,42690,42864,42697,42865,42871,42857,42706,42872,42866,42711,42873,42858,42727,42867,42731,42739,42740,42742,42749,42753,42755,42760,42868,42767,42773,42773,42778,42782,42874,42869,42789,42790,42797,42802,42804,42870,42813,42826,42831,42837,42862,42840,42863,42863,42849,42852,42852,42690,42694,42694,42864,42865,42871,42706,42875,42872,42711,42712,42720,42873,42727,42727,42867,42739,42876,42740,42749,42753,42760,42860,42877,42868,42773,42773,42782,42784,42874,42789,42878,42879,42790,42802,42826,42837,42880,42826,42880,42821,42862,42863,42852,42694,42865,42881,42694,42881,42852,42872,42712,42714,42727,42739,42882,42727,42882,42720,42876,42749,42750,42883,42753,42860,42884,42877,42773,42874,42878,42879,42879,42802,42804,42885,42821,42880,42885,42880,42837,42821,42885,42886,42837,42862,42852,42865,42887,42888,42888,42852,42881,42888,42881,42865,42875,42872,42714,42889,42720,42882,42889,42882,42739,42720,42889,42718,42876,42750,42859,42883,42860,42884,42884,42773,42784,42874,42879,42804,42890,42886,42885,42890,42885,42837,42886,42890,42891,42892,42852,42888,42892,42888,42887,42852,42892,42837,42875,42714,42893,42875,42893,42871,42739,42876,42894,42894,42718,42889,42894,42889,42739,42859,42895,42896,42859,42896,42876,42883,42884,42784,42784,42874,42804,42897,42891,42890,42897,42890,42837,42891,42897,42820,42887,42871,42898,42898,42837,42892,42898,42892,42887,42714,42899,42900,42900,42871,42893,42900,42893,42714,42901,42876,42896,42901,42896,42895,42901,42718,42894,42901,42894,42876,42895,42883,42784,42898,42820,42897,42898,42897,42837,42820,42898,42871,42899,42715,42902,42902,42871,42900,42902,42900,42899,42903,42718,42901,42903,42901,42895,42718,42903,42715,42784,42804,42904,42784,42904,42895,42820,42871,42905,42820,42905,42818,42906,42715,42903,42903,42895,42907,42903,42907,42906,42715,42906,42908,42908,42871,42902,42908,42902,42715,42804,42813,42909,42909,42895,42904,42909,42904,42804,42910,42818,42905,42910,42905,42871,42818,42910,42816,42908,42813,42911,42908,42911,42871,42813,42908,42906,42909,42906,42907,42909,42907,42895,42906,42909,42813,42911,42816,42910,42911,42910,42871,42816,42911,42813,42912,42913,42914,42915,42916,42917,42918,42919,42920,42920,42921,42922,42923,42924,42925,42925,42926,42927,42928,42929,42930,42930,42931,42932,42932,42933,42912,42914,42915,42917,42917,42918,42920,42920,42922,42934,42923,42925,42927,42928,42930,42932,42932,42912,42914,42914,42917,42920,42934,42923,42927,42928,42932,42914,42914,42920,42934,42934,42927,42935,42935,42928,42914,42914,42934,42935,42936,42937,42938,42938,42939,42940,42940,42941,42942,42942,42936,42938,42938,42940,42942,42943,42944,42945,42946,42947,42948,42948,42949,42950,42951,42952,42953,42953,42954,42955,42955,42956,42957,42957,42958,42959,42960,42961,42962,42962,42963,42964,42964,42965,42966,42967,42968,42969,42970,42971,42972,42973,42974,42975,42975,42976,42977,42977,42978,42979,42980,42981,42982,42983,42984,42985,42985,42986,42987,42988,42989,42990,42990,42991,42992,42992,42993,42994,42995,42996,42997,42997,42998,42999,43000,43001,43002,43002,43003,43004,43004,43005,43006,43007,43008,43009,43010,43011,43012,43012,43013,43014,43015,43016,43017,43018,43019,43020,43021,43022,43023,43024,43025,43026,43027,43028,43029,43029,43030,43031,43032,43033,43034,43035,43036,43037,43037,43038,43039,43040,43041,43042,43042,43043,43044,43045,43046,43047,43047,43048,43049,43049,43050,43051,43052,43053,43054,43054,43055,43056,43056,43057,43058,43059,43060,43061,43061,43062,43063,43064,43065,43066,43066,43067,43068,43068,43069,43070,43070,43071,43072,43073,43074,43075,43075,43076,43077,43077,43078,43079,43079,43080,43081,43082,43083,43084,43085,43086,43087,43087,43088,43089,43090,43091,43092,43093,43094,43095,43096,43097,43098,43098,43099,43100,43100,43101,43102,43103,43104,43105,43105,43106,43107,43108,43109,43110,43110,43111,43112,43113,43114,43115,43115,43116,43117,43118,43119,43120,43121,43122,43123,43124,43125,43126,43126,43127,43128,43128,43129,43130,43131,43132,43133,43133,43134,43135,43136,43137,43138,43138,43139,43140,43141,43142,43143,43144,43145,43146,43146,43147,43148,43148,43149,43150,43151,43152,43153,43154,43155,43156,43156,43157,43158,43158,43159,43160,43160,43161,43162,43162,43163,43164,43164,43165,43166,43167,43168,43169,43169,43170,43171,43172,43173,43174,43174,43175,43176,43177,43178,43179,43180,43181,43182,43182,43183,43184,43185,43186,43187,43188,43189,43190,43191,43192,43193,43194,43195,43196,43197,43198,43199,43199,43200,43201,43201,43202,43203,43204,43205,43206,43206,43207,43208,43208,43209,43210,43211,43212,43213,43213,43214,43215,43216,43217,43218,43219,43220,43221,43221,43222,43223,43223,43224,43225,43225,43226,43227,43228,43229,43230,43231,43232,43233,43233,43234,43235,43236,43237,43238,43238,43239,43240,43241,43242,43243,43244,43245,43246,43247,43248,43249,43250,43251,43252,43252,43253,43254,43255,43256,43257,43257,43258,43259,43260,43261,43262,43263,43262,43261,43264,43265,43266,43267,43268,43269,43269,43270,43271,43271,43272,43273,43273,43274,43275,43275,43276,43277,43278,43279,43280,43280,43281,43282,43282,43283,43284,43285,43286,43287,43288,43289,43290,43290,43291,43292,43292,43293,43294,43295,43296,43297,43297,43298,43299,43299,43300,43301,43302,43303,43304,43304,43305,43306,43307,43308,43309,43309,43310,43311,43312,43313,43314,43315,43316,43317,43317,43318,43319,43320,43321,43322,43322,43323,43324,43324,43325,43326,43326,43327,43328,43328,43329,43330,43331,43332,43333,43333,43334,43335,43335,43336,43337,43338,43339,43340,43341,43342,43343,43344,43345,43346,43347,43348,43349,43349,43350,43351,43351,43352,43353,43354,43355,43356,43357,43358,43359,43360,43361,43362,43362,43363,43364,43364,43365,43366,43366,43367,43368,42943,42945,43369,42946,42948,42950,42951,42953,42955,42955,42957,42959,42960,42962,42964,42964,42966,43370,42967,42969,43371,43372,42970,42972,42973,42975,42977,42980,42982,42983,42988,42990,42992,42992,42994,43373,42995,42997,42999,43000,43002,43004,43004,43006,43374,43007,43009,43010,43010,43012,43014,43018,43020,43021,43021,43023,43375,43024,43026,43027,43029,43031,43376,43034,43035,43037,43037,43039,43040,43040,43042,43044,43377,43045,43047,43047,43049,43051,43052,43054,43056,43056,43058,43378,43059,43061,43063,43064,43066,43068,43068,43070,43072,43073,43075,43077,43077,43079,43081,43379,43082,43084,43085,43087,43089,43093,43095,43096,43096,43098,43100,43100,43102,43380,43103,43105,43107,43107,43108,43110,43113,43115,43117,43121,43123,43124,43124,43126,43128,43131,43133,43135,43136,43138,43140,43140,43141,43143,43146,43148,43150,43381,43151,43153,43154,43156,43158,43162,43164,43166,43167,43169,43171,43172,43174,43176,43382,43177,43179,43180,43182,43184,43185,43187,43383,43188,43190,43384,43384,43191,43193,43197,43199,43201,43201,43203,43385,43204,43206,43208,43208,43210,43386,43211,43213,43215,43387,43219,43221,43221,43223,43225,43225,43227,43388,43228,43230,43389,43231,43233,43235,43390,43236,43238,43238,43240,43391,43392,43241,43243,43244,43246,43247,43247,43249,43393,43250,43252,43254,43254,43255,43257,43260,43262,43394,43395,43263,43261,43264,43266,43396,43269,43271,43273,43273,43275,43277,43278,43280,43282,43397,43285,43287,43288,43290,43292,43292,43294,43398,43295,43297,43299,43302,43304,43306,43307,43309,43311,43315,43317,43319,43320,43322,43324,43326,43328,43330,43331,43333,43335,43399,43338,43340,43344,43346,43400,43347,43349,43351,43351,43353,43401,43402,43357,43359,43360,43362,43364,43364,43366,43368,43403,42943,43369,43404,42946,42950,43405,42951,42955,42955,42959,42960,42960,42964,43370,43406,42967,43371,43371,43372,42972,42973,42977,42979,43407,42980,42983,42988,42992,43373,43408,42995,42999,43409,43000,43004,43010,43014,43015,43018,43021,43375,43375,43024,43027,43029,43376,43032,43032,43034,43037,43037,43040,43044,43377,43047,43051,43052,43056,43378,43059,43063,43064,43064,43068,43072,43410,43073,43077,43077,43081,43411,43085,43089,43412,43413,43093,43096,43096,43100,43380,43107,43110,43112,43414,43113,43117,43415,43121,43124,43416,43131,43135,43136,43140,43143,43144,43146,43150,43381,43153,43417,43417,43154,43158,43162,43166,43167,43167,43171,43172,43172,43176,43418,43382,43179,43419,43180,43184,43420,43185,43383,43188,43188,43384,43193,43196,43197,43201,43201,43385,43421,43204,43208,43386,43422,43211,43215,43387,43221,43225,43388,43228,43389,43423,43231,43235,43390,43238,43391,43392,43243,43244,43424,43250,43254,43254,43257,43259,43395,43261,43425,43426,43264,43396,43269,43273,43277,43277,43278,43282,43397,43287,43427,43427,43288,43292,43292,43398,43428,43295,43299,43301,43302,43306,43307,43307,43311,43429,43315,43319,43430,43431,43320,43324,43326,43330,43331,43331,43335,43337,43432,43399,43340,43347,43351,43401,43356,43402,43359,43360,43364,43368,43403,43369,43433,43404,42950,43434,43405,42955,42960,42960,43370,43435,43406,43371,42972,43436,43407,42983,42987,42988,43373,43408,42999,43409,43409,43004,43374,43007,43010,43015,43437,43018,43375,43375,43027,43029,43029,43032,43037,43037,43044,43377,43377,43051,43052,43052,43378,43438,43064,43072,43439,43064,43439,43059,43072,43410,43077,43440,43085,43412,43413,43096,43380,43107,43112,43414,43414,43117,43118,43415,43124,43128,43416,43135,43136,43136,43143,43441,43144,43150,43442,43417,43158,43160,43160,43162,43167,43167,43172,43418,43443,43382,43419,43444,43180,43420,43185,43188,43193,43194,43196,43201,43445,43204,43386,43422,43215,43446,43387,43225,43388,43388,43389,43423,43423,43235,43447,43448,43390,43391,43449,43392,43244,43424,43254,43259,43450,43395,43425,43269,43277,43282,43397,43427,43292,43292,43428,43451,43452,43295,43301,43302,43307,43429,43314,43315,43430,43431,43324,43326,43326,43331,43337,43400,43347,43401,43356,43359,43360,43360,43368,43403,43403,43433,43404,43404,43434,43405,43405,42960,43435,43406,42972,42973,43453,43436,42983,42985,42987,43373,43408,43409,43374,43007,43015,43017,43437,43375,43029,43029,43037,43377,43377,43052,43438,43454,43059,43439,43454,43439,43072,43059,43454,43438,43072,43077,43411,43440,43412,43455,43456,43413,43380,43107,43414,43118,43415,43128,43130,43416,43136,43441,43441,43144,43442,43381,43417,43160,43167,43418,43457,43167,43457,43160,43444,43420,43185,43185,43193,43458,43194,43201,43421,43459,43445,43386,43387,43388,43423,43423,43447,43460,43460,43448,43391,43449,43244,43247,43424,43259,43260,43450,43425,43426,43267,43269,43282,43461,43397,43292,43451,43452,43301,43302,43429,43312,43326,43337,43462,43354,43356,43360,43360,43403,43404,43404,43405,43435,43406,42973,42979,43463,43453,42983,42985,43373,43408,43408,43374,43007,43007,43017,43464,43029,43377,43465,43029,43465,43437,43466,43438,43454,43466,43454,43072,43438,43466,43377,43072,43411,43467,43440,43455,43468,43092,43456,43380,43130,43416,43441,43441,43442,43469,43470,43160,43457,43470,43457,43418,43160,43470,43381,43444,43185,43458,43458,43194,43421,43459,43386,43422,43387,43423,43460,43460,43391,43471,43449,43247,43393,43450,43426,43396,43396,43267,43282,43461,43292,43451,43451,43301,43472,43302,43312,43314,43326,43462,43432,43354,43360,43404,43404,43435,43473,43474,43406,42979,43475,43463,42983,42985,43408,43007,43007,43464,43476,43072,43467,43379,43090,43092,43380,43415,43130,43441,43477,43381,43470,43477,43470,43418,43381,43477,43478,43479,43444,43458,43458,43421,43459,43459,43422,43446,43480,43387,43460,43481,43449,43393,43482,43450,43396,43396,43282,43284,43483,43461,43451,43451,43472,43484,43484,43302,43314,43431,43326,43432,43354,43404,43473,43485,43474,42979,43475,42983,42985,43007,43476,43486,43007,43486,42985,43466,43379,43487,43466,43487,43377,43379,43466,43072,43468,43090,43380,43415,43441,43469,43418,43488,43489,43489,43478,43477,43489,43477,43418,43419,43479,43458,43458,43459,43446,43480,43460,43471,43481,43393,43490,43482,43396,43284,43284,43483,43451,43451,43484,43314,43431,43432,43340,43491,43354,43473,43492,43485,42979,43493,42985,43486,43493,43486,43476,42985,43493,43475,43487,43084,43494,43487,43494,43377,43084,43487,43379,43440,43468,43380,43120,43415,43469,43488,43495,43496,43496,43478,43489,43496,43489,43488,43419,43458,43446,43480,43471,43497,43482,43284,43451,43451,43314,43430,43430,43431,43340,43401,43491,43473,43492,42979,43498,43499,43475,43493,43499,43493,43476,43475,43499,43498,43494,43440,43500,43494,43500,43377,43440,43494,43084,43440,43380,43501,43118,43120,43469,43495,43443,43502,43502,43478,43496,43502,43496,43495,43443,43419,43446,43480,43497,43481,43503,43482,43451,43451,43430,43340,43400,43401,43473,43476,43504,43505,43505,43498,43499,43505,43499,43476,43440,43501,43506,43118,43469,43507,43443,43446,43508,43508,43509,43510,43508,43510,43443,43502,43509,43511,43502,43511,43478,43502,43443,43510,43502,43510,43509,43480,43481,43490,43394,43503,43451,43451,43340,43341,43504,43437,43512,43512,43498,43505,43512,43505,43504,43500,43506,43513,43500,43513,43377,43506,43500,43440,43118,43507,43514,43515,43478,43511,43515,43511,43509,43516,43509,43508,43516,43508,43446,43509,43516,43515,43478,43515,43517,43478,43517,43518,43394,43451,43341,43513,43519,43520,43513,43520,43377,43519,43513,43506,43118,43514,43518,43521,43515,43522,43521,43522,43523,43515,43521,43524,43517,43524,43525,43517,43525,43518,43524,43517,43515,43516,43523,43522,43516,43522,43515,43523,43516,43446,43260,43394,43341,43520,43103,43526,43520,43526,43377,43103,43520,43519,43527,43518,43525,43527,43525,43524,43528,43524,43521,43528,43521,43523,43524,43528,43527,43518,43527,43529,43518,43529,43118,43260,43341,43343,43526,43107,43530,43526,43530,43377,43107,43526,43103,43531,43527,43532,43531,43532,43216,43527,43531,43533,43529,43533,43534,43529,43534,43118,43533,43529,43527,43528,43216,43532,43528,43532,43527,43216,43528,43523,43260,43343,43344,43465,43107,43535,43465,43535,43437,43465,43377,43530,43465,43530,43107,43534,43536,43537,43534,43537,43118,43536,43534,43533,43538,43533,43531,43538,43531,43216,43533,43538,43536,43539,43118,43537,43539,43537,43536,43118,43539,43107,43260,43344,43400,43540,43437,43535,43540,43535,43107,43437,43540,43541,43512,43541,43542,43512,43542,43498,43541,43512,43437,43216,43218,43543,43543,43544,43545,43543,43545,43216,43536,43544,43546,43546,43107,43539,43546,43539,43536,43544,43536,43538,43538,43216,43545,43538,43545,43544,43424,43260,43400,43542,43547,43548,43542,43548,43498,43547,43542,43541,43549,43541,43540,43549,43540,43107,43541,43549,43547,43550,43498,43548,43550,43548,43547,43498,43550,43492,43218,43480,43551,43551,43552,43553,43551,43553,43218,43544,43552,43554,43554,43107,43546,43554,43546,43544,43552,43544,43543,43543,43218,43553,43543,43553,43552,43424,43400,43473,43550,43555,43556,43550,43556,43492,43555,43550,43547,43557,43547,43549,43557,43549,43107,43547,43557,43555,43558,43492,43556,43558,43556,43555,43492,43558,43559,43490,43424,43473,43480,43559,43558,43558,43555,43560,43558,43560,43480,43552,43555,43557,43557,43107,43554,43557,43554,43552,43555,43552,43551,43551,43480,43560,43551,43560,43555,43480,43490,43473,43561,43559,43480,43480,43473,43561,43562,43563,43564,43565,43566,43567,43568,43569,43570,43570,43571,43572,43572,43573,43574,43575,43576,43577,43577,43562,43564,43564,43565,43567,43568,43570,43572,43572,43574,43578,43579,43575,43577,43577,43564,43567,43567,43568,43572,43572,43578,43579,43579,43577,43567,43567,43572,43579,43580,43581,43582,43582,43583,43584,43584,43585,43586,43586,43587,43580,43580,43582,43584,43584,43586,43580,43588,43589,43590,43591,43592,43593,43593,43594,43595,43596,43597,43588,43591,43593,43595,43596,43588,43590,43598,43591,43595,43596,43590,43598,43598,43595,43596,43599,43600,43601,43601,43602,43603,43603,43604,43599,43599,43601,43603,43605,43606,43607,43607,43608,43609,43609,43610,43611,43611,43605,43607,43607,43609,43611,42943,43403,43612,43613,43614,43615,43615,43616,43617,43618,43619,43620,43621,43622,43623,43623,43624,43625,43626,43627,43628,43629,43630,43631,43631,43632,43633,43634,43635,43636,43636,43637,43638,43638,43639,43640,43641,43642,43643,43643,43644,43645,43645,43646,43647,43648,43649,43650,43650,43651,43652,43653,43654,43655,43656,43657,43658,43659,43660,43661,43662,43663,43664,43664,43665,43666,43666,43667,43668,43669,43670,43671,43672,43673,43674,43675,40031,40030,40030,40609,40029,40022,40021,40020,40015,40014,40013,40013,40012,40789,40789,40011,40010,40010,40009,40008,40007,40006,40005,40004,40003,40002,40002,40001,40000,39999,39998,40608,39996,39995,39994,39993,39992,40788,40788,39991,39990,39990,39989,40718,39983,39982,39981,39978,39977,39976,39975,39974,39973,39972,39971,40717,40717,40787,39970,39967,39966,40607,40607,40910,41036,41036,41033,40992,40992,40960,40860,40860,39965,39964,39960,39959,39958,39957,39956,39955,39955,39954,39953,39948,39947,40716,40716,40825,40715,40715,40606,39946,39945,39944,39943,39941,39940,40714,40714,40786,40713,40713,39939,39938,39938,39937,40605,40605,39936,39935,39935,39934,40785,40785,39933,39932,39932,39931,39930,39923,39922,39921,39920,39919,40859,40859,40885,40858,40858,39918,39917,39911,39910,43676,43676,43677,43678,43679,43680,43681,43682,43683,43684,43684,43685,43686,43687,43688,43689,43690,43691,43692,43693,43694,43695,43696,43697,43698,43699,43700,43701,43701,43702,43703,43704,43705,43706,43706,43707,43708,43708,43709,43710,43710,43711,43712,43713,43714,43715,43716,43717,43718,43718,43719,43720,43720,43721,43722,43722,43723,43724,43725,43726,43727,43728,43729,43730,43731,43732,43733,43734,43735,43736,43737,43738,43739,43740,43741,43742,43742,43743,43744,43745,43746,43747,43748,43749,43750,43751,43752,43753,43753,43754,43755,43756,43757,43758,43759,43760,43761,43762,43763,43764,43765,43766,43767,43767,43768,43769,43769,43770,43771,43771,43772,43773,43773,43774,43775,43775,43776,43777,43777,43778,43779,43780,43781,43782,43782,43783,43784,43784,43785,43786,43787,43788,43789,43790,43791,43792,43793,43794,43795,43795,43796,43797,43797,43798,43799,43800,43801,43802,43802,43803,43804,43804,43805,43806,43807,43808,43809,43810,43811,43812,43812,43813,43814,43814,43815,43816,43817,43818,43819,43819,43820,43821,43821,43822,43823,43824,43825,43826,43827,43828,43829,43829,43830,43831,43831,43832,43833,43834,43835,43836,43837,43838,43839,43840,43841,43842,43843,43844,43845,43845,43846,43847,43847,43848,43849,43850,43851,43852,43852,43853,43854,43854,43855,43856,43857,43858,43859,43860,43861,43862,43863,43864,43865,43866,43867,43868,43869,43870,43871,43871,43872,43873,43874,43875,43876,43876,43877,43878,43879,43880,43881,43882,43883,43884,43884,43885,43886,43887,43888,43889,43889,43890,43891,43892,43893,43894,43895,43896,43897,43898,43899,43900,43901,43902,43903,43903,43904,43905,43906,43907,43908,43908,43909,43910,43910,43911,43912,43913,43914,43915,43915,43916,43917,43917,43918,43919,43919,43920,43921,43922,43923,43924,43925,43926,43927,43928,43929,43930,43930,43931,43932,43933,43934,43935,43935,43936,43937,43938,43939,43940,43940,43941,43942,43943,43944,43945,43945,43946,43947,43948,43949,43950,43951,43952,43953,43954,43955,43956,43957,43958,43959,43959,43960,43961,43962,43963,43964,43964,43965,43966,43966,43967,43968,43969,43970,43971,43971,43972,43973,43974,43975,43976,43976,43977,43978,43979,43980,43981,43981,43982,43983,43984,43985,43986,43986,43987,43988,43989,43990,43991,43991,43992,43993,43993,43994,43995,43995,43996,43997,43998,43999,44000,44001,44002,44003,44003,44004,44005,44006,44007,44008,44008,44009,44010,44011,44012,44013,44013,44014,44015,44015,44016,44017,44018,44019,44020,44020,44021,44022,44023,44024,44025,44026,44027,44028,44028,44029,44030,44030,44031,44032,44033,44034,44035,44036,44037,44038,44039,44040,44041,44042,44043,44044,44045,44046,44047,44048,44049,44050,44050,44051,44052,44053,44054,44055,44055,44056,44057,44057,44058,44059,44059,44060,44061,44061,44062,44063,44064,44065,44066,44066,44067,44068,44068,44069,44070,44071,44072,44073,44073,44074,44075,44075,44076,44077,44078,44079,44080,44080,44081,44082,44082,44083,44084,44084,44085,44086,44087,44088,44089,44090,44091,44092,44093,44094,44095,44095,44096,44097,44097,44098,44099,44099,44100,44101,44101,44102,44103,44104,44105,44106,44107,44108,44109,44110,44111,44112,44112,44113,44114,44114,44115,44116,44116,44117,44118,44119,44120,44121,44122,44123,44124,44125,44126,44127,44128,44129,44130,44130,44131,44132,44132,44133,44134,44135,44136,44137,44138,44139,44140,44141,44142,44143,44143,44144,44145,44146,44147,44148,44149,44150,44151,44151,44152,44153,44153,44154,44155,44156,44157,44158,44158,44159,44160,44161,44162,44163,44164,44165,44166,44167,44168,44169,44169,44170,44171,44171,44172,44173,44173,44174,44175,44175,44176,44177,44178,44179,44180,44180,44181,44182,44183,44184,44185,44185,44186,44187,44188,44189,44190,44190,44191,44192,44192,44193,44194,44195,44196,44197,44198,44199,44200,44200,44201,44202,44202,44203,44204,44205,44206,44207,44208,44209,44210,44210,44211,44212,44213,44214,44215,44215,44216,44217,44218,43071,43070,43067,43066,43065,43065,43064,43063,43062,43061,43060,43060,43059,43438,43438,43378,43058,43057,43056,43055,43055,43054,43053,43053,43052,43051,43050,43049,43048,43048,43047,43046,43046,43045,43377,43041,43040,43039,43038,43037,43036,43035,43034,43033,43033,43032,43376,43030,43029,43028,43028,43027,43026,43025,43024,43375,43375,43023,43022,43022,43021,43020,43019,43018,43437,43437,43504,43476,43476,43464,43017,43016,43015,43014,43011,43010,43009,43008,43007,43374,43374,43006,43005,43001,43000,43409,43409,42999,42998,42998,42997,42996,42996,42995,43408,43408,43373,42994,42993,42992,42991,42991,42990,42989,42989,42988,42987,42986,42985,42984,42984,42983,42982,42981,42980,43407,43407,43436,43453,43453,43463,43475,43475,43498,42979,42978,42977,42976,42976,42975,42974,42974,42973,42972,42971,42970,43372,43372,43371,42969,42968,42967,43406,43406,43474,43485,43485,43492,43559,43559,43561,43473,43473,43435,43370,42961,42960,42959,42956,42955,42954,42952,42951,43405,43405,43434,42950,42947,42946,43404,43404,43433,43369,42944,42943,43612,44219,43613,43615,43618,43620,44220,43626,43628,44221,43629,43631,43633,44222,43634,43636,43636,43638,43640,43641,43643,43645,43645,43647,44223,43648,43650,43652,43653,43655,43656,43659,43661,44224,43662,43664,43666,43669,43671,43672,43672,43674,44225,44226,43675,40030,40030,40029,40028,40023,40022,40020,40013,40789,40010,40008,40007,40005,40005,40004,40002,40000,39999,40608,39993,40788,39990,39990,40718,39988,39983,39981,39980,39979,39978,39976,39976,39975,39973,39972,40717,39970,39967,40607,41036,41036,40992,40860,39960,39958,39957,39957,39955,39953,39948,40716,40715,39945,39943,39942,39941,40714,40713,39938,40605,39935,39935,40785,39932,39932,39930,39929,39923,39921,39920,39920,40859,40858,39912,39911,43676,43676,43678,44227,43679,43681,44228,44229,43682,43684,43684,43686,44230,43687,43689,43690,43690,43692,43693,43693,43695,43696,43699,43701,43703,43704,43706,43708,43708,43710,43712,44231,43713,43715,43716,43718,43720,43720,43722,43724,44232,43725,43727,43728,43730,43731,43731,43733,44233,43734,43736,43737,43737,43739,44234,43740,43742,43744,43745,43747,43748,43748,43750,43751,43751,43753,43755,43756,43758,43759,43759,43761,44235,43762,43764,43765,43765,43767,43769,43769,43771,43773,43773,43775,43777,43780,43782,43784,43784,43786,44236,43787,43789,44237,43790,43792,44238,43793,43795,43797,44239,43800,43802,43802,43804,43806,43807,43809,44240,43810,43812,43814,43814,43816,44241,43817,43819,43821,43821,43823,44242,44243,43827,43829,43829,43831,43833,43837,43839,43840,43840,43842,43843,43843,43845,43847,44244,43850,43852,43852,43854,43856,44245,43857,43859,43860,43862,43863,43863,43865,44246,43868,43869,43871,43871,43873,43874,43874,43876,43878,44247,43879,43881,44248,43882,43884,43887,43889,43891,43891,43892,43894,43895,43897,43898,43898,43900,44249,44250,43901,43903,43903,43905,44251,43906,43908,43910,43913,43915,43917,43917,43919,43921,43925,43927,43928,43928,43930,43932,43933,43935,43937,43940,43942,43943,43943,43945,43947,43948,43950,44252,44253,43951,43953,44254,43957,43959,43959,43961,44255,43962,43964,43966,44256,43969,43971,43971,43973,43974,43974,43976,43978,44257,43979,43981,43981,43983,43984,43984,43986,43988,43989,43991,43993,43993,43995,43997,44258,43998,44000,44001,44003,44005,44006,44008,44010,44011,44013,44015,44018,44020,44022,44026,44028,44030,44030,44032,44259,44033,44035,44260,44036,44038,44261,44261,44039,44041,44262,44045,44047,44048,44050,44052,44053,44055,44057,44057,44059,44061,44061,44063,44263,44064,44066,44068,44068,44070,44264,44071,44073,44075,44265,44078,44080,44080,44082,44084,44084,44086,44266,44087,44089,44267,44093,44095,44097,44097,44099,44101,44101,44103,44104,44104,44106,44268,44268,44107,44109,44112,44114,44116,44119,44121,44122,44125,44127,44128,44128,44130,44132,44269,44138,44140,44141,44143,44145,44146,44148,44149,44149,44151,44153,44156,44158,44160,44161,44163,44270,44164,44166,44271,44272,44167,44169,44169,44171,44173,44173,44175,44177,44178,44180,44182,44183,44185,44187,44188,44190,44192,44195,44197,44273,44198,44200,44202,44202,44204,44274,44275,44208,44210,44210,44212,44276,44276,44213,44215,44215,44217,44277,44277,44218,43070,43065,43063,43062,43062,43060,43438,43055,43053,43051,43051,43050,43048,43046,43377,43044,43042,43041,43039,43039,43038,43036,43036,43035,43033,43033,43376,43031,43031,43030,43028,43025,43375,43022,43020,43019,43437,43437,43476,43017,43012,43011,43009,43009,43008,43374,43002,43001,43409,42998,42996,43408,42989,42987,42986,42986,42984,42982,42982,42981,43407,43407,43453,43475,43475,42979,42978,42978,42976,42974,42974,42972,42971,42971,43372,42969,42969,42968,43406,43406,43485,43559,43559,43473,43370,42962,42961,42959,42957,42956,42954,42952,43405,42950,42947,43404,43369,42945,42944,43612,43625,43626,44221,44221,43629,43633,43640,43641,43645,43648,43652,44278,43653,43656,43658,43662,43666,43668,43669,43672,44225,44226,40030,40028,40023,40020,40019,40015,40013,40010,40008,40005,40002,40000,40608,39997,39994,39993,39990,39979,39976,39973,39972,39970,39969,39968,39967,41036,41036,40860,39964,39961,39960,39957,39957,39953,39952,39949,39948,40715,39942,39941,40713,39938,39935,39932,39923,39920,40858,39913,39912,43676,43676,44227,44279,44229,43684,44230,43693,43696,43698,43703,43704,43708,44231,43715,43716,43716,43720,43724,44232,43727,44280,43731,44233,44281,43734,43737,44234,44282,43740,43744,43745,43748,43751,43751,43755,44283,43756,43759,44235,43762,43765,43769,43769,43773,43777,43780,43784,44236,43787,44237,44284,44284,43790,44238,44285,43793,43797,44239,43802,43806,43810,43814,44241,43817,43821,44242,44243,43829,43833,43837,43840,43843,43843,43847,43849,44244,43852,43856,44245,43859,44286,44287,43860,43863,43863,44246,43866,43868,43871,43874,44247,43881,44248,44248,43884,43886,43887,43891,43894,43898,44249,44250,44250,43903,44251,44288,43906,43910,44289,43913,43917,43917,43921,43922,43925,43928,43932,43932,43933,43937,43940,43943,43947,43948,44252,44253,44254,43959,44255,44290,43962,43966,44256,43971,43974,43974,43978,44291,44257,43981,43984,43984,43988,44292,43989,43993,43997,44258,44000,44001,44001,44005,44006,44006,44010,44293,44011,44015,44017,44017,44018,44022,44026,44030,44259,44259,44033,44260,44261,44041,44294,44262,44047,44048,44295,44053,44057,44057,44061,44263,44064,44068,44264,44296,44071,44075,44265,44080,44084,44297,44093,44097,44097,44101,44104,44104,44268,44109,44110,44112,44116,44118,44119,44122,44298,44125,44128,44128,44132,44134,44269,44140,44299,44300,44141,44145,44301,44146,44149,44149,44153,44155,44155,44156,44160,44160,44161,44270,44272,44169,44173,44173,44177,44302,44178,44182,44303,44304,44183,44187,44305,44188,44192,44195,44273,44306,44307,44198,44202,44202,44274,44308,44275,44210,44276,44276,44215,44277,44277,43070,43069,43067,43065,43062,43062,43438,43058,43042,43039,43036,43033,43031,43028,43025,43022,43020,43020,43437,43017,43012,43009,43374,43002,43409,42998,42998,43408,42994,42989,42986,42982,42982,43407,43475,43475,42978,42974,42969,43406,43559,43559,43370,42966,42962,42959,42958,42957,42954,42953,42953,42952,42950,42948,42947,43369,42945,43612,44219,43625,44221,43633,43640,43645,44223,43648,44278,44309,43653,43658,43659,43669,44225,44310,44310,44226,40028,40023,40019,40018,40015,40010,40008,40008,40002,40000,39996,39994,39990,39980,39979,39973,39973,39972,39969,39968,41036,39964,39957,39952,39951,39949,40715,39946,39942,40713,39938,39938,39932,39929,39924,39923,40858,39914,39913,43676,44228,44229,44230,43703,43708,43712,44231,43716,43724,44232,44280,44311,44281,43734,44234,44282,43744,43745,43745,43751,44283,44312,43756,44235,43769,43777,44313,43769,44313,43762,43780,44236,43787,43787,44284,44238,44285,43797,43799,44239,43806,44314,44315,43810,44241,44316,43817,44242,44243,43833,43834,43837,43843,43849,44317,44244,43856,44245,44286,44318,43868,43874,43878,44247,44248,43886,43887,43894,43895,43898,44250,44251,44251,44288,43910,44289,43917,43922,43925,43932,43937,43938,43940,43947,43947,43948,44253,44319,44254,44255,44290,43966,43968,44320,44256,43974,44257,43984,44292,44321,43989,43997,44258,44001,44006,44006,44293,44322,44017,44022,44323,44324,44026,44259,44036,44261,44294,44262,44048,44052,44295,44057,44263,44263,44064,44264,44296,44075,44077,44325,44265,44084,44297,44097,44104,44104,44109,44326,44326,44110,44116,44118,44122,44124,44298,44128,44134,44269,44299,44300,44300,44145,44327,44301,44149,44155,44155,44160,44270,44271,44272,44173,44173,44302,44328,44329,44304,44187,44305,44192,44194,44307,44202,44308,44275,44276,44277,44277,43069,43068,43062,43058,44330,43062,44330,43067,43042,43036,43033,43025,43020,43017,43013,43012,43374,42998,42994,42993,42991,42989,42982,42982,43475,42974,42969,43559,42966,42953,42950,42949,42948,43369,42945,42945,44219,43615,43623,43625,43633,43640,44223,43648,43653,43659,44224,43669,44310,40028,40024,40023,40018,40015,40008,40000,39997,39996,39990,39973,39969,39968,39968,39964,39963,39950,39949,39946,39945,39942,39938,39938,39929,39928,39924,40858,39917,39914,43676,44279,44228,44230,43687,43699,43703,43712,43712,44231,43724,44232,44311,43728,44281,44234,44282,44282,43745,44283,43777,43779,44331,44331,43762,44313,44331,44313,43777,43780,43787,44238,44332,44285,43799,44315,44241,44333,44316,44242,43824,44243,43834,43836,43837,43849,44334,44335,44317,43856,44245,44318,44336,43866,43868,43878,44247,43886,44337,43898,44251,43910,44338,44289,43922,43925,43937,44339,43938,43947,44253,44340,44319,44255,44290,43968,44320,44320,43974,44291,44341,44257,44292,44342,44321,43997,44343,44258,44006,44006,44322,44011,44017,44323,44023,44324,44259,44260,44036,44294,44042,44044,44262,44052,44344,44295,44263,44263,44264,44345,44346,44296,44077,44325,44084,44266,44347,44297,44104,44104,44326,44116,44348,44298,44134,44269,44300,44327,44349,44301,44155,44155,44270,44350,44271,44173,44328,44303,44329,44187,44351,44305,44194,44352,44307,44308,44353,44275,44277,44277,43068,43067,43026,43025,43017,43014,43013,43374,43002,42998,42993,42993,42991,42982,42982,42974,42971,42971,42969,42966,42957,42953,42949,42948,42945,43615,43623,43633,44354,43640,43648,44309,43653,44224,43662,43668,43669,40028,40024,40018,40017,40016,40015,40000,39997,39990,39988,39973,39968,39963,39950,39946,39945,39945,39938,39928,39924,39917,39916,39915,39914,44279,43679,44228,43687,43699,43712,43724,44281,44282,44283,43779,44355,44356,44356,43762,44331,44356,44331,43779,44357,43780,44238,44332,43799,44358,44315,44333,44359,44316,43824,43826,43826,44243,43836,43837,44334,44335,44335,43856,44245,43863,43866,43878,44247,44337,43887,43895,43898,43910,44360,44338,43922,44361,43925,44339,44362,43938,44253,44363,44340,44255,44290,44320,44291,44341,44292,44364,44342,43997,44365,44343,44006,44011,44011,44017,44023,44025,44324,44260,44036,44042,44044,44044,44052,44366,44367,44344,44263,44263,44345,44346,44346,44077,44325,44368,44347,44104,44104,44116,44118,44348,44134,44135,44349,44155,44350,44164,44271,44328,44303,44187,44351,44351,44194,44195,44369,44352,44308,44353,44277,43067,43026,43017,43016,43014,43374,43005,43003,43002,42993,42982,42971,44370,42982,44370,42993,42971,42966,42965,42957,42949,42948,42948,43615,43617,43621,43623,44354,43640,44309,43653,43668,40028,40027,40024,40017,40016,40016,40000,39997,39997,39988,39987,39980,39973,39963,39950,39945,39928,39924,39916,39915,39915,44279,43679,43679,43687,43690,43699,43724,44232,44281,44283,44371,44372,44357,44238,44315,44359,44373,44373,44316,43826,43826,43836,44374,44375,43837,44335,44335,44245,44336,43863,43878,44247,44247,43887,43895,43895,43910,43912,44360,43922,43924,44361,44339,44362,44362,44253,43953,44363,44255,44376,44290,44291,44341,44341,44364,44377,44342,44365,44378,44343,44011,44023,44023,44025,44260,44036,44044,44366,44367,44263,44346,44346,44325,44266,44379,44368,44104,44104,44118,44124,44380,44348,44135,44327,44349,44350,44164,44328,44178,44178,44303,44351,44351,44195,44306,44369,44308,44381,44382,44353,43067,43028,43026,43016,43014,43005,43004,42971,42965,44383,44383,42993,44370,44383,44370,42971,42957,42948,43617,43621,44354,44384,43653,43662,44385,43653,44385,43640,43668,40027,40026,40024,40016,39997,39997,39987,39986,39983,39980,39963,39950,39928,39927,39924,39915,43679,43679,43690,43693,43699,44232,43728,44281,44371,44312,44386,44372,44238,44240,44315,44373,44375,44335,44336,43895,43912,44387,43895,44387,44247,44388,44360,43924,44361,44362,43953,44363,44376,44389,44341,44377,44390,44341,44390,44290,44391,44342,44378,44023,44260,44392,44023,44392,44343,44260,44036,44366,44393,44367,44346,44346,44266,44087,44379,44104,44124,44380,44135,44137,44327,44350,44164,44164,44178,44351,44351,44306,44394,44369,44381,44205,44395,44382,43067,43028,43016,44396,43028,44396,43033,43014,43004,43003,44383,42964,44397,44383,44397,42993,42964,44383,42965,42957,43617,44398,44399,43621,44384,43662,43668,40026,40025,40024,39997,39983,39963,39962,39951,39950,39927,39924,43679,43693,43728,43731,44400,43728,44400,43699,44281,44312,44235,44355,44386,44238,44240,44373,43826,44375,44336,44287,44401,44247,44387,44401,44387,43912,44247,44401,43863,44388,43924,44402,44403,44361,43953,44404,44363,44389,44377,44405,44406,44406,44290,44390,44406,44390,44377,44391,44378,44407,44260,44366,44408,44408,44343,44392,44408,44392,44260,44409,44393,44346,44346,44087,44267,44092,44379,44124,44164,44351,44410,44164,44410,44327,44394,44369,44205,44411,44395,43067,44412,43033,44396,44412,44396,43016,43033,44412,43042,44397,42963,44413,44397,44413,42993,42963,44397,42964,44220,44399,44384,43662,40026,40025,40025,39997,39986,39983,39962,39961,39951,39927,39926,39925,39924,43693,43731,44281,44414,44414,43699,44400,44414,44400,43731,44355,44238,44415,44415,43762,44356,44415,44356,44355,43807,44240,43826,44375,44287,43863,44401,44416,44417,44401,44417,43863,44416,44401,43912,44403,43953,44418,44404,44389,44290,44405,44391,44419,44419,44290,44406,44419,44406,44405,44391,44407,44420,44421,44343,44408,44421,44408,44366,44343,44421,44422,44346,44267,44423,44346,44423,44409,44090,44092,44124,44351,44394,44424,44424,44327,44410,44424,44410,44351,44394,44205,44207,44425,44411,43067,43016,43014,44426,44426,43042,44412,44426,44412,43016,44413,42962,44427,44413,44427,42993,42962,44413,42963,44220,44384,44222,43662,40025,39986,39983,39961,39957,39951,39926,39925,39925,43693,43698,44281,44235,44428,44428,43699,44414,44428,44414,44281,44415,44429,44430,44415,44430,43762,44429,44415,44238,43807,43826,44374,44374,44375,43863,44417,44388,44431,44417,44431,43863,44388,44417,44416,44403,44418,44432,44391,44420,44433,44433,44290,44419,44433,44419,44391,44366,44434,44435,44435,44422,44421,44435,44421,44366,44436,44409,44423,44436,44423,44267,44409,44436,44434,44267,44090,44124,44394,44207,44437,44437,44327,44424,44437,44424,44394,44438,44425,43067,44439,43042,44426,44439,44426,43014,43042,44439,43043,44427,42958,44440,44427,44440,42993,42958,44427,42962,43618,44220,44222,43662,39986,44441,44441,43640,44385,44441,44385,43662,39957,39951,44442,39957,44442,39983,39925,43698,44443,39925,44443,39951,44444,43699,44428,44444,44428,44235,43699,44444,43698,44429,44332,44445,44445,43762,44430,44445,44430,44429,44374,43863,44446,44374,44446,43807,44431,44402,44447,44431,44447,43863,44402,44431,44388,44403,44432,43954,44420,44422,44448,44448,44290,44433,44448,44433,44420,44449,44434,44436,44436,44267,44450,44436,44450,44449,44435,44449,44451,44435,44451,44422,44449,44435,44434,44267,44124,44380,44452,44327,44437,44452,44437,44207,44327,44452,44269,44453,43067,44330,44453,44330,43058,43067,44453,44438,43014,43003,44454,43014,44454,44455,44439,44455,44456,44439,44456,43043,44455,44439,43014,44457,42993,44440,44457,44440,42958,42993,44457,43003,43618,44222,43636,44458,43640,44441,44441,39986,44459,44441,44459,44458,43640,44458,44460,43640,44460,43636,44461,39983,44442,44461,44442,39951,39983,44461,39984,44444,44462,44463,44444,44463,43698,44462,44444,44235,44462,39951,44443,44443,43698,44463,44443,44463,44462,44332,44358,44464,44464,43762,44445,44464,44445,44332,44465,43863,44447,44447,44402,44466,44447,44466,44465,44446,44465,44467,44446,44467,43807,44465,44446,43863,44468,44422,44451,44468,44451,44449,44469,44449,44450,44469,44450,44267,44449,44469,44468,44422,44468,44470,44470,44290,44448,44470,44448,44422,44452,44471,44472,44452,44472,44269,44471,44452,44207,44473,44438,44453,44473,44453,43058,44438,44473,44474,42958,42957,44475,44475,43003,44457,44475,44457,42958,44476,43636,44460,44476,44460,44458,44477,44458,44459,44477,44459,39986,44458,44477,44476,43636,44476,44478,43636,44478,43618,44479,39951,44462,44462,44235,44480,44462,44480,44479,44461,44479,44481,44461,44481,39984,44479,44461,39951,44358,44239,44482,44482,43762,44464,44482,44464,44358,44467,44483,44484,44467,44484,43807,44483,44467,44465,44485,44465,44466,44485,44466,44402,44465,44485,44483,44486,43807,44484,44486,44484,44483,43807,44486,44314,44470,44487,44488,44470,44488,44290,44487,44470,44468,44489,44468,44469,44489,44469,44267,44468,44489,44487,44490,44290,44488,44490,44488,44487,44290,44490,44404,44471,44474,44491,44491,44269,44472,44491,44472,44471,43058,43057,44492,44492,44474,44473,44492,44473,43058,42957,44398,44493,42957,44493,44494,44475,44494,44495,44475,44495,43003,44494,44475,42957,39986,39985,44496,44496,44497,44498,44496,44498,39986,44476,44497,44499,44499,43618,44478,44499,44478,44476,44497,44476,44477,44477,39986,44498,44477,44498,44497,44481,44500,44501,44481,44501,39984,44500,44481,44479,44502,44479,44480,44502,44480,44235,44479,44502,44500,44503,39984,44501,44503,44501,44500,39984,44503,39985,44239,44314,44504,44239,44504,44505,44482,44505,44506,44482,44506,43762,44505,44482,44239,44402,44403,44507,44507,44508,44509,44507,44509,44402,44483,44508,44510,44510,44314,44486,44510,44486,44483,44509,44483,44485,44509,44485,44402,44483,44509,44508,44511,44487,44512,44511,44512,44380,44487,44511,44513,44490,44513,44514,44490,44514,44404,44513,44490,44487,44489,44380,44512,44489,44512,44487,44380,44489,44267,44491,43057,44515,44491,44515,44269,44491,44474,44492,44491,44492,43057,44495,44516,44517,44495,44517,43003,44516,44495,44494,44518,44494,44493,44518,44493,44398,44494,44518,44516,44519,43003,44517,44519,44517,44516,43003,44519,44520,44521,44455,44522,44521,44522,44520,44455,44521,44523,44456,44523,44524,44456,44524,43043,44523,44456,44455,44454,44520,44522,44454,44522,44455,44520,44454,43003,44525,44526,44527,44525,44527,44500,44526,44525,44528,44526,39985,44503,44503,44500,44527,44503,44527,44526,44529,44500,44502,44502,44235,44530,44502,44530,44529,44525,44529,44531,44525,44531,44528,44529,44525,44500,44532,44497,44533,44533,44528,44534,44533,44534,44532,44499,44532,44535,44499,44535,43618,44532,44499,44497,44496,44526,44536,44496,44536,44497,44526,44496,39985,44526,44528,44533,44533,44497,44536,44533,44536,44526,44537,44314,44510,44510,44508,44538,44510,44538,44537,44539,44508,44507,44507,44403,44540,44507,44540,44539,44508,44539,44541,44541,44537,44538,44541,44538,44508,44314,44537,44542,44542,44543,44544,44542,44544,44314,44505,44543,44545,44545,43762,44506,44545,44506,44505,44544,44505,44504,44544,44504,44314,44505,44544,44543,44514,44546,44547,44514,44547,44404,44546,44514,44513,44548,44513,44511,44548,44511,44380,44513,44548,44546,44549,44404,44547,44549,44547,44546,44404,44549,44550,44551,44269,44515,44551,44515,43057,44269,44551,44552,44398,43618,44553,44553,44554,44555,44553,44555,44398,44556,44554,44557,44557,44558,44559,44557,44559,44556,44554,44556,44560,44560,44398,44555,44560,44555,44554,44520,44558,44561,44561,44562,44563,44561,44563,44520,44523,44562,44564,44564,43043,44524,44564,44524,44523,44562,44523,44521,44521,44520,44563,44521,44563,44562,44558,44520,44519,44519,44516,44565,44519,44565,44558,44556,44516,44518,44518,44398,44560,44518,44560,44556,44516,44556,44559,44559,44558,44565,44559,44565,44516,44566,44567,44568,44566,44568,44528,44567,44566,44569,44570,44569,44571,44570,44571,43762,44569,44570,44567,44572,44528,44568,44572,44568,44567,44528,44572,44573,44574,44532,44575,44574,44575,44573,44532,44574,44576,44535,44576,44577,44535,44577,43618,44576,44535,44532,44534,44573,44575,44534,44575,44532,44573,44534,44528,44571,44529,44578,44571,44578,43762,44529,44571,44569,44531,44569,44566,44531,44566,44528,44569,44531,44529,44530,43762,44578,44530,44578,44529,43762,44530,44235,44579,43954,44580,44579,44580,44581,43954,44579,44403,44582,44581,44583,44583,44584,44585,44583,44585,44582,44579,44582,44586,44579,44586,44403,44582,44579,44581,44537,44584,44587,44587,44588,44589,44587,44589,44537,44543,44588,44590,44590,43762,44545,44590,44545,44543,44589,44543,44542,44589,44542,44537,44543,44589,44588,44539,44582,44591,44591,44537,44541,44591,44541,44539,44586,44539,44540,44586,44540,44403,44539,44586,44582,44585,44537,44591,44585,44591,44582,44537,44585,44584,44592,44546,44593,44592,44593,44137,44546,44592,44594,44549,44594,44595,44549,44595,44550,44594,44549,44546,44548,44137,44593,44548,44593,44546,44137,44548,44380,44596,44552,44551,44596,44551,43057,44552,44596,44597,44598,44599,44600,44598,44600,44601,44598,44573,44602,44598,44602,44599,44603,44599,44604,44603,44604,44605,44603,44601,44600,44603,44600,44599,44606,44576,44607,44606,44607,44601,44606,43618,44577,44606,44577,44576,44598,44576,44574,44598,44574,44573,44598,44601,44607,44598,44607,44576,44567,44608,44609,44609,44573,44572,44609,44572,44567,44610,44567,44570,44610,44570,43762,44567,44610,44608,44611,44599,44612,44611,44612,44608,44611,44605,44604,44611,44604,44599,44609,44599,44602,44609,44602,44573,44609,44608,44612,44609,44612,44599,44613,44614,44615,44613,44615,44616,44613,44558,44617,44613,44617,44614,44618,44614,44619,44618,44619,44605,44618,44616,44615,44618,44615,44614,44620,44562,44621,44620,44621,44616,44620,43043,44564,44620,44564,44562,44613,44562,44561,44613,44561,44558,44613,44616,44621,44613,44621,44562,44622,44554,44623,44622,44623,44601,44622,44558,44557,44622,44557,44554,44606,44554,44553,44606,44553,43618,44606,44601,44623,44606,44623,44554,44603,44614,44624,44603,44624,44601,44603,44605,44619,44603,44619,44614,44622,44614,44617,44622,44617,44558,44622,44601,44624,44622,44624,44614,43954,43956,44625,44625,44626,44627,44625,44627,43954,44628,44626,44629,44629,44630,44631,44629,44631,44628,44626,44628,44632,44632,43954,44627,44632,44627,44626,44584,44630,44633,44633,44634,44635,44633,44635,44584,44588,44634,44636,44636,43762,44590,44636,44590,44588,44634,44588,44587,44587,44584,44635,44587,44635,44634,44630,44584,44583,44583,44581,44637,44583,44637,44630,44628,44581,44580,44580,43954,44632,44580,44632,44628,44581,44628,44631,44631,44630,44637,44631,44637,44581,44638,44594,44639,44638,44639,44640,44594,44638,44641,44595,44641,44642,44595,44642,44550,44641,44595,44594,44592,44640,44639,44592,44639,44594,44640,44592,44137,44643,44597,44596,44643,44596,43057,44597,44643,44640,44644,44616,44645,44644,44645,44646,44616,44644,44647,44620,44647,44648,44620,44648,43043,44647,44620,44616,44618,44646,44645,44618,44645,44616,44646,44618,44605,44611,44649,44650,44611,44650,44605,44649,44611,44608,44651,44608,44610,44651,44610,43762,44608,44651,44649,44652,44605,44650,44652,44650,44649,44605,44652,44646,44648,44653,44654,44648,44654,43043,44653,44648,44647,44655,44647,44644,44655,44644,44646,44647,44655,44653,44656,43043,44654,44656,44654,44653,43043,44656,43044,43956,44657,44658,44658,44659,44660,44658,44660,43956,44661,44659,44662,44662,44663,44664,44662,44664,44661,44659,44661,44665,44665,43956,44660,44665,44660,44659,44630,44663,44666,44666,44667,44668,44666,44668,44630,44634,44667,44669,44669,43762,44636,44669,44636,44634,44667,44634,44633,44633,44630,44668,44633,44668,44667,44663,44630,44629,44629,44626,44670,44629,44670,44663,44661,44626,44625,44625,43956,44665,44625,44665,44661,44626,44661,44664,44664,44663,44670,44664,44670,44626,44671,44672,44673,44671,44673,43057,44672,44671,44674,44672,44640,44643,44643,43057,44673,44643,44673,44672,44641,44674,44675,44675,44550,44642,44675,44642,44641,44672,44641,44638,44672,44638,44640,44641,44672,44674,44676,44653,44677,44676,44677,44678,44653,44676,44679,44656,44679,44680,44656,44680,43044,44679,44656,44653,44655,44678,44677,44655,44677,44653,44678,44655,44646,44652,44681,44682,44652,44682,44646,44681,44652,44649,44683,44649,44651,44683,44651,43762,44649,44683,44681,44684,44646,44682,44684,44682,44681,44646,44684,44678,44680,44685,44686,44680,44686,43044,44685,44680,44679,44687,44679,44676,44687,44676,44678,44679,44687,44685,44688,43044,44686,44688,44686,44685,43044,44688,43046,44657,44550,44689,44689,44690,44691,44689,44691,44657,44692,44690,44693,44693,44694,44695,44693,44695,44692,44690,44692,44696,44696,44657,44691,44696,44691,44690,44663,44694,44697,44697,44698,44699,44697,44699,44663,44667,44698,44700,44700,43762,44669,44700,44669,44667,44698,44667,44666,44666,44663,44699,44666,44699,44698,44694,44663,44662,44662,44659,44701,44662,44701,44694,44692,44659,44658,44658,44657,44696,44658,44696,44692,44659,44692,44695,44695,44694,44701,44695,44701,44659,44702,44674,44703,44702,44703,43055,44674,44702,44704,44675,44704,44705,44675,44705,44550,44704,44675,44674,44671,43055,44703,44671,44703,44674,43055,44671,43057,44706,44685,44707,44706,44707,44708,44685,44706,44709,44688,44709,44710,44688,44710,43046,44709,44688,44685,44687,44708,44707,44687,44707,44685,44708,44687,44678,44684,44711,44712,44684,44712,44678,44711,44684,44681,44713,44681,44683,44713,44683,43762,44681,44713,44711,44714,44678,44712,44714,44712,44711,44678,44714,44708,44710,44715,44716,44710,44716,43046,44715,44710,44709,44717,44709,44706,44717,44706,44708,44709,44717,44715,44718,43046,44716,44718,44716,44715,43046,44718,43048,44719,44704,44720,44719,44720,44721,44719,44550,44705,44719,44705,44704,44722,44704,44702,44722,44702,43055,44722,44721,44720,44722,44720,44704,44723,44724,44725,44723,44725,44721,44723,44726,44727,44723,44727,44724,44719,44724,44728,44719,44728,44550,44719,44721,44725,44719,44725,44724,44729,44694,44730,44729,44730,44726,44729,44731,44732,44729,44732,44694,44698,44731,44733,44733,43762,44700,44733,44700,44698,44731,44698,44697,44697,44694,44732,44697,44732,44731,44734,44730,44735,44734,44735,44690,44730,44734,44726,44730,44694,44693,44693,44690,44735,44693,44735,44730,44724,44690,44689,44689,44550,44728,44689,44728,44724,44734,44724,44727,44734,44727,44726,44724,44734,44690,44736,44715,44737,44736,44737,44738,44715,44736,44739,44718,44739,44740,44718,44740,43048,44739,44718,44715,44717,44738,44737,44717,44737,44715,44738,44717,44708,44714,44741,44742,44714,44742,44708,44741,44714,44711,44743,44711,44713,44743,44713,43762,44711,44743,44741,44744,44708,44742,44744,44742,44741,44708,44744,44738,44740,44745,44746,44740,44746,43048,44745,44740,44739,44747,44739,44736,44747,44736,44738,44739,44747,44745,44748,43048,44746,44748,44746,44745,43048,44748,43051,44749,44745,44750,44749,44750,44726,44745,44749,44751,44748,44751,44752,44748,44752,43051,44751,44748,44745,44747,44726,44750,44747,44750,44745,44726,44747,44738,44744,44731,44753,44744,44753,44738,44731,44744,44741,44733,44741,44743,44733,44743,43762,44741,44733,44731,44729,44738,44753,44729,44753,44731,44738,44729,44726,44752,44721,44754,44752,44754,43051,44721,44752,44751,44723,44751,44749,44723,44749,44726,44751,44723,44721,44722,43051,44754,44722,44754,44721,43051,44722,43055,43193,43192,44755,44755,44756,44757,44757,44758,44759,44759,44760,44761,44762,44763,44764,44765,44766,44767,44768,44769,44770,44770,44771,44772,44772,44773,44774,44775,44776,44777,44777,44778,44779,44779,44780,44781,44782,44783,44784,44784,44785,44786,44787,44788,44789,44789,44790,44791,44792,44793,44794,44794,44795,44796,44796,44797,44798,44798,44799,44800,44800,44801,44802,44802,44803,44804,44805,44806,44807,44808,44809,44810,44811,44812,44813,44813,44814,44815,44816,44817,44818,44819,44820,44821,44822,44823,40126,40125,40124,40911,40911,40862,40723,40723,40123,40122,40120,40119,40118,40117,40116,40115,40112,40111,41186,41186,41183,41077,41077,40110,40109,40109,40108,40107,40102,40101,40100,40098,40097,40793,40793,40096,40095,40093,40092,40091,40091,40090,44824,44824,44825,44826,44827,44828,44829,44830,44831,44832,44833,44834,44835,44836,44837,44838,44838,44839,44840,44841,44842,44843,44843,44844,44845,44845,44846,44847,44848,44849,44850,44851,44852,44853,44853,44854,44855,44856,44857,44858,44859,44860,44861,44862,44863,44864,44865,44866,44867,44867,44868,44869,44870,44871,44872,44872,44873,44874,44875,44876,44877,44878,44879,44880,44880,44881,44882,44883,44884,44885,44885,43283,43282,43279,43278,43277,43272,43271,43270,43270,43269,43268,43268,43267,43396,43265,43264,43426,43426,43425,43261,43261,43260,43259,43256,43255,43254,43251,43250,43424,43424,43490,43393,43248,43247,43246,43245,43244,43243,43242,43241,43392,43392,43449,43481,43481,43497,43471,43471,43391,43240,43237,43236,43390,43390,43448,43460,43460,43447,43235,43232,43231,43423,43423,43389,43230,43229,43228,43388,43388,43227,43226,43222,43221,43220,43220,43219,43387,43387,43480,43218,43217,43216,43523,43523,43446,43215,43212,43211,43422,43422,43386,43210,43205,43204,43445,43445,43459,43421,43421,43385,43203,43198,43197,43196,43195,43194,43458,43193,44755,44757,44757,44759,44761,44762,44764,44886,44765,44767,44887,44768,44770,44772,44772,44774,44888,44775,44777,44779,44779,44781,44889,44890,44782,44784,44787,44789,44791,44792,44794,44796,44796,44798,44800,44800,44802,44804,44891,44805,44807,44808,44810,44892,44811,44813,44815,44893,44816,44818,44819,44821,44894,44822,40126,40125,40125,40911,40723,40121,40120,40118,40117,40115,40114,40112,41186,41077,41077,40109,40107,40098,40793,40095,40093,40091,44824,44824,44826,44895,44827,44829,44830,44830,44832,44896,44897,44833,44835,44836,44838,44840,44898,44841,44843,44843,44845,44847,44848,44850,44899,44900,44851,44853,44853,44855,44856,44856,44858,44859,44862,44864,44865,44901,44870,44872,44872,44874,44902,44875,44877,44878,44878,44880,44882,44883,44885,43282,43280,43279,43277,43272,43270,43268,43268,43396,43266,43265,43426,43261,43261,43259,43258,43256,43254,43253,43251,43424,43393,43249,43248,43246,43246,43245,43243,43242,43392,43481,43481,43471,43240,43237,43390,43460,43232,43423,43230,43229,43388,43226,43220,43387,43218,43218,43217,43523,43523,43215,43214,43212,43422,43210,43205,43445,43421,43198,43196,43195,43195,43458,43193,43193,44757,44761,44886,44765,44887,44903,44768,44772,44904,44775,44779,44890,44784,44786,44787,44791,44905,44792,44796,44800,44800,44804,44891,44891,44807,44906,44907,44811,44815,44815,44893,44818,44908,44822,40125,40125,40723,40122,40121,40118,40117,40113,40112,41077,41077,40107,40106,40099,40098,40095,40093,44824,44895,44909,44827,44830,44910,44897,44835,44836,44840,44898,44898,44843,44847,44847,44848,44899,44900,44853,44856,44856,44859,44861,44861,44862,44865,44901,44872,44902,44875,44878,44882,44911,44883,43282,43280,43277,43276,43272,43268,43266,43266,43265,43261,43261,43258,43257,43252,43251,43393,43242,43481,43240,43237,43460,43235,43233,43232,43230,43230,43229,43226,43222,43220,43218,43218,43523,43214,43213,43212,43210,43205,43421,43203,43198,43195,43193,43193,44761,44912,44886,44887,44913,44903,44772,44888,44904,44779,44889,44914,44787,44905,44915,44792,44800,44800,44891,44906,44907,44815,44818,44908,40125,40122,40121,40117,40114,40114,40113,41077,40100,40099,40095,40094,40093,44895,44909,44830,44896,44910,44835,44916,44836,44898,44847,44917,44900,44856,44856,44861,44865,44901,44902,44918,44875,44882,44911,44911,43282,43281,43272,43266,43261,43252,43393,43249,43242,43240,43239,43238,43237,43235,43233,43230,43226,43223,43222,43218,43218,43214,43213,43213,43210,43209,43205,43203,43202,43199,43198,43193,43193,44912,44762,44886,44913,44919,44920,44903,44888,44921,44904,44889,44914,44905,44922,44915,44800,44906,44892,44907,44818,44894,44908,40122,40121,40114,41077,40100,40095,40094,40094,44895,44923,44924,44909,44896,44910,44916,44925,44925,44836,44847,44917,44856,44865,44901,44918,44926,44927,44875,44911,44911,43281,43280,43273,43272,43261,43253,43252,43249,43243,43242,43239,43238,43235,43234,43223,43218,43213,43213,43209,43208,43199,43193,44762,44920,44888,44928,44929,44921,44889,44914,44922,44915,44915,44906,44930,44808,44892,44818,44819,44894,40122,40121,41077,40106,40100,40094,44923,44923,44924,44896,44925,44847,44899,44917,44865,44867,44927,44911,43280,43274,43273,43261,43253,43249,43246,43243,43239,43238,43224,43223,43213,43213,43208,43207,43200,43199,44762,44919,44920,44928,44929,44889,44890,44914,44915,44930,44931,44808,44818,44932,44819,40122,40122,40121,40106,40102,40100,44923,44923,44896,44910,44925,44899,44917,44927,43280,43276,43274,43261,43257,43256,43253,43246,43243,43238,43234,43224,43213,43207,43201,43200,44762,44919,44928,44929,44929,44890,44786,44933,44914,44930,44931,44818,44932,44932,40122,40106,40103,40102,44923,44910,44925,44917,44934,44927,43276,43275,43274,43257,43257,43256,43246,43243,43234,43233,43225,43224,43207,43201,44762,44886,44886,44919,44929,44929,44786,44935,44933,44930,44936,44931,44932,40106,40103,44923,44910,44917,44867,44937,44917,44937,44910,44926,44934,43276,43275,43257,43246,43243,43233,43226,43226,43225,43207,43202,43201,44886,44886,44929,44935,44933,44936,44931,44931,40106,40105,40104,40103,44910,44926,43276,43275,43275,43246,43243,43243,43226,43207,43205,43202,44886,44931,40105,44938,44931,44938,44933,44939,44910,44937,44939,44937,44867,44910,44939,40104,44926,43275,43243,43243,43207,43206,43205,44886,44935,44940,44933,44938,44940,44938,40105,44933,44940,44941,44942,40104,44939,44942,44939,44867,40104,44942,40105,44901,44926,43243,43243,43206,43205,43205,44935,44941,44942,44941,44940,44942,44940,40105,44941,44942,44867,44943,44901,43243,43205,44941,44867,44944,44943,43243,43205,44867,44869,44869,44944,43243,43243,43205,44869,43395,43450,43482,43482,43503,43394,43394,43262,43263,43263,43395,43482,43482,43394,43263,44945,44946,44947,44947,44948,44949,44949,44950,44951,44951,44952,44953,44953,44954,44945,44945,44947,44949,44949,44951,44953,44953,44945,44949,44955,44956,44957,44957,44958,44959,44959,44960,44961,44961,44955,44957,44957,44959,44961,44962,44963,44964,44964,44965,44962,44966,44967,44968,44969,44970,44971,44972,44973,44974,44975,44976,44977,44978,44979,44980,44981,44982,44983,44984,44985,44986,44987,44988,44989,44989,44990,44991,44992,44993,44994,44995,44996,44997,44998,44999,45000,45000,45001,45002,45003,45004,45005,45006,45007,45008,45009,45010,45011,45012,45013,45014,45014,45015,45016,45016,45017,45018,45019,45020,45021,45022,45023,45024,45024,45025,45026,45026,45027,45028,45029,45030,45031,45032,45033,45034,45034,45035,45036,45036,45037,45038,45039,45040,45041,45041,45042,45043,45043,45044,45045,45045,45046,45047,45047,45048,45049,45050,45051,45052,45052,45053,45054,45054,45055,45056,45057,45058,45059,45059,45060,45061,45061,45062,45063,45064,45065,45066,45067,45068,45069,45070,45071,45072,45073,45074,45075,45076,45077,45078,45079,45080,45081,45081,45082,45083,45083,45084,45085,45086,45087,45088,45089,45090,45091,45092,45093,45094,45094,45095,45096,45097,45098,45099,45100,45101,45102,45103,45104,45105,45106,45107,45108,45108,45109,45110,45110,45111,45112,45112,45113,45114,45115,45116,45117,45117,45118,45119,45120,45121,45122,45123,45124,45125,45125,45126,45127,45127,44966,44968,44969,44971,45128,45129,44972,44974,44978,44980,45130,44981,44983,45131,45132,44984,44986,44987,44989,44991,45133,44992,44994,45134,44995,44997,45135,44998,45000,45000,45002,45003,45003,45005,45006,45009,45011,45136,45136,45012,45014,45014,45016,45018,45018,45019,45021,45137,45022,45024,45024,45026,45028,45028,45029,45031,45032,45034,45036,45036,45038,45138,45041,45043,45045,45045,45047,45049,45050,45052,45054,45054,45056,45139,45139,45057,45059,45059,45061,45063,45063,45064,45066,45140,45067,45069,45141,45070,45072,45073,45075,45142,45143,45076,45078,45079,45081,45083,45083,45085,45144,45086,45088,45145,45146,45089,45091,45092,45094,45096,45100,45102,45103,45103,45105,45147,45106,45108,45110,45110,45112,45114,45115,45117,45119,45119,45120,45122,45125,45127,44968,45148,44969,45128,45129,44974,44975,44978,45130,44981,44981,45131,45132,45132,44986,44987,44987,44991,45149,45150,45133,44994,45134,44997,45151,45135,45000,45003,45008,45009,45136,45136,45014,45018,45018,45021,45137,45137,45024,45028,45028,45031,45152,45032,45036,45138,45041,45045,45049,45050,45054,45139,45139,45059,45063,45063,45066,45140,45140,45069,45153,45154,45141,45072,45143,45078,45079,45079,45083,45144,45146,45091,45155,45092,45096,45097,45099,45100,45103,45156,45106,45110,45115,45119,45122,45125,44968,45148,45148,45128,45129,44978,44981,45132,45132,44987,45149,45150,44994,45157,45158,45134,45151,45159,45135,45003,45008,45136,45018,45018,45137,45028,45028,45152,45032,45032,45138,45039,45039,45041,45049,45160,45050,45139,45139,45063,45140,45140,45153,45161,45154,45072,45073,45143,45079,45144,45155,45092,45097,45099,45103,45147,45162,45156,45110,45114,45115,45122,45125,45148,45129,44977,44978,45132,45132,45149,45163,45150,45157,45164,45165,45158,45151,45159,45003,45006,45006,45008,45018,45018,45028,45032,45032,45039,45049,45166,45160,45139,45139,45140,45161,45154,45073,45142,45142,45143,45144,45155,45097,45099,45099,45147,45162,45162,45110,45114,45114,45122,45167,45123,45125,45129,44977,45132,45163,45164,45165,45151,45006,45018,45168,45006,45168,45159,45032,45049,45169,45032,45169,45018,45166,45139,45161,45154,45142,45144,45099,45162,45114,45114,45167,45123,45123,45129,44975,44975,44977,45163,45164,45151,45170,45171,45159,45168,45171,45168,45018,45159,45171,45170,45169,45172,45173,45169,45173,45018,45172,45169,45049,45174,45166,45161,45154,45144,45175,45155,45099,45114,45114,45123,44975,45176,45170,45171,45176,45171,45018,45170,45176,45164,45172,45174,45177,45177,45018,45173,45177,45173,45172,45174,45161,45154,45154,45175,45086,45146,45155,45114,45114,44975,45163,45178,45164,45176,45178,45176,45018,45164,45178,45150,45174,45154,45179,45179,45018,45177,45179,45177,45174,45154,45086,45145,45114,45163,45180,45114,45180,45146,45181,45150,45178,45181,45178,45018,45150,45181,45163,45154,45145,45182,45182,45018,45179,45182,45179,45154,45183,45146,45180,45183,45180,45163,45146,45183,45184,45182,45184,45185,45182,45185,45018,45184,45182,45145,45185,45163,45181,45185,45181,45018,45185,45184,45183,45185,45183,45163,45186,45187,45188,45188,45189,45190,45190,45191,45192,45193,45194,45195,45196,45197,45186,45186,45188,45190,45190,45192,45193,45193,45195,45196,45196,45186,45190,45190,45193,45196,45198,38695,38694,38694,40484,40749,40482,40481,40480,40480,40479,40478,40476,40475,40474,40473,40472,40648,40648,40471,40470,40468,40467,40748,40748,40839,40647,40463,40462,40461,40460,40459,40940,40940,40806,40458,40455,40454,40747,40747,40870,40453,40450,40449,40448,40447,40446,40646,40646,40746,40838,40838,40745,40645,40444,40443,40869,40869,40442,40441,40437,40436,40435,40432,40431,40837,40837,40836,40805,40427,40426,40744,40744,40425,40424,40422,40421,40743,40743,40644,40420,40419,40418,40417,40412,40411,40410,40409,40408,40897,40897,40868,40407,40403,40402,45199,45200,45201,45202,45203,45204,45205,45205,45206,45207,45207,45208,45209,45210,45211,45212,45213,45214,45215,45216,45217,45218,45218,45219,45220,45221,45222,45223,45224,45225,45226,45227,45228,45229,45229,45230,45231,45232,45233,45234,45234,45235,45236,45237,45238,45239,45240,45241,45242,45242,45243,45244,45244,45245,45246,45247,45248,45249,45249,45250,45251,45251,45252,45253,45254,45255,45256,45257,45258,45259,45259,45260,45261,45261,45262,45263,45263,45264,45265,45266,45267,45268,45268,45269,45270,45271,45272,45273,45274,45275,45276,45277,45278,45279,45280,45281,45282,45282,45283,45284,45285,45286,45287,45287,45288,45289,45289,45290,45291,45292,45293,45294,45294,45295,45296,45296,45297,45298,45298,45299,45300,45301,45302,45303,45303,45304,45305,45305,45306,45307,45307,45308,44967,45126,45125,45124,45124,45123,45167,45167,45122,45121,45121,45120,45119,45116,45115,45114,45107,45106,45156,45156,45162,45147,45104,45103,45102,45101,45100,45099,45098,45097,45096,45093,45092,45155,45090,45089,45146,45146,45184,45145,45087,45086,45175,45175,45144,45085,45084,45083,45082,45080,45079,45078,45077,45076,45143,45143,45142,45075,45074,45073,45072,45071,45070,45141,45141,45154,45161,45161,45153,45069,45068,45067,45140,45065,45064,45063,45061,45060,45309,45310,45311,45312,45313,45314,45315,45316,45317,45318,45318,45319,45320,45320,45321,45322,45322,45323,45324,45324,45325,45326,45326,45327,45328,45329,45330,45331,45331,45332,45333,45333,45334,45335,45336,45337,45338,45338,45339,45340,45340,45341,45342,45342,45343,45344,45345,45346,45347,45347,45348,45349,45349,45350,45351,45352,45353,45354,45354,45355,45356,45357,45358,45359,45359,45360,45361,45361,45362,45363,45364,45365,45366,45366,45367,45368,45369,45370,45371,45372,45373,45374,45375,45376,45377,45378,45379,45380,45381,45382,45383,45384,45385,45386,45386,45387,45388,45389,45390,45391,45391,45392,45393,45394,45395,45396,45397,45398,45399,45399,45400,45401,45402,45403,45404,45405,45406,45407,45408,45409,45410,45410,45411,45412,45412,45413,45414,45415,45416,45417,45417,45418,45419,45420,45421,45422,45423,45424,45425,45426,45427,45428,45429,45430,45431,45432,45433,45434,45435,45436,45437,45437,45438,45439,45439,45440,45441,45442,45443,45444,45445,45446,45447,45448,45449,45450,45451,45452,45453,45454,45455,45456,45456,45457,45458,45458,45459,45460,45461,45462,45463,45463,45464,45465,45466,45467,45468,45469,45470,45471,45472,45473,45474,45474,45475,45476,45477,45478,45479,45480,45481,45482,45483,45484,45485,45486,45487,45488,45488,45489,45490,45491,45492,45493,45494,45198,38694,38694,40749,40483,40476,40474,40473,40473,40648,40470,40468,40748,40647,40463,40461,40460,40460,40940,40458,40455,40747,40453,40450,40448,40447,40447,40646,40838,40838,40645,40445,40444,40869,40441,40438,40437,40435,40433,40432,40837,40837,40805,40430,40427,40744,40424,40422,40743,40420,40420,40419,40417,40413,40412,40410,40410,40409,40897,40897,40407,40406,40404,40403,45199,45495,45200,45202,45496,45203,45205,45205,45207,45209,45210,45212,45497,45213,45215,45216,45216,45218,45220,45498,45221,45223,45227,45229,45231,45232,45234,45236,45237,45239,45499,45240,45242,45244,45247,45249,45251,45500,45254,45256,45257,45259,45261,45261,45263,45265,45266,45268,45270,45271,45273,45501,45274,45276,45502,45503,45277,45279,45279,45280,45282,45282,45284,45504,45285,45287,45289,45289,45291,45505,45292,45294,45296,45296,45298,45300,45303,45305,45307,45307,44967,44966,45126,45124,45167,45121,45119,45118,45117,45116,45114,45107,45156,45147,45101,45099,45098,45094,45093,45155,45090,45146,45145,45088,45087,45175,45081,45080,45078,45077,45143,45075,45075,45074,45072,45071,45141,45161,45068,45140,45066,45065,45063,45062,45062,45061,45309,45310,45312,45506,45313,45315,45507,45316,45318,45320,45322,45324,45326,45326,45328,45329,45329,45331,45333,45336,45338,45340,45340,45342,45344,45345,45347,45349,45351,45352,45354,45357,45359,45361,45361,45363,45508,45364,45366,45368,45509,45369,45371,45372,45374,45375,45377,45378,45380,45380,45381,45383,45384,45386,45388,45389,45391,45393,45397,45399,45401,45405,45407,45408,45408,45410,45412,45415,45417,45419,45419,45420,45422,45423,45425,45426,45426,45428,45510,45431,45432,45434,45435,45437,45439,45442,45444,45511,45445,45447,45448,45448,45450,45451,45454,45456,45458,45458,45460,45512,45461,45463,45465,45466,45468,45469,45513,45472,45474,45474,45476,45477,45477,45479,45514,45480,45482,45483,45486,45488,45490,45491,45493,45494,45494,38694,40483,40477,40476,40473,40473,40470,40469,40469,40468,40647,40463,40460,40458,40455,40453,40452,40447,40838,40445,40445,40444,40441,40438,40435,40434,40433,40837,40430,40427,40424,40423,40422,40420,40417,40413,40410,40897,40897,40406,40405,40405,40404,45199,45496,45205,45209,45213,45216,45220,45498,45223,45515,45227,45231,45516,45517,45232,45236,45240,45244,45246,45247,45251,45253,45500,45256,45518,45257,45261,45265,45266,45270,45271,45501,45274,45502,45503,45279,45282,45285,45289,45505,45519,45292,45296,45301,45303,45307,45127,45126,45167,45117,45114,45113,45107,45147,45105,45102,45101,45098,45094,45155,45091,45091,45090,45145,45088,45175,45085,45081,45078,45077,45077,45075,45072,45071,45161,45069,45065,45062,45309,45309,45310,45506,45316,45320,45322,45322,45326,45329,45329,45333,45335,45336,45340,45344,45345,45349,45351,45351,45354,45356,45520,45357,45361,45361,45508,45521,45364,45368,45522,45509,45371,45372,45372,45375,45377,45380,45383,45384,45384,45388,45389,45389,45393,45523,45397,45401,45524,45405,45408,45412,45414,45415,45419,45422,45423,45426,45426,45510,45525,45431,45434,45435,45435,45439,45441,45442,45511,45445,45448,45451,45453,45454,45458,45512,45466,45469,45471,45513,45474,45477,45477,45514,45526,45527,45480,45483,45485,45486,45490,45528,45491,45494,45494,40483,40482,40477,40473,40469,40469,40647,40466,40464,40463,40458,40456,40455,40452,40447,40445,40441,40434,40433,40430,40423,40422,40417,40413,40897,40405,40405,45199,45495,45202,45496,45209,45529,45213,45220,45220,45498,45515,45530,45227,45516,45517,45236,45531,45240,45246,45532,45532,45247,45253,45253,45500,45518,45533,45257,45265,45266,45271,45501,45502,45503,45282,45285,45505,45534,45519,45296,45300,45301,45307,44966,44966,45127,45167,45117,45113,45112,45107,45105,45104,45102,45098,45096,45094,45091,45145,45145,45088,45085,45081,45077,45072,45071,45069,45068,45066,45065,45309,45309,45506,45313,45316,45322,45329,45335,45336,45344,45345,45351,45356,45520,45361,45521,45364,45522,45509,45509,45372,45377,45380,45384,45389,45389,45523,45394,45396,45397,45524,45535,45405,45412,45414,45419,45422,45422,45426,45525,45429,45431,45435,45435,45441,45442,45442,45445,45448,45454,45512,45536,45513,45477,45526,45527,45483,45485,45485,45490,45537,45528,45494,40482,40478,40477,40469,40469,40466,40465,40465,40464,40458,40456,40452,40451,40450,40447,40441,40434,40430,40429,40427,40423,40417,40414,40413,40405,40405,45495,45202,45202,45209,45210,45538,45529,45220,45220,45515,45539,45530,45516,45517,45540,45240,45532,45532,45253,45518,45533,45265,45541,45542,45266,45501,45502,45282,45504,45543,45519,45300,45544,45301,44966,44966,45167,45121,45117,45112,45111,45107,45104,45102,45095,45094,45145,45081,45072,45071,45071,45068,45066,45066,45309,45313,45545,45316,45329,45335,45344,45345,45345,45356,45520,45509,45377,45380,45380,45389,45394,45394,45396,45524,45404,45535,45412,45412,45414,45422,45422,45525,45546,45429,45435,45442,45454,45536,45461,45527,45485,45537,45537,45528,40482,40480,40478,40469,40465,40458,40457,40456,40451,40450,40450,40441,40440,40438,40434,40429,40427,40417,40416,40414,40405,45202,45538,45220,45539,45547,45530,45517,45540,45532,45518,45533,45541,45542,45542,45501,45502,45502,45504,45285,45543,45300,45548,44966,45121,45118,45107,45102,45096,45095,45145,45085,45081,45071,45066,45066,45313,45507,45549,45545,45329,45345,45520,45521,45380,45394,45550,45380,45550,45509,45394,45524,45402,45404,45412,45422,45422,45546,45429,45429,45442,45448,45526,45527,45537,45537,40482,40480,40469,40465,40457,40456,40450,40440,40427,40416,40415,40415,40414,45202,45497,45538,45539,45547,45517,45531,45551,45540,45518,45533,45542,45502,45502,45285,45534,45534,45543,45548,45544,44966,45118,45107,45096,45095,45095,45085,45084,45082,45081,45066,45066,45507,45549,45549,45329,45335,45345,45521,45364,45552,45509,45550,45552,45550,45394,45509,45552,45364,45394,45402,45404,45422,45429,45553,45422,45553,45404,45526,45537,40480,40469,40457,40456,40456,40440,40439,40428,40427,40415,40415,45202,45210,45210,45497,45539,45547,45531,45554,45499,45551,45518,45502,45534,45555,45502,45555,45533,45534,45548,45544,45544,45118,45117,45107,45095,45084,45082,45066,45549,45549,45335,45345,45556,45364,45552,45556,45552,45394,45364,45556,45345,45557,45404,45553,45557,45553,45429,45404,45557,45394,45526,40480,40469,40469,40456,40439,40428,40415,45210,45210,45539,45558,45237,45499,45518,45108,45107,45084,45082,45549,45345,45429,45448,45559,45429,45559,45560,45557,45560,45561,45557,45561,45394,45560,45557,45429,45513,45526,40469,40469,40439,40438,40429,40428,45210,45210,45558,45562,45563,45237,45518,45108,45084,45082,45082,45345,45556,45556,45394,45564,45556,45564,45082,45513,40469,45565,45513,45565,45471,40438,40429,45566,40438,45566,40469,40429,45210,45562,45563,45518,45567,45109,45108,45082,45568,40469,45566,45568,45566,40429,45568,45471,45565,45568,45565,40469,40429,45562,45569,45563,45567,45533,45109,45082,45564,45109,45564,45394,45570,45471,45568,45570,45568,40429,45471,45570,45466,40429,45569,45224,45110,45109,45394,45571,45466,45570,45571,45570,40429,45466,45571,45465,40429,45224,45226,45111,45110,45394,40429,45226,45547,45117,45111,45394,45547,45554,45572,45547,45572,40429,45117,45394,45573,45117,45573,45544,45554,45465,45571,45571,40429,45572,45571,45572,45554,45574,45544,45573,45574,45573,45394,45544,45574,45534,45461,45465,45554,45560,45534,45574,45574,45394,45561,45574,45561,45560,45534,45560,45559,45534,45559,45448,45461,45554,45563,45555,45448,45575,45555,45575,45533,45448,45555,45534,45461,45563,45533,45453,45533,45575,45453,45575,45448,45454,45461,45533,45533,45453,45454,45576,45577,45578,45579,45580,45581,45581,45576,45578,45578,45579,45581,45582,45583,45584,45584,45585,45586,45586,45587,45582,45582,45584,45586,45588,45589,45590,45590,45591,45592,45593,45588,45590,45590,45592,45593,45594,45595,45596,45596,45597,45598,45598,45599,45594,45594,45596,45598,45600,45601,45602,45602,45603,45604,45605,45606,45600,45600,45602,45604,45604,45605,45600,45607,45608,45609,45609,45610,45611,45611,45612,45613,45613,45614,45607,45607,45609,45611,45611,45613,45607,45615,39905,39904,39904,39903,40712,39901,39900,40602,40602,39899,39898,39898,39897,39896,39893,39892,40601,40601,40784,39891,39890,39889,39888,39888,39887,39886,39885,39884,40711,40711,39883,39882,39882,39881,40600,40600,40824,39880,39877,39876,39875,39875,39874,40783,40783,40884,39873,39870,39869,40710,40710,40599,39868,39867,39866,40598,39864,39863,40597,39861,39860,39859,39855,39854,39853,39851,39850,40596,40596,39849,39848,39846,39845,39844,39844,39843,40782,40782,40857,40909,40909,39842,39841,39841,39840,39839,39839,39838,39837,39834,39833,39832,39831,39830,40595,40595,40594,39829,39828,39827,40709,40709,39826,39825,39825,39824,39823,39820,39819,39818,39817,39816,39815,39815,39814,40856,40856,40708,39813,39812,39811,40593,40593,40781,40592,39807,39806,39805,39805,39804,39803,39802,39801,39800,39799,39798,39797,39796,39795,39794,39794,39793,39792,39792,39791,40707,40707,40780,40779,39789,39788,40591,40591,40706,40778,39784,39783,40705,40705,39782,39781,39777,39776,40590,40590,39775,39774,39774,39773,39772,39771,39770,40589,40589,39769,39768,39768,39767,39766,39764,39763,39762,39762,39761,40588,39759,39758,39757,39755,39754,39753,39753,39752,39751,39751,39750,39749,39748,39747,40704,40704,40587,39746,39745,39744,39743,39742,39741,39740,39739,39738,39737,39734,39733,39732,39731,39730,39729,39728,39727,40586,40586,39726,39725,39725,39724,40881,40881,40957,39723,39722,39721,39720,39718,39717,39716,39714,39713,40585,39707,39706,39705,39703,39702,40703,40703,40702,39701,39700,39699,39698,39698,39697,40701,39695,39694,40584,40584,39693,39692,39692,39691,40583,40583,40854,40700,39687,39686,39685,39684,39683,39682,39682,39681,39680,39678,39677,40955,40955,40928,40777,39673,39672,39671,39670,39669,39668,39667,39666,40699,40699,40776,40853,40853,40582,39665,39660,39659,40775,40775,40581,39658,39657,39656,39655,39655,39654,39653,39652,39651,39650,39648,39647,40580,40580,39646,39645,39645,39644,39643,39642,39641,39640,39639,39638,40579,39636,39635,40578,40578,39634,39633,39633,39632,39631,39630,39629,39628,39625,39624,39623,39622,39621,39620,39619,39618,39617,39616,39615,39614,39613,39612,40577,39610,39609,39608,39606,39605,39604,39603,39602,40698,40698,40576,39601,39600,39599,40774,40774,40880,39598,39591,39590,40697,39588,39587,39586,39585,39584,39583,39581,39580,39579,39579,45616,45617,45617,45618,45619,45619,45620,45621,45622,45623,45624,45624,45625,45626,45627,45628,45629,45629,45630,45631,45631,45632,45633,45633,45634,45635,45635,45636,45637,45638,45639,45640,45641,45642,45643,45644,45645,45646,45646,45647,45648,45649,45650,45651,45652,45653,45654,45654,45655,45656,45656,45657,45658,45659,45660,45661,45662,45663,45664,45665,45666,45667,45668,45669,45670,45671,45672,45673,45673,45674,45675,45676,45677,45678,45679,45680,45681,45681,45682,45683,45683,45684,45685,45686,45687,45688,45689,45690,45691,45691,45692,45693,45693,45694,45695,45696,45697,45698,45699,45700,45701,45702,45703,45704,45704,45705,45706,45707,45708,45709,45710,45711,45712,45713,45714,45715,45715,45716,45717,45718,45719,45720,45720,45721,45722,45723,45724,45725,45725,45726,45727,45727,45728,45729,45729,45730,45731,45732,45733,45734,45735,45736,45737,45738,45739,45740,45741,45742,45743,45743,45744,45745,45745,45746,45747,45748,45749,45750,45751,45752,45753,45754,45755,45756,45757,45758,45759,45760,45761,45762,45762,45763,45764,45764,45765,45766,45767,45768,45769,45769,45770,45771,45771,45772,45773,45774,45775,45776,45776,45777,45778,45778,45779,45780,45781,45782,45783,45784,45785,45786,45786,45787,45788,45789,45790,45791,45791,45792,45793,45793,45794,45795,45796,45797,45798,45799,45800,45801,45801,45802,45803,45804,45805,45806,45806,45807,45808,45808,45809,45810,45811,45812,45813,45813,45814,45815,45816,45817,45818,45818,45819,45820,45821,45822,45823,45823,45824,45825,45826,45827,45828,45828,45829,45830,45830,45831,45832,45833,45834,45835,45836,45837,45838,45838,45839,45840,45841,45842,45843,45844,45845,45846,45846,45847,45848,45849,45850,45851,45851,45852,45853,45854,45855,45856,45857,45858,45859,45859,45860,45861,45861,45862,45863,45864,45865,45866,45867,45868,45869,45869,45870,45871,45871,45872,45873,45873,45874,45875,45876,45877,45878,45878,45879,45880,45881,45882,45883,45884,45885,45886,45887,45888,45889,45889,45890,45891,45892,45893,45894,45895,45896,45897,45897,45898,45899,45900,45901,45902,45903,45615,39904,39904,40712,39902,39901,40602,39898,39898,39896,39895,39893,40601,39891,39886,39885,40711,39882,40600,39880,39877,39875,40783,40783,39873,39872,39870,40710,39868,39867,40598,39865,39864,40597,39862,39862,39861,39859,39856,39855,39853,39851,40596,39848,39846,39844,40782,40782,40909,39841,39841,39839,39837,39834,39832,39831,39831,40595,39829,39828,40709,39825,39820,39818,39817,39817,39815,40856,39812,40593,40592,39805,39803,39802,39799,39797,39796,39794,39792,40707,40707,40779,39790,39789,40591,40778,39784,40705,39781,39778,39777,40590,39774,39772,39771,39771,40589,39768,39768,39766,39765,39762,40588,39760,39759,39757,39756,39756,39755,39753,39753,39751,39749,39748,40704,39746,39745,39743,39742,39742,39740,39739,39739,39737,39736,39731,39729,39728,39728,40586,39725,39725,40881,39723,39723,39722,39720,39714,40585,39712,39707,39705,39704,39703,40703,39701,39700,39698,40701,39695,40584,39692,39692,40583,40700,39687,39685,39684,39684,39682,39680,39678,40955,40777,39674,39673,39671,39667,40699,40853,39661,39660,40775,39655,39653,39652,39648,40580,39645,39645,39643,39642,39642,39640,39639,39639,40579,39637,39636,40578,39633,39631,39630,39628,39626,39625,39623,39620,39619,39617,39616,39614,39613,39613,40577,39611,39606,39604,39603,39603,40698,39601,39600,40774,39598,39592,39591,40697,39588,39586,39585,39585,39583,39582,39581,39579,45617,45617,45619,45621,45904,45622,45624,45624,45626,45905,45905,45627,45629,45631,45633,45635,45635,45637,45638,45641,45643,45644,45644,45646,45648,45649,45651,45906,45652,45654,45656,45656,45658,45659,45659,45661,45662,45665,45667,45668,45671,45673,45675,45675,45676,45678,45679,45681,45683,45686,45688,45907,45907,45689,45691,45693,45695,45696,45696,45698,45908,45699,45701,45909,45910,45702,45704,45704,45706,45911,45709,45710,45712,45713,45715,45717,45718,45720,45722,45723,45725,45727,45727,45729,45731,45732,45734,45912,45912,45735,45737,45913,45738,45740,45914,45741,45743,45743,45745,45747,45748,45750,45751,45754,45756,45757,45757,45759,45760,45762,45764,45766,45915,45767,45769,45769,45771,45773,45776,45778,45780,45783,45784,45786,45789,45791,45793,45795,45796,45798,45799,45801,45803,45804,45806,45808,45811,45813,45815,45816,45818,45820,45821,45823,45825,45826,45828,45830,45830,45832,45916,45917,45833,45835,45836,45838,45840,45843,45844,45846,45849,45851,45853,45854,45856,45857,45857,45859,45861,45861,45863,45864,45864,45866,45867,45867,45869,45871,45871,45873,45875,45876,45878,45880,45881,45883,45918,45918,45884,45886,45887,45889,45891,45919,45892,45894,45895,45897,45899,45902,45903,39904,39901,39898,39895,39893,39891,39890,39886,40711,39882,39882,39880,39879,39877,40783,39872,39871,39870,39868,39864,39862,39859,39852,39851,39848,39846,40782,39841,39841,39837,39836,39835,39834,39831,39831,39829,39828,39821,39820,39817,39817,40856,39813,39812,40592,39810,39807,39805,39802,39800,39799,39796,39794,40707,39790,39789,40778,39787,39785,39784,39781,39779,39778,40590,39774,39771,39768,39768,39765,39764,39759,39756,39753,39753,39749,39748,39748,39746,39745,39745,39742,39739,39731,39728,39725,39725,39723,39720,39714,39712,39711,39704,39703,39701,39700,40701,39696,39695,39692,40700,39687,39684,39680,39679,39678,40777,39667,40853,39665,39661,40775,39658,39655,39652,39650,39649,39648,39645,39645,39642,39639,39639,39637,39636,39636,39633,39631,39631,39628,39627,39626,39623,39622,39620,39617,39616,39616,39613,39611,39606,39603,39601,39601,39600,39598,39592,40697,39589,39588,39585,39582,39582,39581,45617,45617,45621,45920,45904,45624,45905,45905,45629,45631,45631,45635,45638,45644,45648,45921,45921,45649,45906,45656,45659,45662,45671,45675,45678,45679,45683,45685,45686,45907,45691,45693,45696,45908,45922,45699,45909,45704,45911,45707,45709,45712,45923,45924,45713,45717,45722,45723,45727,45732,45912,45737,45913,45740,45925,45914,45743,45747,45748,45751,45753,45754,45757,45760,45760,45762,45766,45915,45769,45773,45783,45786,45788,45926,45789,45793,45795,45798,45927,45799,45803,45928,45804,45808,45810,45815,45816,45820,45826,45830,45916,45917,45835,45929,45930,45836,45840,45841,45843,45846,45931,45849,45853,45857,45861,45864,45867,45871,45875,45875,45876,45880,45918,45886,45932,45933,45887,45891,45919,45894,45895,45895,45899,45934,45902,39904,39902,39902,39901,39895,39894,39893,39890,39886,39882,39879,39878,39877,39872,39865,39864,39859,39852,39848,39847,39847,39846,39841,39841,39836,39835,39835,39831,39828,39821,39817,39813,39812,39810,39809,39808,39807,39802,39802,39800,39796,39785,39781,39780,39779,40590,39774,39774,39768,39764,39753,39748,39745,39745,39739,39736,39732,39731,39725,39725,39720,39719,39704,39701,39700,39700,39696,39695,39695,40700,39690,39688,39687,39680,39680,39679,40777,39667,39665,39664,39662,39661,39658,39655,39650,39649,39649,39645,39639,39639,39636,39631,39626,39622,39620,39620,39616,39611,39606,39601,39598,39592,39589,39588,39588,39582,45617,45617,45920,45935,45936,45904,45905,45905,45631,45638,45644,45921,45906,45656,45662,45664,45670,45671,45678,45937,45679,45685,45685,45686,45691,45693,45908,45938,45922,45909,45910,45924,45717,45718,45718,45722,45727,45732,45737,45939,45913,45925,45914,45914,45747,45940,45753,45754,45760,45760,45766,45915,45915,45773,45941,45783,45788,45942,45926,45793,45795,45795,45927,45799,45799,45928,45804,45815,45820,45943,45825,45826,45916,45917,45929,45944,45944,45930,45840,45841,45846,45848,45931,45853,45854,45857,45864,45867,45867,45875,45880,45918,45932,45945,45933,45891,45946,45919,45895,45934,45900,45902,39902,39902,39895,39894,39894,39890,39888,39886,39879,39878,39878,39872,39871,39867,39865,39859,39847,39841,39835,39835,39828,39825,39812,39809,39808,39808,39802,39796,39785,39780,39779,39779,39774,39764,39753,39745,39736,39732,39725,39719,39704,39700,39695,39688,39680,40777,39668,39667,39664,39662,39658,39657,39649,39639,39631,39627,39626,39620,39620,39611,39610,39607,39606,39598,39592,39588,45617,45936,45905,45638,45641,45644,45906,45668,45670,45678,45947,45937,45685,45685,45691,45693,45924,45718,45727,45731,45732,45939,45913,45914,45940,45748,45753,45760,45760,45915,45941,45783,45942,45948,45926,45795,45799,45799,45804,45810,45815,45943,45821,45821,45825,45916,45949,45917,45944,45944,45840,45950,45841,45848,45931,45931,45854,45857,45857,45867,45880,45946,45919,45934,45900,39902,39894,39894,39888,39886,39886,39878,39871,39867,39859,39858,39852,39847,39835,39835,39825,39823,39812,39808,39796,39779,39764,45951,39779,45951,39785,39753,39736,45952,39753,45952,39759,39734,39732,39719,39704,39695,39690,39688,40777,39676,39668,39664,39663,39662,39657,39655,39655,39649,39631,39631,39627,39620,39620,39610,39608,39607,39598,39597,39592,45617,45935,45953,45936,45638,45640,45641,45906,45668,45678,45947,45947,45685,45693,45924,45727,45731,45731,45939,45954,45954,45913,45940,45748,45760,45941,45926,45799,45810,45821,45916,45949,45944,45950,45955,45955,45841,45931,45931,45857,45880,45933,45946,45934,45934,45900,39894,39894,39886,39871,39852,39835,39823,39812,39796,39794,45956,39785,45951,45956,45951,39764,39785,45956,39786,45957,39759,45952,45957,45952,39736,39759,45957,39760,39735,39734,39719,39707,39704,39690,39689,39688,39676,39668,39663,39662,39662,39655,39631,39631,39620,39608,39592,45935,45958,45958,45953,45638,45640,45906,45959,45665,45668,45947,45947,45693,45938,45924,45731,45954,45954,45940,45748,45748,45941,45774,45926,45810,45811,45821,45949,45944,45944,45955,45931,45931,45880,45881,45933,45934,39894,39853,39852,39823,39813,39812,39794,45960,39786,45956,45960,45956,39764,39786,45960,39787,39736,39735,45961,45961,39760,45957,45961,45957,39736,39735,39719,39718,39707,39690,39689,39689,39676,39675,39668,39662,39631,39631,39608,39607,39592,45958,45638,45947,45938,45962,45947,45962,45665,45923,45924,45954,45954,45748,45774,45926,45811,45815,45821,45944,45931,45931,45881,45918,45945,45933,39894,39853,39823,45963,39853,45963,39856,39794,39790,45964,39794,45964,39813,39764,39762,45965,45965,39787,45960,45965,45960,39764,39735,39718,45966,45966,39760,45961,45966,45961,39735,39689,39675,45967,39689,45967,39707,39670,39668,39631,39607,39597,45968,39607,45968,39631,39592,45638,45969,39592,45969,39593,45970,45665,45962,45970,45962,45938,45665,45970,45971,45954,45774,45972,45954,45972,45923,45931,45918,45973,45931,45973,45821,45918,45945,39894,45974,39856,45963,45974,45963,39823,39856,45974,39857,45975,39813,45964,45964,39790,45976,45964,45976,45975,39813,45975,45977,39813,45977,39821,45978,39787,45965,45965,39762,45979,45965,45979,45978,39787,45978,45980,39787,45980,39789,45981,39760,45966,45981,45966,39718,39760,45981,39762,45982,39707,45967,45982,45967,39675,39707,45982,39708,39670,39631,45968,39670,45968,39597,45983,39593,45969,45983,45969,45638,39593,45983,39594,45984,45971,45970,45984,45970,45938,45971,45984,45664,45985,45923,45972,45985,45972,45774,45923,45985,45709,45986,45821,45973,45986,45973,45918,45821,45986,45815,45918,39894,39871,45987,39857,45974,45987,45974,39823,39857,45987,39858,39790,39789,45988,45988,45989,45990,45988,45990,39790,45975,45989,45991,45991,39821,45977,45991,45977,45975,45989,45975,45976,45976,39790,45990,45976,45990,45989,45992,39762,45981,45992,45981,39718,39762,45992,45993,45978,45993,45994,45994,39789,45980,45994,45980,45978,45993,45978,45979,45993,45979,39762,39675,39674,45995,45995,39708,45982,45995,45982,39675,39671,39670,39597,45996,39594,45983,45996,45983,45638,39594,45996,39595,45938,45922,45997,45997,45664,45984,45997,45984,45938,45998,45709,45985,45998,45985,45774,45709,45998,45707,45999,45815,45986,45986,45918,46000,45986,46000,45999,45815,45999,46001,45815,46001,45926,45918,39871,39868,46002,39858,45987,46002,45987,39823,39858,46002,39867,45994,46003,46004,45994,46004,39789,45994,45993,46005,45994,46005,46003,46006,45993,45992,45992,39718,46007,45992,46007,46006,45993,46006,46008,46008,46003,46005,46008,46005,45993,46009,39789,46004,46009,46004,46003,46009,46010,46011,46009,46011,39789,45989,46010,46012,46012,39821,45991,46012,45991,45989,46010,45989,45988,45988,39789,46011,45988,46011,46010,39674,39671,46013,46013,39708,45995,46013,45995,39674,39671,39597,39596,45638,45640,46014,46014,39595,45996,46014,45996,45638,45922,45910,46015,46015,45664,45997,46015,45997,45922,46016,45707,45998,46016,45998,45774,45707,46016,45704,46017,45999,46018,46018,39868,46019,46018,46019,46017,46001,46017,46020,46001,46020,45926,46017,46001,45999,45918,39868,46018,46018,45999,46000,46018,46000,45918,46021,39867,46002,46021,46002,39823,39867,46021,39868,46022,46010,46023,46022,46023,46024,46010,46022,46025,46012,46025,46026,46012,46026,39821,46025,46012,46010,46009,46024,46023,46009,46023,46010,46024,46009,46003,46008,46027,46028,46008,46028,46003,46027,46008,46006,46029,46006,46007,46029,46007,39718,46006,46029,46027,46030,46003,46028,46030,46028,46027,46003,46030,46024,46026,46031,46032,46026,46032,39821,46031,46026,46025,46033,46025,46022,46033,46022,46024,46025,46033,46031,46034,39821,46032,46034,46032,46031,39821,46034,39822,39671,39596,46035,46035,39708,46013,46035,46013,39671,46036,39595,46014,46036,46014,45640,39595,46036,39596,46037,45704,46016,46037,46016,45774,45704,46037,45910,46020,46038,46039,46020,46039,45926,46038,46020,46017,46040,46017,46019,46040,46019,39868,46017,46040,46038,46041,45926,46039,46041,46039,46038,45926,46041,45948,39823,39822,46042,46042,39868,46021,46042,46021,39823,46043,46044,46045,46043,46045,46024,46044,46043,46046,46047,46046,46048,46047,46048,39716,46046,46047,46044,46049,46024,46045,46049,46045,46044,46024,46049,46050,46051,46031,46052,46051,46052,46050,46031,46051,46053,46034,46053,46054,46034,46054,39822,46053,46034,46031,46033,46050,46052,46033,46052,46031,46050,46033,46024,46048,46027,46055,46048,46055,39716,46027,46048,46046,46030,46046,46043,46030,46043,46024,46046,46030,46027,46029,39716,46055,46029,46055,46027,39716,46029,39718,46056,39708,46035,46056,46035,39596,39708,46056,39709,45640,45959,46057,46057,39596,46036,46057,46036,45640,46058,45910,46037,46037,45774,46059,46037,46059,46058,45910,46058,46060,46060,45664,46015,46060,46015,45910,46061,46042,46062,46061,46062,46063,46042,46061,39868,46042,39822,46064,46064,46063,46062,46064,46062,46042,46038,46063,46065,46065,45948,46041,46065,46041,46038,46061,46038,46040,46061,46040,39868,46038,46061,46063,46066,46067,46068,46066,46068,46050,46067,46066,46069,46070,46069,46071,46070,46071,39715,46069,46070,46067,46072,46050,46068,46072,46068,46067,46050,46072,46073,46074,46053,46075,46074,46075,46073,46053,46074,46076,46054,46076,46077,46054,46077,39822,46076,46054,46053,46051,46073,46075,46051,46075,46053,46073,46051,46050,46071,46044,46078,46071,46078,39715,46044,46071,46069,46049,46069,46066,46049,46066,46050,46069,46049,46044,46047,39715,46078,46047,46078,46044,39715,46047,39716,46057,46079,46080,46057,46080,39596,46079,46057,45959,46079,39709,46056,46056,39596,46080,46056,46080,46079,45774,45776,46081,46081,46082,46083,46081,46083,45774,46058,46082,46084,46084,45664,46060,46084,46060,46058,46083,46058,46059,46083,46059,45774,46058,46083,46082,46065,46085,46086,46065,46086,45948,46085,46065,46063,46087,46063,46064,46087,46064,39822,46063,46087,46085,46088,45948,46086,46088,46086,46085,45948,46088,45783,46089,46073,46090,46090,46091,46092,46090,46092,46089,46093,46091,46094,46094,39714,46095,46094,46095,46093,46091,46093,46096,46096,46089,46092,46096,46092,46091,46073,46089,46097,46097,46098,46099,46097,46099,46073,46076,46098,46100,46100,39822,46077,46100,46077,46076,46098,46076,46074,46074,46073,46099,46074,46099,46098,39715,39714,46094,46094,46091,46101,46094,46101,39715,46067,46091,46090,46090,46073,46072,46090,46072,46067,46091,46067,46070,46070,39715,46101,46070,46101,46091,46102,39709,46079,46102,46079,45959,39709,46102,39710,46084,46103,46104,46084,46104,45664,46103,46084,46082,46105,46082,46081,46105,46081,45776,46082,46105,46103,46106,45664,46104,46106,46104,46103,45664,46106,45656,46088,46107,46108,46088,46108,45783,46107,46088,46085,46109,46085,46087,46109,46087,39822,46085,46109,46107,46110,45783,46108,46110,46108,46107,45783,46110,45781,39714,39711,46111,46111,46112,46113,46111,46113,39714,46114,46112,46115,46115,46116,46117,46115,46117,46114,46112,46114,46118,46118,39714,46113,46118,46113,46112,46089,46116,46119,46119,46120,46121,46119,46121,46089,46098,46120,46122,46122,39822,46100,46122,46100,46098,46120,46098,46097,46097,46089,46121,46097,46121,46120,46116,46089,46096,46096,46093,46123,46096,46123,46116,46114,46093,46095,46095,39714,46118,46095,46118,46114,46093,46114,46117,46117,46116,46123,46117,46123,46093,46124,39710,46102,46124,46102,45959,39710,46124,39711,45776,45780,46125,46125,46126,46127,46125,46127,45776,46103,46126,46128,46128,45656,46106,46128,46106,46103,46126,46103,46105,46105,45776,46127,46105,46127,46126,46110,46129,46130,46110,46130,45781,46129,46110,46107,46131,46107,46109,46131,46109,39822,46107,46131,46129,46132,45781,46130,46132,46130,46129,45781,46132,45780,46133,46116,46134,46134,46135,46136,46134,46136,46133,46137,46135,46138,46138,45959,46139,46138,46139,46137,46136,46137,46140,46136,46140,46133,46137,46136,46135,46141,46120,46142,46142,46133,46143,46142,46143,46141,46122,46141,46144,46122,46144,39822,46141,46122,46120,46116,46133,46142,46142,46120,46119,46142,46119,46116,46145,46124,46146,46145,46146,46135,46124,46145,39711,46124,45959,46138,46138,46135,46146,46138,46146,46124,46112,46135,46134,46134,46116,46115,46134,46115,46112,46145,46112,46111,46145,46111,39711,46112,46145,46135,46128,46147,46148,46128,46148,45656,46147,46128,46126,46149,46126,46125,46149,46125,45780,46126,46149,46147,46150,45656,46148,46150,46148,46147,45656,46150,45652,46151,46152,46153,46151,46153,46133,46152,46151,46154,46155,46154,46156,46155,46156,45652,46154,46155,46152,46157,46133,46153,46157,46153,46152,46133,46157,46158,46159,46141,46160,46159,46160,46158,46141,46159,46161,46144,46161,46162,46144,46162,39822,46161,46144,46141,46143,46158,46160,46143,46160,46141,46158,46143,46133,46156,46137,46163,46156,46163,45652,46137,46156,46154,46140,46154,46151,46140,46151,46133,46154,46140,46137,46139,45652,46163,46139,46163,46137,45652,46139,45959,46129,46161,46164,46164,45780,46132,46164,46132,46129,46162,46129,46131,46162,46131,39822,46129,46162,46161,46165,46164,46166,46165,46166,46158,46164,46165,45780,46164,46161,46159,46159,46158,46166,46159,46166,46164,46157,46147,46167,46157,46167,46158,46147,46157,46152,46150,46152,46155,46150,46155,45652,46152,46150,46147,46167,46149,46168,46167,46168,46158,46149,46167,46147,46149,45780,46165,46165,46158,46168,46165,46168,46149,42931,42930,42929,42929,42928,42935,42935,42927,42926,42926,46169,46170,46171,46172,46173,46173,46174,46175,46175,46176,42942,42936,42942,46176,46176,46177,46178,46179,46180,46181,46182,46183,46184,46185,46186,46187,46187,46188,46189,46190,46191,46192,46193,46194,46195,46195,46196,46197,46197,46198,46199,46200,46201,46202,46202,46203,46204,46204,46205,46206,46207,46208,46209,46210,46211,46212,46212,46213,46214,46214,46215,46216,46217,46218,46219,46220,46221,46222,46223,46224,46225,46225,46226,46227,46227,46228,46229,46230,46231,46232,46232,46233,46234,46234,42798,42797,42795,42794,42793,42793,42792,42791,42791,42790,42879,42879,42878,42789,42786,42785,42869,42869,42874,42784,42783,42782,42781,42780,42779,42778,42775,42774,42773,42764,42763,42868,42868,42877,42884,42884,42860,42762,42761,42760,42759,42758,42757,46235,46235,46236,42913,42929,42935,42926,46171,46173,46175,46175,42942,42941,42936,46176,46178,46179,46181,46237,46185,46187,46189,46190,46192,46238,46238,46193,46195,46195,46197,46199,46239,46200,46202,46204,46206,46207,46209,46210,46212,46212,46214,46216,46217,46219,46220,46220,46222,46223,46223,46225,46227,46227,46229,46230,46230,46232,46234,46234,42797,42796,42793,42791,42879,42879,42789,42788,42786,42869,42784,42784,42783,42781,42780,42778,42777,42775,42773,42772,42764,42868,42884,42884,42762,42761,42761,42759,42758,42758,46235,42913,42931,42929,42926,46171,46175,42941,42936,46178,46240,46240,46179,46237,46241,46185,46189,46190,46238,46195,46195,46199,46239,46239,46202,46204,46204,46207,46209,46209,46212,46216,46217,46220,46223,46227,46230,46234,46234,42796,42795,42795,42793,42879,42787,42786,42784,42784,42781,42780,42780,42777,42776,42776,42775,42772,42765,42764,42884,42884,42761,42758,42758,42913,42912,42931,42926,46170,46170,46171,42941,42936,46240,46237,46241,46189,46242,46243,46190,46195,46195,46239,46204,46204,46209,46216,46217,46223,46227,46227,46234,42795,42795,42879,42788,42787,42784,42780,42776,42772,42771,42765,42884,42758,42758,42912,42933,42931,46170,42941,42936,46237,46182,46243,46195,46204,46204,46216,46217,46227,42795,46244,46227,46244,46217,42788,42787,42780,42766,42765,42758,42932,42931,42941,46245,46243,46204,46246,46217,46244,46246,46244,42795,46217,46246,46204,42788,42780,42776,42767,42766,42758,42933,42932,42941,46242,46245,46204,42795,42788,46247,46247,46204,46246,46247,46246,42795,42788,42776,42771,42768,42767,42758,42933,42941,42940,46241,46242,46204,42933,42940,42939,46248,46241,46204,42933,42939,42938,46248,46204,46247,46248,46247,42788,42758,42933,42938,46184,46248,42788,42758,42938,42937,46182,46184,42788,42768,42758,42937,46182,42788,42771,42769,42768,42937,46182,42771,42770,42769,42937,42936,46182,42770,42769,42769,42936,46182,46249,46250,46251,46251,46252,46253,46253,46254,46255,46256,46257,46249,46249,46251,46253,46253,46255,46256,46256,46249,46253,46258,46259,46260,46260,46261,46262,46262,46263,46258,46258,46260,46262,46264,46265,46266,46266,46267,46268,46268,46269,46270,46270,46271,46272,46272,46264,46266,46266,46268,46270,46270,46272,46266,46273,46274,46275,46275,46276,46277,46277,46278,46279,46279,46280,46273,46273,46275,46277,46277,46279,46273,46281,46282,46283,46283,46284,46285,46286,46287,46288,46289,46290,46291,46291,46292,46293,46294,46295,46296,46297,46298,46299,46299,46300,46301,46301,46302,46303,46304,46305,46306,46306,46307,46308,46308,46309,46310,46310,46311,46312,46312,46313,46314,46315,46316,46317,46318,46319,46320,46320,46321,46322,46322,46323,46324,46324,46325,46326,46327,46328,46329,46330,46331,46332,46332,46333,46334,46334,46335,46336,46336,46337,46338,46339,46340,46341,46342,46343,46344,46344,46345,46346,46346,46347,46348,46349,46350,46351,46352,46353,46354,46354,46355,46356,46356,46357,46358,46359,46360,46361,46361,46362,46363,46364,46365,46366,46366,46367,46368,46369,46370,46371,46372,46373,46374,46375,46376,46377,46377,46378,46379,46379,46380,46381,46381,46382,46383,46384,46385,46386,46387,46388,46389,46390,46391,46392,46393,46394,46395,46396,46397,46398,46398,46399,46400,46401,46402,46403,46403,46404,46405,46406,46407,46408,46408,46409,46410,46411,46281,46283,46283,46285,46286,46289,46291,46293,46294,46296,46412,46297,46299,46301,46301,46303,46413,46304,46306,46308,46308,46310,46312,46315,46317,46414,46415,46318,46320,46320,46322,46324,46324,46326,46416,46327,46329,46417,46330,46332,46334,46336,46338,46418,46418,46339,46341,46342,46344,46346,46346,46348,46349,46352,46354,46356,46359,46361,46363,46364,46366,46368,46419,46369,46371,46372,46374,46375,46375,46377,46379,46379,46381,46383,46420,46384,46386,46387,46389,46421,46390,46392,46393,46393,46395,46422,46396,46398,46400,46401,46403,46405,46406,46408,46410,46411,46283,46286,46289,46293,46423,46294,46412,46424,46297,46301,46413,46413,46304,46308,46308,46312,46314,46415,46320,46324,46327,46417,46425,46330,46334,46336,46336,46418,46341,46342,46346,46349,46426,46352,46356,46427,46359,46363,46364,46368,46428,46419,46371,46372,46372,46375,46379,46379,46383,46420,46429,46390,46393,46430,46396,46400,46406,46410,46431,46432,46411,46286,46289,46423,46294,46297,46413,46308,46308,46314,46315,46433,46415,46324,46425,46330,46336,46336,46341,46342,46342,46349,46351,46426,46356,46358,46427,46363,46364,46364,46428,46419,46419,46372,46379,46429,46393,46422,46434,46430,46400,46405,46406,46431,46431,46432,46286,46289,46294,46424,46297,46308,46315,46433,46324,46416,46425,46336,46342,46435,46426,46358,46358,46427,46364,46419,46379,46420,46436,46429,46422,46422,46434,46400,46401,46405,46431,46431,46286,46288,46288,46289,46424,46437,46297,46315,46438,46433,46416,46327,46425,46342,46435,46358,46364,46364,46419,46420,46421,46436,46422,46422,46400,46439,46401,46431,46288,46424,46437,46315,46414,46438,46416,46327,46342,46351,46435,46364,46420,46421,46422,46439,46440,46401,46288,46424,46315,46414,46414,46416,46327,46327,46351,46441,46441,46435,46420,46387,46421,46439,46440,46288,46424,46424,46414,46327,46441,46420,46442,46441,46442,46327,46386,46387,46439,46443,46440,46424,46424,46327,46442,46442,46420,46444,46442,46444,46424,46386,46439,46445,46444,46386,46446,46444,46446,46424,46386,46444,46420,46386,46445,46443,46443,46424,46446,46443,46446,46386,46447,46448,46449,46450,46451,46452,46453,46454,46455,46455,46456,46457,46457,46458,46459,46460,46461,46462,46463,46464,46465,46465,46466,46467,46467,46468,46469,46470,46471,46472,46473,46474,46475,46475,46476,46477,46478,46479,46480,46449,46450,46452,46481,46453,46455,46455,46457,46459,46460,46462,46482,46463,46465,46467,46467,46469,46483,46484,46470,46472,46473,46475,46477,46477,46478,46480,46449,46452,46485,46485,46481,46455,46455,46459,46460,46460,46482,46463,46463,46467,46483,46483,46484,46472,46473,46477,46480,46447,46449,46485,46485,46455,46460,46460,46463,46483,46472,46473,46480,46447,46485,46460,46460,46483,46472,46472,46480,46486,46486,46447,46460,46460,46472,46486,46487,46488,46489,46490,46491,46492,46492,46493,46494,46495,46496,46497,46498,46499,46500,46501,46502,46503,46503,46504,46505,46505,46506,46507,46508,46509,46510,46510,46511,46512,46512,46513,46514,46514,46515,46516,46517,46518,46519,46520,46521,46522,46523,46524,46525,46526,46527,46528,46529,46530,46322,46319,46318,46415,46415,46433,46438,46438,46414,46317,46316,46315,46314,46305,46304,46413,46413,46303,46302,46298,46297,46437,46437,46424,46412,46412,46296,46531,46531,46532,46533,46534,46535,46536,46536,46537,46538,46538,46539,46540,46541,46542,46543,46544,46545,46546,46547,46548,46549,46549,46550,46551,46552,46553,46554,46555,46556,46557,46557,46558,46559,46560,46561,46562,46563,46564,46565,46566,46567,46568,46568,46569,46570,46571,46572,46573,46573,46574,46575,46576,46577,46578,46578,46579,46580,46581,46582,46583,46584,46585,46586,46587,46588,46589,46589,46590,46591,46591,46592,46593,46594,46595,46596,46596,46597,46598,46598,46599,46600,46601,46602,46603,46603,46604,46605,46606,46607,46608,46609,46610,46611,46490,46492,46494,46612,46495,46497,46613,46501,46503,46503,46505,46507,46508,46510,46512,46512,46514,46516,46614,46517,46519,46520,46522,46615,46523,46525,46526,46526,46528,46616,46529,46322,46321,46319,46415,46438,46438,46317,46316,46316,46314,46313,46305,46413,46302,46299,46298,46437,46437,46412,46531,46534,46536,46538,46541,46543,46617,46544,46546,46548,46548,46547,46618,46619,46547,46549,46549,46551,46620,46555,46557,46559,46560,46562,46563,46563,46565,46621,46566,46568,46570,46622,46571,46573,46576,46578,46580,46581,46583,46623,46587,46589,46591,46594,46596,46598,46598,46600,46601,46601,46603,46605,46606,46608,46609,46624,46490,46494,46612,46497,46625,46626,46613,46503,46503,46507,46627,46628,46508,46512,46512,46516,46629,46629,46614,46519,46520,46615,46523,46523,46526,46616,46630,46529,46321,46320,46319,46438,46316,46313,46312,46306,46305,46302,46300,46299,46437,46437,46531,46533,46534,46538,46540,46544,46548,46618,46631,46619,46549,46555,46559,46632,46560,46563,46621,46566,46570,46633,46622,46573,46575,46575,46576,46580,46634,46587,46591,46594,46598,46601,46601,46605,46606,46606,46609,46611,46624,46494,46612,46612,46625,46498,46626,46503,46627,46628,46512,46629,46629,46519,46635,46520,46523,46616,46630,46321,46320,46320,46438,46316,46307,46306,46302,46300,46437,46533,46636,46534,46540,46544,46618,46637,46631,46549,46620,46555,46632,46560,46560,46621,46638,46566,46633,46639,46640,46622,46575,46575,46580,46581,46634,46591,46593,46641,46594,46601,46601,46606,46611,46624,46612,46498,46642,46626,46627,46643,46628,46629,46520,46616,46630,46630,46320,46316,46307,46302,46301,46301,46300,46533,46636,46540,46541,46544,46637,46644,46645,46631,46620,46554,46555,46560,46646,46566,46639,46640,46575,46581,46634,46593,46647,46648,46641,46601,46601,46611,46487,46489,46624,46498,46649,46642,46627,46650,46643,46629,46520,46630,46316,46307,46301,46533,46533,46636,46541,46651,46544,46644,46554,46560,46638,46646,46639,46640,46640,46581,46623,46634,46647,46648,46648,46601,46487,46489,46498,46500,46649,46627,46652,46650,46629,46635,46653,46520,46316,46307,46533,46541,46651,46644,46645,46552,46554,46638,46638,46646,46640,46640,46623,46654,46634,46648,46487,46500,46649,46652,46655,46650,46635,46653,46316,46312,46307,46541,46617,46651,46645,46620,46656,46552,46638,46638,46640,46654,46657,46634,46487,46500,46652,46655,46655,46635,46658,46659,46653,46312,46308,46307,46617,46617,46651,46620,46620,46656,46638,46638,46654,46584,46657,46487,46489,46489,46500,46655,46655,46658,46660,46660,46659,46312,46308,46617,46620,46620,46638,46584,46661,46657,46489,46655,46660,46662,46655,46662,46489,46660,46312,46311,46309,46308,46620,46620,46584,46586,46663,46661,46489,46660,46311,46664,46664,46489,46662,46664,46662,46660,46309,46620,46586,46663,46489,46664,46663,46664,46311,46310,46309,46586,46665,46663,46311,46311,46310,46586,46586,46665,46311,46666,46667,46668,46668,46669,46670,46670,46671,46672,46672,46673,46666,46666,46668,46670,46670,46672,46666,46674,46675,46676,46676,46677,46678,46678,46679,46680,46680,46674,46676,46676,46678,46680,46392,46391,46681,46682,46683,46684,46685,46686,46687,46688,46689,46690,46691,46692,46693,46694,46695,46696,46696,46697,46698,46699,46700,46701,46701,46702,46703,46704,46705,46706,46706,46707,46708,46709,46710,46711,46712,46713,46714,46715,46716,46717,46718,46719,46720,46720,46721,46722,46722,46723,46724,46724,46725,46726,46726,46727,46728,46728,46729,46730,46731,46732,46733,46733,46734,46735,46735,46736,46737,46738,46739,46740,46740,46741,46742,46743,46744,46745,46745,46746,46747,46747,46748,46749,46750,46751,46752,46752,46753,46754,46754,46755,46756,46757,46758,46759,46760,46761,46762,46762,46763,46764,46765,46766,46767,46768,46769,46770,46770,46771,46772,46773,46774,46775,46776,46777,46778,46778,46779,46780,46781,46782,46783,46784,46785,46786,46786,46787,46788,46788,46789,46790,46791,46792,46793,46793,46794,46795,46795,46796,46797,46798,46799,46800,46800,46801,46802,46803,46804,46805,46806,46807,46808,46809,46810,46811,46812,46813,46814,46814,46815,46816,46817,46818,46819,46820,46821,46822,46823,46824,46825,46825,46826,46827,46827,46828,46829,46830,46831,46832,46832,46833,46834,46835,46836,46837,46837,46838,46839,46840,46841,46842,46842,46843,46844,46844,46845,46846,46846,46847,46848,46849,46850,46851,46851,46852,46853,46853,46854,46855,46856,46857,46858,46859,46860,46861,46861,46862,46863,46864,46865,46866,46866,46867,46868,46868,46869,46870,46871,46872,46873,46873,46874,46875,46875,46876,46877,46878,46879,46880,46881,46882,46883,46884,42166,42165,42165,42261,42270,42259,42258,42257,42255,42254,42269,42269,42253,42252,42246,42245,42244,42243,42242,42268,42240,42239,42238,42233,42232,42231,42230,42229,42282,42282,42285,42281,42281,42267,42228,42225,42224,42266,42266,42273,42276,42276,42279,42278,42278,42265,42223,42222,42221,42220,42219,42218,46885,46885,46886,46887,46888,46889,46890,46891,46892,46893,46893,46894,46895,46895,46896,46897,46897,46898,46899,46900,46901,46902,46902,46903,46904,46905,46906,46907,46908,46909,46910,46911,46912,46913,46913,46914,46915,46916,46917,46918,46919,46920,46921,46922,46923,46924,46925,46926,46927,46927,46928,46929,46929,46930,46931,46931,46932,46933,46934,46935,46936,46937,46938,46939,46940,46941,46942,46942,46943,46944,46945,46946,46947,46948,46949,46950,46950,46951,46952,46953,46954,46955,46955,46486,46480,46479,46956,46957,46957,46958,46959,46959,46960,46961,46962,46963,46964,46965,46966,46967,46968,46969,46970,46970,46971,46972,46972,46973,46974,46282,46281,46411,46411,46432,46431,46407,46406,46405,46404,46403,46402,46402,46401,46440,46440,46443,46445,46445,46439,46400,46397,46396,46430,46430,46434,46422,46394,46393,46392,46392,46681,46975,46687,46688,46690,46691,46693,46694,46694,46696,46698,46699,46701,46703,46704,46706,46708,46709,46711,46712,46712,46714,46715,46720,46722,46724,46724,46726,46728,46728,46730,46976,46731,46733,46735,46735,46737,46977,46978,46743,46745,46745,46747,46749,46750,46752,46754,46754,46756,46757,46757,46759,46760,46760,46762,46764,46765,46767,46979,46768,46770,46772,46773,46775,46776,46776,46778,46780,46781,46783,46980,46784,46786,46788,46788,46790,46981,46791,46793,46795,46795,46797,46982,46798,46800,46802,46803,46805,46983,46983,46806,46808,46984,46812,46814,46814,46816,46817,46823,46825,46827,46827,46829,46985,46830,46832,46834,46835,46837,46839,46986,46840,46842,46842,46844,46846,46846,46848,46987,46987,46849,46851,46851,46853,46855,46859,46861,46863,46864,46866,46868,46868,46870,46988,46871,46873,46875,46989,46881,46883,46884,42165,42270,42260,42259,42257,42255,42269,42252,42246,42244,42243,42243,42268,42241,42240,42238,42237,42234,42233,42231,42230,42282,42281,42225,42266,42276,42276,42278,42223,42220,42219,46885,46888,46890,46990,46893,46895,46897,46900,46902,46904,46908,46910,46911,46911,46913,46915,46991,46916,46918,46919,46921,46922,46925,46927,46929,46929,46931,46933,46934,46936,46937,46937,46939,46992,46940,46942,46944,46945,46947,46993,46948,46950,46952,46953,46955,46480,46480,46479,46957,46957,46959,46961,46994,46962,46964,46965,46967,46968,46968,46970,46972,46972,46974,46995,46282,46411,46431,46407,46405,46404,46402,46440,46445,46445,46400,46399,46397,46430,46422,46394,46392,46975,46685,46687,46690,46694,46698,46996,46997,46699,46703,46998,46704,46708,46708,46709,46712,46712,46715,46717,46718,46720,46724,46724,46728,46976,46731,46735,46977,46978,46745,46749,46999,46750,46754,46754,46757,46760,46760,46764,47000,47001,46765,46979,47002,46768,46772,46773,46776,46780,47003,46781,46980,46784,46788,46981,46981,46791,46795,46795,46982,47004,47004,46798,46802,46803,46983,46808,46984,46814,46817,46823,46827,46985,46830,46834,47005,46986,46842,46846,46987,46851,46855,46858,46859,46863,46864,46868,46988,46871,46875,46877,46989,46883,47006,47006,46884,42270,42256,42255,42252,42246,42243,42241,42241,42240,42237,42234,42231,42230,42230,42281,42228,42225,42276,42223,42220,46885,46887,46891,46893,46897,46900,46904,47007,47008,46908,46911,46911,46915,46991,46991,46918,47009,47009,46919,46922,47010,46925,46929,46929,46933,47011,46934,46937,46992,46940,46944,47012,46945,46993,47013,47014,46948,46952,46953,46480,46957,46957,46961,47015,46994,46964,46965,46968,46972,46995,47016,46282,46431,46408,46407,46404,46404,46402,46445,46398,46397,46422,46395,46394,46975,46685,46690,47017,46691,46694,46996,47018,46997,46703,47019,46998,46708,46712,46717,47020,46712,47020,46708,46718,46724,46976,46731,46977,47021,46742,46978,46749,46999,46754,46760,46760,47000,47022,47001,46979,47002,47002,46772,47023,47024,46773,46780,47025,47003,46980,47026,46784,46981,46981,46795,47004,47027,46803,46808,46984,46817,46819,46822,46823,46985,46985,46830,47005,46986,46846,46987,46858,46863,46864,46864,46988,47028,47029,46871,46877,46989,47006,42270,42257,42256,42252,42247,42246,42241,42234,42230,42228,42226,42225,42223,42222,42220,46887,46990,46891,46897,47030,46900,47007,47031,47008,46911,46991,47009,46922,47010,46929,47011,47032,46934,46992,46940,47012,46945,47014,46952,47033,47033,46953,46957,46994,46965,46968,46968,46995,47016,47016,46431,46410,46408,46404,46445,46398,46422,46395,46395,46975,46682,46685,47017,47034,46691,46996,47018,47018,46703,47035,47035,47019,46708,46717,47036,47037,47037,46708,47020,47037,47020,46717,47036,46718,46976,46731,47021,46738,46742,46749,47038,47039,46999,46760,47001,47002,47023,47024,46780,47040,46980,47026,46981,46981,47004,46802,47027,46808,46809,46811,46984,46819,46822,46985,47005,46986,46987,46855,46858,46864,47028,47029,46877,46878,46989,42270,42260,42260,42257,42252,42247,42241,42237,42235,42234,42228,42227,42226,42223,42222,46887,46888,46990,46897,46899,47030,47007,46905,47031,46911,46991,46991,46922,46924,47041,47010,47011,47032,46992,46940,46940,46945,47013,47014,47033,46957,46968,47016,46410,46409,46408,46445,46398,46395,46682,47042,46708,47037,47042,47037,47036,46708,47042,47035,47036,46976,46731,46740,46742,47038,47038,47039,46760,47001,47023,47024,46980,46981,46802,47027,46809,46811,46811,46819,47043,46820,46822,47005,46839,46986,46855,46858,47028,47044,46858,47044,46856,47029,46878,46880,47045,46989,42260,42260,42252,42251,42248,42247,42237,42236,42235,42228,42227,42223,42222,46990,46899,47046,47047,47030,46905,46907,47031,46991,47041,47011,47032,47032,46940,47013,47013,47014,46957,46994,46968,46410,46409,46445,46399,46398,46682,46684,47048,47035,47042,47048,47042,47036,47035,47048,47018,47036,46731,46738,46740,47038,46760,47001,47024,47040,47025,46980,46802,46802,47027,46811,47043,46820,47005,46835,46839,46855,47049,46856,47044,47049,47044,47028,46856,47049,47050,47029,46880,47051,47045,42260,42251,42237,42236,42228,47047,46905,46907,46907,46991,46924,47041,47032,47013,47013,46957,47015,46994,46410,46409,46409,46399,46398,46398,46684,47052,47053,47018,47048,47048,47036,47054,47048,47054,47053,47018,47053,47055,47018,47055,46691,46740,46760,47056,46740,47056,46738,47040,47025,46802,46802,46811,47043,47043,47005,46835,46835,46855,47057,47058,47050,47049,47058,47049,47028,47050,47058,47059,47060,47045,42251,42237,42228,42227,47061,47047,46907,47013,47015,47062,46994,46409,46398,47055,47063,47064,47055,47064,46691,47063,47055,47053,47065,47053,47054,47065,47054,47036,47053,47065,47063,47066,46691,47064,47066,47064,47063,46691,47066,47034,47022,46738,47056,47022,47056,46760,47040,46802,47043,47043,46835,47057,47067,47059,47058,47067,47058,47028,47059,47067,47057,47068,47060,42251,42237,42227,47069,42237,47069,42248,47061,46907,46924,47041,47013,47062,46398,47052,47070,46398,47070,46994,47036,46738,47071,47036,47071,47072,47063,47072,47073,47073,47034,47066,47073,47066,47063,47072,47063,47065,47072,47065,47036,46738,47022,47074,47040,47043,47075,47040,47075,47001,47076,47057,47067,47067,47028,47077,47067,47077,47076,47057,47076,47078,47057,47078,47043,47068,42251,42250,42227,42222,47079,47079,42248,47069,47079,47069,42227,47046,47061,46924,47062,46994,47080,47062,47080,47041,47052,46685,47081,47081,46994,47070,47081,47070,47052,47073,47082,47083,47073,47083,47034,47082,47073,47072,47084,47072,47071,47084,47071,46738,47072,47084,47082,47085,47034,47083,47085,47083,47082,47034,47085,46685,46738,47074,47001,47078,47086,47087,47078,47087,47043,47086,47078,47076,47088,47076,47077,47088,47077,47028,47076,47088,47086,47089,47043,47087,47089,47087,47086,47089,47001,47075,47089,47075,47043,47051,47068,42250,42222,46888,47090,42222,47090,47091,47079,47091,47092,47079,47092,42248,47091,47079,42222,46990,47046,46924,47093,46994,47081,47093,47081,46685,47093,47041,47080,47093,47080,46994,46738,47001,47094,46738,47094,47095,47096,47095,47097,47096,47097,47098,47095,47096,46738,47082,47098,47099,47082,47099,47100,47085,47100,47101,47085,47101,46685,47100,47085,47082,47098,47082,47084,47084,46738,47096,47084,47096,47098,47028,47029,47102,47102,47103,47104,47102,47104,47028,47086,47103,47105,47105,47001,47089,47105,47089,47086,47103,47086,47088,47088,47028,47104,47088,47104,47103,47051,42250,42249,46888,46990,46924,47106,47041,47093,47106,47093,46685,47041,47106,46924,47107,47108,47109,47107,47109,47110,47108,47107,47098,47108,47029,47111,47111,47110,47109,47111,47109,47108,47100,47110,47112,47112,46685,47101,47112,47101,47100,47107,47100,47099,47107,47099,47098,47100,47107,47110,47095,47103,47113,47113,47098,47097,47113,47097,47095,47105,47095,47094,47105,47094,47001,47095,47105,47103,47102,47108,47114,47102,47114,47103,47108,47102,47029,47108,47098,47113,47113,47103,47114,47113,47114,47108,47051,42249,42248,46888,46924,47115,46888,47115,47116,47091,47116,47117,47117,42248,47092,47117,47092,47091,47116,47091,47090,47116,47090,46888,47110,47118,47119,47119,46685,47112,47119,47112,47110,47120,47110,47111,47120,47111,47029,47110,47120,47118,47121,47106,47122,47121,47122,47118,47106,47121,46924,47106,46685,47119,47119,47118,47122,47119,47122,47106,47117,47123,47124,47117,47124,42248,47123,47117,47116,47125,47116,47115,47125,47115,46924,47116,47125,47123,47126,42248,47124,47126,47124,47123,42248,47126,47051,47126,47118,47127,47126,47127,47051,47118,47126,47123,47121,47123,47125,47121,47125,46924,47123,47121,47118,47120,47051,47127,47120,47127,47118,47051,47120,47029,47128,47129,47130,47130,47131,47132,47132,47133,47134,47135,47136,47137,47138,47139,47140,47141,47142,47143,47143,47144,47145,47146,47147,47148,47148,47149,47150,47151,47152,47153,47154,47155,47156,47156,47157,47158,47158,47159,47160,47161,47162,47163,47164,47165,47166,47167,47168,47169,47169,47170,47171,47172,47173,47174,47174,47175,47176,47177,47178,47179,47179,47180,47181,47182,47183,47184,47184,47185,47186,47187,47188,47189,47190,47191,47192,47192,47193,47194,47194,47195,47196,47197,47128,47130,47132,47134,47198,47199,47135,47137,47138,47140,47200,47201,47141,47143,47146,47148,47150,47151,47153,47202,47154,47156,47158,47161,47163,47164,47164,47166,47167,47167,47169,47171,47172,47174,47176,47177,47179,47181,47182,47184,47186,47187,47189,47203,47190,47192,47194,47194,47196,47204,47197,47130,47132,47132,47198,47205,47199,47137,47138,47201,47143,47145,47146,47150,47206,47206,47151,47202,47154,47158,47160,47161,47164,47167,47167,47171,47207,47172,47176,47177,47177,47181,47208,47203,47190,47194,47209,47197,47132,47199,47138,47200,47200,47201,47145,47145,47146,47206,47154,47160,47210,47161,47167,47207,47172,47177,47208,47203,47194,47204,47209,47132,47205,47205,47199,47200,47200,47145,47206,47154,47210,47161,47172,47208,47182,47187,47203,47204,47204,47209,47205,47205,47200,47206,47154,47161,47207,47207,47172,47182,47186,47187,47204,47204,47205,47206,47211,47154,47207,47207,47182,47186,47204,47206,47202,47212,47211,47207,47207,47186,47204,47204,47202,47212,47212,47207,47204,45199,40402,40401,40401,40643,40400,40399,40398,40742,40742,40835,40741,40741,40642,40397,40396,40395,40394,40393,40392,40641,40641,40391,40390,40386,40385,40384,40381,40380,40379,40378,40377,40376,40375,40374,40804,40370,40369,40368,40367,40366,40365,47213,47214,47215,47216,47217,47218,47218,47219,47220,47221,47222,47223,47223,47224,47225,47225,47226,47227,47227,47228,47229,47229,47230,47231,47232,47233,47234,47235,47236,47237,47237,47238,47239,47239,47240,47241,47242,47243,47244,47245,47246,47247,47248,47249,47250,47250,47251,47252,47253,47254,47255,47255,47256,47257,47257,47258,47259,47260,47261,47262,47262,47263,47264,47265,47266,47267,47268,47269,47270,47271,47272,47273,47273,47274,47275,47276,47277,47278,47279,47280,47281,47282,47283,47284,47285,47286,47287,47287,47288,47289,47290,47291,47292,47292,47293,47294,47295,47296,47297,47298,47299,47300,47300,47301,47302,47303,47304,47305,47305,47306,47307,47308,47309,47310,47311,44996,44995,44995,45134,45158,45158,45165,45164,45164,45157,44994,44993,44992,45133,45133,45150,45163,45163,45149,44991,44988,44987,44986,44985,44984,45132,45132,45131,44983,44982,44981,45130,44979,44978,44977,44976,44975,44974,44973,44972,45129,45129,45128,44971,44970,44969,45148,44968,44967,45308,45308,45307,45306,45304,45303,45302,45302,45301,45544,45544,45548,45300,45293,45292,45519,45519,45543,45534,45534,45505,45291,45290,45289,45288,45286,45285,45504,45281,45280,45279,45278,45277,45503,45503,45502,45276,45275,45274,45501,45272,45271,45270,45267,45266,45542,45542,45541,45265,45258,45257,45533,45533,45567,45518,45255,45254,45500,45500,45253,45252,45248,45247,45532,45532,45246,45245,45241,45240,45540,45540,45551,45499,45238,45237,45563,45563,45554,45531,45531,45236,45235,45233,45232,45517,45517,45516,45231,45228,45227,45530,45530,45547,45226,45225,45224,45569,45569,45562,45558,45558,45539,45515,45222,45221,45498,45217,45216,45215,45214,45213,45529,45529,45538,45497,45211,45210,45209,45204,45203,45496,45496,45202,45201,45201,45200,45495,45199,40401,40400,40399,40742,40741,40397,40396,40394,40393,40641,40390,40386,40384,40383,40376,40375,40804,40370,40368,40367,40367,40365,47312,47313,47213,47215,47216,47218,47220,47221,47223,47225,47225,47227,47229,47232,47234,47314,47315,47235,47237,47237,47239,47241,47242,47244,47316,47247,47248,47250,47250,47252,47317,47253,47255,47257,47257,47259,47318,47260,47262,47264,47265,47267,47319,47268,47270,47320,47271,47273,47275,47276,47278,47321,47279,47281,47322,47282,47284,47323,47285,47287,47289,47290,47292,47294,47324,47295,47297,47298,47300,47302,47303,47305,47307,47308,47310,47325,47326,47311,44995,44995,45158,45164,44993,45133,45163,45163,44991,44990,44988,44986,44985,44985,45132,44983,44982,45130,44980,44979,44977,44976,44976,44974,44973,44973,45129,44971,44970,45148,44968,44968,45308,45306,45304,45302,45544,45544,45300,45299,45293,45519,45534,45290,45288,45287,45286,45504,45284,45281,45279,45278,45278,45503,45276,45275,45501,45273,45268,45267,45542,45542,45265,45264,45258,45533,45518,45255,45500,45252,45249,45248,45532,45241,45540,45499,45239,45238,45563,45563,45531,45235,45234,45233,45517,45229,45228,45530,45530,45226,45225,45225,45569,45558,45558,45515,45223,45222,45498,45220,45214,45529,45497,45211,45209,45208,45204,45496,45201,45201,45495,45199,45199,40400,40399,40399,40741,40397,40397,40394,40393,40393,40390,40389,40387,40386,40383,40378,40376,40804,40371,40370,40367,40367,47312,47313,47313,47215,47327,47327,47216,47220,47328,47221,47225,47225,47229,47231,47329,47315,47237,47237,47241,47330,47331,47242,47316,47247,47250,47317,47332,47253,47257,47257,47318,47260,47260,47264,47333,47265,47319,47334,47335,47268,47320,47271,47275,47336,47337,47276,47321,47338,47279,47322,47339,47282,47323,47285,47289,47340,47290,47294,47324,47324,47297,47341,47298,47302,47342,47343,47303,47307,47326,44995,45164,44993,45163,44990,44989,44988,44985,44983,44982,44980,44980,44979,44976,44973,44971,44970,44970,44968,45306,45304,45544,45299,45293,45534,45291,45287,45286,45284,45278,45276,45275,45275,45273,45272,45268,45542,45264,45259,45258,45518,45255,45252,45251,45249,45532,45245,45242,45241,45499,45239,45563,45235,45234,45517,45231,45229,45530,45225,45225,45558,45223,45215,45214,45497,45212,45211,45208,45205,45204,45201,45201,45199,40399,40399,40397,40393,40388,40387,40383,40378,40804,40373,40371,40367,47313,47313,47327,47220,47344,47328,47225,47225,47231,47345,47329,47237,47330,47245,47247,47317,47332,47257,47260,47271,47336,47346,47346,47337,47321,47338,47322,47347,47285,47340,47348,47290,47324,47341,47298,47342,47349,47343,47307,47350,47351,47326,45164,44994,44993,44990,44983,44980,44976,44973,44970,45306,45305,45304,45299,45294,45293,45291,45287,45284,45283,45278,45275,45272,45269,45268,45264,45260,45259,45518,45243,45242,45499,45499,45239,45235,45235,45234,45231,45230,45229,45225,45225,45223,45222,45217,45215,45497,45497,45212,45208,45205,45201,40399,40399,40393,40389,40388,40383,40382,40372,40371,47313,47313,47220,47352,47344,47225,47345,47353,47329,47330,47245,47317,47354,47354,47332,47260,47320,47271,47346,47346,47321,47338,47290,47341,47298,47355,47343,47350,47356,47351,45164,44994,44990,44989,44983,44976,44973,44973,45306,45305,45305,45299,45298,45294,45291,45290,45290,45287,45283,45281,45278,45272,45269,45264,45263,45260,45518,45256,45244,45243,45499,45499,45235,45231,45230,45225,45222,45217,45497,45208,45205,40399,40389,40372,47313,47352,47344,47345,47357,47314,47353,47330,47245,47354,47260,47335,47320,47346,47346,47338,47347,47290,47298,47349,47355,47350,47308,47325,47356,45164,45164,44994,44989,44983,44973,45305,45305,45298,45297,45294,45290,45283,45281,45272,45270,45269,45263,45262,45261,45260,45256,45244,45499,45231,45231,45230,45222,45217,45208,45207,45206,45205,40389,40373,40372,47352,47344,47357,47232,47314,47330,47358,47316,47245,47260,47335,47346,47347,47348,47290,47349,47325,45164,44989,44985,44983,45305,45305,45297,45296,45295,45294,45283,45281,45270,45269,45262,45261,45256,45245,45244,45231,45231,45222,45220,45217,45207,45206,45206,40389,40388,40378,40373,47352,47344,47232,47314,47314,47358,47359,47316,47260,47333,47334,47335,47347,47308,47325,44989,44985,45305,45296,45296,45295,45283,45269,45262,47360,45269,47360,45281,45262,45256,45255,45245,45231,45220,45217,45206,40388,40378,47352,47344,47344,47314,47359,47331,47316,47333,47334,47347,47361,47355,47308,44989,44989,44985,45296,45296,45283,45282,45262,45255,47362,47362,45281,47360,47362,47360,45262,45249,45245,45220,45218,45217,40388,40379,40378,47344,47344,47359,47363,47331,47333,47265,47334,47361,47364,47365,47355,44989,44989,45296,45282,45255,45251,47366,47366,45281,47362,47366,47362,45255,45250,45249,45220,45219,45218,40388,40379,47344,47363,47331,47265,47334,47365,44989,45282,45250,45220,45219,45219,40388,40382,40381,40379,47363,47334,47364,47367,47334,47367,47331,47349,47365,45282,45219,40382,47368,45219,47368,45250,40381,47363,47331,47364,47339,47369,47369,47331,47367,47369,47367,47364,47348,47349,45282,47370,45250,47368,47370,47368,40382,45250,47370,45251,47371,47331,47369,47371,47369,47339,47331,47371,40381,47348,45282,47372,47348,47372,47285,47373,45251,47370,47373,47370,40382,45251,47373,47374,47366,47374,47375,47366,47375,45281,47374,47366,45251,47376,40381,47371,47376,47371,47339,40381,47376,40382,47377,47285,47372,47377,47372,45282,47285,47377,47323,47339,47323,47378,47378,40382,47376,47378,47376,47339,47377,45281,47379,47377,47379,47323,45281,47377,45282,47375,47323,47379,47375,47379,45281,47323,47375,47374,47378,47374,47373,47378,47373,40382,47374,47378,47323,44884,44883,44911,44911,43572,43571,43569,43568,43567,43566,43565,43586,43585,43584,43583,43587,43586,43565,43576,43575,43579,43579,43578,43574,43573,43572,44911,44879,44878,44877,44876,44875,44927,44927,44934,44926,44926,44918,44902,44902,44874,44873,44871,44870,44901,44901,44943,44944,44950,44949,44948,44944,44869,44868,44868,44867,44866,44866,44865,44864,44863,44862,44861,44860,44859,44858,44857,44856,44855,44852,44851,44900,44900,44917,44899,44849,44848,44847,44842,44841,44898,44898,44840,44839,44837,44836,44925,44925,44916,44835,44834,44833,44897,44897,44910,44896,44831,44830,44829,44828,44827,44909,44909,44924,44923,44923,44895,44826,44824,40090,40089,40089,40615,40792,40792,40826,40887,40887,40861,40088,40087,40086,40614,40082,40081,40080,40077,40076,40791,40072,40071,40722,40722,40721,40070,40067,40066,40790,40790,40613,40065,40064,40063,40062,40061,40060,40886,40886,40059,40058,40058,40057,40612,40055,40054,40053,40051,40050,40049,40049,40048,40047,40046,40045,40720,40720,40044,40043,40041,40040,40039,40039,40038,40037,40037,40036,40611,40611,40610,40035,40034,40033,41128,41128,40719,40032,40032,40031,43675,43675,44226,44310,44310,44225,43674,43673,43672,43671,43670,43669,43668,43663,43662,44224,43660,43659,43658,43657,43656,43655,43654,43653,44309,44309,44278,43652,43649,43648,44223,43642,43641,43640,43637,43636,43635,43635,43634,44222,44222,44384,44354,44354,43633,43632,43630,43629,44221,43627,43626,43625,43624,43623,43622,43622,43621,44399,44399,44220,43620,43619,43618,44398,44398,43617,43616,43616,43615,43614,43614,43613,44219,44219,43612,43403,43361,43360,43359,43358,43357,43402,43402,43356,43355,43355,43354,43491,43491,43401,43353,43352,43351,43350,43348,43347,43400,43400,43346,43345,43345,43344,43343,43342,43341,43340,43339,43338,43399,43399,43432,43462,43462,43337,43336,43332,43331,43330,43329,43328,43327,43327,43326,43325,43325,43324,43323,43321,43320,43431,43431,43430,43319,43316,43315,43314,43313,43312,43429,43308,43307,43306,43303,43302,43484,43484,43472,43301,43296,43295,43452,43452,43451,43428,43428,43398,43294,43293,43292,43291,43289,43288,43427,43286,43285,43397,43397,43461,43483,43483,43284,43283,44884,44911,43571,43569,43567,43566,43566,43586,43585,43580,43587,43565,43576,43579,43574,43574,43573,44911,44879,44877,44876,44876,44927,44926,44926,44902,44873,44871,44901,44944,44944,44868,44866,44863,44861,44860,44858,44857,44855,44852,44900,44899,44849,44847,44846,44842,44898,44839,44838,44837,44925,44834,44897,44896,44828,44909,44923,44825,44824,40089,40089,40792,40887,40087,40614,40085,40082,40080,40079,40077,40791,40075,40072,40722,40070,40067,40790,40065,40064,40062,40061,40061,40886,40058,40058,40612,40056,40051,40049,40047,40046,40720,40043,40037,40611,40035,40034,41128,40032,40032,43675,44310,43673,43671,43670,43670,43668,43667,43664,43663,44224,43660,43658,43657,43654,44309,43652,43649,44223,43647,43642,43640,43639,43638,43637,43635,43635,44222,44354,43631,43630,44221,43628,43627,43625,43624,43622,44399,43619,44398,43616,43614,44219,43403,43361,43359,43358,43358,43402,43355,43355,43491,43353,43353,43352,43350,43348,43400,43345,43345,43343,43342,43342,43340,43339,43339,43399,43462,43332,43330,43329,43329,43327,43325,43321,43431,43319,43316,43314,43313,43313,43429,43311,43308,43306,43305,43303,43484,43301,43297,43296,43452,43452,43428,43294,43294,43293,43291,43289,43427,43287,43286,43397,43483,43483,43283,44885,44885,44884,43571,43569,43566,43585,43580,43565,43564,43576,43574,44911,44879,44876,44926,44872,44871,44944,44944,44866,44864,44863,44860,44858,44858,44855,44854,44852,44899,44850,44849,44846,44845,44843,44842,44839,44838,44925,44835,44834,44896,44832,44828,44923,44826,44825,40089,40887,40083,40082,40079,40078,40077,40075,40068,40067,40065,40064,40061,40058,40051,40047,40046,40046,40043,40042,40035,40034,40032,40032,44310,43674,43673,43670,43667,43664,44224,43661,43660,43657,43655,43655,43654,43652,43650,43649,43647,43643,43642,43639,43638,43635,44354,43631,44221,43628,43628,43625,43624,43624,44399,43620,43620,43619,43616,43616,43614,43403,43362,43361,43358,43358,43355,43353,43349,43348,43345,43345,43342,43339,43339,43462,43336,43333,43332,43329,43329,43325,43323,43322,43321,43319,43317,43316,43313,43303,43301,43300,43297,43452,43294,43294,43291,43290,43290,43289,43287,43286,43483,44885,44885,43571,43570,43569,43585,43583,43580,43564,43563,43576,44911,44882,44879,44926,44873,44872,44944,44951,44952,44951,44944,44944,44864,44863,44853,44852,44850,44843,44839,44838,44838,44835,44834,44834,44832,44831,44828,44826,44825,44825,40887,40088,40083,40079,40078,40078,40075,40074,40069,40068,40065,40064,40058,40056,40051,40046,40042,40035,40032,43674,43673,43667,43666,43665,43664,43661,43660,43655,43652,43651,43650,43647,43643,43639,43638,43638,44354,43632,43628,43624,43620,43620,43616,43403,43363,43362,43358,43358,43353,43350,43349,43345,43339,43333,43329,43323,43322,43319,43318,43317,43313,43311,43304,43303,43300,43298,43297,43294,43290,43287,43286,43286,44885,43570,43569,43583,43582,43580,43563,43562,43576,44882,44881,44879,44873,44872,44872,44951,44950,44953,44952,44944,44944,44863,44858,44854,44853,44850,44843,44838,44834,44834,44831,44829,44828,44825,40088,40083,40078,40074,40069,40065,40064,40064,40056,40055,40052,40051,40042,40037,40035,43674,43673,43666,43665,43665,43661,43660,43660,43652,43651,43651,43647,43646,43643,43638,43632,43631,43628,43620,43620,43403,43368,43363,43358,43350,43350,43349,43339,43333,43323,43322,43322,43318,43317,43317,43311,43310,43304,43300,43299,43298,43294,43290,43290,43286,43570,43577,43576,44881,44879,44872,44950,44954,44953,44944,44944,44858,44854,44854,44850,44849,44844,44843,44834,44834,44829,44828,44828,40088,40087,40083,40074,40073,40069,40064,40055,40052,40042,40041,40039,40037,43674,43673,43665,43660,43660,43651,43646,43644,43643,43632,43620,43368,43367,43363,43350,43339,43333,43322,43317,43305,43304,43299,43290,43570,43569,43577,44881,44880,44880,44879,44950,44945,44954,44944,44944,44854,44849,44844,44834,44828,44828,40087,40085,40070,40069,40055,40052,40041,40039,40039,43674,43673,43660,43646,47380,43660,47380,43673,43645,43644,43632,43631,43620,43367,43364,43363,43339,43333,43317,43310,43305,43299,43298,43290,43569,43582,43577,44880,44950,44945,44944,44849,44844,44828,40085,40070,40055,40053,40039,43673,47381,40039,47381,40052,43646,43645,47382,47382,43673,47380,47382,47380,43646,43632,43631,43367,43364,43339,43336,43298,43290,43582,43562,43577,44950,44946,44945,44849,44845,44844,40085,40072,40070,40053,47383,40052,47381,47383,47381,43673,40052,47383,40053,43645,43632,47384,47384,43673,47382,47384,47382,43645,43632,43367,43366,43364,43336,43335,43305,43298,43582,43562,44950,44948,44947,44946,44849,44845,40085,40084,47385,40053,47383,47385,47383,43673,40053,47385,40072,43632,43366,47386,43632,47386,47387,47384,47387,47388,47384,47388,43673,47387,47384,43632,43364,43335,43334,43308,43305,43582,43580,43562,44948,44947,44849,44845,44845,40084,40083,47389,40072,47385,47389,47385,43673,40072,47389,40073,47390,47387,47391,47390,47391,43365,47387,47390,47392,47388,47392,47393,47388,47393,43673,47392,47388,47387,47386,43365,47391,47386,47391,47387,43365,47386,43366,43364,43334,43333,43308,43582,43581,43580,44948,44947,40083,40073,47394,40083,47394,44845,47392,40073,47389,47389,43673,47393,47389,47393,47392,47395,47392,47390,47395,47390,43365,47392,47395,40073,43364,43333,43310,43308,43581,43580,43580,44947,44845,47395,43364,47396,47395,47396,40073,43364,47395,43365,43308,43580,44845,43310,40073,47396,43310,47396,43364,43308,44845,47394,43308,47394,40073,40073,43310,43309,43309,43308,40073,46479,46478,46477,46474,46473,46472,46471,46470,46484,46484,46483,46469,46464,46463,46482,46461,46460,46459,46458,46457,47397,47398,46578,46577,46577,46576,46575,46572,46571,46622,46622,46640,46639,46639,46633,46570,46567,46566,46646,46646,46638,46621,46564,46563,46562,46561,46560,46632,46556,46555,46554,46553,46552,46656,46656,46620,46551,46545,46544,46651,46651,46617,46543,46542,46541,46540,46539,46538,46537,46535,46534,46636,46636,46533,46532,46531,46296,46295,46295,46294,46423,46292,46291,46290,46290,46289,46288,46287,46286,46285,46284,46283,46282,46282,47016,46672,46673,46672,47016,47016,46995,46974,46969,46968,46967,46966,46965,46964,46963,46962,46994,46994,47062,47015,47015,46961,46960,46956,46479,46477,46474,46472,46471,46471,46484,46469,46465,46464,46482,46461,46459,46458,46458,47397,47398,47398,46577,46575,46572,46622,46639,46567,46646,46621,46564,46562,46561,46561,46632,46559,46556,46554,46553,46553,46656,46551,46545,46651,46543,46542,46540,46539,46535,46636,46532,46532,46531,46295,46295,46423,46293,46290,46288,46287,46284,46282,46672,46666,46673,47016,46970,46969,46967,46966,46964,46963,46963,46994,47015,46957,46956,46477,46475,46474,46471,46471,46469,46468,46465,46482,46462,46461,46458,47398,47398,46575,46574,46573,46572,46639,46568,46567,46621,46565,46564,46561,46556,46553,46551,46546,46545,46543,46543,46542,46539,46536,46535,46532,46532,46295,46293,46290,46287,46285,46285,46284,46672,46666,47016,46974,46970,46967,46966,46966,46963,47015,46958,46957,46477,46476,46475,46471,46471,46468,46467,46466,46465,46462,46461,47398,46574,46573,46639,46570,46569,46568,46621,46565,46561,46559,46557,46556,46551,46546,46543,46539,46536,46532,46293,46292,46290,46285,46285,46672,46671,46666,46974,46973,46970,46966,47015,46959,46958,46477,46476,46471,46467,46466,46462,46461,46461,46574,46573,46573,46570,46569,46569,46621,46565,46558,46557,46551,46548,46546,46539,46537,46536,46293,46292,46285,46671,46666,46973,46972,46971,46970,47015,46477,46476,46467,46466,46461,46573,46573,46569,46565,46558,46551,46550,46548,46539,46537,46537,46293,46292,46292,46671,46670,46666,46972,46971,46971,47015,46960,46959,46477,46467,46466,46573,46565,46559,46558,46550,46537,46292,46670,46666,46971,46960,46467,46466,46565,46559,46550,46549,46537,46670,46669,46667,46666,46960,46959,46467,46565,46559,46549,46548,46548,46537,46669,46667,46960,46959,46959,46565,46559,46559,46548,46669,46667,46959,46559,46559,46669,46668,46668,46667,46559,46619,46631,46645,46645,46644,46637,46637,46618,46547,46547,46619,46645,46645,46637,46547,46885,42218,42217,42211,42210,42275,42275,42284,42296,42296,42291,42264,42264,42209,42208,42206,42205,42263,42263,42272,42204,42199,42198,42262,42196,42195,42194,42193,42192,47399,47399,47400,47401,47402,47403,47404,47405,47406,47407,47408,47409,47410,47411,47412,47413,47414,47415,47416,47416,47417,47418,47418,47419,47420,47420,47421,47422,47422,47423,47424,47424,47425,47426,47426,47427,47428,47428,47429,47430,47431,47432,47433,47434,47435,47436,47436,47437,47438,47439,47440,47441,47441,47442,47443,47444,47445,47446,47447,47448,47449,47449,47450,47451,47452,47453,47454,47454,47455,47456,47456,47457,47458,47458,47459,47460,47461,47462,47463,47463,47464,47465,47466,47467,47468,47468,47469,47470,47471,47472,47473,47473,47474,47475,47475,47476,47477,47477,47478,47479,47480,47481,47482,47482,47483,47484,47485,47486,47487,47487,47488,47489,47489,47490,47491,47492,47493,47494,47494,47495,47496,47497,47498,47499,47500,47501,47502,47502,47503,47504,47504,47505,47506,47507,47508,47509,47509,47510,47511,47512,47513,47514,47514,47515,47516,47517,47518,47519,47519,47520,47521,47522,47523,47524,47524,46909,46908,46908,47008,47031,47031,46907,46906,46906,46905,47007,46901,46900,47030,47030,47047,47061,47061,47046,46899,46894,46893,46892,46892,46891,46990,46889,46888,46887,46885,42217,42216,42212,42211,42275,42275,42296,42264,42206,42263,42204,42199,42262,42197,42194,42193,47399,47399,47401,47402,47402,47404,47525,47526,47405,47407,47408,47410,47527,47411,47413,47414,47414,47416,47418,47418,47420,47422,47422,47424,47426,47426,47428,47430,47431,47433,47528,47434,47436,47438,47439,47441,47443,47444,47446,47447,47447,47449,47451,47529,47452,47454,47456,47458,47460,47530,47461,47463,47463,47465,47531,47466,47468,47470,47471,47473,47475,47477,47479,47532,47533,47480,47482,47484,47485,47487,47487,47489,47491,47492,47494,47496,47496,47497,47499,47500,47502,47504,47507,47509,47511,47512,47514,47516,47534,47517,47519,47519,47521,47522,47522,47524,46908,46908,47031,46906,46906,47007,46904,46901,47030,47061,47061,46899,46898,46892,46990,46890,46889,46887,46886,46885,42216,42215,42212,42275,42264,42206,42204,42203,42199,42197,42196,42196,42194,47399,47399,47402,47525,47526,47407,47535,47408,47527,47536,47537,47411,47414,47418,47422,47538,47418,47538,47414,47422,47426,47430,47539,47431,47528,47434,47438,47540,47541,47439,47443,47542,47444,47447,47447,47451,47543,47529,47454,47456,47456,47460,47530,47530,47463,47531,47544,47466,47470,47471,47475,47477,47533,47482,47484,47487,47491,47545,47545,47492,47496,47496,47499,47546,47500,47504,47506,47507,47511,47512,47512,47516,47547,47534,47519,47522,47522,46908,46906,46901,47061,46898,46894,46892,46890,46890,46889,46886,46886,46885,42215,42213,42212,42264,42206,42203,42202,42199,42196,47399,47399,47525,47526,47526,47535,47548,47549,47414,47538,47549,47538,47422,47414,47549,47537,47422,47430,47550,47539,47528,47434,47434,47540,47541,47541,47443,47542,47551,47529,47456,47456,47530,47531,47544,47470,47471,47545,47496,47546,47552,47500,47506,47512,47547,47553,47554,47534,47522,47522,46906,46904,46902,46901,46898,46895,46894,46890,46890,46886,42215,42214,42213,42264,47399,47526,47555,47399,47555,42199,47526,47548,47556,47422,47550,47557,47557,47537,47549,47557,47549,47422,47539,47434,47541,47541,47542,47447,47543,47551,47456,47558,47544,47471,47487,47545,47546,47559,47552,47506,47512,47553,47554,47554,47522,46904,46903,46902,46898,46895,46890,42215,42215,42214,42264,47560,42199,47555,47560,47555,47526,42199,47560,42200,47561,47537,47557,47557,47550,47562,47557,47562,47561,47537,47561,47563,47537,47563,47564,47565,47539,47541,47456,47531,47566,47456,47566,47543,47558,47471,47477,47487,47546,47559,47559,47506,47507,47512,47554,46904,46903,46898,46897,46896,46895,42215,42215,42264,42208,47526,47556,47567,47567,42200,47560,47567,47560,47526,47563,47568,47569,47563,47569,47564,47568,47563,47561,47570,47561,47562,47570,47562,47550,47561,47570,47568,47571,47564,47569,47571,47569,47568,47564,47571,47536,47572,47565,47541,47573,47543,47566,47573,47566,47531,47543,47573,47447,47558,47477,47532,47487,47559,47507,47512,46904,46903,46903,46897,46896,42215,42208,47574,42215,47574,46896,47575,42200,47567,47575,47567,47556,42200,47575,42201,47576,47536,47571,47576,47571,47568,47577,47568,47570,47577,47570,47550,47568,47577,47576,47536,47576,47578,47536,47578,47408,47572,47541,47447,47531,47558,47579,47579,47447,47573,47579,47573,47531,47558,47532,47533,47484,47487,47507,47512,46903,46896,42208,42207,47580,47580,46896,47574,47580,47574,42208,47581,42201,47575,47581,47575,47556,42201,47581,42202,47578,47582,47583,47578,47583,47408,47582,47578,47576,47584,47576,47577,47584,47577,47550,47576,47584,47582,47585,47408,47583,47585,47583,47582,47408,47585,47556,47586,47572,47447,47484,47507,47512,47587,46896,47580,47587,47580,42207,46896,47587,47512,47582,47588,47589,47589,47556,47585,47589,47585,47582,47590,47582,47584,47590,47584,47550,47582,47590,47588,47589,47591,47592,47589,47592,47556,47591,47589,47588,47591,42202,47581,47581,47556,47592,47581,47592,47591,47593,47586,47447,47533,47484,47512,42207,42206,47594,47594,47512,47587,47594,47587,42207,47591,47595,47596,47591,47596,42202,47595,47591,47588,47597,47588,47590,47597,47590,47550,47588,47597,47595,47598,42202,47596,47598,47596,47595,42202,47598,42206,47599,47447,47579,47599,47579,47558,47447,47599,47593,47600,47512,47594,47600,47594,42206,47512,47600,47533,47601,47595,47602,47601,47602,47603,47595,47601,47604,47598,47604,47605,47598,47605,42206,47604,47598,47595,47597,47603,47602,47597,47602,47595,47603,47597,47550,47606,47593,47599,47606,47599,47558,47593,47606,47607,47608,47533,47600,47600,42206,47609,47600,47609,47608,47533,47608,47610,47533,47610,47558,47611,47604,47612,47611,47612,47607,47604,47611,47613,47605,47613,47614,47605,47614,42206,47613,47605,47604,47601,47607,47612,47601,47612,47604,47607,47601,47603,47613,47558,47610,47613,47610,47608,47614,47608,47609,47614,47609,42206,47608,47614,47613,47558,47613,47611,47611,47607,47606,47611,47606,47558,47615,47616,47617,47617,47618,47619,47619,47620,47621,47621,47622,47623,47624,47625,47626,47627,47628,47629,47630,47631,47632,47632,47633,47634,47635,47636,47637,47637,47638,47639,47640,47641,47642,47642,47643,47644,47644,47645,47646,47646,47615,47617,47617,47619,47621,47621,47623,47624,47626,47627,47629,47629,47630,47632,47632,47634,47647,47647,47635,47637,47639,47640,47642,47642,47644,47646,47646,47617,47621,47626,47629,47632,47647,47637,47639,47639,47642,47646,47646,47621,47624,47624,47626,47632,47632,47647,47639,47639,47646,47624,47624,47632,47639,47648,47649,47650,47651,47652,47653,47654,47655,47656,47656,47657,47658,47659,47660,47648,47648,47650,47651,47653,47654,47656,47659,47648,47651,47653,47656,47658,47658,47659,47651,47651,47653,47658,47661,47662,47663,47663,47664,47665,47665,47666,47667,47668,47669,47670,47670,47671,47672,47673,47674,47675,47675,47676,47677,47677,47678,47679,47679,47680,47681,47661,47663,47665,47665,47667,47682,47682,47668,47670,47670,47672,47683,47673,47675,47677,47679,47681,47684,47661,47665,47682,47683,47673,47677,47677,47679,47684,47661,47682,47670,47683,47677,47684,47685,47661,47670,47683,47684,47685,47685,47670,47683,47686,42836,42835,42834,42833,42832,42832,42831,42830,42829,42828,42827,42827,42826,42825,42824,42823,42822,42822,42821,42886,42886,42891,42820,42819,42818,42817,42817,42816,42861,42814,42813,42812,42810,42809,42870,42807,42806,42805,42805,42804,42803,42803,42802,42801,42800,42799,42798,46233,46232,46231,46231,46230,46229,46228,46227,46226,46226,46225,46224,46224,46223,46222,46221,46220,46219,46218,46217,46216,46213,46212,46211,46211,46210,46209,46208,46207,46206,46205,46204,46203,46203,46202,46201,46200,46239,46199,46196,46195,47687,47687,47688,47689,47690,47691,47692,47693,47616,47615,47642,47641,47694,47694,47695,47696,47696,47697,47698,47699,47700,47701,47702,47703,47704,47704,47705,47706,47707,47708,47709,47709,47710,47711,47712,47713,47714,47715,47716,47717,47718,47719,47720,47720,47721,47722,47723,47724,47725,47725,47726,47727,47728,47729,47730,47730,47731,47732,47732,47733,47734,47734,47425,47424,47419,47418,47417,47417,47416,47415,47415,47414,47413,47412,47411,47537,47537,47564,47536,47536,47527,47410,47409,47408,47556,47556,47548,47535,47407,47406,47735,47736,47737,47738,47738,47739,47740,47740,47741,47742,47743,47744,47745,47746,47747,47748,47748,47749,47750,47751,47752,47753,47753,47754,47755,47756,47757,47758,47759,47760,47761,47761,47762,47763,47764,47765,47766,47767,47768,47769,47770,47771,47772,47772,47773,47774,47774,47775,47776,47776,47777,47778,47778,47779,47780,47781,47782,47783,47783,47784,47785,47785,47786,47787,47787,47788,47789,47789,47790,47791,47792,47793,47794,47795,47796,47797,47798,47799,47800,47801,47802,47803,47804,47805,47806,47806,47807,47808,47809,47810,47811,47812,47813,47814,47814,47815,47816,47817,47818,47819,47820,47821,47822,47823,47824,47825,47826,47827,47828,47828,47829,47830,47830,47831,47832,47833,47834,47835,47836,47837,47838,47839,47840,47841,47841,47842,47843,47843,47844,47845,47846,47847,47848,47848,47849,47850,47851,47852,47853,47854,47855,47856,47857,47858,47859,47860,47861,47862,47863,47864,47865,47866,47867,47868,47869,47870,47871,47872,47873,47874,47874,47875,47876,47876,47877,47878,47879,47880,47881,47882,47883,47884,47884,47885,47886,47887,47888,47889,47890,47891,47892,47893,47686,42835,42835,42834,42832,42832,42830,42829,42829,42827,42825,42825,42824,42822,42822,42886,42820,42820,42819,42817,42817,42861,42815,42814,42812,42811,42810,42870,42808,42807,42805,42803,42803,42801,42800,42800,42798,46234,46231,46229,46228,46228,46226,46224,46224,46222,46221,46219,46218,46216,46214,46213,46211,46211,46209,46208,46206,46205,46203,46201,46200,46199,46197,46196,47687,47690,47692,47693,47693,47615,47646,47642,47694,47696,47696,47698,47894,47702,47704,47706,47707,47709,47711,47715,47717,47895,47896,47718,47720,47723,47725,47727,47728,47730,47732,47732,47734,47424,47419,47417,47415,47412,47537,47536,47410,47409,47556,47556,47535,47407,47407,47735,47897,47736,47738,47740,47740,47742,47898,47745,47746,47748,47748,47750,47899,47751,47753,47755,47756,47758,47759,47759,47761,47763,47763,47764,47766,47772,47774,47776,47778,47780,47900,47901,47781,47783,47783,47785,47787,47795,47797,47798,47798,47800,47801,47902,47804,47806,47806,47808,47903,47904,47809,47811,47812,47814,47816,47820,47822,47905,47825,47826,47828,47828,47830,47832,47833,47835,47906,47836,47838,47907,47839,47841,47843,47843,47845,47846,47846,47848,47850,47851,47853,47908,47909,47854,47856,47857,47859,47860,47910,47866,47868,47869,47871,47911,47872,47874,47876,47876,47878,47912,47879,47881,47913,47882,47884,47886,47889,47890,47892,47914,47893,42835,42835,42832,42829,42825,42822,42820,42820,42817,42815,42815,42814,42811,42810,42808,42807,42807,42803,42800,42800,46234,46233,46231,46228,46224,46224,46221,46219,46214,46211,46208,46206,46203,46201,46197,47687,47689,47915,47690,47693,47696,47894,47699,47916,47702,47706,47917,47707,47711,47715,47895,47918,47896,47720,47722,47722,47723,47727,47919,47728,47732,47419,47415,47413,47413,47412,47536,47536,47410,47556,47556,47407,47897,47736,47740,47898,47745,47748,47899,47920,47751,47755,47756,47759,47763,47763,47766,47767,47770,47772,47776,47778,47900,47921,47922,47901,47783,47783,47787,47789,47794,47795,47798,47902,47806,47903,47904,47811,47812,47812,47816,47817,47819,47820,47905,47823,47825,47828,47828,47832,47833,47833,47906,47836,47907,47839,47843,47843,47846,47850,47851,47908,47923,47909,47856,47857,47857,47860,47862,47910,47868,47869,47869,47911,47924,47925,47872,47876,47876,47912,47926,47879,47913,47882,47889,47892,47927,47927,47914,42835,42835,42829,42825,42825,42820,42815,42810,42807,42800,42800,46233,46231,46231,46224,46219,46214,46208,46206,46198,46197,47689,47915,47693,47646,47928,47916,47706,47929,47917,47711,47930,47715,47918,47896,47722,47727,47919,47732,47424,47413,47536,47931,47413,47931,47419,47556,47897,47932,47556,47932,47536,47933,47736,47898,47920,47755,47934,47935,47756,47763,47763,47767,47769,47770,47776,47778,47778,47921,47936,47922,47783,47789,47794,47798,47801,47902,47903,47904,47904,47812,47817,47905,47823,47828,47833,47836,47907,47907,47843,47850,47937,47909,47857,47910,47869,47924,47925,47876,47926,47887,47889,47927,42835,42825,47938,42835,47938,47927,42825,42815,42811,42811,42810,42800,46231,46219,47939,46231,47939,42800,46214,46206,46201,46198,47689,47915,47915,47646,47645,47928,47706,47940,47929,47711,47712,47714,47930,47918,47896,47727,47941,47919,47424,47423,47942,47536,47932,47942,47932,47897,47536,47942,47943,47931,47943,47944,47931,47944,47419,47943,47931,47536,47897,47933,47898,47920,47934,47945,47935,47763,47769,47946,47922,47789,47904,47817,47947,47904,47947,47902,47828,47833,47948,47828,47948,47905,47833,47907,47850,47937,47857,47862,47910,47924,47925,47925,47926,47879,47949,47927,47938,47949,47938,42825,47927,47949,47950,47927,47950,47887,42811,42800,47951,42811,47951,42825,46219,46216,47952,47952,42800,47939,47952,47939,46219,46199,46198,47915,47915,47645,47644,47928,47940,47953,47953,47929,47712,47714,47918,47896,47896,47941,47919,47919,47423,47422,47897,47898,47954,47954,47955,47956,47954,47956,47897,47943,47955,47957,47957,47419,47944,47957,47944,47943,47955,47943,47942,47942,47897,47956,47942,47956,47955,47920,47945,47935,47935,47769,47958,47936,47946,47789,47959,47902,47947,47959,47947,47817,47902,47959,47803,47960,47905,47948,47960,47948,47833,47905,47960,47819,47833,47850,47961,47962,47937,47862,47925,47879,47963,47925,47963,47910,47964,42825,47951,47964,47951,42800,42825,47964,47965,47949,47965,47966,47966,47887,47950,47966,47950,47949,47965,47949,42825,46216,46215,47967,47967,42800,47952,47967,47952,46216,46201,46199,47915,47915,47644,47643,47928,47953,47712,47714,47896,47919,47422,47421,47968,47422,47968,47919,47957,47969,47970,47957,47970,47419,47969,47957,47955,47971,47955,47954,47971,47954,47898,47955,47971,47969,47972,47419,47970,47972,47970,47969,47419,47972,47420,47935,47958,47973,47935,47973,47920,47778,47936,47789,47974,47803,47959,47974,47959,47817,47803,47974,47801,47833,47961,47975,47975,47819,47960,47975,47960,47833,47962,47862,47863,47976,47910,47963,47976,47963,47879,47910,47976,47977,47966,47978,47979,47966,47979,47887,47978,47966,47965,47980,47965,47964,47980,47964,42800,47965,47980,47978,47981,47887,47979,47981,47979,47978,47887,47981,47886,46214,46201,47915,47982,47928,47712,47983,47919,47968,47983,47968,47421,47919,47983,47714,47984,47969,47985,47984,47985,47986,47969,47984,47987,47972,47987,47988,47972,47988,47420,47987,47972,47969,47971,47986,47985,47971,47985,47969,47986,47971,47898,47989,47920,47973,47989,47973,47958,47920,47989,47899,47789,47791,47990,47789,47990,47778,47817,47819,47991,47991,47801,47974,47991,47974,47817,47975,47992,47993,47975,47993,47819,47992,47975,47961,47962,47863,47865,47994,47977,47976,47994,47976,47879,47977,47994,47995,47981,47996,47997,47981,47997,47886,47996,47981,47978,47998,47978,47980,47998,47980,42800,47978,47998,47996,47999,47886,47997,47999,47997,47996,47886,47999,47882,46215,46214,47915,47982,47712,47714,47421,47420,48000,47421,48000,48001,47983,48001,48002,47983,48002,47714,48001,47983,47421,48003,47987,48004,48003,48004,47743,47987,48003,48005,47988,48005,48006,47988,48006,47420,48005,47988,47987,47984,47743,48004,47984,48004,47987,47743,47984,47986,47958,47770,48007,48007,47899,47989,48007,47989,47958,47791,48008,48009,48009,47778,47990,48009,47990,47791,48010,47801,47991,48010,47991,47819,47801,48010,47794,47993,48011,48012,47993,48012,47819,48011,47993,47992,47962,47865,47995,47879,47882,48013,48013,47995,47994,48013,47994,47879,48014,47996,48015,48014,48015,46215,47996,48014,48016,47999,48016,48017,47999,48017,47882,48016,47999,47996,47998,46215,48015,47998,48015,47996,47998,42800,47967,47998,47967,46215,46215,47915,47643,47701,47982,47714,48018,47420,48006,48006,48005,48019,48006,48019,48018,48020,48005,48003,48003,47743,48021,48003,48021,48020,48005,48020,48022,48022,48018,48019,48022,48019,48005,47420,48018,48023,47420,48023,48024,48001,48024,48025,48025,47714,48002,48025,48002,48001,48024,48001,48000,48024,48000,47420,48026,47899,48007,48026,48007,47770,47899,48026,47745,48027,47778,48009,48009,48008,48028,48009,48028,48027,47778,48027,48029,47778,48029,47770,48030,47819,48012,48030,48012,48011,47819,48030,48031,48010,48031,48032,48010,48032,47794,48031,48010,47819,48033,47995,48013,48013,47882,48034,48013,48034,48033,47995,48033,48035,47995,48035,47962,46215,47643,48036,48036,48037,48038,48036,48038,46215,48016,48037,48039,48039,47882,48017,48039,48017,48016,48038,48016,48014,48038,48014,46215,48016,48038,48037,47699,47701,47714,48040,48041,48042,48040,48042,48018,48041,48040,48043,48044,48043,48045,48044,48045,47745,48043,48044,48041,48046,48018,48042,48046,48042,48041,48018,48046,48047,48048,48024,48049,48048,48049,48047,48024,48048,48050,48025,48050,48051,48025,48051,47714,48050,48025,48024,48023,48047,48049,48023,48049,48024,48047,48023,48018,48045,48020,48052,48045,48052,47745,48020,48045,48043,48022,48043,48040,48022,48040,48018,48043,48022,48020,48021,47745,48052,48021,48052,48020,47745,48021,47743,48027,48053,48054,48054,47770,48029,48054,48029,48027,48055,48027,48028,48055,48028,48008,48027,48055,48053,48056,48026,48057,48056,48057,48053,48026,48056,47745,48026,47770,48054,48054,48053,48057,48054,48057,48026,48032,48058,48059,48032,48059,47794,48058,48032,48031,48060,48031,48030,48060,48030,48011,48031,48060,48058,48061,47794,48059,48061,48059,48058,47794,48061,47792,48062,47962,48035,48062,48035,48033,48063,48033,48034,48063,48034,47882,48033,48063,48062,47962,48062,48064,47962,48064,48065,47643,47642,48066,48066,48067,48068,48066,48068,47643,48037,48067,48069,48069,47882,48039,48069,48039,48037,48067,48037,48036,48036,47643,48068,48036,48068,48067,48050,48070,48071,48050,48071,48072,48051,48072,48073,48051,48073,47714,48072,48051,48050,48070,48050,48048,48070,48048,48047,48046,48074,48075,48046,48075,48047,48074,48046,48041,48076,48041,48044,48076,48044,47745,48041,48076,48074,48077,48047,48075,48077,48075,48074,48047,48077,48070,48078,47714,48073,48078,48073,48072,48079,48072,48071,48079,48071,48070,48072,48079,48078,47714,48078,48080,47714,48080,47699,48008,47792,48081,48081,48082,48083,48081,48083,48008,48053,48082,48084,48084,47745,48056,48084,48056,48053,48082,48053,48055,48055,48008,48083,48055,48083,48082,48085,48058,48086,48085,48086,47851,48058,48085,48087,48061,48087,48088,48061,48088,47792,48087,48061,48058,48060,47851,48086,48060,48086,48058,47851,48060,48011,48069,48089,48090,48069,48090,47882,48089,48069,48067,48091,48067,48066,48066,47642,48092,48066,48092,48091,48067,48091,48093,48067,48093,48089,48094,48090,48095,48094,48095,48096,48090,48094,47882,48090,48089,48097,48097,48096,48095,48097,48095,48090,48062,48096,48098,48098,48065,48064,48098,48064,48062,48094,48062,48063,48094,48063,47882,48062,48094,48096,48099,48078,48100,48099,48100,48101,48078,48099,48102,48080,48102,48103,48080,48103,47699,48102,48080,48078,48079,48101,48100,48079,48100,48078,48101,48079,48070,48077,48104,48105,48077,48105,48070,48104,48077,48074,48106,48074,48076,48106,48076,47745,48074,48106,48104,48107,48070,48105,48107,48105,48104,48070,48107,48101,48103,48108,48109,48103,48109,47699,48108,48103,48102,48110,48102,48099,48110,48099,48101,48102,48110,48108,48111,47699,48109,48111,48109,48108,47699,48111,47696,48112,47792,48088,48088,48087,48113,48088,48113,48112,48114,48087,48085,48085,47851,48115,48085,48115,48114,48087,48114,48116,48116,48112,48113,48116,48113,48087,48117,48112,48118,48117,48118,48119,48112,48117,47792,48082,48119,48120,48120,47745,48084,48120,48084,48082,48117,48082,48081,48117,48081,47792,48082,48117,48119,48121,48096,48122,48121,48122,48123,48096,48121,48124,48098,48124,48125,48098,48125,48065,48124,48098,48096,48097,48123,48122,48097,48122,48096,48123,48097,48089,48093,48126,48127,48093,48127,48089,48126,48093,48091,48128,48091,48092,48128,48092,47642,48091,48128,48126,48129,48089,48127,48129,48127,48126,48089,48129,48123,48125,48130,48131,48125,48131,48065,48130,48125,48124,48132,48124,48121,48132,48121,48123,48124,48132,48130,48133,48065,48131,48133,48131,48130,48065,48133,48134,48135,48108,48136,48135,48136,48137,48108,48135,48138,48111,48138,48139,48111,48139,47696,48138,48111,48108,48110,48137,48136,48110,48136,48108,48137,48110,48101,48107,48140,48141,48107,48141,48101,48140,48107,48104,48142,48104,48106,48142,48106,47745,48104,48142,48140,48143,48101,48141,48143,48141,48140,48101,48143,48137,48139,48144,48145,48139,48145,47696,48144,48139,48138,48146,48138,48135,48146,48135,48137,48138,48146,48144,48147,47696,48145,48147,48145,48144,47696,48147,47642,48148,48149,48150,48148,48150,48112,48149,48148,48151,48152,48151,48153,48152,48153,47923,48151,48152,48149,48154,48112,48150,48154,48150,48149,48112,48154,48155,48156,48119,48157,48156,48157,48155,48119,48156,48158,48120,48158,48159,48120,48159,47745,48158,48120,48119,48118,48155,48157,48118,48157,48119,48155,48118,48112,48153,48114,48160,48153,48160,47923,48114,48153,48151,48116,48151,48148,48116,48148,48112,48151,48116,48114,48115,47923,48160,48115,48160,48114,47923,48115,47851,48161,48130,48162,48161,48162,48163,48130,48161,48164,48133,48164,48165,48133,48165,48134,48164,48133,48130,48132,48163,48162,48132,48162,48130,48163,48132,48123,48129,48166,48167,48129,48167,48123,48166,48129,48126,48168,48126,48128,48168,48128,47642,48126,48168,48166,48169,48123,48167,48169,48167,48166,48123,48169,48163,48165,48170,48171,48165,48171,48134,48170,48165,48164,48172,48164,48161,48172,48161,48163,48164,48172,48170,48173,48134,48171,48173,48171,48170,48134,48173,48174,48175,48176,48177,48175,48177,48178,48176,48175,48179,48176,48137,48180,48180,48178,48177,48180,48177,48176,48181,48178,48182,48182,48155,48183,48182,48183,48181,48175,48181,48184,48175,48184,48179,48181,48175,48178,48185,48144,48186,48186,48179,48187,48186,48187,48185,48147,48185,48188,48147,48188,47642,48185,48147,48144,48146,48176,48189,48146,48189,48144,48176,48146,48137,48176,48179,48186,48186,48144,48189,48186,48189,48176,48190,48140,48191,48191,48158,48192,48191,48192,48190,48143,48190,48193,48143,48193,48137,48190,48143,48140,48142,48159,48194,48142,48194,48140,48159,48142,47745,48159,48158,48191,48191,48140,48194,48191,48194,48159,48195,48156,48196,48195,48196,48178,48156,48195,48158,48156,48155,48182,48182,48178,48196,48182,48196,48156,48190,48178,48180,48180,48137,48193,48180,48193,48190,48195,48190,48192,48195,48192,48158,48190,48195,48178,48197,48198,48199,48199,48149,48200,48199,48200,48197,48201,48197,48202,48201,48202,48203,48197,48201,48198,48204,48154,48205,48204,48205,48198,48154,48204,48155,48154,48149,48199,48199,48198,48205,48199,48205,48154,48206,48152,48207,48206,48207,48208,48152,48206,48149,48152,47923,48209,48209,48208,48207,48209,48207,48152,48197,48208,48210,48210,48203,48202,48210,48202,48197,48206,48197,48200,48206,48200,48149,48197,48206,48208,48211,48212,48213,48211,48213,48214,48212,48211,48179,48212,48203,48215,48215,48214,48213,48215,48213,48212,48185,48214,48216,48216,47642,48188,48216,48188,48185,48211,48185,48187,48211,48187,48179,48185,48211,48214,48181,48198,48217,48217,48179,48184,48217,48184,48181,48204,48181,48183,48204,48183,48155,48181,48204,48198,48201,48212,48218,48201,48218,48198,48212,48201,48203,48212,48179,48217,48217,48198,48218,48217,48218,48212,48219,48170,48220,48219,48220,48203,48170,48219,48221,48173,48221,48222,48173,48222,48174,48221,48173,48170,48172,48203,48220,48172,48220,48170,48203,48172,48163,48169,48214,48223,48169,48223,48163,48214,48169,48166,48216,48166,48168,48216,48168,47642,48166,48216,48214,48215,48163,48223,48215,48223,48214,48163,48215,48203,48222,48208,48224,48222,48224,48174,48208,48222,48221,48210,48221,48219,48210,48219,48203,48221,48210,48208,48209,48174,48224,48209,48224,48208,48174,48209,47923,48225,48226,48227,48228,48229,48230,48230,48231,48225,48225,48227,48228,48228,48230,48225,48232,48233,48234,48234,48235,48236,48236,48237,48238,48239,48240,48241,48241,48242,48243,48243,48244,48245,48246,48247,48248,48249,48250,48251,48251,48232,48234,48236,48238,48252,48239,48241,48243,48243,48245,48246,48248,48249,48251,48251,48234,48236,48236,48252,48253,48254,48239,48243,48246,48248,48251,48251,48236,48253,48253,48254,48243,48246,48251,48253,48253,48243,48246,48255,48256,48257,48258,48259,48260,48260,48261,48262,48263,48264,48265,48265,48266,48267,48267,48268,48269,48270,46610,46609,46607,46606,46605,46602,46601,46600,46595,46594,46641,46641,46648,46647,46647,46593,46592,46588,46587,46634,46634,46657,46661,46661,46663,46665,46665,46586,46585,46585,46584,46654,46654,46623,46583,46582,46581,46580,46579,46578,47398,47397,46457,46456,46454,46453,46481,46481,46485,46452,46451,46450,46449,46448,46447,46486,46954,46953,47033,47033,46952,46951,46949,46948,47014,47014,47013,46993,46946,46945,47012,46941,46940,46992,46992,46939,46938,46938,46937,46936,46935,46934,47032,47032,47011,46933,46930,46929,46928,46926,46925,47010,47010,47041,46924,46923,46922,46921,46920,46919,47009,46917,46916,46991,46912,46911,46910,46910,46909,47524,47523,47522,47521,47518,47517,47534,47534,47554,47553,47553,47547,47516,47513,47512,47511,47508,47507,47506,47501,47500,47552,47552,47559,47546,47546,47499,47498,47498,47497,47496,47493,47492,47545,47545,47491,47490,47488,47487,47486,47486,47485,47484,47481,47480,47533,47533,47532,47479,47478,47477,47476,47472,47471,47470,47467,47466,47544,47544,47558,47531,47462,47461,47530,47457,47456,47455,47455,47454,47453,47453,47452,47529,47551,47543,47451,47450,47449,47448,47448,47447,47446,47445,47444,47542,47440,47439,47541,47541,47540,47438,47438,47437,48271,48272,48273,48274,48274,48275,48276,48277,48278,48279,48280,48281,48282,48282,48283,48284,48284,48285,48286,48286,48287,48288,48289,48290,48291,48291,48292,48293,48294,48295,48296,48297,48298,48299,48300,48301,48302,48303,48304,48305,48305,48306,48307,48308,48309,48310,48311,48312,48313,48313,48314,48315,48316,48317,48318,48318,48319,48320,48321,48322,48323,48323,48324,48325,48326,48327,48328,48329,48330,48331,48332,48333,48334,48334,48335,48336,48336,48337,48338,48338,48339,48340,48340,48341,48342,48342,48343,48344,48345,48346,48347,48348,48349,48350,48350,48351,48352,48352,48353,48354,48355,48356,48357,48358,48359,48360,48360,48361,48362,48362,48363,48364,48365,48366,48367,48368,48369,48370,48370,48371,48372,48373,48374,48375,48375,48376,48377,48378,48379,48380,48381,48382,48383,48383,48384,48385,48385,48386,48387,48388,48389,48390,48390,48391,48392,48392,48393,48394,48395,48396,48397,48397,48398,48399,48399,48400,48401,48401,48402,48403,48403,48404,48405,48406,48407,48408,48408,48409,48410,48411,48412,48413,48414,48415,48416,48416,48417,48418,48418,48419,48420,48421,48422,48423,48423,48424,48425,48425,48426,48427,48427,48428,48429,48430,48431,48432,48433,48434,48435,48435,48436,48437,48438,48439,48440,48440,48441,48442,48442,48443,48444,48445,48446,48447,48448,48449,48450,48450,48451,48452,48453,48454,48455,48456,48457,48458,48459,48460,48461,48462,48463,48464,48464,48465,48466,48467,48468,48469,48470,48471,48472,48472,48473,48474,48474,48475,48476,48477,48478,48479,48479,48480,48481,48482,48483,48484,48485,48486,48487,48487,48488,48489,48490,48491,48492,48492,48493,48494,48495,48496,48497,48497,48498,48499,48500,48501,48502,48503,48504,48505,48506,48507,48508,48508,48509,48510,48511,48512,48513,48513,48514,48515,48515,48516,48517,48518,48519,48520,48521,48522,48523,48523,48524,48525,48526,48527,48528,48528,48529,48530,48530,48531,48532,48532,48533,48534,48534,48535,48536,48537,48538,48539,48540,48255,48257,48258,48260,48262,48263,48265,48267,48541,48270,46609,46607,46605,46604,46603,46602,46600,46595,46641,46647,46588,46634,46661,46661,46665,46585,46585,46654,46583,46582,46580,46579,46579,47398,47397,46454,46481,46452,46451,46449,46448,46448,46486,46955,46955,46954,47033,46950,46949,47014,47014,46993,46947,46947,46946,47012,46942,46941,46992,46938,46936,46935,46935,47032,46933,46930,46928,46927,46926,47010,46924,46920,47009,46918,46917,46991,46915,46912,46910,47524,47523,47521,47520,47518,47534,47553,47553,47516,47515,47514,47513,47511,47508,47506,47505,47502,47501,47552,47552,47546,47498,47498,47496,47495,47494,47493,47545,47489,47488,47486,47486,47484,47483,47481,47533,47479,47479,47478,47476,47473,47472,47470,47467,47544,47531,47462,47530,47460,47458,47457,47455,47453,47529,47551,47551,47451,47450,47450,47448,47446,47445,47542,47443,47440,47541,47438,47438,48271,48272,48272,48274,48276,48280,48282,48284,48284,48286,48288,48542,48289,48291,48294,48296,48543,48297,48299,48544,48300,48302,48303,48303,48305,48307,48311,48313,48315,48316,48318,48320,48545,48321,48323,48326,48328,48546,48334,48336,48338,48340,48342,48344,48345,48347,48348,48348,48350,48352,48355,48357,48358,48358,48360,48362,48362,48364,48365,48368,48370,48372,48375,48377,48547,48381,48383,48385,48385,48387,48548,48388,48390,48392,48397,48399,48401,48401,48403,48405,48406,48408,48410,48416,48418,48420,48421,48423,48425,48425,48427,48429,48433,48435,48437,48438,48440,48442,48448,48450,48452,48453,48455,48456,48459,48461,48462,48462,48464,48466,48467,48469,48470,48472,48474,48476,48477,48479,48481,48549,48482,48484,48550,48485,48487,48490,48492,48494,48495,48497,48499,48500,48502,48551,48503,48505,48552,48506,48508,48510,48511,48513,48515,48515,48517,48518,48518,48520,48521,48521,48523,48525,48528,48530,48532,48532,48534,48536,48537,48539,48540,48540,48257,48553,48554,48258,48262,48263,48267,48269,48555,48541,46609,46607,46604,46603,46596,46595,46647,46589,46588,46661,46661,46585,46583,46451,46448,46955,46955,47033,46951,46950,47014,46947,46947,47012,46944,46943,46942,46992,46938,46935,46933,46930,46927,46926,46926,46924,46923,46920,46918,46917,46917,46915,46914,46912,47524,47523,47523,47520,47519,47518,47553,47515,47514,47511,47510,47509,47508,47505,47502,47552,47498,47494,47545,47490,47489,47486,47483,47481,47479,47476,47474,47473,47470,47467,47531,47465,47463,47462,47460,47458,47455,47453,47453,47551,47450,47450,47446,47445,47445,47443,47442,47440,47438,48272,48272,48276,48556,48280,48284,48288,48542,48291,48293,48557,48294,48543,48558,48297,48544,48300,48303,48307,48310,48311,48315,48315,48316,48320,48545,48323,48325,48325,48326,48546,48332,48334,48338,48340,48344,48345,48348,48352,48354,48355,48358,48362,48362,48365,48367,48367,48368,48372,48375,48547,48559,48380,48381,48385,48385,48548,48388,48388,48392,48394,48395,48397,48401,48401,48405,48406,48406,48410,48411,48414,48416,48420,48560,48421,48425,48425,48429,48561,48432,48433,48437,48438,48442,48444,48562,48448,48452,48453,48456,48458,48458,48459,48462,48462,48466,48563,48467,48470,48472,48472,48476,48477,48481,48549,48484,48550,48487,48489,48489,48490,48494,48495,48499,48500,48500,48551,48503,48506,48510,48564,48511,48515,48518,48518,48521,48525,48526,48528,48532,48537,48540,48553,48554,48262,48565,48566,48263,48269,48555,46609,46608,46596,46647,46592,46590,46589,46661,46661,46583,46582,46451,46955,46951,46950,46947,46944,46943,46992,46938,46938,46933,46932,46930,46926,46923,46920,46917,46914,46912,47523,47519,47519,47518,47515,47514,47510,47509,47509,47505,47504,47503,47502,47498,47494,47490,47489,47489,47483,47482,47482,47481,47476,47468,47467,47465,47463,47460,47459,47453,47450,47445,47441,47440,48272,48272,48556,48277,48567,48280,48288,48542,48293,48557,48557,48543,48558,48558,48544,48300,48300,48307,48568,48310,48315,48320,48320,48545,48325,48325,48546,48329,48569,48332,48338,48338,48340,48345,48345,48348,48354,48354,48355,48362,48373,48375,48559,48378,48380,48385,48385,48388,48394,48395,48401,48406,48414,48420,48560,48560,48425,48561,48430,48432,48437,48570,48438,48444,48447,48562,48452,48453,48458,48462,48462,48563,48467,48467,48472,48477,48481,48484,48550,48489,48494,48571,48495,48500,48503,48506,48564,48572,48573,48511,48518,48518,48525,48574,48526,48532,48536,48575,48537,48553,48576,48554,48565,48577,48566,48269,48578,48555,46608,46597,46596,46592,46590,46661,46582,46452,46451,46951,46951,46950,46944,46944,46943,46938,46938,46932,46931,46930,46923,46921,46920,46914,46913,46913,46912,47519,47519,47515,47514,47514,47509,47504,47503,47498,47495,47494,47489,47482,47482,47476,47475,47468,47465,47464,47453,47445,47442,47442,47441,48272,48579,48567,48288,48558,48300,48568,48320,48325,48580,48320,48580,48310,48581,48569,48338,48345,48354,48582,48345,48582,48338,48354,48362,48367,48373,48559,48583,48583,48378,48385,48385,48394,48584,48395,48406,48411,48413,48414,48560,48560,48561,48585,48430,48437,48586,48570,48444,48587,48447,48452,48588,48453,48462,48467,48467,48477,48481,48481,48550,48489,48489,48571,48589,48589,48495,48503,48573,48518,48574,48574,48526,48536,48536,48575,48553,48590,48576,48565,48577,48269,48591,48592,48578,46608,46598,46597,46592,46591,46590,46582,46454,46452,46951,46951,46944,46938,46931,46930,46921,46913,47519,47514,47514,47504,47503,47494,47482,47475,47469,47468,47464,47453,47442,48272,48593,48579,48288,48557,48558,48568,48594,48310,48580,48594,48580,48325,48310,48594,48308,48595,48338,48582,48595,48582,48354,48338,48595,48581,48354,48367,48372,48583,48385,48584,48596,48395,48411,48560,48585,48597,48430,48586,48598,48570,48587,48599,48447,48588,48453,48453,48467,48481,48481,48489,48589,48589,48503,48552,48572,48573,48574,48574,48536,48553,48577,48591,48600,48601,48592,46608,46598,46592,46591,46591,46582,46579,46454,46951,46938,46931,46921,46920,46913,47514,47503,47495,47494,47475,47470,47469,47464,47453,48272,48277,48593,48288,48542,48557,48568,48602,48557,48602,48542,48325,48329,48603,48603,48308,48594,48603,48594,48325,48604,48581,48595,48604,48595,48354,48581,48604,48605,48354,48372,48606,48373,48583,48584,48596,48411,48413,48560,48597,48430,48598,48570,48599,48447,48453,48481,48589,48552,48607,48589,48607,48481,48506,48572,48574,48574,48553,48608,48601,46608,46607,46598,46591,46579,46455,46454,46938,46931,46920,46913,47503,47495,47475,47474,47470,47464,47453,48277,48609,47453,48609,47458,48568,48308,48610,48610,48542,48602,48610,48602,48568,48329,48331,48611,48611,48308,48603,48611,48603,48329,48612,48605,48604,48612,48604,48354,48605,48612,48613,48354,48606,48373,48373,48584,48596,48430,48598,48614,48430,48614,48560,48598,48599,48445,48615,48481,48607,48615,48607,48552,48481,48615,48447,48616,48506,48574,48574,48608,48617,48601,46607,46603,46599,46598,46579,46456,46455,46938,46913,47503,48618,46913,48618,46931,47503,47475,47474,47474,47464,47463,48609,48279,48619,48609,48619,47458,48279,48609,48277,48620,48308,48611,48611,48331,48621,48611,48621,48620,48308,48620,48622,48622,48542,48610,48622,48610,48308,48354,48373,48623,48354,48623,48624,48612,48624,48625,48612,48625,48613,48624,48612,48354,48596,48413,48626,48596,48626,48373,48598,48445,48627,48627,48560,48614,48627,48614,48598,48628,48447,48615,48628,48615,48552,48447,48628,48445,48574,48617,48629,48574,48629,48616,48601,46603,46600,46600,46599,46579,47397,46456,46938,48630,46931,48618,48630,48618,47503,46931,48630,46938,47474,47463,48631,47474,48631,47503,48279,48593,48632,48632,47458,48619,48632,48619,48279,48331,48633,48634,48634,48635,48636,48634,48636,48331,48620,48635,48637,48637,48542,48622,48637,48622,48620,48635,48620,48621,48621,48331,48636,48621,48636,48635,48625,48638,48639,48625,48639,48613,48638,48625,48624,48640,48624,48623,48640,48623,48373,48624,48640,48638,48641,48613,48639,48641,48639,48638,48613,48641,48642,48413,48560,48643,48643,48373,48626,48643,48626,48413,48644,48445,48628,48628,48552,48645,48628,48645,48644,48445,48644,48646,48646,48560,48627,48646,48627,48445,48647,48616,48629,48647,48629,48617,48616,48647,48552,46600,46579,48648,46600,48648,48601,47397,46938,48630,48630,47503,48649,48630,48649,47397,47463,47459,48650,48650,47503,48631,48650,48631,47463,48593,48542,48651,48651,47458,48632,48651,48632,48593,48633,48652,48653,48653,48654,48655,48653,48655,48633,48635,48654,48656,48656,48542,48637,48656,48637,48635,48654,48635,48634,48634,48633,48655,48634,48655,48654,48657,48642,48641,48657,48641,48638,48658,48638,48640,48658,48640,48373,48638,48658,48657,48642,48657,48659,48642,48659,48652,48660,48560,48646,48660,48646,48644,48661,48644,48645,48645,48552,48662,48645,48662,48661,48644,48661,48663,48644,48663,48660,48560,48660,48664,48560,48664,48665,48643,48665,48666,48643,48666,48373,48665,48643,48560,48617,48590,48667,48667,48552,48647,48667,48647,48617,48668,48601,48648,48668,48648,46579,48601,48668,48600,48669,47397,48649,48669,48649,47503,47397,48669,46579,47459,47458,48670,48670,47503,48650,48670,48650,47459,48671,48542,48656,48671,48656,48654,48672,48654,48653,48653,48652,48673,48653,48673,48672,48654,48672,48674,48654,48674,48671,48542,48671,48675,48542,48675,48676,48651,48676,48677,48651,48677,47458,48676,48651,48542,48678,48657,48679,48678,48679,48665,48659,48678,48680,48659,48680,48652,48678,48659,48657,48658,48666,48681,48658,48681,48657,48666,48658,48373,48666,48665,48679,48679,48657,48681,48679,48681,48666,48664,48682,48683,48664,48683,48665,48664,48660,48684,48664,48684,48682,48678,48682,48685,48685,48652,48680,48685,48680,48678,48678,48665,48683,48678,48683,48682,48663,48686,48687,48663,48687,48660,48663,48661,48688,48663,48688,48686,48689,48661,48662,48662,48552,48690,48662,48690,48689,48688,48689,48691,48688,48691,48686,48689,48688,48661,48692,48682,48693,48693,48686,48694,48693,48694,48692,48685,48692,48695,48685,48695,48652,48692,48685,48682,48693,48660,48687,48693,48687,48686,48693,48682,48684,48693,48684,48660,48669,48600,48668,48669,48668,46579,48669,47503,48696,48669,48696,48600,48676,48697,48698,48698,47458,48677,48698,48677,48676,48697,48676,48675,48697,48675,48671,48699,48671,48674,48699,48674,48672,48700,48672,48673,48700,48673,48652,48672,48700,48699,48671,48699,48701,48671,48701,48697,48702,47458,48698,48698,48697,48703,48698,48703,48702,48670,48702,48704,48670,48704,47503,48702,48670,47458,48705,48686,48706,48705,48706,48707,48686,48705,48708,48709,48707,48710,48710,48590,48711,48710,48711,48709,48705,48709,48712,48705,48712,48708,48709,48705,48707,48713,48692,48714,48714,48708,48715,48714,48715,48713,48695,48713,48716,48695,48716,48652,48713,48695,48692,48694,48708,48714,48694,48714,48692,48708,48694,48686,48707,48689,48717,48717,48590,48710,48717,48710,48707,48691,48707,48706,48691,48706,48686,48707,48691,48689,48667,48717,48718,48667,48718,48552,48717,48667,48590,48717,48689,48690,48690,48552,48718,48690,48718,48717,48719,48600,48696,48719,48696,47503,48600,48719,48577,48720,48721,48722,48722,48723,48724,48722,48724,48720,48725,48720,48726,48725,48726,48697,48720,48725,48721,48727,48728,48729,48727,48729,48721,48728,48727,48590,48728,48723,48722,48722,48721,48729,48722,48729,48728,48730,48731,48732,48730,48732,48702,48731,48730,48723,48731,47503,48704,48704,48702,48732,48704,48732,48731,48720,48702,48703,48703,48697,48726,48703,48726,48720,48730,48720,48724,48730,48724,48723,48720,48730,48702,48733,48734,48735,48733,48735,48699,48734,48733,48708,48734,48697,48701,48701,48699,48735,48701,48735,48734,48713,48699,48700,48700,48652,48716,48700,48716,48713,48733,48713,48715,48733,48715,48708,48713,48733,48699,48709,48721,48736,48736,48708,48712,48736,48712,48709,48727,48709,48711,48727,48711,48590,48709,48727,48721,48725,48734,48737,48725,48737,48721,48734,48725,48697,48734,48708,48736,48736,48721,48737,48736,48737,48734,48738,48577,48719,48738,48719,47503,48577,48738,48739,48723,48565,48740,48723,48740,48741,48731,48741,48742,48731,48742,47503,48741,48731,48723,48565,48723,48728,48565,48728,48590,48743,48739,48738,48738,47503,48744,48738,48744,48743,48739,48743,48745,48739,48745,48746,48741,48746,48745,48741,48745,48743,48742,48743,48744,48742,48744,47503,48743,48742,48741,48746,48741,48740,48746,48740,48565,48747,40162,40161,40159,40158,40796,40154,40153,40152,40147,40146,40145,40144,40143,40888,40888,40936,40827,40827,40795,40618,40141,40140,40726,40726,40996,40794,40794,40139,40138,40138,40137,40617,40617,40725,40616,40616,40136,48748,48748,48749,48750,48751,48752,48753,48753,48754,48755,48755,48756,48757,48758,48759,48760,48761,48762,48763,48764,48765,48766,48767,48768,48769,48770,48771,48772,48772,48773,48774,48775,48776,48777,48777,48778,48779,48779,48780,48781,48781,48782,48783,48784,48785,48786,48787,48788,48789,48790,48791,48792,48793,48794,48795,48795,48796,48797,48798,48799,48800,48801,48802,48803,48803,48804,48805,48806,48807,48808,48809,48810,48811,48811,48812,48813,48813,48814,48815,48816,48817,48818,48819,48820,48821,48821,48822,48823,48824,48825,48826,48827,48828,48829,48829,48830,48831,48832,48833,48834,48835,48836,48837,48837,48838,48839,48840,48841,48842,48842,48843,48844,48845,48846,48847,48848,48849,48850,48850,48851,48852,48852,48853,48854,48854,48855,48856,48856,48857,48858,48859,48860,48861,48861,48560,48420,48417,48416,48415,48415,48414,48413,48412,48411,48410,48407,48406,48405,48402,48401,48400,48398,48397,48396,48396,48395,48596,48596,48584,48394,48389,48388,48548,48386,48385,48384,48382,48381,48380,48379,48378,48583,48583,48559,48547,48376,48375,48374,48374,48373,48606,48606,48372,48371,48369,48368,48367,48366,48365,48364,48363,48862,48863,48863,48864,48865,48866,48867,48868,48869,48870,48871,48871,48872,48873,48874,48875,48876,48877,48878,48879,48879,48880,48881,48882,48883,48884,48884,48885,48886,48887,48888,48889,48889,48890,48891,48892,48893,48894,48895,48896,48897,48898,48899,48900,48901,48902,48903,48903,48904,48905,48906,48907,48908,48908,48909,48910,48910,48911,48912,48913,48914,48915,37703,37702,37701,37697,37696,37695,37694,37693,37692,37692,37691,37690,37687,37686,37979,37979,38003,37786,37786,37685,37684,37680,37679,37854,37854,37904,37978,37978,38065,37785,37677,37676,38158,38158,37784,37675,37674,37673,37672,37670,37669,37668,37667,37666,37783,37664,37663,37853,37853,38002,37662,37655,37654,37852,37852,37903,37977,37977,38126,37976,37652,37651,37650,37643,37642,37851,37851,37850,37641,37634,37633,37849,37849,37942,37975,37975,37782,37632,37631,37630,38064,38064,37781,37629,37628,37627,37848,37623,37622,38001,38001,37974,37902,37902,37621,37620,37618,37617,37847,37847,37941,37940,37940,37616,37615,37615,37614,37613,37613,37612,37611,37610,37609,37780,37780,37846,37845,37845,37608,37607,37605,37604,37901,37598,37597,37779,37779,38000,38281,38281,38223,37939,37939,37900,37844,37593,37592,37591,37590,37589,37588,37587,37586,37778,37778,37899,37999,37580,37579,37777,37777,37898,37938,37938,37776,37578,37573,37572,37897,37897,37973,37571,37566,37565,37775,37775,37896,37843,37561,37560,37559,37559,37558,37557,37553,37552,37551,37550,37549,37774,37774,37895,37894,37894,37773,37548,37547,37546,37545,37545,37544,37772,37772,37893,37771,37542,37541,37842,37842,37540,37539,37539,48916,48917,48918,48747,40161,40159,40796,40157,40154,40152,40151,40148,40147,40145,40145,40144,40888,40888,40827,40618,40141,40726,40794,40138,40617,40616,40616,48748,48750,48751,48753,48755,48755,48757,48758,48758,48760,48919,48919,48761,48763,48920,48764,48766,48766,48767,48769,48921,48770,48772,48922,48775,48777,48779,48781,48783,48784,48786,48787,48787,48789,48790,48792,48793,48795,48797,48798,48800,48923,48801,48803,48803,48805,48806,48809,48811,48813,48816,48818,48924,48925,48819,48821,48824,48826,48926,48827,48829,48831,48835,48837,48839,48840,48842,48844,48845,48847,48927,48848,48850,48852,48852,48854,48856,48856,48858,48928,48859,48861,48420,48418,48417,48415,48415,48413,48412,48412,48410,48409,48408,48407,48405,48402,48400,48399,48398,48396,48596,48596,48394,48393,48389,48548,48387,48387,48386,48384,48382,48380,48379,48379,48583,48547,48376,48374,48606,48606,48371,48370,48369,48367,48366,48364,48363,48863,48863,48865,48929,48930,48866,48868,48871,48873,48931,48874,48876,48932,48932,48877,48879,48879,48881,48882,48884,48886,48933,48887,48889,48891,48895,48897,48934,48935,48898,48900,48903,48905,48906,48906,48908,48910,48910,48912,48936,48936,48913,48915,37704,37703,37701,37697,37695,37694,37692,37690,37689,37688,37687,37979,37979,37786,37684,37680,37854,37978,37978,37785,37678,37677,38158,37675,37671,37670,37668,37667,37783,37665,37664,37853,37662,37655,37852,37977,37977,37976,37653,37643,37851,37641,37634,37849,37975,37631,38064,37629,37628,37848,37626,37624,37623,38001,38001,37902,37620,37618,37847,37940,37610,37780,37845,37606,37605,37901,37598,37779,38281,38281,37939,37844,37593,37591,37590,37587,37778,37999,37580,37777,37938,37938,37578,37577,37573,37897,37571,37566,37775,37843,37559,37557,37556,37554,37553,37551,37550,37774,37894,37894,37548,37547,37545,37772,37771,37542,37842,37539,37539,48917,48937,48937,48918,40161,40160,40159,40157,40154,40151,40150,40148,40145,40888,40888,40618,40142,40141,40794,40138,40138,40616,48750,48751,48755,48758,48758,48919,48763,48766,48769,48921,48921,48772,48774,48779,48783,48938,48787,48790,48792,48792,48795,48797,48939,48923,48803,48940,48809,48813,48815,48816,48924,48925,48821,48823,48823,48824,48926,48941,48827,48831,48942,48835,48839,48943,48840,48844,48944,48845,48927,48848,48852,48856,48945,48859,48420,48418,48415,48412,48412,48409,48408,48408,48405,48404,48399,48398,48596,48382,48379,48547,48376,48606,48370,48370,48369,48366,48366,48364,48863,48863,48929,48930,48930,48868,48946,48869,48871,48931,48932,48879,48882,48882,48884,48933,48933,48887,48891,48894,48895,48934,48935,48900,48901,48901,48903,48906,48936,48915,36672,37705,37704,37701,37698,37697,37694,37694,37692,37689,37688,37979,37684,37681,37680,37978,37678,37677,37675,37671,37668,37667,37664,37662,37661,37655,37977,37653,37644,37643,37641,37634,37975,37632,37632,37631,37629,37628,37626,37625,37624,38001,37620,37619,37618,37940,37610,37845,37607,37606,37901,37603,37599,37598,38281,38281,37844,37596,37594,37593,37590,37587,37999,37585,37580,37938,37577,37574,37573,37571,37566,37843,37564,37555,37554,37551,37550,37894,37547,37547,37545,37771,37542,37539,48937,48937,40161,40160,40160,40157,40156,40148,40888,40142,40141,40138,48750,48751,48758,48763,48766,48921,48774,48779,48938,48947,48787,48792,48797,48939,48803,48806,48948,48940,48813,48815,48924,48949,48925,48823,48926,48941,48831,48950,48942,48839,48951,48951,48943,48844,48952,48848,48856,48945,48420,48419,48418,48412,48408,48399,48596,48393,48382,48547,48377,48376,48370,48366,48366,48863,48930,48930,48946,48953,48869,48931,48954,48932,48882,48933,48933,48891,48955,48892,48894,48934,48956,48935,48901,48901,48906,48910,48910,48936,36672,37706,37705,37701,37698,37694,37689,37689,37688,37684,37681,37978,37678,37678,37675,37674,37672,37671,37667,37665,37664,37661,37656,37655,37653,37645,37644,37641,37635,37634,37632,37632,37629,37628,37624,37620,37619,37619,37940,37615,37611,37610,37607,37599,38281,37596,37594,37590,37588,37587,37585,37584,37581,37580,37577,37574,37571,37570,37567,37566,37564,37556,37555,37551,37551,37550,37547,37547,37771,37543,37543,37542,48937,48937,40160,40156,40149,40148,40142,40142,40141,48750,48751,48763,48920,48920,48766,48774,48784,48787,48797,48957,48939,48806,48948,48813,48815,48925,48926,48941,48941,48950,48832,48958,48942,48951,48951,48844,48959,48928,48945,48419,48419,48418,48408,48402,48399,48393,48383,48382,48377,48376,48366,48930,48930,48953,48869,48869,48954,48874,48932,48933,48955,48892,48934,48956,48956,48901,48910,48910,36672,36671,36671,37706,37701,37698,37689,37684,37681,37678,37674,37674,37672,37667,37665,37661,37660,37657,37656,37653,37636,37635,37632,37632,37628,37625,37625,37624,37619,37619,37615,37613,37613,37611,37607,37600,37599,37596,37595,37594,37588,37587,37584,37583,37581,37577,37576,37574,37570,37569,37556,37551,37547,37547,37543,48937,48937,40156,40155,40149,40142,48750,48750,48751,48920,48920,48774,48960,48784,48797,48800,48961,48957,48806,48948,48815,48949,48962,48925,48941,48958,48951,48959,48928,48419,48408,48403,48402,48393,48383,48377,48376,48376,48930,48869,48932,48955,48963,48956,48910,36671,36671,37701,37700,37698,37684,37683,37682,37681,37674,37674,37667,37665,37665,37660,37659,37657,37653,37652,37636,37632,37625,37619,37613,37607,37601,37600,37596,37587,37583,37582,37575,37574,37569,37556,37547,48937,48937,40155,40154,40150,40149,48750,48920,48960,48964,48920,48964,48750,48947,48784,48800,48965,48961,48806,48962,48941,48832,48834,48958,48959,48856,48928,48408,48403,48393,48392,48383,48376,48869,48874,48932,48963,48892,48956,36671,36671,37700,37699,37698,37683,37682,37682,37674,37665,37665,37659,37658,37657,37652,37650,37637,37636,37625,37619,37607,37606,37602,37601,37596,37576,37575,37569,37556,48937,40154,40154,40150,48750,48964,48922,48966,48964,48966,48750,48922,48964,48960,48965,48806,48808,48962,48832,48834,48834,48959,48944,48856,48408,48967,48856,48967,48952,48403,48392,48391,48384,48383,48869,48963,48968,48969,48963,48969,48874,36671,37699,48970,36671,48970,48892,37698,37682,37665,37657,37650,37649,37625,37619,48971,37625,48971,37637,37619,37606,37603,37602,37596,37595,37581,37576,37569,37559,37556,40154,48972,48750,48966,48972,48966,48922,48750,48972,40154,48965,48808,48948,48834,48944,48973,48834,48973,48962,48974,48952,48967,48974,48967,48408,48952,48974,48975,48403,48391,48390,48387,48384,48869,48968,48976,48977,48977,48874,48969,48977,48969,48968,48978,48892,48970,48978,48970,37699,48892,48978,48979,37699,37698,37665,48980,37637,48971,48980,48971,37619,37637,48980,37638,37619,37603,37602,37602,37595,37588,37581,37569,37568,37559,40154,48972,48972,48922,48981,48972,48981,37559,48948,48949,48982,48948,48982,48965,48983,48962,48973,48983,48973,48944,48962,48983,48984,48985,48975,48974,48985,48974,48408,48975,48985,48986,48387,48869,48874,37699,37665,48987,48987,48979,48978,48987,48978,37699,37619,37602,48988,37619,48988,48989,48980,48989,48990,48980,48990,37638,48989,48980,37619,37602,37588,37587,37581,37568,37567,48991,37559,48981,48991,48981,48922,37559,48991,37561,48944,48927,48992,48992,48984,48983,48992,48983,48944,48993,48986,48985,48993,48985,48408,48986,48993,48994,48389,48387,48874,48995,48979,48987,48995,48987,37665,48979,48995,48976,48990,48996,48997,48990,48997,37638,48996,48990,48989,48998,48989,48988,48998,48988,37602,48989,48998,48996,48999,37638,48997,48999,48997,48996,37638,48999,37639,37602,37587,37582,37581,37567,37564,49000,37561,48991,49000,48991,48922,37561,49000,37562,48927,49001,49002,49002,48984,48992,49002,48992,48927,49003,48994,48993,49003,48993,48408,48994,49003,49004,48390,48389,48874,48995,37658,49005,48995,49005,48976,37658,48995,37665,48999,49006,49007,48999,49007,37639,49006,48999,48996,49008,48996,48998,49008,48998,37602,48996,49008,49006,49009,37639,49007,49009,49007,49006,37639,49009,37640,37602,37582,37581,37581,37564,37563,49010,37562,49000,49010,49000,48922,37562,49010,37563,49011,48984,49002,49011,49002,49001,48984,49011,49012,49013,49004,49003,49013,49003,48408,49004,49013,49014,49015,48874,48977,49015,48977,48976,48874,49015,48390,49005,37657,49016,49005,49016,48976,37657,49005,37658,37602,37581,49017,49017,49018,49019,49017,49019,37602,49006,49018,49020,49020,37640,49009,49020,49009,49006,49018,49006,49008,49008,37602,49019,49008,49019,49018,49021,37563,49010,49021,49010,48922,37563,49021,37581,49001,49022,49023,49023,49012,49011,49023,49011,49001,49013,48404,49024,49013,49024,49014,48404,49013,48408,49025,48390,49015,49025,49015,48976,48390,49025,48403,49016,37649,49026,49016,49026,48976,37649,49016,37657,49020,49027,49028,49020,49028,37640,49027,49020,49018,49029,49018,49017,49029,49017,37581,49018,49029,49027,49030,37640,49028,49030,49028,49027,37640,49030,37641,49021,48777,49031,49021,49031,37581,48777,49021,48922,49024,48403,49032,49024,49032,49014,48403,49024,48404,49033,48976,49026,49033,49026,37649,48976,49033,49034,49025,49034,49035,49025,49035,48403,49034,49025,48976,49030,49036,49037,49030,49037,37641,49036,49030,49027,49038,49027,49029,49038,49029,37581,49027,49038,49036,49039,37641,49037,49039,49037,49036,37641,49039,37645,49031,48779,49040,49031,49040,37581,48779,49031,48777,49032,49034,49041,49032,49041,49014,49032,48403,49035,49032,49035,49034,49042,49034,49033,49042,49033,37649,49042,49014,49041,49042,49041,49034,49040,48947,49043,49040,49043,37581,48947,49040,48779,49022,49014,49042,49042,37649,49044,49042,49044,49022,49043,49045,49046,49043,49046,37581,49045,49043,48947,49045,49047,49048,49048,37581,49046,49048,49046,49045,49036,49047,49049,49049,37645,49039,49049,49039,49036,49047,49036,49038,49038,37581,49048,49038,49048,49047,49044,37648,49050,49044,49050,49022,37648,49044,37649,49049,49051,49052,49049,49052,37645,49051,49049,49047,49053,49047,49045,49053,49045,48947,49047,49053,49051,49054,37645,49052,49054,49052,49051,37645,49054,37646,49050,49055,49056,49050,49056,49022,49050,37648,49057,49050,49057,49055,49023,49055,49058,49023,49058,49012,49023,49022,49056,49023,49056,49055,49059,49051,49060,49059,49060,48800,49051,49059,49061,49054,49061,49062,49054,49062,37646,49061,49054,49051,49053,48800,49060,49053,49060,49051,48800,49053,48947,49058,49063,49064,49058,49064,49012,49063,49058,49055,49065,49055,49057,49065,49057,37648,49055,49065,49063,49066,49012,49064,49066,49064,49063,49012,49066,49067,49062,49068,49069,49062,49069,37646,49068,49062,49061,49070,49061,49059,49070,49059,48800,49061,49070,49068,49071,37646,49069,49071,49069,49068,37646,49071,37647,49066,49072,49073,49066,49073,49067,49072,49066,49063,49074,49063,49065,49074,49065,37648,49063,49074,49072,49075,49067,49073,49075,49073,49072,49067,49075,48949,49076,49068,49077,49076,49077,48965,49068,49076,49078,49071,49078,49079,49071,49079,37647,49078,49071,49068,49070,48965,49077,49070,49077,49068,48965,49070,48800,49080,49072,49081,49080,49081,37647,49072,49080,49082,49075,49082,49083,49075,49083,48949,49082,49075,49072,49074,37647,49081,49074,49081,49072,37647,49074,37648,49078,48949,49083,49078,49083,49082,49079,49082,49080,49079,49080,37647,49082,49079,49078,48949,49078,49076,49076,48965,48982,49076,48982,48949,49084,49085,49086,49086,49087,49088,49088,49084,49086,49089,49090,49091,49091,49092,49093,49093,49094,49095,49095,49096,49097,49098,49089,49091,49091,49093,49095,49095,49097,49098,49098,49091,49095,49099,49100,49101,49101,49102,49103,49103,49104,49105,49105,49106,49107,49107,49108,49109,49109,49099,49101,49101,49103,49105,49105,49107,49109,49109,49101,49105,47228,47227,49110,49110,49111,49112,49112,49113,49114,49115,49116,49117,49118,49119,49120,49120,49121,49122,49122,49123,49124,49125,49126,49127,49128,49129,49130,49130,49131,49132,49132,49133,49134,49134,49135,49136,49136,49137,49138,49139,49140,49141,49142,49143,49144,49144,49145,49146,49146,49147,49148,49149,49150,49151,49152,49153,49154,49155,49156,49157,49158,49159,49160,49161,49162,49163,49164,49165,49166,49167,49168,49169,49169,49170,49171,49172,49173,49174,49174,49175,49176,49176,49177,49178,49178,49179,49180,49181,49182,49183,49183,49184,49185,49186,49187,49188,49189,49190,49191,49191,49192,49193,49193,49194,49195,49195,49196,49197,49198,49199,49200,49200,49201,49202,49203,49204,49205,49206,49207,49208,49208,49209,49210,49211,49212,49213,49213,49214,49215,49215,49216,49217,49218,49219,49220,49220,49221,49222,49222,49223,49224,49224,49225,49226,49227,49228,49229,49230,49231,49232,49233,49234,49235,49235,49236,49237,49237,49238,49239,49240,49241,49242,49242,36217,36216,36314,36313,36330,36330,36312,36311,36309,36308,36307,36306,36305,36304,36301,36300,36329,36329,36299,36298,36298,36297,36340,36340,36321,36296,36291,36290,36326,36326,36334,36337,36337,36320,36289,36288,36287,36286,36286,36285,49243,49243,49244,49245,49245,49246,49247,49248,49249,49250,49251,49252,49253,49254,49255,49256,49257,49258,49259,49259,49260,49261,49261,49262,49263,49263,49264,49265,49266,49267,49268,49268,49269,49270,49271,49272,49273,49274,49275,49276,49277,49278,49279,49279,49280,49281,49281,49282,49283,49284,49285,49286,49286,49287,49288,49288,49289,49290,49291,49292,49293,49294,49295,49296,49296,49297,49298,49299,49300,49301,49301,49302,49303,49303,49304,49305,49305,49306,49307,49307,49308,49309,49310,49311,49312,49313,49314,49315,49316,49317,49318,49318,49319,49320,49321,49322,49323,49323,49324,45037,45033,45032,45152,45152,45031,45030,45030,45029,45028,45023,45022,45137,45137,45021,45020,45020,45019,45018,45017,45016,45015,45013,45012,45136,45010,45009,45008,45007,45006,45005,45004,45003,45002,44999,44998,45135,45135,45159,45170,45170,45151,44997,44996,47311,47326,47326,47351,47356,47356,47325,47310,47309,47308,47350,47306,47305,47304,47304,47303,47343,47343,47355,47365,47365,47349,47342,47299,47298,47341,47296,47295,47324,47291,47290,47348,47348,47340,47289,47286,47285,47323,47283,47282,47339,47339,47364,47361,47361,47347,47322,47280,47279,47338,47338,47321,47278,47277,47276,47337,47337,47346,47336,47272,47271,47320,47269,47268,47335,47335,47334,47319,47266,47265,47333,47263,47262,47261,47261,47260,47318,47258,47257,47256,47254,47253,47332,47332,47354,47317,47317,47252,47251,47249,47248,47247,47246,47245,47316,47243,47242,47331,47331,47363,47359,47359,47358,47330,47236,47235,47315,47315,47329,47353,47353,47314,47234,47233,47232,47357,47357,47345,47231,47228,49110,49112,49325,49115,49117,49118,49120,49122,49125,49127,49326,49128,49130,49132,49132,49134,49136,49136,49138,49327,49139,49141,49328,49142,49144,49146,49149,49151,49329,49152,49154,49155,49155,49157,49158,49158,49160,49330,49161,49163,49331,49164,49166,49332,49167,49169,49171,49172,49174,49176,49176,49178,49180,49180,49181,49183,49183,49185,49333,49189,49191,49193,49193,49195,49197,49198,49200,49202,49334,49203,49205,49335,49206,49208,49215,49217,49218,49218,49220,49222,49222,49224,49226,49227,49229,49336,49230,49232,49337,49233,49235,49237,49237,49239,49338,49240,49242,36216,36314,36330,36311,36309,36307,36306,36301,36329,36298,36298,36340,36296,36291,36326,36337,36337,36289,36288,36288,36286,49243,49243,49245,49247,49248,49250,49339,49254,49256,49340,49341,49257,49259,49261,49263,49265,49266,49268,49270,49342,49271,49273,49274,49276,49277,49277,49279,49281,49283,49284,49286,49286,49288,49290,49290,49291,49293,49343,49299,49301,49301,49303,49305,49310,49312,49344,49344,49313,49315,49316,49318,49320,49323,45037,45036,45034,45033,45152,45030,45028,45027,45023,45137,45020,45020,45018,45017,45013,45136,45011,45010,45008,45007,45007,45005,45004,45004,45002,45001,44999,45135,45170,44996,47326,47356,47356,47310,47309,47309,47350,47307,47304,47343,47365,47365,47342,47302,47300,47299,47341,47296,47324,47294,47292,47291,47348,47287,47286,47323,47283,47339,47361,47361,47322,47281,47280,47338,47278,47277,47337,47336,47272,47320,47270,47269,47335,47319,47266,47333,47264,47263,47261,47318,47255,47254,47332,47332,47317,47251,47249,47247,47246,47246,47316,47244,47243,47331,47359,47359,47330,47241,47236,47315,47353,47353,47234,47233,47233,47357,47231,47228,49112,49114,49325,49117,49345,49346,49118,49122,49347,49125,49326,49348,49128,49132,49132,49136,49327,49328,49142,49146,49152,49155,49158,49161,49331,49164,49349,49167,49171,49172,49176,49180,49180,49183,49333,49189,49193,49197,49198,49202,49350,49334,49205,49351,49335,49208,49210,49213,49215,49218,49218,49222,49226,49227,49336,49230,49230,49337,49352,49352,49233,49237,49237,49338,49240,49240,36216,36317,36309,36306,36304,36302,36301,36298,36298,36296,36295,36292,36291,36337,36337,36288,49243,49243,49247,49353,49354,49248,49339,49355,49254,49340,49341,49259,49261,49261,49265,49356,49357,49266,49270,49342,49273,49358,49358,49274,49277,49277,49281,49283,49283,49286,49290,49290,49293,49359,49301,49305,49307,49344,49315,49316,49316,49320,49360,49321,49323,45036,45034,45152,45030,45030,45027,45026,45023,45020,45017,45010,45007,45004,44999,45170,44997,44996,47356,47309,47304,47365,47302,47300,47341,47297,47292,47348,47289,47287,47323,47284,47284,47283,47361,47277,47336,47275,47273,47272,47270,47270,47269,47319,47267,47266,47264,47263,47318,47259,47255,47332,47251,47249,47246,47244,47244,47243,47359,47359,47241,47240,47236,47353,47233,47233,47231,47230,47229,47228,49114,49361,49325,49345,49346,49122,49124,49347,49326,49362,49363,49348,49132,49139,49328,49146,49329,49152,49158,49161,49164,49332,49349,49171,49364,49365,49172,49180,49188,49189,49197,49198,49350,49366,49334,49351,49367,49367,49335,49210,49213,49218,49226,49230,49352,49237,49237,49240,36317,36310,36309,36304,36302,36298,36295,36292,36337,49243,49243,49353,49354,49354,49339,49251,49355,49340,49341,49341,49261,49356,49357,49270,49368,49283,49290,49369,49283,49369,49277,49343,49301,49307,49344,49316,49360,49321,45036,45035,45035,45034,45030,45030,45026,45025,45023,45017,45015,45010,45004,45001,45000,44999,44997,44997,44996,47309,47306,47304,47302,47301,47300,47297,47293,47292,47289,47287,47284,47361,47273,47270,47319,47267,47264,47263,47255,47251,47250,47250,47249,47244,47244,47359,47240,47236,47233,47230,47229,49114,49361,49361,49345,49370,49371,49346,49124,49362,49363,49132,49139,49146,49148,49149,49329,49158,49330,49161,49332,49372,49349,49364,49365,49180,49333,49186,49188,49197,49367,49210,49373,49211,49213,49226,49227,49230,49237,49237,36317,36316,36303,36302,36295,36293,36292,49243,49355,49341,49356,49374,49357,49368,49343,49307,49309,49375,49321,45035,45001,45000,44997,44997,47309,47307,47307,47306,47302,47301,47297,47296,47293,47289,47288,47288,47287,47361,47273,47319,47267,47267,47263,47259,47250,47244,47240,47237,47236,47230,47229,49361,49370,49376,49371,49124,49362,49132,49327,49377,49139,49148,49149,49158,49330,49330,49332,49378,49372,49364,49365,49365,49333,49379,49186,49197,49198,49334,49367,49373,49373,49211,49226,49237,36316,36315,36304,36303,36295,36294,36293,49243,49380,49355,49356,49381,49374,49368,49343,49309,49310,49360,49375,45035,45001,44997,47307,47307,47302,47301,47293,47288,47361,47273,47267,47259,47255,47250,47240,47237,47230,47229,47229,49370,49382,49376,49124,49383,49347,49362,49327,49377,49148,49149,49149,49330,49378,49365,49379,49384,49365,49384,49372,49186,49198,49366,49373,49226,49385,49373,49385,49334,49237,36315,36314,36304,36295,36294,36294,49243,49354,49386,49380,49356,49381,49368,49387,49343,49310,49344,49360,45035,45030,45010,45001,47307,47307,47301,47296,47293,47361,49388,47293,49388,47294,47274,47273,47259,47255,47240,47239,47237,47229,49382,49376,49383,49347,49347,49327,49377,49149,49378,49389,49149,49389,49377,49390,49372,49384,49390,49384,49379,49372,49390,49391,49392,49334,49385,49392,49385,49226,49334,49392,49393,49237,36314,36311,36304,36294,49354,49386,49356,49381,49381,49387,49342,49343,49344,49360,49360,45030,45025,45011,45010,47307,47307,47296,47294,49388,47281,49394,49388,49394,47294,47281,49388,47361,47274,47259,47258,47255,47239,47238,47238,47237,49382,49376,49347,49377,49379,49395,49396,49396,49391,49390,49396,49390,49379,49237,36311,49397,49237,49397,49227,36310,36304,49354,49398,49386,49381,49343,49360,45025,45011,47307,49399,45011,49399,45013,49400,47294,49394,49400,49394,47281,47294,49400,47307,47238,49382,49401,47238,49401,47255,49402,49377,49389,49402,49389,49378,49377,49402,49376,49395,49186,49403,49403,49391,49396,49403,49396,49395,36311,36310,49404,49404,49227,49397,49404,49397,36311,36310,49354,49251,49398,49381,49342,49298,49343,45025,49400,49405,49406,49400,49406,47307,49405,49400,47281,49406,45013,49399,49406,49399,47307,45013,49406,49405,49401,49376,49407,49401,49407,47255,49376,49401,49382,49378,49391,49408,49408,49376,49402,49408,49402,49378,49186,49366,49409,49186,49409,49410,49403,49410,49411,49403,49411,49391,49410,49403,49186,49251,49227,49404,49251,49404,36310,49253,49398,49342,49296,49298,45025,49412,45013,49405,49412,49405,47281,45013,49412,45014,49408,47255,49407,49408,49407,49376,49408,49391,49413,49408,49413,47255,49414,49227,49251,49296,45025,45024,49415,45014,49412,49415,49412,47281,45014,49415,45015,49416,47255,49413,49416,49413,49391,47255,49416,47256,49417,49414,49251,49296,45024,45023,49418,45015,49415,49415,47281,49419,49415,49419,49418,45015,49418,49420,45015,49420,45023,49421,47256,49416,49421,49416,49391,47256,49421,47258,49417,49251,49253,49420,49422,49423,49420,49423,45023,49422,49420,49418,49424,49418,49419,49424,49419,47281,49418,49424,49422,49425,45023,49423,49425,49423,49422,45023,49425,49296,49426,47258,49421,49426,49421,49391,47258,49426,47274,49417,49253,49342,49427,49422,49428,49427,49428,47280,49422,49427,49429,49425,49429,49430,49425,49430,49296,49429,49425,49422,49424,47280,49428,49424,49428,49422,47280,49424,47281,49431,47274,49426,49431,49426,49391,47274,49431,47275,49226,49417,49342,49430,49432,49433,49430,49433,49296,49432,49430,49429,49434,49429,49427,49434,49427,47280,49429,49434,49432,49435,49296,49433,49435,49433,49432,49296,49435,49294,49226,49342,49358,49435,49436,49437,49435,49437,49294,49436,49435,49432,49438,49432,49434,49438,49434,47280,49432,49438,49436,49439,49294,49437,49439,49437,49436,49294,49439,49440,49226,49358,49277,49439,49441,49442,49439,49442,49440,49441,49439,49436,49443,49436,49438,49443,49438,47280,49436,49443,49441,49444,49440,49442,49444,49442,49441,49440,49444,49445,49277,49393,49392,49277,49392,49226,49446,49441,49447,49446,49447,47278,49441,49446,49448,49444,49448,49449,49444,49449,49445,49448,49444,49441,49443,47278,49447,49443,49447,49441,47278,49443,47280,49393,49277,49369,49393,49369,49290,49450,49448,49451,49450,49451,47277,49448,49450,49452,49449,49452,49453,49449,49453,49445,49452,49449,49448,49446,47277,49451,49446,49451,49448,47277,49446,47278,49366,49393,49290,49454,49452,49455,49454,49455,47275,49452,49454,49456,49453,49456,49457,49453,49457,49445,49456,49453,49452,49450,47275,49455,49450,49455,49452,47275,49450,47277,49410,49290,49458,49458,49391,49411,49458,49411,49410,49290,49410,49409,49290,49409,49366,49459,49456,49460,49459,49460,49391,49459,49445,49457,49459,49457,49456,49431,49456,49454,49431,49454,47275,49431,49391,49460,49431,49460,49456,49458,49359,49461,49458,49461,49391,49359,49458,49290,49461,49445,49459,49461,49459,49391,49445,49461,49359,49462,49463,49464,49464,49465,49466,49466,49467,49468,49468,49462,49464,49464,49466,49468,49469,49470,49471,49471,49472,49473,49473,49474,49475,49475,49476,49469,49469,49471,49473,49473,49475,49469,49477,49478,49479,49479,49480,49481,49481,49477,49479,49482,49483,49484,49484,49485,49482,49486,49487,49488,49488,49489,49490,49490,49491,49486,49486,49488,49490,49492,49493,49494,49494,49495,49496,49496,49497,49492,49492,49494,49496,49498,49499,49500,49500,49501,49502,49502,49503,49504,49504,49505,49506,49506,49507,49508,49509,49510,49511,49511,49512,49498,49498,49500,49502,49502,49504,49506,49506,49508,49509,49509,49511,49498,49498,49502,49506,49506,49509,49498,47726,47725,49513,49513,49514,49515,49515,49516,49517,49518,49519,49520,49520,49521,49522,49523,49524,49525,49526,49527,49528,49528,49529,49530,49531,47432,47431,47431,47539,47565,47565,47572,47586,47586,47593,47607,47607,47603,47550,47550,47430,47429,47426,47425,47734,47733,47732,47731,47729,47728,47919,47919,47941,47727,47727,47726,49513,49513,49515,49517,49518,49520,49522,49526,49528,49530,49532,49531,47431,47431,47565,47586,47586,47607,47550,47427,47426,47734,47730,47729,47919,47919,47727,49513,49517,49518,49522,49525,49526,49530,49530,49532,47431,47431,47586,47550,47428,47427,47734,47730,47919,49513,49513,49517,49522,49523,49525,49530,49530,47431,47550,47429,47428,47734,47731,47730,49513,49513,49522,49533,49523,49530,47550,47550,47429,47734,47731,49513,49533,49534,49523,47550,47550,47734,47733,47733,47731,49533,49534,47550,47733,47733,49533,49534,49535,49536,49537,49537,49538,49539,49539,49535,49537,34730,34729,49540,49541,49542,49543,49544,49545,49546,49547,49548,49549,49549,49550,49551,49551,49552,49553,49554,49555,49556,49557,49558,49559,49559,49560,49561,49561,49562,49563,49564,34690,34689,34689,34742,34739,34734,34733,34743,34743,34744,34732,34731,34730,49540,49541,49543,49565,49566,49544,49546,49547,49549,49551,49551,49553,49554,49554,49556,49567,49557,49559,49561,49561,49563,49564,49564,34689,34739,34734,34743,34732,34732,34731,49540,49568,49541,49565,49566,49546,49569,49569,49547,49551,49551,49554,49567,49570,49557,49561,49561,49564,34739,34734,34732,49540,49568,49565,49566,49566,49569,49551,49551,49567,49571,49561,34739,34738,34735,34734,49540,49572,49568,49566,49566,49551,49571,49570,49561,34738,34736,34735,49540,49572,49566,49571,49573,49570,34738,34736,49540,49572,49572,49571,49573,49573,34738,34737,34737,34736,49572,49572,49573,34737,49574,34704,34703,34703,34740,34702,34701,34700,34699,34698,34697,34696,34696,34695,49574,49574,34703,34702,34701,34699,34698,34698,34696,49574,49574,34702,34701,34701,34698,49574,36421,36420,36427,36426,36425,36505,36505,36518,36533,36533,36536,36543,36543,36552,36424,36423,36422,36488,36488,36421,36427,36427,36426,36505,36505,36533,36543,36543,36424,36423,36423,36488,36427,36427,36505,36543,36543,36423,36427,36428,36427,49575,49575,49576,49577,49577,49578,49579,49580,36447,36446,36442,36441,36440,36439,36438,36491,36491,36506,36539,36539,36557,36554,36554,36548,36437,36436,36435,36490,36490,36434,36433,36433,36432,36489,36430,36429,36428,36428,49575,49577,49577,49579,49581,49582,49580,36446,36442,36440,36439,36439,36491,36539,36539,36554,36437,36436,36490,36433,36433,36489,36431,36430,36428,49577,49577,49581,49583,49582,36446,36445,36443,36442,36439,36439,36539,36437,36436,36433,36431,36431,36430,49577,49584,49582,36445,36444,36443,36439,36439,36437,36436,36431,49577,49583,49584,36445,36444,36444,36439,36436,36436,36431,49583,49583,49584,36444,36444,36436,49583,49110,47227,47226,47222,47221,47328,47328,47344,47352,47217,47216,47327,47214,47213,47313,47313,47312,40365,40365,40364,40363,40363,40362,40896,40896,40914,40895,40895,40361,40360,40358,40357,40640,40353,40352,40639,40639,40351,40350,40348,40347,40638,40638,40867,40866,40866,40834,40346,40339,40338,40337,40334,40333,40894,40894,40893,40833,40833,40332,40331,40329,40328,40637,40637,40636,40327,40326,40325,40740,40321,40320,40319,40318,40317,40316,40316,40315,40635,40635,40739,40969,40969,40892,40314,40309,40308,40307,40306,40305,40304,40299,40298,40803,40294,40293,40738,40738,40802,40801,40801,40634,40292,40291,40290,40737,40737,40633,40289,40288,40287,40832,40832,40286,40285,40283,40282,40281,40280,40279,40632,40632,41137,40278,40277,40276,40275,40275,40274,40631,40631,40939,40891,40891,40865,40831,40831,40273,40272,40270,40269,40268,40267,40266,40630,40630,40265,40264,40264,40263,40800,40800,40262,40261,40259,40258,40736,40736,41046,40257,40256,40255,40254,40253,37221,37220,37220,37742,37219,37216,37215,37214,37213,37212,37877,37877,37964,38016,38016,37211,37210,37206,37205,37876,37876,37929,37963,37963,37994,37928,37928,37204,37203,37203,37202,37741,37200,37199,37198,37197,37196,37962,37962,37875,37195,37192,37191,37820,37187,37186,37874,37874,37993,38036,38036,38015,37927,37927,37740,37185,37180,37179,37178,37178,37177,37176,37173,37172,37171,37170,37169,37168,37165,37164,37992,37992,37819,37163,37156,37155,37818,37818,37154,37153,37153,37152,37739,37739,37926,37873,37148,37147,37817,37817,37146,37145,37143,37142,37816,37816,37925,37872,37140,37139,49585,49585,49586,49587,49588,49589,49590,49591,49592,49593,49593,49594,49595,49595,49596,49597,49598,49599,49600,49601,49602,49603,49604,49605,49606,49607,49608,49609,49610,49611,49612,49612,49613,49614,49614,49615,49616,49617,49618,49619,49620,49621,49622,49622,49623,49624,49624,49625,49626,49627,49628,49629,49630,49631,49632,49632,49633,49634,49635,49636,49637,49637,49638,49639,49640,49641,49642,49642,49643,49644,49644,49645,49646,49646,49647,49648,49648,49649,49650,49650,49651,49652,49653,49654,49655,49655,49656,49657,49657,49658,49659,49659,49660,49661,49661,49662,49663,49664,49665,49666,49666,49667,49668,49669,49670,49671,49671,49672,49673,49673,49674,49675,49676,49677,49678,49679,49680,49681,49681,49682,49683,49683,49684,49685,49685,49686,49687,49688,49689,49690,49690,49691,49692,49693,49694,49695,49695,49696,49697,49698,49699,49700,49700,49701,49702,49702,49703,49704,49705,49706,49707,49708,49709,49710,49710,49711,49712,49712,49713,49714,49715,49716,49717,49717,49718,49719,49719,49720,49721,49721,49722,49723,49724,49725,49726,49726,49727,49728,49729,49730,49731,49731,49732,49733,49733,49734,49735,49735,49736,49737,49737,49738,49739,49740,49741,49742,49743,49744,49745,49746,49747,49748,49748,49749,49750,49751,49752,49753,49754,49755,49756,49756,49757,49758,49758,49759,49760,49761,49762,49763,49763,49764,49765,49765,49766,49767,49767,49768,49769,49770,49771,49772,49772,49773,49774,49774,49775,49776,49776,49777,49778,49779,49780,49781,49781,49782,49783,49783,49784,49785,49785,49786,49787,49787,49788,49789,49790,49791,49792,49793,49794,49795,49795,49796,49797,49797,49798,49799,49800,49801,49802,49802,49803,49804,49804,49213,49212,49212,49211,49373,49373,49210,49209,49207,49206,49335,49335,49367,49351,49204,49203,49334,49334,49393,49366,49366,49350,49202,49201,49200,49199,49199,49198,49197,49194,49193,49192,49190,49189,49188,49187,49186,49395,49395,49379,49333,49333,49185,49184,49184,49183,49182,49182,49181,49180,49175,49174,49173,49173,49172,49365,49365,49364,49171,49168,49167,49349,49349,49372,49391,49391,49378,49332,49165,49164,49331,49162,49161,49330,49159,49158,49157,49156,49155,49154,49153,49152,49329,49150,49149,49148,49143,49142,49328,49140,49139,49377,49377,49327,49138,49137,49136,49135,49133,49132,49131,49129,49128,49348,49348,49363,49362,49362,49326,49127,49126,49125,49347,49347,49383,49124,49119,49118,49346,49346,49371,49376,49376,49382,49370,49370,49345,49117,49116,49115,49325,49325,49361,49114,49111,49110,47226,47222,47328,47352,47217,47327,47215,47214,47313,40365,40365,40363,40896,40896,40895,40360,40358,40640,40356,40353,40639,40350,40348,40638,40866,40866,40346,40345,40339,40337,40336,40335,40334,40894,40894,40833,40331,40329,40637,40327,40326,40740,40324,40321,40319,40318,40316,40635,40969,40969,40314,40313,40309,40307,40306,40306,40304,40303,40300,40299,40803,40294,40738,40801,40291,40737,40289,40289,40288,40832,40283,40281,40280,40280,40632,40278,40278,40277,40275,40275,40631,40891,40891,40831,40272,40267,40630,40264,40264,40800,40261,40260,40259,40736,40736,40257,40256,40254,40253,37220,37216,37214,37213,37213,37877,38016,37206,37876,37963,37963,37928,37203,37203,37741,37201,37200,37198,37197,37197,37962,37195,37192,37820,37190,37187,37874,38036,38036,37927,37185,37180,37178,37176,37171,37170,37168,37165,37992,37163,37156,37818,37153,37153,37739,37873,37148,37817,37145,37143,37816,37872,37140,49585,49587,49588,49590,49591,49591,49593,49595,49595,49597,49598,49598,49600,49601,49601,49603,49604,49604,49606,49805,49610,49612,49614,49614,49616,49806,49617,49619,49620,49620,49622,49624,49627,49629,49630,49630,49632,49634,49634,49635,49637,49640,49642,49644,49644,49646,49648,49653,49655,49657,49657,49659,49661,49807,49664,49666,49668,49669,49671,49671,49673,49675,49676,49678,49808,49681,49683,49685,49685,49687,49809,49688,49690,49692,49692,49693,49695,49698,49700,49702,49702,49704,49810,49705,49707,49811,49708,49710,49712,49715,49717,49719,49719,49721,49723,49723,49724,49726,49726,49728,49812,49813,49729,49731,49731,49733,49735,49735,49737,49739,49740,49742,49743,49743,49745,49814,49746,49748,49750,49751,49753,49754,49756,49758,49760,49815,49761,49763,49769,49770,49772,49772,49774,49776,49776,49778,49779,49779,49781,49783,49787,49789,49790,49790,49792,49793,49797,49799,49800,49800,49802,49804,49804,49212,49373,49207,49335,49351,49204,49334,49366,49199,49197,49196,49195,49194,49192,49191,49190,49188,49188,49187,49395,49395,49333,49184,49184,49182,49180,49173,49365,49171,49168,49349,49391,49391,49332,49166,49165,49331,49163,49162,49330,49160,49159,49157,49156,49153,49329,49151,49151,49150,49148,49143,49328,49141,49141,49140,49377,49137,49135,49134,49134,49133,49131,49129,49348,49362,49126,49347,49124,49119,49346,49376,49376,49370,49117,49116,49325,49114,49111,47226,47225,47222,47352,47220,47218,47217,47215,47214,40365,40896,40354,40353,40350,40349,40348,40866,40340,40339,40336,40335,40894,40331,40329,40327,40326,40326,40324,40323,40321,40318,40316,40316,40969,40313,40309,40306,40303,40300,40803,40297,40294,40801,40292,40289,40832,40285,40283,40280,40278,40278,40275,40891,40891,40272,40271,40268,40267,40264,40264,40261,40260,40260,40736,40256,40256,40254,37220,37216,37213,38016,37207,37206,37963,37963,37203,37201,37201,37200,37197,37197,37195,37194,37193,37192,37190,37188,37187,38036,37181,37180,37176,37173,37171,37168,37166,37165,37163,37157,37156,37153,37153,37873,37151,37149,37148,37145,37143,37872,37141,37141,37140,49587,49588,49591,49595,49598,49601,49604,49816,49610,49614,49617,49620,49624,49630,49634,49637,49817,49640,49644,49644,49648,49650,49807,49666,49668,49668,49671,49675,49675,49676,49808,49679,49681,49685,49809,49688,49692,49692,49695,49697,49698,49702,49810,49811,49708,49712,49715,49719,49723,49723,49726,49812,49731,49735,49739,49740,49743,49814,49746,49750,49818,49751,49754,49756,49756,49760,49819,49815,49763,49765,49769,49772,49776,49779,49783,49785,49787,49790,49793,49795,49797,49800,49800,49804,49373,49207,49351,49205,49204,49366,49202,49201,49199,49196,49191,49188,49395,49175,49173,49171,49168,49391,49166,49165,49163,49162,49162,49160,49159,49153,49151,49148,49144,49143,49141,49141,49377,49138,49129,49362,49127,49127,49126,49124,49120,49119,49376,49116,49114,49113,49112,49111,47225,47223,47222,47220,47215,47214,40896,40349,40866,40345,40341,40340,40336,40336,40335,40331,40329,40326,40323,40322,40321,40316,40316,40313,40312,40310,40309,40303,40300,40297,40296,40291,40289,40285,40283,40278,40891,40268,40264,40260,40260,40256,37220,37216,38016,37210,37208,37207,37963,37201,37197,37194,37188,38036,37185,37181,37176,37175,37173,37168,37167,37167,37166,37163,37157,37153,37151,37144,37143,37141,37141,49587,49820,49588,49595,49598,49598,49604,49805,49816,49614,49806,49617,49624,49626,49630,49637,49639,49817,49644,49650,49807,49668,49675,49675,49808,49821,49822,49679,49685,49809,49692,49697,49697,49698,49810,49705,49811,49712,49823,49715,49723,49731,49739,49740,49740,49814,49746,49746,49818,49751,49751,49756,49819,49776,49779,49785,49787,49793,49795,49795,49800,49373,49207,49205,49204,49204,49202,49201,49201,49196,49195,49191,49395,49184,49176,49175,49171,49168,49166,49165,49165,49162,49159,49153,49148,49147,49144,49141,49138,49130,49129,49127,49127,49124,49123,49120,49376,49117,49116,49113,49112,49112,47225,47224,47223,47220,47219,47215,40896,40360,40350,40349,40345,40341,40336,40331,40323,40322,40316,40316,40312,40311,40310,40303,40302,40300,40296,40295,40292,40291,40285,40284,40283,40891,40270,40268,40260,40260,37220,37219,37217,37216,37210,37208,37963,37201,37201,37194,37193,37189,37188,37185,37181,37175,37174,37173,37167,37163,37158,37157,37151,37144,37141,49820,49824,49588,49598,49598,49805,49607,49609,49816,49806,49617,49626,49825,49630,49639,49826,49827,49817,49650,49828,49807,49675,49822,49685,49809,49809,49697,49810,49705,49712,49714,49823,49723,49812,49740,49746,49751,49751,49819,49815,49769,49776,49785,49795,49373,49209,49207,49204,49201,49192,49191,49184,49177,49176,49171,49168,49165,49159,49154,49153,49147,49144,49138,49137,49130,49127,49123,49121,49120,49117,49116,49112,47224,47223,47219,47218,47218,47215,40360,40354,40350,40345,40341,40331,40330,40329,40323,40316,40292,40285,40284,40284,40891,40271,40270,40260,37219,37217,37210,37209,37209,37208,37201,37190,37189,37185,37174,37173,37163,37159,37158,37151,37145,37144,49820,49824,49598,49607,49607,49609,49806,49617,49825,49829,49830,49827,49650,49828,49675,49821,49821,49822,49809,49809,49810,49705,49714,49823,49812,49751,49815,49831,49751,49831,49740,49767,49769,49785,49795,49209,49208,49208,49207,49201,49195,49192,49184,49177,49171,49170,49169,49168,49159,49154,49147,49146,49144,49137,49134,49130,49123,49122,49121,49117,49116,49116,47224,47223,47223,47218,40360,40355,40354,40345,40342,40341,40330,40329,40316,40311,40294,40292,40284,40284,40271,40270,40270,37219,37218,37209,37201,37193,37193,37190,37185,37174,37163,37162,37159,37151,37150,37149,37145,49820,49832,49824,49607,49617,49829,49627,49826,49830,49650,49828,49821,49809,49809,49705,49714,49815,49765,49833,49833,49740,49831,49833,49831,49815,49767,49785,49787,49787,49795,49208,49208,49201,49195,49184,49180,49834,49184,49834,49195,49177,49170,49169,49169,49159,49156,49154,49146,49145,49130,49122,49121,49116,47223,40360,40355,40345,40344,40342,40330,40329,40329,40311,40310,40284,40270,49835,40284,49835,40294,40270,37218,37217,37193,37185,49836,37193,49836,37209,37174,37162,37161,37159,37150,37149,37149,49820,49832,49832,49607,49806,49617,49627,49630,49826,49650,49652,49828,49809,49714,49765,49767,49787,49787,49208,49195,49169,49156,49837,49169,49837,49177,49130,49121,49116,49116,40360,40359,40355,40344,40343,40329,40310,49838,40329,49838,40342,49839,40294,49835,49839,49835,40270,40294,49839,40295,40270,37217,37209,37185,37184,49840,49840,37209,49836,49840,49836,37185,37174,37161,37160,37149,49832,49806,49806,49617,49630,49826,49652,49653,49663,49828,49714,49765,49787,49195,49841,49177,49837,49841,49837,49156,49177,49841,49178,49116,40359,49842,49116,49842,49130,49843,40342,49838,49843,49838,40310,40342,49843,40343,49844,40295,49839,49844,49839,40270,40295,49844,40300,49845,37209,49840,49845,49840,37184,37209,49845,40270,37174,37160,37159,37149,49806,49846,37149,49846,37159,49826,49653,49657,49661,49663,49714,49765,49195,49834,49765,49834,49180,49847,49178,49841,49847,49841,49156,49178,49847,49179,49848,49130,49842,49848,49842,40359,49130,49848,49131,49849,40300,49844,49849,49844,40270,40300,49849,40301,37184,37183,49850,49850,40270,49845,49850,49845,37184,49851,37159,49846,49851,49846,49806,37159,49851,37174,49661,49714,49852,49661,49852,49657,49180,49740,49833,49180,49833,49765,49156,49154,49853,49853,49179,49847,49853,49847,49156,49848,40358,49854,49848,49854,49131,40358,49848,40359,49850,40301,49849,49850,49849,40270,49850,37183,49855,49850,49855,40301,49856,37174,49851,49851,49806,49857,49851,49857,49856,37174,49856,49858,37174,49858,37181,49859,49657,49852,49859,49852,49714,49657,49859,49826,49740,49180,49179,49154,49145,49860,49860,49179,49853,49860,49853,49154,49854,40356,49861,49854,49861,49131,40356,49854,40358,49862,40301,49855,49862,49855,37183,40301,49862,40302,49863,37181,49858,49863,49858,49856,49864,49856,49857,49864,49857,49806,49856,49864,49863,37181,49863,49865,37181,49865,37182,49866,49826,49859,49866,49859,49714,49826,49866,49630,49740,49179,49860,49740,49860,49145,49861,40355,49867,49861,49867,49131,40355,49861,40356,49868,40302,49862,49868,49862,37183,40302,49868,40310,49865,49869,49870,49865,49870,37182,49869,49865,49863,49871,49863,49864,49871,49864,49806,49863,49871,49869,49872,37182,49870,49872,49870,49869,37182,49872,37183,49866,49812,49873,49866,49873,49630,49812,49866,49714,49731,49740,49145,49867,40343,49874,49867,49874,49131,40343,49867,40355,49875,40310,49868,49868,37183,49876,49868,49876,49875,40310,49875,49877,49877,40343,49843,49877,49843,40310,49806,49630,49878,49878,49879,49880,49878,49880,49806,49869,49879,49881,49881,37183,49872,49881,49872,49869,49879,49869,49871,49871,49806,49880,49871,49880,49879,49812,49813,49882,49882,49630,49873,49882,49873,49812,49813,49731,49145,49883,49131,49874,49883,49874,40343,49131,49883,49134,49884,49879,49885,49884,49885,49886,49884,37183,49881,49884,49881,49879,49887,49879,49878,49887,49878,49630,49887,49886,49885,49887,49885,49879,49888,49875,49889,49888,49889,49886,49888,40343,49877,49888,49877,49875,49884,49875,49876,49884,49876,37183,49884,49886,49889,49884,49889,49875,49882,49145,49890,49882,49890,49630,49145,49882,49813,49886,49134,49883,49883,40343,49888,49883,49888,49886,49891,49886,49887,49891,49887,49630,49886,49891,49134,49890,49144,49892,49890,49892,49630,49144,49890,49145,49144,49134,49891,49891,49630,49892,49891,49892,49144,49893,49894,49895,49895,49896,49897,49898,49899,49900,49900,49901,49893,49895,49897,49902,49898,49900,49893,49893,49895,49902,49902,49898,49893,49903,49904,49905,49905,49906,49907,49907,49908,49909,49909,49910,49903,49903,49905,49907,49907,49909,49903,49911,49912,49913,49913,49914,49915,49915,49916,49917,49917,49918,49919,49919,49920,49921,49911,49913,49915,49915,49917,49919,49919,49921,49911,49911,49915,49919,49922,49923,49924,49924,49925,49926,49926,49927,49928,49928,49922,49924,49924,49926,49928,49929,49930,49931,49931,49932,49933,49933,49934,49935,49936,49929,49931,49931,49933,49935,49935,49936,49931,49937,49938,49939,49939,49940,49941,49941,49942,49943,49943,49944,49945,49945,49946,49947,49947,49937,49939,49941,49943,49945,49945,49947,49939,49939,49941,49945,49948,49949,49950,49951,49952,49953,49953,49954,49955,49955,49956,49957,49957,49958,49959,49959,49948,49950,49951,49953,49955,49955,49957,49959,49959,49950,49951,49951,49955,49959,49960,49961,49962,49962,49963,49964,49965,49966,49967,49960,49962,49964,49964,49965,49967,49967,49960,49964,49968,49969,49970,49970,49971,49972,49972,49973,49974,49974,49975,49976,49976,49977,49968,49968,49970,49972,49972,49974,49976,49976,49968,49972,49978,49979,49980,49980,49981,49982,49982,49983,49984,49984,49985,49978,49978,49980,49982,49982,49984,49978,49986,49987,49988,49988,49989,49990,49990,49986,49988,49991,49992,49993,49993,49994,49995,49996,49997,49998,49998,49999,50000,50000,50001,50002,50002,50003,49991,49991,49993,49995,49996,49998,50000,50000,50002,49991,49991,49995,49996,49996,50000,49991,50004,50005,50006,50006,50007,50008,50008,50004,50006,50009,50010,50011,50011,50012,50013,50013,50014,50009,50009,50011,50013,50015,50016,50017,50018,50019,50020,50020,50021,50022,50022,50015,50017,50018,50020,50022,50022,50017,50018,50023,50024,50025,50026,50027,50028,50028,50029,50030,50030,50023,50025,50025,50026,50028,50028,50030,50025,50031,50032,50033,50033,50034,50035,50035,50036,50031,50031,50033,50035,50037,50038,50039,50039,50040,50041,50041,50042,50037,50037,50039,50041,36991,36990,50043,50043,50044,50045,50045,50046,50047,50047,50048,50049,50049,50050,50051,50052,50053,50054,50055,50056,50057,50057,50058,50059,50060,50061,50062,50062,50063,50064,50065,50066,50067,50067,50068,50069,50069,50070,50071,50071,50072,50073,50074,50075,50076,50076,50077,50078,50078,50079,50080,50080,50081,50082,50083,50084,50085,50086,50087,50088,50088,50089,50090,50090,50091,50092,50093,50094,50095,50095,50096,50097,50098,50099,50100,50100,50101,50102,50102,50103,50104,50104,50105,50106,50107,50108,50109,50109,50110,50111,50112,50113,50114,50115,50116,50117,50117,50118,50119,50119,50120,50121,50122,50123,50124,50124,49602,49601,49599,49598,49597,49592,49591,49590,49589,49588,49824,49824,49832,49820,49586,49585,37139,37138,37137,37136,37136,37135,37134,37134,37133,37132,37129,37128,37127,37127,37126,37125,37125,37124,37123,37122,37121,37738,37738,37737,37120,37119,37118,37815,37815,37736,37117,37112,37111,37814,37814,37924,37923,37923,37813,37110,37107,37106,37105,37104,37103,37102,37102,37101,37100,37098,37097,37812,37093,37092,37871,37088,37087,37811,37811,37086,37085,37085,37084,37870,37870,37735,37083,37082,37081,37810,37810,37961,38152,38152,38187,38277,38277,38056,37809,37809,37734,37080,37079,37078,37077,37076,37075,37074,37071,37070,37808,37066,37065,37064,37064,37063,37960,37960,37991,37959,37959,37807,37062,37055,37054,37806,37806,37922,38014,38014,37990,37733,37050,37049,37048,37048,37047,37046,37045,37044,37805,37805,37921,37958,37958,37957,37920,37920,37732,37043,37040,37039,37038,37038,37037,37036,37035,37034,38151,38151,37804,37731,37032,37031,37869,37869,37730,37030,37029,37028,37803,37022,37021,37729,37729,37020,37019,37017,37016,37802,37802,38034,38088,38088,38121,38137,38137,37801,37728,37014,37013,37012,37009,37008,37007,37006,37005,37800,37800,37868,37799,37799,37727,37004,37003,37002,37919,37919,37726,37001,37000,36999,36998,36997,36996,36995,36995,36994,36993,36992,36991,50043,50043,50045,50047,50047,50049,50051,50125,50052,50054,50055,50057,50059,50060,50062,50064,50065,50067,50069,50069,50071,50073,50074,50076,50078,50080,50082,50126,50127,50083,50085,50086,50088,50090,50093,50095,50097,50100,50102,50104,50104,50106,50107,50109,50111,50112,50112,50114,50128,50129,50115,50117,50119,50121,50122,50122,50124,49601,49600,49599,49597,49589,49824,49820,49586,37139,37138,37138,37136,37134,37134,37132,37131,37130,37129,37127,37127,37125,37123,37122,37738,37120,37119,37815,37117,37112,37814,37923,37102,37100,37099,37098,37812,37096,37093,37871,37091,37088,37811,37085,37085,37870,37083,37082,37810,38152,38152,38277,37809,37080,37079,37077,37076,37074,37073,37071,37808,37069,37066,37064,37960,37960,37959,37062,37055,37806,38014,38014,37733,37053,37048,37046,37045,37045,37805,37958,37958,37920,37043,37038,37036,37035,37035,38151,37731,37032,37869,37030,37029,37803,37027,37022,37729,37019,37017,37802,38088,38088,38137,37728,37014,37012,37011,37006,37800,37799,37003,37919,37001,37000,36998,36997,36997,36995,36993,36992,50043,50047,50047,50051,50130,50131,50125,50054,50055,50059,50132,50060,50064,50133,50065,50069,50073,50073,50074,50078,50127,50085,50086,50086,50090,50092,50093,50097,50134,50098,50100,50104,50104,50107,50109,50109,50112,50128,50129,50117,50119,50122,49601,49600,49590,49589,49820,49586,37138,37134,37130,37127,37123,37123,37122,37120,37120,37119,37117,37112,37923,37110,37098,37096,37095,37094,37093,37091,37089,37088,37085,37082,38152,37809,37080,37077,37076,37072,37071,37069,37960,37062,37061,37055,38014,37053,37045,37958,37043,37040,37038,37035,37035,37731,37033,37033,37032,37030,37030,37029,37027,37023,37022,37019,37018,37017,38088,38088,37728,37015,37015,37014,37011,37007,37006,37799,37003,37001,37000,37000,36997,36993,36993,36992,50047,50047,50130,50131,50131,50054,50055,50055,50132,50135,50060,50133,50136,50065,50073,50078,50127,50086,50092,50093,50134,50137,50137,50098,50104,50109,50128,50129,50129,50119,50122,50122,49600,49597,49592,49590,49820,49587,49586,37134,37131,37130,37123,37123,37120,37117,37113,37112,37110,37099,37098,37095,37095,37094,37091,37089,37085,37083,37083,37082,37809,37080,37076,37073,37066,37960,37061,37056,37055,37053,37045,37043,37042,37040,37035,37033,37024,37023,37019,37018,38088,37015,37007,37799,37004,37000,36993,50047,50131,50055,50135,50060,50136,50065,50065,50078,50080,50126,50127,50092,50137,50104,50109,50129,50122,49597,49592,49820,49587,49587,37134,37131,37131,37123,37117,37113,37110,37109,37095,37091,37090,37090,37089,37083,37083,37809,37080,37067,37066,37061,37056,37053,37052,37045,37042,37041,37040,37033,37030,37024,37019,37018,37018,37015,37011,37009,37007,37004,37000,50047,50131,50131,50135,50060,50060,50065,50080,50126,50092,50093,50129,49597,49596,49592,49587,37131,37131,37117,37116,37099,37095,37090,37090,37083,37080,37067,37061,37060,37056,37052,37051,37045,37041,37040,37040,37030,37027,37024,37018,37011,37009,37004,37003,37000,50131,50060,50060,50080,50126,50129,49596,49595,49593,49592,37131,37131,37116,37115,37099,37090,37080,37067,37060,37059,37056,37051,37050,37045,37040,37027,37025,37024,37011,37009,37003,37000,37000,50060,50126,50129,49595,49594,49594,49593,37131,37131,37115,37114,37102,37099,37080,37068,37067,37059,37057,37056,37050,37048,37045,37027,37026,37025,37011,37009,37000,50126,50129,49594,37131,37104,37102,37080,37068,37059,37058,37057,37050,37048,37048,37027,37026,37026,37011,37010,37010,37009,50126,50109,50129,37131,37104,37080,37073,37068,37058,37057,37057,37048,37026,37010,50126,50138,37010,50138,37026,50109,37131,37114,37105,37104,37073,37068,37057,37026,50093,37026,50138,50093,50138,50126,50109,37114,37113,37107,37105,37073,37069,37068,37026,37026,50093,50137,50109,37113,37109,37073,37072,50139,37073,50139,37107,37072,37069,37026,50137,50109,50140,50137,50140,37026,50109,37109,37108,37072,37026,50141,50141,37107,50139,50141,50139,37072,50140,37108,50142,50140,50142,37026,37108,50140,50109,50142,37107,50141,50142,50141,37026,37107,50142,37108,50143,50144,50145,50145,50146,50147,50147,50143,50145,50148,50149,50150,50150,50151,50152,50152,50153,50154,50154,50155,50156,50156,50148,50150,50150,50152,50154,50154,50156,50150,50157,50158,50159,50159,50160,50161,50162,50163,50164,50164,50165,50166,50166,50167,50168,50168,50169,50170,50171,50172,50157,50157,50159,50161,50162,50164,50166,50166,50168,50170,50171,50157,50161,50173,50162,50166,50174,50171,50161,50161,50173,50166,50170,50174,50161,50161,50166,50170,50175,50176,50177,50177,50178,50179,50179,50180,50181,50181,50175,50177,50177,50179,50181,50182,50183,50184,50184,50185,50186,50186,50187,50188,50189,50190,50182,50182,50184,50186,50186,50188,50189,50189,50182,50186,50191,50192,50193,50193,50194,50195,50195,50196,50191,50191,50193,50195,50197,50198,50199,50200,50201,50202,50202,50203,50204,50205,50206,50207,50207,50208,50209,50209,50210,50211,50211,50212,50213,50214,50215,50216,50217,50218,50219,50219,50220,50221,50222,50223,50224,50224,50225,50226,50227,50228,50229,50230,50231,50232,50233,50234,50235,50236,50237,50238,50238,50239,50240,50240,50241,50242,50243,50244,48475,48473,48472,48471,48471,48470,48469,48468,48467,48563,48465,48464,48463,48463,48462,48461,48460,48459,48458,48457,48456,48455,48454,48453,48588,48588,48452,48451,48451,48450,48449,48449,48448,48562,48562,48447,48446,48446,48445,48599,48599,48587,48444,48441,48440,48439,48439,48438,48570,48570,48598,48586,48586,48437,48436,48434,48433,48432,48431,48430,48597,48597,48585,48561,48561,48429,48428,48422,48421,48560,48560,48861,48860,48860,48859,48945,48945,48928,48858,48857,48856,48855,48849,48848,48952,48952,48975,48986,48986,48994,49004,49004,49014,49022,49022,49001,48927,48846,48845,48944,48944,48959,48844,48841,48840,48943,48943,48951,48839,48836,48835,48942,48942,48958,48834,48833,48832,48950,48828,48827,48941,48941,48926,48826,48825,48824,48823,48820,48819,48925,48925,48962,48984,48984,49012,49067,49067,48949,48924,48817,48816,48815,48814,48813,48812,48810,48809,48940,48940,48948,48808,48807,48806,48805,48802,48801,48923,48923,48939,48957,48957,48961,48965,48965,48800,48799,48799,48798,48797,48794,48793,48792,48791,48790,48789,48788,48787,48786,48785,48784,48947,48947,48938,48783,48780,48779,48778,48778,48777,48776,48776,48775,48922,48922,48960,48774,48771,48770,48921,48768,48767,48766,48765,48764,48920,48762,48761,48919,48759,48758,48757,48752,48751,48750,48748,40136,40135,40135,40134,40133,40131,40130,40129,40128,40127,40724,40724,40126,44823,44823,44822,44908,44908,44894,44821,44820,44819,44932,44932,44818,44817,44817,44816,44893,44812,44811,44907,44907,44892,44810,44809,44808,44931,44931,44936,44930,44930,44906,44807,44806,44805,44891,44793,44792,44915,44915,44922,44905,44788,44787,44914,44914,44933,44941,44941,44935,44786,44783,44782,44890,44890,44889,44781,44776,44775,44904,44904,44921,44929,44929,44928,44888,44769,44768,44903,44903,44920,44919,44919,44913,44887,44766,44765,44886,44763,44762,44912,44760,44759,44758,44755,43192,43191,43191,43384,43190,43189,43188,43383,43186,43185,43420,50199,50200,50202,50202,50204,50245,50205,50207,50209,50209,50211,50213,50246,50214,50216,50217,50219,50221,50222,50224,50226,50227,50229,50230,50230,50232,50247,50248,50233,50235,50236,50238,50240,50240,50242,50249,50250,50243,48475,48473,48471,48469,48469,48468,48563,48465,48463,48461,48460,48458,48457,48457,48455,48454,48454,48588,48451,48449,48562,48446,48446,48599,48444,48441,48439,48570,48570,48586,48436,48434,48432,48431,48431,48597,48561,48423,48422,48560,48560,48860,48945,48858,48857,48855,48850,48849,48952,48952,48986,49004,49004,49022,48927,48846,48944,48844,48842,48841,48943,48836,48942,48834,48834,48833,48950,48828,48941,48826,48825,48823,48822,48820,48925,48984,48984,49067,48924,48817,48815,48814,48811,48810,48940,48940,48808,48807,48807,48805,48804,48802,48923,48957,48957,48965,48799,48799,48797,48796,48794,48792,48791,48789,48788,48786,48785,48947,48783,48781,48780,48778,48776,48922,48774,48771,48921,48769,48768,48766,48765,48765,48920,48763,48762,48919,48760,48759,48757,48756,48753,48752,48750,48749,48748,40135,40128,40724,44823,44823,44908,44821,44821,44820,44932,44817,44893,44815,44812,44907,44810,44810,44809,44931,44931,44930,44807,44806,44891,44804,44793,44915,44905,44789,44788,44914,44914,44941,44786,44783,44890,44781,44777,44776,44904,44904,44929,44888,44769,44903,44919,44919,44887,44767,44766,44886,44764,44763,44912,44761,44755,43191,43190,43190,43189,43383,43186,43420,43184,50199,50202,50245,50205,50209,50213,50246,50216,50251,50217,50221,50222,50222,50226,50252,50248,50235,50253,50236,50240,50249,50254,50250,48475,48469,48563,48466,48461,48460,48457,48457,48454,48451,48449,48446,48444,48441,48570,48436,48434,48431,48561,48423,48560,48945,48858,48855,48854,48850,48952,49004,49004,48927,48847,48842,48943,48839,48837,48836,48834,48834,48950,48831,48825,48822,48821,48821,48820,48984,48984,48924,48818,48818,48817,48814,48811,48940,48807,48802,48957,48799,48799,48796,48795,48794,48791,48789,48789,48786,48785,48785,48783,48782,48781,48778,48776,48776,48774,48773,48768,48765,48763,48762,48760,48759,48753,48750,48749,48749,40135,40133,40129,40128,44823,44821,44932,44817,44813,44812,44810,44810,44931,44807,44806,44804,44803,44794,44793,44905,44789,44914,44786,44784,44783,44781,44777,44904,44888,44770,44769,44919,44766,44764,44763,44763,44761,44760,44756,44755,43190,43190,43383,43187,43187,43186,43184,50197,50199,50245,50205,50213,50255,50217,50222,50252,50253,50236,50249,50254,48475,48474,48473,48469,48466,48457,48451,48449,48449,48444,48443,48441,48436,48435,48435,48434,48561,48424,48423,48945,48858,48854,48853,48851,48850,49004,49004,48847,48846,48837,48834,48831,48821,48984,48818,48818,48814,48812,48811,48807,48804,48802,48799,48795,48789,48785,48782,48782,48781,48776,48776,48773,48772,48754,48753,48749,48749,40133,40132,40129,44823,44821,44821,44817,44815,44813,44810,44807,44795,44794,44905,44789,44786,44785,44785,44784,44781,44778,44777,44888,44770,44919,44767,44767,44766,44763,44757,44756,43190,43187,43184,50197,50197,50245,50205,50205,50255,50256,50217,50252,50227,50253,50249,50257,50254,48474,48473,48473,48466,48465,48461,48457,48449,48449,48443,48442,48441,48435,48561,48425,48424,48945,48858,48853,48852,48851,49004,48846,48837,48831,48830,48825,48821,48818,48812,48811,48804,48803,48802,48795,48794,48789,48782,48782,48776,48772,48755,48754,48749,40131,40129,44821,44814,44813,44807,44796,44795,44905,44790,44789,44785,44785,44781,44780,44778,44888,44774,44770,44767,44763,44757,43190,43187,43187,50197,50205,50251,50217,50227,50253,50257,50254,50254,48473,48465,48461,48449,48442,48441,48561,48428,48426,48425,48945,48858,48852,48851,48851,48846,48844,48837,48830,48829,48826,48825,48818,48818,48812,48804,48803,48795,48794,48794,48782,48772,48755,48749,40132,40132,40131,44821,44815,44814,44807,44797,44796,44905,44790,44785,44780,44778,44774,44773,44770,44763,44760,44757,43187,50205,50251,50227,50230,50253,50254,48465,48465,48461,48442,48441,48428,50258,48441,50258,48442,48427,48426,48945,48945,48858,48851,48851,48844,48843,48837,48829,48828,48828,48826,48818,48818,48804,48803,48794,48772,50259,48794,50259,48803,48756,48755,40132,40132,44821,44815,44815,44807,44806,44797,44905,44791,44791,44790,44780,44778,44773,44772,44770,44760,44758,44758,44757,50205,50253,48465,48442,48428,48427,50260,50260,48442,50258,50260,50258,48428,48945,48851,50261,48945,50261,48427,48851,48843,48842,48828,48818,50262,48828,50262,48837,48772,48771,50263,50263,48803,50259,50263,50259,48772,48759,48756,40132,40132,44815,44806,44797,44791,44780,44778,44772,44771,50205,50256,50264,50205,50264,44758,50248,50253,48442,50265,48427,50261,50261,48851,50266,50261,50266,50265,48427,50265,50267,50267,48442,50260,50267,50260,48427,48842,48839,50268,48842,50268,48851,50269,48837,50262,50269,50262,48818,48837,50269,48838,48759,40132,44806,44798,44797,44780,50270,44758,50264,50270,50264,50256,44758,50270,44770,50248,48442,50271,50248,50271,50272,50273,48839,50274,50273,50274,50275,50273,48851,50268,50273,50268,48839,50265,50275,50276,50276,48442,50267,50276,50267,50265,50273,50265,50266,50273,50266,48851,50265,50273,50275,48818,48803,50277,50277,48838,50269,50277,50269,48818,48762,48759,44806,44799,44798,44780,50256,50246,50278,50278,44770,50270,50278,50270,50256,50279,50272,50271,50279,50271,48442,50272,50279,50247,48839,48838,50280,50280,50281,50282,50280,50282,48839,50275,50281,50283,50283,48442,50276,50283,50276,50275,50281,50275,50274,50274,48839,50282,50274,50282,50281,50284,48803,50263,50284,50263,48771,48803,50284,50285,50277,50285,50286,50277,50286,48838,50285,50277,48803,48763,48762,44806,44800,44799,44780,50246,50251,50287,50287,44770,50278,50287,50278,50246,50288,50247,50279,50288,50279,48442,50247,50288,50230,50289,50290,50291,50289,50291,50285,50290,50289,50292,50290,48838,50286,50286,50285,50291,50286,50291,50290,50293,50285,50284,50293,50284,48771,50293,50292,50289,50293,50289,50285,50294,50281,50295,50294,50295,50292,50294,48442,50283,50294,50283,50281,50280,50290,50296,50280,50296,50281,50290,50280,48838,50290,50292,50295,50295,50281,50296,50295,50296,50290,48768,48763,44806,44800,44780,44779,50251,50230,50297,50251,50297,50298,50287,50298,50299,50287,50299,44770,50298,50287,50251,50294,50230,50288,50294,50288,48442,50294,50292,50300,50294,50300,50230,50301,50292,50293,50293,48771,50302,50293,50302,50301,50292,50301,50303,50303,50230,50300,50303,50300,50292,48768,44806,44803,44800,44779,44778,50299,50304,50305,50299,50305,44770,50304,50299,50298,50306,50298,50297,50306,50297,50230,50298,50306,50304,50307,44770,50305,50307,50305,50304,44770,50307,44771,48771,48769,50308,50308,50309,50310,50308,50310,48771,50301,50309,50311,50311,50230,50303,50311,50303,50301,50309,50301,50302,50302,48771,50310,50302,50310,50309,48769,48768,44803,44800,44778,44771,50309,44771,50307,50309,50307,50304,50311,50304,50306,50311,50306,50230,50304,50311,50309,44771,50309,50308,44771,50308,48769,48769,44803,44802,44801,44800,44771,44771,48769,44802,44802,44801,44771,50312,50313,50314,50314,50315,50316,50316,50317,50318,50318,50312,50314,50314,50316,50318,43071,44218,44277,44214,44213,44276,44211,44210,44209,44209,44208,44275,44275,44353,44382,44382,44395,44411,44411,44425,44438,44438,44474,44471,44471,44207,44206,44206,44205,44381,44381,44308,44274,44274,44204,44203,44203,50319,50320,50320,50321,50322,50322,50323,50324,50324,50325,50326,50327,50328,50329,50330,50331,50332,50332,50333,50334,50335,50336,50337,50337,50338,50339,50340,50341,50342,50343,50344,50345,50345,50346,50347,50348,50349,50350,50351,50352,50353,50353,50354,50355,50355,50356,50357,50357,50358,50359,50360,50361,50362,50363,50364,50365,50365,50366,50367,50368,50369,50370,50370,50371,50372,50373,50374,50375,50375,50376,50377,50378,50379,50380,50381,50382,50383,50383,50384,50385,50385,48256,48255,48255,48540,48539,48538,48537,48575,48575,48536,48535,48529,48528,48527,48527,48526,48574,48574,48525,48524,48522,48521,48520,48519,48518,48517,48512,48511,48573,48573,48572,48564,48507,48506,48616,48616,48552,48505,48504,48503,48551,48501,48500,48499,48496,48495,48589,48589,48571,48494,48491,48490,48489,48486,48485,48550,48483,48482,48549,48549,48481,48480,48478,48477,48476,48476,48475,50244,50244,50243,50250,50250,50254,50257,50257,50249,50242,50237,50236,50253,50234,50233,50248,50248,50272,50247,50231,50230,50229,50228,50227,50252,50223,50222,50221,50218,50217,50251,50215,50214,50246,50246,50256,50255,50212,50211,50210,50206,50205,50245,50201,50200,50199,50198,50197,43184,43181,43180,43444,43444,43479,43419,43178,43177,43382,43382,43443,43495,43495,43488,43418,43173,43172,43171,43168,43167,43166,43163,43162,43161,43161,43160,43159,43155,43154,43417,43152,43151,43381,43381,43478,43518,43518,43514,43507,43507,43469,43442,43442,43150,43149,43147,43146,43145,43145,43144,43441,43142,43141,43140,43137,43136,43135,43132,43131,43416,43416,43130,43129,43129,43128,43127,43125,43124,43123,43122,43121,43415,43415,43120,43119,43119,43118,43117,43114,43113,43414,43414,43112,43111,43109,43108,43107,43104,43103,43519,43519,43506,43501,43501,43380,43102,43097,43096,43095,43094,43093,43413,43413,43456,43092,43091,43090,43468,43468,43455,43412,43086,43085,43440,43440,43084,43083,43083,43082,43379,43379,43467,43411,43411,43081,43080,43078,43077,43076,43074,43073,43410,43072,43071,44277,44214,44276,44212,44209,44275,44382,44382,44411,44438,44438,44471,44206,44206,44381,44274,44274,44203,50320,50320,50322,50324,50324,50326,50386,50327,50329,50387,50330,50332,50334,50335,50337,50339,50388,50340,50342,50343,50345,50347,50389,50348,50350,50351,50353,50355,50355,50357,50359,50363,50365,50367,50390,50368,50370,50370,50372,50391,50392,50373,50375,50375,50377,50393,50378,50380,50394,50381,50383,50385,50385,48255,48539,48538,48575,48535,48529,48527,48574,48519,48517,48516,48513,48512,48573,48573,48564,48510,48507,48616,48505,48504,48551,48502,48497,48496,48589,48589,48494,48493,48491,48489,48488,48486,48550,48484,48483,48549,48480,48478,48476,50244,50244,50250,50257,50257,50242,50241,50237,50253,50235,50234,50248,50247,50232,50231,50229,50229,50228,50252,50223,50221,50220,50218,50251,50216,50215,50246,50255,50213,50212,50210,50207,50206,50245,50201,50199,50198,50198,43184,43183,43181,43444,43419,43178,43382,43495,43495,43418,43176,43173,43171,43170,43169,43168,43166,43163,43161,43159,43155,43417,43153,43152,43381,43518,43518,43507,43442,43147,43145,43441,43138,43137,43135,43132,43416,43129,43125,43123,43122,43122,43415,43119,43119,43117,43116,43114,43414,43111,43109,43107,43106,43105,43104,43519,43519,43501,43102,43094,43413,43092,43092,43091,43468,43468,43412,43089,43086,43440,43083,43083,43379,43411,43079,43078,43076,43075,43074,43410,43410,43072,44277,44211,44209,44382,44382,44438,44206,50320,50324,50386,50395,50330,50334,50396,50335,50339,50388,50342,50397,50343,50347,50398,50399,50389,50350,50350,50351,50355,50355,50359,50400,50363,50367,50401,50402,50390,50370,50370,50391,50403,50375,50393,50404,50405,50378,50394,50394,50381,50385,50385,48539,48538,48538,48535,48534,48529,48574,48524,48513,48573,48510,48507,48505,48504,48497,48589,48493,48492,48491,48488,48483,48480,48479,48479,48478,50244,50244,50257,50241,50238,50237,50235,50234,50247,50232,50232,50229,50252,50223,50220,50219,50219,50218,50216,50215,50255,50213,50207,50245,50204,50201,50198,43183,43181,43419,43179,43178,43495,43176,43170,43169,43166,43163,43159,43158,43155,43153,43152,43152,43518,43442,43147,43441,43143,43138,43135,43134,43133,43132,43129,43126,43125,43122,43122,43119,43116,43114,43111,43110,43110,43109,43106,43105,43519,43102,43095,43094,43092,43092,43468,43089,43087,43086,43083,43083,43411,43080,43075,43410,44277,44212,44211,44382,44274,50320,50386,50406,50395,50334,50407,50396,50339,50343,50398,50408,50408,50399,50350,50350,50355,50400,50363,50401,50409,50409,50402,50370,50370,50403,50410,50405,50394,50385,50385,48538,48534,48530,48529,48524,48514,48513,48510,48508,48507,48504,48498,48497,48493,48493,48492,48488,48484,48483,48479,48479,50244,50241,50239,50238,50235,50234,50232,50252,50223,50219,50216,50215,50213,50210,50208,50207,50204,50201,43183,43182,43182,43181,43179,43179,43178,43176,43173,43170,43166,43164,43163,43158,43155,43152,43442,43138,43134,43133,43133,43129,43127,43126,43122,43116,43114,43110,43106,43106,43105,43102,43095,43092,43089,43087,43083,43080,43075,44277,44217,44212,44382,44206,44274,50386,50411,50406,50334,50412,50343,50408,50350,50350,50400,50360,50409,50370,50410,50405,50385,48534,48530,48524,48523,48515,48514,48510,48509,48508,48504,48498,48493,48488,48486,48484,48479,48479,50241,50240,50240,50239,50235,50235,50234,50252,50223,50216,50215,50215,50210,50209,50208,50204,50203,50201,43182,43179,43179,43176,43175,43174,43173,43166,43156,43155,43442,43139,43138,43133,43133,43127,43126,43126,43116,43115,43114,43106,43102,43095,43089,43088,43088,43087,43080,43076,43075,44217,44274,50411,50413,50406,50412,50414,50343,50350,50360,50409,50410,50392,50404,50405,48534,48530,48523,48522,48515,48510,48509,48509,48504,48502,48498,48488,48487,48486,48479,50240,50240,50235,50252,50224,50223,50215,50208,50203,50202,50202,50201,43179,43179,43175,43174,43156,43442,43149,43139,43133,43126,43126,43115,43114,43114,43102,43101,43097,43095,43088,43088,43080,43079,43076,44217,44216,44274,50413,50415,50397,50343,50360,50409,50392,50375,50375,50404,48534,48516,48515,48509,48487,48486,50240,50240,50252,50226,50224,50215,50209,50209,50208,50202,50202,43179,43174,43156,43149,43148,43139,43126,43114,43114,43101,43100,43097,43088,43079,44206,44274,50415,50388,50397,50360,50409,50375,48534,48516,48509,48502,48487,50240,50226,50209,50202,43174,43156,43148,43147,43140,43139,43114,43114,43100,43099,43098,43097,43079,44206,50415,50327,50339,50388,50360,50409,48534,50416,50409,50416,50363,48516,48502,48501,48487,50226,50417,48487,50417,48498,50209,43174,50418,50209,50418,50224,43156,43147,43143,43140,43114,43099,43098,43079,43076,44206,50327,50387,50339,50360,50362,50416,48533,50419,50416,50419,50363,48533,50416,48534,50420,48498,50417,50420,50417,50226,48498,50420,48499,43174,43166,50421,50421,50224,50418,50421,50418,43174,43157,43156,43143,43140,43099,43098,44206,50387,50422,50407,50339,50362,50419,48532,50423,50419,50423,50363,48532,50419,48533,50420,50225,50424,50420,50424,48499,50225,50420,50226,50425,50224,50421,50425,50421,43166,50224,50425,50225,43158,43157,43143,43098,43076,50426,43098,50426,43140,44206,50422,50427,50407,50362,50428,48532,48531,50429,50429,50363,50423,50429,50423,48532,50425,50430,50431,50425,50431,50225,50430,50425,43166,50430,48499,50424,50424,50225,50431,50424,50431,50430,43158,43143,43142,50432,43140,50426,50432,50426,43076,43140,50432,43142,44212,44206,50427,50433,50407,50428,48531,48530,50434,50434,50363,50429,50434,50429,48531,50435,48499,50430,50435,50430,43166,48499,50435,48501,43158,43142,50436,43158,50436,43164,43076,44216,50437,50437,43142,50432,50437,50432,43076,44214,44212,50427,50433,50428,50363,48530,48522,50438,50438,50363,50434,50438,50434,48530,50439,48501,50435,50435,43166,50440,50435,50440,50439,48501,50439,50441,48501,50441,48516,50442,43142,50437,50437,44216,50443,50437,50443,50442,43142,50442,50444,50444,43164,50436,50444,50436,43142,44214,50427,50406,50445,50363,50438,50445,50438,48522,50363,50445,50433,50441,50446,50447,50441,50447,48516,50446,50441,50439,50448,50439,50440,50448,50440,43166,50439,50448,50446,50449,48516,50447,50449,50447,50446,48516,50449,48519,50444,50450,50451,50444,50451,43164,50450,50444,50442,50452,50442,50443,50452,50443,44216,50442,50452,50450,50453,43164,50451,50453,50451,50450,43164,50453,43165,44214,50406,50414,50454,50433,50445,50454,50445,48522,50433,50454,50455,50449,50456,50457,50449,50457,48519,50456,50449,50446,50458,50446,50448,50458,50448,43166,50446,50458,50456,50459,48519,50457,50459,50457,50456,48519,50459,48520,50453,50460,50461,50453,50461,43165,50460,50453,50450,50462,50450,50452,50462,50452,44216,50450,50462,50460,50463,43165,50461,50463,50461,50460,43165,50463,43166,44215,44214,50414,50464,50455,50454,50464,50454,48522,50455,50464,50465,50459,50466,50467,50459,50467,48520,50466,50459,50456,50468,50456,50458,50468,50458,43166,50456,50468,50466,50469,48520,50467,50469,50467,50466,48520,50469,48522,44216,44215,50470,50470,50471,50472,50470,50472,44216,50460,50471,50473,50473,43166,50463,50473,50463,50460,50471,50460,50462,50462,44216,50472,50462,50472,50471,44215,50414,50474,50475,50465,50464,50475,50464,48522,50465,50475,50474,50466,50471,50476,50476,48522,50469,50476,50469,50466,50473,50466,50468,50473,50468,43166,50466,50473,50471,50476,50470,50477,50476,50477,48522,50470,50476,50471,50470,44215,50478,50478,48522,50477,50478,50477,50470,44215,50474,50475,50475,48522,50478,50475,50478,44215,42177,42074,42073,42073,42096,42101,42101,42103,42072,42072,42071,42110,42110,42115,42114,42113,42112,42111,42047,42046,42045,42045,42044,42043,42041,42040,42039,42039,42038,42099,42099,42037,42036,42036,42035,42034,42034,42033,42032,42032,42031,42030,50479,47761,47760,47760,47759,47758,47757,47756,47935,47935,47945,47934,47752,47751,47920,47920,47899,47750,47747,47746,47745,47744,47743,47986,47986,47898,47742,47739,47738,47737,47737,47736,47933,47933,47897,47735,47735,47406,47405,47405,47526,47525,47403,47402,47401,47400,47399,42192,42192,42191,42190,42190,42189,42188,42187,42186,42185,42182,42181,42180,42179,42178,42177,42177,42073,42101,42101,42072,42110,42110,42114,42113,42113,42111,42047,42047,42045,42043,42041,42039,42099,42099,42036,42034,42034,42032,42030,42030,50479,47760,47758,47757,47935,47935,47934,47755,47752,47920,47750,47747,47745,47744,47744,47986,47742,47737,47933,47735,47735,47405,47525,47403,47401,47400,47400,42192,42190,42190,42188,42187,42187,42185,42184,42182,42180,42179,42179,42177,42101,42101,42110,42113,42113,42047,42043,42041,42099,42034,42034,42030,47760,47760,47758,47935,47935,47755,47754,47753,47752,47750,47748,47747,47744,47744,47742,47741,47739,47737,47735,47735,47525,47404,47403,47400,42190,42190,42187,42184,42182,42179,42101,42113,42043,42042,42042,42041,42034,42034,47760,47935,47753,47750,47749,47749,47748,47744,47740,47739,47735,47735,47404,47403,47403,42190,42184,42182,42101,42113,42042,42034,47935,47753,47749,47744,47741,47740,47735,47735,47403,42184,42183,42182,42113,42042,47935,50480,42042,50480,42113,47754,47753,47744,47741,47735,42184,42184,42183,42113,47754,42113,50480,47754,50480,47935,47754,47744,47741,47741,42184,42113,42113,47754,47741,37932,37355,40228,40228,40626,40732,40226,40225,40625,40223,40222,40624,40624,40221,40220,40220,40219,40623,40623,40829,40218,40213,40212,40731,40731,40622,40211,40208,40207,40621,40621,40797,40206,40201,40200,40730,40730,40864,40620,40198,40197,40196,40195,40194,40193,40193,40192,40619,40190,40189,40729,40729,40889,40863,40185,40184,40728,40728,40183,40182,40180,40179,40178,40176,40175,40727,40727,40963,40828,40828,40174,40173,40170,37439,37438,37438,37761,37835,37835,37437,37436,37436,37435,37997,37997,38020,38060,38060,37434,37433,37431,37430,37834,37834,38155,38222,38222,38332,37429,37428,37427,37996,37423,37422,37833,37833,37889,37760,37420,37419,37832,37832,37418,37417,37417,37416,37935,37935,37831,37415,37412,37411,37410,37407,37406,37759,37404,37403,37402,37399,37398,37397,37396,37395,37394,37394,37393,37392,37389,37388,37387,37386,37385,37758,37383,37382,37888,37888,37934,37757,37757,37381,37380,37378,37377,37756,37756,37887,37376,37375,37374,37373,37371,37370,37830,37830,37755,37369,37368,37367,37829,37829,37366,37365,37365,37364,37754,37362,37361,38413,38413,38399,38220,38220,37971,37933,37933,37753,37360,37357,37356,37752,37752,37886,37932,37932,40228,40732,40226,40625,40224,40223,40624,40220,40220,40623,40218,40213,40731,40211,40208,40621,40206,40201,40730,40620,40196,40195,40193,40193,40619,40191,40190,40729,40863,40185,40728,40182,40181,40180,40178,40177,40176,40727,40727,40828,40173,40171,40170,37438,37438,37835,37436,37436,37997,38060,38060,37433,37432,37432,37431,37834,37834,38222,37429,37429,37428,37996,37423,37833,37760,37421,37420,37832,37832,37417,37935,37412,37410,37409,37408,37407,37759,37405,37404,37402,37399,37397,37396,37389,37387,37386,37386,37758,37384,37383,37888,37757,37378,37756,37376,37375,37373,37372,37371,37830,37369,37368,37829,37365,37365,37754,37363,37362,38413,38220,38220,37933,37360,37357,37752,37932,37932,40732,40227,40223,40220,40218,40214,40213,40211,40208,40206,40205,40202,40201,40620,40191,40190,40863,40186,40185,40182,40177,40727,40173,40171,37438,37436,37436,38060,37432,37432,37834,37429,37429,37996,37426,37424,37423,37760,37421,37832,37935,37413,37412,37409,37408,37759,37405,37405,37402,37401,37400,37399,37396,37390,37389,37386,37383,37757,37380,37378,37376,37375,37372,37371,37369,37369,37368,37365,37365,37363,37362,37362,38220,37360,37357,37932,40227,40223,40218,40217,40215,40214,40211,40208,40205,40204,40202,40620,40199,40191,40863,40188,40186,40182,40181,40178,40177,40173,40172,40171,37436,37436,37432,37429,37429,37426,37425,37424,37760,37421,37421,37935,37415,37413,37409,37408,37408,37405,37401,37400,37396,37394,37391,37390,37386,37384,37383,37380,37379,37378,37375,37375,37372,37369,37369,37365,37362,37362,37360,37359,37358,37357,40227,40223,40217,40216,40215,40211,40210,40208,40204,40203,40203,40202,40199,40191,40188,40187,40186,40181,40178,40178,40173,40172,40172,37436,37429,37421,37415,37414,37413,37408,37401,37391,37386,37384,37379,37375,37369,37369,37362,37359,37359,37358,40227,40223,40216,40215,40215,40210,40209,40203,40199,40198,40193,40191,40187,40178,40172,50481,40178,50481,40186,40172,37429,37425,37424,37421,37414,37413,37401,37400,37391,37384,37380,37379,37369,37359,37359,40227,40226,40223,40215,40209,40203,40198,40196,40196,40193,40187,40172,37425,50482,50482,40186,50481,50482,50481,40172,37424,37414,37413,37413,37400,37394,37391,37380,37379,37379,37359,40226,40224,40223,40209,40203,40196,40187,50483,40186,50482,50483,50482,37425,40186,50483,40187,37413,37394,50484,37413,50484,37424,37379,40226,50485,37379,50485,37391,50486,40187,50483,50486,50483,37425,40187,50486,40203,50487,37391,50485,50487,50485,40226,37391,50487,37392,50488,40203,50486,50486,37425,50489,50486,50489,50488,40203,50488,50490,40203,50490,40208,50491,37392,50487,50491,50487,40226,37392,50491,37394,50490,50492,50493,50490,50493,40208,50492,50490,50488,50494,50488,50489,50494,50489,37425,50488,50494,50492,50495,40208,50493,50495,50493,50492,40208,50495,40209,50491,40224,50496,50491,50496,37394,40224,50491,40226,50497,50492,50498,50497,50498,37424,50492,50497,50499,50495,50499,50500,50495,50500,40209,50499,50495,50492,50494,37424,50498,50494,50498,50492,37424,50494,37425,40209,37394,50496,40209,50496,40224,37394,40209,50500,37394,50500,50499,50484,50499,50497,50484,50497,37424,50499,50484,37394,50501,42689,42688,42688,42855,42854,42853,42852,42851,42850,42849,42848,42847,42846,42845,42845,42844,42863,42842,42841,42840,42839,42838,42862,42837,42836,47686,47686,47893,47914,47914,47927,47892,47891,47890,47889,47888,47887,47886,47883,47882,47913,47913,47881,47880,47880,47879,47926,47926,47912,47878,47873,47872,47925,47925,47924,47911,47870,47869,47868,47867,47866,47910,47910,47977,47995,47995,47865,47864,47864,47863,47862,47861,47860,47859,47858,47857,47856,47855,47854,47909,47909,47937,47962,47962,48065,48134,48134,48174,47923,47923,47908,47853,47852,47851,48011,48011,47992,47961,47961,47850,47849,47847,47846,47845,47843,47842,50502,50502,50503,50504,50505,50506,50507,50508,50509,50510,50511,50512,50513,50514,50515,50516,50517,50518,50519,50520,50521,50522,50522,50523,50524,50525,50526,50527,50528,50529,50530,50531,50532,50533,50533,50534,50535,50536,50537,50538,50539,50540,50541,50541,50542,50543,50543,50544,50545,50546,50547,50548,50549,50550,50551,50552,50553,50554,50554,50555,50556,50557,50558,50559,50560,50561,50562,50562,50563,50564,50565,50566,50567,50567,50568,50569,50569,50570,50571,50572,50501,42688,42688,42854,42853,42848,42847,42845,42845,42863,42843,42842,42840,42839,42839,42862,42837,42837,47686,47914,47891,47889,47888,47888,47886,47885,47884,47883,47913,47880,47926,47878,47874,47873,47925,47925,47911,47871,47871,47870,47868,47867,47910,47995,47864,47862,47861,47861,47859,47858,47855,47909,47962,47962,48134,47923,47852,48011,47961,47847,47845,47844,47844,47843,50502,50502,50504,50573,50574,50505,50507,50511,50513,50575,50576,50514,50516,50516,50517,50519,50577,50520,50522,50522,50524,50525,50525,50527,50528,50528,50530,50531,50531,50533,50535,50536,50538,50578,50539,50541,50543,50543,50545,50546,50549,50551,50552,50552,50554,50556,50557,50559,50560,50560,50562,50564,50565,50567,50569,50572,42688,42853,42848,42845,42843,42843,42842,42839,42839,42837,47914,47891,47888,47885,47885,47884,47913,47913,47880,47878,47874,47925,47871,47867,47995,47864,47864,47861,47858,47855,47962,47923,47853,47852,47961,47847,47844,50502,50574,50507,50508,50510,50511,50575,50576,50516,50519,50577,50522,50525,50525,50528,50531,50531,50535,50536,50579,50539,50543,50543,50546,50548,50549,50552,50556,50580,50557,50560,50560,50564,50565,50565,50569,50571,50581,50572,42853,42843,42839,47914,47892,47891,47885,47885,47913,47878,47874,47871,47868,47868,47867,47864,47856,47855,47923,47853,47961,47849,47847,50502,50573,50573,50574,50508,50510,50575,50576,50519,50577,50525,50525,50531,50536,50579,50543,50548,50549,50556,50582,50580,50560,50565,50565,50571,50583,50583,50581,42853,42848,42843,47914,47892,47885,50584,47892,50584,47914,47868,47864,50585,47868,50585,47874,47858,47856,47923,47853,47849,47848,47847,50573,50508,50510,50576,50519,50519,50525,50536,50579,50548,50586,50579,50586,50578,50549,50582,50587,50565,50583,50588,50565,50588,50580,50583,42853,42851,42850,42848,47914,47885,47878,50589,50589,47914,50584,50589,50584,47885,47864,47858,50590,50590,47874,50585,50590,50585,47864,47858,47923,47853,47848,47847,50508,50519,50536,50591,50519,50591,50510,50548,50549,50592,50592,50578,50586,50592,50586,50548,50549,50587,50593,50594,50580,50588,50594,50588,50583,50580,50594,50593,50583,42851,42850,50595,47914,50589,50589,47878,50596,50589,50596,50595,47914,50595,50597,47914,50597,42850,47858,47853,50598,50598,47874,50590,50598,50590,47858,47848,50508,50510,50536,50578,50599,50599,50510,50591,50599,50591,50536,50549,50593,50600,50600,50578,50592,50600,50592,50549,50583,42850,50601,50601,50593,50594,50601,50594,50583,47878,47877,50602,50602,50603,50604,50602,50604,47878,50595,50603,50605,50605,42850,50597,50605,50597,50595,50603,50595,50596,50596,47878,50604,50596,50604,50603,47853,47848,50606,50606,47874,50598,50606,50598,47853,50607,50510,50599,50607,50599,50578,50510,50607,47848,50608,50593,50601,50601,42850,50609,50601,50609,50608,50593,50608,50610,50610,50578,50600,50610,50600,50593,47877,47876,50611,50611,50612,50613,50611,50613,47877,50603,50612,50614,50614,42850,50605,50614,50605,50603,50612,50603,50602,50602,47877,50613,50602,50613,50612,50615,47874,50606,50615,50606,47848,47874,50615,47875,47876,50616,50617,50617,50608,50618,50617,50618,47876,50616,50578,50610,50610,50608,50617,50610,50617,50616,50612,50608,50609,50609,42850,50614,50609,50614,50612,50608,50612,50611,50611,47876,50618,50611,50618,50608,50615,50607,50619,50615,50619,47875,50607,50615,47848,50607,50578,50620,50620,47875,50619,50620,50619,50607,50616,47875,50620,50616,50620,50578,47875,50616,47876,50621,50622,50623,50623,50624,50625,50625,50626,50627,50627,50621,50623,50623,50625,50627,50628,50629,50630,50630,50631,50632,50632,50628,50630,50633,50634,50635,50635,50636,50637,50637,50638,50633,50633,50635,50637,50639,50640,50641,50641,50642,50643,50644,50645,50646,50646,50647,50648,50648,50649,50650,50650,50651,50652,50652,50653,50654,50654,50655,50656,50639,50641,50643,50643,50644,50646,50646,50648,50650,50650,50652,50654,50656,50639,50643,50643,50646,50650,50650,50654,50656,50656,50643,50650,38828,38827,50657,50657,50658,50659,50659,50660,50661,50662,50663,50664,50665,50666,50667,50668,50669,50670,50670,38833,38832,38832,40498,38831,38830,38829,38828,50657,50659,50661,50661,50662,50664,50665,50667,50668,50668,50670,38832,38832,38831,38830,38830,38828,50657,50657,50661,50664,50664,50665,50668,50668,38832,38830,38830,50657,50664,50664,50668,38830,50671,50672,50673,50673,50674,50675,50675,50676,50677,50677,50671,50673,50673,50675,50677,50678,50679,50680,50680,50681,50682,50682,50683,50684,50684,50678,50680,50680,50682,50684,36646,36645,50685,50686,50687,50688,50688,50689,50690,50690,50691,50692,50693,50694,50695,50696,36617,36616,36616,36667,36669,36669,36664,36663,36661,36660,36659,36656,36655,36654,36653,36652,36651,36650,36649,36666,36666,36665,36648,36647,36646,50685,50686,50688,50690,50697,50693,50695,50698,50696,36616,36616,36669,36663,36661,36659,36658,36656,36654,36653,36653,36651,36650,36650,36666,36648,36648,36647,50685,50686,50690,50692,50699,50697,50695,50698,36616,36663,36657,36656,36653,36653,36650,36648,36648,50685,50700,50686,50692,50701,50699,50695,50698,50698,36663,36662,36657,36653,36648,36648,50700,50686,50686,50701,50699,50699,50698,36662,36658,36657,36648,36648,50686,50699,50699,36662,36661,36658,36648,50699,50699,36661,36658,48916,37539,37538,37537,37536,37841,37535,37534,40169,40168,40167,40166,40166,40165,40164,40163,40162,48747,48747,48918,48937,48917,48916,37538,37537,37841,37535,37535,40169,40168,40164,40163,48747,48747,48937,48917,48917,37538,37537,37537,37535,40168,40166,40164,48747,48747,48917,37537,37537,40168,40166,40166,48747,37537,50702,50703,50704,50704,50705,50706,50706,50707,50708,50708,50709,50702,50702,50704,50706,50706,50708,50702,50710,50711,50712,50712,50713,50714,50714,50715,50710,50710,50712,50714,50716,50717,50718,50718,50719,50720,50720,50721,50722,50723,50724,50725,50726,50727,50728,50729,50730,50731,50732,50733,50734,50735,50736,50737,50737,50738,50739,50740,50741,50742,50742,50743,50744,50744,50745,50746,50746,50747,50748,50748,50749,50750,50750,50751,50752,50752,50753,50754,50754,50755,50756,50756,50757,50758,50759,50760,50761,50762,50763,50764,50765,50766,50767,50767,50768,50769,50770,50771,50772,50772,50773,50774,50775,50776,50777,50778,50779,50780,50780,50716,50718,50718,50720,50722,50726,50728,50781,50729,50731,50782,50732,50734,50783,50735,50737,50739,50739,50740,50742,50742,50744,50746,50746,50748,50750,50750,50752,50754,50754,50756,50758,50762,50764,50784,50765,50767,50769,50770,50772,50774,50785,50775,50777,50778,50780,50718,50718,50722,50786,50725,50726,50781,50729,50782,50732,50787,50735,50739,50739,50742,50746,50746,50750,50754,50754,50758,50759,50761,50762,50784,50765,50769,50788,50788,50770,50774,50785,50777,50778,50778,50718,50786,50725,50781,50789,50729,50732,50783,50783,50787,50739,50746,50754,50790,50746,50790,50739,50754,50759,50761,50784,50765,50788,50788,50774,50785,50785,50778,50786,50723,50725,50789,50791,50729,50783,50792,50739,50790,50792,50790,50754,50739,50792,50783,50754,50761,50784,50784,50788,50785,50785,50786,50723,50723,50789,50791,50793,50783,50792,50793,50792,50754,50783,50793,50791,50784,50785,50794,50784,50794,50754,50785,50723,50791,50785,50791,50793,50793,50754,50794,50793,50794,50785,50795,50796,50797,50798,50799,50800,50801,50802,50803,50804,50805,50806,50806,50807,50808,50809,50810,50811,50812,50813,50814,50814,50815,50816,50817,50818,50819,50820,50821,50822,50822,50823,50824,50824,50825,50826,50826,50827,50828,50829,50830,50831,50832,50833,50834,50834,50835,50836,50837,50838,50839,50839,50840,50841,50841,50842,50843,50843,50844,50845,50846,50847,50848,50849,50850,50851,50851,50852,50853,50853,50854,50855,50856,50857,50858,50858,50859,50860,50860,50861,50862,50863,50864,50865,50866,50867,50868,50868,50869,50870,50871,50872,50873,50874,50875,50876,50877,50878,50879,50880,50881,50882,50882,50883,50884,50885,50886,50887,50887,50888,50889,50890,50891,50892,50892,50893,50894,50894,50895,50896,50897,50898,50899,50900,50901,50902,50902,50903,50904,50905,50906,50907,50907,50908,50909,50909,50910,50911,50912,50913,50914,50914,50915,50916,50917,50918,50919,50919,50920,50921,50921,50922,50923,50923,50924,50925,50925,50926,50927,50927,50928,50929,50929,50930,50931,50932,50933,50934,50935,50936,50937,50938,50939,50940,50941,50942,50943,50944,50945,50946,50946,50947,50948,50948,50949,50950,50951,50952,50953,50954,50955,50956,50956,50957,50958,50958,50959,50960,50961,50962,50963,50964,50965,50966,50966,50967,50968,50968,50969,50970,50971,50795,50797,50798,50800,50801,50801,50803,50804,50804,50806,50808,50812,50814,50816,50817,50819,50820,50820,50822,50824,50824,50826,50828,50829,50831,50972,50832,50834,50836,50839,50841,50843,50843,50845,50973,50846,50848,50974,50849,50851,50853,50853,50855,50856,50856,50858,50860,50860,50862,50975,50976,50866,50868,50868,50870,50871,50874,50876,50977,50877,50879,50978,50882,50884,50885,50885,50887,50889,50890,50892,50894,50894,50896,50979,50897,50899,50900,50900,50902,50904,50905,50907,50909,50912,50914,50916,50917,50919,50921,50921,50923,50925,50927,50929,50931,50938,50940,50980,50946,50948,50950,50981,50951,50953,50954,50956,50958,50960,50961,50963,50964,50966,50968,50968,50970,50982,50971,50797,50798,50798,50801,50804,50804,50808,50809,50812,50816,50983,50817,50820,50824,50824,50828,50984,50829,50972,50832,50832,50836,50837,50837,50839,50843,50846,50974,50985,50849,50853,50856,50856,50860,50975,50976,50868,50871,50873,50874,50977,50986,50877,50978,50880,50882,50885,50885,50889,50987,50890,50894,50979,50900,50904,50988,50989,50905,50909,50911,50912,50916,50990,50917,50921,50921,50925,50927,50927,50931,50932,50938,50980,50941,50944,50946,50950,50991,50981,50953,50954,50958,50960,50960,50963,50992,50993,50964,50968,50968,50982,50994,50995,50971,50798,50798,50804,50809,50811,50812,50983,50817,50824,50984,50829,50832,50837,50837,50843,50973,50996,50849,50856,50856,50975,50997,50998,50976,50871,50880,50885,50987,50987,50890,50979,50900,50988,50989,50989,50909,50911,50911,50916,50999,50990,50921,50927,51000,50938,50941,50944,50950,51001,50991,50953,50954,50954,50960,50992,50993,50968,50994,50995,50798,50809,50811,50983,51002,51003,50817,50984,50984,50829,50837,50837,50973,50846,50996,50856,50997,50865,50998,50871,50978,50880,50987,50987,50979,50897,50989,50911,50999,51004,50990,50927,51000,50941,50943,51005,50944,51001,50991,50954,50992,51006,50993,50994,51007,50995,50809,51008,51003,50984,50984,50837,50846,51009,50996,50997,50863,50865,50871,50986,50978,50987,50987,50897,50900,50900,50989,50999,50937,51000,50943,51005,51001,51010,51010,50991,50992,51011,51006,50994,51012,51007,50809,51013,51008,50984,50984,50846,50985,51009,50997,51014,51015,50863,50871,50986,50987,50900,50900,50999,51016,51010,50992,51017,51011,50994,51012,51012,50809,50811,51013,50984,50985,50985,51009,51014,51015,50871,50873,50900,51016,51018,51010,51017,51019,51019,51011,51012,50811,51002,51020,50811,51020,51012,51021,51013,50985,50985,51014,51022,51015,50873,50977,50900,51018,51004,51019,51012,51023,51019,51023,51010,51002,51021,51024,51024,51012,51020,51024,51020,51002,50985,51022,51025,50985,51025,51021,51026,51015,50977,50986,50900,51004,51027,51010,51023,51027,51023,51012,51010,51027,51005,51022,51026,51028,51028,51021,51025,51028,51025,51022,51029,50986,51004,51021,51005,51027,51027,51012,51024,51027,51024,51021,51029,51004,50927,50943,51005,51021,51030,51029,50927,50937,50943,51021,50977,51030,50927,50937,51021,51031,50937,51031,50935,50977,50927,50932,51032,50935,51031,51032,51031,51021,50935,51032,51033,50977,50932,50934,51028,51033,51032,51028,51032,51021,51033,51028,51026,51026,50977,50934,51034,51033,51026,51026,50934,51035,51036,51034,51026,51026,51035,51037,51037,51036,51026,51038,51039,51040,51041,51042,51043,51043,51044,51045,51045,51046,51047,51048,51049,51050,51050,51051,51052,51052,51053,51054,51055,51056,51057,51058,51059,51060,51060,51061,51062,51063,51064,51065,51066,51067,51068,51068,51069,51070,51071,51072,51073,51074,51075,51076,51077,51078,51079,51079,51080,51081,51082,51083,51084,51085,51086,51087,51088,51089,51090,51090,51091,51092,51038,51040,51093,51041,51043,51045,51048,51050,51052,51094,51055,51057,51058,51060,51062,51063,51065,51066,51066,51068,51070,51070,51071,51073,51074,51076,51095,51095,51077,51079,51082,51084,51085,51085,51087,51088,51088,51090,51092,51096,51038,51093,51041,51045,51047,51047,51048,51052,51094,51057,51097,51098,51058,51062,51063,51066,51070,51070,51073,51099,51100,51074,51095,51101,51082,51085,51085,51088,51092,51096,51093,51041,51047,51052,51054,51094,51097,51102,51098,51062,51103,51063,51070,51099,51100,51095,51079,51101,51085,51092,51096,51041,51047,51047,51054,51104,51104,51094,51102,51102,51098,51103,51103,51063,51099,51100,51079,51081,51081,51101,51092,51092,51096,51047,51104,51102,51103,51103,51099,51105,51106,51100,51081,51081,51092,51047,51103,51105,51107,51106,51081,51047,51103,51107,51106,51106,51047,51104,51104,51103,51106,51108,51109,51110,51111,51112,51113,51113,51114,51115,51115,51116,51117,51118,51119,51120,51121,51122,51123,51124,51125,51126,51126,51127,51128,51128,51129,51130,51131,51132,51133,51133,51134,51135,51136,51137,51138,51138,51139,51140,51140,51141,51142,51142,51143,51144,51145,51146,51147,51147,51148,51149,51108,51110,51111,51111,51113,51115,51121,51123,51150,51124,51126,51128,51131,51133,51135,51136,51138,51140,51140,51142,51144,51151,51145,51147,51108,51111,51115,51120,51121,51150,51124,51128,51130,51131,51135,51152,51153,51136,51140,51140,51144,51151,51151,51147,51149,51149,51108,51115,51120,51150,51124,51124,51130,51131,51131,51152,51153,51153,51140,51151,51151,51149,51115,51120,51124,51131,51131,51153,51151,51151,51115,51117,51118,51120,51131,51151,51117,51154,51154,51118,51131,51131,51151,51154,51155,51156,51157,51157,51158,51159,51159,51160,51161,51161,51162,51163,51164,51165,51166,51167,51168,51169,51170,51171,51172,51172,51173,51174,51174,51175,51176,51176,51177,51178,51178,51179,51180,51181,51182,51183,51184,51185,51186,51186,51187,51188,51188,51189,51190,51190,51191,51192,51193,51194,51195,51195,51155,51157,51157,51159,51161,51167,51169,51196,51170,51172,51174,51174,51176,51178,51178,51180,51197,51181,51183,51198,51184,51186,51188,51188,51190,51192,51193,51195,51157,51157,51161,51163,51196,51170,51174,51174,51178,51197,51199,51181,51198,51200,51184,51188,51188,51192,51201,51193,51157,51163,51196,51174,51197,51199,51198,51202,51200,51188,51201,51201,51193,51163,51167,51196,51197,51199,51202,51203,51204,51200,51201,51201,51163,51164,51166,51167,51197,51203,51204,51201,51201,51164,51166,51166,51197,51199,51199,51203,51201,51201,51166,51199,51205,51206,51207,51208,51209,51210,51210,51211,51212,51213,51214,51215,51216,51217,51218,51219,51220,51221,51222,51223,51224,51225,51226,51227,51228,51229,51230,51230,51231,51232,51232,51233,51234,51234,51235,51236,51237,51238,51239,51239,51240,51241,51241,51242,51243,51205,51207,51208,51208,51210,51212,51244,51213,51215,51216,51218,51219,51219,51221,51222,51222,51224,51245,51225,51227,51246,51228,51230,51232,51232,51234,51236,51237,51239,51241,51241,51243,51247,51205,51208,51212,51244,51215,51248,51216,51219,51222,51222,51245,51249,51225,51246,51228,51228,51232,51236,51237,51241,51247,51250,51205,51212,51244,51248,51251,51252,51216,51222,51249,51225,51228,51228,51236,51253,51237,51247,51250,51250,51212,51244,51244,51251,51254,51252,51222,51249,51249,51228,51253,51253,51237,51250,51250,51244,51254,51255,51252,51249,51249,51253,51250,51250,51254,51255,51255,51249,51250,51256,51257,51258,51259,51260,51261,51261,51262,51263,51263,51264,51265,51266,51267,51268,51268,51269,51270,51270,51271,51272,51273,51274,51275,51275,51276,51277,51278,51279,51280,51280,51281,51282,51283,51284,51285,51285,51286,51287,51288,51289,51290,51291,51292,51293,51294,51295,51296,51296,51297,51298,51298,51299,51300,51301,51302,51256,51256,51258,51303,51303,51259,51261,51261,51263,51265,51268,51270,51272,51304,51273,51275,51275,51277,51278,51278,51280,51282,51283,51285,51287,51305,51288,51290,51291,51293,51306,51294,51296,51298,51301,51256,51303,51303,51261,51265,51266,51268,51272,51304,51275,51278,51278,51282,51283,51283,51287,51305,51305,51290,51307,51294,51298,51300,51300,51301,51303,51303,51265,51266,51272,51304,51278,51278,51283,51305,51305,51307,51291,51306,51294,51300,51300,51303,51266,51272,51278,51305,51291,51306,51300,51300,51266,51272,51272,51305,51291,51291,51300,51272,51308,51309,51310,51310,51311,51312,51312,51313,51314,51315,51316,51317,51317,51318,51319,51320,51321,51322,51322,51323,51324,51325,51326,51327,51327,51328,51329,51330,51331,51332,51332,51333,51334,51335,51336,51337,51337,51338,51339,51340,51341,51342,51343,51344,51345,51346,51347,51348,51349,51350,51351,51351,51352,51353,51308,51310,51312,51312,51314,51354,51315,51317,51319,51320,51322,51324,51325,51327,51329,51329,51330,51332,51332,51334,51355,51355,51335,51337,51340,51342,51356,51343,51345,51357,51346,51348,51349,51351,51353,51358,51358,51308,51312,51312,51354,51315,51320,51324,51359,51359,51325,51329,51329,51332,51355,51355,51337,51339,51339,51340,51356,51360,51343,51357,51357,51346,51349,51349,51351,51358,51358,51312,51315,51320,51359,51329,51329,51355,51339,51339,51356,51360,51360,51357,51349,51349,51358,51315,51320,51329,51339,51339,51360,51349,51349,51315,51319,51361,51320,51339,51339,51349,51319,51319,51361,51339,51362,51363,51364,51365,51366,51367,51367,51368,51369,51370,51371,51372,51373,51374,51375,51375,51376,51377,51378,51379,51380,51380,51381,51382,51383,51384,51385,51386,51387,51388,51388,51389,51390,51390,51391,51392,51393,51394,51395,51396,51397,51398,51398,51399,51400,51400,51401,51402,51403,51404,51405,51405,51406,51407,51407,51408,51409,51409,51410,51411,51412,51413,51414,51414,51415,51416,51416,51417,51418,51418,51419,51420,51421,51422,51423,51424,51425,51426,51426,51427,51428,51428,51429,51430,51431,51432,51433,51433,51434,51435,51435,51436,51437,51438,51439,51440,51441,51442,51443,51443,51444,51445,51446,51447,51448,51448,51449,51450,51450,51451,51452,51452,51453,51454,51454,51455,51456,51457,51458,51459,51459,51460,51461,51461,51462,51463,51463,51464,51465,51465,51466,51467,51467,51468,51469,51470,51471,51472,51473,51474,51475,51475,51476,51477,51478,51479,51480,51480,51481,51482,51482,51483,51484,51485,51486,51487,51487,51488,51489,51489,51490,51491,51491,51492,51493,51494,51495,51496,51497,51498,51499,51500,51501,51502,51502,51503,51504,51505,51506,51507,51362,51364,51365,51365,51367,51369,51370,51372,51508,51373,51375,51377,51378,51380,51382,51383,51385,51509,51386,51388,51390,51390,51392,51393,51393,51395,51510,51396,51398,51400,51400,51402,51511,51403,51405,51407,51407,51409,51411,51512,51412,51414,51414,51416,51418,51418,51420,51421,51424,51426,51428,51431,51433,51435,51435,51437,51513,51514,51438,51440,51515,51441,51443,51443,51445,51446,51446,51448,51450,51450,51452,51454,51457,51459,51461,51461,51463,51465,51465,51467,51469,51470,51472,51516,51478,51480,51482,51485,51487,51489,51489,51491,51493,51494,51496,51497,51497,51499,51517,51500,51502,51504,51518,51505,51507,51362,51365,51369,51519,51370,51508,51520,51373,51377,51378,51382,51521,51386,51390,51393,51393,51510,51522,51396,51400,51511,51523,51403,51407,51407,51411,51512,51512,51414,51418,51424,51428,51430,51524,51431,51435,51515,51443,51446,51446,51450,51454,51525,51457,51461,51461,51465,51469,51526,51470,51516,51477,51478,51482,51485,51489,51493,51527,51494,51497,51497,51517,51528,51500,51504,51518,51518,51507,51362,51362,51369,51529,51519,51508,51520,51520,51377,51530,51531,51378,51521,51386,51393,51522,51522,51396,51511,51523,51407,51512,51512,51418,51421,51532,51424,51430,51430,51524,51435,51533,51515,51446,51446,51454,51456,51525,51461,51469,51526,51516,51534,51475,51477,51482,51484,51485,51493,51527,51497,51528,51500,51518,51362,51362,51529,51519,51519,51520,51530,51531,51521,51535,51386,51522,51511,51511,51523,51512,51512,51421,51423,51430,51435,51513,51536,51533,51446,51446,51456,51537,51538,51525,51469,51473,51475,51482,51484,51493,51539,51528,51500,51362,51519,51530,51531,51531,51535,51540,51512,51423,51541,51532,51430,51513,51536,51446,51537,51537,51538,51469,51473,51482,51484,51484,51539,51527,51528,51362,51519,51519,51531,51540,51511,51512,51541,51532,51513,51542,51543,51536,51537,51537,51469,51544,51473,51484,51527,51527,51528,51519,51519,51540,51383,51511,51541,51545,51532,51542,51546,51547,51543,51537,51537,51544,51548,51549,51473,51527,51519,51383,51550,51519,51550,51527,51386,51511,51545,51547,51537,51548,51534,51549,51527,51383,51509,51551,51551,51527,51550,51551,51550,51383,51509,51386,51545,51552,51547,51548,51534,51527,51551,51534,51551,51509,51509,51545,51532,51440,51552,51548,51526,51534,51509,51509,51532,51546,51440,51548,51526,51509,51546,51553,51514,51440,51526,51509,51553,51514,51514,51526,51509,51554,51555,51556,51556,51557,51558,51559,51560,51561,51561,51562,51563,51564,51565,51566,51567,51568,51569,51569,51570,51571,51572,51573,51574,51575,51576,51577,51577,51578,51579,51579,51580,51581,51581,51582,51583,51583,51554,51556,51559,51561,51563,51564,51566,51584,51567,51569,51571,51571,51572,51574,51577,51579,51581,51581,51583,51556,51585,51559,51563,51564,51584,51567,51567,51571,51574,51577,51581,51556,51585,51563,51564,51564,51567,51574,51575,51577,51556,51558,51585,51564,51564,51574,51575,51575,51556,51558,51558,51564,51575,51586,51587,51588,51588,51589,51590,51591,51592,51593,51593,51586,51588,51588,51590,51591,51591,51593,51588,51594,51595,51596,51596,51597,51598,51598,51599,51600,51600,51594,51596,51596,51598,51600,51601,51602,51603,51603,51604,51605,51605,51606,51601,51601,51603,51605,51607,51608,51609,51609,51610,51611,51611,51612,51607,51607,51609,51611,51613,51614,51615,51615,51616,51617,51617,51618,51619,51619,51620,51621,51621,51622,51623,51623,51624,51625,51625,51626,51613,51613,51615,51617,51617,51619,51621,51621,51623,51625,51625,51613,51617,51617,51621,51625,51627,51628,51629,51629,51630,51631,51631,51632,51627,51627,51629,51631,51633,51634,51635,51635,51636,51637,51637,51638,51639,51639,51633,51635,51635,51637,51639,51640,51641,51642,51642,51643,51644,51644,51645,51646,51647,51648,51649,51650,51651,51652,51652,51653,51654,51654,51655,51656,51656,51657,51658,51658,51659,51660,51640,51642,51644,51644,51646,51647,51647,51649,51650,51650,51652,51654,51654,51656,51658,51658,51660,51661,51640,51644,51647,51647,51650,51654,51654,51658,51661,51640,51647,51654,51654,51661,51640,51662,51663,51664,51665,51666,51667,51668,51669,51670,51670,51671,51672,51672,51673,51674,51674,51662,51664,51665,51667,51668,51668,51670,51672,51672,51674,51664,51664,51665,51668,51668,51672,51664,51675,51676,51677,51677,51678,51679,51679,51680,51681,51681,51682,51683,51683,51684,51685,51685,51686,51687,51687,51675,51677,51677,51679,51681,51681,51683,51685,51685,51687,51677,51677,51681,51685,51688,51689,51690,51691,51692,51693,51693,51694,51695,51696,51697,51698,51698,51699,51700,51700,51701,51702,51702,51703,51704,51704,51705,51706,51706,51707,51708,51708,51709,51710,51711,51688,51690,51691,51693,51695,51695,51696,51698,51700,51702,51704,51704,51706,51708,51710,51711,51690,51690,51691,51695,51695,51698,51700,51700,51704,51708,51710,51690,51695,51695,51700,51708,51708,51710,51695,51712,51713,51714,51714,51715,51716,51717,51718,51719,51719,51720,51721,51721,51722,51723,51723,51724,51725,51725,51726,51727,51727,51712,51714,51714,51716,51717,51717,51719,51721,51725,51727,51714,51717,51721,51723,51723,51725,51714,51714,51717,51723,51728,51729,51730,51731,51732,51733,51733,51734,51735,51735,51736,51737,51738,51739,51740,51740,51728,51730,51731,51733,51735,51735,51737,51738,51738,51740,51730,51730,51731,51735,51735,51738,51730,51741,51742,51743,51744,51745,51746,51746,51747,51748,51748,51749,51750,51741,51743,51744,51744,51746,51748,51748,51750,51741,51741,51744,51748,51751,51752,51753,51754,51755,51756,51756,51757,51758,51758,51759,51760,51760,51761,51762,51763,51764,51765,51765,51766,51767,51767,51751,51753,51756,51758,51760,51760,51762,51763,51763,51765,51767,51767,51753,51754,51754,51756,51760,51760,51763,51767,51767,51754,51760,51768,51769,51770,51770,51771,51772,51772,51773,51774,51774,51768,51770,51770,51772,51774,51775,51776,51777,51777,51778,51779,51779,51780,51781,51782,51783,51784,51784,51785,51786,51787,51775,51777,51777,51779,51781,51781,51782,51784,51784,51786,51787,51787,51777,51781,51781,51784,51787,51788,51789,51790,51791,51792,51793,51793,51794,51795,51795,51796,51797,51797,51798,51799,51799,51800,51788,51788,51790,51791,51791,51793,51795,51795,51797,51799,51799,51788,51791,51791,51795,51799,51801,51802,51803,51803,51804,51805,51805,51806,51807,51807,51808,51809,51809,51801,51803,51803,51805,51807,51807,51809,51803,51810,51811,51812,51812,51813,51814,51814,51815,51816,51816,51817,51818,51818,51819,51820,51820,51810,51812,51812,51814,51816,51818,51820,51812,51812,51816,51818,51821,51822,51823,51823,51824,51825,51825,51826,51827,51827,51821,51823,51823,51825,51827,51828,51829,51830,51831,51832,51833,51834,51835,51836,51836,51837,51838,51838,51839,51840,51841,51842,51843,51843,51844,51845,51845,51846,51847,51848,51849,51850,51850,51851,51852,51853,51828,51830,51830,51831,51833,51836,51838,51840,51845,51847,51854,51854,51848,51850,51850,51852,51853,51853,51830,51833,51834,51836,51840,51843,51845,51854,51854,51850,51853,51853,51833,51834,51834,51840,51855,51841,51843,51854,51853,51834,51855,51841,51854,51853,51853,51855,51841,51856,51857,51858,51858,51859,51860,51861,51862,51863,51863,51864,51865,51866,51867,51868,51868,51869,51870,51871,51872,51856,51856,51858,51860,51861,51863,51865,51866,51868,51870,51870,51871,51856,51856,51860,51861,51861,51865,51866,51866,51870,51856,51856,51861,51866,51873,51874,51875,51875,51876,51877,51877,51878,51873,51873,51875,51877,51879,51880,51881,51881,51882,51883,51884,51885,51886,51887,51888,51889,51889,51890,51891,51891,51892,51893,51894,51879,51881,51881,51883,51884,51887,51889,51891,51895,51894,51881,51881,51884,51886,51886,51887,51891,51893,51895,51881,51886,51891,51893,51893,51881,51886,51896,51897,51898,51898,51899,51900,51900,51901,51896,51896,51898,51900,51902,51903,51904,51904,51905,51906,51906,51907,51902,51902,51904,51906,51908,51909,51910,51911,51912,51913,51913,51914,51915,51915,51916,51908,51908,51910,51911,51911,51913,51915,51915,51908,51911,51917,51918,51919,51919,51920,51921,51922,51917,51919,51919,51921,51922,51923,51924,51925,51925,51926,51927,51927,51928,51929,51929,51930,51923,51923,51925,51927,51927,51929,51923,51931,51932,51933,51933,51934,51935,51935,51936,51937,51937,51938,51931,51931,51933,51935,51935,51937,51931,51939,51940,51941,51941,51942,51943,51943,51944,51945,51945,51939,51941,51941,51943,51945,51946,51947,51948,51949,51950,51951,51952,51953,51954,51954,51946,51948,51948,51949,51951,51951,51952,51954,51954,51948,51951,51955,51956,51957,51957,51958,51959,51959,51955,51957,51960,51961,51962,51962,51963,51964,51964,51965,51960,51960,51962,51964,51966,51967,51968,51968,51969,51970,51970,51971,51966,51966,51968,51970,51972,51973,51974,51974,51975,51976,51976,51977,51978,51978,51979,51972,51972,51974,51976,51976,51978,51972,51980,51981,51982,51982,51983,51984,51984,51985,51980,51980,51982,51984,51986,51987,51988,51988,51989,51990,51990,51991,51992,51992,51993,51994,51994,51986,51988,51990,51992,51994,51994,51988,51990,51995,51996,51997,51997,51998,51999,51999,52000,52001,52001,52002,52003,52004,52005,52006,52006,52007,52008,52009,52010,52011,52011,52012,52013,52014,52015,52016,52016,52017,52018,52019,52020,52021,52021,52022,52023,52024,52025,52026,52026,52027,52028,52028,52029,52030,52031,52032,52033,52033,52034,52035,52036,52037,52038,52039,52040,52041,52042,52043,52044,52044,52045,52046,52046,52047,52048,51995,51997,51999,51999,52001,52003,52004,52006,52008,52049,52009,52011,52014,52016,52018,52019,52021,52023,52024,52026,52028,52031,52033,52035,52036,52038,52039,52039,52041,52050,52042,52044,52046,51995,51999,52003,52003,52004,52008,52049,52011,52013,52013,52014,52018,52019,52023,52024,52024,52028,52030,52030,52031,52035,52036,52039,52050,52051,52042,52046,52052,51995,52003,52003,52008,52049,52049,52013,52018,52019,52024,52030,52030,52035,52036,52036,52050,52053,52053,52051,52046,52003,52049,52054,52003,52054,52052,52049,52018,52019,52030,52036,52055,52030,52055,52019,52036,52053,52046,52056,52052,52054,52056,52054,52049,52052,52056,52057,52049,52019,52055,52055,52036,52058,52055,52058,52049,52036,52046,52048,52036,52057,52056,52056,52049,52058,52056,52058,52036,52036,52048,52057,52059,52060,52061,52061,52062,52063,52063,52064,52059,52059,52061,52063,52065,52066,52067,52067,52068,52069,52069,52070,52071,52071,52065,52067,52067,52069,52071,52072,52073,52074,52074,52075,52076,52077,52078,52079,52079,52080,52081,52081,52082,52083,52084,52085,52086,52086,52087,52072,52077,52079,52081,52081,52083,52088,52086,52072,52074,52076,52077,52081,52084,52086,52074,52074,52076,52081,52088,52084,52074,52074,52081,52088,52089,52090,52091,52091,52092,52093,52093,52094,52095,52096,52097,52098,52098,52099,52089,52089,52091,52093,52093,52095,52096,52096,52098,52089,52089,52093,52096,52100,52101,52102,52102,52103,52104,52104,52105,52106,52106,52100,52102,52102,52104,52106,52107,52108,52109,52109,52110,52111,52111,52112,52113,52113,52114,52115,52116,52117,52107,52107,52109,52111,52111,52113,52115,52116,52107,52111,52111,52115,52116,52118,52119,52120,52120,52121,52122,52122,52123,52124,52124,52125,52126,52127,52128,52129,52129,52118,52120,52120,52122,52124,52124,52126,52127,52127,52129,52120,52120,52124,52127,52130,52131,52132,52132,52133,52134,52134,52135,52130,52130,52132,52134,52136,52137,52138,52138,52139,52140,52140,52141,52142,52142,52143,52144,52144,52145,52146,52146,52147,52148,52148,52136,52138,52138,52140,52142,52142,52144,52146,52146,52148,52138,52138,52142,52146,52149,52150,52151,52151,52152,52153,52153,52154,52155,52156,52157,52158,52158,52159,52160,52160,52161,52149,52149,52151,52153,52155,52156,52158,52158,52160,52149,52149,52153,52155,52155,52158,52149,52162,52163,52164,52164,52165,52166,52166,52167,52168,52168,52162,52164,52164,52166,52168,52169,52170,52171,52171,52172,52173,52173,52174,52175,52175,52169,52171,52171,52173,52175,52176,52177,52178,52178,52179,52180,52180,52181,52182,52182,52183,52176,52176,52178,52180,52180,52182,52176,52184,52185,52186,52186,52187,52188,52188,52189,52190,52190,52191,52184,52184,52186,52188,52188,52190,52184,52192,52193,52194,52194,52195,52196,52196,52197,52198,52198,52199,52200,52200,52192,52194,52194,52196,52198,52198,52200,52194,52201,52202,52203,52203,52204,52205,52205,52206,52201,52201,52203,52205,52207,52208,52209,52209,52210,52211,52212,52213,52214,52214,52215,52216,52216,52207,52209,52209,52211,52217,52217,52212,52214,52214,52216,52209,52209,52217,52214,52218,52219,52220,52220,52221,52222,52222,52223,52224,52225,52226,52218,52218,52220,52222,52222,52224,52225,52225,52218,52222,52227,52228,52229,52229,52230,52231,52231,52232,52227,52227,52229,52231,52233,52234,52235,52235,52236,52237,52238,52239,52233,52233,52235,52237,52237,52238,52233,52240,52241,52242,52242,52243,52244,52245,52246,52247,52247,52248,52249,52240,52242,52244,52244,52245,52247,52247,52249,52240,52240,52244,52247,52250,52251,52252,52252,52253,52254,52254,52250,52252,52255,52256,52257,52257,52258,52259,52259,52260,52255,52255,52257,52259,52261,52262,52263,52264,52265,52266,52267,52268,52269,52269,52270,52271,52272,52273,52274,52275,52276,52277,52278,52279,52280,52281,52282,52283,52283,52284,52285,52286,52287,52288,52289,52290,52291,52291,52292,52293,52293,52294,52295,52296,52297,52298,52298,52299,52300,52300,52301,52302,52302,52303,52304,52305,52306,52307,52307,52308,52309,52309,52310,52311,52311,52312,52313,52313,52314,52315,52316,52317,52318,52318,52319,52320,52320,52321,52322,52323,52324,52325,52326,52327,52328,52329,52330,52331,52331,52332,52333,52333,52334,52335,52335,52336,52337,52338,52339,52340,52341,52342,52343,52344,52345,52346,52347,52348,52349,52349,52350,52351,52352,52353,52354,52355,52356,52357,52357,52358,52359,52359,52360,52361,52362,52363,52364,52261,52263,52365,52264,52266,52267,52267,52269,52271,52272,52274,52275,52275,52277,52366,52367,52278,52280,52281,52283,52285,52289,52291,52293,52296,52298,52300,52300,52302,52304,52305,52307,52309,52309,52311,52313,52316,52318,52320,52320,52322,52323,52323,52325,52368,52326,52328,52369,52370,52329,52331,52331,52333,52335,52338,52340,52341,52341,52343,52371,52372,52344,52346,52373,52347,52349,52349,52351,52374,52352,52354,52375,52355,52357,52359,52362,52364,52376,52264,52267,52271,52271,52272,52275,52275,52366,52377,52280,52281,52285,52288,52289,52293,52378,52296,52300,52300,52304,52379,52380,52305,52309,52309,52313,52315,52316,52320,52323,52323,52368,52381,52382,52326,52369,52370,52331,52335,52338,52341,52371,52372,52346,52373,52373,52349,52374,52383,52355,52359,52362,52376,52384,52385,52264,52271,52271,52275,52377,52286,52288,52293,52386,52378,52300,52380,52309,52315,52316,52323,52381,52387,52382,52369,52370,52335,52337,52388,52338,52371,52389,52372,52373,52383,52359,52361,52362,52384,52261,52385,52271,52377,52286,52293,52295,52390,52386,52300,52379,52380,52315,52391,52316,52381,52387,52369,52370,52370,52337,52392,52388,52371,52389,52389,52373,52374,52393,52383,52361,52394,52385,52377,52395,52286,52295,52390,52300,52379,52379,52315,52391,52391,52381,52396,52370,52392,52397,52388,52389,52374,52375,52393,52361,52365,52394,52377,52395,52295,52398,52398,52390,52379,52379,52391,52396,52370,52397,52399,52388,52374,52400,52352,52375,52361,52261,52365,52377,52379,52396,52401,52387,52370,52399,52388,52400,52352,52352,52361,52402,52261,52377,52403,52379,52401,52404,52399,52405,52406,52399,52406,52387,52388,52352,52402,52261,52403,52367,52398,52379,52404,52407,52387,52406,52407,52406,52405,52387,52407,52408,52409,52388,52402,52362,52261,52367,52398,52404,52410,52405,52409,52411,52411,52408,52407,52411,52407,52405,52409,52402,52412,52362,52367,52280,52398,52410,52413,52409,52412,52414,52414,52408,52411,52414,52411,52409,52415,52362,52280,52398,52413,52416,52417,52408,52414,52417,52414,52412,52408,52417,52418,52280,52285,52419,52280,52419,52415,52395,52398,52416,52417,52415,52420,52417,52420,52418,52415,52417,52412,52285,52421,52422,52422,52415,52419,52422,52419,52285,52423,52395,52416,52421,52423,52424,52424,52415,52422,52424,52422,52421,52423,52416,52418,52423,52418,52420,52420,52415,52424,52420,52424,52423,52425,52426,52427,52427,52428,52429,52429,52430,52431,52431,52432,52433,52434,52435,52436,52437,52438,52439,52439,52440,52441,52442,52443,52444,52444,52445,52446,52447,52448,52449,52450,52451,52452,52452,52453,52454,52454,52455,52456,52457,52458,52459,52460,52461,52462,52462,52463,52464,52464,52465,52466,52466,52467,52468,52469,52470,52471,52472,52473,52474,52475,52476,52477,52478,52479,52480,52480,52481,52482,52482,52483,52484,52485,52486,52487,52487,52488,52489,52489,52490,52491,52491,52492,52493,52494,52495,52496,52496,52497,52498,52499,52500,52501,52501,52502,52503,52503,52504,52505,52506,52507,52508,52508,52509,52510,52511,52512,52513,52514,52515,52516,52517,52518,52519,52519,52520,52521,52521,52522,52523,52523,52524,52525,52526,52527,52528,52529,52530,52531,52531,52532,52533,52533,52534,52535,52425,52427,52429,52429,52431,52433,52434,52436,52536,52437,52439,52441,52442,52444,52446,52450,52452,52454,52537,52457,52459,52460,52462,52464,52464,52466,52468,52538,52469,52471,52475,52477,52539,52478,52480,52482,52482,52484,52540,52541,52485,52487,52487,52489,52491,52491,52493,52542,52494,52496,52498,52499,52501,52503,52506,52508,52510,52517,52519,52521,52521,52523,52525,52525,52526,52528,52529,52531,52533,52533,52535,52543,52425,52429,52433,52434,52536,52437,52437,52441,52442,52442,52446,52447,52544,52450,52454,52537,52459,52545,52460,52464,52468,52474,52475,52539,52546,52478,52482,52482,52540,52547,52541,52487,52491,52548,52494,52498,52549,52499,52503,52550,52506,52510,52516,52517,52521,52521,52525,52528,52551,52529,52533,52533,52543,52552,52553,52425,52433,52434,52437,52442,52442,52447,52449,52544,52454,52456,52456,52537,52545,52554,52460,52468,52555,52546,52482,52556,52541,52491,52548,52498,52557,52557,52549,52503,52550,52510,52511,52516,52521,52528,52551,52533,52552,52558,52553,52433,52559,52434,52442,52442,52449,52560,52561,52544,52456,52456,52545,52554,52554,52468,52562,52563,52555,52482,52547,52556,52491,52548,52557,52503,52550,52511,52513,52514,52516,52528,52551,52552,52558,52558,52433,52559,52559,52442,52560,52561,52456,52554,52554,52562,52538,52563,52482,52547,52547,52491,52542,52564,52548,52503,52550,52513,52514,52514,52528,52551,52551,52558,52559,52559,52560,52561,52561,52554,52538,52539,52563,52547,52547,52542,52565,52564,52503,52505,52550,52514,52551,52561,52538,52471,52539,52547,52565,52566,52564,52505,52505,52550,52551,52559,52561,52471,52539,52565,52567,52566,52505,52551,52559,52471,52568,52539,52567,52569,52570,52566,52551,52559,52568,52571,52539,52569,52572,52572,52570,52551,52551,52559,52571,52539,52572,52551,52551,52571,52573,52474,52539,52551,52551,52573,52472,52472,52474,52551,52574,52575,52576,52576,52577,52578,52579,52580,52581,52582,52583,52584,52585,52586,52587,52588,52589,52590,52590,52591,52592,52593,52594,52595,52596,52597,52598,52598,52599,52600,52601,52602,52603,52604,52605,52606,52606,52607,52608,52608,52609,52610,52611,52612,52613,52613,52614,52615,52615,52616,52617,52618,52619,52620,52620,52621,52622,52623,52624,52625,52626,52627,52628,52628,52629,52630,52631,52632,52633,52574,52576,52578,52634,52579,52581,52582,52584,52635,52636,52585,52587,52587,52588,52590,52596,52598,52600,52601,52603,52637,52604,52606,52608,52608,52610,52611,52611,52613,52615,52618,52620,52622,52623,52625,52638,52639,52626,52628,52628,52630,52631,52631,52633,52574,52574,52578,52634,52634,52581,52640,52636,52587,52590,52595,52596,52600,52641,52604,52608,52611,52615,52617,52617,52618,52622,52642,52623,52638,52639,52628,52631,52631,52574,52634,52636,52590,52592,52593,52595,52600,52641,52608,52611,52611,52617,52622,52642,52638,52643,52644,52639,52631,52631,52634,52640,52635,52636,52592,52593,52600,52645,52637,52641,52611,52646,52642,52643,52643,52644,52631,52631,52640,52647,52582,52635,52592,52593,52645,52601,52637,52611,52622,52646,52643,52631,52631,52647,52582,52582,52592,52593,52593,52601,52637,52637,52622,52648,52648,52646,52631,52631,52582,52593,52593,52637,52648,52648,52631,52593,52649,52650,52651,52651,52652,52653,52653,52654,52655,52655,52656,52657,52657,52658,52659,52660,52661,52662,52663,52664,52665,52665,52666,52667,52668,52669,52670,52670,52671,52672,52673,52674,52675,52675,52676,52677,52677,52678,52679,52680,52681,52682,52682,52683,52684,52685,52686,52687,52688,52689,52690,52690,52691,52692,52693,52694,52695,52696,52697,52698,52698,52699,52700,52701,52702,52703,52704,52705,52706,52706,52707,52708,52708,52709,52710,52711,52712,52713,52714,52715,52716,52716,52717,52718,52719,52720,52721,52722,52723,52724,52724,52725,52726,52727,52728,52729,52730,52731,52732,52733,52734,52735,52735,52736,52737,52737,52738,52739,52739,52740,52741,52741,52742,52743,52744,52745,52746,52747,52748,52749,52749,52750,52751,52751,52752,52753,52754,52755,52756,52756,52757,52758,52759,52760,52761,52762,52763,52764,52765,52766,52767,52767,52768,52769,52769,52770,52771,52771,52772,52773,52773,52774,52775,52776,52777,52778,52778,52779,52780,52781,52782,52783,52784,52785,52786,52787,52788,52789,52790,52791,52792,52792,52793,52794,52794,52795,52796,52796,52797,52798,52798,52799,52800,52801,52802,52803,52803,52804,52805,52805,52806,52807,52808,52809,52810,52811,52812,52813,52813,52814,52815,52816,52817,52818,52819,52820,52821,52822,52823,52824,52825,52826,52827,52828,52829,52830,52831,52832,52833,52833,52834,52835,52835,52836,52837,52837,52838,52839,52839,52840,52841,52842,52843,52844,52844,52845,52846,52847,52848,52849,52850,52851,52852,52852,52853,52854,52854,52855,52856,52856,52857,52858,52858,52859,52860,52861,52862,52863,52863,52864,52865,52866,52867,52868,52869,52870,52871,52872,52873,52874,52874,52875,52876,52876,52877,52878,52879,52880,52881,52881,52882,52883,52884,52885,52886,52887,52888,52889,52889,52890,52891,52891,52892,52893,52893,52894,52895,52896,52897,52898,52898,52899,52900,52901,52902,52903,52904,52905,52906,52649,52651,52653,52653,52655,52657,52660,52662,52907,52663,52665,52667,52667,52668,52670,52673,52675,52677,52677,52679,52908,52909,52680,52682,52682,52684,52910,52685,52687,52911,52688,52690,52692,52693,52695,52912,52698,52700,52913,52914,52701,52703,52915,52704,52706,52706,52708,52710,52710,52711,52713,52916,52714,52716,52716,52718,52917,52722,52724,52726,52727,52729,52918,52730,52732,52919,52733,52735,52737,52741,52743,52920,52921,52744,52746,52747,52749,52751,52751,52753,52922,52754,52756,52758,52759,52761,52762,52765,52767,52769,52769,52771,52773,52776,52778,52780,52784,52786,52923,52787,52789,52790,52790,52792,52794,52794,52796,52798,52801,52803,52805,52808,52810,52811,52811,52813,52815,52816,52818,52924,52819,52821,52925,52824,52825,52827,52828,52830,52926,52831,52833,52835,52835,52837,52839,52839,52841,52927,52842,52844,52846,52847,52849,52928,52929,52850,52852,52852,52854,52856,52856,52858,52860,52861,52863,52865,52930,52866,52868,52931,52869,52871,52872,52874,52876,52876,52878,52932,52879,52881,52883,52884,52886,52933,52887,52889,52891,52891,52893,52895,52896,52898,52900,52900,52901,52903,52934,52904,52906,52906,52649,52653,52653,52657,52659,52660,52907,52935,52663,52667,52670,52936,52673,52677,52909,52682,52910,52937,52685,52911,52688,52692,52938,52693,52912,52939,52696,52698,52913,52914,52703,52940,52915,52706,52710,52916,52716,52917,52722,52726,52727,52941,52730,52919,52733,52737,52739,52741,52920,52921,52921,52746,52942,52943,52747,52751,52751,52922,52754,52754,52758,52944,52945,52759,52762,52765,52769,52773,52775,52776,52780,52946,52784,52923,52947,52787,52790,52790,52794,52798,52948,52801,52805,52808,52811,52815,52949,52816,52924,52950,52819,52925,52822,52824,52827,52828,52926,52951,52831,52835,52839,52952,52842,52846,52847,52928,52953,52929,52852,52856,52856,52860,52954,52954,52861,52865,52930,52868,52955,52931,52871,52956,52957,52872,52876,52958,52879,52883,52959,52884,52933,52933,52887,52891,52891,52895,52896,52896,52900,52903,52960,52934,52906,52906,52653,52659,52961,52663,52670,52936,52677,52908,52962,52909,52910,52937,52911,52963,52688,52938,52964,52965,52693,52939,52966,52696,52913,52915,52710,52713,52967,52916,52917,52968,52722,52727,52941,52919,52733,52733,52739,52741,52921,52942,52943,52943,52751,52754,52754,52944,52945,52945,52762,52764,52765,52773,52775,52775,52780,52781,52946,52923,52969,52970,52947,52790,52790,52798,52800,52948,52805,52807,52808,52815,52949,52949,52924,52971,52950,52925,52822,52822,52827,52828,52831,52839,52927,52952,52846,52972,52929,52856,52954,52954,52865,52973,52974,52930,52955,52975,52957,52876,52958,52883,52959,52933,52891,52896,52896,52903,52976,52977,52960,52906,52906,52659,52978,52961,52670,52672,52979,52936,52908,52980,52962,52910,52981,52937,52963,52963,52688,52964,52965,52939,52982,52940,52915,52713,52983,52967,52917,52721,52968,52727,52941,52733,52741,52921,52943,52754,52754,52945,52764,52765,52775,52781,52970,52790,52800,52800,52948,52807,52808,52949,52971,52971,52950,52822,52822,52828,52951,52984,52831,52927,52952,52972,52985,52986,52929,52954,52954,52973,52974,52974,52955,52987,52956,52975,52876,52988,52958,52959,52959,52933,52896,52896,52976,52989,52906,52978,52990,52991,52961,52672,52992,52979,52908,52993,52980,52910,52965,52982,52994,52914,52940,52713,52721,52727,52918,52995,52941,52741,52741,52921,52754,52754,52764,52996,52997,52970,52800,52800,52807,52998,52808,52971,52822,52999,52984,52927,53000,52952,52985,52986,52954,52974,52974,52987,53001,52956,52876,52932,52988,52959,52896,52977,52906,52990,52991,52672,53002,52992,52908,52993,52993,52910,53003,52914,52713,53004,52719,52721,52918,52918,52995,52741,52741,52754,52996,53005,52997,52800,52800,52998,53006,52808,52822,52951,52999,52927,53007,53000,52985,52847,53008,52986,52974,52974,53001,52931,52956,52932,53009,53010,52988,52896,52989,52977,52990,52991,53002,52992,52992,52993,53003,53011,52914,53004,52918,52741,53012,52918,53012,52719,52741,52996,52765,53005,52800,53006,53013,52808,52951,52999,53007,53014,53015,53000,52847,53016,53008,52974,52931,52956,53009,52896,52989,53017,52896,53017,53010,52989,52990,53018,52991,52992,53003,53011,53004,52983,52741,52765,53019,53019,52719,53012,53019,53012,52741,52969,53005,53006,53013,52951,52999,52999,53014,53015,53015,52847,52953,53016,52974,52931,53020,53010,53017,53020,53017,52989,53010,53020,53009,52989,53018,53021,52935,52991,53003,53022,53011,52983,52781,52719,53019,52781,53019,52765,52946,52969,53006,53013,52999,53015,53015,52953,53023,53024,53016,52931,52989,53021,53025,53025,53009,53020,53025,53020,52989,52660,52935,53003,53026,53022,52983,53027,52719,52781,53028,52946,53006,53015,53023,53029,53015,53029,53013,53023,53024,52931,53030,53009,53025,53025,53021,53031,53025,53031,53030,53009,53030,53032,53009,53032,52931,53033,52660,53003,53026,52983,52917,53034,53027,52781,53028,53006,53035,53036,53013,53029,53036,53029,53023,53013,53036,53037,53038,52931,53032,53038,53032,53030,53039,53030,53031,53039,53031,53021,53030,53039,53038,52931,53038,53040,52931,53040,53023,53033,53003,53041,52913,53026,52917,53034,52781,52783,53028,53035,53042,53043,53038,53044,53043,53044,53033,53038,53043,53045,53040,53045,53046,53040,53046,53023,53045,53040,53038,53039,53033,53044,53039,53044,53038,53033,53039,53021,53033,53041,53047,52913,52917,53048,52913,53048,52966,53034,52783,53028,53028,53042,53037,53045,53047,53049,53049,53023,53046,53049,53046,53045,53047,53045,53043,53047,53043,53033,52917,53050,53051,53051,52966,53048,53051,53048,52917,53034,53028,53037,53049,53052,53053,53049,53053,53023,53052,53049,53047,53050,53034,53054,53054,52966,53051,53054,53051,53050,53055,53037,53036,53055,53036,53023,53037,53055,53034,53053,52981,53056,53053,53056,53023,52981,53053,53052,53055,52966,53054,53055,53054,53034,52966,53055,53023,53056,52963,53057,53056,53057,53023,52963,53056,52981,52994,52966,53023,53057,52964,53058,53057,53058,53023,52964,53057,52963,52994,53023,53059,52994,53059,52965,53058,52965,53059,53058,53059,53023,52965,53058,52964,53060,53061,53062,53063,53064,53065,53065,53066,53067,53067,53068,53060,53060,53062,53069,53069,53063,53065,53067,53060,53069,53069,53065,53067,53070,53071,53072,53072,53073,53074,53074,53075,53076,53076,53077,53078,53079,53070,53072,53072,53074,53076,53076,53078,53079,53079,53072,53076,53080,53081,53082,53083,53084,53085,53085,53086,53080,53080,53082,53083,53083,53085,53080,53087,53088,53089,53089,53090,53091,53092,53093,53094,53095,53096,53097,53097,53098,53099,53100,53101,53102,53102,53103,53104,53104,53105,53106,53106,53107,53108,53109,53110,53111,53112,53113,53114,53114,53115,53087,53087,53089,53091,53095,53097,53099,53116,53100,53102,53102,53104,53106,53106,53108,53117,53118,53109,53111,53112,53114,53087,53087,53091,53092,53119,53095,53099,53120,53116,53102,53102,53106,53117,53118,53111,53112,53087,53092,53094,53119,53099,53121,53102,53117,53118,53112,53087,53094,53094,53119,53121,53102,53118,53112,53094,53121,53120,53120,53102,53112,53112,53094,53120,53122,53123,53124,53125,53126,53127,53127,53128,53129,53129,53122,53124,53124,53125,53127,53127,53129,53124,53130,53131,53132,53133,53134,53135,53136,53137,53138,53138,53139,53140,53140,53141,53142,53143,53144,53145,53145,53146,53147,53148,53149,53150,53150,53130,53132,53135,53136,53138,53138,53140,53142,53143,53145,53147,53147,53148,53150,53150,53132,53133,53133,53135,53138,53138,53142,53143,53143,53147,53150,53150,53133,53138,53138,53143,53150,53151,53152,53153,53153,53154,53155,53155,53156,53151,53151,53153,53155,53157,53158,53159,53159,53160,53161,53161,53162,53163,53163,53157,53159,53159,53161,53163,53164,53165,53166,53166,53167,53168,53168,53169,53170,53170,53171,53164,53164,53166,53168,53168,53170,53164,53172,53173,53174,53175,53176,53177,53177,53178,53179,53179,53172,53174,53175,53177,53179,53179,53174,53175,53180,53181,53182,53183,53184,53185,53185,53186,53187,53188,53189,53190,53180,53182,53183,53183,53185,53187,53188,53190,53191,53180,53183,53187,53187,53188,53191,53192,53180,53187,53187,53191,53192,53193,53194,53195,53195,53196,53197,53198,53199,53200,53200,53201,53193,53195,53197,53202,53203,53198,53200,53200,53193,53195,53195,53202,53203,53203,53200,53195,53204,53205,53206,53206,53207,53208,53208,53209,53210,53210,53211,53212,53213,53214,53215,53215,53204,53206,53208,53210,53212,53213,53215,53206,53206,53208,53212,53212,53213,53206,38802,38801,53216,53216,53217,53218,53218,53219,38803,38803,40654,38802,38802,53216,53218,53218,38803,38802,53220,53221,53222,53222,53223,53224,53224,53225,53226,53226,53227,53228,53229,53230,53231,53231,53232,53233,53234,53235,53236,53236,53237,53238,53239,53240,53241,53241,53242,53243,53244,53245,53246,53247,53248,53249,53249,53250,53251,53251,53252,53253,53254,53255,53256,53256,53257,53258,53259,53220,53222,53224,53226,53228,53231,53233,53234,53234,53236,53238,53239,53241,53243,53243,53244,53246,53249,53251,53253,53254,53256,53258,53258,53259,53222,53222,53224,53228,53229,53231,53234,53234,53238,53239,53243,53246,53260,53249,53253,53261,53262,53254,53258,53258,53222,53228,53228,53229,53234,53239,53243,53260,53247,53249,53261,53263,53262,53258,53234,53239,53260,53247,53261,53264,53263,53258,53228,53234,53260,53265,53265,53247,53264,53266,53263,53228,53234,53265,53264,53267,53266,53228,53228,53234,53264,53268,53267,53228,53228,53264,53268,53269,53270,53271,53271,53272,53273,53273,53274,53275,53276,53277,53278,53278,53279,53280,53280,53281,53282,53283,53284,53285,53286,53287,53288,53289,53290,53291,53291,53292,53293,53293,53294,53295,53296,53297,53298,53299,53300,53301,53302,53303,53304,53305,53306,53307,53307,53308,53309,53309,53310,53311,53312,53313,53314,53315,53316,53317,53317,53318,53319,53319,53320,53321,53321,53322,53323,53323,53324,53325,53326,53327,53328,53328,53329,53330,53330,53331,53332,53332,53333,53334,53335,53336,53337,53337,53338,53339,53339,53340,53341,53342,53343,53344,53344,53345,53346,53346,53347,53348,53349,53350,53351,53352,53353,53354,53355,53269,53271,53271,53273,53275,53276,53278,53280,53283,53285,53356,53286,53288,53357,53358,53289,53291,53291,53293,53295,53359,53296,53298,53299,53301,53302,53302,53304,53360,53360,53305,53307,53307,53309,53311,53312,53314,53361,53315,53317,53319,53319,53321,53323,53323,53325,53362,53326,53328,53330,53330,53332,53334,53363,53335,53337,53337,53339,53341,53342,53344,53346,53346,53348,53364,53364,53349,53351,53351,53352,53354,53355,53271,53275,53276,53280,53282,53358,53291,53295,53299,53302,53360,53360,53307,53311,53365,53312,53361,53366,53315,53319,53319,53323,53362,53362,53326,53330,53363,53337,53341,53342,53346,53364,53364,53351,53354,53354,53355,53275,53367,53276,53282,53368,53358,53295,53299,53360,53311,53311,53365,53361,53366,53319,53362,53362,53330,53334,53363,53341,53369,53342,53364,53354,53354,53275,53370,53367,53282,53371,53372,53368,53295,53373,53299,53311,53311,53361,53366,53366,53362,53334,53363,53369,53342,53342,53354,53370,53374,53372,53295,53298,53373,53311,53366,53334,53375,53366,53375,53311,53342,53370,53376,53374,53295,53359,53359,53298,53311,53334,53363,53377,53377,53311,53375,53377,53375,53334,53342,53376,53367,53357,53374,53359,53363,53342,53367,53357,53359,53311,53363,53367,53371,53286,53357,53311,53363,53371,53283,53356,53286,53311,53363,53283,53356,53356,53311,53377,53356,53377,53363,35092,35091,53378,53378,53379,53380,53381,53382,53383,53383,53384,53385,53386,53387,53388,53389,53390,53391,53391,53392,53393,53393,53394,53395,53395,53396,53397,53397,53398,53399,53399,53400,53401,53402,53403,53404,53405,53406,53407,53407,53408,53409,53410,53411,53412,53413,53414,53415,53415,53416,53417,53418,53419,53420,53420,53421,53422,53422,53423,53424,53424,53425,53426,53427,53428,53429,53429,53430,53431,53431,53432,53433,53434,53435,53436,53437,53438,53439,53440,53441,53442,53442,53443,53444,53445,53446,53447,53448,53449,53450,53451,53452,53453,53454,53455,53456,53457,53458,53459,53459,53460,53461,53462,53463,53464,53464,53465,53466,53467,53468,53469,53469,53470,53471,53472,53473,53474,53475,53476,53477,53477,53478,53479,53480,53481,53482,53483,53484,53485,53486,53487,53488,53488,53489,53490,53490,53491,53492,53492,53493,53494,53495,53496,53497,53497,53498,53499,53499,53500,53501,53502,53503,53504,53505,53506,53507,53508,53509,53510,53510,53511,53512,53512,53513,53514,53515,53516,53517,53517,53518,53519,53519,53520,53521,53522,53523,53524,53525,53526,53527,53527,53528,53529,53529,53530,53531,53532,53533,53534,53535,53536,53537,53538,53539,53540,53540,53541,53542,53542,53543,53544,53544,53545,53546,53547,53548,53549,53549,53550,53551,53551,53552,53553,53554,53555,53556,53556,53557,53558,53559,53560,53561,53561,53562,53563,53564,53565,53566,53566,53567,53568,53569,53570,53571,53571,53572,53573,53574,53575,53576,53576,53577,53578,53578,53579,53580,53581,53582,53583,53584,53585,53586,53586,53587,53588,53588,34824,34823,34823,35126,35125,35124,35123,35122,35122,35121,35120,35120,35119,35118,35118,35117,35116,35116,35115,35114,35113,35112,35111,35111,35110,35109,35106,35105,35176,35176,35104,35103,35103,35102,35101,35100,35099,35098,35098,35097,35096,35093,35092,53378,53381,53383,53385,53589,53386,53388,53389,53391,53393,53393,53395,53397,53397,53399,53401,53402,53404,53590,53405,53407,53409,53591,53410,53412,53413,53415,53417,53418,53420,53422,53422,53424,53426,53427,53429,53431,53431,53433,53592,53434,53436,53593,53437,53439,53440,53440,53442,53444,53445,53447,53594,53451,53453,53595,53595,53454,53456,53457,53459,53461,53462,53464,53466,53467,53469,53471,53472,53474,53596,53475,53477,53479,53480,53482,53483,53483,53485,53597,53598,53486,53488,53488,53490,53492,53492,53494,53599,53495,53497,53499,53502,53504,53600,53508,53510,53512,53512,53514,53601,53515,53517,53519,53522,53524,53602,53525,53527,53529,53532,53534,53603,53538,53540,53542,53542,53544,53546,53547,53549,53551,53554,53556,53558,53559,53561,53563,53564,53566,53568,53569,53571,53573,53604,53574,53576,53576,53578,53580,53581,53583,53605,53584,53586,53588,53588,34823,35125,35125,35124,35122,35118,35116,35114,35113,35111,35109,35107,35106,35176,35103,35101,35100,35098,35096,35095,35094,35093,53378,53381,53385,53606,53589,53388,53607,53607,53389,53393,53393,53397,53401,53608,53402,53590,53609,53405,53409,53591,53412,53413,53413,53417,53610,53611,53418,53422,53612,53427,53431,53592,53434,53593,53613,53437,53440,53440,53444,53614,53614,53445,53594,53456,53457,53461,53462,53466,53615,53616,53467,53471,53471,53472,53596,53596,53475,53479,53480,53483,53597,53617,53598,53488,53488,53492,53599,53495,53499,53501,53501,53502,53600,53618,53508,53512,53619,53515,53519,53620,53522,53602,53525,53529,53531,53621,53532,53603,53538,53542,53546,53547,53551,53553,53559,53563,53622,53623,53564,53568,53568,53569,53573,53604,53576,53580,53581,53605,53584,53584,53588,35125,35118,35114,35113,35113,35109,35108,35107,35176,35103,35103,35100,35098,35098,35095,35094,35094,53378,53380,53624,53589,53607,53607,53393,53401,53609,53409,53591,53591,53413,53610,53611,53422,53426,53612,53431,53592,53440,53614,53594,53595,53456,53461,53462,53615,53616,53616,53471,53596,53617,53488,53599,53625,53495,53501,53618,53512,53601,53619,53519,53521,53602,53525,53531,53538,53546,53547,53547,53553,53626,53559,53622,53623,53623,53568,53573,53604,53580,53627,53581,53584,35125,35108,35107,35103,35098,35094,53380,53606,53624,53607,53607,53401,53608,53609,53591,53610,53610,53611,53426,53426,53612,53592,53440,53594,53448,53451,53595,53461,53462,53616,53596,53597,53617,53599,53625,53501,53600,53507,53618,53601,53628,53619,53521,53620,53602,53531,53629,53538,53547,53547,53626,53554,53559,53623,53573,53630,53604,53627,53631,53581,35125,35108,35103,35098,35098,53380,53381,53606,53607,53608,53632,53609,53610,53426,53592,53593,53451,53461,53462,53462,53596,53479,53480,53597,53599,53599,53625,53600,53505,53507,53601,53628,53521,53633,53620,53531,53621,53629,53547,53554,53559,53573,53634,53630,53627,53631,53631,35125,35122,35098,53381,53635,35098,53635,35108,53381,53606,53608,53632,53610,53426,53426,53593,53613,53462,53479,53636,53462,53636,53451,53479,53480,53599,53599,53600,53637,53505,53601,53638,53628,53633,53620,53620,53621,53603,53639,53629,53554,53634,53640,53641,53634,53641,53559,53631,35122,53642,53631,53642,53630,53643,35108,53635,53643,53635,53381,35108,53643,35113,53381,53608,53590,53590,53632,53426,53644,53451,53636,53644,53636,53479,53451,53644,53450,53479,53599,53637,53505,53638,53628,53639,53554,53558,53640,53630,53645,53645,53559,53641,53645,53641,53640,53642,35120,53646,53642,53646,53630,35120,53642,35122,53647,35113,53643,53643,53381,53648,53643,53648,53647,35113,53647,53649,35113,53649,35118,53479,53637,53650,53650,53450,53644,53650,53644,53479,53505,53628,53620,53537,53639,53558,53651,53630,53646,53646,35120,53652,53646,53652,53651,53630,53651,53653,53653,53559,53645,53653,53645,53630,53649,53654,53655,53649,53655,35118,53654,53649,53647,53656,53647,53648,53656,53648,53381,53647,53656,53654,53657,35118,53655,53657,53655,53654,35118,53657,35120,53650,53505,53658,53650,53658,53450,53505,53650,53637,53537,53558,53659,53537,53659,53535,53653,53660,53661,53653,53661,53559,53660,53653,53651,53662,53651,53652,53662,53652,35120,53651,53662,53660,53663,53559,53661,53663,53661,53660,53559,53663,53558,53654,53590,53664,53654,53664,53665,53657,53665,53666,53657,53666,35120,53665,53657,53654,53590,53654,53656,53590,53656,53381,53658,53620,53667,53658,53667,53450,53620,53658,53505,53668,53558,53663,53668,53663,53660,53669,53660,53662,53669,53662,35120,53660,53669,53668,53558,53668,53670,53670,53535,53659,53670,53659,53558,53671,53665,53672,53672,53426,53673,53672,53673,53671,53666,53671,53674,53666,53674,35120,53671,53666,53665,53590,53426,53672,53672,53665,53664,53672,53664,53590,53675,53450,53667,53675,53667,53620,53450,53675,53448,53670,53676,53677,53670,53677,53535,53676,53670,53668,53678,53668,53669,53678,53669,35120,53668,53678,53676,53679,53535,53677,53679,53677,53676,53535,53679,53603,53426,53613,53680,53426,53680,53681,53671,53681,53682,53682,35120,53674,53682,53674,53671,53681,53671,53673,53681,53673,53426,53603,53448,53675,53603,53675,53620,53679,53613,53683,53679,53683,53603,53613,53679,53676,53681,53676,53678,53678,35120,53682,53678,53682,53681,53676,53681,53680,53676,53680,53613,53448,53603,53684,53448,53684,53440,53683,53440,53684,53683,53684,53603,53440,53683,53613,53685,53686,53687,53687,53688,53689,53689,53690,53691,53691,53692,53693,53693,53694,53695,53695,53685,53687,53687,53689,53691,53691,53693,53695,53695,53687,53691,53696,53697,53698,53698,53699,53700,53700,53701,53702,53702,53703,53704,53704,53696,53698,53698,53700,53702,53702,53704,53698,53705,53706,53707,53707,53708,53709,53709,53710,53705,53705,53707,53709,53711,53712,53713,53713,53714,53715,53715,53716,53717,53717,53711,53713,53713,53715,53717,53718,53719,53720,53720,53721,53722,53722,53723,53724,53724,53725,53726,53726,53718,53720,53720,53722,53724,53724,53726,53720,53727,53728,53729,53729,53730,53731,53731,53732,53733,53733,53734,53735,53735,53736,53737,53737,53738,53739,53739,53740,53741,53742,53727,53729,53729,53731,53733,53733,53735,53737,53737,53739,53741,53742,53729,53733,53737,53741,53743,53742,53733,53737,53737,53743,53742,53744,53745,53746,53746,53747,53748,53748,53749,53750,53750,53751,53752,53752,53744,53746,53746,53748,53750,53750,53752,53746,53753,53754,53755,53755,53756,53757,53757,53758,53759,53760,53761,53762,53753,53755,53757,53757,53759,53763,53760,53762,53753,53757,53763,53764,53764,53760,53753,53753,53757,53764,53765,53766,53767,53767,53768,53769,53769,53770,53771,53771,53772,53773,53774,53765,53767,53769,53771,53773,53773,53774,53767,53767,53769,53773,53775,53776,53777,53777,53778,53779,53779,53780,53781,53781,53775,53777,53777,53779,53781,53782,53783,53784,53784,53785,53786,53786,53787,53788,53788,53789,53782,53782,53784,53786,53786,53788,53782,53790,53791,53792,53793,53794,53795,53796,53797,53798,53798,53799,53800,53801,53802,53803,53803,53804,53805,53806,53807,53808,53809,53810,53811,53811,53812,53813,53813,53814,53815,53790,53792,53793,53793,53795,53796,53796,53798,53800,53803,53805,53806,53806,53808,53809,53811,53813,53815,53790,53793,53796,53796,53800,53801,53803,53806,53809,53809,53811,53815,53815,53790,53796,53796,53801,53803,53803,53809,53815,53815,53796,53803,53816,53817,53818,53818,53819,53820,53820,53821,53822,53822,53823,53824,53824,53825,53826,53826,53827,53828,53828,53816,53818,53818,53820,53822,53822,53824,53826,53826,53828,53818,53818,53822,53826,53829,53830,53831,53831,53832,53833,53833,53834,53835,53836,53837,53838,53838,53839,53840,53841,53842,53843,53843,53844,53845,53845,53846,53847,53847,53848,53829,53829,53831,53833,53835,53836,53838,53840,53841,53843,53843,53845,53847,53829,53833,53835,53835,53838,53840,53840,53843,53847,53847,53829,53835,53835,53840,53847,53849,53850,53851,53851,53852,53853,53854,53855,53856,53856,53857,53858,53858,53859,53860,53860,53861,53862,53862,53863,53864,53864,53865,53866,53866,53867,53849,53849,53851,53853,53854,53856,53858,53858,53860,53862,53862,53864,53866,53866,53849,53853,53853,53854,53858,53858,53862,53866,53866,53853,53858,53868,53869,53870,53870,53871,53872,53873,53874,53875,53875,53876,53877,53877,53878,53879,53879,53880,53881,53868,53870,53872,53873,53875,53877,53877,53879,53881,53881,53868,53872,53873,53877,53881,53881,53872,53873,53882,53883,53884,53885,53886,53887,53888,53889,53882,53882,53884,53885,53885,53887,53888,53888,53882,53885,53890,53891,53892,53892,53893,53894,53894,53895,53896,53890,53892,53894,53894,53896,53890,53897,53898,53899,53899,53900,53901,53901,53902,53897,53897,53899,53901,53903,53904,53905,53905,53906,53907,53907,53908,53903,53903,53905,53907,53909,53910,53911,53911,53912,53913,53913,53909,53911,53914,53915,53916,53916,53917,53918,53918,53919,53920,53920,53921,53922,53923,53924,53925,53926,53927,53928,53928,53929,53930,53931,53932,53933,53934,53935,53936,53936,53937,53938,53938,53939,53940,53940,53941,53942,53943,53944,53945,53945,53946,53947,53947,53948,53949,53949,53950,53951,53952,53953,53914,53914,53916,53918,53918,53920,53922,53923,53925,53954,53926,53928,53930,53931,53933,53934,53934,53936,53938,53940,53942,53955,53943,53945,53947,53947,53949,53951,53952,53914,53918,53954,53926,53930,53930,53931,53934,53934,53938,53940,53955,53943,53947,53947,53951,53956,53956,53952,53918,53923,53954,53930,53930,53934,53940,53955,53947,53956,53956,53918,53922,53923,53930,53940,53955,53956,53922,53922,53923,53940,53940,53955,53922,53957,53958,53959,53959,53960,53961,53961,53962,53963,53963,53964,53965,53966,53967,53957,53957,53959,53961,53961,53963,53965,53968,53966,53957,53961,53965,53968,53968,53957,53961,53969,53970,53971,53972,53973,53974,53975,53976,53977,53978,53979,53980,53980,53981,53982,53983,53984,53985,53986,53987,53988,53989,53990,53991,53991,53992,53993,53994,53995,53996,53997,53998,53999,54000,54001,54002,54003,54004,54005,54006,54007,54008,54008,54009,54010,54011,54012,54013,54014,54015,54016,54016,54017,54018,54018,54019,54020,54021,54022,54023,54024,54025,54026,54026,54027,54028,54029,54030,54031,54031,54032,54033,54033,54034,54035,54036,54037,54038,54039,54040,54041,54041,54042,54043,54044,54045,54046,54046,54047,54048,54049,54050,54051,54052,54053,54054,54055,54056,54057,54057,54058,54059,54059,54060,54061,54062,54063,54064,54065,54066,54067,54067,54068,54069,54070,54071,54072,54072,54073,54074,54075,54076,54077,54077,54078,54079,54080,54081,54082,54082,54083,54084,54085,54086,54087,54088,54089,54090,54091,54092,54093,54093,54094,54095,54096,54097,54098,54099,54100,54101,54101,54102,54103,54103,54104,54105,54105,54106,54107,54108,54109,54110,54110,54111,54112,54113,54114,54115,54115,54116,54117,54118,54119,54120,54120,54121,54122,54123,54124,54125,54126,54127,54128,54129,54130,54131,54132,54133,54134,54134,54135,54136,54136,54137,54138,54139,54140,54141,54142,54143,54144,54145,54146,54147,54148,54149,54150,54150,54151,54152,54153,54154,54155,54155,54156,54157,54158,54159,54160,54161,54162,54163,54163,54164,54165,54166,54167,54168,54168,54169,54170,54171,54172,54173,54173,54174,54175,54175,54176,54177,54177,54178,54179,54180,54181,54182,54182,54183,54184,54185,54186,54187,54187,54188,54189,54190,54191,54192,54192,54193,54194,54194,54195,54196,54197,54198,54199,54199,54200,54201,54201,54202,54203,54204,54205,54206,54206,54207,54208,54208,54209,54210,54211,54212,54213,54214,54215,54216,54217,54218,54219,54220,54221,54222,54223,54224,54225,54225,54226,54227,54228,54229,54230,54230,54231,54232,54233,54234,54235,54235,54236,54237,54238,54239,54240,54240,54241,54242,54242,54243,54244,54245,54246,54247,54247,54248,54249,54250,54251,54252,54252,54253,54254,54254,54255,54256,54257,54258,54259,54259,54260,54261,54262,54263,54264,54265,54266,54267,54268,54269,54270,54270,54271,54272,54273,54274,54275,54276,54277,54278,54278,54279,54280,54281,54282,54283,54283,54284,54285,54286,54287,54288,54288,54289,54290,54291,54292,54293,54294,54295,54296,54297,54298,54299,54299,54300,54301,54301,54302,54303,54304,54305,54306,54306,54307,54308,54309,54310,54311,54311,54312,54313,54314,54315,54316,54316,54317,54318,54319,54320,54321,54321,54322,54323,54324,54325,54326,54327,54328,54329,54330,54331,54332,54332,54333,54334,54335,54336,54337,54338,54339,54340,54340,54341,54342,54343,54344,54345,54345,54346,54347,54348,54349,54350,54350,54351,54352,54352,54353,54354,54354,54355,54356,54357,54358,54359,54360,54361,54362,54362,54363,54364,54365,54366,54367,54368,54369,54370,54370,54371,54372,54373,54374,54375,54376,54377,54378,54378,54379,54380,54381,54382,54383,54384,54385,54386,54387,54388,54389,54389,54390,54391,54392,54393,54394,54394,54395,54396,54396,54397,54398,54398,54399,54400,54400,54401,54402,54403,54404,54405,54406,54407,54408,54408,54409,54410,54410,54411,54412,54413,54414,54415,54415,54416,54417,54418,54419,54420,54421,54422,54423,54424,54425,54426,54427,54428,54429,54429,54430,54431,54432,54433,54434,54435,54436,54437,54437,54438,54439,54439,54440,54441,54442,54443,54444,54444,54445,54446,54446,54447,54448,54449,54450,54451,54452,54453,54454,54455,54456,54457,54457,54458,54459,54459,54460,54461,54461,54462,54463,54464,54465,54466,54467,54468,54469,54469,54470,54471,54472,54473,54474,54475,54476,54477,54477,54478,54479,54480,54481,54482,54482,54483,54484,54484,54485,54486,54487,54488,54489,54490,54491,54492,54493,54494,54495,54496,54497,54498,54499,54500,54501,54501,54502,54503,54503,54504,54505,54506,54507,54508,54509,54510,54511,54512,54513,54514,54514,54515,54516,54516,54517,54518,54519,54520,54521,54522,54523,54524,54525,54526,54527,54528,54529,54530,54531,54532,54533,54533,54534,54535,54536,54537,54538,54539,54540,54541,54541,54542,54543,54544,54545,54546,54546,54547,54548,54549,54550,54551,54551,54552,54553,54554,54555,54556,54556,54557,54558,54559,54560,54561,54561,54562,54563,54563,54564,54565,54565,54566,54567,54568,54569,54570,54570,54571,54572,54573,54574,54575,54576,54577,54578,54579,54580,54581,54581,54582,54583,54583,54584,54585,54586,54587,54588,54588,54589,54590,54590,54591,54592,54592,54593,54594,54595,54596,54597,54597,54598,54599,54599,54600,54601,54602,54603,54604,54605,54606,54607,54607,54608,54609,54610,54611,54612,54612,54613,54614,54615,54616,54617,54618,54619,54620,54621,54622,54623,54623,54624,54625,54626,54627,54628,54628,54629,54630,54630,54631,54632,54632,54633,54634,54635,54636,54637,54637,54638,54639,54640,54641,54642,54643,54644,54645,54645,54646,54647,54647,54648,54649,54649,54650,54651,54652,54653,54654,54654,54655,54656,54657,54658,54659,54660,54661,54662,54662,54663,54664,54665,54666,54667,54667,54668,54669,54669,54670,54671,54672,54673,54674,54675,54676,54677,54677,54678,54679,54679,54680,54681,54681,54682,54683,54683,54684,54685,54686,54687,54688,54688,54689,54690,54691,54692,54693,54693,54694,54695,54696,54697,54698,54699,54700,54701,54702,54703,54704,54705,54706,54707,54708,54709,54710,54710,54711,54712,54713,54714,54715,54715,54716,54717,54717,54718,54719,54719,54720,54721,54722,54723,54724,54725,54726,54727,54728,54729,54730,54731,54732,54733,54734,54735,54736,54737,54738,54739,54740,54741,54742,54742,54743,54744,54744,54745,54746,54747,54748,54749,54750,54751,54752,54753,54754,54755,54755,54756,54757,54758,54759,54760,54761,54762,54763,54763,54764,54765,54766,54767,54768,54768,54769,54770,54771,54772,54773,54774,54775,54776,54776,54777,54778,54779,54780,54781,54781,54782,54783,54784,54785,54786,54786,54787,54788,54788,54789,54790,54791,54792,54793,54793,54794,54795,54795,54796,54797,54798,54799,54800,54801,54802,54803,54803,54804,54805,54806,54807,54808,54809,54810,54811,54812,54813,54814,54814,54815,54816,54816,54817,54818,54819,54820,54821,54821,54822,54823,54823,54824,54825,54826,54827,54828,54829,54830,54831,54832,54833,54834,54834,54835,54836,54837,54838,54839,54840,54841,54842,54843,54844,54845,54845,54846,54847,54847,54848,54849,54850,54851,54852,54853,54854,54855,54856,54857,54858,54858,54859,54860,54861,54862,54863,54863,54864,54865,54865,54866,54867,54867,54868,54869,54870,54871,54872,54873,54874,54875,54876,54877,54878,54878,54879,54880,54881,54882,54883,54883,54884,54885,54886,53969,53971,53972,53974,53975,53975,53977,54887,54887,53978,53980,53980,53982,53983,53983,53985,53986,53986,53988,54888,54888,53989,53991,53991,53993,53994,54000,54002,54003,54005,54006,54008,54008,54010,54889,54889,54011,54013,54014,54016,54018,54021,54023,54890,54891,54024,54026,54029,54031,54033,54892,54036,54038,54039,54041,54043,54044,54046,54048,54049,54051,54052,54057,54059,54061,54064,54065,54067,54067,54069,54893,54070,54072,54074,54075,54077,54079,54080,54082,54084,54085,54087,54894,54088,54090,54091,54096,54098,54895,54101,54103,54105,54105,54107,54896,54108,54110,54112,54113,54115,54117,54118,54120,54122,54123,54125,54897,54126,54128,54129,54132,54134,54136,54136,54138,54898,54899,54139,54141,54142,54144,54900,54145,54147,54901,54148,54150,54152,54153,54155,54157,54158,54160,54161,54161,54163,54165,54166,54168,54170,54173,54175,54177,54180,54182,54184,54902,54185,54187,54190,54192,54194,54197,54199,54201,54201,54203,54903,54204,54206,54208,54211,54213,54904,54905,54214,54216,54217,54219,54220,54220,54222,54223,54223,54225,54227,54228,54230,54232,54906,54233,54235,54235,54237,54907,54238,54240,54242,54245,54247,54249,54250,54252,54254,54254,54256,54257,54259,54261,54262,54262,54264,54265,54268,54270,54272,54273,54275,54276,54276,54278,54280,54281,54283,54285,54286,54288,54290,54290,54291,54293,54294,54296,54908,54908,54297,54299,54299,54301,54303,54304,54306,54308,54309,54311,54313,54314,54316,54318,54319,54321,54323,54909,54324,54326,54330,54332,54334,54342,54343,54345,54350,54352,54354,54354,54356,54357,54357,54359,54910,54362,54364,54365,54365,54367,54911,54370,54372,54912,54912,54373,54375,54376,54378,54380,54381,54383,54384,54387,54389,54391,54396,54398,54400,54400,54402,54913,54403,54405,54406,54406,54408,54410,54410,54412,54413,54413,54415,54417,54421,54423,54914,54424,54426,54427,54427,54429,54431,54432,54434,54915,54435,54437,54439,54442,54444,54446,54449,54451,54916,54452,54454,54917,54455,54457,54459,54459,54461,54463,54464,54466,54918,54467,54469,54471,54471,54472,54474,54475,54477,54479,54480,54482,54484,54484,54486,54919,54919,54487,54489,54490,54492,54920,54495,54496,54498,54921,54499,54501,54501,54503,54505,54506,54508,54509,54509,54511,54922,54512,54514,54516,54516,54518,54923,54519,54521,54924,54522,54524,54925,54525,54527,54926,54531,54533,54535,54927,54536,54538,54928,54544,54546,54546,54548,54929,54549,54551,54553,54554,54556,54558,54559,54561,54563,54567,54568,54570,54573,54575,54930,54931,54576,54578,54579,54581,54583,54583,54585,54932,54586,54588,54590,54590,54592,54594,54595,54597,54599,54933,54602,54604,54934,54605,54607,54607,54609,54935,54935,54610,54612,54618,54620,54621,54621,54623,54625,54626,54628,54630,54632,54634,54936,54635,54637,54639,54640,54642,54937,54937,54643,54645,54645,54647,54649,54938,54652,54654,54654,54656,54939,54940,54660,54662,54662,54664,54941,54665,54667,54669,54669,54671,54942,54942,54672,54674,54943,54675,54677,54677,54679,54681,54686,54688,54690,54691,54693,54695,54696,54698,54699,54702,54704,54944,54945,54705,54707,54708,54710,54712,54713,54715,54717,54721,54722,54724,54946,54725,54727,54727,54728,54730,54730,54731,54733,54734,54736,54947,54737,54739,54948,54740,54742,54744,54744,54746,54747,54747,54749,54750,54750,54752,54949,54753,54755,54757,54950,54758,54760,54761,54763,54765,54768,54770,54951,54771,54773,54952,54774,54776,54778,54779,54781,54783,54786,54788,54790,54791,54793,54795,54795,54797,54953,54800,54801,54803,54803,54805,54954,54955,54806,54808,54956,54812,54814,54814,54816,54818,54819,54821,54823,54823,54825,54826,54826,54828,54957,54832,54834,54836,54837,54839,54958,54959,54840,54842,54843,54845,54847,54847,54849,54850,54960,54853,54855,54858,54860,54861,54861,54863,54865,54867,54869,54870,54873,54875,54961,54876,54878,54880,54881,54883,54885,54962,54886,53971,53972,53975,54887,54887,53980,53983,53983,53986,54888,54888,53991,53994,54000,54003,54005,54005,54008,54889,54889,54013,54014,54028,54029,54033,54892,54038,54039,54039,54043,54963,54964,54044,54048,54049,54052,54054,54055,54057,54061,54064,54067,54893,54893,54070,54074,54074,54075,54079,54965,54080,54084,54966,54085,54894,54894,54088,54091,54967,54096,54895,54896,54108,54112,54113,54117,54968,54969,54118,54122,54122,54123,54897,54126,54129,54131,54131,54132,54136,54136,54898,54899,54899,54141,54970,54142,54900,54145,54145,54901,54148,54971,54153,54157,54972,54158,54161,54973,54166,54170,54173,54177,54179,54179,54180,54184,54902,54187,54189,54974,54190,54194,54975,54197,54201,54201,54903,54204,54204,54208,54210,54211,54904,54976,54977,54905,54216,54217,54220,54223,54223,54227,54978,54228,54232,54906,54906,54235,54907,54245,54249,54979,54250,54254,54257,54257,54259,54262,54262,54265,54267,54268,54272,54980,54980,54273,54276,54281,54285,54981,54982,54286,54290,54290,54293,54983,54908,54299,54303,54308,54309,54313,54314,54318,54984,54984,54319,54323,54985,54330,54334,54342,54345,54347,54348,54350,54354,54354,54357,54910,54360,54362,54365,54368,54370,54912,54912,54375,54986,54376,54380,54381,54381,54384,54386,54386,54387,54391,54394,54396,54400,54400,54913,54987,54406,54410,54413,54988,54421,54914,54424,54427,54431,54431,54432,54915,54435,54439,54441,54989,54442,54446,54449,54916,54990,54990,54452,54917,54455,54459,54463,54991,54464,54918,54992,54467,54471,54471,54474,54993,54994,54475,54479,54479,54480,54484,54919,54489,54995,54493,54495,54498,54921,54501,54505,54506,54509,54922,54516,54923,54996,54516,54996,54512,54519,54924,54997,54998,54522,54925,54525,54926,54999,55000,54531,54535,54927,54538,55001,54928,54546,54929,55002,54549,54553,54553,54554,54558,54567,54570,54572,54572,54573,54930,54931,54578,55003,54579,54583,54932,55004,54586,54590,54590,54594,54595,54595,54599,54601,54934,54607,54935,54935,54612,54614,54617,54618,54621,54621,54625,55005,54626,54630,54632,54632,54936,54635,54635,54639,54640,54937,54645,54649,54938,54654,54939,55006,54940,54662,54662,54941,55007,54665,54669,54942,54942,54674,55008,54943,54677,54681,55009,54686,54690,55010,54691,54695,54695,54696,54699,54702,54944,55011,54707,54708,54712,55012,54713,54717,54721,54724,55013,54946,54727,54730,54730,54733,54734,54734,54947,55014,55014,54737,54948,54740,54744,54747,54747,54750,54949,54753,54757,54950,54950,54760,54761,54761,54765,55015,54766,54768,54951,55016,54771,54952,55017,54774,54778,55018,54779,54783,54791,54795,54953,54800,54803,54954,54955,54808,54809,54811,54956,54814,54814,54818,55019,55020,54819,54823,54826,54957,54829,54831,54832,54836,54837,54958,55021,54959,54842,55022,55022,54843,54847,54847,54850,54852,54960,54855,54856,54858,54861,54865,54865,54867,54870,54876,54880,54881,54881,54885,55023,54962,53971,55024,55025,53972,54887,54887,53983,54888,54888,53994,53996,54000,54005,54889,54028,54033,54035,54892,54039,54963,54964,54048,55026,55027,54055,54061,54062,54064,54893,54074,54079,55028,54965,54084,55029,54966,54894,54091,54967,54895,54099,54896,54112,54113,54113,54968,54969,54969,54122,54897,54136,54899,54970,54970,54142,54145,54145,54148,54152,54971,54157,54972,54972,54161,54165,54973,54170,54171,54171,54173,54179,54179,54184,54902,54902,54189,54974,54974,54194,54196,54975,54201,54204,54204,54210,54211,54977,54216,54217,54217,54223,54978,54906,54907,54238,54244,54245,54979,54250,54257,54262,55030,54268,54980,54980,54276,54280,54281,54981,54982,54982,54290,54983,54294,54908,54303,54308,54313,54314,54314,54984,54323,54985,54334,54335,54340,54342,54347,54348,54354,54910,54360,54365,54911,54912,54986,55031,54912,55031,54368,55032,54376,54381,54386,54391,55033,54386,55033,54381,54394,54400,54987,54413,54417,55034,54413,55034,54406,54988,54914,55035,55036,54424,54431,54431,54915,55037,54435,54441,54989,54989,54446,54448,55038,54449,54990,54455,54463,55039,54455,55039,55040,54991,54918,55041,55042,54992,54471,54471,54993,55043,54994,54479,54484,54919,54995,55044,54493,54498,54921,54921,54505,55045,55046,54512,54996,55046,54996,54923,54512,55046,54922,54998,54925,54525,55000,54535,55047,54928,54929,55002,55002,54553,54558,54565,54567,54572,54572,54930,55048,54931,55003,54579,54579,54932,55049,55004,54590,54595,54595,54601,54933,55050,54934,54935,54617,54621,55005,55051,54626,54632,54632,54635,54640,54937,54649,54651,54651,54938,54939,55006,54662,55007,55052,54665,54942,54942,55008,55053,54943,54681,54683,55009,54690,55054,55010,54695,54699,55055,54702,55011,54707,54712,55056,55012,54717,54719,55013,54946,54730,54730,54734,55014,55014,54948,54740,54740,54747,54949,54950,54761,55015,54766,54951,55016,55016,54952,55017,55017,54778,55018,55018,54783,54784,54790,54791,54953,54798,54800,54954,54811,54814,55019,55020,54823,54826,54831,54836,55057,54837,55021,55058,55022,54847,54852,54960,54856,54858,54858,54865,54870,54876,54881,55023,55023,54962,55024,55025,54887,54888,54888,53996,53997,54889,54014,55059,54889,55059,54000,54028,54035,55060,55060,54892,54963,54964,55026,55061,55027,54061,55062,55063,54062,54893,54893,54074,55028,54966,54091,54093,54896,54113,54969,54969,54897,55064,54970,54145,54152,54971,54972,54165,54973,54171,54179,54974,54196,54975,54975,54204,54211,54976,54977,54217,54217,54978,55065,54228,54906,54238,54244,54979,54250,54250,54262,54267,55030,54980,54280,54281,54982,54983,54294,54303,55066,54304,54308,54314,54314,54323,54909,54329,54985,54335,54338,54340,54347,54347,54348,54910,54360,54911,55067,54986,55068,55069,55069,54368,55031,55069,55031,54986,55070,54381,55033,55070,55033,54391,54381,55070,55032,54392,54394,54987,55071,54406,55034,55071,55034,54417,54406,55071,54403,55072,54988,55035,55036,54431,55037,54435,54989,54448,55038,54990,54917,55042,54471,55043,54994,54484,55073,54994,55073,55043,54919,55044,55074,54921,55045,55075,54921,55075,54493,54998,54525,54999,54530,55000,55047,54928,55002,54558,54563,54565,54572,55049,55004,54595,55076,55050,54935,54615,54617,55005,54632,54640,55077,54632,55077,55051,54640,54937,54651,55078,55006,55007,55079,55052,54942,55053,54943,54683,55009,55054,55080,55081,55010,54699,54707,55056,55012,54721,55013,54730,54740,54949,55082,54740,55082,55014,54950,55015,55083,54950,55083,54753,54766,55016,55017,55017,55018,54784,54790,54953,54798,54798,54954,54955,54811,55019,55084,55020,54826,54829,54831,55057,54837,55022,54852,55085,54858,54870,55086,54858,55086,54960,54876,55023,55024,55087,55025,54888,54888,53997,53999,55088,54000,55059,55088,55059,54014,54000,55088,53999,55060,54963,55089,55060,55089,54028,54964,55061,55090,55027,55062,55063,54893,55028,55091,55092,54966,54093,54896,54969,55064,54136,54970,54152,54152,54971,54165,55093,54973,54179,54974,54975,54211,54976,54217,55065,54228,54238,54242,54244,54250,54267,55030,54280,55094,55095,54281,54983,54983,54294,55066,54304,54314,54909,54329,54335,54337,54338,54347,54910,55096,54368,55069,55096,55069,55068,54368,55096,55097,55098,55032,55070,55098,55070,54391,55032,55098,55068,54392,54987,54403,55072,55035,55099,55099,55036,55037,55100,54435,54448,55101,55042,55043,54484,54919,55102,55102,55043,55073,55102,55073,54484,55103,54493,55075,55103,55075,55045,54493,55103,54920,54530,55047,55104,55105,54928,54558,54563,54572,55048,54579,55049,54595,55076,54935,54614,54615,55005,55106,55107,55051,55077,55107,55077,54640,55051,55107,55108,54640,54651,54939,55109,55078,55007,55079,54942,55053,55053,54683,54685,55081,54699,54701,54707,55012,54719,55110,55014,55082,55110,55082,54949,55014,55110,54730,55015,54766,55111,55111,54753,55083,55111,55083,55015,55017,54784,55112,55017,55112,54766,54790,54798,54955,54811,55084,55020,55020,54829,54831,54831,54837,55058,55022,55085,54960,54870,54872,55113,55113,54960,55086,55113,55086,54870,54876,55024,55087,55087,54888,53999,54964,55090,54049,55063,54893,55091,55092,54093,54095,54105,54896,55064,54152,54165,55114,54152,55114,54136,54165,55093,54179,54974,54211,54976,54976,55065,54228,54228,54242,54244,54244,54267,55115,55030,55094,55095,55095,54983,55066,54304,54909,54326,54329,54337,55116,55116,54338,54910,55117,55068,55098,55098,54391,55118,55098,55118,55117,55068,55117,55119,55119,55097,55096,55119,55096,55068,55120,54392,54403,55072,55099,55037,55121,55100,54448,55041,55101,55043,54919,55074,55122,55122,55043,55102,55122,55102,54919,55123,54920,55103,55123,55103,55045,54920,55123,54490,54530,55104,54927,54543,55105,54558,54579,54595,54933,54604,55076,54614,54615,55106,55108,54640,54939,55124,55124,55108,55107,55124,55107,54640,55125,55109,55007,55079,55053,54685,55080,55081,54701,54945,54707,54719,54949,54753,55126,55126,54730,55110,55126,55110,54949,55127,54766,55112,55112,54784,55128,55112,55128,55127,55111,55127,55129,55111,55129,54753,55127,55111,54766,54786,54790,54955,55020,54831,55130,55020,55130,54811,55131,54960,55113,55131,55113,54872,54960,55131,55022,54876,55087,53999,54963,54964,54049,55063,55091,55132,55029,55092,54095,54105,55064,54126,54165,54179,55133,55133,54136,55114,55133,55114,54165,54976,54228,54244,54244,55115,55030,55030,55095,55066,54304,54326,54327,55116,54910,54360,55119,55134,55135,55119,55135,55097,55134,55119,55117,55136,55117,55118,55136,55118,54391,55117,55136,55134,55137,55097,55135,55137,55135,55134,55097,55137,55138,55139,54403,55071,55139,55071,54417,54403,55139,55120,55072,55037,55140,55140,55121,54448,55041,55043,55122,55122,55074,55141,55122,55141,55041,55142,54490,55123,55142,55123,55045,54490,55142,55074,54541,54543,54558,54931,54579,54933,54933,54604,54614,55143,55108,55124,55124,54939,55144,55124,55144,55143,55108,55143,55145,55108,55145,54615,55125,55007,55146,55079,54685,55009,55080,54701,55055,54945,54719,54721,55129,55147,55148,55129,55148,54753,55147,55129,55127,55149,55127,55128,55128,54784,55150,55128,55150,55149,55127,55149,55151,55127,55151,55147,55152,54753,55148,55152,55148,55147,54753,55152,55153,55126,55153,55154,55126,55154,54730,55153,55126,54753,54786,54955,54809,55155,54811,55130,55155,55130,54831,54811,55155,54809,55156,55022,55131,55131,54872,55157,55131,55157,55156,55022,55156,55158,55022,55158,54959,54961,54876,53999,55063,55132,55159,54965,55029,54095,54101,54105,54126,55160,54136,55133,55160,55133,54179,54136,55160,54131,54244,55030,55161,54244,55161,54976,55030,55066,55162,54304,54327,54329,54360,55067,55163,54360,55163,55116,54391,55120,55164,55164,55165,55166,55164,55166,54391,55134,55165,55167,55167,55138,55137,55167,55137,55134,55165,55134,55136,55136,54391,55166,55136,55166,55165,54417,54418,55168,55168,55120,55139,55168,55139,54417,55072,55140,54448,55169,55041,55141,55169,55141,55074,55041,55169,54991,55045,55170,55171,55171,55074,55142,55171,55142,55045,54541,54558,55172,54933,54614,55173,54933,55173,54931,55145,55174,55175,55145,55175,54615,55174,55145,55143,55176,55143,55144,55176,55144,54939,55143,55176,55174,55177,54615,55175,55177,55175,55174,54615,55177,55178,55179,55125,55146,55079,55009,55080,55055,55011,55180,55055,55180,55080,54721,54730,55181,54721,55181,54945,54784,54786,55182,54784,55182,55183,55184,55183,55185,55185,55186,55187,55185,55187,55184,55183,55184,55188,55183,55188,54784,55147,55186,55189,55189,55190,55191,55189,55191,55147,55153,55190,55192,55192,54730,55154,55192,55154,55153,55190,55153,55152,55152,55147,55191,55152,55191,55190,55186,55147,55151,55151,55149,55193,55151,55193,55186,55184,55149,55150,55150,54784,55188,55150,55188,55184,55149,55184,55187,55187,55186,55193,55187,55193,55149,54831,55058,55194,55194,54809,55155,55194,55155,54831,55195,55156,55196,55196,55197,55198,55196,55198,55195,55158,55195,55199,55158,55199,54959,55195,55158,55156,54872,55197,55196,55196,55156,55157,55196,55157,54872,54961,53999,55200,54961,55200,54873,55063,55159,55201,55063,55201,55027,54965,54095,54967,54099,54101,54126,54179,54902,55202,55202,54131,55160,55202,55160,54179,55030,55162,55203,55203,54976,55161,55203,55161,55030,54304,54329,55116,55067,55204,55205,55205,55116,55163,55205,55163,55067,55168,55206,55207,55168,55207,55120,55206,55168,54418,55206,55208,55209,55209,55120,55207,55209,55207,55206,55165,55208,55210,55210,55138,55167,55210,55167,55165,55208,55165,55164,55164,55120,55209,55164,55209,55208,55211,55072,54448,55212,54991,55169,55212,55169,55074,54991,55212,55213,55170,54506,55214,55214,55074,55171,55214,55171,55170,54539,54541,55172,55215,54931,55173,55215,55173,54614,54931,55215,55216,55177,55217,55218,55177,55218,55178,55217,55177,55174,55219,55174,55176,55219,55176,54939,55174,55219,55217,55220,55178,55218,55220,55218,55217,55178,55220,55221,55179,55146,55079,55222,55080,55180,55222,55180,55011,55080,55222,55079,55190,55223,55224,55224,54730,55192,55224,55192,55190,55223,55190,55189,55223,55189,55186,55225,55186,55185,55225,55185,55183,55226,55183,55182,55226,55182,54786,55183,55226,55225,55186,55225,55227,55186,55227,55223,55228,54730,55224,55224,55223,55229,55224,55229,55228,54730,55228,55230,55230,54945,55181,55230,55181,54730,55058,55231,55232,55058,55232,55233,55194,55233,55234,55194,55234,54809,55233,55194,55058,55197,55235,55236,55236,55237,55238,55236,55238,55197,55195,55237,55239,55239,54959,55199,55239,55199,55195,55237,55195,55198,55198,55197,55238,55198,55238,55237,54014,54873,55200,55200,53999,55088,55200,55088,54014,55201,54965,55240,55201,55240,55027,54965,55201,55159,54099,54126,54131,54902,54974,55241,55241,54131,55202,55241,55202,54902,55242,54976,55203,55203,55162,55243,55203,55243,55242,54976,55242,55244,54976,55244,54974,55210,55245,55246,55210,55246,55138,55245,55210,55208,55247,55208,55206,55247,55206,54418,55208,55247,55245,55248,55138,55246,55248,55246,55245,55138,55248,55249,55211,54448,55038,55250,55213,55212,55250,55212,55074,55213,55250,54463,54506,54922,55251,54506,55251,55252,55214,55252,55253,55214,55253,55074,55252,55214,54506,55001,54539,55172,55215,55254,55255,55215,55255,55216,55254,55215,54614,54939,54657,55256,55256,55257,55258,55256,55258,54939,55217,55257,55259,55259,55221,55220,55259,55220,55217,55257,55217,55219,55219,54939,55258,55219,55258,55257,55260,55079,55222,55222,55011,55261,55222,55261,55260,55079,55260,55262,55079,55262,55179,55263,55228,55264,55263,55264,55265,55228,55263,55266,55230,55266,55267,55230,55267,54945,55266,55230,55228,55229,55265,55264,55229,55264,55228,55265,55229,55223,55227,55268,55269,55227,55269,55223,55268,55227,55225,55270,55225,55226,55270,55226,54786,55225,55270,55268,55271,55223,55269,55271,55269,55268,55223,55271,55265,55267,55272,55273,55267,55273,54945,55272,55267,55266,55274,55266,55263,55274,55263,55265,55266,55274,55272,55275,54945,55273,55275,55273,55272,54945,55275,55011,55231,55276,55277,55231,55277,55278,55233,55278,55279,55279,54809,55234,55279,55234,55233,55278,55233,55232,55278,55232,55231,55235,54873,55280,55280,55281,55282,55280,55282,55235,55237,55281,55283,55283,54959,55239,55283,55239,55237,55281,55237,55236,55236,55235,55282,55236,55282,55281,54014,54018,55284,54014,55284,54873,54965,54967,55285,55285,55027,55240,55285,55240,54965,54099,54131,55286,54099,55286,54967,55287,55242,55288,55287,55288,54304,55242,55287,55289,55244,55289,55290,55244,55290,54974,55289,55244,55242,55243,54304,55288,55243,55288,55242,54304,55243,55162,55248,55291,55292,55248,55292,55249,55291,55248,55245,55293,55245,55247,55247,54418,55294,55247,55294,55293,55245,55293,55295,55245,55295,55291,55296,55249,55292,55292,55291,55297,55292,55297,55296,55249,55296,55298,55249,55298,55204,54420,55211,55038,55299,54463,55250,55250,55074,55300,55250,55300,55299,54463,55299,55301,55301,55040,55039,55301,55039,54463,54927,55001,55172,55254,55221,55302,55302,55216,55255,55302,55255,55254,54657,54659,55303,55303,55304,55305,55303,55305,54657,55257,55304,55306,55306,55221,55259,55306,55259,55257,55304,55257,55256,55256,54657,55305,55256,55305,55304,55262,55307,55308,55262,55308,55179,55307,55262,55260,55309,55260,55261,55309,55261,55011,55260,55309,55307,55310,55179,55308,55310,55308,55307,55179,55310,54659,54786,54809,55311,55311,55312,55313,55311,55313,54786,55314,55312,55315,55315,55316,55317,55315,55317,55314,55312,55314,55318,55318,54786,55313,55318,55313,55312,55265,55316,55319,55319,55320,55321,55319,55321,55265,55272,55320,55322,55322,55011,55275,55322,55275,55272,55320,55272,55274,55274,55265,55321,55274,55321,55320,55316,55265,55271,55271,55268,55323,55271,55323,55316,55314,55268,55270,55270,54786,55318,55270,55318,55314,55268,55314,55317,55317,55316,55323,55317,55323,55268,55324,55325,55326,55324,55326,54018,55325,55324,55327,55325,54873,55284,55284,54018,55326,55284,55326,55325,55281,55327,55328,55328,54959,55283,55328,55283,55281,55325,55281,55280,55325,55280,54873,55281,55325,55327,55329,54967,55286,55329,55286,54131,55329,55027,55285,55329,55285,54967,54304,55116,55330,54304,55330,55331,55289,55331,55332,55332,54974,55290,55332,55290,55289,55331,55289,55287,55331,55287,54304,55296,55333,55334,55334,55204,55298,55334,55298,55296,55333,55296,55297,55333,55297,55291,55335,55291,55295,55335,55295,55293,55336,55293,55294,55336,55294,54418,55293,55336,55335,55291,55335,55337,55291,55337,55333,55338,55204,55334,55334,55333,55339,55334,55339,55338,55204,55338,55340,55340,55116,55205,55340,55205,55204,55038,54917,55341,55038,55341,54420,55301,55342,55343,55301,55343,55040,55342,55301,55299,55344,55299,55300,55344,55300,55074,55299,55344,55342,55345,55040,55343,55345,55343,55342,55040,55345,54917,54927,55172,55346,54927,55346,54530,55347,55216,55302,55347,55302,55221,55216,55347,55348,55349,54659,55310,55349,55310,55307,54659,55349,55350,55351,55307,55309,55351,55309,55011,55351,55350,55349,55351,55349,55307,55352,55304,55353,55352,55353,55350,55352,55221,55306,55352,55306,55304,55303,55350,55353,55303,55353,55304,55350,55303,54659,55354,54809,55279,55354,55279,55278,55354,55355,55356,55354,55356,54809,55357,55278,55277,55357,55277,55276,55357,55355,55354,55357,55354,55278,55358,55359,55360,55358,55360,55355,55358,55361,55362,55358,55362,55359,55363,55355,55360,55363,55360,55359,55363,54809,55356,55363,55356,55355,55364,55316,55365,55364,55365,55361,55364,55366,55367,55364,55367,55316,55320,55366,55368,55368,55011,55322,55368,55322,55320,55366,55320,55319,55319,55316,55367,55319,55367,55366,55315,55361,55365,55315,55365,55316,55361,55315,55312,55359,55312,55311,55311,54809,55363,55311,55363,55359,55312,55359,55362,55312,55362,55361,55328,55369,55370,55328,55370,54959,55369,55328,55327,55371,55327,55324,55371,55324,54018,55327,55371,55369,55372,54959,55370,55372,55370,55369,54959,55372,55276,55373,55027,55329,55373,55329,54131,55027,55373,55374,55338,55375,55376,55376,55116,55340,55376,55340,55338,55377,55338,55339,55377,55339,55333,55338,55377,55375,55378,55333,55337,55378,55337,55335,55379,55335,55336,55379,55336,54418,55335,55379,55378,55333,55378,55380,55377,55380,55381,55377,55381,55375,55380,55377,55333,55382,55116,55376,55376,55375,55383,55376,55383,55382,55116,55382,55384,55116,55384,55385,55331,55385,55386,55331,55386,55387,55332,55387,55388,55332,55388,54974,55387,55332,55331,55385,55331,55330,55385,55330,55116,55389,54420,55341,55389,55341,54917,54420,55389,54418,55390,55391,55392,55390,55392,55252,55391,55390,55393,55391,55074,55253,55253,55252,55392,55253,55392,55391,55394,55252,55251,55251,54922,55395,55251,55395,55394,55390,55394,55396,55390,55396,55393,55394,55390,55252,55397,55342,55398,55398,55393,55399,55398,55399,55397,55345,55397,55400,55345,55400,54917,55397,55345,55342,55344,55391,55401,55344,55401,55342,55391,55344,55074,55391,55393,55398,55398,55342,55401,55398,55401,55391,55346,54559,55402,55346,55402,54530,54559,55346,55172,55352,55403,55404,55352,55404,55221,55403,55352,55350,55405,55350,55351,55351,55011,55406,55351,55406,55405,55350,55405,55407,55350,55407,55403,55404,55408,55409,55404,55409,55221,55404,55403,55410,55404,55410,55408,55347,55408,55411,55347,55411,55348,55347,55221,55409,55347,55409,55408,55372,55412,55413,55372,55413,55276,55412,55372,55369,55412,55414,55415,55415,55276,55413,55415,55413,55412,55416,55369,55371,55371,54018,55417,55371,55417,55416,55412,55416,55418,55412,55418,55414,55416,55412,55369,55419,55420,55421,55421,55414,55422,55421,55422,55419,55423,55419,55424,55423,55424,55425,55419,55423,55420,55421,55426,55427,55421,55427,55414,55426,55421,55420,55426,55276,55415,55415,55414,55427,55415,55427,55426,55428,55361,55429,55428,55429,55425,55361,55428,55430,55431,55430,55432,55431,55432,55433,55430,55431,55361,55366,55433,55434,55366,55434,55435,55368,55435,55436,55368,55436,55011,55435,55368,55366,55433,55366,55364,55364,55361,55431,55364,55431,55433,55358,55425,55429,55358,55429,55361,55358,55355,55437,55358,55437,55425,55420,55355,55357,55357,55276,55426,55357,55426,55420,55355,55420,55423,55423,55425,55437,55423,55437,55355,55438,55374,55373,55438,55373,54131,55374,55438,55439,55389,55440,55441,55389,55441,54418,55389,54917,55442,55389,55442,55440,55443,55440,55444,55443,55444,55445,55443,54418,55441,55443,55441,55440,55446,55445,55447,55446,55447,55448,55449,55448,55450,55449,55450,55451,55448,55449,55446,55445,55446,55452,55452,54418,55443,55452,55443,55445,55375,55451,55453,55375,55453,55454,55455,55454,55456,55455,55456,55457,55454,55455,55375,55385,55457,55458,55385,55458,55459,55387,55459,55460,55460,54974,55388,55460,55388,55387,55459,55387,55386,55459,55386,55385,55457,55385,55384,55457,55384,55382,55455,55382,55383,55455,55383,55375,55382,55455,55457,55451,55375,55381,55451,55381,55380,55380,55378,55461,55380,55461,55451,55446,55378,55379,55379,54418,55452,55379,55452,55446,55378,55446,55449,55449,55451,55461,55449,55461,55378,55462,54922,55046,55462,55046,54923,54922,55462,55463,55464,55463,55465,55464,55465,55466,55463,55464,54922,55393,55466,55467,55393,55467,55468,55397,55468,55469,55469,54917,55400,55469,55400,55397,55468,55397,55399,55468,55399,55393,55466,55393,55396,55466,55396,55394,55464,55394,55395,55464,55395,54922,55394,55464,55466,55402,54563,55470,55402,55470,54530,54563,55402,54559,55471,55408,55472,55471,55472,55473,55408,55471,55474,55411,55474,55475,55411,55475,55348,55474,55411,55408,55410,55473,55472,55410,55472,55408,55473,55410,55403,55407,55476,55477,55407,55477,55403,55476,55407,55405,55478,55405,55406,55478,55406,55011,55405,55478,55476,55479,55403,55477,55479,55477,55476,55403,55479,55473,55475,55480,55481,55475,55481,55348,55480,55475,55474,55482,55474,55471,55482,55471,55473,55474,55482,55480,55483,55348,55481,55483,55481,55480,55348,55483,55048,55484,55485,55486,55484,55486,55487,55485,55484,55488,55489,55488,55490,55489,55490,55425,55488,55489,55485,55491,55487,55486,55491,55486,55485,55487,55491,55492,55493,55494,55495,55493,55495,55492,55494,55493,55496,55497,55496,55498,55497,55498,54020,55496,55497,55494,55499,55492,55495,55499,55495,55494,55492,55499,55487,55490,55500,55501,55490,55501,55425,55500,55490,55488,55502,55488,55484,55502,55484,55487,55488,55502,55500,55503,55425,55501,55503,55501,55500,55425,55503,55504,55505,55506,55507,55505,55507,55433,55506,55505,55508,55509,55508,55510,55509,55510,55504,55508,55509,55506,55511,55433,55507,55511,55507,55506,55433,55511,55512,55513,55435,55514,55513,55514,55512,55435,55513,55515,55436,55515,55516,55436,55516,55011,55515,55436,55435,55434,55512,55514,55434,55514,55435,55512,55434,55433,55510,55430,55517,55510,55517,55504,55430,55510,55508,55432,55508,55505,55432,55505,55433,55508,55432,55430,55428,55504,55517,55428,55517,55430,55504,55428,55425,55518,55496,55519,55518,55519,55414,55496,55518,55520,55498,55520,55521,55498,55521,54020,55520,55498,55496,55493,55414,55519,55493,55519,55496,55414,55493,55492,55491,55419,55522,55491,55522,55492,55419,55491,55485,55424,55485,55489,55424,55489,55425,55485,55424,55419,55422,55492,55522,55422,55522,55419,55492,55422,55414,55521,55416,55523,55521,55523,54020,55416,55521,55520,55418,55520,55518,55418,55518,55414,55520,55418,55416,55417,54020,55523,55417,55523,55416,54020,55417,54018,55241,55524,55525,55241,55525,54131,55241,54974,55526,55241,55526,55524,55438,55524,55527,55438,55527,55439,55438,54131,55525,55438,55525,55524,55528,55529,55530,55528,55530,55531,55528,55532,55533,55528,55533,55529,55534,55529,55535,55534,55535,55536,55534,55531,55530,55534,55530,55529,55537,55538,55539,55537,55539,55531,55537,55451,55540,55537,55540,55538,55528,55538,55541,55528,55541,55532,55528,55531,55539,55528,55539,55538,55542,55543,55544,55542,55544,55545,55542,55532,55546,55542,55546,55543,55547,55543,55548,55547,55548,54923,55547,55545,55544,55547,55544,55543,55549,55529,55550,55549,55550,55545,55549,55536,55535,55549,55535,55529,55542,55529,55533,55542,55533,55532,55542,55545,55550,55542,55550,55529,55551,55552,55553,55551,55553,55554,55551,55457,55555,55551,55555,55552,55556,55552,55557,55556,55557,55536,55556,55554,55553,55556,55553,55552,55558,55459,55559,55558,55559,55554,55558,54974,55460,55558,55460,55459,55551,55459,55458,55551,55458,55457,55551,55554,55559,55551,55559,55459,55560,55454,55561,55560,55561,55531,55560,55457,55456,55560,55456,55454,55537,55454,55453,55537,55453,55451,55537,55531,55561,55537,55561,55454,55534,55552,55562,55534,55562,55531,55534,55536,55557,55534,55557,55552,55560,55552,55555,55560,55555,55457,55560,55531,55562,55560,55562,55552,55563,55564,55565,55563,55565,55566,55563,55445,55567,55563,55567,55564,55568,55564,55569,55568,55569,55466,55568,55566,55565,55568,55565,55564,55570,55448,55571,55570,55571,55566,55570,55451,55450,55570,55450,55448,55563,55448,55447,55563,55447,55445,55563,55566,55571,55563,55571,55448,55572,55440,55573,55572,55573,55468,55572,55445,55444,55572,55444,55440,55469,55440,55442,55469,55442,54917,55469,55468,55573,55469,55573,55440,55467,55564,55574,55467,55574,55468,55467,55466,55569,55467,55569,55564,55572,55564,55567,55572,55567,55445,55572,55468,55574,55572,55574,55564,55575,55576,55577,55575,55577,55463,55575,55532,55578,55575,55578,55576,55465,55576,55579,55465,55579,55466,55465,55463,55577,55465,55577,55576,55462,55543,55580,55462,55580,55463,55462,54923,55548,55462,55548,55543,55575,55543,55546,55575,55546,55532,55575,55463,55580,55575,55580,55543,55581,55538,55582,55581,55582,55566,55581,55532,55541,55581,55541,55538,55570,55538,55540,55570,55540,55451,55570,55566,55582,55570,55582,55538,55568,55576,55583,55568,55583,55566,55568,55466,55579,55568,55579,55576,55581,55576,55578,55581,55578,55532,55581,55566,55583,55581,55583,55576,54563,55048,55584,55584,54530,55470,55584,55470,54563,55585,55586,55587,55585,55587,55588,55585,55589,55590,55585,55590,55586,55591,55586,55592,55591,55592,55473,55591,55588,55587,55591,55587,55586,55593,55594,55595,55593,55595,55588,55593,55504,55596,55593,55596,55594,55585,55594,55597,55585,55597,55589,55585,55588,55595,55585,55595,55594,55598,55599,55600,55598,55600,55480,55598,55589,55601,55598,55601,55599,55483,55599,55602,55483,55602,55048,55483,55480,55600,55483,55600,55599,55482,55586,55603,55482,55603,55480,55482,55473,55592,55482,55592,55586,55598,55586,55590,55598,55590,55589,55598,55480,55603,55598,55603,55586,55604,55605,55606,55604,55606,55476,55604,55512,55607,55604,55607,55605,55479,55605,55608,55479,55608,55473,55479,55476,55606,55479,55606,55605,55478,55515,55609,55478,55609,55476,55478,55011,55516,55478,55516,55515,55604,55515,55513,55604,55513,55512,55604,55476,55609,55604,55609,55515,55610,55506,55611,55610,55611,55588,55610,55512,55511,55610,55511,55506,55593,55506,55509,55593,55509,55504,55593,55588,55611,55593,55611,55506,55591,55605,55612,55591,55612,55588,55591,55473,55608,55591,55608,55605,55610,55605,55607,55610,55607,55512,55610,55588,55612,55610,55612,55605,55613,55614,55615,55613,55615,55616,55613,55487,55617,55613,55617,55614,55618,55614,55619,55618,55619,55620,55618,55616,55615,55618,55615,55614,55621,55500,55622,55621,55622,55616,55621,55504,55503,55621,55503,55500,55613,55500,55502,55613,55502,55487,55613,55616,55622,55613,55622,55500,55623,55494,55624,55623,55624,55625,55623,55487,55499,55623,55499,55494,55626,55494,55497,55626,55497,54020,55626,55625,55624,55626,55624,55494,55627,55614,55628,55627,55628,55625,55627,55620,55619,55627,55619,55614,55623,55614,55617,55623,55617,55487,55623,55625,55628,55623,55628,55614,55629,55630,55631,55629,55631,55632,55629,55589,55633,55629,55633,55630,55634,55630,55635,55634,55635,55620,55634,55632,55631,55634,55631,55630,55636,55599,55637,55636,55637,55632,55636,55048,55602,55636,55602,55599,55629,55599,55601,55629,55601,55589,55629,55632,55637,55629,55637,55599,55638,55594,55639,55638,55639,55616,55638,55589,55597,55638,55597,55594,55621,55594,55596,55621,55596,55504,55621,55616,55639,55621,55639,55594,55618,55630,55640,55618,55640,55616,55618,55620,55635,55618,55635,55630,55638,55630,55633,55638,55633,55589,55638,55616,55640,55638,55640,55630,55527,55641,55642,55527,55642,55439,55641,55527,55524,55643,55524,55526,55643,55526,54974,55524,55643,55641,55644,55439,55642,55644,55642,55641,55439,55644,54054,55645,55646,55647,55645,55647,55536,55646,55645,55648,55649,55648,55650,55649,55650,55651,55648,55649,55646,55652,55536,55647,55652,55647,55646,55536,55652,55653,55654,55554,55655,55654,55655,55653,55554,55654,55656,55558,55656,55657,55558,55657,54974,55656,55558,55554,55556,55653,55655,55556,55655,55554,55653,55556,55536,55650,55545,55658,55650,55658,55651,55545,55650,55648,55549,55648,55645,55549,55645,55536,55648,55549,55545,55547,55651,55658,55547,55658,55545,55651,55547,54923,55659,54530,55584,55659,55584,55048,54530,55659,54528,55660,55661,55662,55660,55662,55620,55661,55660,55663,55664,55663,55665,55664,55665,54021,55663,55664,55661,55666,55620,55662,55666,55662,55661,55620,55666,55667,55668,55632,55669,55668,55669,55667,55632,55668,55670,55636,55670,55671,55636,55671,55048,55670,55636,55632,55634,55667,55669,55634,55669,55632,55667,55634,55620,55665,55625,55672,55665,55672,54021,55625,55665,55663,55627,55663,55660,55627,55660,55620,55663,55627,55625,55626,54021,55672,55626,55672,55625,54021,55626,54020,55644,55673,55674,55644,55674,54054,55673,55644,55641,55675,55641,55643,55675,55643,54974,55641,55675,55673,55676,54054,55674,55676,55674,55673,54054,55676,54049,55677,55678,55679,55677,55679,55653,55678,55677,55680,55681,55680,55682,55681,55682,55683,55680,55681,55678,55684,55653,55679,55684,55679,55678,55653,55684,55685,55686,55656,55687,55686,55687,55685,55656,55686,55688,55657,55688,55689,55657,55689,54974,55688,55657,55656,55654,55685,55687,55654,55687,55656,55685,55654,55653,55682,55646,55690,55682,55690,55683,55646,55682,55680,55652,55680,55677,55652,55677,55653,55680,55652,55646,55649,55683,55690,55649,55690,55646,55683,55649,55651,55691,54528,55659,55691,55659,55048,54528,55691,54999,55692,55693,55694,55692,55694,55667,55693,55692,55695,55696,55695,55697,55696,55697,54890,55695,55696,55693,55698,55667,55694,55698,55694,55693,55667,55698,55699,55700,55670,55701,55700,55701,55699,55670,55700,55702,55671,55702,55703,55671,55703,55048,55702,55671,55670,55668,55699,55701,55668,55701,55670,55699,55668,55667,55697,55661,55704,55697,55704,54890,55661,55697,55695,55666,55695,55692,55666,55692,55667,55695,55666,55661,55664,54890,55704,55664,55704,55661,54890,55664,54021,55676,55705,55706,55676,55706,54049,55705,55676,55673,55707,55673,55675,55707,55675,54974,55673,55707,55705,55708,54049,55706,55708,55706,55705,54049,55708,54963,55709,55710,55711,55709,55711,55685,55710,55709,55712,55713,55712,55714,55713,55714,54519,55712,55713,55710,55715,55685,55711,55715,55711,55710,55685,55715,55716,55717,55688,55718,55717,55718,55716,55688,55717,55719,55689,55719,55720,55689,55720,54974,55719,55689,55688,55686,55716,55718,55686,55718,55688,55716,55686,55685,55714,55678,55721,55714,55721,54519,55678,55714,55712,55684,55712,55709,55684,55709,55685,55712,55684,55678,55681,54519,55721,55681,55721,55678,54519,55681,55683,55722,54999,55691,55691,55048,55723,55691,55723,55722,54999,55722,55724,54999,55724,54998,55725,55726,55727,55725,55727,55699,55726,55725,55728,55729,55728,55730,55729,55730,55731,55728,55729,55726,55732,55699,55727,55732,55727,55726,55699,55732,55733,55734,55702,55735,55734,55735,55733,55702,55734,55736,55703,55736,55737,55703,55737,55048,55736,55703,55702,55700,55733,55735,55700,55735,55702,55733,55700,55699,55730,55693,55738,55730,55738,55731,55693,55730,55728,55698,55728,55725,55698,55725,55699,55728,55698,55693,55696,55731,55738,55696,55738,55693,55731,55696,54890,55708,55739,55740,55708,55740,54963,55739,55708,55705,55741,55705,55707,55707,54974,55742,55707,55742,55741,55705,55741,55743,55705,55743,55739,55744,54963,55740,55744,55740,55739,54963,55744,55745,55089,55745,55746,55089,55746,54028,55745,55089,54963,55747,55716,55748,55747,55748,55749,55716,55747,55750,55751,55749,55752,55752,54997,55753,55752,55753,55751,55747,55751,55754,55747,55754,55750,55751,55747,55749,55755,55719,55756,55756,55750,55757,55756,55757,55755,55720,55755,55758,55720,55758,54974,55755,55720,55719,55717,55750,55756,55717,55756,55719,55750,55717,55716,55749,55710,55759,55759,54997,55752,55759,55752,55749,55715,55749,55748,55715,55748,55716,55749,55715,55710,54519,54997,55759,55759,55710,55713,55759,55713,54519,55724,55760,55761,55724,55761,54998,55760,55724,55722,55762,55722,55723,55762,55723,55048,55722,55762,55760,55763,54998,55761,55763,55761,55760,54998,55763,55764,55765,55766,55767,55765,55767,55733,55766,55765,55768,55769,55768,55770,55769,55770,55771,55768,55769,55766,55772,55733,55767,55772,55767,55766,55733,55772,55773,55774,55736,55775,55774,55775,55773,55736,55774,55776,55737,55776,55777,55737,55777,55048,55776,55737,55736,55734,55773,55775,55734,55775,55736,55773,55734,55733,55770,55726,55778,55770,55778,55771,55726,55770,55768,55732,55768,55765,55732,55765,55733,55768,55732,55726,55729,55771,55778,55729,55778,55726,55771,55729,55731,55745,55779,55780,55745,55780,55781,55781,54028,55746,55781,55746,55745,55779,55745,55744,55779,55744,55739,55743,55782,55783,55743,55783,55739,55782,55743,55741,55784,55741,55742,55784,55742,54974,55741,55784,55782,55785,55739,55783,55785,55783,55782,55739,55785,55779,55786,54028,55781,55787,55781,55780,55787,55780,55779,55781,55787,55786,54028,55786,55788,54028,55788,54026,54997,55764,55789,55789,55790,55791,55789,55791,54997,55792,55790,55793,55793,55794,55795,55793,55795,55792,55790,55792,55796,55796,54997,55791,55796,55791,55790,55750,55794,55797,55797,55798,55799,55797,55799,55750,55755,55798,55800,55800,54974,55758,55800,55758,55755,55798,55755,55757,55757,55750,55799,55757,55799,55798,55794,55750,55754,55754,55751,55801,55754,55801,55794,55792,55751,55753,55753,54997,55796,55753,55796,55792,55751,55792,55795,55795,55794,55801,55795,55801,55751,55802,55803,55804,55802,55804,55773,55803,55802,55805,55803,55806,55807,55807,55773,55804,55807,55804,55803,55776,55806,55808,55808,55048,55777,55808,55777,55776,55807,55776,55774,55807,55774,55773,55776,55807,55806,55766,55809,55810,55810,55773,55772,55810,55772,55766,55811,55766,55769,55811,55769,55771,55766,55811,55809,55802,55810,55812,55802,55812,55805,55810,55802,55773,55810,55809,55813,55813,55805,55812,55813,55812,55810,55814,55808,55815,55814,55815,55816,55808,55814,55048,55815,55806,55817,55815,55817,55816,55806,55815,55808,55763,55816,55818,55763,55818,55764,55816,55763,55760,55814,55760,55762,55814,55762,55048,55760,55814,55816,55819,55803,55820,55819,55820,55821,55803,55819,55806,55803,55805,55822,55822,55821,55820,55822,55820,55803,55816,55821,55823,55823,55764,55818,55823,55818,55816,55819,55816,55817,55819,55817,55806,55816,55819,55821,55824,55786,55825,55824,55825,55826,55786,55824,55827,55788,55827,55828,55788,55828,54026,55827,55788,55786,55787,55826,55825,55787,55825,55786,55826,55787,55779,55785,55829,55830,55785,55830,55779,55829,55785,55782,55831,55782,55784,55831,55784,54974,55782,55831,55829,55832,55779,55830,55832,55830,55829,55779,55832,55826,55833,54026,55828,55833,55828,55827,55834,55827,55824,55834,55824,55826,55827,55834,55833,54026,55833,55835,54026,55835,54891,55836,55837,55838,55836,55838,55805,55837,55836,55839,55840,55839,55841,55840,55841,55842,55839,55840,55837,55843,55805,55838,55843,55838,55837,55805,55843,55844,55845,55821,55846,55845,55846,55844,55821,55845,55847,55823,55847,55848,55823,55848,55764,55847,55823,55821,55822,55844,55846,55822,55846,55821,55844,55822,55805,55841,55809,55849,55841,55849,55842,55809,55841,55839,55813,55839,55836,55813,55836,55805,55839,55813,55809,55811,55842,55849,55811,55849,55809,55842,55811,55771,55850,55851,55852,55852,55798,55853,55852,55853,55850,55854,55850,55855,55854,55855,55856,55850,55854,55851,55857,55800,55858,55857,55858,55851,55800,55857,54974,55800,55798,55852,55852,55851,55858,55852,55858,55800,55859,55797,55860,55859,55860,55861,55797,55859,55798,55797,55794,55862,55862,55861,55860,55862,55860,55797,55850,55861,55863,55863,55856,55855,55863,55855,55850,55859,55850,55853,55859,55853,55798,55850,55859,55861,55864,55865,55866,55864,55866,55867,55865,55864,55826,55865,55856,55868,55868,55867,55866,55868,55866,55865,55833,55867,55869,55869,54891,55835,55869,55835,55833,55864,55833,55834,55864,55834,55826,55833,55864,55867,55829,55851,55870,55870,55826,55832,55870,55832,55829,55857,55829,55831,55857,55831,54974,55829,55857,55851,55854,55865,55871,55854,55871,55851,55865,55854,55856,55865,55826,55870,55870,55851,55871,55870,55871,55865,55872,55793,55873,55872,55873,55874,55793,55872,55794,55793,55790,55875,55875,55874,55873,55875,55873,55793,55876,55874,55877,55877,55878,55879,55877,55879,55876,55872,55876,55880,55872,55880,55794,55876,55872,55874,55790,55789,55881,55881,55882,55883,55881,55883,55790,55789,55764,55884,55884,55882,55881,55884,55881,55789,55874,55882,55885,55885,55878,55877,55885,55877,55874,55882,55874,55875,55875,55790,55883,55875,55883,55882,55856,55886,55887,55887,55888,55889,55887,55889,55856,55886,55878,55890,55890,55888,55887,55890,55887,55886,55867,55888,55891,55891,54891,55869,55891,55869,55867,55888,55867,55868,55868,55856,55889,55868,55889,55888,55892,55886,55893,55892,55893,55861,55886,55892,55878,55886,55856,55863,55863,55861,55893,55863,55893,55886,55876,55861,55862,55862,55794,55880,55862,55880,55876,55892,55876,55879,55892,55879,55878,55876,55892,55861,55894,55888,55895,55894,55895,55844,55888,55894,55896,55891,55896,55897,55891,55897,54891,55896,55891,55888,55890,55844,55895,55890,55895,55888,55844,55890,55878,55885,55847,55898,55885,55898,55878,55847,55885,55882,55848,55882,55884,55848,55884,55764,55882,55848,55847,55845,55878,55898,55845,55898,55847,55878,55845,55844,55897,55837,55899,55897,55899,54891,55837,55897,55896,55843,55896,55894,55843,55894,55844,55896,55843,55837,55840,54891,55899,55840,55899,55837,54891,55840,55842,55900,55901,55902,55903,55904,55905,55906,55907,55908,55908,55909,55910,55910,55911,55912,55913,55914,55915,55916,55917,55918,55918,55919,55900,55903,55905,55906,55906,55908,55910,55910,55912,55920,55921,55913,55915,55916,55918,55900,55902,55903,55906,55906,55910,55920,55921,55915,55916,55916,55900,55902,55906,55920,55921,55921,55916,55902,55902,55906,55921,55922,55923,55924,55924,55925,55926,55926,55927,55928,55928,55929,55930,55930,55931,55932,55932,55933,55934,55935,55936,55937,55937,55922,55924,55924,55926,55928,55928,55930,55932,55932,55934,55935,55935,55937,55924,55924,55928,55932,55932,55935,55924,55938,55939,55940,55940,55941,55942,55942,55943,55944,55945,55946,55947,55948,55949,55950,55950,55951,55952,55952,55953,55954,55955,55956,55957,55957,55958,55959,55959,55960,55961,55962,55938,55940,55940,55942,55944,55963,55945,55947,55948,55950,55952,55952,55954,55964,55955,55957,55959,55962,55940,55944,55963,55947,55948,55948,55952,55964,55965,55955,55959,55966,55962,55944,55944,55963,55948,55948,55964,55967,55965,55959,55961,55961,55966,55944,55944,55948,55967,55968,55965,55961,55944,55967,55969,55968,55961,55944,55944,55969,55968,55970,55971,55972,55972,55973,55974,55974,55975,55976,55976,55977,55978,55979,55980,55981,55981,55982,55983,55984,55985,55986,55986,55987,55988,55988,55989,55970,55972,55974,55976,55976,55978,55990,55990,55979,55981,55981,55983,55984,55984,55986,55988,55970,55972,55976,55990,55981,55984,55984,55988,55970,55970,55976,55990,55990,55984,55970,55991,55992,55993,55993,55994,55995,55995,55996,55997,55998,55999,56000,56000,56001,56002,56002,56003,56004,56004,56005,56006,56006,56007,56008,56009,56010,56011,56011,56012,56013,56013,56014,56015,56016,56017,56018,55991,55993,55995,55995,55997,55998,55998,56000,56002,56002,56004,56006,56006,56008,56009,56009,56011,56013,56015,56016,56018,55991,55995,55998,56002,56006,56009,56009,56013,56015,55991,55998,56002,56002,56009,56015,56018,55991,56002,56002,56015,56018,56019,56020,56021,56022,56023,56024,56024,56025,56026,56026,56027,56028,56028,56019,56021,56022,56024,56026,56028,56021,56022,56022,56026,56028,56029,56030,56031,56031,56032,56033,56034,56035,56036,56036,56037,56038,56038,56039,56040,56041,56042,56043,56044,56045,56046,56047,56048,56049,56049,56050,56051,56051,56052,56053,56054,56029,56031,56031,56033,56034,56034,56036,56038,56038,56040,56041,56043,56044,56046,56047,56049,56051,56054,56031,56034,56034,56038,56041,56043,56046,56055,56056,56047,56051,56054,56034,56041,56043,56055,56056,56056,56051,56053,56053,56054,56041,56043,56056,56053,56053,56041,56043,56057,56058,56059,56059,56060,56061,56061,56062,56057,56057,56059,56061,56063,56064,56065,56065,56066,56067,56068,56069,56063,56065,56067,56068,56068,56063,56065,56070,56071,56072,56073,56074,56075,56075,56076,56070,56070,56072,56073,56073,56075,56070,56077,56078,56079,56079,56080,56081,56081,56082,56083,56083,56077,56079,56079,56081,56083,56084,56085,56086,56086,56087,56088,56088,56089,56090,56090,56091,56092,56093,56094,56095,56084,56086,56088,56088,56090,56092,56093,56095,56084,56088,56092,56093,56093,56084,56088,56096,56097,56098,56098,56099,56100,56101,56102,56096,56096,56098,56100,56100,56101,56096,56103,56104,56105,56105,56106,56107,56107,56108,56103,56103,56105,56107,56109,56110,56111,56111,56112,56113,56113,56114,56115,56115,56109,56111,56111,56113,56115,56116,56117,56118,56118,56119,56120,56120,56121,56122,56122,56123,56116,56116,56118,56120,56120,56122,56116,56124,56125,56126,56126,56127,56128,56128,56129,56124,56124,56126,56128,56130,56131,56132,56132,56133,56134,56134,56135,56130,56130,56132,56134,56136,56137,56138,56138,56139,56140,56140,56136,56138,56141,56142,56143,56144,56145,56146,56147,56148,56149,56149,56150,56151,56141,56143,56152,56152,56144,56146,56147,56149,56151,56151,56141,56152,56152,56146,56147,56147,56151,56152,56153,56154,56155,56155,56156,56157,56158,56159,56160,56161,56162,56153,56155,56157,56163,56158,56160,56161,56161,56153,56155,56155,56163,56158,56158,56161,56155,56164,56165,56166,56166,56167,56168,56169,56170,56164,56164,56166,56168,56168,56169,56164,56171,56172,56173,56173,56174,56175,56176,56177,56178,56179,56180,56171,56171,56173,56175,56176,56178,56179,56179,56171,56175,56175,56176,56179,56181,56182,56183,56183,56184,56185,56185,56181,56183,56186,56187,56188,56188,56189,56190,56190,56191,56192,56192,56186,56188,56188,56190,56192,56193,56194,56195,56195,56196,56197,56197,56198,56199,56199,56193,56195,56195,56197,56199,56200,56201,56202,56202,56203,56204,56205,56206,56207,56207,56208,56200,56200,56202,56204,56205,56207,56200,56200,56204,56205,56209,56210,56211,56212,56213,56214,56215,56216,56217,56217,56218,56209,56209,56211,56212,56212,56214,56215,56215,56217,56209,56209,56212,56215,56219,56220,56221,56221,56222,56223,56223,56224,56225,56225,56219,56221,56221,56223,56225,56226,56227,56228,56229,56230,56231,56231,56232,56233,56234,56235,56226,56226,56228,56229,56229,56231,56233,56234,56226,56229,56229,56233,56234,56236,56237,56238,56238,56239,56240,56240,56241,56242,56242,56236,56238,56238,56240,56242,56243,56244,56245,56245,56246,56247,56247,56248,56249,56249,56250,56251,56251,56252,56253,56254,56255,56256,56257,56258,56259,56260,56261,56262,56262,56263,56264,56264,56265,56266,56266,56267,56268,56269,56270,56271,56272,56273,56274,56275,56276,56277,56277,56278,56279,56279,56280,56281,56281,56282,56283,56283,56284,56285,56285,56286,56287,56288,56289,56290,56291,56292,56293,56293,56294,56295,56296,56297,56298,56298,56299,56300,56301,56302,56303,56303,56304,56305,56306,56307,56308,56308,56309,56310,56311,56312,56313,56313,56314,56315,56316,56317,56318,56319,56320,56321,56322,56323,56324,56325,56326,56327,56327,56328,56329,56330,56331,56332,56333,56334,56335,56335,56336,56337,56338,56339,56340,56341,56342,56343,56343,56344,56345,56346,56347,56348,56349,56350,56351,56352,56353,56354,56354,56355,56356,56357,56358,56359,56360,56361,56362,56363,56364,56365,56366,56367,56368,56369,56243,56245,56245,56247,56249,56249,56251,56253,56370,56254,56256,56257,56259,56371,56260,56262,56264,56264,56266,56268,56269,56271,56272,56275,56277,56279,56279,56281,56283,56283,56285,56287,56372,56288,56290,56291,56293,56295,56296,56298,56300,56373,56301,56303,56306,56308,56310,56311,56313,56315,56316,56318,56374,56375,56319,56321,56322,56324,56376,56325,56327,56329,56330,56332,56377,56377,56333,56335,56338,56340,56378,56378,56341,56343,56343,56345,56379,56379,56346,56348,56380,56349,56351,56381,56352,56354,56354,56356,56357,56357,56359,56382,56360,56362,56363,56363,56365,56383,56366,56368,56384,56384,56369,56245,56245,56249,56253,56370,56256,56257,56260,56264,56268,56385,56269,56272,56275,56279,56283,56283,56287,56372,56291,56295,56296,56296,56300,56373,56373,56303,56305,56386,56306,56310,56310,56311,56315,56316,56374,56387,56375,56321,56388,56322,56376,56389,56389,56325,56329,56329,56330,56377,56337,56338,56378,56378,56343,56379,56379,56348,56390,56380,56351,56381,56381,56354,56357,56357,56382,56391,56392,56360,56363,56383,56366,56384,56384,56245,56253,56370,56257,56371,56393,56260,56268,56385,56272,56274,56394,56275,56283,56283,56372,56290,56291,56296,56373,56373,56305,56395,56396,56386,56310,56310,56315,56397,56322,56389,56329,56337,56378,56379,56379,56390,56380,56380,56381,56357,56357,56391,56398,56392,56363,56383,56383,56384,56253,56393,56268,56385,56385,56274,56394,56394,56283,56290,56396,56310,56397,56322,56329,56377,56335,56337,56379,56392,56383,56253,56393,56385,56394,56394,56290,56399,56400,56396,56397,56401,56322,56377,56377,56335,56379,56402,56392,56253,56371,56393,56394,56394,56399,56291,56403,56400,56397,56401,56377,56379,56398,56402,56253,56371,56394,56291,56395,56403,56397,56388,56401,56379,56357,56398,56253,56370,56371,56291,56373,56395,56397,56375,56388,56379,56380,56357,56253,56253,56370,56291,56373,56397,56316,56387,56375,56379,56380,56253,56404,56380,56404,56379,56253,56291,56373,56373,56316,56387,56387,56379,56404,56387,56404,56253,56253,56373,56387,56405,56406,56407,56407,56408,56409,56410,56411,56412,56412,56413,56414,56415,56416,56417,56418,56419,56420,56420,56421,56405,56405,56407,56409,56410,56412,56414,56415,56417,56418,56420,56405,56409,56409,56410,56414,56415,56418,56420,56409,56414,56415,56415,56420,56409,56422,56423,56424,56425,56426,56427,56428,56429,56430,56430,56431,56432,56432,56433,56434,56435,56436,56437,56438,56439,56440,56440,56441,56422,56422,56424,56425,56425,56427,56442,56442,56428,56430,56430,56432,56434,56434,56435,56437,56438,56440,56422,56422,56425,56442,56442,56430,56434,56434,56437,56438,56438,56422,56442,56442,56434,56438,56443,56444,56445,56445,56446,56447,56447,56448,56449,56449,56450,56451,56452,56453,56454,56454,56455,56456,56456,56443,56445,56445,56447,56449,56449,56451,56452,56452,56454,56456,56456,56445,56449,56449,56452,56456,56457,56458,56459,56459,56460,56461,56461,56462,56463,56464,56465,56457,56457,56459,56461,56461,56463,56464,56464,56457,56461,56466,56467,56468,56468,56469,56470,56471,56472,56473,56473,56474,56466,56466,56468,56470,56470,56471,56473,56473,56466,56470,56475,56476,56477,56477,56478,56479,56479,56480,56475,56475,56477,56479,56481,56482,56483,56483,56484,56485,56485,56486,56487,56487,56488,56489,56489,56490,56491,56491,56492,56481,56481,56483,56485,56485,56487,56489,56489,56491,56481,56481,56485,56489,56493,56494,56495,56495,56496,56497,56497,56498,56493,56493,56495,56497,56499,56500,56501,56501,56502,56503,56503,56504,56499,56499,56501,56503,56505,56506,56507,56508,56509,56510,56510,56511,56512,56513,56514,56515,56515,56516,56517,56518,56519,56520,56521,56522,56523,56524,56525,56526,56527,56528,56529,56529,56530,56531,56531,56532,56533,56534,56535,56536,56536,56537,56538,56538,56539,56540,56541,56542,56543,56544,56545,56546,56546,56547,56548,56548,56549,56550,56551,56552,56553,56505,56507,56554,56508,56510,56512,56513,56515,56517,56520,56521,56523,56523,56524,56526,56527,56529,56531,56531,56533,56555,56534,56536,56538,56540,56541,56543,56544,56546,56548,56551,56553,56505,56505,56554,56508,56508,56512,56556,56556,56513,56517,56520,56523,56526,56557,56527,56531,56531,56555,56558,56538,56540,56543,56543,56544,56548,56551,56505,56508,56556,56517,56518,56518,56520,56526,56557,56531,56558,56543,56548,56550,56551,56508,56556,56556,56518,56526,56526,56557,56558,56538,56543,56550,56559,56551,56556,56556,56526,56558,56534,56538,56550,56550,56559,56556,56556,56558,56560,56560,56534,56550,56550,56556,56560,56561,56562,56563,56563,56564,56565,56566,56567,56568,56568,56569,56570,56570,56571,56572,56573,56574,56575,56576,56577,56578,56578,56579,56580,56580,56581,56582,56583,56584,56585,56586,56587,56588,56589,56590,56591,56591,56592,56593,56594,56595,56596,56596,56597,56598,56598,56599,56600,56600,56601,56602,56561,56563,56565,56566,56568,56570,56573,56575,56603,56603,56576,56578,56578,56580,56582,56604,56583,56585,56585,56586,56588,56605,56589,56591,56591,56593,56594,56596,56598,56600,56600,56602,56561,56561,56565,56566,56566,56570,56572,56603,56578,56582,56604,56585,56588,56605,56591,56594,56594,56596,56600,56600,56561,56566,56566,56572,56573,56573,56603,56582,56582,56604,56588,56588,56605,56594,56594,56600,56566,56566,56573,56582,56582,56588,56594,56594,56566,56582,56606,56607,56608,56608,56609,56610,56610,56611,56612,56613,56614,56615,56606,56608,56610,56610,56612,56613,56613,56615,56606,56606,56610,56613,56616,56617,56618,56618,56619,56620,56620,56621,56616,56616,56618,56620,56622,56623,56624,56624,56625,56626,56626,56627,56628,56629,56630,56631,56631,56632,56633,56633,56634,56635,56636,56637,56622,56622,56624,56626,56626,56628,56629,56629,56631,56633,56633,56635,56638,56639,56636,56622,56626,56629,56633,56633,56638,56640,56639,56622,56626,56626,56633,56640,56640,56639,56626,56641,56642,56643,56643,56644,56645,56645,56646,56647,56647,56641,56643,56643,56645,56647,56648,56649,56650,56650,56651,56652,56652,56653,56648,56648,56650,56652,56654,56655,56656,56656,56657,56658,56658,56659,56654,56654,56656,56658,56660,56661,56662,56662,56663,56664,56664,56665,56666,56666,56667,56668,56669,56670,56671,56660,56662,56664,56664,56666,56668,56668,56669,56671,56671,56660,56664,56664,56668,56671,56672,56673,56674,56675,56676,56677,56677,56678,56679,56679,56680,56681,56681,56682,56672,56672,56674,56683,56675,56677,56679,56681,56672,56683,56684,56675,56679,56681,56683,56684,56684,56679,56681,56685,56686,56687,56687,56688,56689,56689,56690,56691,56691,56692,56693,56694,56695,56685,56687,56689,56691,56691,56693,56696,56694,56685,56687,56687,56691,56696,56697,56694,56687,56687,56696,56697,56698,56699,56700,56700,56701,56702,56702,56703,56704,56704,56698,56700,56700,56702,56704,56705,56706,56707,56707,56708,56709,56709,56710,56705,56705,56707,56709,56711,56712,56713,56713,56714,56715,56715,56716,56717,56717,56718,56711,56711,56713,56715,56715,56717,56711,56719,56720,56721,56721,56722,56723,56723,56724,56719,56719,56721,56723,56725,56726,56727,56727,56728,56729,56729,56730,56725,56725,56727,56729,56731,56732,56733,56733,56734,56735,56736,56731,56733,56733,56735,56736,56737,56738,56739,56739,56740,56737,56741,56742,56743,56743,56744,56745,56746,56747,56748,56748,56741,56743,56743,56745,56746,56746,56748,56743,56749,56750,56751,56751,56752,56753,56753,56754,56749,56749,56751,56753,56755,56756,56757,56757,56758,56759,56759,56760,56761,56761,56762,56763,56763,56764,56755,56755,56757,56759,56759,56761,56763,56763,56755,56759,56765,56766,56767,56768,56769,56770,56770,56771,56772,56772,56773,56774,56774,56775,56776,56777,56778,56779,56780,56781,56782,56783,56784,56785,56786,56787,56788,56788,56789,56790,56791,56792,56793,56793,56794,56795,56795,56796,56797,56798,56799,56800,56800,56801,56802,56803,56804,56805,56805,56806,56807,56808,56809,56810,56810,56811,56812,56813,56814,56815,56815,56816,56817,56818,56819,56820,56821,56822,56823,56823,56824,56825,56825,56826,56827,56828,56829,56830,56831,56832,56833,56833,56834,56835,56835,56836,56837,56837,56838,56839,56840,56841,56842,56842,56843,56844,56844,56845,56846,56846,56847,56848,56849,56850,56851,56851,56852,56853,56854,56855,56856,56856,56857,56858,56858,56859,56860,56861,56862,56863,56863,56864,56865,56866,56867,56868,56868,56869,56870,56870,56871,56872,56872,56873,56874,56875,56876,56877,56877,56878,56879,56880,56881,56882,56882,56883,56884,56884,56885,56886,56887,56888,56889,56890,56891,56892,56892,56893,56894,56894,56895,56896,56897,56898,56899,56900,56901,56902,56903,56904,56905,56905,56906,56907,56907,56908,56909,56910,56911,56912,56912,56913,56914,56914,56915,56916,56917,56918,56919,56920,56921,56922,56922,56923,56924,56924,56925,56926,56927,56928,56929,56930,56931,56932,56933,56934,56935,56936,56937,56938,56939,56940,56941,56942,56943,56944,56945,56946,56947,56947,56948,56949,56950,56951,56952,56952,56953,56954,56955,56956,56957,56958,56959,56960,56960,56961,56962,56962,56963,56964,56964,56965,56966,56967,56968,56969,56970,56971,56972,56972,56973,56974,56975,56976,56977,56978,56979,56980,56980,56981,56982,56983,56984,56985,56986,56987,56988,56988,56989,56990,56990,56991,56992,56992,56993,56994,56994,56995,56996,56997,56998,56999,56999,57000,57001,57002,57003,57004,57005,57006,57007,57008,57009,57010,57011,57012,57013,57014,57015,57016,57017,57018,57019,57019,57020,57021,57022,57023,57024,57024,57025,57026,57026,57027,57028,57029,57030,57031,57032,56765,56767,56768,56770,56772,56772,56774,56776,56777,56779,56780,56780,56782,56783,56783,56785,56786,56786,56788,56790,56791,56793,56795,56795,56797,56798,56798,56800,56802,56803,56805,56807,56808,56810,56812,56812,56813,56815,56818,56820,56821,56821,56823,56825,56825,56827,57033,57033,56828,56830,56831,56833,56835,56835,56837,56839,56840,56842,56844,56844,56846,56848,56849,56851,56853,57034,56854,56856,56856,56858,56860,56861,56863,56865,56866,56868,56870,56870,56872,56874,56875,56877,56879,56880,56882,56884,57035,56887,56889,56890,56892,56894,56894,56896,57036,57037,56897,56899,56903,56905,56907,56907,56909,57038,56910,56912,56914,56917,56919,57039,56920,56922,56924,56924,56926,57040,56927,56929,57041,56930,56932,57042,56933,56935,57043,56936,56938,56939,56939,56941,57044,56942,56944,57045,56945,56947,56949,56950,56952,56954,56955,56957,57046,56958,56960,56962,56962,56964,56966,57047,56967,56969,56970,56972,56974,56975,56977,56978,56978,56980,56982,56983,56985,56986,56986,56988,56990,56990,56992,56994,56994,56996,57048,56997,56999,57001,57002,57004,57005,57005,57007,57008,57008,57010,57049,57049,57011,57013,57014,57016,57050,57017,57019,57021,57022,57024,57026,57026,57028,57029,57029,57031,57051,57032,56767,57052,57053,56768,56772,56772,56776,57054,57055,56777,56780,56780,56783,56786,56786,56790,57056,56791,56795,56798,56798,56802,56803,56803,56807,57057,56808,56812,56815,56817,56818,56821,56821,56825,57033,57033,56830,57058,57058,56831,56835,56835,56839,56840,56840,56844,56848,56849,56853,57034,57034,56856,56860,56865,56866,56870,56870,56874,56875,57059,56880,56884,57035,56889,57060,56890,56894,57036,57037,56899,57061,56902,56903,56907,57038,56910,56914,56920,56924,57040,57041,56930,57042,56933,57043,56936,57044,56942,57045,57045,56945,56949,57062,56950,56954,56955,57046,56958,56958,56962,56966,57047,56969,57063,57063,56970,56974,56975,56978,56982,57064,56983,56986,56986,56990,56994,56994,57048,57065,57066,56997,57001,57002,57005,57008,57008,57049,57013,57014,57050,57067,57021,57022,57026,57026,57029,57051,57068,57032,57052,57069,57053,56772,56772,57054,57070,57071,57055,56780,56786,57056,57072,56803,57057,56808,56808,56815,56817,57033,57058,56835,56840,56848,57073,56849,57034,56860,56865,56870,56875,57059,56884,56886,56886,57035,57060,56890,57036,57074,57037,57061,57075,56902,56907,57038,57038,56914,56916,57039,56920,57040,56927,57041,57042,56933,56936,56939,57044,57045,56949,57062,56954,57076,57077,56955,56958,56958,56966,57078,57079,57047,57063,57063,56974,57080,56975,56982,57064,57064,56986,56994,57066,57001,57081,57008,57013,57014,57017,57021,57026,57068,57052,57082,57069,56772,57070,57071,56780,56786,56803,56808,56817,57033,56835,56840,56840,57073,56849,56849,56860,56861,56865,56875,56879,57059,56886,57060,56900,56902,57038,57038,56916,56917,57039,57040,56927,56927,57042,56933,57044,56949,57083,57062,57076,57084,57077,56958,57078,57063,57080,56975,56975,57064,56994,57066,57081,57085,57002,57008,57014,57017,57026,57051,57068,57082,57086,57086,57069,57070,57070,57071,56786,56798,56803,56817,56821,57033,56840,56840,56849,56861,56861,56865,56879,56879,57059,57060,57075,56900,57038,57038,56917,57039,57039,56927,56933,56939,57044,57083,57062,57084,57087,57087,57077,57078,56975,56994,57065,57065,57066,57085,57002,57014,57067,57068,57086,57070,57070,56786,57072,56798,56817,56821,56840,56861,57088,56840,57088,56821,56879,57060,56890,57075,57038,57039,57039,56933,56939,56939,57083,57062,57062,57087,57078,57065,57085,57089,57065,57089,56975,57085,57002,57067,57051,57068,57070,56791,56798,56821,56861,56879,57090,57090,56821,57088,57090,57088,56861,56879,56890,57074,57037,57075,57039,57062,57078,57079,57067,56975,57089,57067,57089,57085,57017,57051,57070,57091,56821,57090,57091,57090,56879,56821,57091,56791,56879,57074,57037,57039,56939,57092,57039,57092,57037,57062,57079,57063,56975,57067,57017,57070,57072,57093,57070,57093,57017,56879,57037,57094,57094,56791,57091,57094,57091,56879,56939,57062,57095,57095,57037,57092,57095,57092,56939,57062,57063,56975,56975,57017,57093,56975,57093,57072,57096,56791,57094,57096,57094,57037,56791,57096,57072,57062,56975,57097,57062,57097,57098,57095,57098,57099,57095,57099,57037,57098,57095,57062,57098,57072,57096,57096,57037,57099,57096,57099,57098,57072,57098,57097,57072,57097,56975,57100,57101,57102,57102,57103,57104,57104,57105,57106,57106,57107,57100,57100,57102,57104,57104,57106,57100,57108,57109,57110,57110,57111,57112,57112,57113,57114,57115,57116,57117,57117,57118,57108,57108,57110,57112,57112,57114,57115,57115,57117,57108,57108,57112,57115,57119,57120,57121,57121,57122,57123,57123,57119,57121,57124,57125,57126,57126,57127,57128,57129,57130,57131,57131,57132,57133,57134,57135,57136,57136,57137,57138,57139,57140,57141,57141,57142,57143,57143,57144,57145,57146,57147,57148,57149,57124,57126,57126,57128,57129,57131,57133,57134,57134,57136,57138,57150,57139,57141,57141,57143,57145,57148,57149,57126,57126,57129,57131,57131,57134,57138,57150,57141,57145,57148,57126,57131,57131,57138,57150,57150,57145,57146,57146,57148,57131,57131,57150,57146,57151,57152,57153,57154,57155,57156,57157,57158,57159,57159,57160,57161,57161,57162,57151,57151,57153,57154,57154,57156,57157,57157,57159,57161,57161,57151,57154,57154,57157,57161,57163,57164,57165,57166,57167,57168,57169,57170,57171,57171,57172,57173,57174,57175,57176,57176,57177,57178,57179,57180,57181,57181,57182,57183,57184,57185,57186,57187,57188,57189,57189,57190,57191,57191,57192,57193,57194,57195,57196,57196,57197,57198,57199,57200,57201,57202,57203,57204,57205,57206,57207,57207,57208,57209,57209,57210,57211,57212,57213,57214,57214,57215,57216,57216,57217,57218,57218,57219,57220,57220,57221,57222,57222,57223,57224,57224,57225,57226,57227,57228,57229,57229,57230,57231,57232,57233,57234,57234,57235,57236,57237,57238,57239,57239,57240,57241,57241,57242,57243,57243,57244,57245,57245,57246,57247,57248,57249,57250,57250,57251,57252,57253,57254,57255,57255,57256,57257,57257,57258,57259,57259,57260,57261,57262,57263,57264,57264,57265,57266,57267,57268,57269,57269,57270,57271,57272,57273,57274,57274,57275,57276,57277,57278,57279,57280,57281,57282,57282,57283,57284,57285,57286,57287,57288,57289,57290,57290,57291,57292,57293,57294,57295,57295,57296,57297,57298,57299,57300,57300,57301,57302,57302,57303,57304,57304,57305,57306,57306,57307,57308,57309,57310,57311,57312,57313,57314,57315,57316,57317,57318,57319,57320,57321,57322,57323,57323,57324,57325,57326,57327,57328,57329,57330,57331,57331,57332,57333,57333,57334,57335,57336,57337,57338,57339,57340,57341,57341,57342,57343,57343,57344,57345,57345,57346,57347,57348,57349,57350,57351,57352,57353,57354,57355,57356,57356,57357,57358,57359,57360,57361,57361,57362,57363,57364,57365,57366,57366,57367,57368,57368,57369,57370,57371,57372,57373,57374,57375,57376,57163,57165,57166,57166,57168,57377,57377,57169,57171,57171,57173,57378,57174,57176,57178,57179,57181,57183,57184,57186,57379,57187,57189,57191,57194,57196,57198,57199,57201,57380,57202,57204,57381,57205,57207,57209,57212,57214,57216,57216,57218,57220,57222,57224,57226,57227,57229,57231,57232,57234,57236,57237,57239,57241,57241,57243,57245,57245,57247,57382,57248,57250,57252,57253,57255,57257,57257,57259,57261,57262,57264,57266,57267,57269,57271,57272,57274,57276,57277,57279,57383,57383,57280,57282,57282,57284,57285,57285,57287,57384,57288,57290,57292,57293,57295,57297,57298,57300,57302,57302,57304,57306,57306,57308,57385,57309,57311,57386,57312,57314,57387,57315,57317,57318,57321,57323,57325,57326,57328,57388,57329,57331,57333,57333,57335,57336,57336,57338,57389,57339,57341,57343,57343,57345,57347,57351,57353,57354,57354,57356,57358,57359,57361,57363,57364,57366,57368,57374,57376,57390,57166,57377,57171,57171,57378,57391,57392,57174,57178,57178,57179,57183,57393,57184,57379,57379,57187,57191,57194,57198,57394,57395,57199,57380,57396,57202,57381,57381,57205,57209,57212,57216,57220,57222,57226,57227,57227,57231,57232,57397,57237,57241,57241,57245,57382,57253,57257,57261,57262,57266,57398,57399,57267,57271,57271,57272,57276,57383,57282,57285,57400,57288,57292,57293,57297,57401,57402,57298,57302,57302,57306,57385,57309,57386,57403,57404,57312,57387,57387,57315,57318,57320,57321,57325,57405,57329,57333,57339,57343,57347,57351,57354,57358,57358,57359,57363,57406,57364,57368,57373,57374,57390,57166,57171,57391,57392,57178,57183,57407,57393,57379,57379,57191,57193,57194,57394,57408,57395,57380,57409,57410,57396,57381,57381,57209,57211,57212,57220,57222,57227,57232,57236,57397,57241,57382,57253,57261,57411,57262,57398,57399,57399,57271,57276,57383,57285,57384,57412,57400,57292,57293,57401,57402,57402,57302,57385,57413,57309,57403,57404,57387,57318,57320,57325,57414,57405,57333,57336,57389,57339,57347,57351,57358,57363,57415,57406,57368,57371,57373,57390,57163,57166,57391,57392,57183,57416,57379,57193,57417,57194,57408,57418,57410,57381,57211,57212,57222,57227,57419,57397,57382,57420,57253,57411,57262,57399,57276,57277,57383,57384,57421,57412,57292,57293,57402,57385,57404,57318,57320,57320,57414,57422,57405,57336,57389,57389,57347,57348,57350,57351,57363,57415,57368,57370,57370,57371,57390,57163,57391,57392,57392,57416,57423,57407,57379,57417,57409,57410,57211,57424,57419,57382,57425,57420,57411,57426,57262,57276,57276,57277,57384,57421,57292,57427,57428,57293,57385,57429,57404,57320,57320,57422,57430,57389,57348,57350,57350,57363,57431,57415,57370,57390,57163,57392,57423,57407,57417,57432,57395,57409,57211,57424,57382,57248,57425,57411,57426,57276,57384,57433,57276,57433,57426,57421,57427,57434,57434,57428,57385,57429,57320,57430,57389,57350,57431,57415,57390,57163,57163,57423,57435,57407,57432,57194,57236,57424,57248,57425,57426,57433,57425,57433,57384,57436,57421,57434,57434,57385,57437,57429,57430,57326,57389,57431,57415,57163,57435,57438,57407,57194,57418,57227,57236,57248,57439,57425,57384,57436,57434,57437,57429,57326,57388,57415,57163,57438,57407,57418,57395,57227,57248,57252,57440,57439,57384,57441,57436,57437,57429,57388,57442,57415,57438,57407,57227,57252,57443,57444,57440,57384,57445,57441,57437,57429,57442,57446,57415,57407,57395,57227,57443,57447,57227,57447,57212,57448,57444,57384,57449,57445,57437,57429,57446,57450,57389,57415,57395,57443,57448,57451,57451,57212,57447,57451,57447,57443,57448,57384,57452,57453,57449,57437,57429,57450,57405,57389,57395,57211,57451,57452,57454,57451,57454,57212,57452,57451,57448,57455,57453,57437,57403,57429,57405,57389,57211,57456,57454,57455,57457,57454,57457,57212,57455,57454,57452,57455,57437,57458,57403,57405,57389,57389,57456,57212,57455,57458,57459,57403,57389,57212,57455,57459,57460,57403,57212,57457,57403,57457,57455,57455,57460,57461,57413,57403,57455,57455,57461,57413,57462,57463,57464,57465,57466,57467,57467,57468,57469,57469,57462,57464,57464,57465,57467,57467,57469,57464,57470,57471,57472,57473,57474,57475,57476,57477,57478,57478,57479,57480,57480,57481,57482,57483,57484,57485,57485,57486,57487,57488,57489,57490,57490,57470,57472,57473,57475,57476,57476,57478,57480,57480,57482,57483,57483,57485,57487,57488,57490,57472,57473,57476,57480,57480,57483,57487,57491,57488,57472,57480,57487,57491,57491,57472,57473,57473,57480,57491,57492,57493,57494,57495,57496,57497,57497,57498,57499,57500,57501,57502,57502,57503,57504,57504,57505,57506,57506,57507,57508,57508,57509,57510,57511,57512,57513,57514,57515,57516,57516,57492,57494,57495,57497,57499,57500,57502,57504,57504,57506,57508,57511,57513,57517,57518,57514,57516,57494,57495,57499,57519,57500,57504,57504,57508,57510,57518,57516,57494,57494,57499,57520,57519,57504,57510,57521,57518,57494,57494,57520,57519,57519,57510,57511,57517,57521,57494,57494,57519,57511,57511,57517,57494,57522,57523,57524,57524,57525,57526,57527,57522,57524,57524,57526,57527,57528,57529,57530,57530,57531,57532,57532,57533,57534,57535,57528,57530,57530,57532,57534,57534,57535,57530,57536,57537,57538,57538,57539,57540,57540,57541,57542,57543,57536,57538,57538,57540,57542,57542,57543,57538,57544,57545,57546,57546,57547,57548,57549,57550,57551,57552,57553,57554,57555,57556,57557,57557,57558,57559,57560,57561,57562,57562,57563,57564,57565,57566,57567,57567,57568,57569,57569,57570,57571,57572,57573,57574,57574,57575,57576,57576,57577,57578,57578,57579,57580,57581,57582,57583,57583,57584,57585,57585,57586,57587,57587,57588,57589,57589,57590,57591,57592,57593,57594,57595,57596,57597,57598,57599,57600,57601,57544,57546,57546,57548,57602,57549,57551,57552,57552,57554,57603,57604,57555,57557,57557,57559,57560,57562,57564,57605,57565,57567,57569,57569,57571,57606,57572,57574,57576,57576,57578,57580,57581,57583,57585,57585,57587,57589,57592,57594,57595,57595,57597,57607,57598,57600,57601,57601,57546,57602,57549,57552,57603,57604,57557,57560,57560,57562,57605,57605,57565,57569,57569,57606,57572,57572,57576,57580,57580,57581,57585,57591,57592,57595,57595,57607,57598,57598,57601,57602,57549,57603,57604,57604,57560,57605,57605,57569,57572,57572,57580,57585,57591,57595,57598,57598,57602,57549,57604,57605,57608,57604,57608,57549,57605,57572,57585,57589,57591,57598,57598,57549,57608,57598,57608,57605,57605,57585,57589,57589,57598,57605,57609,57610,57611,57611,57612,57613,57613,57614,57615,57615,57609,57611,57611,57613,57615,57616,57617,57618,57618,57619,57620,57620,57616,57618,57621,57622,57623,57623,57624,57625,57625,57626,57627,57627,57628,57629,57629,57630,57631,57632,57621,57623,57623,57625,57627,57627,57629,57631,57633,57632,57623,57627,57631,57634,57633,57623,57627,57627,57634,57633,57635,57636,57637,57637,57638,57639,57640,57641,57642,57642,57643,57644,57644,57645,57646,57646,57635,57637,57637,57639,57647,57647,57640,57642,57642,57644,57646,57646,57637,57647,57647,57642,57646,57648,57649,57650,57650,57651,57652,57653,57654,57655,57655,57656,57657,57657,57658,57659,57660,57661,57662,57662,57663,57664,57664,57648,57650,57650,57652,57653,57655,57657,57659,57665,57660,57662,57662,57664,57650,57655,57659,57665,57665,57662,57650,57653,57655,57665,57665,57650,57653,57666,57667,57668,57668,57669,57670,57670,57671,57672,57672,57673,57666,57666,57668,57670,57670,57672,57666,57674,57675,57676,57676,57677,57678,57678,57679,57680,57680,57674,57676,57676,57678,57680,57681,57682,57683,57683,57684,57685,57685,57686,57687,57687,57688,57681,57681,57683,57685,57685,57687,57681,57689,57690,57691,57691,57692,57693,57693,57694,57695,57695,57689,57691,57691,57693,57695,57696,57697,57698,57698,57699,57700,57700,57701,57702,57702,57703,57704,57705,57706,57707,57707,57708,57709,57709,57710,57696,57696,57698,57700,57700,57702,57704,57705,57707,57709,57709,57696,57700,57700,57704,57705,57705,57709,57700,57711,57712,57713,57713,57714,57715,57716,57717,57718,57713,57715,57716,57716,57718,57711,57711,57713,57716,57719,57720,57721,57721,57722,57723,57723,57719,57721,57724,57725,57726,57726,57727,57728,57728,57729,57724,57724,57726,57728,57730,57731,57732,57732,57733,57734,57734,57735,57736,57736,57737,57738,57738,57730,57732,57732,57734,57736,57736,57738,57732,57739,57740,57741,57741,57742,57743,57743,57744,57739,57739,57741,57743,57745,57746,57747,57748,57749,57750,57750,57751,57752,57752,57753,57754,57754,57755,57756,57756,57757,57745,57758,57748,57750,57756,57745,57747,57758,57750,57752,57756,57747,57759,57760,57758,57752,57754,57756,57759,57760,57752,57754,57754,57759,57760,57761,57762,57763,57763,57764,57765,57765,57766,57767,57767,57768,57761,57761,57763,57765,57765,57767,57761,57769,57770,57771,57771,57772,57773,57773,57769,57771,57774,57775,57776,57776,57777,57778,57778,57779,57780,57780,57781,57774,57774,57776,57778,57778,57780,57774,57782,57783,57784,57784,57785,57786,57786,57787,57788,57789,57790,57791,57791,57792,57782,57782,57784,57786,57786,57788,57793,57789,57791,57782,57782,57786,57793,57793,57789,57782,57794,57795,57796,57796,57797,57794,57798,57799,57800,57800,57801,57802,57803,57804,57798,57798,57800,57802,57802,57803,57798,57805,57806,57807,57807,57808,57805,57809,57810,57811,57811,57812,57813,57814,57809,57811,57811,57813,57814,57815,57816,57817,57817,57818,57819,57819,57815,57817,57820,57821,57822,57822,57823,57824,57824,57825,57820,57820,57822,57824,57826,57827,57828,57828,57829,57830,57830,57831,57832,57832,57833,57834,57835,57836,57837,57837,57826,57828,57828,57830,57832,57834,57835,57837,57828,57832,57834,57834,57837,57828,57838,57839,57840,57840,57841,57842,57842,57838,57840,57843,57844,57845,57845,57846,57847,57847,57848,57849,57849,57843,57845,57845,57847,57849,57850,57851,57852,57852,57853,57854,57854,57855,57856,57856,57857,57850,57850,57852,57854,57854,57856,57850,57858,57859,57860,57860,57861,57862,57863,57864,57858,57860,57862,57865,57865,57863,57858,57858,57860,57865,57866,57867,57868,57868,57869,57870,57870,57871,57872,57873,57874,57875,57875,57876,57877,57868,57870,57872,57873,57875,57877,57866,57868,57872,57878,57873,57877,57866,57872,57878,57878,57877,57866,57879,57880,57881,57882,57883,57884,57884,57885,57886,57887,57888,57879,57882,57884,57886,57887,57879,57881,57889,57882,57886,57886,57887,57881,57881,57889,57886,57890,57891,57892,57892,57893,57894,57895,57896,57897,57897,57890,57892,57892,57894,57895,57895,57897,57892,57898,57899,57900,57901,57902,57903,57903,57904,57905,57906,57907,57898,57898,57900,57901,57901,57903,57905,57906,57898,57901,57901,57905,57906,57908,57909,57910,57910,57911,57912,57912,57913,57908,57908,57910,57912,57914,57915,57916,57916,57917,57918,57919,57920,57921,57921,57922,57923,57924,57914,57916,57916,57918,57925,57919,57921,57923,57924,57916,57925,57925,57919,57923,57926,57924,57925,57925,57923,57926,57927,57928,57929,57929,57930,57931,57931,57932,57927,57927,57929,57931,57933,57934,57935,57935,57936,57937,57937,57938,57939,57939,57940,57933,57933,57935,57937,57937,57939,57933,57941,57942,57943,57943,57944,57945,57946,57947,57948,57948,57949,57950,57950,57941,57943,57943,57945,57951,57952,57946,57948,57943,57951,57953,57952,57948,57950,57950,57943,57953,57953,57952,57950,57954,57955,57956,57956,57957,57958,57958,57959,57960,57960,57961,57962,57963,57954,57956,57956,57958,57960,57960,57962,57963,57963,57956,57960,57964,57965,57966,57966,57967,57968,57968,57969,57970,57970,57971,57964,57964,57966,57968,57968,57970,57964,57972,57973,57974,57974,57975,57976,57976,57977,57978,57978,57979,57980,57980,57972,57974,57974,57976,57978,57978,57980,57974,57981,57982,57983,57984,57985,57986,57987,57988,57989,57989,57990,57991,57991,57992,57993,57981,57983,57984,57986,57987,57989,57993,57981,57984,57986,57989,57991,57993,57984,57986,57986,57991,57993,57994,57995,57996,57996,57997,57998,57998,57999,58000,58001,58002,58003,58003,58004,57994,57996,57998,58000,58001,58003,57994,57996,58000,58005,58006,58001,57994,57994,57996,58005,58007,58006,57994,57994,58005,58007,58008,58009,58010,58010,58011,58012,58012,58013,58014,58015,58016,58017,58017,58018,58019,58019,58020,58021,58021,58022,58023,58023,58024,58008,58010,58012,58014,58015,58017,58019,58010,58014,58025,58026,58015,58019,58008,58010,58025,58026,58019,58021,58008,58025,58027,58026,58021,58023,58008,58027,58028,58029,58026,58023,58008,58028,58030,58030,58029,58023,58023,58008,58030,58031,58032,58033,58033,58034,58035,58036,58037,58031,58033,58035,58038,58039,58036,58031,58033,58038,58040,58040,58039,58031,58031,58033,58040,58041,58042,58043,58043,58044,58045,58045,58046,58041,58041,58043,58045,58047,58048,58049,58049,58050,58051,58052,58053,58054,58055,58047,58049,58052,58054,58055,58055,58049,58051,58051,58052,58055,58056,58057,58058,58058,58059,58060,58060,58061,58062,58063,58064,58065,58066,58056,58058,58058,58060,58062,58062,58063,58065,58066,58058,58062,58062,58065,58066,58067,58068,58069,58069,58070,58071,58071,58072,58067,58067,58069,58071,58073,58074,58075,58075,58076,58077,58078,58079,58080,58080,58081,58082,58082,58083,58084,58085,58086,58087,58088,58089,58090,58090,58091,58092,58073,58075,58077,58078,58080,58082,58082,58084,58093,58085,58087,58094,58095,58088,58090,58090,58092,58073,58073,58077,58096,58078,58082,58093,58097,58085,58094,58095,58090,58073,58073,58096,58078,58078,58093,58097,58097,58094,58095,58095,58073,58078,58078,58097,58095,58098,58099,58100,58100,58101,58102,58102,58103,58104,58104,58105,58106,58107,58098,58100,58100,58102,58104,58104,58106,58107,58107,58100,58104,58108,58109,58110,58111,58112,58113,58113,58114,58115,58115,58116,58117,58117,58118,58119,58108,58110,58120,58120,58111,58113,58117,58119,58121,58108,58120,58113,58115,58117,58121,58122,58108,58113,58115,58121,58122,58122,58113,58115,58123,58124,58125,58125,58126,58127,58127,58128,58129,58129,58130,58131,58131,58123,58125,58125,58127,58129,58129,58131,58125,58132,58133,58134,58134,58135,58136,58136,58132,58134,58137,58138,58139,58139,58140,58141,58141,58142,58137,58137,58139,58141,58143,58144,58145,58146,58147,58148,58148,58149,58150,58150,58143,58145,58146,58148,58150,58150,58145,58146,58151,58152,58153,58153,58154,58155,58155,58156,58157,58157,58158,58151,58151,58153,58155,58155,58157,58151,58159,58160,58161,58161,58162,58163,58163,58164,58165,58165,58159,58161,58161,58163,58165,58166,58167,58168,58168,58169,58170,58170,58171,58172,58172,58173,58174,58174,58175,58176,58176,58177,58178,58178,58179,58180,58181,58166,58168,58168,58170,58172,58174,58176,58178,58180,58181,58168,58168,58172,58174,58174,58178,58180,58180,58168,58174,58182,58183,58184,58184,58185,58186,58186,58187,58188,58188,58189,58190,58191,58192,58193,58194,58195,58196,58196,58182,58184,58184,58186,58188,58188,58190,58191,58191,58193,58197,58194,58196,58184,58184,58188,58191,58197,58194,58184,58184,58191,58197,58198,58199,58200,58200,58201,58202,58203,58204,58205,58205,58206,58207,58207,58208,58198,58198,58200,58202,58203,58205,58207,58207,58198,58202,58202,58203,58207,58209,58210,58211,58211,58212,58213,58213,58214,58215,58215,58216,58217,58217,58218,58219,58219,58209,58211,58211,58213,58215,58215,58217,58219,58219,58211,58215,58220,58221,58222,58222,58223,58224,58225,58226,58227,58228,58229,58230,58230,58231,58232,58232,58220,58222,58222,58224,58225,58225,58227,58228,58228,58230,58232,58232,58222,58225,58225,58228,58232,58233,58234,58235,58236,58237,58238,58238,58239,58240,58241,58242,58243,58243,58244,58245,58246,58247,58248,58248,58249,58250,58250,58251,58252,58252,58253,58254,58254,58233,58235,58236,58238,58240,58241,58243,58245,58246,58248,58250,58250,58252,58254,58235,58236,58240,58240,58241,58245,58246,58250,58254,58254,58235,58240,58240,58245,58255,58246,58254,58240,58240,58255,58256,58256,58246,58240,58257,58258,58259,58260,58261,58262,58262,58257,58259,58259,58260,58262,58263,58264,58265,58265,58266,58267,58267,58268,58269,58269,58270,58271,58272,58273,58274,58274,58275,58276,58276,58263,58265,58267,58269,58271,58271,58272,58274,58274,58276,58265,58265,58267,58271,58271,58274,58265,58277,58278,58279,58280,58281,58282,58282,58283,58284,58284,58285,58286,58286,58287,58277,58280,58282,58284,58286,58277,58279,58279,58280,58284,58284,58286,58279,58288,58289,58290,58290,58291,58292,58293,58294,58295,58295,58296,58297,58298,58299,58300,58300,58288,58290,58290,58292,58293,58293,58295,58297,58298,58300,58290,58290,58293,58297,58297,58298,58290,58301,58302,58303,58303,58304,58305,58305,58306,58307,58307,58301,58303,58303,58305,58307,58308,58309,58310,58310,58311,58312,58312,58313,58314,58314,58315,58316,58316,58317,58318,58318,58308,58310,58310,58312,58314,58314,58316,58318,58318,58310,58314,58319,58320,58321,58321,58322,58323,58323,58324,58319,58319,58321,58323,58325,58326,58327,58327,58328,58329,58329,58330,58331,58331,58332,58325,58325,58327,58329,58329,58331,58325,58333,58334,58335,58335,58336,58337,58337,58338,58339,58339,58340,58341,58341,58342,58343,58343,58344,58345,58345,58346,58347,58347,58348,58349,58349,58350,58351,58351,58352,58353,58353,58354,58355,58355,58356,58357,58333,58335,58337,58337,58339,58341,58341,58343,58345,58345,58347,58349,58349,58351,58353,58353,58355,58357,58333,58337,58341,58341,58345,58349,58349,58353,58357,58357,58333,58341,58341,58349,58357,58358,58359,58360,58361,58362,58363,58363,58364,58365,58365,58366,58367,58368,58369,58370,58370,58371,58372,58372,58373,58374,58374,58375,58376,58376,58377,58378,58378,58379,58380,58381,58382,58383,58383,58384,58385,58385,58386,58358,58358,58360,58361,58361,58363,58365,58368,58370,58372,58374,58376,58378,58378,58380,58381,58381,58383,58385,58385,58358,58361,58361,58365,58367,58367,58368,58372,58374,58378,58381,58381,58385,58361,58361,58367,58372,58372,58374,58381,58381,58361,58372,58387,58388,58389,58390,58391,58392,58393,58394,58395,58395,58396,58397,58397,58398,58399,58399,58400,58401,58401,58402,58403,58403,58404,58405,58405,58406,58387,58387,58389,58407,58390,58392,58393,58393,58395,58397,58399,58401,58403,58403,58405,58387,58387,58407,58408,58409,58390,58393,58393,58397,58399,58403,58387,58408,58409,58393,58399,58399,58403,58408,58408,58409,58399,58410,58411,58412,58413,58414,58415,58416,58417,58418,58418,58419,58420,58420,58421,58422,58422,58423,58424,58424,58425,58426,58427,58428,58429,58429,58430,58431,58431,58432,58433,58434,58435,58410,58410,58412,58436,58436,58413,58415,58416,58418,58420,58422,58424,58426,58427,58429,58431,58434,58410,58436,58436,58415,58416,58416,58420,58422,58422,58426,58427,58427,58431,58433,58437,58434,58436,58436,58416,58422,58422,58427,58433,58437,58436,58422,58422,58433,58437,58438,58439,58440,58440,58441,58442,58442,58443,58444,58444,58445,58446,58447,58448,58449,58449,58450,58451,58451,58452,58453,58453,58454,58455,58455,58456,58457,58458,58459,58460,58460,58461,58462,58462,58463,58464,58438,58440,58442,58442,58444,58446,58447,58449,58451,58451,58453,58455,58455,58457,58458,58458,58460,58462,58438,58442,58446,58447,58451,58455,58455,58458,58462,58464,58438,58446,58455,58462,58464,58464,58446,58447,58447,58455,58464,58465,58466,58467,58468,58469,58470,58471,58472,58473,58474,58475,58476,58476,58465,58467,58467,58468,58470,58471,58473,58474,58474,58476,58467,58467,58470,58471,58471,58474,58467,58477,58478,58479,58479,58480,58481,58482,58483,58484,58484,58485,58486,58486,58487,58488,58489,58477,58479,58479,58481,58482,58482,58484,58486,58486,58488,58489,58489,58479,58482,58482,58486,58489,58490,58491,58492,58492,58493,58494,58494,58495,58496,58497,58498,58490,58490,58492,58494,58494,58496,58497,58497,58490,58494,58499,58500,58501,58501,58502,58503,58503,58504,58505,58505,58499,58501,58501,58503,58505,58506,58507,58508,58508,58509,58510,58510,58506,58508,58511,58512,58513,58513,58514,58515,58515,58516,58517,58517,58518,58519,58511,58513,58515,58515,58517,58519,58519,58511,58515,58520,58521,58522,58522,58523,58524,58524,58525,58526,58527,58528,58529,58529,58530,58520,58520,58522,58524,58524,58526,58531,58527,58529,58520,58520,58524,58531,58531,58527,58520,58532,58533,58534,58534,58535,58536,58536,58537,58538,58538,58539,58532,58532,58534,58536,58536,58538,58532,58540,58541,58542,58542,58543,58544,58544,58545,58546,58546,58547,58548,58548,58549,58540,58540,58542,58544,58544,58546,58548,58548,58540,58544,58550,58551,58552,58552,58553,58554,58554,58555,58556,58557,58558,58559,58560,58561,58562,58563,58564,58565,58565,58566,58567,58567,58568,58569,58570,58571,58572,58572,58573,58574,58550,58552,58554,58554,58556,58557,58557,58559,58560,58560,58562,58563,58563,58565,58567,58567,58569,58575,58575,58570,58572,58550,58554,58557,58557,58560,58563,58563,58567,58575,58575,58572,58574,58576,58550,58557,58563,58575,58574,58576,58557,58563,58563,58574,58577,58577,58576,58563,58578,58579,58580,58580,58581,58582,58582,58583,58584,58584,58585,58586,58587,58588,58589,58589,58590,58591,58591,58592,58593,58593,58594,58595,58596,58597,58598,58598,58599,58600,58601,58602,58603,58578,58580,58582,58582,58584,58586,58589,58591,58593,58593,58595,58596,58596,58598,58600,58601,58603,58578,58578,58582,58586,58587,58589,58593,58593,58596,58600,58601,58578,58586,58604,58587,58593,58593,58600,58601,58601,58586,58604,58604,58593,58601,58605,58606,58607,58607,58608,58609,58610,58611,58612,58612,58613,58614,58614,58615,58616,58616,58617,58618,58618,58619,58605,58609,58610,58612,58612,58614,58616,58618,58605,58607,58607,58609,58612,58612,58616,58618,58618,58607,58612,58620,58621,58622,58622,58623,58624,58624,58625,58626,58627,58628,58629,58629,58630,58631,58631,58620,58622,58624,58626,58627,58627,58629,58631,58631,58622,58624,58624,58627,58631,58632,58633,58634,58634,58635,58636,58636,58637,58638,58638,58639,58640,58641,58642,58643,58643,58644,58645,58632,58634,58636,58636,58638,58640,58646,58641,58643,58643,58645,58632,58636,58640,58647,58646,58643,58632,58632,58636,58647,58647,58646,58632,58648,58649,58650,58650,58651,58652,58652,58653,58648,58648,58650,58652,58654,58655,58656,58656,58657,58658,58658,58659,58660,58660,58661,58654,58654,58656,58658,58658,58660,58654,58662,58663,58664,58664,58665,58666,58666,58667,58668,58668,58662,58664,58664,58666,58668,58669,58670,58671,58671,58672,58673,58673,58669,58671,58674,58675,58676,58676,58677,58678,58678,58679,58680,58680,58681,58674,58674,58676,58678,58678,58680,58674,58682,58683,58684,58684,58685,58686,58686,58687,58688,58688,58689,58690,58690,58691,58692,58692,58682,58684,58684,58686,58688,58688,58690,58692,58692,58684,58688,58693,58694,58695,58695,58696,58697,58697,58698,58699,58699,58693,58695,58695,58697,58699,58700,58701,58702,58702,58703,58704,58704,58705,58706,58706,58707,58708,58708,58700,58702,58702,58704,58706,58706,58708,58702,58709,58710,58711,58712,58713,58714,58714,58715,58716,58716,58717,58718,58719,58720,58721,58721,58709,58711,58712,58714,58716,58716,58718,58719,58719,58721,58711,58712,58716,58719,58719,58711,58712,58722,58723,58724,58724,58725,58726,58726,58727,58728,58728,58722,58724,58724,58726,58728,58729,58730,58731,58731,58732,58733,58734,58735,58729,58729,58731,58733,58733,58734,58729,58736,58737,58738,58738,58739,58740,58740,58741,58742,58742,58743,58736,58736,58738,58740,58740,58742,58736,58744,58745,58746,58746,58747,58748,58748,58749,58750,58751,58752,58753,58753,58754,58744,58744,58746,58748,58748,58750,58751,58751,58753,58744,58744,58748,58751,58755,58756,58757,58757,58758,58759,58759,58760,58761,58762,58763,58764,58764,58765,58755,58757,58759,58761,58762,58764,58755,58755,58757,58761,58761,58762,58755,58766,58767,58768,58768,58769,58770,58770,58771,58766,58766,58768,58770,58772,58773,58774,58774,58775,58776,58776,58777,58778,58778,58772,58774,58774,58776,58778,58779,58780,58781,58781,58782,58783,58783,58784,58785,58785,58779,58781,58781,58783,58785,58786,58787,58788,58788,58789,58790,58790,58786,58788,58791,58792,58793,58793,58794,58795,58795,58796,58797,58797,58798,58799,58791,58793,58795,58797,58799,58791,58791,58795,58797,58800,58801,58802,58802,58803,58804,58804,58805,58800,58800,58802,58804,58806,58807,58808,58808,58809,58806,58810,58811,58812,58813,58814,58815,58815,58816,58817,58817,58818,58819,58820,58821,58822,58822,58823,58824,58825,58826,58827,58828,58829,58830,58830,58831,58832,58833,58834,58835,58835,58836,58837,58838,58839,58840,58840,58841,58842,58843,58844,58845,58845,58846,58847,58848,58849,58850,58850,58851,58852,58853,58854,58855,58856,58857,58858,58859,58860,58861,58861,58862,58863,58810,58812,58813,58813,58815,58817,58820,58822,58824,58864,58825,58827,58828,58830,58832,58833,58835,58837,58865,58838,58840,58843,58845,58847,58848,58850,58852,58852,58853,58855,58856,58858,58866,58859,58861,58863,58810,58813,58817,58820,58824,58864,58864,58827,58828,58828,58832,58833,58833,58837,58867,58865,58840,58842,58842,58843,58847,58847,58848,58852,58852,58855,58856,58866,58859,58863,58810,58817,58819,58820,58864,58828,58867,58865,58842,58847,58852,58856,58856,58866,58863,58868,58810,58819,58820,58828,58833,58833,58867,58842,58842,58847,58856,58856,58863,58868,58868,58819,58869,58820,58833,58842,58842,58856,58868,58868,58869,58820,58820,58842,58868,58870,58871,58872,58873,58874,58875,58876,58877,58878,58879,58880,58881,58881,58882,58883,58884,58885,58886,58887,58888,58889,58890,58891,58892,58893,58894,58895,58895,58896,58897,58898,58899,58900,58900,58901,58902,58902,58903,58904,58905,58906,58907,58907,58908,58909,58910,58911,58912,58913,58914,58915,58915,58916,58917,58918,58919,58920,58920,58921,58922,58923,58924,58925,58925,58926,58927,58928,58929,58930,58930,58931,58932,58932,58933,58934,58934,58935,58936,58937,58938,58939,58939,58940,58941,58942,58943,58944,58944,58945,58946,58947,58948,58949,58950,58951,58952,58952,58953,58954,58955,58956,58957,58958,58959,58960,58961,58962,58963,58964,58965,58966,58967,58968,58969,58969,58970,58971,58971,58972,58973,58973,58974,58975,58976,58977,58978,58979,58980,58981,58981,58982,58983,58983,58984,58985,58986,58987,58988,58989,58990,58991,58991,58992,58993,58994,58995,58996,58997,58998,58999,58999,59000,59001,59001,59002,59003,59004,59005,59006,59007,59008,59009,59009,59010,59011,59011,59012,59013,59014,59015,59016,59016,59017,59018,59019,59020,59021,59021,59022,59023,59023,59024,59025,59025,59026,59027,59028,59029,59030,59031,59032,59033,59033,59034,59035,59036,59037,59038,59039,59040,59041,59041,59042,59043,59044,59045,59046,59047,59048,59049,59050,59051,59052,59052,59053,59054,59055,59056,59057,59058,59059,59060,59060,59061,59062,59063,59064,59065,59065,59066,59067,59067,59068,59069,59070,59071,59072,59072,59073,59074,59074,59075,59076,59076,59077,59078,59079,59080,59081,59081,59082,59083,59084,59085,59086,59086,59087,59088,59089,59090,59091,59092,59093,59094,59094,59095,59096,59096,59097,59098,59098,59099,59100,59101,59102,59103,59104,59105,59106,59106,59107,59108,59108,59109,59110,59111,59112,59113,59113,59114,59115,59115,59116,59117,59118,59119,59120,59120,59121,59122,59123,59124,59125,59126,59127,59128,59129,59130,59131,59132,59133,59134,59135,59136,59137,59138,59139,59140,59140,59141,59142,59143,59144,59145,59146,59147,59148,59149,59150,59151,59152,59153,59154,59154,59155,59156,59157,59158,59159,59160,59161,59162,59163,59164,59165,59165,59166,59167,59168,59169,59170,59171,59172,59173,59173,59174,59175,59176,59177,59178,59178,59179,59180,59181,59182,59183,59184,59185,59186,59186,59187,59188,59188,59189,59190,59191,59192,59193,59193,59194,59195,59195,59196,59197,59197,59198,59199,59199,59200,59201,59202,59203,59204,59205,59206,59207,59208,59209,59210,59210,59211,59212,59213,59214,59215,59215,59216,59217,59217,59218,59219,59220,59221,59222,59223,59224,59225,59225,59226,59227,59227,59228,59229,59229,59230,59231,59232,59233,59234,59235,59236,59237,59237,59238,59239,59240,59241,59242,59242,59243,59244,59244,59245,59246,59247,59248,59249,59249,59250,59251,59252,59253,59254,59255,59256,59257,59258,59259,59260,59260,59261,59262,59262,59263,59264,59264,59265,59266,59267,59268,59269,59269,59270,59271,59272,59273,59274,59275,59276,59277,59277,59278,59279,59280,59281,59282,59283,59284,59285,59286,59287,59288,59288,59289,59290,59291,59292,59293,59293,59294,59295,59295,59296,59297,58870,58872,59298,58873,58875,59299,58876,58878,59300,58879,58881,58883,58883,58884,58886,58887,58889,59301,58890,58892,59302,58893,58895,58897,58900,58902,58904,59303,58905,58907,58910,58912,58913,58913,58915,58917,58918,58920,58922,58923,58925,58927,58927,58928,58930,58930,58932,58934,58937,58939,58941,58942,58944,58946,58947,58949,59304,58950,58952,58954,59305,58955,58957,58957,58958,58960,58964,58966,58967,58967,58969,58971,58971,58973,58975,58976,58978,59306,59307,58979,58981,58981,58983,58985,58989,58991,58993,59308,58994,58996,58997,58999,59001,59001,59003,59004,59004,59006,59309,59007,59009,59011,59011,59013,59310,59310,59014,59016,59016,59018,59311,59019,59021,59023,59023,59025,59027,59312,59031,59033,59033,59035,59313,59314,59036,59038,59039,59041,59043,59044,59046,59047,59047,59049,59050,59050,59052,59054,59055,59057,59315,59316,59058,59060,59060,59062,59317,59063,59065,59067,59067,59069,59318,59070,59072,59074,59074,59076,59078,59079,59081,59083,59084,59086,59088,59089,59091,59319,59092,59094,59096,59096,59098,59100,59101,59103,59320,59104,59106,59108,59108,59110,59321,59111,59113,59115,59115,59117,59322,59118,59120,59122,59123,59125,59126,59126,59128,59323,59132,59134,59135,59135,59137,59138,59138,59140,59142,59143,59145,59324,59146,59148,59325,59149,59151,59326,59152,59154,59156,59157,59159,59327,59160,59162,59328,59163,59165,59167,59168,59170,59329,59173,59175,59330,59330,59176,59178,59181,59183,59184,59186,59188,59190,59191,59193,59195,59195,59197,59199,59199,59201,59202,59204,59205,59207,59331,59208,59210,59213,59215,59217,59217,59219,59332,59220,59222,59333,59225,59227,59229,59232,59234,59334,59335,59235,59237,59237,59239,59240,59240,59242,59244,59244,59246,59336,59247,59249,59251,59255,59257,59258,59258,59260,59262,59262,59264,59266,59267,59269,59271,59275,59277,59279,59280,59282,59283,59283,59285,59286,59286,59288,59290,59291,59293,59295,59295,59297,58870,58870,59298,58873,58879,58883,58886,59337,58887,59301,59302,58893,58897,58898,58900,58904,59303,58907,58909,58910,58913,58917,58918,58922,58923,58927,58930,58934,59338,58937,58941,58941,58942,58946,58946,58947,59304,59339,58950,58954,59305,58957,58960,58964,58967,58971,58971,58975,58976,59307,58981,58985,59308,58996,58997,58997,59001,59004,59340,59007,59011,59310,59016,59311,59311,59019,59023,59023,59027,59028,59312,59033,59313,59314,59038,59039,59039,59043,59341,59044,59047,59050,59055,59315,59342,59316,59060,59317,59343,59063,59067,59067,59318,59070,59070,59074,59078,59079,59083,59084,59084,59088,59344,59096,59100,59345,59101,59320,59346,59346,59104,59108,59347,59111,59115,59115,59322,59348,59118,59122,59349,59123,59126,59323,59131,59132,59135,59135,59138,59142,59324,59146,59325,59350,59149,59326,59326,59152,59156,59351,59157,59327,59163,59167,59352,59171,59173,59330,59330,59178,59180,59180,59181,59184,59186,59190,59191,59191,59195,59199,59204,59207,59353,59331,59210,59212,59212,59213,59217,59223,59225,59229,59335,59237,59240,59240,59244,59336,59247,59251,59252,59255,59258,59262,59262,59266,59354,59267,59271,59355,59275,59279,59280,59280,59283,59286,59356,59291,59295,59295,58870,58873,59300,58879,58886,59337,59301,58890,59302,58897,59357,58898,58904,59303,59303,58909,59358,59358,58910,58917,59359,58918,58923,58927,58934,58936,59338,58941,58946,58946,59304,59339,59305,58960,58961,59360,58964,58971,59307,58985,59361,59362,59308,58997,58997,59004,59309,59310,59311,59023,59363,59312,59313,59364,59314,59039,59039,59341,59044,59054,59055,59342,59365,59316,59317,59343,59067,59070,59070,59078,59366,59079,59084,59344,59096,59345,59367,59346,59108,59321,59347,59115,59348,59118,59349,59123,59123,59323,59129,59129,59131,59135,59135,59142,59368,59324,59325,59369,59350,59326,59156,59351,59327,59370,59328,59163,59352,59171,59330,59180,59186,59191,59199,59353,59331,59212,59212,59217,59332,59333,59223,59229,59371,59335,59240,59372,59247,59252,59254,59255,59262,59267,59355,59272,59280,59286,59290,59356,59295,58873,58876,59300,58886,59337,58890,59302,59302,59357,59373,58898,59303,59358,59358,58917,59359,59359,58923,58927,58927,58936,59374,59375,59338,58946,58954,59305,58961,59376,59360,58971,59306,59307,59361,58993,59362,58997,59310,59023,59028,59363,59313,59364,59364,59039,59044,59054,59342,59365,59343,59070,59366,59366,59079,59344,59092,59096,59367,59101,59346,59321,59377,59347,59348,59118,59123,59129,59129,59135,59368,59324,59369,59378,59378,59350,59156,59351,59370,59160,59160,59328,59352,59171,59180,59184,59186,59199,59202,59204,59353,59212,59212,59332,59379,59333,59229,59231,59371,59240,59336,59372,59252,59254,59254,59262,59354,59280,59290,59380,59381,59356,58873,59299,58876,58886,58886,59337,59302,59302,59373,58898,58898,59358,59359,58927,59374,59382,59375,58946,59339,58954,58961,58963,59383,59376,58971,59306,59361,58986,58993,58997,59309,59011,59310,59028,59363,59364,59044,59366,59344,59384,59385,59092,59367,59101,59321,59377,59377,59348,59118,59118,59129,59368,59378,59156,59351,59351,59160,59352,59171,59184,59186,59186,59202,59204,59204,59212,59379,59333,59231,59386,59371,59336,59387,59372,59254,59354,59388,59381,58873,59299,58886,59302,59359,58927,59382,59389,59375,59339,59339,58954,58963,58963,59383,58971,58989,58993,59309,59011,59028,59030,59363,59044,59050,59366,59384,59089,59319,59385,59367,59101,59377,59118,59118,59368,59390,59378,59351,59352,59186,59204,59391,59186,59391,59171,59204,59379,59392,59333,59386,59232,59371,59387,59372,59372,59354,59393,59388,58873,59299,59299,59302,58898,59359,59382,59394,59389,59339,58963,58963,58971,58976,58988,58989,59309,59011,59030,59363,59363,59050,59054,59366,59089,59319,59319,59367,59101,59101,59118,59390,59324,59378,59352,59204,59392,59395,59395,59171,59391,59395,59391,59204,59333,59232,59334,59371,59372,59393,59380,59388,59299,59299,58898,59359,59389,58963,58976,58986,58988,59309,59340,59011,59363,59363,59054,59365,59101,59390,59396,59101,59396,59319,59143,59324,59352,59397,59171,59395,59397,59395,59392,59220,59333,59334,59334,59371,59393,59299,59359,59398,59299,59398,59380,59394,59389,58976,59340,59363,59365,59399,59319,59396,59399,59396,59390,59319,59399,59366,59400,59143,59352,59171,59397,59401,59171,59401,59329,59220,59334,59393,59402,59380,59398,59402,59398,59359,59380,59402,59280,59394,58976,59403,59394,59403,59359,59309,59340,59365,59390,59400,59404,59404,59366,59399,59404,59399,59390,59400,59352,59405,59401,59406,59407,59401,59407,59329,59406,59401,59397,59220,59393,59408,59409,59280,59402,59409,59402,59359,59280,59409,59275,58976,59306,59410,59410,59359,59403,59410,59403,58976,59309,59365,59411,59309,59411,58986,59400,59405,59412,59400,59412,59413,59404,59413,59414,59404,59414,59366,59413,59404,59400,59406,59220,59415,59415,59329,59407,59415,59407,59406,59220,59408,59416,59417,59275,59409,59417,59409,59359,59275,59417,59274,59306,58986,59418,59418,59359,59410,59418,59410,59306,59411,59317,59419,59411,59419,58986,59317,59411,59365,59420,59366,59414,59420,59414,59413,59421,59413,59412,59421,59412,59405,59413,59421,59420,59366,59420,59422,59366,59422,59343,59220,59416,59423,59423,59329,59415,59423,59415,59220,59424,59274,59417,59424,59417,59359,59274,59424,59272,59425,58986,59419,59425,59419,59317,58986,59425,59426,59418,59426,59427,59418,59427,59359,59426,59418,58986,59428,59420,59429,59428,59429,59430,59420,59428,59431,59422,59431,59432,59422,59432,59343,59431,59422,59420,59421,59430,59429,59421,59429,59420,59430,59421,59405,59433,59329,59423,59433,59423,59416,59329,59433,59168,59434,59272,59424,59434,59424,59359,59272,59434,59267,59435,59426,59436,59435,59436,59343,59426,59435,59437,59427,59437,59438,59427,59438,59359,59437,59427,59426,59425,59343,59436,59425,59436,59426,59343,59425,59317,59439,59431,59440,59439,59440,59441,59431,59439,59442,59432,59442,59443,59432,59443,59343,59442,59432,59431,59428,59441,59440,59428,59440,59431,59441,59428,59430,59433,59444,59445,59433,59445,59168,59444,59433,59416,59446,59267,59434,59446,59434,59359,59267,59446,59444,59447,59442,59448,59447,59448,59449,59447,59343,59443,59447,59443,59442,59450,59442,59439,59450,59439,59441,59450,59449,59448,59450,59448,59442,59451,59437,59452,59451,59452,59449,59451,59359,59438,59451,59438,59437,59447,59437,59435,59447,59435,59343,59447,59449,59452,59447,59452,59437,59453,59444,59446,59446,59359,59454,59446,59454,59453,59445,59453,59455,59445,59455,59168,59453,59445,59444,59455,59449,59456,59455,59456,59168,59449,59455,59453,59451,59453,59454,59451,59454,59359,59453,59451,59449,59450,59168,59456,59450,59456,59449,59168,59450,59441,59457,59458,59459,59459,59460,59461,59461,59462,59463,59463,59457,59459,59459,59461,59463,59464,59465,59466,59466,59467,59468,59468,59469,59470,59471,59472,59473,59474,59475,59476,59476,59464,59466,59466,59468,59470,59470,59471,59473,59477,59474,59476,59476,59466,59470,59470,59473,59477,59477,59476,59470,59478,59479,59480,59480,59481,59482,59482,59483,59484,59484,59485,59486,59486,59487,59488,59488,59489,59490,59490,59491,59478,59478,59480,59482,59482,59484,59486,59486,59488,59490,59490,59478,59482,59482,59486,59490,59492,59493,59494,59494,59495,59496,59496,59497,59498,59499,59500,59501,59501,59502,59503,59503,59504,59505,59505,59506,59507,59507,59508,59509,59509,59510,59511,59511,59512,59492,59492,59494,59496,59496,59498,59499,59499,59501,59503,59503,59505,59507,59507,59509,59511,59511,59492,59496,59496,59499,59503,59503,59507,59511,59511,59496,59503,59513,59514,59515,59516,59517,59518,59518,59519,59520,59521,59522,59523,59523,59513,59515,59516,59518,59520,59521,59523,59515,59524,59516,59520,59520,59521,59515,59515,59524,59520,59525,59526,59527,59528,59529,59530,59530,59531,59532,59532,59533,59534,59534,59535,59536,59536,59525,59527,59527,59528,59530,59530,59532,59534,59534,59536,59527,59527,59530,59534,59537,59538,59539,59539,59540,59541,59541,59542,59543,59543,59544,59537,59537,59539,59541,59541,59543,59537,28918,28917,29976,29975,29974,30289,30289,30116,29973,29972,29971,29970,29970,29969,30212,30212,29968,29967,29965,29964,30160,30160,30191,30190,30190,29963,29962,29960,29959,30115,29957,29956,30353,30353,30114,29955,29954,29953,30393,30393,30351,30113,29951,29950,29949,29949,29948,29947,29945,29944,29943,29942,29941,29940,29940,29939,29938,29937,29936,29935,29934,29933,30112,59545,59546,59547,59548,59549,59550,59550,59551,59552,59553,59554,59555,59555,59556,59557,59557,59558,59559,59559,59560,59561,59562,59563,59564,59565,59566,59567,59567,59568,59569,59569,28795,28794,28794,28949,28948,28947,28946,28969,28969,28963,28945,28944,28943,28962,28941,28940,28939,28938,28937,28968,28968,28936,28935,28935,28934,28961,28932,28931,28930,28929,28928,28927,28926,28925,28924,28924,28923,28922,28922,28921,28920,28920,28919,28918,28918,29976,29975,29975,30289,29973,29973,29972,29970,29970,30212,29967,29966,29965,30160,30160,30190,29962,29960,30115,29958,29957,30353,29955,29955,29954,30393,30393,30113,29952,29951,29949,29947,29946,29945,29943,29943,29942,29940,29938,29937,29935,29934,30112,59545,59545,59547,59548,59548,59550,59552,59553,59555,59557,59559,59561,59570,59570,59562,59564,59565,59567,59569,59569,28794,28948,28947,28969,28945,28944,28962,28942,28942,28941,28939,28938,28968,28935,28935,28961,28933,28929,28927,28926,28920,28918,29975,29975,29973,29970,29966,30160,29962,29961,29960,29958,29958,29957,29955,29955,30393,29952,29952,29951,29947,29946,29943,29940,29940,29938,29935,29934,59545,59548,59548,59552,59571,59572,59553,59557,59559,59570,59564,59564,59565,59569,59569,28948,28947,28947,28945,28944,28944,28942,28939,28938,28935,28933,28930,28929,28926,28922,28920,29975,29975,29970,29967,29966,29962,29961,29961,29958,29955,29955,29952,29947,29940,29935,29934,29934,59548,59571,59572,59557,59559,59559,59564,59569,59569,28947,28944,28944,28939,28938,28930,28926,28924,28922,29975,29967,29961,29955,29947,29940,29934,59571,59559,59569,59573,59559,59573,59572,59569,28944,28938,28924,28922,29967,29966,29961,29947,29946,29940,59571,59569,28938,59574,59574,59572,59573,59574,59573,59569,28930,28924,29967,29967,29966,29947,29947,29946,59571,28933,59572,59574,28933,59574,28938,28932,28930,29967,29947,59571,59575,59572,28933,28932,28932,29967,29947,29947,59575,59572,59572,28932,29947,59576,59577,59578,59579,59580,59581,59581,59582,59583,59584,59585,59586,59587,59588,59589,59589,59590,59591,59592,59593,59594,59594,59595,59596,59596,59597,59598,59598,59599,59600,59600,59601,59602,59602,59603,59604,59605,59606,59607,59608,59609,59610,59611,59612,59613,59613,59614,59615,59616,59617,59618,59618,59619,59620,59620,59621,59622,59623,59624,59625,59625,59626,59627,59628,59629,59630,59631,59632,59633,59633,59634,59635,59636,59637,59638,59639,59640,59641,59641,59642,59643,59644,59645,59646,59646,59647,59648,59648,59649,59650,59651,59652,59653,59654,59655,59656,59657,59658,59659,59660,59661,59662,59663,59664,59665,59666,59667,59668,59668,59669,59670,59670,59671,59672,59673,59674,59675,59675,59676,59677,59678,59679,59680,59680,59681,59682,59683,59684,59685,59686,59687,59688,59689,59690,59691,59692,59693,59694,59694,59695,59696,59697,59698,59699,59699,59700,59701,59702,59703,59704,59705,59706,59707,59707,59708,59709,59710,59711,59712,59712,59713,59714,59715,59716,59717,59717,59718,59719,59719,59720,59721,59722,59723,59724,59724,59725,59726,59726,59727,59728,59728,59729,59730,59731,59732,59733,59733,59734,59735,59736,59737,59738,59739,59740,59741,59741,59742,59743,59743,59744,59745,59745,59746,59747,59747,59748,59749,59750,59751,59752,59753,59754,59755,59756,59757,59758,59759,59760,59761,59761,59762,59763,59764,59765,59766,59767,59768,59769,59769,59770,59771,59771,59772,59773,59774,59775,59776,59777,59778,59779,59779,59780,59781,59782,59783,59784,59784,59785,59786,59786,59787,59788,59788,59789,59790,59791,59792,59793,59793,59794,59795,59795,59796,59797,59798,59799,59800,59800,59801,59802,59803,59804,59805,59806,59807,59808,59809,59810,59811,59811,59812,59813,59814,59815,59816,59816,59817,59818,59819,59820,59821,59821,59822,59823,59824,59825,59826,59827,59828,59829,59830,59831,59832,59833,59834,59835,59835,59836,59837,59838,59839,59840,59841,59842,59843,59843,59844,59845,59846,59847,59848,59849,59850,59851,59851,59852,59853,59853,59854,59855,59856,59857,59858,59859,59860,59861,59861,59862,59863,59863,59864,59865,59866,59867,59868,59868,59869,59870,59870,59871,59872,59873,59874,59875,59875,59876,59877,59877,59878,59879,59880,59881,59882,59883,59884,59885,59885,59886,59887,59887,59888,59889,59890,59891,59892,59893,59894,59895,59896,59897,59898,59899,59900,59901,59902,59903,59904,59905,59906,59907,59907,59908,59909,59910,59911,59912,59912,59913,59914,59915,59916,59917,59918,59919,59920,59921,59922,59923,59923,59924,59925,59926,59927,59928,59929,59930,59931,59931,59932,59933,59934,59935,59936,59937,59938,59939,59940,59941,59942,59942,59943,59944,59944,59945,59946,59946,59947,59948,59949,59950,59951,59952,59953,59954,59955,59956,59957,59958,59959,59960,59961,59962,59963,59963,59964,59965,59965,59966,59967,59967,59968,59969,59970,59971,59972,59973,59974,59975,59975,59976,59977,59978,59979,59980,59981,59982,59983,59983,59984,59985,59985,59986,59987,59987,59988,59989,59990,59991,59992,59993,59994,59995,59995,59996,59997,59997,59998,59999,60000,60001,60002,60003,60004,60005,60006,60007,60008,60008,60009,60010,60010,60011,60012,60013,60014,60015,60015,60016,60017,60017,60018,60019,60019,60020,60021,60022,60023,60024,60024,60025,60026,60027,60028,60029,60030,60031,60032,60032,60033,60034,60035,60036,60037,60038,60039,60040,60041,60042,60043,60044,60045,60046,60046,60047,60048,60049,60050,60051,60052,60053,60054,60054,60055,60056,60056,60057,60058,60059,60060,60061,60062,60063,60064,60065,60066,60067,60067,60068,60069,60069,59576,59578,59579,59581,59583,59584,59586,60070,59587,59589,59591,59592,59594,59596,59600,59602,59604,59605,59607,59608,59608,59610,60071,59611,59613,59615,60072,59616,59618,59618,59620,59622,59623,59625,59627,59628,59630,60073,59631,59633,59635,60074,59636,59638,59639,59641,59643,59644,59646,59648,59651,59653,60075,60076,59654,59656,59657,59659,59660,59660,59662,60077,60078,59666,59668,59673,59675,59677,59678,59680,59682,59683,59685,60079,59686,59688,60080,59689,59691,60081,59692,59694,59696,59697,59699,59701,59702,59704,60082,60083,59705,59707,59707,59709,60084,59710,59712,59714,59715,59717,59719,59719,59721,59722,59722,59724,59726,59731,59733,59735,60085,59736,59738,59739,59741,59743,59745,59747,59749,59750,59752,60086,60086,59753,59755,59756,59758,60087,59759,59761,59763,59764,59766,60088,59769,59771,59773,59774,59776,60089,59777,59779,59781,59782,59784,59786,59786,59788,59790,59791,59793,59795,59795,59797,60090,59798,59800,59802,59803,59805,59806,59806,59808,59809,59809,59811,59813,59814,59816,59818,59819,59821,59823,59824,59826,60091,59827,59829,60092,60092,59830,59832,59835,59837,59838,59838,59840,60093,59841,59843,59845,59849,59851,59853,59853,59855,60094,59856,59858,60095,59859,59861,59863,59863,59865,60096,59866,59868,59870,59873,59875,59877,59880,59882,60097,59883,59885,59887,59887,59889,59890,59890,59892,60098,59893,59895,60099,59896,59898,60100,59899,59901,60101,59902,59904,60102,59905,59907,59909,60103,59910,59912,59912,59914,59915,59915,59917,60104,59918,59920,60105,60105,59921,59923,60106,59926,59928,59931,59933,60107,60108,59934,59936,60109,59937,59939,59940,59942,59944,59944,59946,59948,59951,59952,59954,59955,59957,60110,59961,59963,59965,59965,59967,59969,60111,59970,59972,60112,59973,59975,59978,59980,59981,59981,59983,59985,59985,59987,59989,59990,59992,60113,59993,59995,59997,59997,59999,60000,60006,60008,60010,60017,60019,60021,60022,60024,60026,60027,60029,60030,60032,60034,60035,60035,60037,60114,60038,60040,60115,60041,60043,60116,60044,60046,60048,60117,60049,60051,60118,60052,60054,60059,60061,60119,60120,60062,60064,60121,60065,60067,60067,60069,59578,60122,59579,59583,60123,59584,60070,60124,59592,59596,59598,59600,59604,60125,59605,59608,59611,59615,60126,60072,59618,59622,60127,59623,59627,59628,60073,60128,60128,59631,59635,60074,59638,59639,59639,59643,60129,60130,59644,59648,59650,59651,60075,60076,59656,60131,60131,59657,59660,60078,59668,59670,59672,59673,59677,60132,59678,59682,60133,59686,60080,59689,60081,60134,59692,59696,59697,59697,59701,60135,60135,59702,60082,60083,59707,60084,60136,59710,59714,59715,59719,59722,59722,59726,59728,59731,59735,60085,60085,59738,60137,60138,59739,59743,59750,60086,59755,60139,59756,60087,60140,59759,59763,60141,59764,60088,59769,59773,59774,59774,60089,60142,60142,59777,59781,59782,59786,59790,59790,59791,59795,60143,59798,59802,59806,59809,59813,59813,59814,59818,60144,59819,59823,60145,59824,60091,60091,59827,60092,60092,59832,59833,59835,59838,60093,59841,59845,59846,59848,59849,59853,59856,60095,59859,59859,59863,60096,59866,59870,59872,59873,59877,59879,59879,59880,60097,59883,59887,59890,60099,59896,60100,59899,60101,59902,59905,59909,60146,60147,60103,59912,59912,59915,60104,60148,59918,60105,60105,59923,59925,60149,60106,59928,59931,60107,60150,60108,59936,60109,60109,59939,60151,59940,59944,59948,59951,59954,59955,59955,60110,59958,59960,59961,59965,59965,59969,60152,60111,59972,60153,60154,60112,59975,59978,59981,59985,59985,59989,60155,60155,59990,60113,59993,59997,60000,60005,60006,60010,60015,60017,60021,60156,60022,60026,60026,60027,60030,60032,60035,60114,60115,60041,60116,60116,60044,60048,60118,60054,60056,60059,60119,60120,60120,60064,60121,60067,59578,60122,60122,59583,60157,60123,60070,60158,60124,59596,59598,59598,59604,60125,60125,59608,60071,60159,59611,60126,60072,59622,60127,60127,59627,60160,59628,60128,59635,60074,59639,60129,60130,59648,59650,59650,60075,60076,60131,59660,60077,60078,59670,59672,59672,59677,60132,60132,59682,60161,60133,60080,59689,60134,59692,59697,59697,60135,60082,60082,60083,60084,60136,59714,59715,59715,59722,59728,60162,59731,60085,60138,59743,59745,60163,59750,59755,60139,60087,60164,60140,59763,60141,60141,60088,59767,59767,59769,59774,59774,60142,59781,60165,59782,59790,59790,59795,60090,60143,59802,60166,59806,59813,59818,59818,60144,59823,60145,60091,60092,60092,59833,59835,59835,60093,59841,59848,59853,60094,59856,59859,60096,59866,59872,59873,59879,60097,59883,59893,60099,60100,59899,59902,60102,59905,60146,60167,60147,59912,60104,60148,60105,59925,59931,60150,60108,60108,60109,60151,60151,59940,59948,59951,59955,59958,59960,59965,60152,60154,59975,59977,59978,59985,60155,60155,60113,59993,59993,60000,60002,60005,60010,60012,60015,60021,60168,60169,60156,60026,60026,60030,60032,60116,60048,60170,60118,60056,60058,60059,60120,60121,60067,60122,60157,60124,59598,60125,60171,60159,60126,60072,60127,60160,59628,59635,60074,60074,60129,60172,60173,60130,59650,60076,60131,60077,60078,59672,60132,60132,60161,59683,60133,59689,60134,60134,59697,60082,60082,60084,60174,60175,60136,59715,60162,60085,60137,60137,60138,59745,60163,59755,60139,60141,59767,59774,59774,59781,60176,60165,59790,60090,60143,60166,60177,59806,59818,59823,60145,60092,59835,59835,59841,59846,59846,59848,60094,59856,60096,60178,60178,59866,59873,60100,59899,60102,60179,60147,60104,60180,60148,59925,59931,60108,60151,60151,59948,59949,59951,59958,59960,59960,60152,60181,60153,60154,59977,60182,59978,60155,60155,59993,60002,60003,60005,60012,60015,60168,60183,60169,60026,60032,60115,60116,60170,60184,60118,60058,60059,60121,60067,60067,60157,60123,59591,60124,60125,60171,60126,60185,60072,60160,59628,59628,60074,60172,60173,59650,60076,60186,60078,60132,60132,59683,60079,60133,60134,60082,60082,60174,60187,60175,59715,59728,60137,59745,59749,60163,60139,60164,60140,60141,59774,59774,60176,60188,60188,60165,60090,59803,59806,59823,60189,60145,59835,59835,59846,60094,59856,60178,59873,59893,60100,60102,60190,60179,60104,60180,59925,60149,59931,60151,59949,59951,59960,60181,60111,60153,59977,60015,60183,60169,60169,60032,60114,60038,60115,60170,60191,60184,60058,60192,60059,60067,60067,60123,60158,59591,60125,60071,60193,60171,60185,60072,59628,60172,60194,60173,60076,60186,60132,60079,60133,60082,60187,60187,60175,59728,60162,60137,59749,59749,60163,60164,60140,59774,60188,60188,60090,60143,59803,59823,60195,60189,59835,60094,59856,59873,59879,59893,60102,60196,60190,60104,60180,59929,59931,59949,59949,59951,60181,60111,59977,60197,60015,60169,60114,60038,60170,60198,60051,60191,60058,60192,60067,60158,59587,59591,60071,60071,60193,60185,60199,60072,60172,60194,60076,60077,59665,60186,60079,60079,60133,60187,60187,59728,59730,59730,60162,59749,59749,60164,60140,60188,60143,60200,60188,60200,60140,59803,60195,60189,60189,60094,59856,59879,59883,60201,59879,60201,59856,59893,60196,59905,60190,60180,60149,59949,60181,60111,60111,60197,60182,60013,60015,60114,60038,60198,60117,60051,60058,60192,60192,60158,59587,59587,60071,60185,60185,60199,60172,59663,59665,60079,60187,59730,60202,60187,60202,60079,59730,59749,60140,60143,60177,60203,60203,60140,60200,60203,60200,60143,60189,59856,60204,60189,60204,59803,59883,59890,60205,60205,59856,60201,60205,60201,59883,60098,59893,59905,59929,59949,60111,60111,60182,60155,60012,60013,60114,60114,60038,60117,60192,59587,60206,60192,60206,60051,60185,60172,60207,60185,60207,59587,60208,60079,60202,60208,60202,59730,60079,60208,59663,60209,60140,60203,60209,60203,60177,60140,60209,59730,60210,59856,60205,60210,60205,59890,60210,59803,60204,60210,60204,59856,60211,59929,60111,60155,60002,60212,60155,60212,60111,60003,60012,60114,60114,60117,60051,60213,59587,60207,60213,60207,60172,60213,60051,60206,60213,60206,59587,60214,59663,60208,60214,60208,59730,59663,60214,60077,60177,59803,60215,60215,59730,60209,60215,60209,60177,59890,60098,60216,60216,59803,60210,60216,60210,59890,60211,60111,60212,60211,60212,60002,60002,60003,60114,60217,60051,60213,60213,60172,60218,60213,60218,60217,60051,60217,60219,60051,60219,60114,60220,60077,60214,60214,59730,60221,60214,60221,60220,60077,60220,60222,60077,60222,60194,60223,60215,60224,60223,60224,60098,60215,60223,59730,60215,59803,60216,60216,60098,60224,60216,60224,60215,59928,60211,60002,60217,60225,60226,60226,60114,60219,60226,60219,60217,60227,60217,60218,60227,60218,60172,60217,60227,60225,60228,60114,60226,60228,60226,60225,60114,60228,60002,60223,60229,60230,60223,60230,59730,60229,60223,60098,60229,60231,60232,60232,59730,60230,60232,60230,60229,60220,60231,60233,60233,60194,60222,60233,60222,60220,60232,60220,60221,60232,60221,59730,60220,60232,60231,60149,59928,60002,60234,60225,60235,60234,60235,60194,60225,60234,60236,60228,60236,60237,60228,60237,60002,60236,60228,60225,60227,60194,60235,60227,60235,60225,60194,60227,60172,60238,60231,60239,60238,60239,59905,60231,60238,60240,60233,60240,60241,60233,60241,60194,60240,60233,60231,60229,59905,60239,60229,60239,60231,59905,60229,60098,60190,60149,60002,60240,60002,60237,60240,60237,60236,60241,60236,60234,60241,60234,60194,60236,60241,60240,60002,60240,60238,60002,60238,59905,60167,60190,60002,60002,59905,60167,60242,60243,60244,60245,60246,60247,60247,60248,60249,60249,60250,60242,60244,60245,60247,60249,60242,60244,60244,60247,60249,59713,59712,60251,60251,60252,60253,60254,60255,60256,60257,60258,60259,60259,60260,60261,60262,60263,60264,60264,60265,60266,60267,60268,60269,60269,60270,60271,60271,60272,60273,60274,60275,60276,60276,60277,60278,60279,60280,60281,60281,60282,60283,60284,60285,60286,60286,60287,60288,60288,60289,60290,60291,60292,60293,60294,60295,60296,60296,60297,60298,60299,60300,60301,60301,60302,60303,60303,60304,60305,60306,60307,60308,60308,60309,60310,60310,60311,60312,60313,60314,60315,60315,60316,60317,60317,60318,60319,60320,60321,60322,60323,60324,60325,60326,60327,60328,60328,60329,60330,60330,60331,60332,60332,60333,60334,60335,60336,60337,60337,60338,60339,60340,60341,60342,60342,60343,60344,60345,60346,60347,60348,60349,60350,60350,60351,60352,60353,60354,60355,60356,60357,60358,60358,60359,60360,60361,60362,60363,60364,60365,60366,60366,60367,60368,60369,60370,60371,60371,60372,60373,60373,60374,60375,60376,60377,60378,60378,60379,60380,60380,60381,60382,60383,60384,60385,60385,60386,60387,60387,60388,60389,60390,60391,60392,60393,60394,60395,60396,60397,60398,60399,60400,60401,60402,60403,60404,60405,60406,60407,60407,60408,60409,60409,60410,60411,60411,60412,60413,60414,60415,60416,60417,60418,60419,60419,60420,60421,60421,60422,59789,59789,59788,59787,59783,59782,60165,60165,60188,60176,59778,59777,60142,60142,60089,59776,59775,59774,59773,59772,59771,59770,59770,59769,59768,59768,59767,60088,59765,59764,60141,60141,59763,59762,59760,59759,60140,60140,60164,60087,59757,59756,60139,59754,59753,60086,59751,59750,60163,60163,59749,59748,59746,59745,59744,59740,59739,60138,60138,60137,59738,59737,59736,60085,59732,59731,60162,60162,59730,59729,59729,59728,59727,59727,59726,59725,59723,59722,59721,59720,59719,59718,59716,59715,59714,59714,59713,60251,60251,60253,60423,60424,60254,60256,60257,60259,60261,60264,60266,60425,60267,60269,60271,60271,60273,60426,60427,60274,60276,60276,60278,60428,60279,60281,60283,60284,60286,60288,60288,60290,60429,60291,60293,60430,60294,60296,60298,60299,60301,60303,60306,60308,60310,60310,60312,60431,60315,60317,60319,60320,60322,60432,60323,60325,60433,60434,60326,60328,60328,60330,60332,60435,60335,60337,60337,60339,60436,60340,60342,60344,60344,60345,60347,60437,60348,60350,60350,60352,60438,60353,60355,60439,60356,60358,60360,60361,60363,60364,60364,60366,60368,60369,60371,60373,60376,60378,60380,60380,60382,60440,60383,60385,60387,60387,60389,60441,60390,60392,60442,60393,60395,60443,60443,60396,60398,60399,60401,60444,60444,60402,60404,60405,60407,60409,60409,60411,60413,60421,59789,59787,59783,60165,60176,59778,60142,59776,59770,59768,60088,59765,60141,59762,59760,60140,60087,59757,60139,59755,59754,60086,59752,59751,60163,59748,59747,59746,59744,59740,60138,59738,59737,60085,59735,59732,60162,59729,59729,59727,59725,59717,59716,59714,59714,60251,60423,60445,60424,60256,60256,60257,60261,60267,60271,60426,60426,60427,60276,60446,60279,60283,60284,60288,60429,60429,60291,60430,60430,60294,60298,60299,60303,60305,60447,60306,60310,60310,60431,60313,60313,60315,60319,60319,60320,60432,60432,60323,60433,60434,60328,60332,60435,60337,60436,60436,60340,60344,60437,60350,60438,60438,60353,60439,60448,60356,60360,60449,60361,60364,60364,60368,60450,60450,60369,60373,60376,60380,60440,60451,60383,60387,60441,60390,60442,60443,60398,60399,60399,60444,60404,60405,60409,60413,60419,60421,59787,59784,59783,60176,59779,59778,59776,59770,60088,59766,59765,59762,59761,59760,60087,59758,59757,59755,59754,59752,59751,59748,59747,59744,59743,59741,59740,59738,59733,59732,59729,59729,59725,59724,59717,59714,60423,60445,60256,60261,60452,60267,60426,60426,60276,60428,60428,60446,60283,60284,60429,60430,60430,60298,60453,60454,60299,60305,60447,60310,60313,60313,60319,60432,60455,60434,60332,60334,60435,60436,60436,60344,60347,60437,60438,60439,60439,60448,60360,60364,60450,60373,60375,60376,60440,60451,60387,60441,60441,60442,60393,60443,60399,60404,60456,60405,60413,60417,60419,59787,59785,59784,60176,59772,59770,59766,59761,59760,59758,59752,59748,59747,59741,59738,59737,59734,59733,59729,59718,59717,60423,60445,60261,60262,60457,60452,60426,60426,60428,60283,60458,60454,60305,60305,60447,60313,60313,60432,60433,60455,60332,60334,60334,60436,60347,60437,60439,60360,60364,60373,60375,60375,60440,60459,60460,60451,60441,60393,60443,60404,60456,60413,60414,60417,59787,59786,59786,59785,60176,59772,59766,59765,59765,59761,59758,59754,59752,59747,59741,59737,59735,59734,59729,59724,59718,60423,60445,60445,60262,60264,60461,60457,60426,60426,60283,60462,60458,60305,60313,60433,60455,60334,60334,60347,60437,60437,60360,60463,60364,60375,60459,60460,60441,60393,60393,60404,60464,60456,60414,60416,60465,60417,59786,59786,60176,59781,59765,59758,59757,59754,59747,59743,59742,59741,59735,59735,59734,59724,59718,60445,60264,60461,60426,60462,60458,60313,60433,60433,60334,60437,60437,60463,60449,60449,60364,60459,60466,60460,60393,60393,60464,60467,60456,60416,60468,60465,59786,59781,59765,59757,59754,59754,59743,59742,59742,59735,59724,59720,59718,60264,60425,60461,60462,60453,60458,60433,60433,60437,60449,60449,60459,60469,60466,60393,60467,60456,60468,60465,60465,59781,59780,59765,59754,59742,59742,59724,59723,59721,59720,60264,60264,60425,60462,60430,60453,60433,60449,60469,60470,60449,60470,60433,60471,60466,60467,60456,60465,59780,59772,59765,59742,59742,59723,59721,60264,60462,60284,60430,60433,60472,60430,60472,60284,60469,60473,60474,60474,60433,60470,60474,60470,60469,60471,60467,60475,60476,60456,59780,59742,59721,60477,59742,60477,59772,60478,60284,60472,60478,60472,60433,60284,60478,60264,60473,60471,60479,60479,60433,60474,60479,60474,60473,60471,60475,60480,60481,60476,59780,60482,59772,60477,60482,60477,59721,59772,60482,59773,60483,60264,60478,60483,60478,60433,60264,60483,59721,60471,60480,60484,60484,60433,60479,60484,60479,60471,60480,60481,59780,60485,59773,60482,60485,60482,59721,59773,60485,59775,60483,60484,60486,60483,60486,59721,60484,60483,60433,60484,60480,60487,60487,59721,60486,60487,60486,60484,60480,59780,59779,60487,59775,60485,60487,60485,59721,59775,60487,60480,60480,59779,59776,59776,59775,60480,60488,60489,60490,60490,60491,60492,60492,60493,60494,60495,60488,60490,60490,60492,60494,60496,60495,60490,60490,60494,60496,60497,60498,60499,60500,60501,60502,60503,60504,60403,60403,60402,60444,60400,60399,60398,60397,60396,60443,60443,60395,60394,60394,60393,60442,60391,60390,60441,60388,60387,60386,60384,60383,60451,60451,60460,60466,60466,60471,60473,60473,60469,60459,60459,60440,60382,60377,60376,60375,60370,60369,60450,60450,60368,60367,60365,60364,60363,60362,60361,60449,60449,60463,60360,60357,60356,60448,60448,60439,60355,60505,60506,60507,60507,60508,60509,60509,60510,60511,60512,60513,60514,60515,60516,60517,60518,60519,60520,60520,60521,60522,60522,60523,60524,60524,60525,60526,60527,60528,60529,60530,60531,60532,60532,60533,60534,60534,60535,60536,60536,60537,60538,60538,60539,60540,60541,60542,60543,60543,60544,60545,60546,60547,60548,60549,60550,60551,60551,60552,60553,60554,60555,60556,60557,60558,60559,60559,60560,60497,60497,60499,60561,60562,60500,60502,60563,60503,60403,60403,60444,60401,60400,60398,60397,60397,60443,60394,60394,60442,60392,60391,60441,60389,60384,60451,60466,60466,60473,60459,60459,60382,60381,60378,60377,60375,60371,60370,60450,60450,60367,60366,60365,60363,60362,60362,60449,60360,60357,60448,60355,60505,60507,60509,60509,60511,60564,60565,60512,60514,60514,60515,60517,60520,60522,60524,60524,60526,60527,60527,60529,60566,60530,60532,60534,60534,60536,60538,60538,60540,60541,60541,60543,60545,60546,60548,60549,60549,60551,60553,60554,60556,60567,60557,60559,60497,60562,60502,60568,60563,60403,60401,60401,60400,60397,60397,60394,60392,60391,60389,60388,60385,60384,60466,60466,60459,60381,60378,60375,60374,60371,60450,60366,60365,60362,60360,60357,60355,60569,60505,60509,60564,60565,60514,60517,60520,60524,60527,60527,60566,60530,60530,60534,60538,60541,60545,60546,60546,60549,60553,60557,60497,60561,60570,60562,60568,60571,60563,60401,60401,60397,60392,60385,60466,60381,60379,60378,60374,60366,60365,60360,60358,60357,60569,60505,60564,60565,60565,60517,60518,60527,60530,60538,60538,60541,60546,60546,60553,60554,60557,60561,60570,60570,60568,60572,60573,60571,60401,60401,60392,60391,60386,60385,60381,60379,60374,60373,60366,60360,60359,60358,60569,60574,60574,60505,60565,60565,60518,60520,60520,60527,60538,60538,60546,60554,60567,60557,60570,60573,60401,60391,60386,60381,60380,60371,60366,60359,60358,60574,60565,60565,60520,60538,60567,60570,60572,60572,60573,60391,60388,60386,60380,60371,60359,60358,60565,60538,60575,60565,60575,60358,60567,60572,60391,60391,60388,60380,60371,60358,60575,60575,60538,60576,60575,60576,60371,60554,60567,60391,60391,60380,60379,60372,60371,60576,60576,60538,60577,60576,60577,60372,60554,60391,60578,60554,60578,60538,60391,60379,60373,60579,60372,60577,60579,60577,60538,60372,60579,60373,60391,60373,60579,60579,60538,60578,60579,60578,60391,60580,60581,60582,60582,60583,60584,60584,60585,60586,60587,60588,60589,60589,60590,60591,60580,60582,60584,60584,60586,60592,60592,60587,60589,60589,60591,60580,60580,60584,60592,60592,60589,60580,60593,60594,60595,60595,60596,60597,60597,60598,60599,60599,60600,60593,60593,60595,60597,60597,60599,60593,60601,60602,60603,60603,60604,60605,60605,60606,60607,60607,60608,60601,60601,60603,60605,60605,60607,60601,60609,60610,60611,60612,60613,60614,60614,60615,60616,60617,60618,60609,60609,60611,60612,60612,60614,60616,60617,60609,60612,60612,60616,60617,60619,60620,60621,60621,60622,60623,60624,60625,60626,60626,60619,60621,60621,60623,60624,60624,60626,60621,60627,60628,60629,60629,60630,60631,60631,60632,60633,60633,60634,60627,60627,60629,60631,60631,60633,60627,60635,60636,60637,60637,60638,60639,60639,60640,60641,60641,60642,60643,60643,60635,60637,60637,60639,60641,60641,60643,60637,60644,60645,60646,60647,60648,60649,60649,60650,60651,60651,60652,60653,60653,60654,60655,60655,60644,60646,60656,60647,60649,60649,60651,60653,60653,60655,60646,60656,60649,60653,60653,60646,60656,60657,60658,60659,60659,60660,60661,60661,60662,60663,60663,60664,60665,60665,60657,60659,60659,60661,60663,60663,60665,60659,60666,60667,60668,60668,60669,60670,60670,60671,60666,60666,60668,60670,60672,60673,60674,60674,60675,60676,60676,60677,60678,60678,60679,60680,60680,60681,60682,60682,60683,60672,60672,60674,60676,60676,60678,60680,60680,60682,60672,60672,60676,60680,60684,60685,60686,60687,60688,60689,60689,60690,60684,60684,60686,60687,60687,60689,60684,60691,60692,60693,60693,60694,60695,60695,60696,60691,60691,60693,60695,60697,60698,60699,60699,60700,60701,60701,60702,60703,60703,60704,60705,60705,60697,60699,60699,60701,60703,60703,60705,60699,60706,60707,60708,60708,60709,60710,60710,60711,60712,60712,60706,60708,60708,60710,60712,60713,60714,60715,60715,60716,60717,60717,60718,60719,60719,60720,60721,60721,60722,60723,60723,60724,60725,60725,60713,60715,60715,60717,60719,60719,60721,60723,60725,60715,60719,60719,60723,60725,60726,60727,60728,60728,60729,60730,60730,60731,60732,60732,60733,60734,60734,60726,60728,60728,60730,60732,60732,60734,60728,60735,60736,60737,60738,60739,60740,60740,60741,60742,60743,60744,60745,60745,60746,60747,60748,60749,60750,60750,60751,60752,60753,60754,60755,60756,60757,60758,60758,60759,60760,60760,60761,60762,60763,60764,60765,60766,60767,60768,60768,60769,60770,60770,60771,60772,60773,60774,60775,60775,60776,60777,60777,60778,60779,60780,60781,60782,60782,60783,60784,60785,60786,60787,60787,60788,60789,60790,60791,60792,60792,60793,60794,60794,60795,60796,60796,60797,60798,60799,60800,60801,60801,60802,60803,60803,60804,60805,60805,60806,60807,60808,60809,60810,60810,60811,60812,60812,60813,60814,60814,60815,60816,60816,60817,60818,60819,60820,60821,60822,60823,60824,60824,60825,60826,60827,60828,60829,60829,60830,60831,60831,60832,60833,60833,60834,60835,60836,60837,60838,60838,60839,60840,60841,60842,60843,60844,60845,60846,60847,60848,60849,60850,60851,60852,60852,60853,60854,60854,60855,60856,60857,60858,60859,60859,60860,60861,60861,60862,60863,60863,60864,60865,60866,60867,60868,60868,60869,60870,60870,60871,60872,60872,60873,60874,60874,60875,60876,60876,60877,60878,60879,60880,60881,60882,60883,60884,60885,60886,60887,60887,60888,60889,60890,60891,60892,60892,60893,60894,60895,60896,60897,60897,60898,60899,60900,60901,60902,60903,60904,60905,60906,60907,60908,60908,60909,60910,60910,60911,60912,60912,60913,60914,60915,60916,60917,60917,60918,60919,60920,60921,60922,60923,60924,60925,60925,60926,60927,60928,60929,60930,60930,60931,60932,60933,60934,60935,60935,60936,60937,60938,60939,60940,60940,60941,60942,60942,60943,60944,60945,60946,60947,60947,60948,60949,60949,60950,60951,60952,60953,60954,60954,60955,60956,60957,60958,60959,60959,60960,60961,60961,60962,60963,60964,60965,60966,60966,60967,60968,60969,60970,60971,60971,60972,60973,60974,60975,60976,60977,60735,60737,60978,60738,60740,60742,60743,60745,60745,60747,60979,60748,60750,60752,60980,60753,60755,60756,60758,60760,60760,60762,60981,60982,60763,60765,60766,60768,60770,60770,60772,60983,60773,60775,60777,60777,60779,60984,60780,60782,60784,60785,60787,60789,60790,60792,60794,60794,60796,60798,60799,60801,60803,60803,60805,60807,60985,60808,60810,60810,60812,60814,60814,60816,60818,60822,60824,60826,60827,60829,60831,60831,60833,60835,60836,60838,60840,60986,60841,60843,60844,60846,60987,60847,60849,60988,60850,60852,60854,60854,60856,60989,60857,60859,60861,60861,60863,60865,60866,60868,60870,60872,60874,60876,60876,60878,60990,60990,60879,60881,60885,60887,60889,60889,60890,60892,60895,60897,60899,60900,60902,60903,60903,60905,60906,60906,60908,60910,60991,60915,60917,60923,60925,60927,60928,60930,60932,60992,60933,60935,60938,60940,60942,60945,60947,60949,60949,60951,60952,60952,60954,60956,60993,60957,60959,60959,60961,60963,60964,60966,60968,60969,60971,60973,60974,60976,60977,60977,60737,60994,60995,60978,60740,60740,60742,60745,60745,60979,60996,60748,60752,60980,60980,60755,60997,60997,60756,60760,60982,60765,60766,60766,60770,60983,60998,60773,60777,60999,60780,60784,60784,60785,60789,61000,60790,60794,61001,60799,60803,60985,60810,60814,60821,60822,60826,61002,60827,60831,60831,60835,61003,60836,60840,61004,60986,60843,61005,61006,60844,60987,60847,60988,61007,61007,60850,60854,60857,60861,60865,61008,60866,60870,60872,60876,60990,60990,60881,60882,60884,60885,60889,60889,60892,60894,61009,60895,60899,61010,60900,60903,60903,60906,60910,60991,60917,60919,60923,60927,61011,61012,60928,60932,60992,60935,60937,61013,60938,60942,60945,60949,60952,60993,60959,60963,60964,60968,61014,61015,60969,60973,61016,60974,60977,60977,60994,61017,61018,60995,60740,60740,60745,60996,60748,60980,60997,60997,60760,60981,60982,60766,60983,60998,60777,60984,61019,60999,60784,60784,60789,61020,61000,60794,60798,60798,61001,60803,61021,60985,60814,60819,60821,60826,61002,60831,61003,60836,61004,60986,61006,60987,60847,60847,61007,60854,61022,60857,60865,61023,61008,60870,60990,60882,60884,60884,60889,60894,61024,61009,60899,61025,61010,60903,60903,60910,60912,61026,60991,60919,60923,61011,61027,61027,61012,60932,60992,60937,61013,61013,60942,60944,60945,60952,60956,60993,60963,61028,60964,61014,61029,61015,60973,61016,61016,60977,61017,61030,61018,60740,60740,60996,61031,60997,60981,61032,61033,60982,60983,60983,60998,60984,61019,60784,61020,61034,61000,60798,60798,60803,60807,61021,60814,60818,60819,60826,61035,61036,61002,61003,60836,60986,61005,61006,60847,60854,61022,60865,61037,61038,61023,60870,60990,60884,60894,61024,60899,61039,61040,61025,60903,60903,60912,60914,61041,61026,60919,61027,60932,61042,60992,61013,60944,60945,60956,60993,60993,61028,61043,61029,61015,61016,61016,61017,61044,61045,61030,60740,61032,61033,60983,60983,60984,61046,61047,61019,61020,61048,61034,60798,60798,60807,61021,61021,60818,60819,61036,61003,61049,61050,61006,60854,61022,61037,61038,61038,60870,60872,60990,60894,61051,61052,61024,61039,61040,60903,60914,61041,60919,61053,61027,61042,60992,60992,60944,61054,60945,60993,61043,61029,61016,61044,61055,61045,60740,61032,60983,61046,61047,61020,61048,61048,60798,61021,61021,60819,61035,61036,61049,60836,61050,60854,60989,61022,61038,60872,60990,61051,61052,61052,61039,61056,61040,60914,61057,61058,61041,61053,60992,61054,60945,60945,61043,60964,60964,61029,61044,61059,61055,60740,61032,61046,61060,61047,61048,61021,61036,60836,61005,61061,61050,60989,61022,60872,60990,60990,61052,61056,61056,61040,61057,61058,61053,61062,60992,60945,60964,60964,61044,61063,61064,61059,60740,61032,61060,61065,61047,61021,61035,61035,61036,61005,61061,60989,61066,61022,60990,61056,61056,61057,61058,60992,60964,61067,60992,61067,61027,60964,61063,61068,61064,60740,61069,61064,61069,61068,61032,61065,61047,61047,61035,61005,61061,61066,61022,61022,61056,61058,60964,61068,61070,61070,61027,61067,61070,61067,60964,61031,61068,61069,61031,61069,60740,61047,61005,61071,61047,61071,61032,61061,61022,61058,61072,61027,61070,61072,61070,61068,61027,61072,60923,61068,61031,61073,61005,61061,61074,61074,61032,61071,61074,61071,61005,61061,61058,61062,61068,61073,61075,61061,61062,61076,61068,61075,60748,61061,61076,60920,61068,60748,60997,61061,60920,60922,61068,60997,61032,61061,60922,61077,61032,60923,61072,61032,61072,61068,61061,61077,60923,60923,61032,61074,60923,61074,61061,42601,42600,61078,61078,61079,61080,61081,61082,61083,61083,61084,61085,61086,61087,61088,61089,61090,61091,61091,61092,61093,61093,61094,61095,61096,61097,61098,61098,61099,61100,61100,61101,61102,61103,61104,61105,61106,61107,61108,61109,61110,61111,61111,61112,61113,61113,61114,61115,61116,61117,61118,61119,61120,61121,61121,61122,61123,61123,61124,61125,61125,61126,61127,61127,61128,61129,61129,61130,61131,61131,61132,61133,61134,61135,61136,61137,61138,61139,61140,61141,61142,61142,61143,61144,61144,61145,61146,61147,61148,61149,61150,61151,61152,61152,61153,61154,61155,61156,61157,61158,61159,61160,61161,61162,61163,61163,61164,61165,61165,61166,61167,61167,61168,61169,61170,61171,61172,61172,61173,61174,61175,61176,61177,61177,61178,61179,61180,61181,61182,61183,61184,61185,61186,61187,61188,61189,61190,61191,61192,61193,61194,61195,61196,61197,61197,61198,61199,61199,61200,61201,61202,61203,61204,61204,61205,61206,61207,61208,61209,61209,61210,61211,61211,61212,61213,61213,61214,61215,61216,61217,61218,61219,61220,61221,61221,61222,61223,61223,61224,61225,61226,61227,61228,61228,61229,61230,61231,61232,61233,61234,61235,61236,61237,61238,61239,61239,61240,61241,61241,61242,61243,61244,61245,61246,61246,61247,61248,61249,61250,61251,61252,61253,61254,61255,61256,61257,61257,61258,61259,61260,61261,61262,61263,61264,61265,61266,61267,61268,61268,61269,61270,61271,61272,61273,61273,61274,61275,61276,61277,61278,61278,61279,61280,61280,61281,61282,61283,61284,61285,61285,61286,61287,61288,61289,61290,61290,61291,61292,61292,61293,61294,61295,61296,61297,61297,61298,61299,61300,61301,61302,61303,61304,61305,61305,61306,61307,61307,61308,61309,61310,61311,61312,61312,61313,61314,61315,61316,61317,61318,61319,61320,61320,61321,61322,61323,61324,61325,61326,61327,61328,61328,61329,61330,61330,61331,61332,61333,61334,61335,61336,61337,61338,61339,61340,61341,61341,61342,61343,61344,61345,61346,61347,61348,61349,61349,61350,61351,61352,61353,61354,61355,61356,61357,61358,61359,61360,61360,61361,61362,61363,61364,61365,61366,61367,61368,61368,61369,61370,61371,61372,61373,61373,61374,61375,61375,61376,61377,61378,61379,61380,61381,61382,61383,61384,61385,61386,61387,61388,61389,61389,61390,61391,61392,61393,61394,61394,61395,61396,61397,61398,61399,61400,61401,61402,61403,61404,61405,61406,61407,61408,61409,61410,61411,61411,61412,61413,61413,61414,61415,61415,61416,61417,61418,61419,61420,61420,61421,61422,61423,61424,61425,61425,61426,61427,61428,61429,61430,61430,61431,61432,61432,61433,61434,61434,61435,61436,61437,61438,61439,61440,61441,61442,61443,61444,61445,61446,61447,61448,61449,61450,61451,61451,61452,61453,61453,61454,61455,61455,61456,61457,61458,61459,61460,61460,61461,61462,61463,61464,61465,61465,61466,61467,61467,61468,61469,61469,61470,61471,61471,61472,61473,61474,61475,61476,61476,61477,61478,61478,61479,61480,61480,61481,61482,61482,61483,61484,61485,61486,61487,61487,61488,61489,61489,61490,61491,61492,61493,61494,61494,61495,61496,61496,61497,61498,61499,61500,61501,61501,61502,61503,61504,61505,61506,61507,61508,61509,61509,61510,61511,61512,61513,61514,61515,61516,61517,61518,61519,61520,61520,61521,61522,61522,61523,61524,61524,61525,61526,61527,61528,61529,61530,61531,61532,61532,61533,61534,61535,61536,61537,61538,61539,61540,61540,61541,61542,61542,61543,61544,61544,61545,61546,61546,61547,61548,61548,61549,61550,61550,61551,61552,61553,61554,61555,61556,61557,61558,61558,61559,61560,61560,61561,61562,61562,61563,61564,61565,61566,61567,61568,61569,61570,61570,61571,61572,61572,61573,61574,61575,61576,61577,61578,61579,61580,61581,61582,61583,61584,61585,61586,61586,61587,61588,61588,61589,61590,61591,61592,61593,61593,61594,61595,61596,61597,61598,61599,61600,61601,61601,61602,61603,61603,61604,61605,61605,61606,61607,61608,61609,61610,61611,61612,61613,61614,61615,61616,61616,61617,61618,61619,61620,61621,61621,61622,61623,61623,61624,61625,61625,61626,61627,61627,61628,61629,61630,61631,61632,61633,61634,61635,61636,61637,61638,61638,61639,61640,61641,61642,61643,61644,61645,61646,61647,61648,61649,61649,61650,61651,61651,61652,61653,61654,61655,61656,61657,61658,61659,61660,61661,61662,61662,61663,61664,61665,61666,61667,61668,61669,61670,61671,61672,61673,61674,61675,61676,61676,61677,61678,61679,61680,61681,61682,61683,61684,61684,61685,61686,61686,61687,61688,61689,61690,61691,61691,61692,61693,61694,61695,61696,61696,61697,61698,61699,61700,61701,61702,61703,61704,61704,61705,61706,61707,61708,61709,61709,61710,61711,61711,61712,61713,61714,61715,61716,61716,61717,61718,61719,61720,61721,61722,61723,61724,61724,61725,61726,61726,61727,61728,61728,61729,61730,61731,61732,61733,61734,61735,61736,61737,61738,61739,61740,61741,61742,61742,61743,61744,61744,61745,61746,61747,61748,61749,61750,61751,61752,61752,61753,61754,61755,61756,61757,61758,61759,61760,61761,61762,61763,61761,61763,61764,61762,61761,61765,61766,61767,61768,61769,61770,61771,61771,61772,61773,61773,61774,61775,61776,61777,61778,61778,61779,61780,61781,61782,61783,61784,61785,61786,61787,61788,61789,61790,61791,61792,61792,61793,61794,61795,61796,61797,61798,61799,61800,61801,61802,61803,61803,61804,61805,61806,61807,61808,61809,61810,61811,61811,61812,61813,61814,61815,61816,61816,61817,61818,61819,61820,61821,61821,61822,61823,61823,61824,61825,61825,61826,61827,61828,61829,61830,61831,61832,61833,61833,61834,61835,61836,61837,61838,61838,61839,61840,61841,61842,61843,61844,61845,61846,61846,61847,61848,61848,61849,61850,61850,61851,61852,61852,61853,61854,61854,61855,61856,61857,61858,61859,61860,61861,61862,61863,61864,61865,61865,61866,61867,61867,61868,61869,61869,61870,61871,61872,61873,61874,61874,61875,61876,61877,61878,61879,61879,61880,61881,61882,61883,61884,61885,61886,61887,61887,61888,61889,61889,61890,61891,61891,61892,61893,61893,61894,61895,61895,61896,61897,61898,61899,61900,61901,61902,61903,61903,61904,61905,61906,61907,61908,61909,61910,61911,61912,61913,61914,61914,61915,61916,61916,61917,61918,61918,61919,61920,61921,61922,61923,61924,61925,61926,61926,61927,61928,61929,61930,61931,61932,61933,61934,61934,61935,61936,61937,61938,61939,61939,61940,61941,61941,61942,61943,61943,61944,61945,61946,61947,61948,61948,61949,61950,61950,61951,61952,61953,61954,61955,61955,61956,61957,61958,61959,61960,61961,61962,61963,61964,61965,61966,61966,61967,61968,61968,61969,61970,61970,61971,61972,61973,61974,61975,61975,61976,61977,61978,61979,61980,61981,61982,61983,61984,61985,61986,61986,61987,61988,61988,61989,61990,61991,61992,61993,61994,61995,61996,61997,61998,61999,61999,62000,62001,62001,62002,62003,62003,62004,62005,62006,62007,62008,62009,62010,62011,62012,62013,62014,62014,62015,62016,62016,62017,62018,62019,62020,62021,62021,62022,62023,62024,62025,62026,62027,62028,62029,62029,62030,62031,62031,62032,62033,62033,62034,62035,62036,62037,62038,62039,62040,62041,62041,62042,62043,62044,62045,62046,62046,62047,62048,62049,62050,62051,62051,62052,62053,62054,62055,62056,62057,62058,62059,62059,62060,62061,62061,62062,62063,62064,62065,62066,62067,62068,62069,62069,62070,62071,62072,62073,62074,62075,62076,62077,62077,62078,62079,62079,62080,62081,62082,62083,62084,62084,62085,62086,62087,62088,62089,62090,62091,62092,62093,62094,62095,62095,62096,62097,62098,62099,62100,62100,62101,62102,62102,62103,62104,62105,62106,62107,62108,62109,62110,62110,62111,62112,62112,62113,62114,62114,62115,62116,62117,62118,62119,62119,62120,62121,62121,62122,62123,62124,62125,62126,62126,62127,62128,62129,62130,62131,62131,62132,62133,62134,62135,62136,62136,62137,62138,62139,62140,62141,62142,62143,62144,62144,62145,62146,62147,62148,62149,62149,62150,62151,62152,62153,62154,62154,62155,62156,62156,62157,62158,62158,62159,62160,62160,62161,62162,62163,62164,62165,62166,62167,62168,62169,62170,62171,62171,62172,62173,62174,62175,62176,62176,62177,62178,62179,62180,62181,62182,62183,62184,62185,62186,62187,62188,62189,62190,62190,62191,62192,62193,62194,62195,62195,62196,62197,62197,62198,62199,62199,62200,62201,62201,62202,62203,62204,62205,62206,62207,62208,62209,62210,62211,62212,62213,62214,62215,62215,62216,62217,62217,62218,62219,62220,62221,62222,62222,62223,62224,62224,62225,62226,62227,62228,62229,62229,62230,62231,62231,62232,62233,62233,62234,62235,62236,62237,62238,62238,62239,62240,62241,62242,62243,62243,62244,62245,62245,62246,62247,62248,62249,62250,62250,62251,62252,62253,62254,62255,62255,62256,62257,62258,62259,62260,62260,62261,62262,62262,62263,62264,62264,62265,62266,62266,62267,62268,62269,62270,62271,62272,62273,62274,62275,62276,62277,62277,62278,62279,62280,62281,62282,62282,62283,62284,62284,62285,62286,62286,62287,62288,62288,62289,62290,62290,62291,62292,62292,62293,62294,62295,62296,62297,62298,62299,62300,62300,62301,62302,62302,62303,62304,62304,62305,62306,62307,62308,62309,62310,62311,62312,62313,62314,62315,62315,62316,62317,62318,62319,62320,62320,62321,62322,62322,62323,62324,62324,62325,62326,62327,62328,62329,62330,62331,62332,62333,62334,62335,62335,62336,62337,62338,62339,62340,62340,62341,62342,62342,62343,62344,62344,62345,62346,62347,62348,62349,62350,62351,62352,62353,62354,62355,62355,62356,62357,62357,62358,62359,62360,62361,62362,62363,62364,62365,62366,62367,62368,62368,62369,62370,62370,62371,62372,62373,62374,62375,62376,62377,62378,62378,62379,62380,62381,62382,62383,62384,62385,62386,62387,62388,62389,62390,62391,62392,62392,62393,62394,62394,62395,62396,62397,62398,62399,62400,62401,62402,62403,62404,62405,62405,62406,62407,62407,62408,62409,62409,62410,62411,62412,62413,62414,62415,62416,62417,62417,62418,62419,62419,62420,62421,62421,62422,62423,62424,62425,62426,62426,62427,62428,62428,62429,62430,62430,62431,62432,62433,62434,62435,62436,62437,62438,62438,62439,62440,62441,62442,62443,62444,62445,62446,62446,62447,62448,62449,62450,62451,62451,62452,62453,62454,62455,62456,62456,62457,62458,62459,62460,62461,62461,62462,62463,62464,62465,62466,62466,62467,62468,62468,62469,62470,62470,62471,62472,62473,62474,62475,62476,62477,62478,62478,62479,62480,62481,62482,62483,62483,62484,62485,62485,62486,62487,62487,62488,62489,62489,62490,62491,62491,62492,62493,62494,62495,62496,62497,62498,62499,62499,62500,62501,62501,62502,62503,62504,62505,62506,62506,62507,62508,62509,62510,62511,62511,62512,62513,62513,62514,62515,62515,62516,62517,62517,62518,62519,62520,62521,62522,62523,62524,62525,62525,62526,62527,62527,62528,62529,62530,62531,62532,62533,62534,62535,62536,62537,62538,62538,62539,62540,62541,62542,62543,62544,62545,62546,62546,62547,62548,62549,62550,62551,62552,62553,62554,62554,62555,62556,62556,62557,62558,62559,62560,62561,62561,62562,62563,62564,62565,62566,62567,62568,62569,62569,62570,62571,62571,62572,62573,62574,62575,62576,62576,62577,62578,62578,62579,62580,62581,62582,62583,62583,62584,62585,62586,62587,62588,62588,62589,62590,62590,62591,62592,62592,62593,62594,62595,62596,62597,62597,62598,62599,62599,62600,62601,62601,62602,62603,62604,62605,62606,62606,62607,62608,62609,62610,62611,62611,62612,62613,62613,62614,62615,62616,62617,62618,62619,62620,62621,62622,62623,62624,62624,62625,62626,62627,62628,62629,62630,62631,62632,62633,62634,62635,62636,62637,62638,62638,62639,62640,62641,62642,62643,62643,62644,62645,62645,62646,62647,62648,62649,62650,62650,62651,62652,62652,62653,62654,62655,62656,62657,62657,62658,62659,62660,62661,62662,62662,62663,62664,62665,62666,62667,62667,62668,62669,62670,62671,62672,62672,62673,62674,62674,62675,62676,62677,62678,62679,62680,62681,62682,62682,62683,62684,62684,62685,62686,62686,62687,62688,62689,62690,62691,62692,62693,62694,62695,62696,62697,62697,62698,62699,62699,62700,62701,62702,62703,62704,62704,62705,62706,62707,62708,62709,62709,62710,62711,62712,62713,62714,62715,62716,62717,62717,62718,62719,62719,62720,62721,62721,62722,62723,62724,62725,62726,62727,62728,62729,62729,62730,62731,62731,62732,62733,62734,62735,62736,62737,62738,62739,62739,62740,62741,62741,62742,62743,62744,62745,62746,62746,62747,62748,62749,62750,62751,62751,62752,62753,62753,62754,62755,62755,62756,62757,62757,62758,62759,62759,62760,62761,62761,62762,62763,62764,62765,62766,62767,62768,62769,62770,62771,62772,62772,62773,62774,62775,62776,62777,62777,62778,62779,62779,62780,62781,62782,62783,62784,62784,62785,62786,62787,62788,62789,62789,62790,62791,62792,62793,62794,62795,62796,62797,62798,62799,62800,62801,62802,62803,62803,62804,62805,62805,62806,62807,62807,62808,62809,62809,62810,62811,62811,62812,62813,62814,62815,62816,62816,62817,62818,62818,62819,62820,62820,62821,62822,62823,62824,62825,62826,62827,62828,62829,62830,62831,62831,62832,62833,62833,62834,62835,62836,62837,62838,62839,62840,62841,62842,62843,62844,62845,62846,62847,62847,62848,62849,62850,62851,62852,62853,62854,62855,62855,62856,62857,62858,62859,62860,62861,62862,62863,62863,62864,62865,62866,62867,62868,62868,62869,62870,62871,62872,62873,62873,62874,62875,62875,62876,62877,62878,62879,62880,62881,62882,62883,62883,62884,62885,62886,62887,62888,62889,62890,62891,62892,62893,62894,62894,62895,62896,62897,62898,62899,62899,62900,62901,62901,62902,62903,62904,62905,62906,62906,62907,62908,62909,62910,62911,62912,62913,62914,62914,62915,62916,62916,62917,62918,62919,62920,62921,62921,62922,62923,62924,62925,62926,62927,62928,62929,62930,62931,62932,62932,62933,62934,62935,62936,62937,62937,62938,62939,62940,62941,62942,62942,62943,62944,62945,62946,62947,62948,62949,62950,62951,62952,62953,62954,62955,62956,62956,62957,62958,62959,62960,62961,62961,62962,62963,62963,62964,62965,62966,62967,62968,62968,62969,62970,62970,62971,62972,62972,62973,62974,62974,62975,62976,62976,62977,62978,62979,62980,62981,62981,62982,62983,62984,62985,62986,62987,62988,62989,62990,62991,62992,62992,62993,62994,62995,62996,62997,62997,62998,62999,62999,63000,63001,63002,63003,63004,63005,63006,63007,63007,63008,63009,63009,63010,63011,63011,63012,63013,63014,63015,63016,63016,63017,63018,63018,63019,63020,63020,63021,63022,63022,63023,63024,63024,63025,63026,63027,63028,63029,63029,63030,63031,63031,63032,63033,63034,63035,63036,63036,63037,63038,63038,63039,63040,63041,63042,63043,63044,63045,63046,63046,63047,63048,63048,63049,63050,63051,63052,63053,63053,63054,63055,63056,63057,63058,63059,63060,63061,63061,63062,63063,63064,63065,63066,63067,63068,63069,63069,63070,63071,63072,63073,63074,63074,63075,63076,63076,63077,63078,63079,63080,63081,63081,63082,63083,63084,63085,63086,63087,63088,63089,63090,63091,63092,63092,63093,63094,63095,63096,63097,63098,63099,63100,63100,63101,63102,63102,63103,63104,63105,63106,63107,63107,63108,63109,63110,63111,63112,63113,63114,63115,63115,63116,63117,63117,63118,63119,63119,63120,63121,63121,63122,63123,63124,63125,63126,63126,63127,63128,63129,63130,63131,63132,63133,63134,63134,63135,63136,63136,63137,63138,63138,63139,63140,63140,63141,63142,63143,63144,63145,63145,63146,63147,63147,63148,63149,63149,63150,63151,63152,63153,63154,63154,63155,63156,63157,63158,63159,63159,63160,63161,63161,63162,63163,63164,63165,63166,63167,63168,63169,63170,63171,63172,63172,63173,63174,63174,63175,63176,63176,63177,63178,63179,63180,63181,63182,63183,63184,63184,63185,63186,63186,63187,63188,63189,63190,63191,63191,63192,63193,63193,63194,63195,63196,63197,63198,63199,63200,63201,63201,63202,63203,63204,63205,63206,63207,63208,63209,63209,63210,63211,63212,63213,63214,63215,63216,63217,63218,63219,63220,63221,63222,63223,63223,63224,63225,63226,63227,63228,63228,63229,63230,63231,63232,63233,63234,63235,63236,63237,63238,63239,63239,63240,63241,63242,63243,63244,63245,63246,63247,63248,63249,63250,63251,63252,63253,63254,63255,63256,63256,63257,63258,63259,60341,60340,60340,60436,60339,60336,60335,60435,60435,60334,60333,60327,60326,60434,60434,60455,60433,60324,60323,60432,60321,60320,60319,60318,60317,60316,60316,60315,60314,60314,60313,60431,60307,60306,60447,60447,60305,60304,60300,60299,60454,60454,60458,60453,60453,60298,60297,60295,60294,60430,60292,60291,60429,60429,60290,60289,60285,60284,60462,60280,60279,60446,60446,60428,60278,60275,60274,60427,60427,60426,60273,60268,60267,60452,60452,60457,60461,60461,60425,60266,60265,60264,60263,60263,60262,60261,60258,60257,60256,60255,60254,60424,60424,60445,60423,60251,59712,59711,59711,59710,60136,60136,60175,60187,60187,60174,60084,59706,59705,60083,60083,60082,59704,59703,59702,60135,59698,59697,59696,59693,59692,60134,60134,60081,59691,59690,59689,60080,59687,59686,60133,60133,60079,59685,59684,59683,60161,59679,59678,60132,60132,59677,59676,59674,59673,59672,59671,59670,59669,59667,59666,60078,60078,60186,59665,59664,59663,60077,59661,59660,59659,59658,59657,60131,59655,59654,60076,60076,60075,59653,59652,59651,59650,59647,59646,59645,59645,59644,60130,60130,60173,60194,60194,60172,60129,60129,59643,59642,59640,59639,59638,59637,59636,60074,60074,59635,59634,59632,59631,60128,60128,60073,59630,59629,59628,60160,59624,59623,60127,59619,59618,59617,59617,59616,60072,60072,60199,60185,60185,60126,59615,59612,59611,60159,60159,60171,60193,60193,60071,59610,59609,59608,59607,59606,59605,60125,60125,59604,59603,59601,59600,59599,59599,59598,59597,59593,59592,60124,60124,59591,59590,59588,59587,60158,60158,60070,59586,59585,59584,60123,60123,60157,59583,59580,59579,60122,60122,59578,59577,59577,63260,63261,63262,63263,63264,63264,63265,63266,63267,63268,63269,63269,63270,63271,63272,63273,63274,63275,63276,63277,63277,63278,63279,63279,63280,63281,63282,63283,63284,63285,63286,63287,63287,63288,63289,63289,63290,63291,63291,63292,63293,63294,63295,63296,63297,63298,63299,63299,63300,63301,63301,63302,63303,63304,63305,63306,63306,63307,63308,63309,63310,63311,63311,63312,63313,63313,63314,63315,63315,63316,63317,63318,63319,63320,63320,46380,46379,46376,46375,46374,46373,46372,46371,46370,46369,46419,46419,46428,46368,46365,46364,46363,46360,46359,46427,46427,46358,46357,46357,46356,46355,46353,46352,46426,46426,46435,46441,46441,46351,46350,46350,46349,46348,46343,46342,46341,46340,46339,46418,46337,46336,46335,46331,46330,46425,46425,46417,46329,46328,46327,46416,46416,46326,46325,46325,46324,46323,46323,46322,46530,46530,46529,46630,46630,46616,46528,46527,46526,46525,46524,46523,46615,46521,46520,46653,46653,46659,46660,46660,46658,46635,46635,46519,46518,46518,46517,46614,46614,46629,46516,46515,46514,63321,63322,63323,63324,63324,63325,63326,63327,63328,63329,63330,63331,63332,63333,63334,63335,63335,63336,63337,63337,63338,63339,63339,63340,63341,63342,63343,63344,63345,63346,63347,63348,63349,63350,63351,63352,63353,63353,63354,63355,63356,63357,63358,63358,63359,63360,63360,63361,63362,63363,63364,63365,63366,63367,63368,63369,63370,63371,63372,63373,63374,63374,63375,63376,63377,63378,63379,63379,63380,63381,63381,63382,44106,44105,44104,44103,44094,44093,44297,44297,44347,44368,44368,44379,44092,44091,44090,44267,44267,44089,44088,44088,44087,44266,44085,44084,44083,44079,44078,44265,44265,44325,44077,44072,44071,44296,44296,44346,44345,44345,44264,44070,44065,44064,44263,44263,44063,44062,44054,44053,44295,44295,44344,44367,44367,44393,44409,44409,44434,44366,44366,44052,44051,44049,44048,44047,44046,44045,44262,44262,44044,44043,44043,44042,44294,44040,44039,44261,44037,44036,44260,44034,44033,44259,44031,44030,44029,44027,44026,44324,44324,44025,44024,44024,44023,44323,44019,44018,44017,44016,44015,44014,44012,44011,44322,44322,44293,44010,44007,44006,44005,44002,44001,44000,43999,43998,44258,44258,44343,44422,44422,44420,44407,44407,44378,44365,44365,43997,43996,43990,43989,44321,44321,44342,44391,44391,44405,44377,44377,44364,44292,43985,43984,43983,43980,43979,44257,44257,44341,44291,44291,43978,43977,43975,43974,43973,43970,43969,44256,44256,44320,43968,43967,43966,43965,43963,43962,44290,44290,44389,44376,44376,44255,43961,43958,43957,44254,44254,44319,44340,44340,44363,44404,44404,44550,44657,44657,43956,43955,43955,43954,44432,44432,44418,43953,43952,43951,44253,44253,44252,43950,43949,43948,43947,43944,43943,43942,43941,43940,43939,43939,43938,44362,44362,44339,43937,43934,43933,43932,43929,43928,43927,43926,43925,44361,44361,44403,44402,44402,43924,43923,43923,43922,43921,43920,43919,43918,43914,43913,44289,44289,44338,44360,44360,44388,44416,44416,43912,43911,43907,43906,44288,43902,43901,44250,44250,44249,43900,43899,43898,43897,43896,43895,43894,43893,43892,43891,43888,43887,44337,44337,43886,43885,43883,43882,44248,44248,43881,43880,43880,43879,44247,44247,43878,43877,43875,43874,43873,43872,43871,43870,43870,43869,43868,43867,43866,44246,43864,43863,43862,43861,43860,44287,44287,44336,44318,44318,44286,43859,43858,43857,44245,43851,43850,44244,44244,44317,44335,44335,44334,43849,43844,43843,43842,43841,43840,43839,43838,43837,44375,44375,44374,43836,43835,43834,43833,43830,43829,43828,43828,43827,44243,44243,43826,43825,43825,43824,44242,43818,43817,44316,44316,44373,44359,44359,44333,44241,43811,43810,44315,44315,44240,43809,43808,43807,44314,44314,43806,43805,43801,43800,44239,44239,44358,43799,43794,43793,44285,44285,44332,44429,44429,44238,43792,43791,43790,44284,44284,44237,43789,43788,43787,44236,43781,43780,44357,44357,44372,44386,44386,44355,43779,43766,43765,43764,43763,43762,44235,43760,43759,43758,43757,43756,44312,44312,44371,44283,43752,43751,43750,43749,43748,43747,43746,43745,43744,43741,43740,44282,44282,44234,43739,43738,43737,43736,43735,43734,44281,44281,44233,43733,43732,43731,43730,43729,43728,44311,44311,44280,43727,43726,43725,44232,43717,43716,43715,43714,43713,44231,44231,43712,43711,43711,43710,43709,43709,43708,43707,43705,43704,43703,43702,43701,43700,43700,43699,43698,43697,43696,43695,43694,43693,43692,43691,43690,43689,43688,43687,44230,43683,43682,44229,44229,44228,43681,43680,43679,44279,44279,44227,43678,43676,39910,40604,40604,40603,39909,39908,39907,39906,39906,39905,45615,45615,45903,45902,45901,45900,45934,45898,45897,45896,45896,45895,45894,45893,45892,45919,45919,45946,45891,45888,45887,45933,45933,45945,45932,45885,45884,45918,45882,45881,45880,45877,45876,45875,45872,45871,45870,45870,45869,45868,45868,45867,45866,45865,45864,45863,45862,45861,45860,45860,45859,45858,45858,45857,45856,45855,45854,45853,45850,45849,45931,45931,45848,45847,45845,45844,45843,45842,45841,45955,45955,45950,45840,45837,45836,45930,45930,45944,45929,45834,45833,45917,45917,45949,45916,45916,45832,45831,45827,45826,45825,45824,45823,45822,45822,45821,45943,45817,45816,45815,45812,45811,45810,45809,45808,45807,45805,45804,45928,45802,45801,45800,45800,45799,45927,45927,45798,45797,45797,45796,45795,45792,45791,45790,45790,45789,45926,45926,45948,45942,45942,45788,45787,45785,45784,45783,45782,45781,45780,45779,45778,45777,45777,45776,45775,45775,45774,45941,45941,45773,45772,45770,45769,45768,45768,45767,45915,45915,45766,45765,45763,45762,45761,45761,45760,45759,45758,45757,45756,45755,45754,45753,45752,45751,45750,45749,45748,45940,45940,45747,45746,45744,45743,45742,45742,45741,45914,45914,45925,45740,45739,45738,45913,45913,45954,45939,45736,45735,45912,45733,45732,45731,45728,45727,45726,45724,45723,45722,45721,45720,45719,45719,45718,45717,45714,45713,45924,45924,45923,45712,45711,45710,45709,45708,45707,45911,45705,45704,45703,45703,45702,45910,45910,45909,45701,45700,45699,45922,45922,45938,45908,45697,45696,45695,45694,45693,45692,45690,45689,45907,45687,45686,45685,45680,45679,45937,45937,45947,45678,45677,45676,45675,45674,45673,45672,45672,45671,45670,45669,45668,45667,45666,45665,45971,45971,45664,45663,45663,45662,45661,45660,45659,45658,45657,45656,45655,45653,45652,45959,45959,45906,45651,45650,45649,45921,45647,45646,45645,45645,45644,45643,45642,45641,45640,45639,45638,45637,45636,45635,45634,45632,45631,45630,45628,45627,45905,45625,45624,45623,45623,45622,45904,45904,45936,45953,45953,45958,45935,45935,45920,45621,45616,39579,39578,39578,40575,39577,39576,39575,40821,40821,40773,40696,39573,39572,40574,40574,40954,40879,40879,40820,40772,39570,39569,40573,39567,39566,40572,39564,39563,40571,39561,39560,39559,39558,39557,40695,40695,41227,40570,39555,39554,40925,40925,40904,40569,39550,39549,40568,39547,39546,40567,39544,39543,40566,40566,40771,40565,39541,39540,39539,39539,39538,40564,39536,39535,40563,39533,39532,39531,39530,39529,40852,39525,39524,40694,39520,39519,40819,39517,39516,39515,39511,39510,40770,40770,40562,39509,39508,39507,40561,39505,39504,40560,39502,39501,39500,39500,39499,40559,39497,39496,40558,39494,39493,39492,39491,39490,40557,39488,39487,40769,39483,39482,40556,39480,39479,39478,39477,39476,40555,40555,40693,40554,39474,39473,40949,40949,40851,40768,39469,39468,40553,39466,39465,40552,39463,39462,39461,39458,39457,40551,39455,39454,40767,40767,40692,39453,39452,39451,39450,39449,39448,39447,39447,39446,39445,39444,39443,40550,39441,39440,40691,40691,40690,40549,39438,39437,40548,39435,39434,40547,39432,39431,40689,39429,39428,40546,40546,39427,39426,39416,39415,40688,40688,40687,40545,39413,39412,39411,39408,39407,40544,40544,39406,39405,39405,39404,40543,40543,40766,39403,39402,39401,40542,40542,40686,40685,40685,40541,39400,39399,39398,39397,39396,39395,39394,39392,39391,40540,39387,39386,40539,40539,39385,39384,39384,39383,39382,39381,39380,39379,39379,39378,40765,40765,40538,39377,39376,39375,39374,39374,39373,40537,39371,39370,39369,39369,39368,39367,39365,39364,39363,39362,39361,39360,39357,39356,39355,39355,39354,40764,40764,41022,39353,39350,39349,39348,39348,39347,39346,39345,39344,40536,39340,39339,39338,39337,39336,39335,39335,39334,39333,39332,39331,39330,39330,39329,39328,39327,39326,40818,40818,40877,40850,40850,40763,40535,39323,39322,42604,42602,42601,61078,61081,61083,61085,61086,61088,63383,61089,61091,61093,61095,61096,61098,61100,61102,61103,61103,61105,63384,63384,61106,61108,61109,61111,61113,61113,61115,63385,61116,61118,61119,61119,61121,61123,61123,61125,61127,61127,61129,61131,61134,61136,61137,61137,61139,61140,61140,61142,61144,61144,61146,63386,61149,61150,61152,63387,61155,61157,61158,61160,61161,61163,61165,61167,61167,61169,63388,61170,61172,61174,61175,61177,61179,63389,61180,61182,61183,61185,61186,61186,61188,63390,61189,61191,61192,61195,61197,61199,61199,61201,63391,63392,61202,61204,61204,61206,63393,61207,61209,61211,61211,61213,61215,61216,61218,63394,61221,61223,61225,61231,61233,63395,61234,61236,61237,61237,61239,61241,61246,61248,61249,61249,61251,61252,61252,61254,63396,61255,61257,61259,61262,61263,61265,61266,61268,61270,61271,61273,61275,61278,61280,61282,61283,61285,61287,61292,61294,61295,61295,61297,61299,61300,61302,63397,63398,61303,61305,61305,61307,61309,61310,61312,61314,61314,61315,61317,61318,61320,61322,61323,61325,61326,61326,61328,61330,61330,61332,63399,63400,61333,61335,63401,61336,61338,61339,61341,61343,61344,61346,63402,63402,61347,61349,61352,61354,61355,61355,61357,63403,61358,61360,61362,63404,61363,61365,61366,61368,61370,61371,61373,61375,61377,61378,61380,61384,61386,63405,61387,61389,61391,61392,61394,61396,61400,61402,63406,61403,61405,63407,61406,61408,63408,61409,61411,61413,61413,61415,61417,61418,61420,61422,61423,61425,61427,61427,61428,61430,61430,61432,61434,61437,61439,61440,61440,61442,61443,61449,61451,61453,61453,61455,61457,61458,61460,61462,61463,61465,61467,61467,61469,61471,63409,61474,61476,61480,61482,61484,61485,61487,61489,61491,61492,61494,61494,61496,61498,61499,61501,61503,61504,61506,63410,61507,61509,61511,61512,61514,63411,61518,61520,61522,61522,61524,61526,61530,61532,61534,61535,61537,63412,63413,61538,61540,61540,61542,61544,61544,61546,61548,61548,61550,61552,61553,61555,63414,63415,61556,61558,61558,61560,61562,61562,61564,63416,63417,61565,61567,61570,61572,61574,63418,61575,61577,61578,61580,63419,63420,61581,61583,61584,61586,61588,61590,61591,61593,61593,61595,63421,61596,61598,61599,61599,61601,61603,61603,61605,61607,61611,61613,61614,61619,61621,61623,61623,61625,61627,61627,61629,63422,63422,61630,61632,61633,61635,61636,61636,61638,61640,63423,61641,61643,63424,61644,61646,61647,61649,61651,61653,61654,61656,61657,61659,63425,63425,61660,61662,61662,61664,63426,63426,61665,61667,61671,61673,63427,61674,61676,61678,61679,61681,63428,61682,61684,61686,63429,61689,61691,61694,61696,61698,61699,61701,63430,61702,61704,61706,61707,61709,61711,61711,61713,63431,61714,61716,61718,61722,61724,61726,61726,61728,61730,61734,61736,61737,61737,61739,61740,61740,61742,61744,61744,61746,63432,61750,61752,61754,61755,61757,61758,61758,61760,61765,61764,61766,63433,63433,61765,61761,63433,61761,61764,61768,61769,61771,61776,61778,61780,61784,61786,63434,61787,61789,61790,61790,61792,61794,61795,61797,61798,63435,61801,61803,61806,61808,61809,61809,61811,61813,63436,61814,61816,61816,61818,63437,61819,61821,61823,61823,61825,61827,63438,61831,61833,61833,61835,61836,61836,61838,61840,61844,61846,61848,61848,61850,61852,61852,61854,61856,61857,61859,61860,61863,61865,61867,61867,61869,61871,63439,61872,61874,61874,61876,63440,61877,61879,61881,61885,61887,61889,61889,61891,61893,61893,61895,61897,61898,61900,63441,61901,61903,61905,61909,61911,61912,61912,61914,61916,61918,61920,63442,61921,61923,63443,61924,61926,61928,61929,61931,61932,61932,61934,61936,61937,61939,61941,61946,61948,61950,61950,61952,63444,63445,61953,61955,61955,61957,61958,61958,61960,61961,61964,61966,61968,61968,61970,61972,61973,61975,61977,61978,61980,61981,61981,61983,63446,63447,61984,61986,61986,61988,61990,61991,61993,63448,61997,61999,62001,62001,62003,62005,62006,62008,63449,62009,62011,63450,62014,62016,62018,63451,62019,62021,62021,62023,63452,62024,62026,63453,62027,62029,62031,62031,62033,62035,62036,62038,62039,62039,62041,62043,62044,62046,62048,63454,62049,62051,62053,62054,62056,62057,62059,62061,62067,62069,62071,62075,62077,62079,62079,62081,62082,62082,62084,62086,62087,62089,63455,62090,62092,63456,62093,62095,62097,62098,62100,62102,62108,62110,62112,62114,62116,62117,62117,62119,62121,62121,62123,63457,62124,62126,62128,62129,62131,62133,63458,62134,62136,62136,62138,63459,62139,62141,62142,62142,62144,62146,62147,62149,62151,63460,62152,62154,62154,62156,62158,62158,62160,62162,62165,62166,62168,63461,62169,62171,62171,62173,63462,63462,62174,62176,62176,62178,63463,62179,62181,62182,62182,62184,63464,62185,62187,62188,62188,62190,62192,62195,62197,62199,62199,62201,62203,62204,62206,62207,62213,62215,62217,62217,62219,62220,62220,62222,62224,62224,62226,63465,62227,62229,62231,62231,62233,62235,62236,62238,62240,62241,62243,62245,62245,62247,62248,62248,62250,62252,63466,62258,62260,62260,62262,62264,62266,62268,63467,62269,62271,63468,62272,62274,62275,62275,62277,62279,62280,62282,62284,62284,62286,62288,62290,62292,62294,63469,62295,62297,62298,62300,62302,62304,62306,62307,62307,62309,63470,62313,62315,62317,62318,62320,62322,62322,62324,62326,62327,62329,62330,62330,62332,63471,62333,62335,62337,62338,62340,62342,62344,62346,62347,62347,62349,62350,62350,62352,62353,62353,62355,62357,62360,62362,62363,62366,62368,62370,62370,62372,62373,62373,62375,63472,62376,62378,62380,62381,62383,62384,62384,62386,63473,62390,62392,62394,62394,62396,63474,62397,62399,63475,62400,62402,62403,62403,62405,62407,62407,62409,62411,62415,62417,62419,62419,62421,62423,62424,62426,62428,62428,62430,62432,62433,62435,62436,62436,62438,62440,62441,62443,62444,62444,62446,62448,62449,62451,62453,62454,62456,62458,62459,62461,62463,62464,62466,62468,62468,62470,62472,62473,62475,63476,62476,62478,62480,62483,62485,62487,62487,62489,62491,62491,62493,63477,62494,62496,62497,62497,62499,62501,62501,62503,63478,62504,62506,62508,62509,62511,62513,62513,62515,62517,62517,62519,62520,62520,62522,63479,62523,62525,62527,63480,62530,62532,62536,62538,62540,62543,62544,62546,62549,62551,62552,62552,62554,62556,62556,62558,63481,62559,62561,62563,62567,62569,62571,62574,62576,62578,62578,62580,63482,63483,62581,62583,63484,62586,62588,62588,62590,62592,62595,62597,62599,62599,62601,62603,62604,62606,62608,62608,62609,62611,62611,62613,62615,62616,62618,63485,62619,62621,63486,62622,62624,62626,62630,62632,63487,62636,62638,62640,62641,62643,62645,62645,62647,63488,63488,62648,62650,62652,62654,62655,62655,62657,62659,63489,62660,62662,62662,62664,63490,63491,62665,62667,62669,62670,62672,62672,62674,62676,62677,62679,62680,62680,62682,62684,62684,62686,62688,62689,62691,62692,62695,62697,62699,62699,62701,63492,63493,62702,62704,62704,62706,63494,63494,62707,62709,62709,62711,63495,62712,62714,63496,63497,62715,62717,62717,62719,62721,62727,62729,62731,62739,62741,62743,63498,62744,62746,62746,62748,62749,62751,62753,62755,62757,62759,62761,62761,62763,62764,63499,62767,62769,62770,62772,62774,62774,62775,62777,62779,62781,63500,62782,62784,62786,62787,62789,62791,62792,62794,63501,63501,62795,62797,62797,62798,62800,62803,62805,62807,62809,62811,62813,62814,62816,62818,62818,62820,62822,63502,62829,62831,62831,62833,62835,62836,62838,62839,63503,62842,62844,62845,62847,62849,63504,62850,62852,62855,62857,63505,63506,62858,62860,62861,62863,62865,62865,62866,62868,62871,62873,62875,62881,62883,62885,62888,62889,62891,62892,62894,62896,62897,62899,62901,62904,62906,62908,62909,62911,63507,62912,62914,62916,62916,62918,63508,62919,62921,62923,62924,62926,63509,63509,62927,62929,62930,62932,62934,63510,62935,62937,62937,62939,62940,62940,62942,62944,62951,62953,63511,62954,62956,62958,63512,62959,62961,62961,62963,62965,62966,62968,62970,62970,62972,62974,62974,62976,62978,62979,62981,62983,62984,62986,63513,62987,62989,62990,62990,62992,62994,62995,62997,62999,62999,63001,63514,63514,63002,63004,63515,63005,63007,63009,63011,63013,63014,63016,63018,63018,63020,63022,63022,63024,63026,63027,63029,63031,63036,63038,63040,63041,63043,63516,63044,63046,63048,63048,63050,63517,63051,63053,63055,63056,63058,63059,63059,63061,63063,63064,63066,63067,63069,63071,63518,63072,63074,63076,63076,63078,63079,63079,63081,63083,63084,63086,63519,63087,63089,63520,63090,63092,63094,63095,63097,63521,63098,63100,63102,63102,63104,63522,63105,63107,63109,63110,63112,63523,63113,63115,63117,63117,63119,63121,63124,63126,63128,63132,63134,63136,63138,63140,63142,63143,63145,63147,63147,63149,63151,63152,63154,63156,63157,63159,63161,63164,63166,63524,63167,63169,63525,63170,63172,63174,63176,63178,63526,63526,63179,63181,63182,63184,63186,63189,63191,63193,63193,63195,63527,63196,63198,63528,63199,63201,63203,63529,63204,63206,63207,63209,63211,63212,63214,63530,63215,63217,63218,63218,63220,63531,63221,63223,63225,63226,63228,63230,63230,63231,63233,63234,63236,63237,63237,63239,63241,63242,63244,63532,63245,63247,63248,63248,63250,63533,63251,63253,63254,63534,63259,60340,60336,60435,60333,60327,60434,60433,60324,60432,60322,60318,60316,60314,60314,60431,60312,60308,60307,60447,60447,60304,60303,60301,60300,60454,60454,60453,60297,60295,60430,60293,60292,60429,60289,60286,60285,60462,60280,60446,60278,60275,60427,60273,60269,60268,60452,60452,60461,60266,60266,60265,60263,60263,60261,60260,60258,60256,60255,60255,60424,60423,60252,60251,59711,59711,60136,60187,60187,60084,59709,59706,60083,59704,59703,60135,59701,59699,59698,59696,59694,59693,60134,59691,59690,60080,59687,60133,59685,59685,59684,60161,59679,60132,59676,59674,59672,59671,59671,59669,59668,59667,60078,59665,59664,60077,59662,59658,60131,59656,59655,60076,59653,59652,59650,59649,59645,60130,60194,60194,60129,59642,59640,59638,59637,59637,60074,59634,59632,60128,59630,59630,59629,60160,59624,60127,59622,59617,60072,60185,59612,60159,60193,60193,59610,59609,59606,60125,59603,59601,59599,59597,59593,60124,59590,59588,60158,59586,59585,60123,59583,59580,60122,59577,63262,63264,63266,63269,63271,63535,63536,63272,63274,63275,63277,63279,63282,63284,63537,63538,63285,63287,63289,63291,63293,63297,63299,63301,63304,63306,63308,63309,63311,63313,63315,63317,63539,63318,63320,46379,46377,46376,46374,46373,46371,46370,46370,46419,46368,46365,46363,46362,46360,46427,46357,46353,46426,46441,46441,46350,46348,46344,46343,46341,46340,46418,46338,46338,46337,46335,46332,46331,46425,46329,46328,46416,46325,46323,46530,46530,46630,46528,46524,46615,46522,46521,46653,46660,46660,46635,46518,46518,46614,46516,46516,46515,63321,63322,63324,63326,63327,63329,63540,63330,63332,63541,63333,63335,63337,63337,63339,63341,63341,63342,63344,63542,63345,63347,63348,63350,63543,63351,63353,63355,63356,63358,63360,63544,63363,63365,63366,63368,63369,63369,63371,63545,63372,63374,63376,63546,63377,63379,63381,44106,44105,44105,44103,44102,44094,44297,44368,44368,44092,44091,44091,44267,44088,44088,44266,44086,44086,44085,44083,44079,44265,44077,44072,44296,44345,44066,44065,44263,44054,44295,44367,44367,44409,44366,44366,44051,44050,44046,44262,44043,44043,44294,44041,44040,44261,44038,44037,44260,44035,44034,44259,44032,44028,44027,44324,44324,44024,44323,44020,44019,44017,44017,44016,44014,44012,44322,44010,44007,44005,44004,43999,44258,44422,44422,44407,44365,44365,43996,43995,43990,44321,44391,44391,44377,44292,43986,43985,43983,43980,44257,44291,43975,43973,43972,43970,44256,43968,43963,44290,44376,43958,44254,44340,44340,44404,44657,44657,43955,44432,44432,43953,43952,43952,44253,43950,43950,43949,43947,43941,43939,44362,43935,43934,43932,43929,43927,43926,43926,44361,44402,44402,43923,43921,43914,44289,44360,44360,44416,43911,43907,44288,44251,43902,44250,43900,43899,43897,43896,43896,43894,43893,43893,43891,43890,43888,44337,43885,43883,44248,43880,43880,44247,43877,43875,43873,43872,43870,43868,43867,43867,44246,43865,43865,43864,43862,43862,43861,44287,44287,44318,43859,43858,44245,43856,43851,44244,44335,44335,43849,43848,43841,43839,43838,43838,44375,43836,43835,43833,43832,43828,44243,43825,43825,44242,43823,43818,44316,44359,44359,44241,43816,43812,43811,44315,44315,43809,43808,43808,44314,43805,43801,44239,43799,43794,44285,44429,43791,44284,43789,43788,44236,43786,43781,44357,44386,44386,43779,43778,43764,43763,44235,43757,44312,44283,43753,43752,43750,43747,43746,43744,43741,44282,43739,43735,44281,43733,43732,43730,43729,43729,44311,43727,43726,44232,43724,43717,43715,43714,43714,44231,43711,43705,43703,43702,43702,43700,43698,43697,43695,43694,43694,43692,43691,43691,43689,43688,43688,44230,43686,43683,44229,43681,43680,44279,43678,43677,43676,40604,39909,39908,39906,39906,45615,45902,45901,45934,45899,45896,45894,45893,45893,45919,45891,45889,45888,45933,45933,45932,45886,45885,45918,45883,45883,45882,45880,45877,45875,45874,45873,45872,45870,45868,45866,45865,45865,45863,45862,45860,45858,45856,45855,45853,45852,45850,45931,45847,45845,45843,45842,45842,45955,45840,45837,45930,45929,45834,45917,45916,45828,45827,45825,45824,45822,45943,45817,45815,45814,45812,45810,45809,45806,45805,45928,45800,45927,45797,45797,45795,45794,45792,45790,45926,45926,45942,45787,45785,45783,45782,45782,45780,45779,45779,45777,45775,45775,45941,45772,45768,45915,45765,45763,45761,45759,45755,45753,45752,45749,45940,45746,45744,45742,45914,45739,45913,45939,45736,45912,45734,45733,45731,45730,45724,45722,45721,45719,45717,45716,45715,45714,45924,45924,45712,45711,45711,45709,45708,45708,45911,45706,45705,45703,45910,45701,45700,45922,45922,45908,45698,45695,45694,45692,45690,45907,45688,45688,45687,45685,45680,45937,45678,45674,45672,45670,45669,45667,45666,45666,45971,45663,45660,45658,45657,45657,45655,45654,45654,45653,45959,45959,45651,45650,45650,45921,45648,45647,45645,45643,45642,45640,45639,45639,45637,45636,45633,45632,45630,45628,45905,45626,45623,45904,45953,45953,45935,45621,45616,39578,39577,39576,40821,40696,39573,40574,40879,40879,40772,39571,39570,40573,39568,39567,40572,39565,39564,40571,39562,39558,40695,40570,39555,40925,40569,39550,40568,39548,39547,40567,39545,39544,40566,40565,39541,39539,40564,39536,40563,39534,39533,39531,39530,39530,40852,39528,39525,40694,39523,39521,39520,40819,39517,39515,39514,39512,39511,40770,39508,40561,39506,39505,40560,39503,39503,39502,39500,39500,40559,39498,39497,40558,39495,39494,39492,39491,39491,40557,39489,39489,39488,40769,39483,40556,39481,39481,39480,39478,39477,40555,40554,39475,39474,40949,40949,40768,39472,39469,40553,39467,39466,40552,39464,39463,39461,39460,39458,40551,39456,39455,40767,39453,39452,39450,39449,39444,40550,39442,39441,40691,40549,39438,40548,39436,39436,39435,40547,39432,40689,39430,39429,40546,39426,39416,40688,40545,39408,40544,39405,39405,40543,39403,39402,40542,40685,39400,39399,39397,39396,39394,39393,39392,40540,39390,39387,40539,39384,39381,39379,40765,40765,39377,39376,39374,40537,39372,39372,39371,39369,39369,39367,39366,39366,39365,39363,39362,39360,39359,39355,40764,39353,39348,39346,39345,39345,40536,39343,39340,39338,39337,39337,39335,39333,39330,39328,39327,39327,40818,40850,40850,40535,39325,39323,42604,42603,42603,42602,61078,61081,61085,61086,61089,61093,61095,61095,61098,61100,61100,61103,63384,63384,61108,61109,61109,61113,63385,63547,61116,61119,61123,61127,61131,61137,61140,61144,61144,63386,61147,61149,61152,61154,63387,61157,63548,61163,61167,63388,61170,61174,63549,63550,61175,61179,61183,61186,63390,63390,61189,61192,61195,61199,63391,63392,61204,63393,63551,61207,61211,61211,61215,63552,61219,61221,61225,61231,63395,61234,61234,61237,61241,61246,61249,61252,61252,63396,63553,63554,61266,61270,61271,61275,63555,61276,61278,61282,61283,61287,63556,61292,61295,61299,61300,63397,63557,63398,61305,61309,63558,61310,61314,61318,61322,61323,61323,61326,61330,63400,61335,63401,61343,61344,63402,61351,61352,61355,61358,61362,63559,63404,61365,61366,61366,61370,63560,61371,61375,61377,61377,61380,61381,61383,61384,63405,61387,61391,61392,63561,61400,63406,61406,63408,61409,61409,61413,61417,61417,61418,61422,63562,61423,61427,61430,61434,61436,61440,61443,61445,61458,61462,63563,63564,61463,61467,61467,61471,61473,63409,61476,61478,61478,61480,61484,61484,61485,61489,61491,61494,61498,61498,61499,61503,63565,61504,63410,63566,61507,61511,61511,61512,63411,63567,61518,61522,61522,61526,63568,61529,61530,61534,63413,61540,61544,61548,61552,63569,63415,61558,61562,63417,61567,63570,61568,61570,61574,63418,61577,63571,63572,63420,61583,63573,61584,61588,61590,61593,63421,61596,61599,61603,61618,61619,61623,61623,61627,63422,63422,61632,61633,61633,61636,61640,63423,61643,63574,63424,61646,63575,61651,61653,61656,63425,61662,63426,63426,61667,63576,61674,61678,63577,63578,61679,63428,61682,61686,61688,63429,61691,61693,61694,61698,63579,63580,61699,63430,63581,61702,61706,61707,61711,63431,63582,61714,61718,61721,61722,61726,61726,61730,63583,63584,61734,61737,61737,61740,61744,61744,63432,63585,61750,61754,61755,61755,61758,61765,61766,61768,63586,63586,61765,63433,63586,63433,61766,61768,61771,61773,61775,61776,61780,61783,61784,63434,63434,61787,61790,61790,61794,63587,63587,61795,61798,63435,61803,61805,61806,61809,61813,61816,63437,61819,61819,61823,61827,63438,61833,61836,61836,61840,63588,61843,61844,61848,61848,61852,61856,61863,61867,61871,63439,61874,63440,63440,61877,61881,63589,61885,61889,61889,61893,61897,63590,61898,63441,63591,61901,61905,61909,61912,61916,63592,61924,61928,61929,61932,61936,61936,61937,61941,63593,61946,61950,61950,63444,63594,63445,61955,61958,61964,61968,61972,61972,61973,61977,61978,61981,63446,63447,61986,61990,61996,61997,62001,62001,62005,62006,63595,62009,63450,62021,63452,63596,62027,62031,62035,63597,62036,62039,62039,62043,63598,63598,62044,62048,63454,62051,62053,62053,62056,62057,62057,62061,62063,62067,62071,62072,62075,62079,62082,62082,62086,62087,63455,62090,63456,63599,62093,62097,63600,62098,62102,62108,62112,62114,62114,62117,62121,63457,62124,62128,63601,62129,62133,63458,62136,63459,62142,62146,63602,63603,62147,62151,63460,62154,62158,62165,62168,63461,63461,62171,63462,63462,62176,63463,62182,63464,62185,62185,62188,62192,62195,62199,62203,62203,62204,62207,63604,62213,62217,62217,62220,62224,62227,62231,62235,62236,62240,62241,62241,62245,62248,63466,62260,62264,62272,62275,62279,63605,62280,62284,62284,62288,62290,62290,62294,63469,63469,62297,63606,62298,62302,62304,62304,62307,63470,62313,62317,62318,62318,62322,62326,62330,63471,62333,62333,62337,63607,62338,62342,62344,62344,62347,62350,62353,62357,62359,62360,62363,62365,62366,62370,62373,62373,63472,62376,62376,62380,63608,62381,62384,63473,62390,62394,63474,62397,63475,62400,62403,62407,62411,63609,62415,62419,62419,62423,63610,63611,62424,62428,62428,62432,62433,62433,62436,62440,63612,62441,62444,62444,62448,63613,63614,62449,62453,63615,62454,62458,63616,62459,62463,63617,62464,62468,62468,62472,62473,62473,63476,63618,62483,62487,62491,62494,62497,62501,62501,63478,62504,62504,62508,63619,62509,62513,62517,62517,62520,63479,62523,62527,62529,63480,62532,62533,62543,62546,62548,62549,62552,62556,62556,63481,63620,63621,62559,62563,63622,62567,62571,62573,62574,62578,62578,63482,63623,63484,62588,62592,62599,62603,62604,62604,62608,62611,62611,62615,63624,63625,62616,63485,63626,62619,63486,63627,62630,63487,62635,62636,62640,63628,62641,62645,62645,63488,62650,62652,62655,62659,63489,62662,63490,63491,62667,62669,62669,62672,62676,62677,62680,62684,62684,62688,62689,62689,62692,62694,63629,62695,62699,63630,63493,62704,63494,62709,63495,63631,62712,63496,63497,62717,62721,62726,62727,62731,62739,62743,63498,62746,62749,62751,62751,62755,62757,62757,62761,62764,63499,62769,63632,63633,62770,62774,62774,62777,62779,62782,62786,62787,62792,63501,62797,62801,62803,62807,62807,62809,62813,63634,62814,62818,62818,62822,62823,63502,62831,62835,62835,62836,62839,63503,62844,63635,62845,62849,63504,62855,63505,63636,63506,62860,63637,63638,62861,62865,62865,62868,62870,62871,62875,62877,63639,62881,62885,62888,62891,63640,63641,62892,62896,63642,62897,62901,62904,62908,63643,63644,62909,63507,63507,62912,62916,62919,62923,63645,62924,63509,62929,62930,62934,63510,63510,62937,62940,62940,62944,63646,63511,62954,62958,63647,63512,62961,62961,62965,62966,62966,62970,62974,62974,62978,62979,62979,62983,63648,63649,62984,63513,62987,62990,62994,62995,62999,63514,63515,63007,63009,63009,63013,63650,63650,63014,63018,63018,63022,63026,63027,63031,63033,63034,63036,63040,63041,63516,63044,63044,63048,63517,63051,63055,63651,63652,63056,63059,63059,63063,63653,63064,63067,63069,63072,63076,63079,63079,63083,63084,63087,63520,63654,63655,63090,63094,63656,63095,63521,63098,63102,63522,63657,63105,63109,63658,63113,63117,63117,63121,63123,63123,63124,63128,63659,63132,63136,63138,63142,63660,63143,63147,63151,63661,63152,63156,63662,63157,63161,63164,63524,63663,63170,63174,63176,63181,63182,63186,63664,63189,63193,63193,63527,63665,63199,63203,63666,63529,63206,63667,63668,63207,63211,63211,63212,63530,63215,63218,63531,63669,63221,63225,63670,63226,63230,63230,63233,63671,63234,63237,63241,63672,63245,63248,63248,63533,63673,63251,63254,63256,63674,63534,60340,60337,60336,60333,60328,60327,60433,60318,60314,60312,60308,60447,60303,60301,60454,60297,60295,60293,60292,60287,60286,60462,60281,60280,60278,60275,60273,60272,60269,60452,60266,60266,60263,60260,60259,60258,60255,60255,60423,60253,60252,59711,60187,59707,59706,59704,59694,60134,59691,59691,60080,59688,59688,59687,59685,59685,60161,59682,59680,59679,59676,59674,59671,59668,59668,59667,59665,59665,59664,59662,59659,59658,59656,59656,59655,59653,59653,59652,59649,59645,60194,59642,59640,59637,59634,59633,59632,59630,59630,60160,59627,59619,59617,60185,59613,59612,60193,59607,59606,59603,59594,59593,59590,59589,59588,59586,59586,59585,59583,59581,59580,59577,63675,63262,63266,63267,63269,63535,63536,63274,63275,63275,63279,63281,63676,63282,63537,63538,63287,63289,63289,63293,63677,63296,63297,63301,63678,63304,63308,63679,63309,63313,63315,63539,63680,63680,63318,46379,46374,46373,46370,46370,46368,46367,46360,46357,46355,46354,46353,46441,46441,46348,46347,46345,46344,46341,46338,46335,46334,46332,46425,46329,46329,46416,46325,46325,46530,46528,46525,46524,46522,46522,46521,46660,46660,46518,46516,46516,63321,63681,63322,63326,63682,63327,63540,63683,63684,63333,63337,63337,63341,63344,63542,63347,63348,63348,63543,63351,63351,63355,63356,63356,63360,63362,63685,63544,63365,63366,63369,63545,63686,63372,63376,63546,63379,63381,63381,44105,44102,44095,44094,44368,44368,44091,44088,44088,44086,44083,44079,44077,44076,44073,44072,44345,44066,44263,44062,44055,44054,44367,44367,44366,44050,44047,44046,44043,44040,44038,44037,44037,44035,44034,44028,44324,44323,44020,44017,44014,44013,44012,44010,44007,44004,44003,43999,44422,44365,43991,43990,44391,44391,44292,43988,43986,43983,43982,43980,44291,43977,43970,43968,43967,43964,43963,44376,43958,44340,44657,44657,44432,43952,43950,43947,43946,43942,43941,44362,43935,43932,43931,43929,43926,44402,44402,43921,43920,43915,43914,44360,44360,43911,43910,43907,44251,43905,43902,43900,43899,43899,43896,43893,43893,43890,43889,43889,43888,43885,43883,43880,43877,43870,43867,43865,43862,44287,43859,43859,43858,43856,43851,44335,43848,43841,43838,43836,43836,43835,43832,43830,43828,43825,43825,43823,43822,43818,44359,43816,43812,44315,43808,43808,43805,43804,43802,43801,43799,43795,43794,44429,43791,43789,43788,43788,43786,43785,43781,44386,43778,43766,43764,44235,43758,43757,44283,43754,43753,43750,43747,43744,43743,43742,43741,43739,43736,43735,43733,43732,43729,43727,43726,43724,43723,43714,43711,43709,43706,43705,43702,43702,43698,43697,43694,43691,43688,43683,43681,43680,43680,43678,43677,43677,40604,39909,39906,45902,45901,45893,45891,45890,45889,45933,45886,45885,45883,45880,45878,45877,45874,45873,45870,45868,45868,45865,45862,45862,45860,45856,45856,45855,45852,45851,45850,45847,45845,45842,45840,45838,45837,45929,45834,45916,45831,45829,45828,45825,45824,45943,45820,45818,45817,45814,45813,45812,45809,45806,45928,45803,45802,45800,45797,45797,45794,45793,45792,45926,45787,45786,45785,45782,45782,45779,45775,45775,45772,45771,45770,45768,45765,45763,45759,45758,45756,45755,45752,45749,45746,45745,45744,45914,45740,45739,45939,45737,45736,45734,45733,45733,45730,45729,45725,45724,45721,45721,45719,45716,45715,45924,45711,45711,45708,45706,45706,45705,45910,45701,45922,45698,45697,45695,45692,45688,45685,45684,45681,45680,45678,45674,45670,45669,45669,45666,45663,45661,45660,45657,45654,45959,45650,45650,45648,45647,45642,45639,45636,45623,45953,45621,45617,45616,39577,39577,39576,40696,39573,40879,39571,39568,39567,39565,39564,39562,39561,39559,39558,40570,39556,39555,40569,39544,40565,39542,39541,40564,39537,39534,39533,39530,39530,39528,39527,39525,39523,39522,39521,40819,39518,39512,40770,39509,39503,39500,39498,39497,39495,39494,39491,39489,40769,39483,39481,39478,39477,40554,39475,39475,40949,39472,39470,39469,39467,39467,39466,39464,39464,39463,39460,39456,39455,39453,39452,39449,39447,39445,39444,39442,39442,39441,40549,39439,39438,39436,39436,40547,39433,39429,39426,39425,39417,39416,40545,39408,39405,39403,39402,40685,39400,39400,39397,39396,39393,39392,39390,39388,39387,39384,39381,40765,39376,39374,39372,39369,39366,39363,39362,39357,39355,39353,39348,39345,39343,39337,39333,39332,39330,39327,40850,39324,39323,42603,42603,61078,61080,61081,61086,63383,63687,61089,61095,61095,61100,63384,63384,61109,63385,63547,61119,61123,61123,61131,61133,61137,61144,61147,61147,61149,61154,63387,63548,63688,61161,61163,63388,61170,63549,63550,63550,61179,63389,61182,61183,63390,63390,61192,61194,63689,61195,63391,63392,63393,63690,63551,61211,63552,61219,61225,61226,61231,61234,61241,61246,61252,63553,61265,63554,61270,61271,63555,61276,61276,61282,63691,61283,63556,63692,61290,61292,61299,63693,63398,61309,63558,61314,61317,61318,61323,61330,61339,61343,63402,61351,61355,63403,63694,61358,63559,63695,63404,61366,61366,63560,63696,61371,61377,61381,61383,63405,63697,61387,61392,61396,61399,63561,63406,61406,61409,61417,61417,61422,63698,61427,61430,61436,61437,61440,61445,61457,61458,63563,61467,61473,63699,61467,63699,63564,61473,63409,61478,61478,61484,61489,61489,61491,61498,63565,63410,63700,63700,63566,61511,61511,63411,63701,63567,61522,63568,63412,63413,61544,63702,63415,61562,61574,63418,63571,63572,61583,63703,63573,61588,61590,61596,61603,61607,61618,61623,63422,63422,61633,61640,63423,63574,63424,63424,63575,63704,61651,61656,61657,61657,63425,63426,63426,63576,63705,63706,61674,63577,63578,63428,61682,61682,61688,63707,63707,63429,61693,61693,61694,63579,63581,61706,63708,61707,63431,63709,63582,61718,63710,61721,61726,63583,61737,61744,63585,61750,61755,61765,61768,61773,63711,61768,63711,63712,63586,63712,63713,63586,63713,61765,63712,63586,61768,61773,61775,61780,61781,61783,63434,63434,61790,63587,63587,61798,61800,63435,61805,61806,61806,61813,63714,61816,61819,61827,63438,61836,63588,61841,61843,61848,61848,61856,61857,63715,61863,61871,63439,63440,61881,63589,61889,61897,63591,61905,61906,61909,61916,61918,63592,61928,61929,61936,61941,61943,63593,61950,63594,63445,61958,61961,61964,61972,61977,61978,63446,63716,63717,63447,61990,61994,61996,62001,63595,63450,63718,63451,62021,63596,62027,62035,63719,63597,62039,63598,63598,62048,63454,62053,62057,62063,62066,62067,62072,62075,62082,62087,63455,63456,63720,63599,62097,63721,63600,62102,62104,63722,62108,62114,62114,62121,63457,63457,62128,63601,63601,62133,63723,63458,63459,62139,62139,62142,63602,63603,62151,63460,63460,62158,62162,62165,63461,63462,63462,63463,63724,62185,62192,63725,62193,62195,62203,62212,63604,62217,62217,62224,63465,62227,62235,62236,62236,62241,62248,63466,62264,62266,63468,62272,62279,62279,63605,62284,62284,62290,63469,63469,63606,63726,62298,62304,63470,62313,62318,62326,62338,62344,62350,62353,62359,62360,62366,62373,62376,62376,63608,63727,62381,63473,63728,63729,62390,63474,62403,62411,63730,63609,62419,63610,63611,62428,62433,62433,62440,63731,63612,62444,63613,63614,62453,63732,63733,63615,62458,63616,62463,63734,63617,62468,62473,62483,62491,63477,63735,62494,62501,62501,62504,63619,63736,62509,62517,62523,62529,63737,63480,62533,62535,62541,62543,62548,62548,62549,62556,63738,63621,62563,63622,62571,62573,62573,62578,63623,63484,62592,62594,62599,62604,62611,62611,63624,63739,63625,63485,63740,62635,62640,63741,63628,62645,62650,62652,62659,63742,63743,63489,63490,63744,63491,62669,62669,62676,63745,62677,62684,62689,62689,62694,63746,63629,62699,63492,63630,62704,63494,63494,63495,63747,63631,63496,63748,63748,63497,62721,62726,62731,62733,62739,63498,62746,62746,62751,62757,62757,62764,62766,63749,63499,63632,63750,63633,62774,62774,62779,63500,63500,62782,62787,62792,62797,62800,63751,62801,62807,62807,62813,63634,63634,62818,62823,63752,63502,62835,62835,62839,62841,63753,63503,63635,62845,63504,62852,63638,62865,62870,62870,62871,62877,63639,62885,63754,62888,63640,63755,63641,62896,63642,63642,62901,62903,62903,62904,63643,63644,63507,62916,62924,62929,63756,63756,62930,63510,63510,62940,63646,63511,62958,63757,63647,62961,62966,62966,62974,62979,62979,63648,63649,63649,63513,62987,62987,62994,63758,62995,63514,63004,63004,63515,63009,63009,63650,63018,63018,63026,63027,63027,63033,63034,63034,63040,63759,63044,63517,63760,63760,63051,63651,63652,63059,63653,63653,63064,63069,63072,63079,63084,63761,63087,63654,63655,63094,63762,63656,63521,63763,63763,63098,63522,63657,63109,63764,63658,63117,63123,63123,63128,63129,63659,63136,63138,63138,63660,63765,63766,63143,63151,63661,63156,63767,63768,63662,63161,63526,63181,63186,63769,63664,63193,63199,63666,63770,63771,63529,63667,63668,63211,63530,63215,63531,63669,63669,63225,63670,63670,63230,63671,63772,63234,63241,63672,63248,63673,63258,63674,60340,60337,60333,60332,60328,60433,60325,60318,60312,60311,60309,60308,60303,60302,60301,60297,60296,60295,60292,60287,60462,60283,60270,60269,60266,60266,60260,60259,60255,60253,60252,60252,60187,59709,59707,59704,59703,59694,59691,59688,59688,59685,59682,59680,59676,59675,59668,59665,59662,59659,59656,59653,59653,59649,59648,59647,59645,59642,59640,59634,59633,59633,59630,59627,59619,60185,59615,59613,60193,59609,59607,59603,59602,59595,59594,59590,59590,59589,59586,59586,59583,59582,59581,59577,63261,63675,63266,63773,63267,63535,63536,63536,63275,63281,63676,63537,63538,63538,63289,63677,63296,63301,63303,63678,63308,63679,63679,63313,63315,63680,46379,46378,46374,46370,46367,46354,46441,46347,46345,46341,46340,46332,46329,46325,46325,46528,46527,46527,46525,46522,46522,46660,46516,46516,63681,63322,63322,63682,63327,63541,63684,63337,63337,63344,63774,63348,63351,63356,63685,63365,63366,63686,63376,63775,63546,63381,44102,44095,44368,44088,44088,44083,44082,44080,44079,44076,44073,44345,44070,44066,44062,44061,44055,44367,44050,44047,44043,44041,44040,44037,44034,44029,44028,44323,44020,44014,44013,44000,43999,44365,43991,44391,43988,43986,43982,43981,43981,43980,43977,43970,43967,43965,43965,43964,44376,43959,43958,44657,44657,43952,43950,43942,44362,43937,43930,43929,44402,44402,43920,43918,43915,44360,43910,43907,43905,43904,43902,43899,43893,43893,43889,43885,43883,43877,43876,43870,43865,43862,43859,43856,43855,43852,43851,43848,43842,43841,43836,43830,43825,43822,43819,43818,43816,43812,43808,43804,43802,43799,43798,43795,44429,43792,43782,43781,43778,43766,44235,43761,43760,43758,44283,43743,43742,43739,43738,43736,43733,43733,43732,43727,43717,43714,43709,43706,43702,43697,43697,43694,43688,43684,43683,43680,43680,43677,39909,39909,39906,45901,45896,45893,45890,45889,45886,45885,45885,45880,45879,45878,45874,45873,45873,45868,45862,45862,45856,45852,45851,45847,45846,45845,45840,45839,45838,45929,45835,45835,45834,45831,45829,45825,45824,45824,45820,45819,45818,45814,45813,45813,45809,45807,45806,45803,45802,45802,45797,45793,45793,45792,45787,45786,45782,45775,45775,45771,45770,45770,45765,45764,45756,45752,45750,45744,45740,45739,45739,45737,45736,45736,45733,45729,45725,45721,45716,45715,45711,45706,45706,45910,45701,45701,45698,45697,45697,45692,45691,45688,45684,45683,45681,45678,45677,45674,45669,45663,45661,45657,45654,45650,45647,45643,45643,45642,45636,45625,45623,45621,45617,39577,40696,39574,39573,39571,39568,39565,39564,39559,40570,39556,39556,40569,39553,39534,39530,39527,39521,39518,39517,39513,39512,39509,39503,39498,39497,39494,39491,40769,39484,39483,39478,39477,39475,39472,39470,39467,39464,39458,39456,39453,39452,39447,39445,39445,39442,40549,39439,39436,39433,39418,39417,40545,39409,39408,39403,39402,39400,39396,39393,39390,39389,39388,39384,39382,39374,39369,39366,39366,39362,39359,39357,39353,39352,39348,39343,39342,39330,40850,39325,39324,42603,61080,61080,61081,63383,63776,63687,61095,63384,63385,63777,63384,63777,61095,61123,61133,63778,61123,63778,63547,61137,61147,63779,61137,63779,61134,61147,61154,63387,63387,63688,63780,61161,63388,63781,63550,63389,61182,61182,63390,61194,63689,63391,63782,63392,63690,63551,63551,63552,61216,61219,61226,61228,61231,61241,61243,61244,61246,63553,61262,61265,61270,61271,61276,63691,61283,63692,63783,61290,61299,63784,63693,61309,63558,61317,61318,61330,63694,63559,63785,63695,61366,63696,63696,61371,61381,63697,61387,61396,61406,61417,63698,61427,61436,61437,61437,61445,61446,61457,63563,63786,63787,63564,63699,63787,63699,61473,63564,63787,63788,61478,61489,63789,61478,63789,61473,61489,61498,61503,63565,63700,61511,63790,63567,63568,63412,61544,61548,63414,63702,61562,61568,61574,63571,63791,63572,63703,63792,63573,61590,61596,61607,61608,61616,61618,63422,63422,61640,63423,63423,63424,63704,61651,61657,63426,63426,63705,61668,63706,63577,63578,63578,61682,63707,63707,61693,63579,63581,63708,61707,61707,63709,63793,63794,63582,63710,61721,63583,61731,61737,63585,63795,61749,61750,61765,61773,61780,63796,61773,63796,63797,63712,63797,63798,63798,61765,63713,63798,63713,63712,63797,63712,63711,63797,63711,61773,61780,61781,63434,63434,63587,61800,63435,61806,63714,63436,61816,61827,63438,63588,63799,61841,61848,61857,63715,61871,63439,63439,61881,63800,61884,63589,61897,63591,61906,61908,63801,61909,61918,63443,63592,61929,61929,61936,61943,61945,63593,63594,61963,61964,61977,63802,63717,61990,63803,61994,62001,63595,63718,62012,63804,63451,63596,62027,63719,63597,63598,63454,62053,62053,62063,62064,62066,62072,62074,62075,62087,63455,63599,63721,63805,63806,63722,62114,62114,63457,63601,63601,63723,63807,63458,62139,63602,63808,63603,63460,63460,62162,63809,63462,63724,63810,62185,63725,62193,62193,62203,62207,62210,62212,62217,62217,63465,63811,62227,62236,62248,63466,62266,63467,63468,62279,62284,62284,63469,63726,62298,63470,63812,62313,62326,62327,63607,62338,62350,62350,62353,62360,63813,62366,62376,62376,63727,63814,63815,62381,63728,63729,63474,62397,62400,62403,63730,63816,63609,63610,63610,63611,62433,62433,63731,63612,63612,63613,63817,63614,63732,63818,63733,62458,63819,63616,63734,63820,63617,62473,63618,62481,62483,63477,62501,63619,63821,63736,62517,63479,63480,62535,63822,62548,62556,63620,63823,63738,62563,63622,62573,63623,63824,63484,62594,62595,62599,62611,63741,63628,62650,62652,63742,63743,63743,63490,63825,62669,63745,63826,62669,63826,63744,63827,62677,62689,63746,63629,63492,63828,63630,63494,63748,62721,62723,62726,62733,62734,62737,62739,62746,62746,62757,62766,63749,63632,63829,63750,62774,63500,63500,62787,62791,63751,62807,63634,63634,62823,62825,63830,63752,62835,62835,62841,63753,63753,63635,63831,62845,62852,63832,63833,63638,62870,62870,62877,63834,63639,63754,63835,62888,63755,63641,63642,62903,63643,63643,63644,62916,62924,63756,63510,63510,63646,63836,63511,63757,63837,63647,62966,62979,62979,63649,62987,62995,63004,63009,63018,63027,63838,63018,63838,63009,63027,63034,63759,63044,63760,63651,63652,63653,63069,63518,63072,63084,63761,63654,63839,63655,63762,63840,63656,63763,63522,63841,63657,63764,63658,63123,63129,63659,63138,63765,63765,63766,63151,63842,63661,63767,63843,63768,63161,63526,63186,63188,63769,63193,63665,63199,63770,63771,63771,63667,63668,63668,63530,63844,63844,63215,63669,63669,63670,63671,63772,63241,63845,63846,63672,63673,63258,60340,60339,60337,60332,60331,60329,60328,60325,60310,60309,60303,60302,60297,60296,60296,60292,60289,60288,60287,60283,60270,60266,60259,60255,60252,59709,59695,59694,59688,59688,59682,59681,59674,59668,59662,59659,59653,59648,59647,59642,59641,59633,59627,59626,59620,59619,59615,59614,59613,59609,59609,59607,59602,59596,59595,59590,59590,59586,59582,59582,59581,63261,63267,63536,63281,63676,63538,63677,63296,63303,63678,63678,63679,63315,63680,46378,46377,46374,46367,46366,46355,46354,46347,46346,46345,46340,46333,46332,46325,46527,46522,46516,46516,63322,63327,63330,63541,63337,63337,63774,63847,63542,63348,63356,63685,63366,63545,63545,63686,63775,63848,63546,44102,44096,44095,44088,44080,44076,44075,44074,44073,44070,44056,44055,44050,44047,44041,44040,44040,44034,44032,44031,44029,44323,44020,44013,44010,44002,44000,44365,43992,43991,43988,43981,43977,43976,43971,43970,43965,43965,44376,43961,43959,44657,43950,43944,43942,43937,43930,44402,43918,43916,43915,43910,43902,43893,43885,43884,43883,43876,43870,43862,43859,43852,43848,43847,43844,43842,43836,43831,43830,43822,43820,43819,43816,43813,43812,43804,43803,43802,43798,43795,43792,43791,43783,43782,43778,43767,43766,43761,43760,44283,43755,43743,43739,43738,43738,43733,43727,43717,43709,43707,43706,43697,43688,43684,43680,39909,39909,45901,45899,45896,45890,45889,45889,45885,45879,45873,45862,45852,45852,45851,45846,45845,45839,45838,45838,45835,45831,45829,45824,45819,45818,45813,45807,45802,45793,45787,45787,45786,45775,45756,45750,45749,45744,45739,45736,45736,45729,45728,45725,45716,45715,45715,45706,45701,45690,45688,45683,45682,45681,45677,45674,45663,45661,45661,45654,45650,45650,45643,45636,45625,45621,45620,45618,45617,40696,40696,39574,39571,39568,39564,39561,39559,39556,39553,39536,39534,39527,39522,39521,39517,39514,39513,39509,39494,40769,39486,39484,39478,39477,39477,39472,39471,39470,39464,39460,39452,39445,40549,39439,39433,39432,39418,40545,39414,39410,39409,39403,39402,39396,39393,39393,39389,39388,39374,39366,39359,39357,39352,39351,39348,39342,39341,39332,39330,39325,39325,39324,61080,61080,63383,63849,63850,61095,63777,63850,63777,63385,61095,63850,63776,61133,61134,63851,63851,63547,63778,63851,63778,61133,61147,63387,63852,63852,61134,63779,63852,63779,61147,61161,63781,61170,63550,61182,61194,63689,63782,63853,63392,63551,61216,63854,61219,61228,61231,61243,63855,61262,61270,61271,61271,63691,61283,61288,61290,63784,63693,63558,61317,61317,61330,63399,63856,63695,63696,63696,61381,61383,61383,63697,61396,61406,63698,63562,61437,61446,63857,61437,63857,61427,61453,61457,63786,63858,63788,63787,63858,63787,61473,63788,63858,63859,61503,61473,63789,61503,63789,61489,63860,63565,61511,61517,63790,63568,61535,63412,61548,63414,61562,63416,63861,61568,63571,63791,63703,63792,63792,61590,63421,61596,61608,61610,61614,61616,63422,63422,63423,63704,61651,63426,61668,63706,63578,63707,63707,63579,63580,63581,61707,63793,63794,63710,61719,61721,61731,61733,63584,61737,63795,61749,61765,63798,63798,63797,63862,63798,63862,61749,63863,63797,63796,63796,61780,63864,63796,63864,63863,63797,63863,63865,63865,61749,63862,63865,63862,63797,61780,63434,61800,63435,63714,63436,63436,61827,63866,63438,63799,61841,61841,61857,61860,61882,61884,61897,63801,61918,63442,63443,61929,61943,61945,63594,63867,61963,61977,61978,63802,61990,61991,63868,63803,62001,63804,63596,63869,62027,63597,63598,63598,62053,62064,62064,62066,62074,62074,62075,63455,63806,62114,63601,63458,63602,63870,63808,63460,63809,62165,63462,63810,62193,62207,63871,62193,63871,62185,62210,62217,63811,62227,62248,62252,62257,63466,63467,63468,62284,63726,62298,63812,62310,62313,62327,62330,62350,62360,62365,63813,62376,63814,63815,63728,62387,63729,62397,62400,63872,63816,63610,63610,62433,63612,63612,63817,63873,63733,63819,63874,63875,63617,63618,62480,62481,63477,63735,62501,63821,63876,63736,63479,62541,62548,63620,63823,62563,63877,62566,63622,63623,62585,63824,62594,62595,62611,63739,62635,63741,62650,62652,63743,63825,63745,63827,62689,62689,63746,63492,63828,63494,63747,63748,62723,63878,62746,62766,63879,62746,63879,62737,63749,63829,63880,63881,63750,63500,63751,63634,62825,63830,62835,63753,63753,63831,62845,63882,63833,62870,62870,63834,62878,62880,63639,63835,63641,63642,63643,63643,62916,63508,62924,63510,63836,62979,62987,63883,62979,63883,63647,63884,63009,63838,63884,63838,63027,63009,63884,62995,63027,63759,63041,63044,63651,63885,63044,63885,63041,63652,63069,63518,63518,63084,63519,63519,63761,63839,63886,63655,63840,63656,63522,63887,63841,63764,63110,63888,63658,63129,63659,63765,63151,63842,63767,63889,63843,63161,63163,63176,63526,63188,63890,63769,63665,63199,63771,63668,63844,63669,63671,63772,63845,63242,63846,63673,63251,63256,63258,60339,60329,60325,60324,60310,60303,60302,60302,60296,60289,60288,60283,60282,60271,60270,60259,60259,60255,59709,59695,59688,59681,59674,59662,59661,59661,59659,59648,59647,59641,59640,59621,59620,59615,59614,59609,59602,59596,59590,59582,59582,63261,63675,63267,63281,63891,63676,63677,63892,63296,63678,63315,63680,46377,46374,46374,46366,46365,46360,46355,46347,46333,46325,46527,46527,46516,63327,63330,63337,63847,63542,63356,63362,63545,63775,63848,63848,44102,44101,44097,44096,44088,44081,44080,44075,44074,44070,44069,44057,44056,44050,44031,44323,44022,44021,44020,44010,44003,44002,44365,43993,43992,43988,43981,43976,43975,43971,43965,43961,43960,43959,43950,43944,43937,43936,43931,43930,43918,43916,43910,43909,43902,43885,43884,43884,43876,43875,43872,43870,43859,43852,43847,43846,43844,43836,43832,43831,43822,43821,43813,43804,43803,43803,43798,43797,43784,43783,43778,43767,43761,43760,43760,43755,43754,43743,43738,43727,43717,43707,43706,43706,43688,43686,43684,39909,45899,45896,45889,45879,45838,45831,45830,45830,45829,45819,45819,45818,45807,45806,45802,45787,45787,45775,45770,45744,45736,45728,45725,45715,45701,45690,45683,45682,45682,45677,45675,45675,45674,45661,45650,45636,63893,45650,63893,45661,45626,45625,45620,45619,45618,40696,40696,39571,39570,39570,39568,39561,39561,39559,39553,39537,39536,39527,39522,39517,39514,39514,39509,39508,39497,39494,39486,39485,39484,39477,39477,39471,39470,39470,39460,39459,39452,40549,39439,39439,39432,39430,39418,39414,39413,39410,39403,39402,39393,39388,39382,39374,39359,39358,39358,39357,39351,39332,39325,61080,63385,63547,63894,63894,63776,63850,63894,63850,63385,63895,61134,63852,63895,63852,63387,61134,63895,63896,63851,63896,63897,63851,63897,63547,63896,63851,61134,61158,61161,61170,61170,63550,61194,63689,63853,63898,63392,61216,63394,63854,61228,61230,63855,61244,63899,63855,63899,61231,61271,61283,63900,61271,63900,61262,61288,63784,63901,63557,63693,61317,61317,63399,63902,63903,63856,63696,61383,61396,61397,61406,63562,61427,61446,61448,63904,63904,61427,63857,63904,63857,61446,61453,63786,63905,61473,61503,63906,61473,63906,63907,63858,63907,63908,63858,63908,63859,63907,63858,61473,63860,61511,63701,61515,61517,63568,61535,61548,63569,61553,63414,63416,63861,63571,63909,63791,63792,63421,61596,61610,63910,61614,63422,63704,61651,61668,61670,63427,63706,63707,63581,63793,63794,63794,61719,61721,61721,61733,63584,63584,63795,61747,61747,61749,63865,63865,63863,63911,63865,63911,61747,63912,63863,63864,63864,61780,63913,63864,63913,63912,63863,63912,63914,63914,61747,63911,63914,63911,63863,61780,61800,63915,63436,63866,63916,63436,63916,63435,61841,61860,63917,61841,63917,63438,63800,61882,61897,61908,63801,63442,61921,63443,61943,61945,63867,63445,61961,61963,61978,63802,61991,63448,63868,62001,62006,63804,63869,62024,63918,62027,63598,63598,62064,62074,62074,63455,63720,62107,63806,63601,63458,63870,63919,63920,63808,63809,63921,62185,63871,63921,63871,62207,62185,63921,62182,63922,62210,63811,62227,62252,63923,62257,63467,62269,62269,63468,63726,62298,62310,62312,62313,62330,62333,63607,62350,62365,63813,63814,63924,63925,63815,62387,63926,63872,63610,63610,63612,63873,63733,63874,63927,63928,63875,63618,62476,62480,63477,63929,63735,63821,63930,63876,63479,62541,63620,63931,63823,63877,63932,62566,63623,63933,62583,62585,62594,63934,62595,63739,62635,62650,62652,62652,63825,63935,63745,62689,63492,63828,63747,63631,63748,63878,62724,63879,63936,63937,63879,63937,62737,63936,63879,62766,63749,63880,63938,63939,63881,63500,63940,63751,62825,63830,63753,62845,63941,63882,62870,62878,62880,63835,63641,63643,63508,63645,62924,63836,62987,63758,63942,63942,63647,63883,63942,63883,62987,63943,62995,63884,63943,63884,63027,62995,63943,63944,63945,63041,63885,63945,63885,63651,63041,63945,63027,63652,63518,63519,63519,63839,63946,63886,63840,63947,63656,63887,63841,63841,63110,63523,63888,63129,63131,63948,63659,63151,63949,63843,63163,63170,63176,63188,63199,63668,63844,63844,63671,63950,63772,63242,63532,63846,63251,63256,63256,60339,60338,60329,60324,60322,60310,60302,60289,60289,60288,60282,60272,60271,60259,60259,59709,59708,59696,59695,59681,59674,59661,59648,59647,59640,59633,59621,59615,59614,59614,59602,59601,59596,59582,63675,63267,63891,63676,63676,63892,63294,63294,63296,63315,63680,46374,63951,63680,63951,63315,46374,46365,46362,46361,46360,46347,46333,46527,63327,63685,63545,63848,63848,44101,44100,44098,44097,44088,44074,44069,44068,44057,44050,44049,44032,44031,44022,44021,44010,44009,44007,44003,44365,43993,43988,43987,43971,43961,43960,43960,43950,43946,43944,43936,43935,43935,43931,43918,43917,43916,43909,43884,43875,63952,43884,63952,43902,43872,43859,43855,43853,43852,43846,43845,43844,43832,43831,43821,43820,43814,43813,43803,43803,43797,43796,43784,43778,43777,43768,43767,43760,43747,43743,43727,43717,43706,43686,43685,43684,45899,45898,45896,45879,45830,45819,45807,45806,45787,45770,45745,45744,45728,45726,45725,45701,63953,45661,63893,63953,63893,45636,45661,63953,45675,45626,45620,45619,45619,40696,39570,39561,39553,63954,39561,63954,39570,39537,39527,39526,39514,39508,39506,39503,39497,39486,39485,39477,39470,39470,39459,39458,39452,39439,39430,39410,39402,39393,39393,39382,39381,39374,39358,39351,39332,61080,63849,63955,63547,63897,63955,63897,63896,63956,63896,63895,63956,63895,63387,63896,63956,63955,63547,63955,63957,63894,63957,63958,63894,63958,63776,63957,63894,63547,61170,61194,63959,61170,63959,61158,63960,63392,63394,63854,61230,63961,61244,63553,63962,63962,61231,63899,63962,63899,61244,61283,63783,63963,63963,61262,63900,63963,63900,61283,61288,63901,63964,61300,63557,61317,61317,63902,63400,63903,63696,61383,61383,61397,61399,61448,61449,63965,63965,61427,63904,63965,63904,61448,61453,63905,63859,63907,63860,63966,63907,63966,63967,63908,63967,63968,63908,63968,63859,63967,63908,63907,63860,63907,63906,63860,63906,61503,63860,63701,63969,61515,63568,63970,63971,61535,63569,63972,61553,63416,63861,63909,63973,63421,61596,63910,61614,63704,63974,61614,63974,61611,61671,63427,63707,63430,63581,63794,63794,61721,63584,63914,63975,63976,63914,63976,61747,63975,63914,63912,63977,63912,63913,63977,63913,61780,63912,63977,63975,63978,61747,63976,63978,63976,63975,61747,63978,63584,61780,63915,63979,63916,63980,63981,63916,63981,63435,63980,63916,63866,61860,61862,63982,63982,63438,63917,63982,63917,61860,63439,63800,61897,63591,61908,63442,63983,61921,61943,61945,63445,61961,61961,61978,63716,63802,63448,63984,63984,63868,62006,63804,62024,63453,63918,63598,62074,62074,63720,63599,62105,62107,63601,63458,63919,63985,63986,63920,63809,62207,62209,63987,63987,62182,63921,63987,63921,62207,63988,63922,63811,62227,63923,62253,62257,62269,63726,63989,62313,62333,63607,62365,63813,63813,63924,63925,63925,62387,62389,62414,63926,63610,63610,63873,63614,62476,63477,63929,63929,63821,63990,63930,63479,62523,62540,62541,63931,63823,63932,62564,62566,63933,63483,62583,62594,63991,63934,63739,63992,62633,62635,62652,62652,63935,63744,63745,63492,63993,63993,63744,63826,63993,63826,63745,63994,63828,63631,63631,63748,62724,63936,63995,63996,63996,62737,63937,63996,63937,63936,63749,63938,63997,63939,63500,62791,63940,62825,62826,62828,63830,62845,63637,63941,62870,62878,63835,63998,63641,63508,63999,63645,63836,62945,64000,63944,63943,64000,63943,63027,63944,64000,63758,63651,64001,64002,64002,63027,63945,64002,63945,63651,63652,63519,63946,63886,63947,64003,64003,63656,63841,63888,63131,63948,63948,63151,63842,64004,63949,63163,64005,63170,63188,63844,63950,64006,63844,64006,63199,63950,63772,63532,64007,63846,63256,63256,60338,60337,60330,60329,60322,60310,60289,60282,60275,60272,60259,60259,59708,59707,59699,59696,59681,59675,59674,59648,59647,59633,59626,59621,59614,59601,59596,63675,63773,63676,63294,63315,46374,46362,64008,64008,63315,63951,64008,63951,46374,46361,46347,46346,46334,46333,63327,63685,63848,44100,44099,44098,44088,44057,44049,44047,44032,44022,44021,44007,44365,43995,43993,43987,43986,43971,43960,43946,43944,43935,43918,43917,43909,43908,43875,43872,64009,64009,43902,63952,64009,63952,43875,43872,43855,43854,43854,43853,43846,43846,43845,43832,43831,43820,43816,43814,43803,43796,43784,43777,43776,43769,43768,43760,43747,43727,43726,43718,43717,43686,43685,45899,45898,45898,45879,45878,45830,45807,45806,45806,45770,45764,45745,45728,45726,45726,45701,45697,64010,45675,63953,64010,63953,45636,45675,64010,45682,45619,39570,64011,45619,64011,45626,39553,39552,64012,64012,39570,63954,64012,63954,39553,39505,39503,39486,39486,39485,39470,39453,39452,39430,39411,39410,39393,39374,39351,39350,39337,39332,63849,63957,64013,64014,64014,63776,63958,64014,63958,63957,64013,63957,63955,64015,63955,63956,64015,63956,63387,63955,64015,64013,64016,63776,64014,64014,64013,64017,64014,64017,64016,63776,64016,64018,63776,64018,63849,64019,61158,63959,64019,63959,61194,61158,64019,63780,63960,63394,63854,63783,64020,64021,64021,61262,63963,64021,63963,63783,64022,61300,61317,61317,63400,63401,64023,63903,61383,61383,61399,63406,61449,61453,64024,64024,61427,63965,64024,63965,61449,64025,63859,63968,64025,63968,63967,64026,63967,63966,64026,63966,63860,63967,64026,64025,63859,64025,64027,63859,64027,61453,63860,63969,64028,61515,63970,64029,61534,63971,63569,63972,63416,63417,63861,63973,64030,63421,63910,61611,63704,61647,64031,64031,61611,63974,64031,63974,63704,61671,63707,63580,63430,63794,63584,64032,63975,64033,64033,63979,64034,64033,64034,64032,63978,64032,64035,63978,64035,63584,64032,63978,63975,63977,63979,64033,63977,64033,63975,63979,63977,61780,63980,61828,64036,64036,63435,63981,64036,63981,63980,61862,63715,64037,64037,63438,63982,64037,63982,61862,63439,61897,64038,63441,63591,63442,63983,61943,61945,61961,63716,63802,63802,63984,62006,62018,63804,63453,63453,63918,62074,62104,62105,63601,64039,63458,63985,63986,63809,64040,62209,63988,64041,64041,62182,63987,64041,63987,62209,63988,63811,64042,62227,62253,62255,62255,62257,63726,63989,62333,63607,63813,63925,64043,63813,64043,63607,63925,62389,63729,62414,63610,63614,64044,62476,63929,63929,63990,63930,63930,62523,63737,62536,62540,63931,63823,62564,62566,62566,63483,62583,62583,63991,64045,63934,63992,63625,62652,63744,64046,62652,64046,62633,63993,63994,64047,63993,64047,63744,63994,63993,63492,63631,62724,64048,63631,64048,63994,63995,63749,64049,64049,62737,63996,64049,63996,63995,64050,63939,62791,63940,62826,62828,62845,63832,64051,62845,64051,62828,63637,62870,62878,62878,63998,62886,63641,63999,64052,63645,62945,62947,64001,63758,64000,64000,63027,64002,64000,64002,64001,63652,63946,63886,63886,64003,63841,63948,63842,63889,64004,63163,63164,64005,63188,63890,63950,63532,64053,64053,63199,64006,64053,64006,63950,64007,63256,60337,60331,60330,60322,60310,60282,60281,60275,60259,59707,59699,59681,59680,59680,59675,59648,59596,63773,64054,63676,63315,64055,63676,64055,63267,46362,46361,64056,64056,63315,64008,64056,64008,46362,46361,46346,46340,46338,46334,63327,63362,63685,44100,44099,44088,44082,44058,44057,44047,44008,44007,43995,43993,43986,43981,43972,43971,43946,43944,43918,43917,43872,43854,64057,43872,64057,64058,64009,64058,64059,64009,64059,43902,64058,64009,43872,43846,43832,43831,43831,43816,43815,43815,43814,43796,43784,43776,43775,43770,43769,43760,43747,43726,43723,43719,43718,43686,43685,45898,45878,45806,45764,64060,45806,64060,45830,45726,45697,45691,64061,45682,64010,64010,45636,64062,64010,64062,64061,45682,64061,64063,45682,64063,45690,64064,45626,64011,64064,64011,39570,45626,64064,45628,39552,39551,64065,64065,39570,64012,64065,64012,39552,39486,39470,64066,39486,64066,39505,39453,39430,64067,39453,64067,39458,39413,39411,39393,39374,39350,39348,39340,39337,63849,63387,63780,64068,63387,64068,64069,64070,64069,64071,64070,64071,64072,64069,64070,63387,64013,64072,64073,64013,64073,64074,64016,64074,64075,64075,63849,64018,64075,64018,64016,64074,64016,64017,64074,64017,64013,64072,64013,64015,64015,63387,64070,64015,64070,64072,64019,64076,64077,64019,64077,63780,64076,64019,61194,64078,61262,64021,64078,64021,64020,61262,64078,61260,64022,61317,63401,63785,64023,61383,61383,63406,64079,64080,61453,64027,64080,64027,64025,64081,64025,64026,64081,64026,63860,64025,64081,64080,64080,64082,64083,64080,64083,61453,64082,61427,64024,64024,61453,64083,64024,64083,64082,63860,64028,61515,61515,64029,61527,61529,61534,63569,63972,63417,63570,64084,61611,64031,64084,64031,61647,61611,64084,63421,61670,61671,63580,63580,63430,63584,64032,64085,64086,64086,63584,64035,64086,64035,64032,64085,64032,64034,64085,64034,63979,61828,61830,64087,64087,63435,64036,64087,64036,61828,63715,63439,64088,64037,64088,64089,64037,64089,63438,64088,64037,63715,63439,64038,64090,63590,63441,63442,63983,61945,61961,63802,62006,63449,62018,63453,62074,62104,63601,64091,62104,64091,63600,64092,64039,63985,63986,64040,62163,63988,64042,64093,64093,62182,64041,64093,64041,63988,62255,63726,64094,62255,64094,62227,64095,63607,64043,64095,64043,63925,63607,64095,63989,63925,63729,62400,62412,62414,63614,63618,64044,63929,63929,63930,63737,62536,63931,64096,64097,63823,62566,63934,63625,63740,64098,62633,64046,64098,64046,63744,62633,64098,64099,62724,63744,64047,64047,63994,64048,64047,64048,62724,63749,63997,64100,64100,62737,64049,64100,64049,63749,64050,62791,62792,64101,62828,64051,64101,64051,63832,62828,64101,63940,63637,62878,62886,63641,64052,62919,62919,63645,62947,63758,64001,63652,63652,63886,63841,63948,63889,64102,63948,64102,63888,64004,63164,63663,63890,63665,64103,63890,64103,64005,64104,63199,64053,64104,64053,63532,63199,64104,64105,64007,60337,60331,60331,60322,60321,60281,60278,64106,60281,64106,60310,60275,59707,59703,59680,59648,64107,59680,64107,59699,59597,59596,64054,64108,63267,64055,64108,64055,63315,63267,64108,64109,46361,46340,64110,46361,64110,64111,64056,64111,64112,64056,64112,63315,64111,64056,46361,46340,46338,63327,63362,44100,44099,44099,44082,44081,44058,44047,44040,44008,43995,43994,43993,43981,43975,43975,43972,43946,43945,43944,43917,43846,43831,43815,43815,43796,43795,43784,43775,43774,43770,43760,43754,43747,43723,43722,43719,43686,43685,43685,45878,45873,64113,45830,64060,64113,64060,45764,45830,64113,45838,45726,45691,45690,45636,45634,64114,64114,64115,64116,64114,64116,45636,64061,64115,64117,64117,45690,64063,64117,64063,64061,64115,64061,64062,64062,45636,64116,64062,64116,64115,64118,39570,64065,64118,64065,39551,64118,45628,64064,64118,64064,39570,64119,39505,64066,64119,64066,39470,39505,64119,39506,39430,39429,64120,64120,39458,64067,64120,64067,39430,39376,39374,39348,39341,39340,63849,64077,64121,64122,64077,64122,63780,64121,64077,64076,63964,64022,63401,63785,61383,64079,61515,61527,64123,61515,64123,63860,61529,63569,63972,63972,63570,64124,61647,61651,64125,64125,63421,64084,64125,64084,61647,61670,63580,64126,61670,64126,61651,64085,64127,64128,64086,64128,64129,64086,64129,63584,64128,64086,64085,61830,64130,64131,64131,63435,64087,64131,64087,61830,63439,64090,64132,63439,64132,64133,64088,64133,64134,64134,63438,64089,64134,64089,64088,64133,64088,63439,63590,63442,63983,61961,63802,64135,61961,64135,63983,63802,63449,64136,62018,62074,63599,64091,63807,64137,64091,64137,63600,63807,64091,63601,64092,63985,63986,63986,62163,62165,64093,64138,64139,64093,64139,62182,64138,64093,64042,63726,62298,64140,64140,62227,64094,64140,64094,63726,63925,62400,64141,64141,63989,64095,64141,64095,63925,64142,62412,63614,63618,63929,63737,62536,64096,64097,64143,63934,63740,64144,64099,64098,64144,64098,63744,64099,64144,63487,63744,62724,62726,63997,64050,64145,64145,62737,64100,64145,64100,63997,64146,63940,64101,64146,64101,63832,63940,64146,62800,63506,63637,62886,62919,62947,64147,63758,63652,63841,63889,64004,64148,64148,63888,64102,64148,64102,63889,64004,63663,64149,64150,64005,64103,64150,64103,63665,64005,64150,63525,63532,64007,64151,64151,64105,64104,64151,64104,63532,64007,60331,60321,60276,60275,59703,64152,59699,64107,64152,64107,59648,59699,64152,59700,59597,64054,64153,64111,64154,64155,64155,63315,64112,64155,64112,64111,64156,64111,64110,64156,64110,46340,64111,64156,64154,64108,64155,64157,64108,64157,64109,64155,64108,63315,64155,64154,64158,64158,64109,64157,64158,64157,64155,46340,63327,63683,63362,44099,44081,44040,44032,64159,44040,64159,44058,44008,43994,43993,43975,43946,64160,43975,64160,43993,43945,43917,43908,43815,43795,64161,43815,64161,43846,43784,43774,43773,43771,43770,43754,43747,43722,43721,43685,45873,64162,43685,64162,43719,64163,45838,64113,64163,64113,45764,45838,64163,45845,64164,45690,64117,64164,64117,64115,64165,64115,64114,64165,64114,45634,64115,64165,64164,45690,64164,64166,45690,64166,45726,64167,45628,64118,64167,64118,39551,45628,64167,45629,64168,39506,64119,64168,64119,39470,39506,64168,39514,39429,39425,64169,64169,39458,64120,64169,64120,39429,39376,39348,39341,64170,64074,64171,64170,64171,64172,64074,64170,64173,64075,64173,64174,64075,64174,63849,64173,64075,64074,64073,64172,64171,64073,64171,64074,64172,64073,64072,64071,64175,64176,64071,64176,64072,64175,64071,64069,64177,64069,64068,64177,64068,63780,64069,64177,64175,64178,64072,64176,64178,64176,64175,64072,64178,64172,64174,64179,64180,64174,64180,63849,64179,64174,64173,64181,64173,64170,64181,64170,64172,64173,64181,64179,64182,63849,64180,64182,64180,64179,63849,64182,39341,64122,64183,64184,64122,64184,63780,64183,64122,64121,63964,63401,64185,63964,64185,61288,63694,63785,64079,61527,61529,64186,64186,63860,64123,64186,64123,61527,61529,63972,64124,64187,61651,64126,64187,64126,63580,61651,64187,64188,64125,64188,64189,64125,64189,63421,64188,64125,61651,64127,63435,64190,64127,64190,64191,64128,64191,64192,64192,63584,64129,64192,64129,64128,64191,64128,64127,64130,63438,64193,64193,63435,64131,64193,64131,64130,64090,64194,64195,64195,64196,64197,64195,64197,64090,64133,64196,64198,64198,63438,64134,64198,64134,64133,64196,64133,64132,64132,64090,64197,64132,64197,64196,64199,63983,64135,64199,64135,63802,63983,64199,63590,63802,64136,64200,62018,63599,64201,62018,64201,62014,64202,63600,64137,64202,64137,63807,63600,64202,64203,64092,63986,62165,64139,62227,64204,64139,64204,62182,62227,64139,64138,62298,62312,64205,64205,62227,64140,64205,64140,62298,62400,63730,64206,64206,63989,64141,64206,64141,62400,64207,64142,63614,63928,63618,63737,62536,64097,62566,64208,64143,63740,63744,62726,62734,64050,62792,64209,64050,64209,64210,64145,64210,64211,64145,64211,62737,64210,64145,64050,64212,62800,64146,64212,64146,63832,62800,64212,62792,63636,63506,62886,62919,64147,62948,63758,63841,64213,63758,64213,64214,63942,64214,64215,63942,64215,63647,64214,63942,63758,64004,64149,64216,64004,64216,64217,64148,64217,64218,64148,64218,63888,64217,64148,64004,64219,63525,64150,64219,64150,63665,63525,64219,63167,64007,60321,64220,64220,64105,64151,64220,64151,64007,60277,60276,59703,59648,59647,64221,64221,59700,64152,64221,64152,59648,59597,64153,64222,64158,64223,64224,64158,64224,64109,64223,64158,64154,64225,64154,64156,64225,64156,46340,64154,64225,64223,64226,64109,64224,64226,64224,64223,64109,64226,64222,46340,63683,63330,63362,44081,64227,63362,64227,63542,64228,43993,64160,64228,64160,43946,43993,64228,44008,43945,43908,43907,43795,43791,64229,64229,43846,64161,64229,64161,43795,43784,43773,43772,43771,43754,64230,43771,64230,43772,64231,43719,64162,64231,64162,45873,43719,64231,43720,45764,45763,64232,64232,45845,64163,64232,64163,45764,64166,64233,64234,64166,64234,45726,64233,64166,64164,64235,64164,64165,64165,45634,64236,64165,64236,64235,64164,64235,64237,64164,64237,64233,64238,45726,64234,64234,64233,64239,64234,64239,64238,45726,64238,64240,45726,64240,45745,64241,45629,64167,64241,64167,39551,45629,64241,64242,45629,64242,45630,39470,39458,64243,64243,39514,64168,64243,64168,39470,39425,39424,64244,64244,39458,64169,64244,64169,39425,39376,39341,64182,39376,64182,64179,64245,64179,64181,64245,64181,64172,64179,64245,39376,64246,64172,64178,64246,64178,64175,64247,64175,64177,64247,64177,63780,64175,64247,64246,64172,64246,64248,64248,39376,64245,64248,64245,64172,64184,64249,64250,64184,64250,63780,64249,64184,64183,63401,61338,64251,64251,61288,64185,64251,64185,63401,63403,63694,64079,61529,64124,64252,61529,64252,64253,64186,64253,64254,64186,64254,63860,64253,64186,61529,64189,64255,64256,64189,64256,63421,64255,64189,64188,64257,64188,64187,64257,64187,63580,64188,64257,64255,64258,63421,64256,64258,64256,64255,63421,64258,63791,64193,64259,64260,64193,64260,63435,64259,64193,63438,64260,64261,64262,64260,64262,63435,64261,64260,64259,64191,64261,64263,64263,63584,64192,64263,64192,64191,64262,64191,64190,64262,64190,63435,64191,64262,64261,64194,64264,64265,64265,64266,64267,64265,64267,64194,64196,64266,64268,64268,63438,64198,64268,64198,64196,64266,64196,64195,64195,64194,64267,64195,64267,64266,64269,63590,64199,64269,64199,63802,63590,64269,64270,64200,64271,64272,64200,64272,63802,64273,62014,64201,64273,64201,63599,62014,64273,62012,63807,64274,64275,64275,64203,64202,64275,64202,63807,64276,64092,62165,64277,64204,64278,64277,64278,62312,64204,64277,62182,64204,62227,64205,64205,62312,64278,64205,64278,64204,64279,63989,64206,64279,64206,63730,63989,64279,62312,64207,63614,63818,63928,63737,64280,64281,62536,62566,64045,64208,63740,62734,63487,64144,62734,64144,63744,64282,62792,64212,64282,64212,63832,62792,64282,64283,64210,64283,64284,64284,62737,64211,64284,64211,64210,64283,64210,64209,64283,64209,62792,62855,63636,62886,64215,64285,64286,64215,64286,63647,64285,64215,64214,64287,64214,64213,64287,64213,63841,64214,64287,64285,64288,63647,64286,64288,64286,64285,63647,64288,63837,63665,63196,64289,64289,63167,64219,64289,64219,63665,64290,64105,64220,64290,64220,60321,64105,64290,63528,60277,59703,59701,59647,59626,64291,59647,64291,64292,64221,64292,64293,64221,64293,59700,64292,64221,59647,64226,64294,64295,64226,64295,64222,64294,64226,64223,64296,64223,64225,64296,64225,46340,64223,64296,64294,64297,64222,64295,64297,64295,64294,64222,64297,59597,46340,63330,63847,64298,63542,64227,64298,64227,44081,63542,64298,64299,64300,44008,64228,64300,64228,43946,44008,64300,44009,43945,43907,43904,43791,43788,64301,64301,43846,64229,64301,64229,43791,64302,43772,64230,64302,64230,43754,43772,64302,43784,64303,43720,64231,64303,64231,45873,43720,64303,43721,45763,45758,64304,64304,45845,64232,64304,64232,45763,45634,45633,64305,64305,64306,64307,64305,64307,45634,64308,64306,64309,64309,64310,64311,64309,64311,64308,64306,64308,64312,64312,45634,64307,64312,64307,64306,64233,64310,64313,64313,64314,64315,64313,64315,64233,64238,64314,64316,64316,45745,64240,64316,64240,64238,64314,64238,64239,64239,64233,64315,64239,64315,64314,64310,64233,64237,64237,64235,64317,64237,64317,64310,64308,64235,64236,64236,45634,64312,64236,64312,64308,64235,64308,64311,64311,64310,64317,64311,64317,64235,64318,45630,64242,64318,64242,64241,64241,39551,64319,64241,64319,64318,45630,64318,64320,45630,64320,45633,64321,39458,64244,64321,64244,39424,39458,64321,64322,64243,64322,64323,64243,64323,39514,64322,64243,39458,39381,39376,64248,64248,64246,64324,64248,64324,39381,64325,64246,64247,64247,63780,64326,64247,64326,64325,64246,64325,64327,64327,39381,64324,64327,64324,64246,64249,64328,64329,64329,63780,64250,64329,64250,64249,64330,61288,64251,64330,64251,61338,61288,64330,64020,63403,64079,64331,63403,64331,61351,64124,64332,64333,64333,64334,64335,64333,64335,64124,64253,64334,64336,64336,63860,64254,64336,64254,64253,64334,64253,64252,64252,64124,64335,64252,64335,64334,64337,64255,64338,64337,64338,63584,64255,64337,64339,64258,64339,64340,64258,64340,63791,64339,64258,64255,64257,63584,64338,64257,64338,64255,63584,64257,63580,64341,63438,64268,64268,64266,64342,64268,64342,64341,64343,64266,64265,64265,64264,64344,64265,64344,64343,64266,64343,64345,64345,64341,64342,64345,64342,64266,63438,64341,64346,64346,64347,64348,64346,64348,63438,64261,64347,64349,64349,63584,64263,64349,64263,64261,64347,64261,64259,64259,63438,64348,64259,64348,64347,64350,64270,64269,64350,64269,63802,64270,64350,64264,63599,63805,64351,64351,62012,64273,64351,64273,63599,62165,63810,64352,62165,64352,64276,64353,62182,64277,64353,64277,62312,62182,64353,62179,63730,64207,64354,63730,64354,64355,64355,62312,64279,64355,64279,63730,64207,63818,64356,63928,64280,64357,64358,64281,62566,64045,63740,63626,63487,62734,62736,63832,64359,64360,64360,64361,64362,64360,64362,63832,64283,64361,64363,64363,62737,64284,64363,64284,64283,64361,64283,64282,64282,63832,64362,64282,64362,64361,62855,62886,62888,64285,63523,64364,64364,63837,64288,64364,64288,64285,63523,64285,64287,63523,64287,63841,63196,63528,64365,64365,63167,64289,64365,64289,63196,64290,60319,64366,64290,64366,63528,60319,64290,60321,60278,60277,59701,59626,59625,64367,64367,64368,64369,64367,64369,59626,64292,64368,64370,64370,59700,64293,64370,64293,64292,64368,64292,64291,64291,59626,64369,64291,64369,64368,64297,64371,64372,64297,64372,59597,64371,64297,64294,64373,64294,64296,64373,64296,46340,64294,64373,64371,64374,59597,64372,64374,64372,64371,59597,64374,59601,46340,63847,64375,64376,64299,64298,64376,64298,44081,64299,64376,64375,64377,44009,64300,64300,43946,64378,64300,64378,64377,44009,64377,64379,44009,64379,44021,43788,43785,64380,64380,43846,64301,64380,64301,43788,64302,43750,64381,64302,64381,43784,43750,64302,43754,45873,45852,64382,45873,64382,64383,64303,64383,64384,64303,64384,43721,64383,64303,45873,45758,45756,64385,64385,45845,64304,64385,64304,45758,64318,64386,64387,64387,45633,64320,64387,64320,64318,64388,64318,64319,64388,64319,39551,64318,64388,64386,64389,64390,64391,64389,64391,64386,64390,64389,64392,64390,45633,64387,64387,64386,64391,64387,64391,64390,64393,64310,64394,64393,64394,64392,64310,64393,64395,64314,64395,64396,64396,45745,64316,64396,64316,64314,64395,64314,64313,64395,64313,64310,64306,64392,64394,64394,64310,64309,64394,64309,64306,64390,64306,64305,64390,64305,45633,64306,64390,64392,64323,64397,64398,64323,64398,39514,64397,64323,64322,64399,64322,64321,64399,64321,39424,64322,64399,64397,64400,39514,64398,64400,64398,64397,39514,64400,39522,39393,39381,64327,64327,64325,64401,64327,64401,39393,64402,64325,64326,64326,63780,64403,64326,64403,64402,64325,64402,64404,64404,39393,64401,64404,64401,64325,64328,63689,64405,64405,63780,64329,64405,64329,64328,64406,64020,64330,64406,64330,61338,64020,64406,64407,64078,64407,64408,64078,64408,61260,64407,64078,64020,64079,64409,64410,64410,61351,64331,64410,64331,64079,64332,64411,64412,64412,64413,64414,64412,64414,64332,64334,64413,64415,64415,63860,64336,64415,64336,64334,64413,64334,64333,64333,64332,64414,64333,64414,64413,64340,64416,64417,64340,64417,63791,64416,64340,64339,64418,64339,64337,64418,64337,63584,64339,64418,64416,64419,63791,64417,64419,64417,64416,63791,64419,63419,64420,64264,64350,64420,64350,63802,64420,64421,64422,64420,64422,64264,64423,64421,64424,64424,64425,64426,64424,64426,64423,64421,64423,64427,64427,64264,64422,64427,64422,64421,64341,64425,64428,64428,64429,64430,64428,64430,64341,64347,64429,64431,64431,63584,64349,64431,64349,64347,64429,64347,64346,64346,64341,64430,64346,64430,64429,64425,64341,64345,64345,64343,64432,64345,64432,64425,64423,64343,64344,64344,64264,64427,64344,64427,64423,64343,64423,64426,64426,64425,64432,64426,64432,64343,64433,62012,64351,64433,64351,63805,62012,64433,63595,64434,64276,64352,64434,64352,63810,64276,64434,64274,64355,64435,64436,64355,64436,62312,64437,64355,64354,64437,64354,64207,64355,64437,64435,64438,64353,64439,64438,64439,64435,64353,64438,62179,64353,62312,64436,64436,64435,64439,64436,64439,64353,64207,64356,64440,63928,64357,64441,63822,64358,62566,63626,63486,64442,63626,64442,64045,63487,62736,64443,64359,62853,64444,64444,64445,64446,64444,64446,64359,64361,64445,64447,64447,62737,64363,64447,64363,64361,64445,64361,64360,64360,64359,64446,64360,64446,64445,62855,62888,63641,64364,63888,64448,64364,64448,63837,63888,64364,63523,64449,63528,64366,64366,60319,64450,64366,64450,64449,63528,64449,64451,64451,63167,64365,64451,64365,63528,60278,59701,64452,64452,60310,64106,64452,64106,60278,64374,64453,64454,64374,64454,59601,64453,64374,64371,64455,64371,64373,64455,64373,46340,64371,64455,64453,64456,59601,64454,64456,64454,64453,59601,64456,59621,64457,64375,64376,64376,44081,64458,64376,64458,64457,64375,64457,64459,64375,64459,46340,64460,44021,64379,64460,64379,64377,64461,64377,64378,64461,64378,43946,64377,64461,64460,44021,64460,64462,44021,64462,44032,43785,43784,64463,64463,43846,64380,64463,64380,43785,43750,43749,64464,64464,43784,64381,64464,64381,43750,64465,43721,64384,64465,64384,64383,64466,64383,64382,64466,64382,45852,64383,64466,64465,43721,64465,64467,43721,64467,43747,45756,45749,64468,64468,45845,64385,64468,64385,45756,39551,39550,64469,64469,64470,64471,64469,64471,39551,64472,64470,64473,64473,64474,64475,64473,64475,64472,64470,64472,64476,64476,39551,64471,64476,64471,64470,64392,64474,64477,64477,64478,64479,64477,64479,64392,64395,64478,64480,64480,45745,64396,64480,64396,64395,64478,64395,64393,64393,64392,64479,64393,64479,64478,64474,64392,64389,64389,64386,64481,64389,64481,64474,64472,64386,64388,64388,39551,64476,64388,64476,64472,64386,64472,64475,64475,64474,64481,64475,64481,64386,39424,39423,64482,64482,64483,64484,64482,64484,39424,64397,64483,64485,64485,39522,64400,64485,64400,64397,64483,64397,64399,64399,39424,64484,64399,64484,64483,39413,39393,64404,39413,64404,64402,64486,64402,64403,64403,63780,64487,64403,64487,64486,64402,64486,64488,64402,64488,39413,63689,63898,64489,64489,63780,64405,64489,64405,63689,61338,61339,64490,64490,64491,64492,64490,64492,61338,64407,64491,64493,64493,61260,64408,64493,64408,64407,64491,64407,64406,64406,61338,64492,64406,64492,64491,64409,64494,64495,64495,61351,64410,64495,64410,64409,64411,64496,64497,64497,64498,64499,64497,64499,64411,64413,64498,64500,64500,63860,64415,64500,64415,64413,64498,64413,64412,64412,64411,64499,64412,64499,64498,64501,63802,64272,64501,64272,64271,64501,64502,64503,64501,64503,63802,64504,64502,64505,64505,64506,64507,64505,64507,64504,64502,64504,64508,64508,63802,64503,64508,64503,64502,64425,64506,64509,64510,64509,64511,64510,64511,64512,64509,64510,64425,64429,64512,64513,64429,64513,64514,64431,64514,64515,64431,64515,63584,64514,64431,64429,64512,64429,64428,64428,64425,64510,64428,64510,64512,64506,64425,64424,64424,64421,64516,64424,64516,64506,64504,64421,64420,64420,63802,64508,64420,64508,64504,64421,64504,64507,64507,64506,64516,64507,64516,64421,63805,64203,64517,64517,63595,64433,64517,64433,63805,63810,64518,64519,64519,64274,64434,64519,64434,63810,64207,64440,64520,64520,64521,64522,64520,64522,64207,64435,64521,64523,64523,62179,64438,64523,64438,64435,64521,64435,64437,64437,64207,64522,64437,64522,64521,63928,64441,63480,63480,63822,62566,63486,64524,64525,64525,64045,64442,64525,64442,63486,63487,64443,62737,62853,62855,64526,64526,64527,64528,64526,64528,62853,64445,64527,64529,64529,62737,64447,64529,64447,64445,64527,64445,64444,64444,62853,64528,64444,64528,64527,63641,62919,64530,63641,64530,62855,64217,63837,64448,64448,63888,64218,64448,64218,64217,63837,64217,64216,63837,64216,64149,60319,60318,64531,64531,64532,64533,64531,64533,60319,64449,64532,64534,64534,63167,64451,64534,64451,64449,64532,64449,64450,64450,60319,64533,64450,64533,64532,59701,59700,64535,64535,60310,64452,64535,64452,59701,64456,64536,64537,64456,64537,59621,64536,64456,64453,64538,64453,64455,64538,64455,46340,64453,64538,64536,64539,59621,64537,64539,64537,64536,59621,64539,59622,44081,44075,64540,64540,64541,64542,64540,64542,44081,64457,64541,64543,64543,46340,64459,64543,64459,64457,64541,64457,64458,64458,44081,64542,64458,64542,64541,64544,64460,64545,64544,64545,43945,64460,64544,64546,64462,64546,64547,64462,64547,44032,64546,64462,64460,64461,43945,64545,64461,64545,64460,43945,64461,43946,43749,43747,64548,64548,43784,64464,64548,64464,43749,45852,45846,64549,64549,64550,64551,64549,64551,45852,64465,64550,64552,64552,43747,64467,64552,64467,64465,64550,64465,64466,64466,45852,64551,64466,64551,64550,45749,45745,64553,64553,45845,64468,64553,64468,45749,39550,39548,64554,64554,64555,64556,64554,64556,39550,64557,64555,64558,64558,64559,64560,64558,64560,64557,64555,64557,64561,64561,39550,64556,64561,64556,64555,64474,64559,64562,64562,64563,64564,64562,64564,64474,64478,64563,64565,64565,45745,64480,64565,64480,64478,64563,64478,64477,64477,64474,64564,64477,64564,64563,64559,64474,64473,64473,64470,64566,64473,64566,64559,64557,64470,64469,64469,39550,64561,64469,64561,64557,64470,64557,64560,64560,64559,64566,64560,64566,64470,39423,39422,64567,64567,64568,64569,64567,64569,39423,64483,64568,64570,64570,39522,64485,64570,64485,64483,64568,64483,64482,64482,39423,64569,64482,64569,64568,39418,39413,64488,39418,64488,64486,64571,64486,64487,64571,64487,63780,64486,64571,39418,63898,63960,64572,64572,63780,64489,64572,64489,63898,61339,63402,64573,64573,64574,64575,64573,64575,61339,64491,64574,64576,64576,61260,64493,64576,64493,64491,64574,64491,64490,64490,61339,64575,64490,64575,64574,64496,63861,64577,64577,64578,64579,64577,64579,64496,64498,64578,64580,64580,63860,64500,64580,64500,64498,64578,64498,64497,64497,64496,64579,64497,64579,64578,64271,63595,64581,64581,64582,64583,64581,64583,64271,64584,64582,64585,64585,64586,64587,64585,64587,64584,64582,64584,64588,64588,64271,64583,64588,64583,64582,64506,64586,64589,64590,64589,64591,64591,64592,64593,64591,64593,64590,64589,64590,64506,64512,64592,64594,64594,64595,64596,64594,64596,64512,64514,64595,64597,64597,63584,64515,64597,64515,64514,64595,64514,64513,64513,64512,64596,64513,64596,64595,64592,64512,64511,64511,64509,64598,64511,64598,64592,64509,64506,64590,64509,64590,64593,64593,64592,64598,64593,64598,64509,64586,64506,64505,64505,64502,64599,64505,64599,64586,64584,64502,64501,64501,64271,64588,64501,64588,64584,64502,64584,64587,64587,64586,64599,64587,64599,64502,64600,64203,64275,64600,64275,64274,64203,64600,64601,64517,64601,64602,64517,64602,63595,64601,64517,64203,64518,62179,64603,64603,64274,64519,64603,64519,64518,64440,63733,64604,64604,64605,64606,64604,64606,64440,64521,64605,64607,64607,62179,64523,64607,64523,64521,64606,64521,64520,64606,64520,64440,64521,64606,64605,63480,62566,64608,63480,64608,63928,64527,64609,64610,64610,62737,64529,64610,64529,64527,64611,64527,64526,64611,64526,62855,64527,64611,64609,64610,64612,64613,64610,64613,62737,64612,64610,64609,63487,62737,64613,63487,64613,64612,63837,64149,64614,63837,64614,63511,60318,60311,64615,64615,64616,64617,64615,64617,60318,64532,64616,64618,64618,63167,64534,64618,64534,64532,64616,64532,64531,64531,60318,64617,64531,64617,64616,64619,59700,64370,64619,64370,64368,64620,64368,64367,64620,64367,59625,64368,64620,64619,59700,64619,64621,64621,60310,64535,64621,64535,59700,64539,64622,64623,64539,64623,59622,64622,64539,64536,64624,64536,64538,64624,64538,46340,64536,64624,64622,64625,59622,64623,64625,64623,64622,59622,64625,59624,44075,44074,64626,64626,64627,64628,64626,64628,44075,64541,64627,64629,64629,46340,64543,64629,64543,64541,64627,64541,64540,64540,44075,64628,64540,64628,64627,43945,43904,64630,64630,64631,64632,64630,64632,43945,64546,64631,64633,64633,44032,64547,64633,64547,64546,64631,64546,64544,64544,43945,64632,64544,64632,64631,64552,64634,64635,64552,64635,43747,64634,64552,64550,64636,64550,64549,64549,45846,64637,64549,64637,64636,64550,64636,64638,64550,64638,64634,64635,64639,64640,64635,64640,43747,64635,64634,64641,64635,64641,64639,64548,64639,64642,64548,64642,43784,64548,43747,64640,64548,64640,64639,39548,39547,64643,64643,64644,64645,64643,64645,39548,64646,64644,64647,64647,64648,64649,64647,64649,64646,64644,64646,64650,64650,39548,64645,64650,64645,64644,64559,64648,64651,64651,64652,64653,64651,64653,64559,64563,64652,64654,64654,45745,64565,64654,64565,64563,64652,64563,64562,64562,64559,64653,64562,64653,64652,64648,64559,64558,64558,64555,64655,64558,64655,64648,64646,64555,64554,64554,39548,64650,64554,64650,64646,64555,64646,64649,64649,64648,64655,64649,64655,64555,39422,39421,64656,64656,64657,64658,64656,64658,39422,64568,64657,64659,64659,39522,64570,64659,64570,64568,64657,64568,64567,64567,39422,64658,64567,64658,64657,39419,39418,64571,64571,63780,64660,64571,64660,39419,63960,63854,64661,64661,63780,64572,64661,64572,63960,63402,61349,64662,64662,64663,64664,64662,64664,63402,64574,64663,64665,64665,61260,64576,64665,64576,64574,64663,64574,64573,64573,63402,64664,64573,64664,64663,64082,63861,64666,64082,64666,61427,63861,64082,64080,64578,64080,64081,64081,63860,64580,64081,64580,64578,64080,64578,64577,64080,64577,63861,64667,63595,64602,64602,64601,64668,64602,64668,64667,64669,64601,64600,64600,64274,64670,64600,64670,64669,64601,64669,64671,64671,64667,64668,64671,64668,64601,63595,64667,64672,63595,64672,64673,64674,64673,64675,64675,64676,64677,64675,64677,64674,64673,64674,64678,64673,64678,63595,64679,64586,64680,64680,64676,64681,64680,64681,64679,64586,64679,64682,64682,64683,64684,64682,64684,64586,64592,64683,64685,64592,64685,64686,64595,64686,64687,64687,63584,64597,64687,64597,64595,64686,64595,64594,64686,64594,64592,64683,64592,64591,64683,64591,64589,64589,64586,64684,64589,64684,64683,64585,64676,64680,64585,64680,64586,64676,64585,64582,64674,64582,64581,64581,63595,64678,64581,64678,64674,64582,64674,64677,64582,64677,64676,64688,62179,64607,64688,64607,64605,64689,64605,64604,64604,63733,64690,64604,64690,64689,64605,64689,64691,64605,64691,64688,62179,64688,64692,62179,64692,64693,64603,64693,64694,64603,64694,64274,64693,64603,62179,64695,63928,64608,64695,64608,62566,63928,64695,64696,64612,64697,64698,64612,64698,63487,64697,64612,64609,64699,64609,64611,64699,64611,62855,64609,64699,64697,64700,63487,64698,64698,64697,64701,64698,64701,64700,63487,64700,64702,63487,64702,63627,64703,63511,64614,64703,64614,64149,63511,64703,62951,60311,60310,64704,64704,64705,64706,64704,64706,60311,64616,64705,64707,64707,63167,64618,64707,64618,64616,64705,64616,64615,64615,60311,64706,64615,64706,64705,64625,64708,64709,64625,64709,59624,64708,64625,64622,64710,64622,64624,64710,64624,46340,64622,64710,64708,64711,59624,64709,64711,64709,64708,59624,64711,59625,44074,44068,64712,64712,64713,64714,64712,64714,44074,64627,64713,64715,64715,46340,64629,64715,64629,64627,64713,64627,64626,64626,44074,64714,64626,64714,64713,43904,43903,64716,64716,64717,64718,64716,64718,43904,64631,64717,64719,64719,44032,64633,64719,64633,64631,64717,64631,64630,64630,43904,64718,64630,64718,64717,45846,45845,64720,64720,64721,64722,64720,64722,45846,64723,64721,64724,64724,64725,64726,64724,64726,64723,64721,64723,64727,64727,45846,64722,64727,64722,64721,64634,64725,64728,64728,64729,64730,64728,64730,64634,64639,64729,64731,64731,43784,64642,64731,64642,64639,64729,64639,64641,64641,64634,64730,64641,64730,64729,64725,64634,64638,64638,64636,64732,64638,64732,64725,64723,64636,64637,64637,45846,64727,64637,64727,64723,64636,64723,64726,64726,64725,64732,64726,64732,64636,39547,39545,64733,64733,64734,64735,64733,64735,39547,64736,64734,64737,64737,64738,64739,64737,64739,64736,64734,64736,64740,64740,39547,64735,64740,64735,64734,64648,64738,64741,64741,64742,64743,64741,64743,64648,64652,64742,64744,64744,45745,64654,64744,64654,64652,64742,64652,64651,64651,64648,64743,64651,64743,64742,64738,64648,64647,64647,64644,64745,64647,64745,64738,64736,64644,64643,64643,39547,64740,64643,64740,64736,64644,64736,64739,64739,64738,64745,64739,64745,64644,39421,39420,64746,64746,64747,64748,64746,64748,39421,64657,64747,64749,64749,39522,64659,64749,64659,64657,64747,64657,64656,64656,39421,64748,64656,64748,64747,64750,39419,64660,64750,64660,63780,39419,64750,39420,63854,63961,64751,63854,64751,64752,64661,64752,64753,64661,64753,63780,64752,64661,63854,61349,61351,64754,64754,64755,64756,64754,64756,61349,64663,64755,64757,64757,61260,64665,64757,64665,64663,64755,64663,64662,64662,61349,64756,64662,64756,64755,64758,61427,64666,64758,64666,63861,61427,64758,61406,64759,64693,64760,64759,64760,64761,64759,64274,64694,64759,64694,64693,64762,64693,64692,64762,64692,64688,64762,64761,64760,64762,64760,64693,64763,64688,64691,64763,64691,64689,64764,64689,64690,64764,64690,63733,64689,64764,64763,64688,64763,64765,64765,64761,64762,64765,64762,64688,64759,64766,64767,64759,64767,64274,64766,64759,64761,64766,64768,64769,64769,64274,64767,64769,64767,64766,64770,64768,64771,64771,64772,64773,64771,64773,64770,64769,64770,64774,64769,64774,64274,64770,64769,64768,64775,64676,64776,64775,64776,64777,64778,64777,64779,64778,64779,64772,64777,64778,64775,64676,64775,64780,64676,64780,64781,64782,64781,64783,64782,64783,64784,64781,64782,64676,64785,64683,64786,64786,64784,64787,64786,64787,64785,64683,64785,64788,64683,64788,64789,64686,64789,64790,64686,64790,64791,64687,64791,64792,64687,64792,63584,64791,64687,64686,64789,64686,64685,64789,64685,64683,64682,64784,64786,64682,64786,64683,64784,64682,64679,64782,64679,64681,64782,64681,64676,64679,64782,64784,64777,64673,64793,64793,64772,64779,64793,64779,64777,64675,64777,64776,64675,64776,64676,64777,64675,64673,64793,64667,64794,64793,64794,64772,64793,64673,64672,64793,64672,64667,64671,64770,64795,64671,64795,64667,64770,64671,64669,64774,64669,64670,64774,64670,64274,64669,64774,64770,64773,64667,64795,64773,64795,64770,64773,64772,64794,64773,64794,64667,62583,64696,64695,62583,64695,62566,64700,64796,64797,64797,63627,64702,64797,64702,64700,64796,64700,64701,64796,64701,64697,64798,64697,64699,64699,62855,64799,64699,64799,64798,64697,64798,64800,64697,64800,64796,64801,63627,64797,64797,64796,64802,64797,64802,64801,63627,64801,64803,63627,64803,62629,64804,62951,64703,64804,64703,64149,62951,64804,62950,64805,64621,64806,64805,64806,64807,64621,64805,60310,64621,64619,64808,64808,64807,64806,64808,64806,64621,64809,64619,64620,64620,59625,64810,64620,64810,64809,64808,64809,64811,64808,64811,64807,64809,64808,64619,64812,64705,64813,64813,64807,64814,64813,64814,64812,64707,64812,64815,64707,64815,63167,64812,64707,64705,64805,64813,64816,64805,64816,60310,64813,64805,64807,64813,64705,64704,64704,60310,64816,64704,64816,64813,64817,64711,64818,64817,64818,64819,64711,64817,59625,64708,64819,64818,64708,64818,64711,64819,44068,64820,64820,59625,64817,64820,64817,64819,64821,64710,64822,64821,64822,64713,64710,64821,64708,64710,46340,64715,64715,64713,64822,64715,64822,64710,64819,64713,64712,64819,64712,44068,64819,64708,64821,64819,64821,64713,43903,43902,64823,64823,64824,64825,64823,64825,43903,64717,64824,64826,64826,44032,64719,64826,64719,64717,64824,64717,64716,64716,43903,64825,64716,64825,64824,64827,45845,64553,64553,45745,64828,64553,64828,64827,64829,64827,64830,64829,64830,64831,64827,64829,45845,64725,64831,64832,64725,64832,64833,64729,64833,64834,64834,43784,64731,64834,64731,64729,64833,64729,64728,64833,64728,64725,64831,64725,64724,64831,64724,64721,64829,64721,64720,64829,64720,45845,64721,64829,64831,39545,39544,64835,64835,64836,64837,64835,64837,39545,64838,64836,64839,64839,64840,64841,64839,64841,64838,64836,64838,64842,64842,39545,64837,64842,64837,64836,64738,64840,64843,64843,64844,64845,64843,64845,64738,64742,64844,64846,64846,45745,64744,64846,64744,64742,64844,64742,64741,64741,64738,64845,64741,64845,64844,64840,64738,64737,64737,64734,64847,64737,64847,64840,64838,64734,64733,64733,39545,64842,64733,64842,64838,64734,64838,64841,64841,64840,64847,64841,64847,64734,64750,64848,64849,64750,64849,39420,64750,63780,64850,64750,64850,64848,64851,64848,64852,64851,64852,64853,64851,39420,64849,64851,64849,64848,64747,64853,64854,64747,64854,64855,64749,64855,64856,64749,64856,39522,64855,64749,64747,64747,64746,64857,64747,64857,64853,64746,39420,64851,64851,64853,64857,64851,64857,64746,64758,64030,64858,64758,64858,61406,64030,64758,63861,64859,64860,64861,64859,64861,63927,64860,64859,64862,64863,64862,64864,64863,64864,64865,64862,64863,64860,64866,63927,64861,64866,64861,64860,63927,64866,63733,64867,64868,64869,64867,64869,64865,64868,64867,64870,64871,64870,64872,64871,64872,64873,64870,64871,64868,64874,64865,64869,64874,64869,64868,64865,64874,64875,64876,64860,64877,64876,64877,64875,64860,64876,64878,64866,64878,64879,64866,64879,63733,64878,64866,64860,64863,64875,64877,64863,64877,64860,64875,64863,64865,64880,64881,64882,64880,64882,64873,64881,64880,64883,64884,64883,64885,64884,64885,64886,64887,64886,64888,64887,64888,64889,64886,64887,64884,64883,64884,64890,64883,64890,64881,64891,64873,64882,64891,64882,64881,64873,64891,64772,64892,64893,64894,64892,64894,64789,64893,64892,64895,64896,64895,64897,64896,64897,64889,64895,64896,64893,64898,64789,64894,64898,64894,64893,64789,64898,64899,64900,64791,64901,64900,64901,64899,64791,64900,64902,64792,64902,64903,64792,64903,63584,64902,64792,64791,64790,64899,64901,64790,64901,64791,64899,64790,64789,64897,64785,64904,64897,64904,64889,64785,64897,64895,64788,64895,64892,64788,64892,64789,64895,64788,64785,64787,64889,64904,64787,64904,64785,64889,64787,64784,64781,64881,64905,64781,64905,64906,64783,64906,64907,64783,64907,64784,64906,64783,64781,64881,64781,64780,64881,64780,64775,64891,64775,64778,64891,64778,64772,64775,64891,64881,64907,64884,64908,64907,64908,64784,64884,64907,64906,64890,64906,64905,64890,64905,64881,64906,64890,64884,64887,64784,64908,64887,64908,64884,64784,64887,64889,64909,64768,64910,64909,64910,64875,64768,64909,64911,64771,64911,64912,64771,64912,64772,64911,64771,64768,64766,64875,64910,64766,64910,64768,64875,64766,64761,64765,64878,64913,64765,64913,64761,64878,64765,64763,64879,64763,64764,64879,64764,63733,64763,64879,64878,64876,64761,64913,64876,64913,64878,64761,64876,64875,64912,64868,64914,64912,64914,64772,64868,64912,64911,64874,64911,64909,64874,64909,64875,64911,64874,64868,64871,64772,64914,64871,64914,64868,64772,64871,64873,63820,64696,62583,64801,64915,64916,64916,62629,64803,64916,64803,64801,64915,64801,64802,64915,64802,64796,64917,64796,64800,64917,64800,64798,64918,64798,64799,64918,64799,62855,64798,64918,64917,64796,64917,64919,64796,64919,64915,64920,62629,64916,64916,64915,64921,64916,64921,64920,62629,64920,64922,62629,64922,62627,64149,63167,64923,64923,62950,64804,64923,64804,64149,64924,64820,64925,64924,64925,64926,64820,64924,59625,64820,44068,64927,64927,64926,64925,64927,64925,64820,64928,64926,64929,64929,64930,64931,64929,64931,64928,64924,64928,64932,64924,64932,59625,64928,64924,64926,64807,64930,64933,64933,64934,64935,64933,64935,64807,64812,64934,64936,64936,63167,64815,64936,64815,64812,64934,64812,64814,64814,64807,64935,64814,64935,64934,64930,64807,64811,64811,64809,64937,64811,64937,64930,64928,64809,64810,64810,59625,64932,64810,64932,64928,64937,64928,64931,64937,64931,64930,64928,64937,64809,64833,64938,64939,64833,64939,64940,64834,64940,64941,64834,64941,43784,64940,64834,64833,64938,64833,64832,64938,64832,64831,64830,64942,64943,64830,64943,64831,64942,64830,64827,64944,64827,64828,64944,64828,45745,64827,64944,64942,64945,64831,64943,64945,64943,64942,64831,64945,64938,64946,43784,64941,64946,64941,64940,64947,64940,64939,64947,64939,64938,64940,64947,64946,43784,64946,64948,64948,43846,64463,64948,64463,43784,39544,39542,64949,64949,64950,64951,64949,64951,39544,64952,64950,64953,64953,64954,64955,64953,64955,64952,64950,64952,64956,64956,39544,64951,64956,64951,64950,64840,64954,64957,64957,64958,64959,64957,64959,64840,64844,64958,64960,64960,45745,64846,64960,64846,64844,64958,64844,64843,64843,64840,64959,64843,64959,64958,64954,64840,64839,64839,64836,64961,64839,64961,64954,64952,64836,64835,64835,39544,64956,64835,64956,64952,64836,64952,64955,64955,64954,64961,64955,64961,64836,64855,64962,64963,64855,64963,64964,64856,64964,64965,64856,64965,39522,64964,64856,64855,64962,64855,64854,64962,64854,64853,64852,64966,64967,64852,64967,64853,64966,64852,64848,64968,64848,64850,64968,64850,63780,64848,64968,64966,64969,64853,64967,64969,64967,64966,64853,64969,64962,64970,39522,64965,64970,64965,64964,64971,64964,64963,64971,64963,64962,64964,64971,64970,39522,64970,64972,39522,64972,39525,64858,61578,64973,64858,64973,61406,61578,64858,64030,63927,64974,64975,64975,64976,64977,64975,64977,63927,64978,64976,64979,64979,64980,64981,64979,64981,64978,64977,64978,64982,64977,64982,63927,64978,64977,64976,64983,64980,64984,64984,64985,64986,64984,64986,64983,64987,64985,64988,64988,64989,64990,64988,64990,64987,64986,64987,64991,64986,64991,64983,64987,64986,64985,64992,64978,64993,64993,64983,64994,64993,64994,64992,64982,64992,64995,64982,64995,63927,64992,64982,64978,64981,64983,64993,64981,64993,64978,64983,64981,64980,64873,64989,64996,64996,64997,64998,64996,64998,64873,64999,64997,65000,65000,65001,65002,65000,65002,64999,65003,65001,65004,65004,65005,65006,65004,65006,65003,65002,65003,65007,65002,65007,64999,65003,65002,65001,64998,64999,65008,64998,65008,64873,64999,64998,64997,64889,65005,65009,65009,65010,65011,65009,65011,64889,65012,65010,65013,65013,65014,65015,65013,65015,65012,65011,65012,65016,65011,65016,64889,65012,65011,65010,64899,65014,65017,65017,65018,65019,65017,65019,64899,64902,65018,65020,65020,63584,64903,65020,64903,64902,65019,64902,64900,65019,64900,64899,64902,65019,65018,64893,65012,65021,65021,64899,64898,65021,64898,64893,65016,64893,64896,65016,64896,64889,64893,65016,65012,65015,64899,65021,65015,65021,65012,64899,65015,65014,64883,64999,65022,65022,65023,65024,65022,65024,64883,64886,65023,65025,65025,64889,64888,65025,64888,64886,65024,64886,64885,65024,64885,64883,64886,65024,65023,65008,64883,64880,65008,64880,64873,64883,65008,64999,65023,65003,65026,65026,64889,65025,65026,65025,65023,65007,65023,65022,65007,65022,64999,65023,65007,65003,65006,64889,65026,65006,65026,65003,64889,65006,65005,64865,64983,65027,65027,65028,65029,65027,65029,64865,64870,65028,65030,65030,64873,64872,65030,64872,64870,65029,64870,64867,65029,64867,64865,64870,65029,65028,64862,64992,65031,65031,64865,64864,65031,64864,64862,64995,64862,64859,64995,64859,63927,64862,64995,64992,64994,64865,65031,64994,65031,64992,64865,64994,64983,65028,64987,65032,65032,64873,65030,65032,65030,65028,64991,65028,65027,64991,65027,64983,65028,64991,64987,64990,64873,65032,64990,65032,64987,64873,64990,64989,62583,64045,65033,62583,65033,63820,65034,64920,65035,65034,65035,65036,64920,65034,65037,64922,65037,65038,64922,65038,62627,65037,64922,64920,64921,65036,65035,64921,65035,64920,65036,64921,64915,64919,65039,65040,64919,65040,64915,65039,64919,64917,65041,64917,64918,65041,64918,62855,64917,65041,65039,65042,64915,65040,65042,65040,65039,64915,65042,65036,65043,62627,65038,65043,65038,65037,65044,65037,65034,65044,65034,65036,65037,65044,65043,62627,65043,65045,62627,65045,62626,64936,65046,65047,64936,65047,63167,65046,64936,64934,65046,62950,64923,64923,63167,65047,64923,65047,65046,65048,64934,64933,64933,64930,65049,64933,65049,65048,65046,65048,65050,65046,65050,62950,65048,65046,64934,65051,64930,64929,64929,64926,65052,64929,65052,65051,65053,64926,64927,64927,44068,65054,64927,65054,65053,65052,65053,65055,65052,65055,65051,65053,65052,64926,65056,65048,65057,65057,65051,65058,65057,65058,65056,65050,65056,65059,65050,65059,62950,65056,65050,65048,64930,65051,65057,65057,65048,65049,65057,65049,64930,65060,64958,65061,65060,65061,65062,64958,65060,65063,64960,65063,65064,64960,65064,45745,65063,64960,64958,64957,65062,65061,64957,65061,64958,65062,64957,64954,64953,65065,65066,64953,65066,64954,65065,64953,64950,65067,64950,64949,65067,64949,39542,64950,65067,65065,65068,64954,65066,65068,65066,65065,64954,65068,65062,65064,65069,65070,65064,65070,45745,65069,65064,65063,65071,65063,65060,65071,65060,65062,65063,65071,65069,65070,65072,65073,65070,65073,45745,65072,65070,65069,65072,65074,65075,65075,45745,65073,65075,65073,65072,65076,65077,65078,65076,65078,64938,65077,65076,65079,65080,65079,65081,65080,65081,65074,65079,65080,65077,65082,64938,65078,65082,65078,65077,64938,65082,65083,65084,64946,65085,65084,65085,65083,64946,65084,65086,64948,65086,65087,64948,65087,43846,65086,64948,64946,64947,65083,65085,64947,65085,64946,65083,64947,64938,65081,64942,65088,65081,65088,65074,64942,65081,65079,64945,65079,65076,64945,65076,64938,65079,64945,64942,64944,65074,65088,64944,65088,64942,64944,45745,65075,64944,65075,65074,65089,64970,65090,65089,65090,65091,64970,65089,65092,64972,65092,65093,64972,65093,39525,65092,64972,64970,64971,65091,65090,64971,65090,64970,65091,64971,64962,64969,65094,65095,64969,65095,64962,65094,64969,64966,65096,64966,64968,65096,64968,63780,64966,65096,65094,65097,64962,65095,65097,65095,65094,64962,65097,65091,65093,65098,65099,65093,65099,39525,65098,65093,65092,65100,65092,65089,65100,65089,65091,65092,65100,65098,65101,39525,65099,65101,65099,65098,39525,65101,39526,64973,63419,65102,64973,65102,61406,63419,64973,61578,64974,63616,65103,65103,65104,65105,65103,65105,64974,65106,65104,65107,65107,65108,65109,65107,65109,65106,65104,65106,65110,65110,64974,65105,65110,65105,65104,65111,65108,65112,65112,65113,65114,65112,65114,65111,65115,65113,65116,65116,65117,65118,65116,65118,65115,65113,65115,65119,65119,65111,65114,65119,65114,65113,65120,65106,65121,65121,65111,65122,65121,65122,65120,65106,65120,65123,65123,64974,65110,65123,65110,65106,65108,65111,65121,65121,65106,65109,65121,65109,65108,64989,65117,65124,65124,65125,65126,65124,65126,64989,65127,65125,65128,65128,65129,65130,65128,65130,65127,65131,65129,65132,65132,65133,65134,65132,65134,65131,65129,65131,65135,65135,65127,65130,65135,65130,65129,65125,65127,65136,65136,64989,65126,65136,65126,65125,65005,65133,65137,65137,65138,65139,65137,65139,65005,65140,65138,65141,65141,65142,65143,65141,65143,65140,65138,65140,65144,65144,65005,65139,65144,65139,65138,65014,65142,65145,65145,65146,65147,65145,65147,65014,65018,65146,65148,65148,63584,65020,65148,65020,65018,65146,65018,65017,65017,65014,65147,65017,65147,65146,65142,65014,65013,65013,65010,65149,65013,65149,65142,65140,65010,65009,65009,65005,65144,65009,65144,65140,65010,65140,65143,65143,65142,65149,65143,65149,65010,64997,65127,65150,65150,65151,65152,65150,65152,64997,65001,65151,65153,65153,65005,65004,65153,65004,65001,65151,65001,65000,65000,64997,65152,65000,65152,65151,65127,64997,64996,64996,64989,65136,64996,65136,65127,65133,65005,65153,65153,65151,65154,65153,65154,65133,65131,65151,65150,65150,65127,65135,65150,65135,65131,65151,65131,65134,65134,65133,65154,65134,65154,65151,64980,65111,65155,65155,65156,65157,65155,65157,64980,64985,65156,65158,65158,64989,64988,65158,64988,64985,65156,64985,64984,64984,64980,65157,64984,65157,65156,64976,65120,65159,65159,64980,64979,65159,64979,64976,65120,64976,64975,64975,64974,65123,64975,65123,65120,65111,64980,65159,65159,65120,65122,65159,65122,65111,65156,65115,65160,65160,64989,65158,65160,65158,65156,65115,65156,65155,65155,65111,65119,65155,65119,65115,65117,64989,65160,65160,65115,65118,65160,65118,65117,65161,63820,65033,65161,65033,64045,63820,65161,63616,65043,65162,65163,65163,62626,65045,65163,65045,65043,65162,65043,65044,65162,65044,65036,65164,65036,65042,65164,65042,65039,65165,65039,65041,65165,65041,62855,65039,65165,65164,65036,65164,65166,65036,65166,65162,65167,62626,65163,65163,65162,65168,65163,65168,65167,62626,65167,65169,62626,65169,62622,65170,65056,65171,65170,65171,65172,65056,65170,65173,65059,65173,65174,65059,65174,62950,65173,65059,65056,65058,65172,65171,65058,65171,65056,65172,65058,65051,65055,65175,65176,65055,65176,65051,65175,65055,65053,65177,65053,65054,65177,65054,44068,65053,65177,65175,65178,65051,65176,65178,65176,65175,65051,65178,65172,65174,65179,65180,65174,65180,62950,65179,65174,65173,65181,65173,65170,65181,65170,65172,65173,65181,65179,65182,62950,65180,65182,65180,65179,62950,65182,62948,65183,65184,65185,65183,65185,65083,65184,65183,65186,65187,65186,65188,65187,65188,65189,65186,65187,65184,65190,65083,65185,65190,65185,65184,65083,65190,65191,65192,65086,65193,65192,65193,65191,65086,65192,65194,65087,65194,65195,65087,65195,43846,65194,65087,65086,65084,65191,65193,65084,65193,65086,65191,65084,65083,65188,65077,65196,65188,65196,65189,65077,65188,65186,65082,65186,65183,65082,65183,65083,65186,65082,65077,65080,65189,65196,65080,65196,65077,65189,65080,65074,65197,65069,65198,65197,65198,65199,65069,65197,65200,65072,65200,65201,65072,65201,65074,65200,65072,65069,65071,65199,65198,65071,65198,65069,65199,65071,65062,65068,65202,65203,65068,65203,65062,65202,65068,65065,65204,65065,65067,65204,65067,39542,65065,65204,65202,65205,65062,65203,65205,65203,65202,65062,65205,65199,65201,65206,65207,65201,65207,65074,65206,65201,65200,65208,65200,65197,65208,65197,65199,65200,65208,65206,65209,65074,65207,65209,65207,65206,65074,65209,65189,65210,65194,65211,65210,65211,65212,65194,65210,65213,65195,65213,65214,65195,65214,43846,65213,65195,65194,65192,65212,65211,65192,65211,65194,65212,65192,65191,65190,65215,65216,65190,65216,65191,65215,65190,65184,65217,65184,65187,65217,65187,65189,65184,65217,65215,65218,65191,65216,65218,65216,65215,65191,65218,65212,65214,65219,65220,65214,65220,43846,65219,65214,65213,65221,65213,65210,65221,65210,65212,65213,65221,65219,65222,43846,65220,65222,65220,65219,43846,65222,43854,65098,65223,65224,65224,39526,65101,65224,65101,65098,65223,65098,65100,65223,65100,65091,65225,65091,65097,65225,65097,65094,65226,65094,65096,65226,65096,63780,65094,65226,65225,65091,65225,65227,65091,65227,65223,65228,39526,65224,65224,65223,65229,65224,65229,65228,39526,65228,65230,39526,65230,39537,64419,61406,65102,64419,65102,63419,61406,64419,64416,65231,64416,64418,64418,63584,65232,64418,65232,65231,64416,65231,65233,64416,65233,61406,65161,65234,65235,65161,65235,63616,65161,64045,65236,65161,65236,65234,65237,65234,65238,65237,65238,65239,65237,63616,65235,65237,65235,65234,65240,65239,65241,65240,65241,65242,65243,65242,65244,65243,65244,65245,65242,65243,65240,65237,65240,65246,65237,65246,63616,65240,65237,65239,65247,65245,65248,65247,65248,65249,65250,65249,65251,65250,65251,65252,65249,65250,65247,65253,65252,65254,65253,65254,65255,65256,65255,65257,65256,65257,65258,65255,65256,65253,65252,65253,65259,65259,65247,65250,65259,65250,65252,65247,65260,65261,65247,65261,65245,65260,65262,65263,65263,65245,65261,65263,65261,65260,65240,65262,65264,65264,63616,65246,65264,65246,65240,65262,65240,65243,65243,65245,65263,65243,65263,65262,65117,65258,65265,65117,65265,65266,65267,65266,65268,65267,65268,65269,65266,65267,65117,65270,65269,65271,65270,65271,65272,65273,65272,65274,65274,65275,65276,65274,65276,65273,65272,65273,65270,65269,65270,65277,65277,65117,65267,65277,65267,65269,65133,65275,65278,65133,65278,65279,65280,65279,65281,65281,65282,65283,65281,65283,65280,65279,65280,65284,65279,65284,65133,65142,65282,65285,65285,65286,65287,65285,65287,65142,65146,65286,65288,65288,63584,65148,65288,65148,65146,65286,65146,65145,65145,65142,65287,65145,65287,65286,65282,65142,65141,65282,65141,65138,65280,65138,65137,65137,65133,65284,65137,65284,65280,65138,65280,65283,65138,65283,65282,65275,65133,65132,65275,65132,65129,65289,65129,65128,65289,65128,65125,65129,65289,65275,65270,65125,65124,65124,65117,65277,65124,65277,65270,65125,65270,65273,65289,65273,65276,65289,65276,65275,65273,65289,65125,65258,65117,65116,65116,65113,65290,65116,65290,65258,65291,65113,65112,65112,65108,65292,65112,65292,65291,65113,65291,65293,65293,65258,65290,65293,65290,65113,65247,65108,65107,65107,65104,65294,65107,65294,65247,65262,65104,65103,65103,63616,65264,65103,65264,65262,65104,65262,65260,65260,65247,65294,65260,65294,65104,65108,65247,65259,65259,65253,65295,65259,65295,65108,65291,65253,65256,65256,65258,65293,65256,65293,65291,65253,65291,65292,65292,65108,65295,65292,65295,65253,65296,62855,64530,65296,64530,62919,62855,65296,65297,65298,65297,65299,65298,65299,65300,65297,65298,62855,65162,65300,65301,65162,65301,65302,65167,65302,65303,65303,62622,65169,65303,65169,65167,65302,65167,65168,65302,65168,65162,65300,65162,65166,65300,65166,65164,65298,65164,65165,65298,65165,62855,65164,65298,65300,65304,65179,65305,65304,65305,65306,65179,65304,65307,65182,65307,65308,65182,65308,62948,65307,65182,65179,65181,65306,65305,65181,65305,65179,65306,65181,65172,65178,65309,65310,65178,65310,65172,65309,65178,65175,65311,65175,65177,65311,65177,44068,65175,65311,65309,65312,65172,65310,65312,65310,65309,65172,65312,65306,65308,65313,65314,65308,65314,62948,65313,65308,65307,65315,65307,65304,65315,65304,65306,65307,65315,65313,65316,62948,65314,65316,65314,65313,62948,65316,62919,39542,39541,65317,65317,65318,65319,65317,65319,39542,65320,65318,65321,65321,65322,65323,65321,65323,65320,65318,65320,65324,65324,39542,65319,65324,65319,65318,65325,65322,65326,65326,65327,65328,65326,65328,65325,65329,65327,65330,65330,65331,65332,65330,65332,65329,65327,65329,65333,65333,65325,65328,65333,65328,65327,65322,65325,65334,65334,65335,65336,65334,65336,65322,65320,65335,65337,65337,39542,65324,65337,65324,65320,65335,65320,65323,65323,65322,65336,65323,65336,65335,65189,65331,65338,65338,65339,65340,65338,65340,65189,65341,65339,65342,65342,65343,65344,65342,65344,65341,65339,65341,65345,65345,65189,65340,65345,65340,65339,65212,65343,65346,65346,65347,65348,65346,65348,65212,65219,65347,65349,65349,43854,65222,65349,65222,65219,65347,65219,65221,65221,65212,65348,65221,65348,65347,65343,65212,65218,65218,65215,65350,65218,65350,65343,65341,65215,65217,65217,65189,65345,65217,65345,65341,65215,65341,65344,65344,65343,65350,65344,65350,65215,65331,65189,65209,65209,65206,65351,65209,65351,65331,65352,65206,65208,65208,65199,65353,65208,65353,65352,65206,65352,65354,65354,65331,65351,65354,65351,65206,65325,65199,65205,65205,65202,65355,65205,65355,65325,65335,65202,65204,65204,39542,65337,65204,65337,65335,65202,65335,65334,65334,65325,65355,65334,65355,65202,65199,65325,65333,65333,65329,65356,65333,65356,65199,65352,65329,65332,65332,65331,65354,65332,65354,65352,65329,65352,65353,65353,65199,65356,65353,65356,65329,65357,65358,65359,65357,65359,65223,65358,65357,63961,65358,65360,65361,65361,65223,65359,65361,65359,65358,65228,65360,65362,65362,39537,65230,65362,65230,65228,65360,65228,65229,65229,65223,65361,65229,65361,65360,65227,65363,65364,65227,65364,65223,65363,65227,65225,65363,63961,65357,65357,65223,65364,65357,65364,65363,64752,65225,65226,65226,63780,64753,65226,64753,64752,65363,64752,64751,65363,64751,63961,64752,65363,65225,63407,61406,65233,65233,65231,65365,65233,65365,63407,65366,65231,65232,65232,63584,65367,65232,65367,65366,65231,65366,65368,65368,63407,65365,65368,65365,65231,65369,64045,64525,64525,64524,65370,64525,65370,65369,65371,65369,65372,65371,65372,65373,65369,65371,64045,65374,65373,65375,65374,65375,65376,65377,65376,65378,65377,65378,65379,65376,65377,65374,65373,65374,65380,65380,64045,65371,65380,65371,65373,65381,65379,65382,65381,65382,65383,65384,65383,65385,65384,65385,65386,65383,65384,65381,65387,65386,65388,65387,65388,65389,65390,65389,65391,65391,65392,65393,65391,65393,65390,65389,65390,65394,65389,65394,65387,65386,65387,65395,65386,65395,65396,65396,65381,65384,65396,65384,65386,65379,65381,65397,65397,65398,65399,65397,65399,65379,65374,65398,65400,65400,64045,65380,65400,65380,65374,65398,65374,65377,65377,65379,65399,65377,65399,65398,65258,65392,65401,65258,65401,65402,65403,65402,65404,65403,65404,65405,65402,65403,65258,65406,65405,65407,65406,65407,65408,65409,65408,65410,65410,65411,65412,65410,65412,65409,65408,65409,65413,65408,65413,65406,65405,65406,65414,65405,65414,65415,65403,65415,65416,65403,65416,65258,65415,65403,65405,65275,65411,65417,65275,65417,65418,65419,65418,65420,65420,65421,65422,65420,65422,65419,65418,65419,65423,65418,65423,65275,65282,65421,65424,65424,65425,65426,65424,65426,65282,65286,65425,65427,65427,63584,65288,65427,65288,65286,65425,65286,65285,65285,65282,65426,65285,65426,65425,65421,65282,65281,65421,65281,65279,65419,65279,65278,65278,65275,65423,65278,65423,65419,65279,65419,65422,65279,65422,65421,65411,65275,65274,65411,65274,65272,65428,65272,65271,65428,65271,65269,65272,65428,65411,65406,65269,65268,65406,65268,65266,65415,65266,65265,65265,65258,65416,65265,65416,65415,65266,65415,65414,65266,65414,65406,65269,65406,65413,65269,65413,65409,65428,65409,65412,65428,65412,65411,65409,65428,65269,65392,65258,65257,65392,65257,65255,65429,65255,65254,65429,65254,65252,65255,65429,65392,65430,65252,65251,65430,65251,65249,65431,65249,65248,65431,65248,65245,65249,65431,65430,65252,65430,65432,65432,65392,65429,65432,65429,65252,65381,65245,65244,65381,65244,65242,65433,65242,65241,65433,65241,65239,65242,65433,65381,65398,65239,65238,65398,65238,65234,65400,65234,65236,65400,65236,64045,65234,65400,65398,65239,65398,65397,65397,65381,65433,65397,65433,65239,65245,65381,65396,65434,65396,65395,65434,65395,65387,65396,65434,65245,65430,65387,65394,65430,65394,65390,65432,65390,65393,65432,65393,65392,65390,65432,65430,65387,65430,65431,65431,65245,65434,65431,65434,65387,65435,65302,65436,65435,65436,65437,65302,65435,65438,65303,65438,65439,65303,65439,62622,65438,65303,65302,65301,65437,65436,65301,65436,65302,65437,65301,65300,65299,65440,65441,65299,65441,65300,65440,65299,65297,65442,65297,65296,65442,65296,62919,65297,65442,65440,65443,65300,65441,65443,65441,65440,65300,65443,65437,65439,65444,65445,65439,65445,62622,65444,65439,65438,65446,65438,65435,65446,65435,65437,65438,65446,65444,65447,62622,65445,65447,65445,65444,62622,65447,64524,65448,65449,65450,65448,65450,65306,65449,65448,65451,65452,65451,65453,65452,65453,44067,65451,65452,65449,65454,65306,65450,65454,65450,65449,65306,65454,65455,65456,65313,65457,65456,65457,65455,65313,65456,65458,65316,65458,65459,65316,65459,62919,65458,65316,65313,65315,65455,65457,65315,65457,65313,65455,65315,65306,65453,65309,65460,65453,65460,44067,65309,65453,65451,65312,65451,65448,65312,65448,65306,65451,65312,65309,65311,44067,65460,65311,65460,65309,44067,65311,44068,39541,39537,65461,65461,65462,65463,65461,65463,39541,65464,65462,65465,65465,65466,65467,65465,65467,65464,65462,65464,65468,65468,39541,65463,65468,65463,65462,65469,65466,65470,65470,65471,65472,65470,65472,65469,65473,65471,65474,65474,65475,65476,65474,65476,65473,65471,65473,65477,65477,65469,65472,65477,65472,65471,65466,65469,65478,65478,65479,65480,65478,65480,65466,65464,65479,65481,65481,39541,65468,65481,65468,65464,65479,65464,65467,65467,65466,65480,65467,65480,65479,65331,65475,65482,65482,65483,65484,65482,65484,65331,65485,65483,65486,65486,65487,65488,65486,65488,65485,65483,65485,65489,65489,65331,65484,65489,65484,65483,65343,65487,65490,65490,65491,65492,65490,65492,65343,65347,65491,65493,65493,43854,65349,65493,65349,65347,65491,65347,65346,65346,65343,65492,65346,65492,65491,65487,65343,65342,65342,65339,65494,65342,65494,65487,65485,65339,65338,65338,65331,65489,65338,65489,65485,65339,65485,65488,65488,65487,65494,65488,65494,65339,65475,65331,65330,65330,65327,65495,65330,65495,65475,65496,65327,65326,65326,65322,65497,65326,65497,65496,65327,65496,65498,65498,65475,65495,65498,65495,65327,65469,65322,65321,65321,65318,65499,65321,65499,65469,65479,65318,65317,65317,39541,65481,65317,65481,65479,65318,65479,65478,65478,65469,65499,65478,65499,65318,65322,65469,65477,65477,65473,65500,65477,65500,65322,65496,65473,65476,65476,65475,65498,65476,65498,65496,65473,65496,65497,65497,65322,65500,65497,65500,65473,65501,65360,65502,65501,65502,65503,65360,65501,65504,65362,65504,65505,65362,65505,39537,65504,65362,65360,65358,65503,65502,65358,65502,65360,65503,65358,63961,65506,63407,65368,65506,65368,65366,65507,65366,65367,65507,65367,63584,65366,65507,65506,63407,65506,65508,63407,65508,61403,65509,65444,65510,65509,65510,65511,65444,65509,65512,65447,65512,65513,65447,65513,64524,65512,65447,65444,65446,65511,65510,65446,65510,65444,65511,65446,65437,65443,65514,65515,65443,65515,65437,65514,65443,65440,65516,65440,65442,65516,65442,62919,65440,65516,65514,65517,65437,65515,65517,65515,65514,65437,65517,65511,65513,65518,65519,65513,65519,64524,65518,65513,65512,65520,65512,65509,65520,65509,65511,65512,65520,65518,65521,64524,65519,65521,65519,65518,64524,65521,65522,65523,65524,65525,65523,65525,65526,65524,65523,65527,65528,65527,65529,65528,65529,65522,65527,65528,65524,65530,65526,65525,65530,65525,65524,65526,65530,65531,65532,65533,65534,65532,65534,65531,65533,65532,65535,65536,65535,65537,65536,65537,65538,65535,65536,65533,65539,65531,65534,65539,65534,65533,65531,65539,65526,65529,65540,65541,65529,65541,65522,65540,65529,65527,65542,65527,65523,65542,65523,65526,65527,65542,65540,65543,65522,65541,65543,65541,65540,65522,65543,64524,65544,65545,65546,65544,65546,65392,65545,65544,65547,65548,65547,65549,65548,65549,65538,65547,65548,65545,65550,65392,65546,65550,65546,65545,65392,65550,65551,65552,65553,65554,65552,65554,65551,65553,65552,65555,65556,65555,65557,65556,65557,65558,65555,65556,65553,65559,65551,65554,65559,65554,65553,65551,65559,65392,65560,65411,65561,65560,65561,65558,65411,65560,65562,65563,65562,65564,65563,65564,65565,65562,65563,65411,65421,65565,65566,65421,65566,65567,65425,65567,65568,65568,63584,65427,65568,65427,65425,65567,65425,65424,65567,65424,65421,65565,65421,65420,65565,65420,65418,65563,65418,65417,65563,65417,65411,65418,65563,65565,65408,65558,65561,65561,65411,65410,65561,65410,65408,65558,65408,65407,65558,65407,65405,65553,65405,65404,65553,65404,65402,65559,65402,65401,65559,65401,65392,65402,65559,65553,65405,65553,65556,65405,65556,65558,65386,65538,65549,65386,65549,65547,65389,65547,65544,65544,65392,65391,65544,65391,65389,65547,65389,65388,65547,65388,65386,65538,65386,65385,65538,65385,65383,65569,65383,65382,65569,65382,65379,65383,65569,65538,65376,65526,65570,65570,65379,65378,65570,65378,65376,65526,65376,65375,65526,65375,65373,65540,65373,65372,65540,65372,65369,65543,65369,65370,65543,65370,64524,65369,65543,65540,65373,65540,65542,65373,65542,65526,65539,65379,65570,65539,65570,65526,65379,65539,65533,65569,65533,65536,65569,65536,65538,65533,65569,65379,65571,65572,65573,65571,65573,65455,65572,65571,65574,65575,65574,65576,65575,65576,44066,65574,65575,65572,65577,65455,65573,65577,65573,65572,65455,65577,65578,65579,65458,65580,65579,65580,65578,65458,65579,65581,65459,65581,65582,65459,65582,62919,65581,65459,65458,65456,65578,65580,65456,65580,65458,65578,65456,65455,65576,65449,65583,65576,65583,44066,65449,65576,65574,65454,65574,65571,65454,65571,65455,65574,65454,65449,65452,44066,65583,65452,65583,65449,44066,65452,44067,65505,65584,65585,65505,65585,39537,65584,65505,65504,65586,65504,65501,65501,65503,65587,65501,65587,65586,65504,65586,65588,65504,65588,65584,65589,39537,65585,65589,65585,65584,39537,65589,65590,65591,65590,65592,65591,65592,65593,65590,65591,39537,65594,65595,65596,65596,65593,65597,65596,65597,65594,65595,65594,65598,65595,65598,65599,65600,65599,65601,65600,65601,65602,65603,65602,65604,65603,65604,65605,65602,65603,65600,65599,65600,65606,65599,65606,65595,65607,65593,65596,65596,65595,65608,65596,65608,65607,65591,65607,65609,65591,65609,39537,65607,65591,65593,65610,65475,65611,65611,65605,65612,65611,65612,65610,65475,65610,65613,65475,65613,65614,65615,65614,65616,65615,65616,65617,65618,65617,65619,65618,65619,65620,65617,65618,65615,65614,65615,65621,65614,65621,65475,65487,65620,65622,65487,65622,65623,65624,65623,65625,65624,65625,65626,65623,65624,65487,65491,65626,65627,65491,65627,65628,65493,65628,65629,65493,65629,43854,65628,65493,65491,65626,65491,65490,65490,65487,65624,65490,65624,65626,65620,65487,65486,65486,65483,65630,65486,65630,65620,65615,65483,65482,65482,65475,65621,65482,65621,65615,65483,65615,65618,65618,65620,65630,65618,65630,65483,65474,65605,65611,65474,65611,65475,65605,65474,65471,65631,65471,65470,65470,65466,65632,65470,65632,65631,65471,65631,65633,65471,65633,65605,65595,65466,65465,65465,65462,65634,65465,65634,65595,65607,65462,65461,65461,39537,65609,65461,65609,65607,65462,65607,65608,65608,65595,65634,65608,65634,65462,65466,65595,65606,65466,65606,65600,65631,65600,65603,65603,65605,65633,65603,65633,65631,65600,65631,65632,65600,65632,65466,65508,65635,65636,65508,65636,61403,65635,65508,65506,65637,65506,65507,65637,65507,63584,65506,65637,65635,65638,61403,65636,65638,65636,65635,61403,65638,65639,65640,65641,65642,65640,65642,65578,65641,65640,65643,65644,65643,65645,65644,65645,44061,65643,65644,65641,65646,65578,65642,65646,65642,65641,65578,65646,65647,65648,65581,65649,65648,65649,65647,65581,65648,65650,65582,65650,65651,65582,65651,62919,65650,65582,65581,65579,65647,65649,65579,65649,65581,65647,65579,65578,65645,65572,65652,65645,65652,44061,65572,65645,65643,65577,65643,65640,65577,65640,65578,65643,65577,65572,65575,44061,65652,65575,65652,65572,44061,65575,44066,65653,65605,65654,65654,65655,65656,65654,65656,65653,65657,65655,65658,65658,65659,65660,65658,65660,65657,65655,65657,65661,65661,65653,65656,65661,65656,65655,65662,65659,65663,65663,65664,65665,65663,65665,65662,65666,65664,65667,65667,65668,65669,65667,65669,65666,65664,65666,65670,65670,65662,65665,65670,65665,65664,65659,65662,65671,65671,65672,65673,65671,65673,65659,65657,65672,65674,65674,65653,65661,65674,65661,65657,65672,65657,65660,65660,65659,65673,65660,65673,65672,65675,65668,65676,65676,65677,65678,65676,65678,65675,65679,65677,65680,65680,65681,65682,65680,65682,65679,65677,65679,65683,65683,65675,65678,65683,65678,65677,65684,65681,65685,65685,65686,65687,65685,65687,65684,65688,65686,65689,65689,65690,65691,65689,65691,65688,65686,65688,65692,65692,65684,65687,65692,65687,65686,65681,65684,65693,65693,65694,65695,65693,65695,65681,65679,65694,65696,65696,65675,65683,65696,65683,65679,65694,65679,65682,65682,65681,65695,65682,65695,65694,65668,65675,65697,65697,65698,65699,65697,65699,65668,65700,65698,65701,65701,65702,65703,65701,65703,65700,65698,65700,65704,65704,65668,65699,65704,65699,65698,65662,65702,65705,65705,65706,65707,65705,65707,65662,65672,65706,65708,65708,65653,65674,65708,65674,65672,65706,65672,65671,65671,65662,65707,65671,65707,65706,65702,65662,65670,65670,65666,65709,65670,65709,65702,65700,65666,65669,65669,65668,65704,65669,65704,65700,65666,65700,65703,65703,65702,65709,65703,65709,65666,65710,65620,65711,65711,65712,65713,65711,65713,65710,65714,65712,65715,65715,65716,65717,65715,65717,65714,65712,65714,65718,65718,65710,65713,65718,65713,65712,65719,65716,65720,65720,65721,65722,65720,65722,65719,65723,65721,65724,65724,65653,65725,65724,65725,65723,65721,65723,65726,65726,65719,65722,65726,65722,65721,65716,65719,65727,65727,65728,65729,65727,65729,65716,65714,65728,65730,65730,65710,65718,65730,65718,65714,65728,65714,65717,65717,65716,65729,65717,65729,65728,65620,65710,65731,65731,65732,65733,65731,65733,65620,65734,65732,65735,65735,65736,65737,65735,65737,65734,65732,65734,65738,65738,65620,65733,65738,65733,65732,65626,65736,65739,65739,65740,65741,65739,65741,65626,65628,65740,65742,65742,43854,65629,65742,65629,65628,65740,65628,65627,65627,65626,65741,65627,65741,65740,65736,65626,65625,65625,65623,65743,65625,65743,65736,65734,65623,65622,65622,65620,65738,65622,65738,65734,65623,65734,65737,65737,65736,65743,65737,65743,65623,65605,65653,65724,65724,65721,65744,65724,65744,65605,65745,65721,65720,65720,65716,65746,65720,65746,65745,65721,65745,65747,65747,65605,65744,65747,65744,65721,65614,65716,65715,65715,65712,65748,65715,65748,65614,65617,65712,65711,65711,65620,65619,65711,65619,65617,65712,65617,65616,65616,65614,65748,65616,65748,65712,65716,65614,65613,65613,65610,65749,65613,65749,65716,65745,65610,65612,65612,65605,65747,65612,65747,65745,65610,65745,65746,65746,65716,65749,65746,65749,65610,65668,65593,65750,65750,65751,65752,65750,65752,65668,65753,65751,65754,65754,65755,65756,65754,65756,65753,65751,65753,65757,65757,65668,65752,65757,65752,65751,65681,65755,65758,65758,65759,65760,65758,65760,65681,65686,65759,65761,65761,65690,65689,65761,65689,65686,65759,65686,65685,65685,65681,65760,65685,65760,65759,65755,65681,65680,65680,65677,65762,65680,65762,65755,65753,65677,65676,65676,65668,65757,65676,65757,65753,65677,65753,65756,65756,65755,65762,65756,65762,65677,65593,65668,65667,65667,65664,65763,65667,65763,65593,65764,65664,65663,65663,65659,65765,65663,65765,65764,65664,65764,65766,65766,65593,65763,65766,65763,65664,65599,65659,65658,65658,65655,65767,65658,65767,65599,65602,65655,65654,65654,65605,65604,65654,65604,65602,65655,65602,65601,65601,65599,65767,65601,65767,65655,65659,65599,65598,65598,65594,65768,65598,65768,65659,65764,65594,65597,65597,65593,65766,65597,65766,65764,65594,65764,65765,65765,65659,65768,65765,65768,65594,65503,65690,65761,65761,65759,65769,65761,65769,65503,65770,65759,65758,65758,65755,65771,65758,65771,65770,65759,65770,65772,65772,65503,65769,65772,65769,65759,65584,65755,65754,65754,65751,65773,65754,65773,65584,65590,65751,65750,65750,65593,65592,65750,65592,65590,65751,65590,65589,65589,65584,65773,65589,65773,65751,65755,65584,65588,65588,65586,65774,65588,65774,65755,65770,65586,65587,65587,65503,65772,65587,65772,65770,65586,65770,65771,65771,65755,65774,65771,65774,65586,65638,65775,65776,65638,65776,65639,65775,65638,65635,65777,65635,65637,65777,65637,63584,65635,65777,65775,65778,65639,65776,65778,65776,65775,65639,65778,64494,65779,65780,65781,65779,65781,65647,65780,65779,65782,65783,65782,65784,65783,65784,44060,65782,65783,65780,65785,65647,65781,65785,65781,65780,65647,65785,65786,65787,65650,65788,65787,65788,65786,65650,65787,65789,65651,65789,65790,65651,65790,62919,65789,65651,65650,65648,65786,65788,65648,65788,65650,65786,65648,65647,65784,65641,65791,65784,65791,44060,65641,65784,65782,65646,65782,65779,65646,65779,65647,65782,65646,65641,65644,44060,65791,65644,65791,65641,44060,65644,44061,65792,65653,65793,65793,65794,65795,65793,65795,65792,65796,65794,65797,65797,65798,65799,65797,65799,65796,65794,65796,65800,65800,65792,65795,65800,65795,65794,65801,65798,65802,65802,65803,65804,65802,65804,65801,65805,65803,65806,65806,65807,65808,65806,65808,65805,65803,65805,65809,65809,65801,65804,65809,65804,65803,65798,65801,65810,65810,65811,65812,65810,65812,65798,65796,65811,65813,65813,65792,65800,65813,65800,65796,65811,65796,65799,65799,65798,65812,65799,65812,65811,65814,65807,65815,65815,65816,65817,65815,65817,65814,65818,65816,65819,65819,65820,65821,65819,65821,65818,65816,65818,65822,65822,65814,65817,65822,65817,65816,65823,65820,65824,65824,65825,65826,65824,65826,65823,65827,65825,65828,65828,65829,65830,65828,65830,65827,65825,65827,65831,65831,65823,65826,65831,65826,65825,65820,65823,65832,65832,65833,65834,65832,65834,65820,65818,65833,65835,65835,65814,65822,65835,65822,65818,65833,65818,65821,65821,65820,65834,65821,65834,65833,65807,65814,65836,65836,65837,65838,65836,65838,65807,65839,65837,65840,65840,65841,65842,65840,65842,65839,65837,65839,65843,65843,65807,65838,65843,65838,65837,65801,65841,65844,65844,65845,65846,65844,65846,65801,65811,65845,65847,65847,65792,65813,65847,65813,65811,65845,65811,65810,65810,65801,65846,65810,65846,65845,65841,65801,65809,65809,65805,65848,65809,65848,65841,65839,65805,65808,65808,65807,65843,65808,65843,65839,65805,65839,65842,65842,65841,65848,65842,65848,65805,65653,65792,65849,65849,65850,65851,65849,65851,65653,65852,65850,65853,65853,65854,65855,65853,65855,65852,65850,65852,65856,65856,65653,65851,65856,65851,65850,65857,65854,65858,65858,65859,65860,65858,65860,65857,65861,65859,65862,65862,65863,65864,65862,65864,65861,65859,65861,65865,65865,65857,65860,65865,65860,65859,65854,65857,65866,65866,65867,65868,65866,65868,65854,65852,65867,65869,65869,65653,65856,65869,65856,65852,65867,65852,65855,65855,65854,65868,65855,65868,65867,65710,65863,65870,65870,65871,65872,65870,65872,65710,65873,65871,65874,65874,65875,65876,65874,65876,65873,65871,65873,65877,65877,65710,65872,65877,65872,65871,65736,65875,65878,65878,65879,65880,65878,65880,65736,65740,65879,65881,65881,43854,65742,65881,65742,65740,65879,65740,65739,65739,65736,65880,65739,65880,65879,65875,65736,65735,65735,65732,65882,65735,65882,65875,65873,65732,65731,65731,65710,65877,65731,65877,65873,65732,65873,65876,65876,65875,65882,65876,65882,65732,65863,65710,65730,65730,65728,65883,65730,65883,65863,65884,65728,65727,65727,65719,65885,65727,65885,65884,65728,65884,65886,65886,65863,65883,65886,65883,65728,65857,65719,65726,65726,65723,65887,65726,65887,65857,65867,65723,65725,65725,65653,65869,65725,65869,65867,65723,65867,65866,65866,65857,65887,65866,65887,65723,65719,65857,65865,65865,65861,65888,65865,65888,65719,65884,65861,65864,65864,65863,65886,65864,65886,65884,65861,65884,65885,65885,65719,65888,65885,65888,65861,65690,65829,65828,65828,65825,65889,65828,65889,65690,65890,65825,65824,65824,65820,65891,65824,65891,65890,65825,65890,65892,65892,65690,65889,65892,65889,65825,65893,65820,65819,65819,65816,65894,65819,65894,65893,65895,65816,65815,65815,65807,65896,65815,65896,65895,65816,65895,65897,65897,65893,65894,65897,65894,65816,65820,65893,65898,65898,65899,65900,65898,65900,65820,65890,65899,65901,65901,65690,65892,65901,65892,65890,65899,65890,65891,65891,65820,65900,65891,65900,65899,65675,65807,65806,65806,65803,65902,65806,65902,65675,65903,65803,65802,65802,65798,65904,65802,65904,65903,65803,65903,65905,65905,65675,65902,65905,65902,65803,65702,65798,65797,65797,65794,65906,65797,65906,65702,65706,65794,65793,65793,65653,65708,65793,65708,65706,65794,65706,65705,65705,65702,65906,65705,65906,65794,65798,65702,65701,65701,65698,65907,65701,65907,65798,65903,65698,65697,65697,65675,65905,65697,65905,65903,65698,65903,65904,65904,65798,65907,65904,65907,65698,65807,65675,65696,65696,65694,65908,65696,65908,65807,65909,65694,65693,65693,65684,65910,65693,65910,65909,65694,65909,65911,65911,65807,65908,65911,65908,65694,65893,65684,65692,65692,65688,65912,65692,65912,65893,65899,65688,65691,65691,65690,65901,65691,65901,65899,65688,65899,65898,65898,65893,65912,65898,65912,65688,65684,65893,65897,65897,65895,65913,65897,65913,65684,65909,65895,65896,65896,65807,65911,65896,65911,65909,65895,65909,65910,65910,65684,65913,65910,65913,65895,65914,64494,65778,65914,65778,65775,65915,65775,65777,65915,65777,63584,65775,65915,65914,64494,65914,65916,65916,61351,64495,65916,64495,64494,65917,65918,65919,65917,65919,65786,65918,65917,65920,65921,65920,65922,65921,65922,44059,65920,65921,65918,65923,65786,65919,65923,65919,65918,65786,65923,65924,65925,65789,65926,65925,65926,65924,65789,65925,65927,65790,65927,65928,65790,65928,62919,65927,65790,65789,65787,65924,65926,65787,65926,65789,65924,65787,65786,65922,65780,65929,65922,65929,44059,65780,65922,65920,65785,65920,65917,65785,65917,65786,65920,65785,65780,65783,44059,65929,65783,65929,65780,44059,65783,44060,65829,61231,65930,65829,65930,65931,65932,65931,65933,65933,65934,65935,65933,65935,65932,65931,65932,65936,65931,65936,65829,65937,65934,65938,65938,65939,65940,65938,65940,65937,65941,65939,65942,65942,65943,65944,65942,65944,65941,65939,65941,65945,65945,65937,65940,65945,65940,65939,65934,65937,65946,65946,65947,65948,65946,65948,65934,65932,65947,65949,65949,65829,65936,65949,65936,65932,65947,65932,65935,65935,65934,65948,65935,65948,65947,65950,65943,65951,65951,65952,65953,65951,65953,65950,65954,65952,65955,65955,65956,65957,65955,65957,65954,65952,65954,65958,65958,65950,65953,65958,65953,65952,65959,65956,65960,65960,65961,65962,65960,65962,65959,65963,65961,65964,65964,65965,65966,65964,65966,65963,65961,65963,65967,65967,65959,65962,65967,65962,65961,65956,65959,65968,65968,65969,65970,65968,65970,65956,65954,65969,65971,65971,65950,65958,65971,65958,65954,65969,65954,65957,65957,65956,65970,65957,65970,65969,65943,65950,65972,65972,65973,65974,65972,65974,65943,65975,65973,65976,65976,65977,65978,65976,65978,65975,65973,65975,65979,65979,65943,65974,65979,65974,65973,65937,65977,65980,65980,65981,65982,65980,65982,65937,65947,65981,65983,65983,65829,65949,65983,65949,65947,65981,65947,65946,65946,65937,65982,65946,65982,65981,65977,65937,65945,65945,65941,65984,65945,65984,65977,65975,65941,65944,65944,65943,65979,65944,65979,65975,65941,65975,65978,65978,65977,65984,65978,65984,65941,65792,65965,65985,65985,65986,65987,65985,65987,65792,65988,65986,65989,65989,65990,65991,65989,65991,65988,65986,65988,65992,65992,65792,65987,65992,65987,65986,65993,65990,65994,65994,65995,65996,65994,65996,65993,65997,65995,65998,65998,65999,66000,65998,66000,65997,65995,65997,66001,66001,65993,65996,66001,65996,65995,65990,65993,66002,66002,66003,66004,66002,66004,65990,65988,66003,66005,66005,65792,65992,66005,65992,65988,66003,65988,65991,65991,65990,66004,65991,66004,66003,65863,65999,66006,66006,66007,66008,66006,66008,65863,66009,66007,66010,66010,66011,66012,66010,66012,66009,66007,66009,66013,66013,65863,66008,66013,66008,66007,65875,66011,66014,66014,66015,66016,66014,66016,65875,65879,66015,66017,66017,43854,65881,66017,65881,65879,66015,65879,65878,65878,65875,66016,65878,66016,66015,66011,65875,65874,65874,65871,66018,65874,66018,66011,66009,65871,65870,65870,65863,66013,65870,66013,66009,65871,66009,66012,66012,66011,66018,66012,66018,65871,65999,65863,65862,65862,65859,66019,65862,66019,65999,66020,65859,65858,65858,65854,66021,65858,66021,66020,65859,66020,66022,66022,65999,66019,66022,66019,65859,65993,65854,65853,65853,65850,66023,65853,66023,65993,66003,65850,65849,65849,65792,66005,65849,66005,66003,65850,66003,66002,66002,65993,66023,66002,66023,65850,65854,65993,66001,66001,65997,66024,66001,66024,65854,66020,65997,66000,66000,65999,66022,66000,66022,66020,65997,66020,66021,66021,65854,66024,66021,66024,65997,65965,65792,65847,65847,65845,66025,65847,66025,65965,66026,65845,65844,65844,65841,66027,65844,66027,66026,65845,66026,66028,66028,65965,66025,66028,66025,65845,66029,65841,65840,65840,65837,66030,65840,66030,66029,66031,65837,65836,65836,65814,66032,65836,66032,66031,65837,66031,66033,66033,66029,66030,66033,66030,65837,65841,66029,66034,66034,66035,66036,66034,66036,65841,66026,66035,66037,66037,65965,66028,66037,66028,66026,66035,66026,66027,66027,65841,66036,66027,66036,66035,65950,65814,65835,65835,65833,66038,65835,66038,65950,66039,65833,65832,65832,65823,66040,65832,66040,66039,65833,66039,66041,66041,65950,66038,66041,66038,65833,65977,65823,65831,65831,65827,66042,65831,66042,65977,65981,65827,65830,65830,65829,65983,65830,65983,65981,65827,65981,65980,65980,65977,66042,65980,66042,65827,65823,65977,65976,65976,65973,66043,65976,66043,65823,66039,65973,65972,65972,65950,66041,65972,66041,66039,65973,66039,66040,66040,65823,66043,66040,66043,65973,65814,65950,65971,65971,65969,66044,65971,66044,65814,66045,65969,65968,65968,65959,66046,65968,66046,66045,65969,66045,66047,66047,65814,66044,66047,66044,65969,66029,65959,65967,65967,65963,66048,65967,66048,66029,66035,65963,65966,65966,65965,66037,65966,66037,66035,65963,66035,66034,66034,66029,66048,66034,66048,65963,65959,66029,66033,66033,66031,66049,66033,66049,65959,66045,66031,66032,66032,65814,66047,66032,66047,66045,66031,66045,66046,66046,65959,66049,66046,66049,66031,66050,65916,66051,66050,66051,65565,65916,66050,61351,65916,65914,66052,66052,65565,66051,66052,66051,65916,65567,65914,65915,65915,63584,65568,65915,65568,65567,66052,65567,65566,66052,65566,65565,65567,66052,65914,65562,66053,66054,66054,65565,65564,66054,65564,65562,66055,65562,65560,66055,65560,65558,65562,66055,66053,66054,66056,66057,66054,66057,65565,66056,66054,66053,66057,61351,66050,66057,66050,65565,61351,66057,66056,65555,66058,66059,66059,65558,65557,66059,65557,65555,66060,65555,65552,66060,65552,65551,65555,66060,66058,66061,65551,65550,66061,65550,65545,66062,65545,65548,65548,65538,66063,65548,66063,66062,65545,66062,66064,65545,66064,66061,65551,66061,66065,65551,66065,66066,66060,66066,66067,66060,66067,66058,66066,66060,65551,66068,65558,66059,66059,66058,66069,66059,66069,66068,65558,66068,66070,66070,66071,66072,66070,66072,65558,66053,66071,66073,66053,66073,66074,66056,66074,66075,66056,66075,61351,66074,66056,66053,66071,66053,66055,66055,65558,66072,66055,66072,66071,65535,66076,66077,66077,65538,65537,66077,65537,65535,66078,65535,65532,66078,65532,65531,65535,66078,66076,66079,65531,65530,66079,65530,65524,66080,65524,65528,65528,65522,66081,65528,66081,66080,65524,66080,66082,65524,66082,66079,65531,66079,66083,65531,66083,66084,66078,66084,66085,66078,66085,66076,66084,66078,65531,66086,65522,65521,66086,65521,65518,66087,65518,65520,65520,65511,66088,65520,66088,66087,65518,66087,66089,65518,66089,66086,66090,65511,65517,65517,65514,66091,65517,66091,66090,66092,65514,65516,65516,62919,66093,65516,66093,66092,65514,66092,66094,66094,66090,66091,66094,66091,65514,65511,66090,66095,66095,66096,66097,66095,66097,65511,66087,66096,66098,66098,66086,66089,66098,66089,66087,66096,66087,66088,66088,65511,66097,66088,66097,66096,65522,66086,66099,65522,66099,66100,66101,66100,66102,66102,66103,66104,66102,66104,66101,66100,66101,66105,66100,66105,65522,66079,66103,66106,66106,66107,66108,66106,66108,66079,66084,66107,66109,66109,66076,66085,66109,66085,66084,66107,66084,66083,66083,66079,66108,66083,66108,66107,66103,66079,66082,66103,66082,66080,66101,66080,66081,66081,65522,66105,66081,66105,66101,66080,66101,66104,66080,66104,66103,66110,65538,66077,66077,66076,66111,66077,66111,66110,65538,66110,66112,66112,66113,66114,66112,66114,65538,66115,66113,66116,66115,66116,66117,66118,66117,66119,66119,66120,66121,66119,66121,66118,66117,66118,66122,66117,66122,66115,66113,66115,66123,66113,66123,66124,66114,66124,66125,66114,66125,65538,66124,66114,66113,66058,66120,66126,66058,66126,66127,66128,66127,66129,66129,66130,66131,66129,66131,66128,66127,66128,66132,66127,66132,66058,66071,66130,66133,66133,66134,66135,66133,66135,66071,66074,66134,66136,66136,61351,66075,66136,66075,66074,66134,66074,66073,66073,66071,66135,66073,66135,66134,66130,66071,66070,66130,66070,66068,66128,66068,66069,66069,66058,66132,66069,66132,66128,66068,66128,66131,66068,66131,66130,66120,66058,66067,66120,66067,66066,66137,66066,66065,66137,66065,66061,66066,66137,66120,66115,66061,66064,66115,66064,66062,66124,66062,66063,66063,65538,66125,66063,66125,66124,66062,66124,66123,66062,66123,66115,66061,66115,66122,66061,66122,66118,66137,66118,66121,66137,66121,66120,66118,66137,66061,66138,66139,66140,66138,66140,65924,66139,66138,66141,66142,66141,66143,66142,66143,44058,66141,66142,66139,66144,65924,66140,66144,66140,66139,65924,66144,66145,66146,65927,66147,66146,66147,66145,65927,66146,66148,65928,66148,66149,65928,66149,62919,66148,65928,65927,65925,66145,66147,65925,66147,65927,66145,65925,65924,66143,65918,66150,66143,66150,44058,65918,66143,66141,65923,66141,66138,65923,66138,65924,66141,65923,65918,65921,44058,66150,65921,66150,65918,44058,65921,44059,63962,66151,66152,63962,66152,61231,63962,63553,66153,63962,66153,66151,66154,66151,66155,66154,66155,66156,66154,61231,66152,66154,66152,66151,66157,66156,66158,66157,66158,66159,66160,66159,66161,66160,66161,66162,66159,66160,66157,66156,66157,66163,66163,61231,66154,66163,66154,66156,66164,66162,66165,66164,66165,66166,66167,66166,66168,66167,66168,66169,66166,66167,66164,66170,66169,66171,66170,66171,66172,66173,66172,66174,66173,66174,66175,66172,66173,66170,66169,66170,66176,66176,66164,66167,66176,66167,66169,66162,66164,66177,66177,66178,66179,66177,66179,66162,66157,66178,66180,66180,61231,66163,66180,66163,66157,66178,66157,66160,66160,66162,66179,66160,66179,66178,65965,66175,66181,65965,66181,66182,66183,66182,66184,66183,66184,66185,66182,66183,65965,66186,66185,66187,66186,66187,66188,66189,66188,66190,66189,66190,66191,66188,66189,66186,66185,66186,66192,66192,65965,66183,66192,66183,66185,65999,66191,66193,65999,66193,66194,66195,66194,66196,66195,66196,66197,66194,66195,65999,66011,66197,66198,66011,66198,66199,66015,66199,66200,66200,43854,66017,66200,66017,66015,66199,66015,66014,66199,66014,66011,66197,66011,66010,66197,66010,66007,66195,66007,66006,66195,66006,65999,66007,66195,66197,66191,65999,65998,66191,65998,65995,66201,65995,65994,66201,65994,65990,65995,66201,66191,66186,65990,65989,66186,65989,65986,66192,65986,65985,66192,65985,65965,65986,66192,66186,65990,66186,66189,66189,66191,66201,66189,66201,65990,66175,65965,65964,66175,65964,65961,66202,65961,65960,66202,65960,65956,65961,66202,66175,66203,65956,65955,66203,65955,65952,66204,65952,65951,66204,65951,65943,65952,66204,66203,65956,66203,66205,66205,66175,66202,66205,66202,65956,66164,65943,65942,66164,65942,65939,66206,65939,65938,66206,65938,65934,65939,66206,66164,66178,65934,65933,66178,65933,65931,66180,65931,65930,66180,65930,61231,65931,66180,66178,65934,66178,66177,66177,66164,66206,66177,66206,65934,65943,66164,66176,66176,66170,66207,66176,66207,65943,66203,66170,66173,66173,66175,66205,66173,66205,66203,66170,66203,66204,66204,65943,66207,66204,66207,66170,64757,66208,66209,64757,66209,61260,66208,64757,64755,66208,66130,66210,66210,61260,66209,66210,66209,66208,66134,64755,64754,64754,61351,66136,64754,66136,66134,66208,66134,66133,66208,66133,66130,66134,66208,64755,66127,66211,66212,66212,66130,66129,66212,66129,66127,66213,66127,66126,66213,66126,66120,66127,66213,66211,66212,66214,66215,66212,66215,66130,66214,66212,66211,66214,61260,66210,66210,66130,66215,66210,66215,66214,66117,66216,66217,66217,66120,66119,66217,66119,66117,66218,66117,66116,66218,66116,66113,66117,66218,66216,66219,66113,66112,66219,66112,66110,66220,66110,66111,66111,66076,66221,66111,66221,66220,66110,66220,66222,66110,66222,66219,66113,66219,66223,66113,66223,66224,66218,66224,66225,66218,66225,66216,66224,66218,66113,66226,66120,66217,66217,66216,66227,66217,66227,66226,66228,66226,66229,66228,66229,66230,66226,66228,66120,66211,66230,66231,66211,66231,66232,66214,66232,66233,66214,66233,61260,66232,66214,66211,66230,66211,66213,66213,66120,66228,66213,66228,66230,66107,66234,66235,66235,66076,66109,66235,66109,66107,66236,66107,66106,66236,66106,66103,66107,66236,66234,66237,66103,66102,66237,66102,66100,66238,66100,66099,66099,66086,66239,66099,66239,66238,66100,66238,66240,66100,66240,66237,66103,66237,66241,66103,66241,66242,66236,66242,66243,66236,66243,66234,66242,66236,66103,66244,66086,66098,66244,66098,66096,66245,66096,66095,66095,66090,66246,66095,66246,66245,66096,66245,66247,66096,66247,66244,66248,66090,66094,66094,66092,66249,66094,66249,66248,66250,66092,66093,66093,62919,66251,66093,66251,66250,66092,66250,66252,66252,66248,66249,66252,66249,66092,66090,66248,66253,66090,66253,66254,66245,66254,66255,66255,66244,66247,66255,66247,66245,66254,66245,66246,66254,66246,66090,66086,66244,66256,66086,66256,66257,66258,66257,66259,66258,66259,66260,66257,66258,66086,66237,66260,66261,66237,66261,66262,66242,66262,66263,66263,66234,66243,66263,66243,66242,66262,66242,66241,66262,66241,66237,66260,66237,66240,66260,66240,66238,66258,66238,66239,66258,66239,66086,66238,66258,66260,66264,66076,66235,66235,66234,66265,66235,66265,66264,66266,66264,66267,66266,66267,66268,66264,66266,66076,66269,66268,66270,66269,66270,66271,66272,66271,66273,66273,66274,66275,66273,66275,66272,66271,66272,66276,66271,66276,66269,66268,66269,66277,66268,66277,66278,66278,66076,66266,66278,66266,66268,66216,66274,66279,66216,66279,66280,66281,66280,66282,66282,66283,66284,66282,66284,66281,66280,66281,66285,66280,66285,66216,66230,66283,66286,66286,66287,66288,66286,66288,66230,66232,66287,66289,66289,61260,66233,66289,66233,66232,66287,66232,66231,66231,66230,66288,66231,66288,66287,66283,66230,66229,66283,66229,66226,66281,66226,66227,66227,66216,66285,66227,66285,66281,66226,66281,66284,66226,66284,66283,66274,66216,66225,66274,66225,66224,66290,66224,66223,66290,66223,66219,66224,66290,66274,66269,66219,66222,66269,66222,66220,66278,66220,66221,66278,66221,66076,66220,66278,66277,66220,66277,66269,66219,66269,66276,66219,66276,66272,66290,66272,66275,66290,66275,66274,66272,66290,66219,66291,66292,66293,66293,66145,66294,66293,66294,66291,66295,66291,66296,66295,66296,44032,66291,66295,66292,66297,66145,66293,66297,66293,66292,66145,66297,66298,66299,66148,66300,66299,66300,66298,66148,66299,66301,66149,66301,66302,66149,66302,62919,66301,66149,66148,66146,66298,66300,66146,66300,66148,66298,66146,66145,66291,66139,66303,66303,44032,66296,66303,66296,66291,66144,66291,66294,66144,66294,66145,66291,66144,66139,44032,66303,66304,66304,44058,64159,66304,64159,44032,66303,66139,66142,66142,44058,66304,66142,66304,66303,63553,61255,66305,66305,66306,66307,66305,66307,63553,66308,66306,66309,66309,66310,66311,66309,66311,66308,66306,66308,66312,66312,63553,66307,66312,66307,66306,66313,66310,66314,66314,66315,66316,66314,66316,66313,66317,66315,66318,66318,66319,66320,66318,66320,66317,66315,66317,66321,66321,66313,66316,66321,66316,66315,66310,66313,66322,66322,66323,66324,66322,66324,66310,66308,66323,66325,66325,63553,66312,66325,66312,66308,66323,66308,66311,66311,66310,66324,66311,66324,66323,66326,66319,66327,66327,66328,66329,66327,66329,66326,66330,66328,66331,66331,66332,66333,66331,66333,66330,66328,66330,66334,66334,66326,66329,66334,66329,66328,66335,66332,66336,66336,66337,66338,66336,66338,66335,66339,66337,66340,66340,66341,66342,66340,66342,66339,66337,66339,66343,66343,66335,66338,66343,66338,66337,66332,66335,66344,66344,66345,66346,66344,66346,66332,66330,66345,66347,66347,66326,66334,66347,66334,66330,66345,66330,66333,66333,66332,66346,66333,66346,66345,66319,66326,66348,66348,66349,66350,66348,66350,66319,66351,66349,66352,66352,66353,66354,66352,66354,66351,66349,66351,66355,66355,66319,66350,66355,66350,66349,66313,66353,66356,66356,66357,66358,66356,66358,66313,66323,66357,66359,66359,63553,66325,66359,66325,66323,66357,66323,66322,66322,66313,66358,66322,66358,66357,66353,66313,66321,66321,66317,66360,66321,66360,66353,66351,66317,66320,66320,66319,66355,66320,66355,66351,66317,66351,66354,66354,66353,66360,66354,66360,66317,66175,66341,66361,66361,66362,66363,66361,66363,66175,66364,66362,66365,66365,66366,66367,66365,66367,66364,66362,66364,66368,66368,66175,66363,66368,66363,66362,66369,66366,66370,66370,66371,66372,66370,66372,66369,66373,66371,66374,66374,66375,66376,66374,66376,66373,66371,66373,66377,66377,66369,66372,66377,66372,66371,66366,66369,66378,66378,66379,66380,66378,66380,66366,66364,66379,66381,66381,66175,66368,66381,66368,66364,66379,66364,66367,66367,66366,66380,66367,66380,66379,66191,66375,66382,66382,66383,66384,66382,66384,66191,66385,66383,66386,66386,66387,66388,66386,66388,66385,66383,66385,66389,66389,66191,66384,66389,66384,66383,66197,66387,66390,66390,66391,66392,66390,66392,66197,66199,66391,66393,66393,43854,66200,66393,66200,66199,66391,66199,66198,66198,66197,66392,66198,66392,66391,66387,66197,66196,66196,66194,66394,66196,66394,66387,66385,66194,66193,66193,66191,66389,66193,66389,66385,66194,66385,66388,66388,66387,66394,66388,66394,66194,66375,66191,66190,66190,66188,66395,66190,66395,66375,66396,66188,66187,66187,66185,66397,66187,66397,66396,66188,66396,66398,66398,66375,66395,66398,66395,66188,66369,66185,66184,66184,66182,66399,66184,66399,66369,66379,66182,66181,66181,66175,66381,66181,66381,66379,66182,66379,66378,66378,66369,66399,66378,66399,66182,66185,66369,66377,66377,66373,66400,66377,66400,66185,66396,66373,66376,66376,66375,66398,66376,66398,66396,66373,66396,66397,66397,66185,66400,66397,66400,66373,66341,66175,66174,66174,66172,66401,66174,66401,66341,66402,66172,66171,66171,66169,66403,66171,66403,66402,66172,66402,66404,66404,66341,66401,66404,66401,66172,66405,66169,66168,66168,66166,66406,66168,66406,66405,66407,66166,66165,66165,66162,66408,66165,66408,66407,66166,66407,66409,66409,66405,66406,66409,66406,66166,66169,66405,66410,66410,66411,66412,66410,66412,66169,66402,66411,66413,66413,66341,66404,66413,66404,66402,66411,66402,66403,66403,66169,66412,66403,66412,66411,66326,66162,66161,66161,66159,66414,66161,66414,66326,66415,66159,66158,66158,66156,66416,66158,66416,66415,66159,66415,66417,66417,66326,66414,66417,66414,66159,66353,66156,66155,66155,66151,66418,66155,66418,66353,66357,66151,66153,66153,63553,66359,66153,66359,66357,66151,66357,66356,66356,66353,66418,66356,66418,66151,66156,66353,66352,66352,66349,66419,66352,66419,66156,66415,66349,66348,66348,66326,66417,66348,66417,66415,66349,66415,66416,66416,66156,66419,66416,66419,66349,66162,66326,66347,66347,66345,66420,66347,66420,66162,66421,66345,66344,66344,66335,66422,66344,66422,66421,66345,66421,66423,66423,66162,66420,66423,66420,66345,66405,66335,66343,66343,66339,66424,66343,66424,66405,66411,66339,66342,66342,66341,66413,66342,66413,66411,66339,66411,66410,66410,66405,66424,66410,66424,66339,66335,66405,66409,66409,66407,66425,66409,66425,66335,66421,66407,66408,66408,66162,66423,66408,66423,66421,66407,66421,66422,66422,66335,66425,66422,66425,66407,66426,61260,66289,66289,66287,66427,66289,66427,66426,66428,66287,66286,66286,66283,66429,66286,66429,66428,66287,66428,66430,66430,66426,66427,66430,66427,66287,66431,66283,66282,66282,66280,66432,66282,66432,66431,66433,66280,66279,66279,66274,66434,66279,66434,66433,66280,66433,66435,66435,66431,66432,66435,66432,66280,66283,66431,66436,66436,66437,66438,66436,66438,66283,66428,66437,66439,66439,66426,66430,66439,66430,66428,66437,66428,66429,66429,66283,66438,66429,66438,66437,66440,66274,66273,66273,66271,66441,66273,66441,66440,66442,66271,66270,66270,66268,66443,66270,66443,66442,66271,66442,66444,66444,66440,66441,66444,66441,66271,66445,66268,66267,66267,66264,66446,66267,66446,66445,66447,66264,66265,66265,66234,66448,66265,66448,66447,66264,66447,66449,66449,66445,66446,66449,66446,66264,66268,66445,66450,66450,66451,66452,66450,66452,66268,66442,66451,66453,66453,66440,66444,66453,66444,66442,66451,66442,66443,66443,66268,66452,66443,66452,66451,66274,66440,66454,66454,66455,66456,66454,66456,66274,66457,66455,66458,66458,66459,66460,66458,66460,66457,66455,66457,66461,66461,66274,66456,66461,66456,66455,66431,66459,66462,66462,66463,66464,66462,66464,66431,66437,66463,66465,66465,66426,66439,66465,66439,66437,66463,66437,66436,66436,66431,66464,66436,66464,66463,66459,66431,66435,66435,66433,66466,66435,66466,66459,66457,66433,66434,66434,66274,66461,66434,66461,66457,66433,66457,66460,66460,66459,66466,66460,66466,66433,66467,66234,66263,66263,66262,66468,66263,66468,66467,66469,66262,66261,66261,66260,66470,66261,66470,66469,66262,66469,66471,66471,66467,66468,66471,66468,66262,66472,66260,66259,66259,66257,66473,66259,66473,66472,66474,66257,66256,66256,66244,66475,66256,66475,66474,66257,66474,66476,66476,66472,66473,66476,66473,66257,66260,66472,66477,66477,66478,66479,66477,66479,66260,66469,66478,66480,66480,66467,66471,66480,66471,66469,66478,66469,66470,66470,66260,66479,66470,66479,66478,66481,66244,66255,66255,66254,66482,66255,66482,66481,66483,66254,66253,66253,66248,66484,66253,66484,66483,66254,66483,66485,66485,66481,66482,66485,66482,66254,66486,66248,66252,66252,66250,66487,66252,66487,66486,66488,66250,66251,66251,62919,66489,66251,66489,66488,66250,66488,66490,66490,66486,66487,66490,66487,66250,66248,66486,66491,66491,66492,66493,66491,66493,66248,66483,66492,66494,66494,66481,66485,66494,66485,66483,66492,66483,66484,66484,66248,66493,66484,66493,66492,66244,66481,66495,66495,66496,66497,66495,66497,66244,66498,66496,66499,66499,66500,66501,66499,66501,66498,66496,66498,66502,66502,66244,66497,66502,66497,66496,66472,66500,66503,66503,66504,66505,66503,66505,66472,66478,66504,66506,66506,66467,66480,66506,66480,66478,66504,66478,66477,66477,66472,66505,66477,66505,66504,66500,66472,66476,66476,66474,66507,66476,66507,66500,66498,66474,66475,66475,66244,66502,66475,66502,66498,66474,66498,66501,66501,66500,66507,66501,66507,66474,66234,66467,66508,66508,66509,66510,66508,66510,66234,66511,66509,66512,66512,66513,66514,66512,66514,66511,66509,66511,66515,66515,66234,66510,66515,66510,66509,66516,66513,66517,66517,66518,66519,66517,66519,66516,66520,66518,66521,66521,66522,66523,66521,66523,66520,66518,66520,66524,66524,66516,66519,66524,66519,66518,66513,66516,66525,66525,66526,66527,66525,66527,66513,66511,66526,66528,66528,66234,66515,66528,66515,66511,66526,66511,66514,66514,66513,66527,66514,66527,66526,66440,66522,66529,66529,66530,66531,66529,66531,66440,66532,66530,66533,66533,66534,66535,66533,66535,66532,66530,66532,66536,66536,66440,66531,66536,66531,66530,66459,66534,66537,66537,66538,66539,66537,66539,66459,66463,66538,66540,66540,66426,66465,66540,66465,66463,66538,66463,66462,66462,66459,66539,66462,66539,66538,66534,66459,66458,66458,66455,66541,66458,66541,66534,66532,66455,66454,66454,66440,66536,66454,66536,66532,66455,66532,66535,66535,66534,66541,66535,66541,66455,66522,66440,66453,66453,66451,66542,66453,66542,66522,66543,66451,66450,66450,66445,66544,66450,66544,66543,66451,66543,66545,66545,66522,66542,66545,66542,66451,66516,66445,66449,66449,66447,66546,66449,66546,66516,66526,66447,66448,66448,66234,66528,66448,66528,66526,66447,66526,66525,66525,66516,66546,66525,66546,66447,66445,66516,66524,66524,66520,66547,66524,66547,66445,66543,66520,66523,66523,66522,66545,66523,66545,66543,66520,66543,66544,66544,66445,66547,66544,66547,66520,66548,64824,66549,66549,66550,66551,66549,66551,66548,64826,66548,66552,64826,66552,44032,66548,64826,64824,64823,66553,66554,64823,66554,64824,66553,64823,43902,66553,66550,66549,66549,64824,66554,66549,66554,66553,66555,66556,66557,66555,66557,66558,66556,66555,66550,66556,66559,66560,66560,66558,66557,66560,66557,66556,66548,66558,66561,66561,44032,66552,66561,66552,66548,66555,66548,66551,66555,66551,66550,66548,66555,66558,66562,66563,66564,66562,66564,66559,66563,66562,66565,66563,66298,66566,66566,66559,66564,66566,66564,66563,66301,66565,66567,66567,62919,66302,66567,66302,66301,66563,66301,66299,66563,66299,66298,66301,66563,66565,66292,66558,66568,66568,66298,66297,66568,66297,66292,66561,66292,66295,66561,66295,44032,66292,66561,66558,66566,66568,66569,66566,66569,66559,66568,66566,66298,66568,66558,66560,66560,66559,66569,66560,66569,66568,61255,61259,66570,61255,66570,66571,66572,66571,66573,66572,66573,66574,66571,66572,61255,66575,66574,66576,66575,66576,66577,66578,66577,66579,66579,66580,66581,66579,66581,66578,66577,66578,66582,66577,66582,66575,66574,66575,66583,66574,66583,66584,66572,66584,66585,66572,66585,61255,66584,66572,66574,66586,66580,66587,66586,66587,66588,66589,66588,66590,66590,66591,66592,66590,66592,66589,66588,66589,66593,66588,66593,66586,66594,66591,66595,66595,66596,66597,66595,66597,66594,66598,66596,66599,66599,66600,66601,66599,66601,66598,66596,66598,66602,66602,66594,66597,66602,66597,66596,66591,66594,66603,66591,66603,66604,66589,66604,66605,66605,66586,66593,66605,66593,66589,66604,66589,66592,66604,66592,66591,66580,66586,66606,66580,66606,66607,66608,66607,66609,66608,66609,66610,66607,66608,66580,66575,66610,66611,66575,66611,66612,66584,66612,66613,66613,61255,66585,66613,66585,66584,66612,66584,66583,66612,66583,66575,66610,66575,66582,66610,66582,66578,66608,66578,66581,66608,66581,66580,66578,66608,66610,66341,66600,66614,66341,66614,66615,66616,66615,66617,66617,66618,66619,66617,66619,66616,66615,66616,66620,66615,66620,66341,66621,66618,66622,66622,66623,66624,66622,66624,66621,66625,66623,66626,66626,66627,66628,66626,66628,66625,66623,66625,66629,66629,66621,66624,66629,66624,66623,66618,66621,66630,66630,66631,66632,66630,66632,66618,66616,66631,66633,66633,66341,66620,66633,66620,66616,66631,66616,66619,66619,66618,66632,66619,66632,66631,66375,66627,66634,66634,66635,66636,66634,66636,66375,66637,66635,66638,66638,66639,66640,66638,66640,66637,66635,66637,66641,66641,66375,66636,66641,66636,66635,66387,66639,66642,66642,66643,66644,66642,66644,66387,66391,66643,66645,66645,43854,66393,66645,66393,66391,66643,66391,66390,66390,66387,66644,66390,66644,66643,66639,66387,66386,66386,66383,66646,66386,66646,66639,66637,66383,66382,66382,66375,66641,66382,66641,66637,66383,66637,66640,66640,66639,66646,66640,66646,66383,66627,66375,66374,66374,66371,66647,66374,66647,66627,66648,66371,66370,66370,66366,66649,66370,66649,66648,66371,66648,66650,66650,66627,66647,66650,66647,66371,66621,66366,66365,66365,66362,66651,66365,66651,66621,66631,66362,66361,66361,66341,66633,66361,66633,66631,66362,66631,66630,66630,66621,66651,66630,66651,66362,66366,66621,66629,66629,66625,66652,66629,66652,66366,66648,66625,66628,66628,66627,66650,66628,66650,66648,66625,66648,66649,66649,66366,66652,66649,66652,66625,66600,66341,66340,66600,66340,66337,66653,66337,66336,66336,66332,66654,66336,66654,66653,66337,66653,66655,66337,66655,66600,66656,66332,66331,66331,66328,66657,66331,66657,66656,66658,66328,66327,66327,66319,66659,66327,66659,66658,66328,66658,66660,66660,66656,66657,66660,66657,66328,66332,66656,66661,66332,66661,66662,66653,66662,66663,66663,66600,66655,66663,66655,66653,66662,66653,66654,66662,66654,66332,66586,66319,66318,66318,66315,66664,66318,66664,66586,66665,66315,66314,66314,66310,66666,66314,66666,66665,66315,66665,66667,66667,66586,66664,66667,66664,66315,66610,66310,66309,66309,66306,66668,66309,66668,66610,66612,66306,66305,66305,61255,66613,66305,66613,66612,66306,66612,66611,66611,66610,66668,66611,66668,66306,66310,66610,66609,66609,66607,66669,66609,66669,66310,66665,66607,66606,66606,66586,66667,66606,66667,66665,66607,66665,66666,66666,66310,66669,66666,66669,66607,66319,66586,66605,66319,66605,66604,66670,66604,66603,66603,66594,66671,66603,66671,66670,66604,66670,66672,66604,66672,66319,66656,66594,66602,66602,66598,66673,66602,66673,66656,66662,66598,66601,66601,66600,66663,66601,66663,66662,66598,66662,66661,66661,66656,66673,66661,66673,66598,66594,66656,66660,66660,66658,66674,66660,66674,66594,66670,66658,66659,66659,66319,66672,66659,66672,66670,66658,66670,66671,66671,66594,66674,66671,66674,66658,66675,66426,66540,66540,66538,66676,66540,66676,66675,66677,66538,66537,66537,66534,66678,66537,66678,66677,66538,66677,66679,66679,66675,66676,66679,66676,66538,66680,66534,66533,66533,66530,66681,66533,66681,66680,66682,66530,66529,66529,66522,66683,66529,66683,66682,66530,66682,66684,66684,66680,66681,66684,66681,66530,66534,66680,66685,66685,66686,66687,66685,66687,66534,66677,66686,66688,66688,66675,66679,66688,66679,66677,66686,66677,66678,66678,66534,66687,66678,66687,66686,66689,66522,66521,66521,66518,66690,66521,66690,66689,66691,66518,66517,66517,66513,66692,66517,66692,66691,66518,66691,66693,66693,66689,66690,66693,66690,66518,66694,66513,66512,66512,66509,66695,66512,66695,66694,66696,66509,66508,66508,66467,66697,66508,66697,66696,66509,66696,66698,66698,66694,66695,66698,66695,66509,66513,66694,66699,66699,66700,66701,66699,66701,66513,66691,66700,66702,66702,66689,66693,66702,66693,66691,66700,66691,66692,66692,66513,66701,66692,66701,66700,66522,66689,66703,66703,66704,66705,66703,66705,66522,66706,66704,66707,66707,66708,66709,66707,66709,66706,66704,66706,66710,66710,66522,66705,66710,66705,66704,66680,66708,66711,66711,66712,66713,66711,66713,66680,66686,66712,66714,66714,66675,66688,66714,66688,66686,66712,66686,66685,66685,66680,66713,66685,66713,66712,66708,66680,66684,66684,66682,66715,66684,66715,66708,66706,66682,66683,66683,66522,66710,66683,66710,66706,66682,66706,66709,66709,66708,66715,66709,66715,66682,66716,66467,66506,66506,66504,66717,66506,66717,66716,66718,66504,66503,66503,66500,66719,66503,66719,66718,66504,66718,66720,66720,66716,66717,66720,66717,66504,66721,66500,66499,66499,66496,66722,66499,66722,66721,66723,66496,66495,66495,66481,66724,66495,66724,66723,66496,66723,66725,66725,66721,66722,66725,66722,66496,66500,66721,66726,66726,66727,66728,66726,66728,66500,66718,66727,66729,66729,66716,66720,66729,66720,66718,66727,66718,66719,66719,66500,66728,66719,66728,66727,66730,66481,66494,66494,66492,66731,66494,66731,66730,66732,66492,66491,66491,66486,66733,66491,66733,66732,66492,66732,66734,66734,66730,66731,66734,66731,66492,66735,66486,66490,66490,66488,66736,66490,66736,66735,66737,66488,66489,66489,62919,66738,66489,66738,66737,66488,66737,66739,66739,66735,66736,66739,66736,66488,66486,66735,66740,66740,66741,66742,66740,66742,66486,66732,66741,66743,66743,66730,66734,66743,66734,66732,66741,66732,66733,66733,66486,66742,66733,66742,66741,66481,66730,66744,66744,66745,66746,66744,66746,66481,66747,66745,66748,66748,66749,66750,66748,66750,66747,66745,66747,66751,66751,66481,66746,66751,66746,66745,66721,66749,66752,66752,66753,66754,66752,66754,66721,66727,66753,66755,66755,66716,66729,66755,66729,66727,66753,66727,66726,66726,66721,66754,66726,66754,66753,66749,66721,66725,66725,66723,66756,66725,66756,66749,66747,66723,66724,66724,66481,66751,66724,66751,66747,66723,66747,66750,66750,66749,66756,66750,66756,66723,66467,66716,66757,66757,66758,66759,66757,66759,66467,66760,66758,66761,66761,66762,66763,66761,66763,66760,66758,66760,66764,66764,66467,66759,66764,66759,66758,66765,66762,66766,66766,66767,66768,66766,66768,66765,66769,66767,66770,66770,66771,66772,66770,66772,66769,66767,66769,66773,66773,66765,66768,66773,66768,66767,66762,66765,66774,66774,66775,66776,66774,66776,66762,66760,66775,66777,66777,66467,66764,66777,66764,66760,66775,66760,66763,66763,66762,66776,66763,66776,66775,66689,66771,66778,66778,66779,66780,66778,66780,66689,66781,66779,66782,66782,66783,66784,66782,66784,66781,66779,66781,66785,66785,66689,66780,66785,66780,66779,66708,66783,66786,66786,66787,66788,66786,66788,66708,66712,66787,66789,66789,66675,66714,66789,66714,66712,66787,66712,66711,66711,66708,66788,66711,66788,66787,66783,66708,66707,66707,66704,66790,66707,66790,66783,66781,66704,66703,66703,66689,66785,66703,66785,66781,66704,66781,66784,66784,66783,66790,66784,66790,66704,66771,66689,66702,66702,66700,66791,66702,66791,66771,66792,66700,66699,66699,66694,66793,66699,66793,66792,66700,66792,66794,66794,66771,66791,66794,66791,66700,66765,66694,66698,66698,66696,66795,66698,66795,66765,66775,66696,66697,66697,66467,66777,66697,66777,66775,66696,66775,66774,66774,66765,66795,66774,66795,66696,66694,66765,66773,66773,66769,66796,66773,66796,66694,66792,66769,66772,66772,66771,66794,66772,66794,66792,66769,66792,66793,66793,66694,66796,66793,66796,66769,66797,66798,66799,66797,66799,64058,66798,66797,66800,66799,43902,64059,66799,64059,64058,43902,66799,66798,66801,64058,64057,66801,64057,43854,64058,66801,66802,66797,66802,66803,66797,66803,66800,66802,66797,64058,66804,66800,66805,66805,66806,66807,66805,66807,66804,66808,66798,66809,66808,66809,66804,66798,66808,43902,66800,66804,66809,66800,66809,66798,66559,66806,66810,66810,66811,66812,66810,66812,66559,66565,66811,66813,66813,62919,66567,66813,66567,66565,66811,66565,66562,66562,66559,66812,66562,66812,66811,66806,66559,66556,66556,66550,66814,66556,66814,66806,66804,66550,66553,66553,43902,66808,66553,66808,66804,66550,66804,66807,66807,66806,66814,66807,66814,66550,61259,66675,66815,61259,66815,66816,66817,66816,66818,66818,66819,66820,66818,66820,66817,66816,66817,66821,66816,66821,61259,66822,66819,66823,66823,66824,66825,66823,66825,66822,66826,66824,66827,66827,66828,66829,66827,66829,66826,66824,66826,66830,66830,66822,66825,66830,66825,66824,66819,66822,66831,66831,66832,66833,66831,66833,66819,66817,66832,66834,66834,61259,66821,66834,66821,66817,66832,66817,66820,66820,66819,66833,66820,66833,66832,66835,66828,66836,66836,66837,66838,66836,66838,66835,66839,66837,66840,66840,66841,66842,66840,66842,66839,66837,66839,66843,66843,66835,66838,66843,66838,66837,66844,66841,66845,66845,66846,66847,66845,66847,66844,66848,66846,66849,66849,66850,66851,66849,66851,66848,66846,66848,66852,66852,66844,66847,66852,66847,66846,66841,66844,66853,66853,66854,66855,66853,66855,66841,66839,66854,66856,66856,66835,66843,66856,66843,66839,66854,66839,66842,66842,66841,66855,66842,66855,66854,66828,66835,66857,66857,66858,66859,66857,66859,66828,66860,66858,66861,66861,66862,66863,66861,66863,66860,66858,66860,66864,66864,66828,66859,66864,66859,66858,66822,66862,66865,66865,66866,66867,66865,66867,66822,66832,66866,66868,66868,61259,66834,66868,66834,66832,66866,66832,66831,66831,66822,66867,66831,66867,66866,66862,66822,66830,66830,66826,66869,66830,66869,66862,66860,66826,66829,66829,66828,66864,66829,66864,66860,66826,66860,66863,66863,66862,66869,66863,66869,66826,66600,66850,66870,66870,66871,66872,66870,66872,66600,66873,66871,66874,66874,66875,66876,66874,66876,66873,66871,66873,66877,66877,66600,66872,66877,66872,66871,66878,66875,66879,66879,66880,66881,66879,66881,66878,66882,66880,66883,66883,66884,66885,66883,66885,66882,66880,66882,66886,66886,66878,66881,66886,66881,66880,66875,66878,66887,66887,66888,66889,66887,66889,66875,66873,66888,66890,66890,66600,66877,66890,66877,66873,66888,66873,66876,66876,66875,66889,66876,66889,66888,66627,66884,66891,66891,66892,66893,66891,66893,66627,66894,66892,66895,66895,66896,66897,66895,66897,66894,66892,66894,66898,66898,66627,66893,66898,66893,66892,66639,66896,66899,66899,66900,66901,66899,66901,66639,66643,66900,66902,66902,43854,66645,66902,66645,66643,66900,66643,66642,66642,66639,66901,66642,66901,66900,66896,66639,66638,66638,66635,66903,66638,66903,66896,66894,66635,66634,66634,66627,66898,66634,66898,66894,66635,66894,66897,66897,66896,66903,66897,66903,66635,66884,66627,66626,66626,66623,66904,66626,66904,66884,66905,66623,66622,66622,66618,66906,66622,66906,66905,66623,66905,66907,66907,66884,66904,66907,66904,66623,66878,66618,66617,66617,66615,66908,66617,66908,66878,66888,66615,66614,66614,66600,66890,66614,66890,66888,66615,66888,66887,66887,66878,66908,66887,66908,66615,66618,66878,66886,66886,66882,66909,66886,66909,66618,66905,66882,66885,66885,66884,66907,66885,66907,66905,66882,66905,66906,66906,66618,66909,66906,66909,66882,66850,66600,66599,66599,66596,66910,66599,66910,66850,66911,66596,66595,66595,66591,66912,66595,66912,66911,66596,66911,66913,66913,66850,66910,66913,66910,66596,66914,66591,66590,66590,66588,66915,66590,66915,66914,66916,66588,66587,66587,66580,66917,66587,66917,66916,66588,66916,66918,66918,66914,66915,66918,66915,66588,66591,66914,66919,66919,66920,66921,66919,66921,66591,66911,66920,66922,66922,66850,66913,66922,66913,66911,66920,66911,66912,66912,66591,66921,66912,66921,66920,66835,66580,66579,66579,66577,66923,66579,66923,66835,66924,66577,66576,66576,66574,66925,66576,66925,66924,66577,66924,66926,66926,66835,66923,66926,66923,66577,66862,66574,66573,66573,66571,66927,66573,66927,66862,66866,66571,66570,66570,61259,66868,66570,66868,66866,66571,66866,66865,66865,66862,66927,66865,66927,66571,66574,66862,66861,66861,66858,66928,66861,66928,66574,66924,66858,66857,66857,66835,66926,66857,66926,66924,66858,66924,66925,66925,66574,66928,66925,66928,66858,66580,66835,66856,66856,66854,66929,66856,66929,66580,66930,66854,66853,66853,66844,66931,66853,66931,66930,66854,66930,66932,66932,66580,66929,66932,66929,66854,66914,66844,66852,66852,66848,66933,66852,66933,66914,66920,66848,66851,66851,66850,66922,66851,66922,66920,66848,66920,66919,66919,66914,66933,66919,66933,66848,66844,66914,66918,66918,66916,66934,66918,66934,66844,66930,66916,66917,66917,66580,66932,66917,66932,66930,66916,66930,66931,66931,66844,66934,66931,66934,66916,66935,66936,66937,66937,66884,66938,66937,66938,66935,66939,66935,66940,66939,66940,66716,66935,66939,66936,66941,66942,66943,66941,66943,66936,66942,66941,66944,66937,66942,66945,66937,66945,66884,66937,66936,66943,66937,66943,66942,66946,66896,66947,66946,66947,66944,66946,66948,66949,66946,66949,66896,66900,66948,66950,66950,43854,66902,66950,66902,66900,66948,66900,66899,66899,66896,66949,66899,66949,66948,66951,66947,66952,66951,66952,66892,66947,66951,66944,66947,66896,66895,66895,66892,66952,66895,66952,66947,66942,66892,66891,66891,66884,66945,66891,66945,66942,66942,66944,66951,66942,66951,66892,66953,66954,66955,66953,66955,66935,66956,66953,66957,66956,66957,66875,66953,66956,66954,66940,66954,66958,66940,66958,66716,66940,66935,66955,66940,66955,66954,66959,66938,66960,66959,66960,66880,66938,66959,66935,66938,66884,66883,66883,66880,66960,66883,66960,66938,66953,66880,66879,66879,66875,66957,66879,66957,66953,66953,66935,66959,66953,66959,66880,66961,66871,66962,66961,66962,66963,66961,66875,66874,66961,66874,66871,66964,66871,66870,66964,66870,66850,66964,66963,66962,66964,66962,66871,66965,66954,66966,66965,66966,66963,66965,66716,66958,66965,66958,66954,66961,66954,66956,66961,66956,66875,66961,66963,66966,66961,66966,66954,66967,66841,66968,66967,66968,66771,66841,66967,66969,66846,66969,66970,66970,66850,66849,66970,66849,66846,66969,66846,66845,66969,66845,66841,66968,66837,66971,66968,66971,66771,66968,66841,66840,66968,66840,66837,66972,66837,66836,66972,66836,66828,66972,66771,66971,66972,66971,66837,66824,66783,66973,66973,66828,66827,66973,66827,66824,66783,66824,66823,66783,66823,66819,66787,66819,66818,66787,66818,66816,66789,66816,66815,66789,66815,66675,66816,66789,66787,66819,66787,66786,66819,66786,66783,66779,66828,66973,66973,66783,66782,66973,66782,66779,66972,66779,66778,66972,66778,66771,66779,66972,66828,66970,66974,66975,66970,66975,66850,66974,66970,66969,66974,66762,66976,66976,66850,66975,66976,66975,66974,66767,66969,66967,66967,66771,66770,66967,66770,66767,66974,66767,66766,66974,66766,66762,66767,66974,66969,66758,66963,66977,66977,66762,66761,66977,66761,66758,66965,66758,66757,66965,66757,66716,66758,66965,66963,66977,66964,66978,66977,66978,66762,66964,66977,66963,66964,66850,66976,66976,66762,66978,66976,66978,66964,66979,66948,66980,66980,66981,66982,66980,66982,66979,66950,66979,66983,66950,66983,43854,66979,66950,66948,66946,66984,66985,66946,66985,66948,66984,66946,66944,66984,66981,66980,66980,66948,66985,66980,66985,66984,66986,66987,66988,66986,66988,66989,66987,66986,66981,66987,66730,66990,66990,66989,66988,66990,66988,66987,66979,66989,66991,66991,43854,66983,66991,66983,66979,66986,66979,66982,66986,66982,66981,66979,66986,66989,66941,66992,66993,66941,66993,66944,66992,66941,66936,66992,66749,66994,66994,66944,66993,66994,66993,66992,66753,66936,66939,66939,66716,66755,66939,66755,66753,66992,66753,66752,66992,66752,66749,66753,66992,66936,66745,66981,66995,66995,66749,66748,66995,66748,66745,66987,66745,66744,66987,66744,66730,66745,66987,66981,66995,66984,66996,66995,66996,66749,66984,66995,66981,66984,66944,66994,66994,66749,66996,66994,66996,66984,66997,66998,66999,66997,66999,67000,66998,66997,66735,66998,66806,67001,67001,67000,66999,67001,66999,66998,66741,67000,67002,67002,66730,66743,67002,66743,66741,66997,66741,66740,66997,66740,66735,66741,66997,67000,66737,66811,67003,67003,66735,66739,67003,66739,66737,66813,66737,66738,66813,66738,62919,66737,66813,66811,67003,66810,67004,67003,67004,66735,66810,67003,66811,66810,66806,66998,66998,66735,67004,66998,67004,66810,67005,67000,67006,67006,66800,67007,67006,67007,67005,67002,67005,67008,67002,67008,66730,67005,67002,67000,67001,66805,67009,67001,67009,67000,66805,67001,66806,66805,66800,67006,67006,67000,67009,67006,67009,66805,67010,66802,67011,67010,67011,66989,67010,66800,66803,67010,66803,66802,66991,66802,66801,66991,66801,43854,66991,66989,67011,66991,67011,66802,67005,66989,66990,66990,66730,67008,66990,67008,67005,67010,67005,67007,67010,67007,66800,67005,67010,66989,67012,67013,67014,67014,67015,67016,67016,67017,67018,67018,67019,67020,67020,67021,67022,67023,67024,67025,67025,67026,67027,67028,67029,67030,67031,67032,67033,67033,67034,67035,67036,67037,67038,67038,67039,67040,67040,67041,67042,67042,67043,67044,67012,67014,67016,67016,67018,67020,67020,67022,67045,67023,67025,67027,67028,67030,67031,67031,67033,67035,67036,67038,67040,67040,67042,67044,67044,67012,67016,67016,67020,67045,67045,67023,67027,67028,67031,67035,67046,67036,67040,67016,67045,67027,67028,67035,67046,67046,67040,67044,67016,67027,67047,67046,67044,67016,67016,67047,67028,67028,67046,67016,67048,67049,67050,67050,67051,67052,67052,67053,67054,67055,67056,67057,67057,67058,67059,67059,67060,67061,67062,67063,67064,67065,67066,67067,67067,67068,67069,67070,67071,67072,67072,67073,67074,67074,67075,67076,67077,67078,67079,67079,67080,67081,67082,67083,67084,67084,67085,67086,67086,67087,67088,67088,67089,67090,67091,67092,67093,67094,67095,67096,67096,67097,67098,67099,67100,67101,67048,67050,67052,67052,67054,67102,67055,67057,67059,67059,67061,67062,67062,67064,67065,67065,67067,67069,67070,67072,67074,67077,67079,67081,67082,67084,67086,67086,67088,67090,67091,67093,67103,67104,67094,67096,67096,67098,67099,67099,67101,67048,67048,67052,67102,67055,67059,67062,67062,67065,67069,67070,67074,67076,67077,67081,67082,67082,67086,67090,67091,67103,67104,67104,67096,67099,67099,67048,67102,67105,67055,67062,67062,67069,67106,67070,67076,67077,67077,67082,67090,67091,67104,67099,67099,67102,67105,67105,67062,67106,67070,67077,67090,67091,67099,67105,67105,67106,67107,67107,67070,67090,67108,67091,67105,67107,67090,67109,67109,67108,67105,67105,67107,67109,67110,67111,67112,67113,67114,67115,67116,67117,67118,67118,67119,67120,67120,67121,67122,67122,67123,67124,67125,67126,67127,67127,67128,67129,67130,67131,67132,67133,67134,67135,67136,67137,67138,67138,67139,67140,67141,67142,67143,67143,67144,67145,67145,67146,67147,67148,67149,67150,67150,67151,67152,67153,67154,67155,67155,67156,67157,67158,67159,67160,67161,67162,67163,67164,67165,67166,67166,67167,67168,67168,67169,67170,67171,67172,67173,67173,67174,67175,67175,67176,67177,67177,67178,67179,67179,67180,67181,67181,67182,67183,67183,67184,67185,67186,67187,67188,67188,67189,67190,67191,67192,67193,67194,67195,67196,67197,67198,67199,67200,67201,67202,67202,67203,67204,67204,67205,67206,67207,67208,67209,67210,67211,67212,67212,67213,67214,67215,67216,67217,67217,67218,67219,67220,67221,67222,67222,67223,67224,67224,67225,67226,67227,67228,67229,67229,67230,67231,67231,67232,67233,67234,67235,67236,67236,67237,67238,67239,67240,67241,67241,67242,67243,67244,67245,67246,67246,67247,67248,67248,67249,67250,67250,67251,67252,67253,67254,67255,67255,67256,67257,67257,67258,67259,67260,67261,67262,67263,67264,67265,67265,67266,67267,67268,67269,67270,67270,67271,67272,67272,67273,67274,67110,67112,67113,67113,67115,67116,67116,67118,67120,67120,67122,67124,67125,67127,67129,67130,67132,67275,67133,67135,67276,67141,67143,67145,67145,67147,67277,67148,67150,67152,67155,67157,67278,67278,67158,67160,67161,67163,67279,67164,67166,67168,67168,67170,67280,67171,67173,67175,67175,67177,67179,67183,67185,67186,67186,67188,67190,67191,67193,67281,67194,67196,67282,67197,67199,67200,67200,67202,67204,67204,67206,67283,67207,67209,67210,67210,67212,67214,67215,67217,67219,67220,67222,67224,67224,67226,67284,67227,67229,67231,67234,67236,67238,67239,67241,67243,67244,67246,67248,67248,67250,67252,67253,67255,67257,67260,67262,67285,67285,67263,67265,67265,67267,67268,67268,67270,67272,67272,67274,67286,67286,67110,67113,67113,67116,67120,67120,67124,67125,67125,67129,67287,67130,67275,67133,67133,67276,67136,67140,67141,67145,67148,67152,67288,67153,67155,67278,67278,67160,67161,67161,67279,67164,67164,67168,67280,67171,67175,67179,67183,67186,67190,67289,67191,67281,67281,67194,67282,67197,67200,67204,67204,67283,67290,67207,67210,67214,67214,67215,67219,67291,67220,67224,67227,67231,67233,67234,67238,67292,67239,67243,67293,67244,67248,67252,67294,67253,67257,67265,67268,67272,67272,67286,67113,67113,67120,67125,67125,67287,67130,67130,67133,67136,67140,67145,67277,67295,67148,67288,67288,67153,67278,67278,67161,67164,67164,67280,67296,67296,67171,67179,67183,67190,67297,67289,67281,67282,67282,67197,67204,67204,67290,67207,67207,67214,67219,67291,67224,67284,67227,67233,67234,67234,67292,67298,67239,67293,67244,67244,67252,67299,67294,67257,67259,67265,67272,67113,67113,67125,67130,67138,67140,67277,67295,67288,67278,67296,67179,67181,67183,67297,67289,67289,67282,67204,67204,67207,67219,67291,67284,67227,67234,67298,67239,67239,67244,67299,67299,67294,67259,67285,67265,67113,67113,67130,67136,67138,67277,67300,67295,67278,67164,67164,67296,67181,67289,67204,67219,67291,67227,67234,67234,67239,67299,67299,67259,67260,67285,67113,67136,67138,67300,67295,67295,67164,67181,67183,67289,67219,67260,67285,67136,67138,67295,67181,67183,67219,67291,67299,67260,67136,67138,67181,67301,67138,67301,67136,67183,67291,67234,67299,67136,67302,67299,67302,67234,67181,67183,67303,67303,67136,67301,67303,67301,67181,67303,67234,67302,67303,67302,67136,67234,67303,67183,67304,67305,67306,67306,67307,67308,67309,67310,67311,67312,67313,67314,67314,67315,67316,67317,67318,67319,67320,67321,67322,67322,67323,67324,67324,67325,67326,67326,67327,67328,67328,67329,67330,67330,67331,67332,67333,67334,67335,67336,67337,67338,67339,67340,67341,67341,67342,67343,67343,67344,67345,67345,67346,67347,67347,67348,67349,67349,67350,67351,67351,67352,67353,67354,67355,67356,67357,67358,67359,67359,67360,67361,67362,67363,67364,67365,67366,67367,67368,67369,67370,67370,67371,67372,67373,67374,67375,67375,67376,67377,67378,67379,67380,67381,67382,67383,67383,67384,67385,67386,67387,67388,67388,67389,67390,67390,67391,67392,67393,67394,67395,67395,67396,67397,67398,67399,67400,67400,67401,67402,67403,67404,67405,67405,67406,67407,67408,67409,67410,67411,67412,67413,67413,67414,67415,67416,67417,67418,67419,67420,67421,67422,67423,67424,67424,67425,67426,67427,67428,67429,67429,67430,67431,67432,67433,67434,67434,67435,67436,67304,67306,67308,67309,67311,67437,67437,67312,67314,67314,67316,67317,67320,67322,67324,67324,67326,67328,67330,67332,67333,67333,67335,67438,67439,67336,67338,67339,67341,67343,67343,67345,67347,67347,67349,67351,67351,67353,67354,67354,67356,67440,67357,67359,67361,67362,67364,67441,67365,67367,67368,67368,67370,67372,67373,67375,67377,67378,67380,67442,67381,67383,67385,67385,67386,67388,67390,67392,67393,67393,67395,67397,67398,67400,67402,67403,67405,67407,67408,67410,67411,67413,67415,67416,67422,67424,67426,67427,67429,67431,67443,67432,67434,67434,67436,67444,67304,67308,67445,67309,67437,67314,67314,67317,67319,67320,67324,67328,67333,67438,67446,67439,67338,67447,67448,67339,67343,67343,67347,67351,67357,67361,67362,67365,67368,67372,67372,67373,67377,67377,67378,67442,67385,67388,67390,67393,67397,67449,67450,67398,67402,67403,67407,67451,67452,67408,67411,67411,67413,67416,67426,67427,67431,67443,67434,67444,67444,67304,67445,67453,67309,67314,67319,67320,67328,67448,67343,67351,67357,67362,67441,67365,67372,67377,67377,67442,67381,67385,67390,67393,67393,67449,67454,67450,67402,67403,67403,67451,67455,67411,67416,67418,67426,67431,67456,67456,67443,67444,67444,67445,67453,67453,67314,67319,67319,67328,67330,67447,67448,67351,67441,67365,67377,67377,67381,67385,67385,67393,67454,67450,67403,67455,67411,67418,67419,67426,67456,67444,67444,67453,67319,67319,67330,67333,67439,67447,67351,67441,67377,67385,67385,67454,67457,67457,67450,67455,67422,67426,67444,67444,67319,67333,67446,67439,67351,67357,67441,67385,67385,67457,67455,67421,67422,67444,67444,67333,67446,67446,67351,67354,67357,67385,67455,67419,67421,67444,67444,67446,67354,67440,67357,67455,67419,67444,67354,67440,67455,67458,67411,67419,67354,67440,67458,67459,67411,67354,67440,67440,67459,67452,67452,67411,67440,67460,67461,67462,67462,67463,67464,67465,67466,67467,67467,67468,67469,67470,67471,67472,67473,67474,67475,67475,67476,67477,67477,67478,67479,67479,67480,67481,67481,67482,67483,67483,67484,67485,67486,67487,67488,67488,67489,67490,67491,67492,67493,67493,67494,67495,67495,67496,67497,67497,67498,67499,67499,67500,67501,67501,67502,67503,67504,67505,67506,67507,67508,67509,67509,67510,67511,67511,67512,67513,67514,67515,67460,67460,67462,67464,67465,67467,67469,67470,67472,67516,67473,67475,67477,67477,67479,67481,67517,67486,67488,67488,67490,67518,67491,67493,67495,67499,67501,67503,67504,67506,67519,67507,67509,67511,67511,67513,67520,67514,67460,67464,67464,67465,67469,67470,67516,67473,67473,67477,67481,67517,67488,67518,67518,67491,67495,67497,67499,67503,67507,67511,67520,67514,67464,67469,67470,67473,67481,67485,67517,67518,67518,67495,67497,67497,67503,67521,67522,67507,67520,67520,67514,67469,67523,67470,67481,67485,67518,67497,67497,67521,67504,67522,67520,67469,67523,67481,67483,67483,67485,67497,67497,67504,67519,67519,67522,67469,67469,67523,67483,67483,67497,67519,67519,67469,67483,67524,67525,67526,67526,67527,67528,67528,67529,67530,67530,67531,67532,67532,67533,67534,67535,67536,67537,67538,67539,67540,67541,67542,67543,67543,67544,67545,67546,67547,67548,67549,67550,67551,67551,67552,67553,67553,67554,67555,67556,67557,67558,67559,67560,67561,67562,67563,67564,67564,67565,67566,67566,67567,67568,67568,67569,67570,67571,67572,67573,67573,67574,67575,67575,67576,67577,67578,67579,67580,67581,67582,67583,67583,67584,67585,67586,67587,67588,67589,67590,67591,67591,67592,67593,67593,67594,67595,67596,67597,67598,67598,67599,67600,67600,67601,67602,67602,67603,67604,67605,67606,67607,67608,67609,67610,67611,67612,67524,67524,67526,67528,67530,67532,67534,67535,67537,67613,67613,67538,67540,67541,67543,67545,67546,67548,67549,67549,67551,67553,67556,67558,67559,67561,67562,67564,67564,67566,67568,67568,67570,67571,67571,67573,67575,67575,67577,67578,67581,67583,67585,67586,67588,67614,67589,67591,67593,67593,67595,67596,67596,67598,67600,67600,67602,67604,67605,67607,67615,67610,67611,67524,67524,67528,67530,67530,67534,67535,67535,67613,67540,67616,67541,67545,67546,67549,67553,67556,67559,67561,67561,67564,67568,67568,67571,67575,67617,67581,67585,67618,67586,67614,67614,67589,67593,67593,67596,67600,67600,67604,67619,67619,67605,67615,67608,67610,67524,67524,67530,67535,67535,67540,67616,67616,67545,67620,67546,67553,67555,67561,67568,67575,67617,67585,67618,67614,67593,67600,67619,67615,67621,67608,67524,67535,67535,67616,67620,67546,67555,67556,67556,67561,67575,67580,67617,67618,67618,67614,67600,67622,67608,67535,67535,67620,67546,67546,67556,67575,67580,67618,67600,67621,67622,67535,67535,67546,67575,67580,67600,67619,67535,67575,67578,67580,67619,67621,67621,67535,67578,67578,67580,67621,67623,67624,67625,67625,67626,67627,67627,67628,67629,67629,67630,67631,67631,67632,67633,67634,67635,67636,67636,67637,67638,67638,67639,67640,67640,67641,67642,67643,67644,67645,67646,67647,67648,67648,67649,67650,67650,67651,67652,67653,67654,67655,67655,67656,67657,67657,67658,67659,67660,67661,67662,67663,67664,67665,67666,67667,67668,67668,67669,67670,67670,67671,67672,67672,67673,67674,67674,67675,67676,67677,67678,67679,67679,67680,67681,67681,67682,67683,67684,67685,67686,67686,67687,67688,67688,67689,67690,67690,67691,67692,67692,67693,67694,67695,67696,67697,67697,67698,67699,67700,67701,67702,67702,67703,67704,67705,67706,67707,67708,67709,67710,67623,67625,67627,67627,67629,67631,67711,67634,67636,67636,67638,67640,67640,67642,67643,67643,67645,67646,67646,67648,67650,67653,67655,67657,67660,67662,67712,67663,67665,67666,67666,67668,67670,67670,67672,67674,67674,67676,67677,67677,67679,67681,67681,67683,67684,67684,67686,67688,67688,67690,67692,67692,67694,67713,67695,67697,67699,67699,67700,67702,67702,67704,67714,67714,67705,67707,67715,67623,67627,67627,67631,67633,67711,67636,67640,67640,67643,67646,67646,67650,67652,67652,67653,67657,67659,67660,67712,67663,67666,67670,67674,67677,67681,67681,67684,67688,67688,67692,67713,67699,67702,67714,67714,67707,67716,67710,67715,67627,67717,67711,67640,67640,67646,67652,67652,67657,67659,67659,67712,67663,67663,67670,67674,67674,67681,67688,67688,67713,67695,67695,67699,67714,67714,67716,67718,67708,67710,67627,67717,67640,67652,67652,67659,67663,67663,67674,67688,67688,67695,67714,67719,67708,67627,67633,67717,67652,67652,67663,67688,67688,67714,67718,67719,67627,67633,67688,67718,67719,67719,67633,67652,67652,67688,67719,67720,67721,67722,67723,67724,67725,67725,67726,67727,67727,67728,67729,67730,67731,67732,67732,67733,67734,67734,67735,67736,67736,67737,67738,67738,67739,67740,67741,67742,67743,67743,67744,67745,67745,67746,67747,67748,67749,67750,67750,67751,67752,67752,67753,67754,67754,67755,67756,67756,67757,67758,67759,67760,67761,67761,67762,67763,67763,67764,67765,67766,67767,67768,67768,67769,67770,67770,67771,67772,67772,67773,67774,67775,67776,67777,67777,67778,67779,67779,67780,67781,67781,67782,67783,67783,67784,67785,67785,67786,67787,67787,67788,67789,67790,67791,67792,67792,67793,67794,67794,67795,67796,67797,67798,67799,67799,67800,67801,67801,67802,67803,67803,67804,67805,67805,67806,67807,67808,67809,67810,67720,67722,67811,67723,67725,67727,67727,67729,67812,67730,67732,67734,67736,67738,67740,67740,67741,67743,67743,67745,67747,67748,67750,67752,67752,67754,67756,67756,67758,67813,67759,67761,67763,67763,67765,67814,67766,67768,67770,67770,67772,67774,67815,67775,67777,67777,67779,67781,67781,67783,67785,67785,67787,67789,67790,67792,67794,67797,67799,67801,67801,67803,67805,67808,67810,67816,67720,67811,67723,67723,67727,67812,67730,67734,67736,67740,67743,67747,67817,67748,67752,67752,67756,67813,67759,67763,67814,67818,67766,67770,67770,67774,67819,67815,67777,67781,67781,67785,67789,67820,67790,67794,67821,67797,67801,67801,67805,67807,67822,67808,67816,67720,67723,67812,67812,67730,67736,67736,67740,67747,67817,67752,67813,67823,67759,67814,67818,67770,67819,67824,67815,67781,67781,67789,67820,67820,67794,67796,67821,67801,67807,67822,67816,67720,67720,67812,67736,67736,67747,67817,67817,67813,67825,67823,67814,67818,67818,67819,67826,67824,67781,67820,67820,67796,67827,67828,67821,67807,67829,67822,67720,67720,67736,67817,67817,67825,67823,67823,67818,67826,67830,67824,67820,67820,67827,67828,67828,67807,67831,67829,67720,67817,67817,67823,67826,67830,67820,67828,67828,67831,67832,67833,67829,67817,67817,67826,67834,67835,67830,67828,67828,67832,67836,67836,67833,67817,67817,67834,67837,67838,67835,67828,67828,67836,67817,67817,67837,67839,67840,67838,67828,67817,67839,67840,67840,67828,67817,67841,67842,67843,67843,67844,67845,67845,67846,67847,67847,67848,67849,67850,67851,67852,67853,67854,67855,67855,67856,67857,67857,67858,67859,67859,67860,67861,67861,67862,67863,67863,67864,67865,67866,67867,67868,67868,67869,67870,67870,67871,67872,67873,67874,67875,67875,67876,67877,67877,67878,67879,67880,67841,67843,67843,67845,67847,67847,67849,67850,67850,67852,67881,67853,67855,67857,67857,67859,67861,67861,67863,67865,67866,67868,67870,67882,67873,67875,67875,67877,67879,67880,67843,67847,67847,67850,67881,67881,67853,67857,67861,67865,67883,67866,67870,67872,67882,67875,67879,67879,67880,67847,67847,67881,67857,67861,67883,67866,67866,67872,67884,67884,67882,67879,67879,67847,67857,67857,67861,67866,67884,67879,67857,67857,67866,67884,67885,67886,67887,67887,67888,67889,67889,67890,67891,67891,67892,67893,67893,67894,67895,67895,67896,67897,67897,67898,67899,67899,67900,67885,67887,67889,67891,67891,67893,67895,67895,67897,67899,67899,67885,67887,67887,67891,67895,67895,67899,67887,67901,67902,67903,67904,67905,67906,67907,67908,67909,67910,67911,67912,67913,67914,67915,67915,67916,67917,67917,67918,67919,67920,67921,67922,67922,67923,67924,67925,67926,67927,67928,67929,67930,67930,67931,67932,67933,67934,67935,67936,67937,67938,67938,67939,67940,67941,67942,67943,67943,67944,67945,67945,67946,67947,67948,67949,67950,67951,67952,67953,67953,67954,67955,67955,67956,67957,67958,67959,67960,67961,67962,67963,67963,67964,67965,67965,67966,67967,67968,67969,67970,67970,67971,67972,67972,67973,67974,67974,67975,67976,67977,67978,67979,67979,67980,67981,67982,67983,67984,67985,67986,67987,67988,67989,67990,67990,67991,67992,67992,67993,67994,67995,67996,67997,67998,67999,68000,68001,68002,68003,68004,68005,68006,68006,68007,68008,68009,68010,68011,68012,68013,68014,68014,68015,68016,68016,68017,68018,68018,68019,68020,68021,68022,68023,68024,68025,68026,68026,67901,67903,68027,67904,67906,68028,67907,67909,67910,67912,68029,67913,67915,67917,67917,67919,68030,68031,67920,67922,67922,67924,68032,68032,67925,67927,67928,67930,67932,68033,67933,67935,67936,67938,67940,67941,67943,67945,67945,67947,68034,67948,67950,67951,67951,67953,67955,67955,67957,68035,67958,67960,68036,67961,67963,67965,67968,67970,67972,67972,67974,67976,67977,67979,67981,68037,67982,67984,67985,67987,68038,67988,67990,67992,67995,67997,67998,68001,68003,68004,68004,68006,68008,68009,68011,68039,68012,68014,68016,68016,68018,68020,68024,68026,67903,68027,67906,68040,67910,68029,68041,68042,67913,67917,68031,67922,68032,68032,67927,68043,67928,67932,68044,67935,67936,67940,67941,67945,68034,68034,67948,67951,67951,67955,68035,68045,67958,68036,67961,67965,67967,67967,67968,67972,68046,67977,67981,68038,67988,67992,67995,67998,68000,68001,68004,68008,68012,68016,68020,68023,68024,67903,68047,68027,68040,68042,67917,68030,68048,68031,68032,68032,68043,68049,67928,68044,68050,68033,67935,67940,68051,67941,68034,68034,67951,68035,68045,68036,68052,67961,67967,67972,68046,67981,68053,67985,68038,67992,68000,68001,68008,68054,68012,68020,68021,68023,67903,67903,68047,68040,68055,68042,68030,68030,68048,68032,68032,68049,68056,67928,68050,68033,68033,67940,68057,68051,68034,68035,68052,67961,67972,68046,68053,68058,67985,67992,67994,68000,68008,68009,68059,68054,68020,68021,67903,68040,68041,68055,68030,68030,68032,68056,68033,68057,68060,68033,68060,67928,68051,68035,68061,68045,68052,67972,68046,68058,68062,68063,67985,67994,68059,68020,68064,68064,68021,68040,68041,68030,68056,68057,68051,68065,68065,67928,68060,68065,68060,68057,68051,68061,68066,68067,68045,67972,68063,67994,68068,68064,68040,68028,68041,68056,68069,68041,68069,67910,68051,68066,68070,68070,67928,68065,68070,68065,68051,68067,67972,67976,68071,68063,68068,68059,68064,68028,68056,68072,68073,68073,67910,68069,68073,68069,68056,68074,67928,68070,68070,68066,68075,68070,68075,68074,67928,68074,68076,67928,68076,68072,68067,67976,68046,68071,68068,67995,68059,68028,67909,68077,68072,68076,68077,68076,68074,68078,68074,68075,68078,68075,68066,68074,68078,68077,68072,68077,68079,68079,67910,68073,68079,68073,68072,68067,68046,68062,68080,68071,67995,68039,68059,67909,68079,68081,68082,68079,68082,67910,68081,68079,68077,68083,68077,68078,68083,68078,68066,68077,68083,68081,68084,67910,68082,68084,68082,68081,67910,68084,67909,68085,68067,68062,68086,68080,67995,68087,68081,68088,68087,68088,68089,68081,68087,68090,68084,68090,68091,68084,68091,67909,68090,68084,68081,68083,68089,68088,68083,68088,68081,68089,68083,68066,68089,68085,68062,68086,67995,68000,68089,68062,68092,68093,68086,68000,68089,68092,68094,68095,68093,68000,68089,68094,68096,68097,68095,68000,68098,68090,68099,68098,68099,68096,68090,68098,68100,68091,68100,68101,68091,68101,67909,68100,68091,68090,68087,68096,68099,68087,68099,68090,68096,68087,68089,67984,68097,68000,68102,68100,68103,68102,68103,68037,68100,68102,68104,68101,68104,68105,68101,68105,67909,68104,68101,68100,68098,68037,68103,68098,68103,68100,68037,68098,68096,68000,68009,68106,68000,68106,67984,68039,67909,68105,68039,68105,68104,68107,68104,68102,68107,68102,68037,68104,68107,68039,68108,67984,68106,68108,68106,68009,67984,68108,68037,68009,68039,68107,68107,68037,68108,68107,68108,68009,68109,68110,68111,68112,68113,68114,68115,68116,68117,68118,68119,68120,68120,68121,68122,68122,68123,68124,68124,68125,68126,68126,68127,68128,68128,68129,68130,68131,68132,68133,68134,68135,68136,68136,68109,68111,68112,68114,68115,68115,68117,68118,68118,68120,68122,68124,68126,68128,68128,68130,68137,68131,68133,68134,68134,68136,68111,68138,68112,68115,68115,68118,68122,68122,68124,68128,68128,68137,68131,68131,68134,68111,68138,68115,68122,68122,68128,68131,68131,68111,68138,68138,68122,68131,68139,68140,68141,68142,68143,68144,68144,68145,68146,68147,68148,68149,68150,68151,68139,68139,68141,68142,68142,68144,68146,68147,68149,68150,68150,68139,68142,68142,68146,68147,68147,68150,68142,68152,68153,68154,68154,68155,68156,68156,68157,68158,68158,68159,68152,68152,68154,68156,68156,68158,68152,68160,68161,68162,68162,68163,68164,68165,68166,68167,68167,68168,68169,68169,68170,68171,68171,68172,68173,68174,68175,68176,68177,68178,68179,68179,68180,68181,68182,68183,68184,68184,68185,68186,68186,68160,68162,68162,68164,68165,68165,68167,68169,68169,68171,68173,68174,68176,68187,68187,68177,68179,68182,68184,68186,68186,68162,68165,68165,68169,68173,68174,68187,68179,68181,68182,68186,68186,68165,68173,68174,68179,68181,68186,68173,68174,68174,68181,68186,68188,68189,68190,68190,68191,68192,68192,68193,68194,68194,68195,68196,68196,68188,68190,68192,68194,68196,68196,68190,68192,68197,68198,68199,68199,68200,68201,68201,68202,68203,68203,68204,68197,68197,68199,68201,68201,68203,68197,68205,68206,68207,68207,68208,68209,68210,68211,68212,68213,68214,68215,68215,68216,68217,68217,68218,68219,68220,68221,68222,68223,68224,68225,68225,68226,68227,68228,68205,68207,68207,68209,68229,68213,68215,68217,68217,68219,68220,68220,68222,68223,68223,68225,68227,68230,68228,68207,68213,68217,68220,68220,68223,68227,68230,68207,68229,68212,68213,68220,68227,68230,68229,68210,68212,68220,68227,68229,68210,68210,68220,68227,68231,68232,68233,68233,68234,68235,68235,68236,68237,68237,68231,68233,68233,68235,68237,68238,68239,68240,68241,68242,68243,68243,68244,68238,68238,68240,68241,68241,68243,68238,68245,68246,68247,68247,68248,68249,68249,68250,68251,68251,68252,68253,68253,68254,68255,68255,68256,68257,68258,68259,68245,68245,68247,68249,68249,68251,68253,68253,68255,68257,68258,68245,68249,68253,68257,68260,68261,68258,68249,68249,68253,68260,68260,68261,68249,68262,68263,68264,68264,68265,68266,68266,68267,68268,68269,68270,68262,68262,68264,68266,68266,68268,68269,68269,68262,68266,68271,68272,68273,68274,68275,68276,68276,68277,68278,68279,68280,68281,68281,68282,68283,68284,68285,68271,68271,68273,68274,68274,68276,68278,68279,68281,68283,68283,68284,68271,68271,68274,68278,68279,68283,68271,68271,68278,68279,68286,68287,68288,68289,68290,68291,68291,68292,68293,68293,68294,68295,68295,68296,68297,68297,68298,68299,68300,68301,68286,68286,68288,68289,68291,68293,68295,68295,68297,68299,68302,68300,68286,68286,68289,68291,68291,68295,68299,68302,68286,68291,68291,68299,68302,68303,68304,68305,68305,68306,68307,68308,68309,68310,68310,68311,68312,68312,68313,68314,68315,68316,68317,68303,68305,68307,68308,68310,68312,68312,68314,68315,68315,68317,68303,68303,68307,68308,68308,68312,68315,68315,68303,68308,68318,68319,68320,68320,68321,68322,68322,68323,68324,68324,68325,68326,68326,68318,68320,68320,68322,68324,68324,68326,68320,68327,68328,68329,68330,68331,68332,68332,68333,68334,68334,68335,68336,68336,68337,68338,68338,68339,68340,68340,68327,68329,68341,68330,68332,68332,68334,68336,68336,68338,68340,68340,68329,68342,68341,68332,68336,68336,68340,68342,68342,68341,68336,68343,68344,68345,68345,68346,68347,68347,68348,68349,68349,68350,68351,68343,68345,68347,68347,68349,68351,68351,68343,68347,68352,68353,68354,68354,68355,68356,68356,68357,68358,68358,68359,68360,68360,68361,68352,68352,68354,68356,68356,68358,68360,68360,68352,68356,68362,68363,68364,68364,68365,68366,68366,68367,68368,68368,68362,68364,68364,68366,68368,68369,68370,68371,68371,68372,68373,68373,68374,68375,68375,68376,68377,68377,68378,68369,68371,68373,68375,68375,68377,68369,68369,68371,68375,68379,68380,68381,68381,68382,68383,68384,68385,68386,68386,68387,68388,68388,68389,68390,68390,68391,68379,68379,68381,68383,68383,68384,68386,68386,68388,68390,68390,68379,68383,68383,68386,68390,68392,68393,68394,68394,68395,68396,68396,68397,68398,68398,68399,68400,68400,68392,68394,68394,68396,68398,68398,68400,68394,68401,68402,68403,68404,68405,68406,68407,68408,68409,68409,68410,68411,68411,68412,68401,68401,68403,68413,68413,68404,68406,68407,68409,68411,68411,68401,68413,68413,68406,68407,68407,68411,68413,68414,68415,68416,68416,68417,68418,68418,68419,68420,68420,68421,68422,68423,68424,68425,68425,68426,68427,68427,68414,68416,68416,68418,68420,68420,68422,68423,68423,68425,68427,68427,68416,68420,68420,68423,68427,68428,68429,68430,68430,68431,68432,68432,68433,68434,68434,68435,68428,68428,68430,68432,68432,68434,68428,68436,68437,68438,68438,68439,68440,68440,68441,68442,68442,68443,68444,68445,68446,68447,68447,68436,68438,68438,68440,68442,68445,68447,68438,68438,68442,68444,68444,68445,68438,68448,68449,68450,68450,68451,68452,68452,68453,68454,68454,68455,68456,68457,68458,68448,68448,68450,68452,68452,68454,68456,68456,68457,68448,68448,68452,68456,68459,68460,68461,68462,68463,68464,68465,68466,68467,68467,68468,68469,68469,68470,68471,68471,68472,68473,68473,68474,68475,68476,68459,68461,68462,68464,68465,68465,68467,68469,68469,68471,68473,68473,68475,68476,68476,68461,68462,68462,68465,68469,68469,68473,68476,68476,68462,68469,68477,68478,68479,68479,68480,68481,68481,68482,68477,68477,68479,68481,68483,68484,68485,68485,68486,68487,68487,68488,68489,68489,68490,68491,68491,68492,68493,68493,68494,68495,68495,68496,68497,68497,68498,68499,68499,68500,68501,68501,68502,68503,68504,68505,68506,68506,68483,68485,68485,68487,68489,68489,68491,68493,68493,68495,68497,68497,68499,68501,68501,68503,68507,68504,68506,68485,68485,68489,68493,68493,68497,68501,68501,68507,68508,68508,68504,68485,68485,68493,68501,68501,68508,68485,68509,68510,68511,68511,68512,68513,68514,68515,68516,68516,68517,68518,68518,68519,68520,68520,68521,68522,68522,68523,68524,68525,68526,68527,68528,68529,68530,68530,68531,68532,68532,68509,68511,68511,68513,68533,68533,68514,68516,68516,68518,68520,68520,68522,68524,68525,68527,68528,68528,68530,68532,68532,68511,68533,68533,68516,68520,68520,68524,68534,68534,68525,68528,68528,68532,68533,68533,68520,68534,68534,68528,68533,68535,68536,68537,68537,68538,68539,68540,68541,68542,68542,68543,68544,68545,68546,68547,68548,68549,68550,68550,68551,68552,68552,68535,68537,68537,68539,68553,68540,68542,68544,68544,68545,68547,68548,68550,68552,68552,68537,68553,68553,68540,68544,68544,68547,68554,68548,68552,68553,68553,68544,68554,68555,68548,68553,68553,68554,68555,68556,68557,68558,68558,68559,68560,68561,68562,68563,68563,68564,68565,68566,68567,68568,68568,68569,68570,68570,68571,68572,68572,68573,68574,68575,68576,68577,68578,68579,68580,68581,68582,68583,68583,68584,68556,68556,68558,68560,68561,68563,68565,68566,68568,68570,68570,68572,68574,68575,68577,68578,68580,68581,68583,68583,68556,68560,68561,68565,68566,68566,68570,68574,68575,68578,68580,68580,68583,68560,68585,68561,68566,68566,68574,68575,68575,68580,68560,68585,68566,68575,68575,68560,68586,68587,68585,68575,68575,68586,68587,68588,68589,68590,68590,68591,68592,68592,68593,68594,68594,68595,68596,68596,68597,68588,68588,68590,68592,68592,68594,68596,68596,68588,68592,68598,68599,68600,68600,68601,68602,68603,68604,68605,68605,68606,68607,68608,68609,68610,68610,68611,68612,68613,68614,68598,68598,68600,68602,68615,68603,68605,68605,68607,68616,68608,68610,68612,68612,68613,68598,68598,68602,68615,68615,68605,68616,68616,68608,68612,68612,68598,68615,68615,68616,68612,68617,68618,68619,68619,68620,68621,68621,68622,68623,68624,68625,68626,68626,68627,68628,68628,68629,68630,68630,68631,68617,68617,68619,68621,68621,68623,68632,68632,68624,68626,68626,68628,68630,68630,68617,68621,68621,68632,68626,68626,68630,68621,68633,68634,68635,68636,68637,68638,68639,68640,68641,68641,68642,68643,68643,68644,68645,68646,68647,68648,68648,68649,68650,68650,68651,68652,68652,68653,68654,68654,68655,68656,68657,68658,68659,68659,68660,68661,68633,68635,68662,68636,68638,68639,68641,68643,68645,68646,68648,68650,68650,68652,68654,68654,68656,68657,68657,68659,68661,68661,68633,68662,68662,68636,68639,68639,68641,68645,68650,68654,68657,68657,68661,68662,68662,68639,68645,68646,68650,68657,68657,68662,68645,68645,68646,68657,68663,68664,68665,68665,68666,68667,68667,68668,68669,68669,68670,68671,68672,68673,68674,68675,68676,68677,68677,68678,68679,68679,68680,68681,68681,68682,68683,68683,68684,68685,68663,68665,68667,68667,68669,68671,68686,68672,68674,68675,68677,68679,68679,68681,68683,68683,68685,68663,68663,68667,68671,68674,68675,68679,68679,68683,68663,68663,68671,68686,68686,68674,68679,68679,68663,68686,68687,68688,68689,68689,68690,68691,68691,68692,68693,68693,68694,68695,68695,68696,68697,68697,68698,68687,68687,68689,68691,68691,68693,68695,68695,68697,68687,68687,68691,68695,68699,68700,68701,68701,68702,68703,68703,68704,68705,68706,68707,68708,68708,68709,68699,68699,68701,68703,68703,68705,68706,68706,68708,68699,68699,68703,68706,68710,68711,68712,68712,68713,68714,68714,68715,68716,68716,68717,68718,68718,68719,68720,68720,68721,68722,68722,68723,68724,68724,68725,68726,68726,68727,68710,68710,68712,68714,68714,68716,68718,68718,68720,68722,68722,68724,68726,68726,68710,68714,68714,68718,68722,68722,68726,68714,68728,68729,68730,68730,68731,68732,68732,68733,68734,68734,68735,68728,68728,68730,68732,68732,68734,68728,68736,68737,68738,68738,68739,68740,68740,68741,68742,68742,68743,68744,68744,68745,68746,68746,68747,68748,68748,68749,68736,68736,68738,68740,68740,68742,68744,68744,68746,68748,68748,68736,68740,68740,68744,68748,68750,68751,68752,68752,68753,68754,68754,68755,68756,68756,68757,68758,68759,68760,68761,68761,68762,68763,68763,68764,68765,68766,68767,68768,68768,68769,68770,68771,68772,68773,68773,68774,68775,68775,68776,68777,68777,68778,68750,68750,68752,68754,68754,68756,68758,68759,68761,68763,68779,68766,68768,68768,68770,68771,68771,68773,68775,68775,68777,68750,68750,68754,68758,68780,68759,68763,68779,68768,68771,68771,68775,68750,68750,68758,68781,68780,68763,68765,68779,68771,68750,68750,68781,68782,68782,68780,68765,68783,68779,68750,68750,68782,68765,68765,68783,68750,68784,68785,68786,68787,68788,68789,68790,68791,68792,68792,68793,68794,68794,68795,68796,68797,68798,68799,68799,68784,68786,68787,68789,68800,68790,68792,68794,68796,68797,68799,68799,68786,68801,68801,68787,68800,68800,68790,68794,68796,68799,68801,68801,68800,68794,68794,68796,68801,68802,68803,68804,68804,68805,68806,68806,68807,68808,68808,68809,68810,68810,68811,68812,68812,68802,68804,68804,68806,68808,68810,68812,68804,68804,68808,68810,68813,68814,68815,68815,68816,68817,68817,68818,68819,68819,68820,68821,68822,68823,68824,68824,68825,68826,68826,68827,68828,68829,68830,68831,68832,68813,68815,68817,68819,68821,68822,68824,68826,68826,68828,68833,68829,68831,68832,68832,68815,68817,68817,68821,68834,68834,68822,68826,68826,68833,68829,68829,68832,68817,68817,68834,68826,68826,68829,68817,68835,68836,68837,68837,68838,68839,68840,68841,68842,68842,68843,68844,68844,68845,68846,68846,68847,68848,68848,68849,68850,68850,68851,68852,68852,68853,68854,68854,68835,68837,68840,68842,68844,68844,68846,68848,68848,68850,68852,68852,68854,68837,68839,68840,68844,68844,68848,68852,68852,68837,68839,68839,68844,68852,68855,68856,68857,68857,68858,68859,68859,68860,68861,68861,68862,68863,68864,68865,68866,68866,68867,68868,68869,68855,68857,68857,68859,68861,68861,68863,68870,68864,68866,68868,68869,68857,68861,68861,68870,68871,68871,68864,68868,68872,68869,68861,68861,68871,68868,68868,68872,68861,68873,68874,68875,68876,68877,68878,68878,68879,68880,68880,68881,68882,68883,68884,68885,68885,68886,68887,68887,68888,68889,68889,68890,68873,68873,68875,68891,68876,68878,68880,68883,68885,68887,68889,68873,68891,68892,68876,68880,68883,68887,68889,68889,68891,68893,68893,68892,68880,68883,68889,68893,68893,68880,68882,68882,68883,68893,68894,68895,68896,68897,68898,68899,68899,68900,68901,68901,68902,68894,68894,68896,68897,68897,68899,68901,68901,68894,68897,68903,68904,68905,68905,68906,68907,68907,68908,68909,68909,68910,68911,68911,68912,68903,68903,68905,68907,68907,68909,68911,68911,68903,68907,68913,68914,68915,68915,68916,68917,68917,68918,68919,68919,68920,68921,68922,68923,68924,68924,68925,68926,68927,68928,68929,68929,68930,68931,68932,68913,68915,68915,68917,68919,68924,68926,68927,68927,68929,68931,68933,68932,68915,68915,68919,68921,68922,68924,68927,68927,68931,68933,68933,68915,68921,68922,68927,68933,68933,68921,68922,68934,68935,68936,68936,68937,68938,68939,68940,68941,68941,68942,68934,68934,68936,68938,68939,68941,68934,68934,68938,68939,68943,68944,68945,68945,68946,68947,68947,68948,68949,68949,68950,68943,68943,68945,68947,68947,68949,68943,68951,68952,68953,68953,68954,68955,68955,68956,68951,68951,68953,68955,68957,68958,68959,68959,68960,68961,68961,68962,68963,68963,68964,68965,68965,68966,68957,68957,68959,68961,68963,68965,68957,68957,68961,68963,68967,68968,68969,68970,68971,68972,68973,68974,68975,68975,68976,68977,68978,68979,68980,68980,68967,68969,68970,68972,68973,68973,68975,68977,68978,68980,68969,68969,68970,68973,68973,68977,68978,68978,68969,68973,68981,68982,68983,68984,68985,68986,68986,68987,68988,68988,68989,68990,68991,68992,68993,68993,68994,68995,68995,68996,68997,68997,68998,68999,68999,69000,69001,69002,69003,69004,69004,69005,69006,69006,69007,69008,69008,69009,69010,69011,69012,69013,69014,69015,68981,68981,68983,68984,68984,68986,68988,68988,68990,69016,68991,68993,68995,68995,68997,68999,68999,69001,69002,69002,69004,69006,69006,69008,69010,69011,69013,69017,69014,68981,68984,68984,68988,69016,69018,68991,68995,68995,68999,69002,69002,69006,69010,69011,69017,69014,69014,68984,69016,69016,69018,68995,69002,69010,69019,69011,69014,69016,68995,69002,69019,69011,69016,68995,68995,69019,69011,69020,69021,69022,69022,69023,69024,69024,69025,69026,69026,69027,69020,69020,69022,69024,69024,69026,69020,69028,69029,69030,69031,69032,69033,69033,69034,69035,69036,69037,69038,69038,69039,69040,69041,69042,69043,69044,69045,69046,69046,69047,69048,69028,69030,69031,69031,69033,69035,69038,69040,69041,69041,69043,69049,69050,69044,69046,69046,69048,69028,69028,69031,69035,69036,69038,69041,69050,69046,69028,69028,69035,69036,69036,69041,69049,69049,69050,69028,69028,69036,69049,69051,69052,69053,69053,69054,69055,69055,69056,69057,69058,69059,69060,69060,69061,69062,69063,69064,69065,69065,69066,69067,69068,69069,69070,69071,69051,69053,69053,69055,69057,69058,69060,69062,69063,69065,69067,69068,69070,69071,69071,69053,69057,69072,69058,69062,69062,69063,69067,69068,69071,69057,69072,69062,69067,69067,69068,69057,69073,69072,69067,69067,69057,69073,69074,69075,69076,69076,69077,69078,69078,69079,69080,69081,69082,69083,69083,69084,69085,69085,69086,69087,69074,69076,69078,69078,69080,69081,69081,69083,69085,69085,69087,69074,69074,69078,69081,69081,69085,69074,69088,69089,69090,69090,69091,69092,69092,69093,69094,69094,69095,69096,69096,69097,69098,69098,69088,69090,69090,69092,69094,69094,69096,69098,69098,69090,69094,69099,69100,69101,69101,69102,69103,69104,69105,69106,69106,69107,69108,69108,69109,69110,69110,69111,69112,69113,69114,69115,69115,69116,69117,69117,69118,69119,69120,69099,69101,69101,69103,69104,69104,69106,69108,69108,69110,69112,69113,69115,69117,69117,69119,69121,69121,69120,69101,69101,69104,69108,69108,69112,69113,69113,69117,69121,69121,69101,69108,69108,69113,69121,69122,69123,69124,69125,69126,69127,69127,69128,69129,69129,69130,69131,69131,69132,69133,69134,69135,69136,69136,69137,69122,69122,69124,69125,69125,69127,69129,69129,69131,69133,69133,69134,69136,69136,69122,69125,69125,69129,69133,69133,69136,69125,69138,69139,69140,69140,69141,69142,69142,69143,69144,69144,69145,69146,69146,69147,69148,69148,69138,69140,69140,69142,69144,69144,69146,69148,69148,69140,69144,69149,69150,69151,69151,69152,69153,69154,69155,69156,69156,69157,69158,69158,69159,69160,69161,69162,69163,69164,69165,69166,69166,69167,69149,69149,69151,69153,69168,69154,69156,69156,69158,69160,69161,69163,69164,69164,69166,69149,69149,69153,69168,69168,69156,69160,69161,69164,69149,69149,69168,69160,69160,69161,69149,69169,69170,69171,69172,69173,69174,69175,69176,69177,69178,69179,69180,69180,69181,69182,69182,69183,69184,69184,69185,69186,69187,69188,69189,69189,69190,69191,69192,69193,69194,69195,69196,69197,69197,69198,69199,69199,69200,69201,69201,69202,69203,69203,69204,69205,69205,69169,69171,69175,69177,69178,69178,69180,69182,69182,69184,69186,69187,69189,69191,69195,69197,69199,69201,69203,69205,69205,69171,69172,69174,69175,69178,69178,69182,69186,69186,69187,69191,69206,69195,69199,69199,69201,69205,69205,69172,69174,69174,69178,69186,69186,69191,69207,69206,69199,69205,69205,69174,69186,69186,69207,69192,69194,69206,69205,69205,69186,69192,69192,69194,69205,69208,60489,60488,69209,69210,69211,69211,69212,69213,69214,69215,69216,69216,69217,69218,69219,69220,69221,69221,69222,69223,69223,60498,60497,60558,60557,60567,60567,60556,60555,60555,60554,60553,60550,60549,60548,60547,60546,60545,60545,60544,69224,69225,69226,69227,69208,60488,69228,69209,69211,69213,69214,69216,69218,69219,69221,69223,69223,60497,60560,60558,60567,60555,60555,60553,60552,60548,60547,60545,60545,69224,69229,69230,69208,69228,69231,69209,69213,69232,69214,69218,69218,69219,69223,60559,60558,60555,60555,60552,60551,60550,60548,60545,69230,69228,69233,69231,69213,69232,69232,69218,69223,60560,60559,60555,60550,60545,69229,69230,69233,69231,69231,69232,69223,60560,60555,60551,60551,60550,69229,69227,69230,69231,69223,60560,60551,60551,69229,69234,69227,69231,69223,69223,60551,69234,69225,69227,69223,69223,69234,69225,60037,60036,69235,69236,69237,69238,69238,69239,69240,69240,69241,69242,69243,69244,69245,69246,69247,69248,69248,69249,69250,69250,69251,69252,69252,69253,69254,69255,69256,69257,69257,69258,69259,69260,69261,69262,69263,69264,69265,69265,69266,69267,69267,69268,69269,69269,69270,69271,69271,69272,69273,69274,69275,69276,69277,60047,60046,60045,60044,60116,60116,60043,60042,60042,60041,60115,60039,60038,60114,60037,69235,69278,69236,69238,69240,69243,69245,69279,69280,69246,69248,69248,69250,69252,69281,69255,69257,69260,69262,69263,69263,69265,69267,69267,69269,69271,69271,69273,69274,69274,69276,69282,69283,69277,60046,60045,60116,60042,60042,60115,60040,60039,60114,60037,69284,69236,69240,69280,69248,69252,69281,69257,69259,69285,69260,69263,69263,69267,69271,69283,60046,60045,60045,60042,60040,60040,60039,60037,69284,69240,69242,69286,69280,69252,69254,69281,69259,69285,69263,69271,69287,69283,60045,60045,60040,60037,69278,69284,69242,69288,69286,69252,69289,69285,69271,69287,60045,60037,69278,69242,69243,69290,69288,69252,69259,69289,69271,69287,60037,69278,69278,69243,69279,69290,69252,69254,69254,69259,69271,69291,69287,69278,69278,69279,69290,69254,69271,69274,69291,69278,69290,69254,69274,69282,69282,69291,69290,69290,69254,69282,69292,69293,69294,69294,69295,69296,69297,69298,69299,69299,69300,69301,69302,69303,69304,69304,69305,69306,69306,69307,69308,69309,69310,69311,69312,69313,69314,69314,69315,69316,69317,69318,69319,69319,69320,69321,69321,69322,69323,69324,69325,69326,69327,69328,69329,69329,69330,69331,69332,69333,69334,69335,69336,69337,69337,69338,69339,69339,69340,69341,69342,69343,69344,69344,69345,69346,69347,69348,69349,69350,69351,69352,69352,69353,69354,69355,69356,69357,69358,69359,69360,69361,69362,69363,69364,69365,69366,69366,69367,69368,69368,69369,69370,69371,69372,69373,69373,69374,69375,69376,69377,69378,69379,69380,69381,69382,69383,69384,69384,69385,69386,69387,69388,69389,69390,69391,69392,69392,69393,69394,69395,69396,69397,69397,69398,69399,69399,69400,69401,69401,69402,69403,69403,69404,69405,69405,69406,69407,69408,69409,69410,69410,69411,69412,69413,69414,69415,69415,69416,69417,69418,69419,69420,69421,69422,69423,69424,69425,69426,69427,69428,69429,69429,69430,69431,69432,69433,69434,69435,69436,69437,69438,69439,69440,69441,69442,69443,69444,69445,69446,69446,69447,69448,69449,69450,69451,69452,69453,69454,69455,69456,69457,69457,69458,69459,69459,69460,69461,69462,69463,69464,69464,69465,69466,69467,69468,69469,69470,69471,69472,69473,69474,69475,69475,69292,69294,69297,69299,69301,69476,69302,69304,69304,69306,69308,69309,69311,69477,69312,69314,69316,69317,69319,69321,69478,69324,69326,69327,69329,69331,69332,69334,69335,69335,69337,69339,69341,69342,69344,69344,69346,69347,69479,69350,69352,69352,69354,69480,69355,69357,69481,69358,69360,69361,69361,69363,69364,69364,69366,69368,69371,69373,69375,69376,69378,69482,69483,69379,69381,69484,69382,69384,69384,69386,69485,69387,69389,69486,69486,69390,69392,69395,69397,69399,69399,69401,69403,69403,69405,69407,69408,69410,69412,69413,69415,69417,69418,69420,69487,69488,69421,69423,69424,69426,69489,69427,69429,69431,69432,69434,69490,69435,69437,69491,69492,69438,69440,69441,69443,69493,69444,69446,69448,69449,69451,69494,69452,69454,69495,69455,69457,69459,69459,69461,69496,69462,69464,69466,69467,69469,69470,69473,69475,69294,69296,69297,69301,69476,69304,69308,69312,69316,69497,69317,69321,69323,69478,69326,69498,69327,69331,69499,69332,69335,69339,69341,69344,69347,69500,69479,69352,69352,69480,69501,69501,69355,69481,69358,69361,69364,69364,69368,69370,69375,69376,69482,69483,69381,69484,69387,69486,69392,69395,69399,69403,69403,69407,69502,69408,69412,69503,69504,69413,69417,69505,69418,69487,69488,69423,69506,69507,69424,69489,69489,69427,69431,69431,69432,69490,69508,69435,69491,69492,69440,69509,69441,69493,69444,69444,69448,69510,69449,69494,69452,69452,69495,69511,69455,69459,69496,69496,69462,69466,69467,69470,69472,69473,69294,69296,69296,69301,69476,69476,69308,69512,69312,69497,69513,69317,69323,69478,69514,69332,69339,69341,69347,69349,69500,69352,69501,69358,69364,69370,69371,69375,69482,69483,69484,69384,69387,69392,69394,69395,69403,69502,69515,69408,69503,69504,69417,69505,69487,69488,69506,69507,69489,69431,69431,69490,69508,69492,69509,69516,69441,69444,69510,69449,69452,69511,69455,69496,69466,69472,69473,69296,69296,69476,69512,69312,69513,69517,69517,69317,69478,69518,69514,69339,69349,69500,69501,69519,69358,69370,69371,69482,69483,69483,69384,69485,69387,69394,69395,69395,69502,69520,69515,69503,69504,69504,69505,69487,69506,69507,69431,69431,69508,69491,69516,69441,69510,69521,69449,69511,69455,69466,69522,69467,69472,69296,69296,69512,69523,69524,69312,69517,69517,69478,69498,69518,69339,69341,69341,69349,69501,69519,69370,69371,69371,69483,69485,69387,69395,69520,69515,69504,69487,69487,69506,69431,69431,69491,69525,69516,69510,69521,69521,69511,69526,69526,69455,69522,69467,69296,69523,69524,69517,69498,69499,69518,69341,69341,69501,69481,69527,69519,69371,69371,69485,69387,69387,69520,69515,69515,69487,69431,69516,69521,69526,69526,69522,69467,69467,69523,69528,69477,69524,69498,69499,69341,69481,69527,69371,69387,69387,69515,69431,69492,69516,69526,69526,69467,69528,69309,69477,69498,69327,69499,69481,69481,69527,69387,69387,69431,69525,69492,69526,69528,69528,69309,69498,69529,69327,69481,69481,69387,69525,69525,69492,69528,69528,69498,69530,69529,69481,69525,69525,69528,69530,69530,69529,69525,69531,69532,69533,69533,69534,69535,69536,69537,69538,69539,69540,69541,69541,69542,69543,69543,69544,69545,69546,69547,69548,69548,69549,69550,69550,69551,69552,69553,69554,69555,69555,69556,69557,69557,69558,69559,69559,69560,69561,69561,69562,69563,69564,69565,69566,69567,69568,69569,69570,69571,69572,69573,69574,69575,69575,69576,69577,69577,69578,69579,69579,69580,69581,69581,69582,69583,69583,69584,69585,69586,69587,69588,69589,69590,69591,69591,69592,69593,69594,69595,69596,69596,69597,69598,69598,69599,69600,69600,69601,69602,69603,69425,69424,69424,69507,69506,69422,69421,69488,69488,69487,69420,69419,69418,69505,69414,69413,69504,69504,69503,69412,69411,69410,69409,69409,69408,69515,69515,69520,69502,69502,69407,69406,69404,69403,69402,69396,69395,69394,69391,69390,69486,69388,69387,69485,69485,69386,69385,69385,69384,69383,69383,69382,69484,69380,69379,69483,69483,69482,69378,69377,69376,69375,69374,69373,69372,69372,69371,69370,69365,69364,69363,69362,69361,69360,69359,69358,69519,69519,69527,69481,69481,69357,69356,69604,69605,69606,69606,69607,69608,69608,69609,69610,69611,69612,69613,69614,69615,69616,69617,69618,69619,69620,69621,69622,69623,69624,69625,69626,69627,69628,69628,69629,69630,69630,69631,69632,69633,69634,69635,69635,69636,69637,69638,69639,69640,69641,69642,69643,69643,69644,69645,69645,69646,69647,69647,69648,69649,69649,69650,69651,69652,69653,69654,69655,69656,69657,69657,69658,69659,69660,69661,69662,69663,69664,69665,69665,69666,69667,69667,69668,69669,69669,69670,69671,69671,69672,69673,69674,69675,69676,69677,69678,69679,69679,69680,69681,69681,69682,69683,69684,69685,69686,69687,69688,69689,69689,69690,69691,69692,69693,69694,69694,69695,69696,69697,69698,69699,69700,69701,69702,69703,69704,69705,69705,69706,69707,69708,69709,69710,69710,69711,69712,69713,69714,69715,69715,69716,69717,69717,69718,69719,69719,69720,69721,69722,69723,69724,69725,69726,69727,69728,69729,69730,69730,69731,69732,69733,69734,69735,69735,69736,69737,69737,69738,69739,69740,69741,69742,69742,69743,69744,69745,69746,69747,69748,69749,69750,69750,69751,69752,69752,69753,69754,69754,69755,69756,69757,69758,69759,69760,69761,69762,69762,69763,69764,69765,69766,69767,69767,69768,69769,69769,69770,69771,69772,69773,69774,69775,69776,69777,69777,69778,69779,69779,69780,69781,69782,69783,69784,69784,69785,69786,69787,69788,69789,69789,69790,69791,69791,69792,69793,69793,69794,69795,69796,69797,69798,69798,69799,69800,69800,59303,58904,58901,58900,58899,58899,58898,59373,59373,59357,58897,58894,58893,59302,58891,58890,59301,58888,58887,59337,58885,58884,58883,58882,58881,58880,58880,58879,59300,58877,58876,59299,58874,58873,59298,59298,58872,58871,58871,69801,69802,69802,69803,69804,69805,69806,69807,69807,69808,69809,69809,69810,69811,69811,69812,69813,69814,69815,69816,69817,69818,69819,69820,69531,69533,69533,69535,69821,69536,69538,69822,69539,69541,69543,69543,69545,69823,69550,69552,69553,69553,69555,69557,69557,69559,69561,69564,69566,69824,69570,69572,69825,69573,69575,69577,69577,69579,69581,69581,69583,69585,69826,69586,69588,69589,69591,69593,69596,69598,69600,69600,69602,69603,69603,69424,69506,69422,69488,69420,69419,69505,69417,69414,69504,69412,69411,69409,69515,69515,69502,69406,69405,69404,69402,69397,69396,69394,69391,69486,69389,69389,69388,69485,69383,69484,69381,69380,69483,69378,69377,69375,69374,69374,69372,69370,69362,69360,69359,69359,69519,69481,69481,69356,69604,69604,69606,69608,69608,69610,69827,69611,69613,69828,69614,69616,69617,69617,69619,69829,69620,69622,69830,69831,69623,69625,69626,69628,69630,69633,69635,69637,69638,69640,69832,69641,69643,69645,69649,69651,69833,69655,69657,69659,69662,69663,69665,69665,69667,69669,69671,69673,69674,69674,69676,69834,69677,69679,69681,69681,69683,69684,69835,69687,69689,69689,69691,69836,69692,69694,69696,69700,69702,69703,69703,69705,69707,69708,69710,69712,69713,69715,69717,69717,69719,69721,69725,69727,69837,69728,69730,69732,69732,69733,69735,69735,69737,69739,69740,69742,69744,69745,69747,69748,69748,69750,69752,69752,69754,69756,69757,69759,69838,69760,69762,69764,69767,69769,69771,69772,69774,69775,69777,69779,69781,69784,69786,69787,69787,69789,69791,69791,69793,69795,69796,69798,69800,69800,58904,58903,58902,58901,58899,58899,59373,58897,58894,59302,58892,58891,59301,58889,58888,59337,58886,58882,58880,59300,58877,59299,58875,58874,59298,58871,58871,69802,69804,69805,69807,69809,69809,69811,69813,69814,69816,69839,69817,69819,69840,69820,69533,69821,69841,69536,69822,69539,69543,69823,69550,69553,69557,69557,69561,69563,69563,69564,69824,69569,69570,69825,69842,69573,69577,69577,69581,69585,69826,69588,69843,69844,69589,69593,69596,69600,69603,69603,69506,69423,69422,69420,69419,69411,69515,69406,69405,69402,69401,69397,69394,69393,69389,69485,69385,69381,69380,69378,69377,69374,69370,69362,69359,69481,69481,69604,69608,69611,69828,69845,69614,69617,69829,69829,69620,69830,69831,69625,69846,69847,69626,69630,69632,69633,69637,69638,69832,69641,69641,69645,69647,69649,69833,69652,69655,69659,69660,69665,69669,69671,69671,69674,69834,69677,69681,69684,69835,69689,69836,69692,69696,69848,69849,69700,69703,69703,69707,69850,69708,69712,69851,69852,69713,69717,69717,69721,69853,69728,69732,69735,69854,69740,69744,69748,69752,69756,69855,69760,69764,69765,69767,69771,69772,69775,69777,69777,69781,69782,69784,69787,69791,69796,69800,58903,58902,58899,58897,58894,58892,58891,58888,58886,58885,58882,59300,58878,58878,58877,58875,58875,58874,58871,69804,69805,69809,69809,69813,69856,69814,69839,69857,69857,69817,69840,69858,69841,69822,69822,69539,69823,69550,69557,69563,69563,69824,69567,69567,69569,69825,69842,69577,69585,69826,69843,69859,69844,69593,69594,69596,69603,69423,69422,69419,69417,69411,69406,69405,69398,69397,69393,69391,69389,69385,69383,69381,69378,69377,69370,69369,69362,69481,69608,69614,69829,69830,69860,69831,69846,69847,69630,69632,69632,69637,69861,69861,69638,69641,69641,69647,69649,69655,69660,69662,69665,69671,69834,69834,69677,69684,69835,69836,69862,69692,69848,69697,69849,69703,69850,69708,69851,69863,69852,69717,69853,69728,69735,69739,69864,69854,69744,69745,69748,69756,69855,69764,69865,69765,69771,69866,69772,69777,69782,69784,69791,69795,69867,69796,58903,58903,58902,58897,58894,58891,58889,58882,58878,58875,58875,58871,69804,69804,69809,69856,69814,69857,69840,69858,69822,69823,69548,69550,69563,69567,69825,69868,69868,69842,69585,69869,69844,69594,69594,69596,69423,69422,69417,69416,69411,69405,69401,69398,69393,69392,69391,69385,69383,69377,69369,69368,69363,69362,69608,69614,69830,69860,69860,69846,69870,69847,69632,69861,69861,69641,69649,69871,69655,69662,69665,69834,69684,69835,69862,69692,69692,69697,69699,69699,69849,69850,69708,69863,69852,69852,69853,69722,69837,69728,69739,69864,69744,69872,69873,69745,69756,69765,69866,69874,69782,69784,69795,69867,58903,58897,58895,58894,58889,58882,58875,69804,69804,69856,69875,69876,69814,69840,69877,69858,69823,69546,69548,69563,69567,69868,69585,69878,69869,69594,69594,69423,69422,69399,69398,69392,69391,69383,69378,69377,69368,69367,69365,69363,69608,69614,69860,69870,69870,69847,69861,69861,69649,69652,69871,69662,69665,69665,69684,69686,69835,69692,69699,69699,69850,69708,69708,69852,69722,69725,69837,69739,69864,69872,69879,69873,69756,69757,69765,69874,69772,69795,69867,58897,58896,58895,58889,69804,69875,69880,69876,69840,69820,69881,69877,69823,69546,69563,69567,69567,69585,69826,69878,69594,69422,69399,69392,69391,69391,69378,69377,69377,69367,69366,69366,69365,69608,69845,69614,69870,69870,69861,69652,69871,69665,69686,69686,69835,69699,69708,69722,69724,69725,69739,69882,69873,69757,69838,69865,69765,69772,69782,69795,58897,58896,58889,58888,58882,69804,69880,69876,69820,69821,69821,69881,69823,69567,69826,69859,69883,69878,69422,69399,69391,69377,69377,69366,69608,69611,69845,69870,69870,69652,69654,69871,69686,69699,69699,69708,69724,69725,69882,69884,69873,69838,69885,69865,69772,69782,69782,58897,58896,58883,58882,69880,69876,69821,69823,69546,69567,69859,69883,69422,69416,69399,69377,69608,69870,69654,69886,69870,69886,69611,69654,69871,69699,69699,69724,69725,69725,69884,69887,69888,69873,69885,69855,69865,69782,69782,58896,58888,58883,69880,69889,69876,69823,69546,69546,69859,69883,69883,69416,69415,69399,69608,69827,69890,69611,69886,69890,69886,69654,69611,69890,69827,69699,69725,69887,69888,69885,69855,69782,58888,69891,69782,69891,69855,58883,69889,69892,69546,69883,69893,69546,69893,69876,69883,69415,69414,69894,69827,69890,69894,69890,69654,69827,69894,69399,69699,69887,69895,69699,69895,69654,69896,69855,69891,69896,69891,58888,69855,69896,69888,58883,69892,69876,69883,69414,69897,69897,69876,69893,69897,69893,69883,69898,69399,69894,69898,69894,69654,69399,69898,69400,69887,69899,69900,69900,69654,69895,69900,69895,69887,69901,69888,69896,69901,69896,58888,69888,69901,69879,58883,69876,69897,69897,69414,69902,69897,69902,58883,69903,69400,69898,69903,69898,69654,69400,69903,69401,69899,69864,69904,69904,69654,69900,69904,69900,69899,69905,69879,69901,69905,69901,58888,69879,69905,69864,69906,58883,69902,69906,69902,69414,58883,69906,58885,69907,69903,69908,69907,69908,69864,69903,69907,69401,69903,69654,69904,69904,69864,69908,69904,69908,69903,58888,58885,69909,69909,69864,69905,69909,69905,58888,69906,69412,69910,69906,69910,58885,69412,69906,69414,69911,69401,69907,69911,69907,69864,69401,69911,69411,69912,58885,69910,69912,69910,69412,69912,69864,69909,69912,69909,58885,69912,69411,69911,69912,69911,69864,69411,69912,69412,69913,69914,69915,69916,69917,69918,69918,69919,69920,69921,69922,69923,69923,69924,69925,69925,69926,69927,69927,69928,69929,69929,69930,69931,69931,69932,69933,69934,69935,69913,69936,69916,69918,69920,69921,69923,69923,69925,69927,69927,69929,69931,69934,69913,69915,69936,69918,69920,69920,69923,69927,69927,69931,69933,69933,69934,69915,69915,69936,69920,69920,69927,69933,69933,69915,69920,69937,69938,69939,69939,69940,69941,69941,69942,69943,69944,69945,69946,69946,69947,69948,69948,69949,69937,69937,69939,69941,69941,69943,69944,69944,69946,69948,69948,69937,69941,69941,69944,69948,69950,69951,69952,69952,69953,69954,69954,69955,69956,69957,69950,69952,69952,69954,69956,69956,69957,69952,69958,69959,69960,69960,69961,69962,69963,69964,69965,69965,69966,69958,69960,69962,69967,69968,69963,69965,69965,69958,69960,69960,69967,69969,69969,69968,69965,69965,69960,69969,69970,69971,69972,69972,69973,69974,69974,69975,69976,69976,69977,69970,69970,69972,69974,69974,69976,69970,69978,63241,63240,63238,63237,63236,63235,63234,63772,63772,63950,63671,63232,63231,63230,63227,63226,63670,63222,63221,63669,63669,63531,63220,63219,63218,63217,63216,63215,63844,63844,63530,63214,63214,63213,69979,69980,69981,69982,69983,69984,69985,69985,69986,69987,69987,69988,69989,69990,69991,69992,69992,69993,69994,69994,69995,69996,69996,69997,69998,69998,69999,70000,70000,70001,70002,70003,70004,70005,70005,70006,70007,70008,70009,70010,70010,70011,70012,70012,70013,70014,70015,70016,70017,70017,70018,70019,70020,70021,70022,70022,70023,70024,70024,70025,70026,70027,70028,70029,70030,70031,70032,70032,70033,70034,70035,70036,70037,70038,70039,70040,70041,70042,70043,70043,70044,70045,70045,70046,70047,70048,70049,70050,70050,69978,63240,63238,63236,63235,63235,63772,63671,63232,63230,63229,63228,63227,63670,63222,63669,63220,63219,63217,63216,63216,63844,63214,63214,69979,69980,69983,69985,69987,69987,69989,70051,69990,69992,69994,69996,69998,70000,70000,70002,70052,70052,70003,70005,70005,70007,70053,70008,70010,70012,70012,70014,70015,70015,70017,70019,70054,70020,70022,70022,70024,70026,70027,70029,70055,70055,70030,70032,70035,70037,70038,70040,70041,70043,70043,70045,70047,70048,70050,63240,63235,63671,63233,63228,63670,63225,63223,63222,63220,63219,63216,63214,69982,69983,69987,69990,69994,69996,69996,70000,70052,70052,70005,70053,70053,70008,70012,70012,70015,70019,70054,70022,70026,70055,70032,70034,70035,70038,70040,70040,70043,70047,70048,63240,63239,63235,63233,63232,63220,63219,63214,69982,69987,70051,69990,69996,70052,70053,70012,70019,70054,70026,70027,70055,70034,70056,70035,70040,70047,70057,70048,63239,63238,63235,63232,63223,63220,63214,69982,70051,69990,69990,70052,70053,70053,70019,70058,70059,70054,70027,70035,70047,70057,70057,63239,63238,63238,63232,63229,63223,63214,69980,69982,69990,70053,70053,70058,70059,70059,70027,70055,70035,70057,63238,63238,63229,63228,63223,69980,69982,69982,70053,70059,70059,70055,70056,70035,63238,63228,63224,63223,69982,69982,70059,70056,70056,70035,63228,63225,63224,69982,69982,70056,63228,63228,63225,69982,70060,70061,70062,70063,70064,70065,70065,70066,70067,70068,70069,70070,70070,70071,70072,70073,70074,70075,70076,70077,70078,70079,70080,70081,70081,70082,70083,70083,70084,70085,70086,70087,70088,70088,70089,70090,70090,70091,70092,70093,70094,70095,70095,70096,70097,70060,70062,70063,70065,70067,70068,70068,70070,70072,70098,70073,70075,70079,70081,70083,70083,70085,70099,70086,70088,70090,70090,70092,70093,70093,70095,70097,70060,70063,70065,70065,70068,70072,70100,70098,70075,70078,70079,70083,70101,70086,70090,70090,70093,70097,70102,70060,70065,70065,70072,70100,70100,70075,70076,70078,70083,70099,70101,70090,70097,70102,70065,70100,70100,70076,70078,70078,70099,70101,70101,70097,70102,70102,70100,70078,70078,70101,70102,70103,70104,70105,70105,70106,70107,70108,70109,70110,70110,70111,70112,70113,70114,70115,70116,70117,70118,70118,70119,70120,70120,70121,70122,70122,70103,70105,70107,70108,70110,70110,70112,70113,70113,70115,70123,70124,70116,70118,70120,70122,70105,70107,70110,70113,70113,70123,70124,70124,70118,70120,70120,70105,70107,70107,70113,70124,70124,70120,70107,70125,70126,70127,70127,70128,70129,70129,70130,70131,70131,70125,70127,70127,70129,70131,60569,60355,60354,60354,60353,60438,60351,60350,60349,60349,60348,60437,60437,60347,60346,60346,60345,60344,60342,60341,63259,63259,63534,63674,63674,63258,63257,63257,63256,63255,63255,63254,63253,63252,63251,63673,63673,63533,63250,63249,63248,63247,63246,63245,63672,63672,63846,64007,64007,63532,63244,63243,63242,63845,63845,63241,69978,70049,70048,70057,70044,70043,70042,70042,70041,70040,70039,70038,70037,70036,70035,70056,70056,70034,70033,70031,70030,70055,70028,70027,70026,70025,70024,70132,70133,70134,70135,70136,70137,70138,70138,70139,70140,70140,70141,70142,70142,70143,70144,70145,70146,70147,70147,70148,60537,60535,60534,60533,60531,60530,60566,60528,60527,60526,60525,60524,60523,60521,60520,60519,60519,60518,60517,60516,60515,60514,60513,60512,60565,60565,60564,60511,60510,60509,60508,60506,60505,60574,60574,60569,60354,60354,60438,60352,60351,60349,60437,60343,60342,63259,63259,63674,63257,63255,63253,63252,63252,63673,63250,63246,63672,64007,64007,63244,63243,63243,63845,69978,70050,70049,70057,70042,70040,70039,70039,70037,70036,70036,70056,70033,70031,70055,70029,70028,70026,70025,70025,70132,70149,70133,70135,70136,70136,70138,70140,70140,70142,70144,70150,70145,70147,70147,60537,60536,60532,60531,60566,60528,60526,60525,60525,60523,60522,60522,60521,60519,60519,60517,60516,60513,60565,60511,60507,60506,60574,60574,60354,60352,60351,60437,60346,60343,63259,63257,63255,63252,63250,63247,63246,64007,64007,63243,69978,70050,70057,70047,70044,70042,70039,70039,70036,70033,70031,70029,70028,70028,70025,70149,70133,70136,70140,70140,70144,70150,70150,70147,60536,60532,60566,60529,60529,60528,60525,60522,60519,60516,60513,60511,60510,60507,60574,60352,60351,60346,60344,60344,60343,63257,63257,63255,63250,63247,64007,69978,70050,70047,70046,70044,70039,70033,70032,70031,70028,70028,70149,70151,70133,70140,70150,70150,60536,60535,60529,60525,60522,60522,60516,60514,60508,60507,60352,60352,60351,60344,60344,63257,63250,63249,63247,69978,69978,70050,70046,70044,70033,70032,70032,70028,70151,70152,70133,70150,70150,60535,60533,60529,60522,60514,60510,60508,60352,60352,60344,63250,63249,69978,70046,70044,70032,70151,70152,70150,60533,60532,60529,60514,60513,60510,60352,60352,63250,63249,63249,70046,70045,70045,70044,70151,70153,70152,60533,60513,60352,63249,63249,70045,70151,70153,60533,60532,60514,60513,63249,63249,70151,70154,70153,60532,60514,60514,63249,70154,70155,70153,60514,60514,70154,70156,70156,70155,60514,70157,70158,70159,70160,70161,70162,70162,70163,70164,70165,70166,70167,70168,70169,70170,70171,70172,70173,70174,70175,70176,70177,70178,70179,70180,70181,70182,70182,70183,70184,70185,70186,70187,70187,70188,70189,70190,70191,70192,70193,70194,70195,70196,70197,70198,70198,70199,70200,70201,70202,70203,70203,70204,70205,70206,70207,70208,70208,70209,70210,70210,63099,63098,63098,63763,63521,63096,63095,63656,63656,64003,63947,63947,63840,63762,63762,63094,63093,63091,63090,63655,63655,63886,63946,63946,63839,63654,63654,63520,63089,63089,70211,70212,70212,70213,70214,70215,70216,70217,70217,70218,70219,70220,70221,70222,70223,70224,70225,70226,70227,70228,70229,70230,70231,70231,70232,70233,70233,70234,70235,70236,70237,70238,70238,70239,70240,70241,70242,70243,70244,70245,70246,70246,70247,70248,70248,70249,70250,70251,70252,70253,70254,70255,70256,70256,70257,70258,70259,70260,70261,70261,70262,70263,70263,70264,70265,70265,70266,70267,70267,70268,70269,70269,70270,70271,70272,70273,70274,70275,70276,70277,70278,70279,70280,70281,70282,70283,70283,70284,70285,70285,70286,70287,70287,70288,70289,70290,70291,70292,70293,70294,70295,70295,70296,70297,70297,70298,70299,70299,70300,70301,70302,70303,70304,70304,70305,70306,70307,70308,70309,70310,70311,70312,70313,70314,70315,70315,70316,70317,70317,70318,70319,70320,70321,70322,70322,70323,70324,70324,70325,70326,70327,70328,70329,70329,70330,70331,70331,70332,70333,70333,70334,70335,70335,70336,70337,70338,70339,70340,70340,70341,70342,70343,70344,70345,70345,70346,70347,70347,70348,70349,70350,70351,70352,70353,70354,70355,70356,70357,70358,70358,70359,70360,70361,70362,70363,70363,70364,70365,70366,70367,70368,70368,70369,70370,70370,70371,70372,70373,70374,70375,70375,70376,70377,70378,70379,70380,70380,70381,70382,70382,70383,70384,70385,70386,70387,70388,70389,70390,70390,70391,70392,70392,70393,70394,70394,70395,70396,70397,70398,70399,70400,70401,70402,70403,70404,70405,70405,70406,70407,70407,70408,70409,70410,70411,70412,70413,70414,70415,70415,70416,70417,70417,70418,70419,70419,70420,70421,70421,70422,70423,70424,70425,70426,70426,70427,70428,70429,70430,70431,70431,70432,70433,70434,70435,70436,70436,70437,70438,70438,70439,70440,70441,70442,70443,70444,70445,70446,70447,70448,70449,70449,70450,70451,70452,70453,70454,70454,70455,70456,70457,70458,70459,70460,70461,70462,70462,70463,70464,70465,70466,70467,70467,70468,70469,70470,70471,70472,70473,70474,70475,70476,70477,70478,70478,70479,70480,70481,70482,70483,70484,70485,70486,70486,70487,70488,70488,70489,70490,70491,70492,70493,70494,70495,70496,70496,70497,70498,70498,70499,70500,70501,70502,70503,70503,70504,70505,70506,70507,70508,70508,70509,70510,70510,70511,70512,70512,70513,70514,70515,70516,70517,70517,70518,70519,70519,70520,70521,70521,70522,70523,70524,70525,70526,70526,70527,70528,70529,70530,70531,70531,70532,70533,70533,70534,70535,70535,70536,70537,70538,70539,70540,70540,70541,70542,70543,70544,70545,70545,70546,70547,70547,70548,70549,70550,70551,70552,70552,70553,70554,70554,70555,70556,70557,70558,70559,70560,70561,70562,70563,70564,70565,70566,70567,70568,70568,70569,70570,70570,70571,70572,70572,70573,70574,70574,70575,70576,70577,70578,70579,70579,70580,70581,70582,70583,70584,70584,70585,70586,70587,70588,70589,70590,70591,70592,70593,70594,70595,70595,70596,70597,70598,70599,70600,70601,70602,70603,70603,70604,70605,70606,70607,70608,70608,70609,70610,70611,70612,70613,70614,70615,70616,70616,70617,70618,70619,70620,70621,70622,70623,70624,70625,70626,70627,70628,70629,70630,70630,70631,70632,70632,70633,70634,70635,70636,70637,70638,70639,70640,70640,70641,70642,70642,70643,70644,70644,70645,70646,70646,70647,70648,70649,70650,70651,70651,70652,70653,70653,70654,70655,70655,70656,70657,70658,70659,70660,70661,70662,70663,70664,70665,70666,70666,70667,70668,70669,70670,70671,70672,70673,70674,70675,70676,70677,70677,70678,70679,70680,70681,70682,70683,70684,70685,70686,70687,70688,70688,70689,70690,70690,70691,70692,70693,70694,70695,70695,70696,70697,70697,70698,70699,70700,70701,70702,70702,70703,70704,70705,70706,70707,70707,70708,70709,70709,70710,70711,70712,70713,70714,70715,70716,70717,70718,70719,70720,70721,70722,70723,70723,70724,70725,70726,70727,70728,70728,70729,70730,70730,70731,70732,70733,70734,70735,70735,70736,70737,70738,70739,70740,70741,70742,70743,70744,70745,70746,70747,70748,70749,70749,70750,70751,70751,70752,70753,70753,70754,70755,70755,70756,70757,70757,70758,70759,70760,70761,70762,70762,70763,70764,70764,70765,70766,70767,70768,70769,70769,70770,70771,70772,70773,70774,70775,70776,70777,70777,70778,70779,70779,70780,70781,70781,70782,70783,70783,70784,70785,70785,70786,70787,70788,70789,70790,70790,70791,70792,70792,70793,70794,70794,70795,70796,70797,70798,70799,70799,70800,70801,70802,70803,70804,70805,70806,70807,70807,70808,70809,70809,70810,70811,70812,70813,70814,70815,70816,70817,70817,70818,70819,70820,70821,70822,70823,70824,70825,70825,70826,70827,70827,70828,70829,70830,70831,70832,70833,70834,70835,70835,70836,70837,70838,70839,70840,70841,70842,70843,70844,70845,70846,70846,70847,70848,70848,70849,70850,70850,70851,70852,70853,70854,70855,70856,70857,70858,70858,70859,70860,70860,70861,70862,70863,70864,70865,70865,70866,70867,70868,70869,70870,70871,70872,70873,70873,70874,70875,70875,70876,70877,70878,70879,70880,70880,70881,70882,70883,70884,70885,70886,70887,70888,70889,70890,70891,70891,70892,70893,70894,70895,70896,70896,70897,70898,70898,70899,70900,70900,70901,70902,70903,70904,70905,70905,70906,70907,70907,70908,70909,70910,70911,70912,70912,70913,70914,70914,70915,70916,70916,70917,70918,70918,70919,70920,70920,70921,70922,70923,70924,70925,70925,70926,70927,70927,70928,70929,70930,70931,70932,70932,70933,70934,70935,70936,70937,70938,70939,70940,70940,70941,70942,70943,70944,70945,70946,70947,70948,70948,70949,70950,70951,70952,70953,70953,70954,70955,70955,70956,70957,70958,70157,70159,70160,70162,70164,70165,70167,70959,70959,70168,70170,70171,70173,70174,70174,70176,70960,70961,70177,70179,70180,70182,70184,70962,70185,70187,70187,70189,70963,70193,70195,70964,70196,70198,70200,70201,70203,70205,70206,70208,70210,70210,63098,63521,63096,63656,63947,63947,63762,63093,63091,63655,63946,63946,63654,63089,63089,70212,70214,70215,70217,70219,70965,70223,70225,70226,70228,70229,70229,70231,70233,70235,70236,70238,70241,70243,70966,70244,70246,70248,70248,70250,70251,70251,70253,70967,70254,70256,70258,70259,70261,70263,70265,70267,70269,70272,70274,70275,70968,70278,70280,70281,70283,70285,70285,70287,70289,70969,70293,70295,70297,70299,70301,70302,70304,70306,70306,70307,70309,70310,70312,70313,70313,70315,70317,70317,70319,70970,70320,70322,70324,70327,70329,70331,70331,70333,70335,70338,70340,70342,70343,70345,70347,70347,70349,70971,70350,70352,70972,70353,70355,70356,70356,70358,70360,70361,70363,70365,70366,70368,70370,70370,70372,70973,70974,70373,70375,70375,70377,70975,70378,70380,70382,70382,70384,70976,70385,70387,70977,70388,70390,70392,70392,70394,70396,70400,70402,70978,70403,70405,70407,70407,70409,70979,70410,70412,70980,70413,70415,70417,70417,70419,70421,70424,70426,70428,70428,70429,70431,70434,70436,70438,70444,70446,70447,70447,70449,70451,70452,70454,70456,70457,70459,70460,70460,70462,70464,70465,70467,70469,70981,70470,70472,70473,70475,70476,70476,70478,70480,70481,70483,70982,70486,70488,70490,70491,70493,70494,70494,70496,70498,70498,70500,70983,70501,70503,70505,70506,70508,70510,70510,70512,70514,70515,70517,70519,70519,70521,70523,70524,70526,70528,70529,70531,70533,70533,70535,70537,70538,70540,70542,70545,70547,70549,70552,70554,70556,70557,70559,70560,70560,70562,70563,70566,70568,70570,70570,70572,70574,70577,70579,70581,70582,70584,70586,70587,70589,70590,70590,70592,70593,70593,70595,70597,70984,70598,70600,70601,70603,70605,70606,70608,70610,70610,70611,70613,70614,70616,70618,70985,70619,70621,70621,70622,70624,70628,70630,70632,70634,70635,70637,70986,70638,70640,70640,70642,70644,70646,70648,70987,70649,70651,70653,70653,70655,70657,70658,70660,70988,70661,70663,70664,70664,70666,70668,70669,70671,70989,70672,70674,70990,70675,70677,70679,70991,70680,70682,70992,70683,70685,70686,70688,70690,70693,70695,70697,70697,70699,70993,70700,70702,70704,70705,70707,70709,70709,70711,70994,70994,70712,70714,70715,70717,70995,70721,70723,70725,70725,70726,70728,70728,70730,70732,70733,70735,70737,70996,70741,70743,70744,70746,70747,70747,70749,70751,70751,70753,70755,70755,70757,70759,70760,70762,70764,70767,70769,70771,70775,70777,70779,70779,70781,70783,70783,70785,70787,70790,70792,70794,70797,70799,70801,70802,70804,70805,70805,70807,70809,70809,70811,70812,70812,70814,70997,70997,70815,70817,70817,70819,70998,70999,70820,70822,70823,70825,70827,70827,70829,71000,70830,70832,71001,70835,70837,70838,70838,70840,70841,71002,70844,70846,70846,70848,70850,70850,70852,71003,70853,70855,71004,70856,70858,70860,70860,70862,70863,70863,70865,70867,70868,70870,71005,70871,70873,70875,70875,70877,71006,71007,70878,70880,70882,70883,70885,71008,70886,70888,70891,70893,71009,70894,70896,70898,70898,70900,70902,70903,70905,70907,70909,70910,70912,70914,70916,70918,70922,70923,70925,70925,70927,70929,70930,70932,70934,70937,70938,70940,70940,70942,71010,70943,70945,71011,71012,70946,70948,70948,70950,70951,70951,70953,70955,70955,70957,70958,70159,70160,70164,70959,70170,71013,71013,70171,70174,70961,70179,70180,70180,70184,71014,70962,70187,70963,71015,70196,70200,70201,70205,71016,71017,70206,70210,70210,63521,63097,63096,63947,63093,63091,63946,63089,70214,70215,70219,70965,70225,71018,70226,70229,70233,70235,70238,70240,70966,70244,70248,70254,70258,71019,70259,70263,70265,70265,70269,70271,70272,70275,70277,70968,70280,70281,70281,70285,70289,70969,70295,70297,70297,70301,71020,71020,70302,70306,70306,70309,71021,70313,70317,70970,70320,70324,70326,70327,70331,70335,70338,70342,71022,71022,70343,70347,70347,70971,71023,70353,70356,70360,70360,70361,70365,71024,70366,70370,70370,70973,71025,70974,70375,70975,71026,70378,70382,70385,70977,71027,70388,70392,70396,71028,70403,70407,70979,70410,70980,71029,70413,70417,70417,70421,70423,71030,70424,70428,70428,70431,70433,70434,70438,70440,70444,70447,70451,70451,70452,70456,70457,70460,70464,70465,70469,71031,70981,70472,70473,70473,70476,70480,70486,70490,71032,71032,70491,70494,70494,70498,70983,70983,70501,70505,71033,70506,70510,70510,70514,71034,71035,70515,70519,70519,70523,70524,70524,70528,71036,70529,70533,70537,70538,70542,71037,70543,70545,70549,70550,70552,70556,70557,70560,70563,71038,70566,70570,70570,70574,70576,71039,70577,70581,70582,70586,70587,70587,70590,70593,70593,70597,70984,70601,70605,71040,70606,70610,70613,70613,70614,70618,70985,70621,70624,70627,70628,70632,70634,70637,71041,70986,70640,70644,70987,70649,70653,70653,70657,70658,70658,70988,71042,70661,70664,70668,71043,70669,70989,71044,70675,70679,70991,70682,70992,70992,70685,70686,70686,70690,70692,71045,70693,70697,71046,70700,70704,70704,70705,70709,70709,70994,70714,70715,70995,70718,71047,70721,70725,70725,70728,70732,71048,70733,70737,70743,70744,70747,70747,70751,70755,70755,70759,71049,70760,70764,70766,70766,70767,70771,70775,70779,70783,70783,70787,70788,70790,70794,70796,70797,70801,70802,70802,70805,70809,70809,70812,70997,70997,70817,70998,70999,70822,70823,70823,70827,71000,70833,70835,70838,70838,70841,70843,71002,70846,70850,70856,70860,70863,70863,70867,71050,71051,70868,71005,71005,70871,70875,71007,70880,70882,70882,70885,71008,71008,70888,71052,71053,70894,70898,70898,70902,71054,70903,70907,70909,70909,70912,70914,70914,70918,70920,70922,70925,70929,70930,70934,70935,70937,70940,71010,71012,70948,70951,70951,70955,70958,70958,70159,70164,70165,70959,71013,71013,70174,70960,70961,70180,71014,71014,70962,70963,71055,71015,70200,71056,71017,70210,70210,63097,63096,63092,63091,63089,70214,70219,70220,71057,70965,71018,70226,70233,70235,70235,70240,70241,70241,70966,70248,71058,70254,71019,71059,70259,70265,70265,70271,70272,71060,70968,70281,70281,70289,71061,71062,70969,70297,71020,70306,71021,70310,70313,70970,71063,70320,70326,70327,70335,70337,70338,71022,70347,70353,70360,70365,71024,70370,71025,71025,70974,70975,71026,70382,70976,71027,70388,70396,71028,70407,70979,71029,70417,70423,71030,70428,70433,70433,70434,70440,70443,70444,70451,70451,70456,71064,70457,70464,70465,70465,71031,70981,70981,70473,70480,70484,70486,71032,71032,70494,70983,70983,70505,71065,71033,70510,71034,71035,70519,70524,70524,71036,70529,70529,70537,71066,70538,71037,70543,70543,70549,71067,70557,70563,70565,71038,70570,70576,71039,70581,71068,70582,70587,70593,70593,70984,70600,70601,71040,71069,70613,70618,71070,71071,70985,70624,70625,70627,70632,71072,70986,70644,70987,70653,70658,71042,70661,70668,71044,70679,70991,70991,70992,70686,70686,70692,71045,71045,70697,70993,71073,71046,70704,70704,70709,70714,70714,70715,70718,70725,70732,71048,71048,70737,70738,70743,70747,70755,70755,71049,71074,70760,70766,70771,70774,70775,70783,70788,70790,70796,70797,70802,70809,70809,70997,70998,70999,70823,71000,70833,70838,70843,70843,71002,70850,71004,70856,70863,71051,71005,70875,71008,71052,70889,71053,70898,71054,70903,70909,70914,70914,70920,70922,70937,71010,71075,71011,71012,70951,70958,70164,71076,71077,70165,71013,70960,70961,71014,71014,70963,70190,71055,70200,71078,71056,70210,63096,63092,63089,70214,71079,71057,71018,70226,70235,70241,70241,70248,70251,71058,71019,71059,71059,70265,70272,71060,70281,71061,71062,70297,71020,71020,71021,70310,70310,70970,71080,71081,71063,70326,70326,70327,70337,70338,70347,71023,71082,70353,70365,71024,71025,70975,71083,71026,70976,70385,71027,70396,70978,71028,70979,71029,70423,71084,71084,71030,70433,70443,70451,71064,70457,70465,70981,70981,70480,70481,70484,71032,70983,70983,71065,71085,71033,71034,71035,71035,70524,70529,70529,71066,71086,70543,71067,70550,70556,70557,70565,70565,71038,70576,71039,71068,71087,70582,70593,70600,70606,70613,71070,71071,70624,70625,70625,70632,70634,71072,70644,70646,70646,70987,70658,71042,70668,71088,71044,70991,70686,71045,70993,71073,71073,70704,70714,70714,70718,70720,70725,71048,70738,70996,70743,70755,70760,70771,71089,70772,70774,70783,70788,70796,71090,71091,70797,70809,70998,70999,71000,70833,70843,70850,71004,70863,71050,71092,71051,70875,70882,71008,70889,71093,71053,71054,70914,70922,70929,70935,70937,71075,70943,71011,70951,70958,71076,71094,71077,71013,70960,70960,71014,70190,71055,71078,71095,71056,63096,63093,63093,63092,70214,70226,70241,70251,71058,71059,70272,71096,71060,71061,70292,71062,71020,71020,70310,71080,71081,70326,70337,70338,71023,70350,71082,70365,71024,71024,70975,71083,71083,70976,70385,70385,70396,70397,70400,70978,70979,70980,71029,71084,71084,70433,70440,70443,71064,71097,70457,70981,70481,71098,70484,70983,71033,71035,70529,70529,71086,71099,70556,70565,70576,71100,71039,71087,70582,70600,70601,71101,70606,71070,71102,71071,70625,70625,70634,71041,71072,70646,70658,71042,71088,71103,71044,70686,71045,71073,70714,70720,70725,70738,70740,70996,70755,71074,70760,71089,70772,70772,70783,70788,70788,71090,71091,71091,70809,70998,70998,71000,70830,70833,70850,71003,70853,71004,71050,71092,70875,71006,71007,70882,70889,71104,71093,71054,70914,70929,70930,70935,71075,71105,70943,70951,70958,71077,70960,70190,71016,71056,63093,63093,70214,70220,71018,70226,70251,70967,71058,70272,70290,70292,71020,71080,71081,70337,70338,70350,70972,71082,71024,71083,71083,70385,70397,70400,70979,70980,70980,71084,70440,70443,71097,71106,70457,70481,70982,71098,70983,71085,71107,71033,70529,70556,70576,71100,71100,71087,70582,70582,70601,71069,71101,71070,71108,71102,70625,71041,71109,71072,70658,71042,71103,71043,71044,71045,71073,71047,70725,70740,70996,71074,71110,70760,70772,70788,70788,71091,70998,70998,70830,71001,70833,71003,70853,70853,71050,71092,71092,71006,71007,71111,71104,71054,71112,70943,70958,71113,71077,70190,70201,71016,63093,63093,70220,70222,71018,70251,70967,70967,70272,70277,70290,71020,71080,71080,70337,71114,71082,71083,70397,70400,70980,70440,70443,71106,70457,70457,70982,71098,71107,70529,71099,70556,71100,70582,71101,71108,71115,71115,71102,71041,71109,70658,71042,70990,71044,71073,71047,70740,70996,70996,71110,70760,70760,70788,70998,70998,71001,70833,70833,70853,71092,71111,71054,70903,71105,71112,70958,71116,71113,70190,63093,70222,71079,71079,71018,70967,70967,70277,71096,71117,70290,71080,71080,71114,71118,70972,71082,70397,70400,70440,70441,70457,71098,71085,71085,71107,71099,70550,70556,70582,71101,71115,71041,71109,71042,71043,70672,70990,71073,71047,70996,70760,70760,70998,70833,70833,71092,71007,71009,71111,70903,71116,70190,70192,70201,63093,71079,71079,70967,71096,71119,71117,71080,71080,71118,70338,70338,70972,70397,70400,70441,70443,71085,71099,71120,71085,71120,70457,70550,70582,71069,71069,71101,71041,70989,70672,71073,71047,70760,70833,71007,70889,71121,71007,71121,70833,70903,70914,71122,70903,71122,71009,71123,71116,70192,70201,71079,71096,71119,71080,70338,70338,70397,70399,70400,70443,70457,71120,71124,71125,71120,71125,70457,71124,71120,71099,71069,71041,71126,71069,71126,70550,70989,71073,70720,71127,70833,71121,71127,71121,70889,70833,71127,71047,71128,71009,71122,71128,71122,70914,71009,71128,70891,71123,70192,71129,71095,70201,71096,70338,70399,70400,71125,71130,71131,71125,71131,70457,71130,71125,71124,71126,71109,71132,71126,71132,70550,71109,71126,71041,70989,70720,71133,71134,71047,71127,71134,71127,70889,71047,71134,71135,71123,71129,70193,71055,71095,71096,71130,70538,71136,71136,70457,71131,71136,71131,71130,71109,71043,71137,71137,70550,71132,71137,71132,71109,70989,71133,71135,70889,70891,71138,71138,71135,71134,71138,71134,70889,71123,70193,70964,70964,71055,71096,70538,70543,71139,71139,70457,71136,71139,71136,70538,71140,70550,71137,71140,71137,71043,70550,71140,70543,70989,71135,71138,71138,70891,71141,71138,71141,70989,71123,70964,71096,71043,70989,71142,71142,70543,71140,71142,71140,71043,71123,71096,71061,71141,70543,71142,71141,71142,70989,70543,71141,70891,71094,71123,71061,70543,70891,71143,71143,70457,71139,71143,71139,70543,71094,71061,71119,70914,70457,71143,71143,70891,71128,71143,71128,70914,70958,71094,71119,70457,70914,70930,70958,71119,70338,70400,70457,70930,71105,70958,70338,70400,70930,70935,71105,70338,70400,70400,70935,71105,71144,71145,71146,71146,71147,71148,71148,71149,71150,71150,71144,71146,71146,71148,71150,71151,71152,71153,71153,71154,71155,71155,71156,71157,71157,71158,71159,71159,71160,71151,71151,71153,71155,71155,71157,71159,71159,71151,71155,71161,71162,71163,71163,71164,71165,71165,71166,71167,71167,71168,71161,71161,71163,71165,71165,71167,71161,71169,71170,71171,71171,71172,71173,71173,71174,71175,71175,71176,71169,71169,71171,71173,71173,71175,71169,71177,71178,71179,71179,71180,71181,71181,71182,71183,71184,71185,71186,71186,71177,71179,71179,71181,71183,71184,71186,71179,71179,71183,71184,71187,71188,71189,71189,71190,71191,71191,71192,71193,71193,71194,71195,71195,71187,71189,71189,71191,71193,71193,71195,71189,71196,71197,71198,71199,71200,71201,71201,71202,71203,71203,71204,71205,71205,71206,71207,71207,71208,71209,71209,71210,71211,71211,71212,71213,71213,71214,71215,71215,71216,71217,71218,71219,71220,71220,71221,71196,71196,71198,71199,71201,71203,71205,71205,71207,71209,71209,71211,71213,71215,71217,71218,71218,71220,71196,71196,71199,71201,71201,71205,71209,71209,71213,71215,71215,71218,71196,71201,71209,71215,71215,71196,71201,71222,71223,71224,71224,71225,71226,71227,71228,71229,71230,71231,71232,71232,71233,71234,71234,71235,71222,71222,71224,71226,71227,71229,71230,71230,71232,71234,71234,71222,71226,71227,71230,71234,71234,71226,71227,71236,71237,71238,71238,71239,71240,71240,71241,71242,71242,71243,71244,71244,71245,71246,71247,71248,71249,71249,71250,71251,71252,71253,71254,71254,71236,71238,71240,71242,71244,71244,71246,71255,71247,71249,71251,71252,71254,71238,71238,71240,71244,71255,71247,71251,71252,71238,71244,71255,71251,71252,71252,71244,71255,71256,71257,71258,71258,71259,71260,71260,71261,71262,71262,71263,71264,71264,71265,71266,71266,71256,71258,71260,71262,71264,71264,71266,71258,71258,71260,71264,71267,71268,71269,71269,71270,71271,71272,71273,71274,71275,71276,71277,71277,71278,71279,71280,71281,71282,71283,71284,71285,71286,71287,71288,71288,71289,71290,71267,71269,71271,71272,71274,71275,71275,71277,71279,71280,71282,71283,71283,71285,71286,71286,71288,71290,71267,71271,71272,71272,71275,71279,71280,71283,71286,71286,71290,71267,71272,71279,71291,71280,71286,71267,71272,71291,71280,71280,71267,71272,71292,71293,71294,71294,71295,71296,71296,71297,71298,71298,71299,71300,71300,71292,71294,71294,71296,71298,71298,71300,71294,71301,71302,71303,71303,71304,71305,71306,71307,71308,71309,71310,71311,71312,71313,71314,71314,71315,71316,71317,71318,71319,71319,71320,71321,71321,71322,71323,71323,71324,71301,71301,71303,71305,71306,71308,71325,71326,71309,71311,71311,71312,71314,71314,71316,71327,71317,71319,71321,71321,71323,71301,71301,71305,71306,71306,71325,71326,71326,71311,71314,71327,71317,71321,71321,71301,71306,71326,71314,71327,71327,71321,71306,71306,71326,71327,71328,71329,71330,71330,71331,71332,71332,71333,71334,71334,71335,71336,71336,71337,71338,71339,71340,71341,71328,71330,71332,71332,71334,71336,71336,71338,71339,71339,71341,71342,71342,71328,71332,71332,71336,71339,71339,71342,71332,71343,71344,71345,71345,71346,71347,71347,71348,71349,71349,71350,71351,71352,71353,71343,71343,71345,71347,71347,71349,71351,71354,71352,71343,71347,71351,71354,71354,71343,71347,71355,71356,71357,71357,71358,71359,71359,71360,71361,71362,71363,71364,71365,71366,71367,71368,71369,71370,71371,71372,71373,71374,71375,71376,71377,71378,71379,71379,71380,71381,71382,71383,71384,71385,71386,71387,71388,71389,71390,71390,71391,71392,71355,71357,71359,71362,71364,71365,71365,71367,71393,71368,71370,71371,71371,71373,71374,71374,71376,71377,71377,71379,71381,71381,71382,71384,71385,71387,71388,71388,71390,71392,71394,71355,71359,71362,71365,71393,71368,71371,71374,71374,71377,71381,71381,71384,71395,71388,71392,71396,71394,71359,71361,71362,71393,71368,71368,71374,71381,71381,71395,71397,71385,71388,71396,71394,71361,71362,71368,71381,71397,71398,71385,71396,71394,71362,71368,71368,71397,71398,71398,71396,71394,71394,71368,71398,71399,71400,71401,71401,71402,71403,71403,71404,71405,71405,71406,71407,71407,71399,71401,71401,71403,71405,71405,71407,71401,71408,71409,71410,71410,71411,71412,71412,71413,71414,71415,71416,71408,71408,71410,71412,71412,71414,71417,71415,71408,71412,71412,71417,71415,71418,71419,71420,71420,71421,71422,71422,71423,71424,71424,71425,71426,71426,71418,71420,71420,71422,71424,71424,71426,71420,71427,71428,71429,71430,71431,71432,71432,71433,71434,71435,71436,71437,71438,71439,71440,71441,71442,71443,71443,71444,71445,71446,71447,71448,71449,71450,71451,71451,71452,71453,71454,71455,71456,71456,71457,71458,71459,71460,71461,71461,71462,71427,71427,71429,71463,71430,71432,71434,71435,71437,71438,71441,71443,71445,71446,71448,71464,71449,71451,71453,71454,71456,71458,71459,71461,71427,71427,71463,71430,71430,71434,71465,71435,71438,71440,71440,71441,71445,71445,71446,71464,71449,71453,71454,71454,71458,71459,71459,71427,71430,71435,71440,71445,71445,71464,71449,71449,71454,71459,71459,71430,71465,71435,71445,71449,71449,71459,71465,71465,71435,71449,71466,71467,71468,71468,71469,71470,71471,71472,71473,71473,71474,71475,71475,71476,71477,71478,71479,71480,71480,71481,71482,71483,71484,71485,71486,71487,71488,71488,71489,71490,71490,71491,71492,71493,71494,71495,71495,71496,71497,71498,71499,71500,71500,71501,71502,71503,71504,71505,71505,71506,71507,71508,71509,71510,71510,71511,71512,71512,71513,71514,71514,71515,71516,71516,71517,71518,71519,71520,71521,71521,71522,71523,71466,71468,71470,71471,71473,71475,71475,71477,71478,71478,71480,71482,71486,71488,71490,71490,71492,71493,71493,71495,71497,71498,71500,71502,71503,71505,71507,71508,71510,71512,71512,71514,71516,71516,71518,71519,71524,71466,71470,71471,71475,71478,71478,71482,71525,71486,71490,71493,71502,71503,71507,71507,71508,71512,71512,71516,71519,71524,71470,71471,71471,71478,71525,71485,71486,71493,71498,71502,71507,71507,71512,71519,71471,71525,71483,71485,71493,71497,71497,71498,71507,71507,71519,71521,71524,71471,71483,71483,71485,71497,71507,71521,71523,71524,71483,71497,71497,71507,71523,71523,71524,71497,71526,71527,71528,71528,71529,71530,71530,71531,71532,71532,71533,71534,71534,71535,71536,71536,71526,71528,71528,71530,71532,71532,71534,71536,71536,71528,71532,71537,71538,71539,71539,71540,71541,71541,71542,71543,71543,71544,71537,71537,71539,71541,71541,71543,71537,71545,71546,71547,71548,71549,71550,71550,71551,71552,71552,71545,71547,71548,71550,71552,71552,71547,71548,71553,71554,71555,71555,71556,71557,71557,71558,71559,71559,71560,71553,71553,71555,71557,71557,71559,71553,71561,71562,71563,71564,71565,71566,71566,71567,71568,71568,71569,71570,71570,71571,71572,71572,71573,71574,71574,71575,71576,71576,71577,71578,71579,71580,71581,71581,71582,71583,71583,71584,71585,71586,71587,71588,71589,71590,71591,71592,71593,71594,71594,71595,71596,71597,71598,71599,71599,71600,71601,71601,71602,71603,71604,71605,71606,71606,71607,71608,71609,71610,71611,71612,71613,71614,71614,71615,71616,71616,71617,71618,71619,71620,71621,71561,71563,71564,71564,71566,71568,71570,71572,71574,71574,71576,71578,71579,71581,71583,71583,71585,71622,71589,71591,71592,71592,71594,71596,71597,71599,71601,71604,71606,71608,71612,71614,71616,71616,71618,71623,71619,71621,71561,71561,71564,71568,71568,71570,71574,71574,71578,71579,71579,71583,71622,71624,71589,71592,71592,71596,71625,71597,71601,71603,71603,71604,71608,71611,71612,71616,71619,71561,71568,71574,71579,71622,71624,71592,71625,71625,71597,71603,71603,71608,71609,71611,71616,71623,71619,71568,71574,71574,71622,71586,71624,71625,71603,71603,71609,71611,71611,71623,71619,71619,71574,71586,71588,71624,71603,71603,71611,71619,71619,71586,71588,71588,71603,71619,71626,71627,71628,71629,71630,71631,71631,71632,71633,71634,71635,71636,71636,71637,71638,71638,71639,71640,71641,71642,71643,71643,71644,71645,71645,71646,71647,71648,71649,71650,71650,71651,71652,71652,71653,71654,71654,71655,71656,71656,71657,71658,71659,71660,71661,71662,71663,71664,71664,71665,71666,71666,71667,71668,71668,71669,71670,71670,71671,71672,71672,71673,71674,71674,71675,71676,71676,71677,71678,71678,71679,71680,71681,71682,71683,71683,71684,71685,71686,71687,71688,71688,71689,71690,71690,71691,71692,71693,71694,71695,71696,71697,71698,71699,71700,71701,71702,71703,71704,71705,71706,71707,71707,71708,71709,71709,71710,71711,71712,71713,71714,71714,71715,71716,71717,71718,71719,71720,71721,71722,71626,71628,71629,71629,71631,71633,71634,71636,71638,71638,71640,71723,71641,71643,71645,71645,71647,71724,71725,71648,71650,71650,71652,71654,71654,71656,71658,71662,71664,71666,71666,71668,71670,71670,71672,71674,71674,71676,71678,71678,71680,71726,71681,71683,71685,71686,71688,71690,71690,71692,71727,71693,71695,71696,71696,71698,71728,71699,71701,71729,71730,71702,71704,71705,71707,71709,71709,71711,71731,71712,71714,71716,71720,71722,71732,71733,71626,71629,71629,71633,71734,71634,71638,71723,71735,71641,71645,71725,71650,71654,71661,71662,71666,71666,71670,71674,71674,71678,71726,71736,71681,71685,71737,71686,71690,71727,71693,71696,71728,71699,71729,71730,71704,71738,71705,71709,71731,71731,71712,71716,71719,71720,71732,71733,71629,71734,71739,71634,71723,71735,71645,71724,71724,71725,71654,71661,71666,71674,71674,71726,71740,71736,71685,71741,71737,71690,71727,71727,71696,71728,71728,71729,71730,71705,71731,71716,71717,71719,71732,71732,71733,71734,71735,71724,71654,71659,71661,71674,71674,71740,71736,71736,71741,71737,71737,71727,71728,71728,71730,71738,71705,71716,71742,71717,71732,71734,71723,71735,71654,71743,71659,71674,71674,71736,71737,71737,71728,71738,71744,71705,71742,71717,71734,71745,71739,71723,71654,71743,71674,71737,71737,71738,71744,71744,71742,71746,71717,71745,71747,71739,71654,71658,71748,71743,71737,71737,71744,71746,71749,71717,71747,71747,71739,71658,71737,71746,71749,71749,71747,71658,71748,71737,71749,71749,71658,71748,71750,71751,71752,71752,71753,71754,71754,71755,71756,71756,71757,71758,71758,71759,71760,71760,71761,71762,71762,71763,71764,71765,71766,71767,71768,71769,71770,71770,71771,71772,71772,71773,71774,71775,71776,71777,71777,71778,71779,71780,71781,71782,71783,71784,71785,71786,71787,71788,71788,71789,71790,71790,71791,71792,71792,71793,71794,71795,71796,71797,71797,71798,71799,71800,71801,71802,71802,71803,71804,71805,71806,71807,71807,71808,71809,71809,71810,71811,71812,71813,71814,71814,71815,71816,71817,71818,71819,71820,71821,71822,71822,71823,71824,71825,71826,71827,71827,71828,71829,71829,71830,71831,71832,71833,71834,71834,71835,71836,71837,71838,71839,71839,71840,71841,71841,71842,71843,71844,71845,71846,71847,71848,71849,71849,71850,71851,71851,71852,71853,71854,71855,71856,71857,71858,71859,71860,71861,71862,71862,71863,71864,71865,71866,71867,71867,71868,71869,71869,71870,71871,71871,71872,71873,71874,71875,71876,71876,71877,71878,71878,71879,71880,71881,71882,71883,71883,71884,71885,71885,71886,71887,71887,71888,71889,71890,71891,71892,71892,71893,71894,71894,71895,71896,71896,71897,71898,71898,71899,71900,71900,71901,71902,71902,71903,71904,71904,71905,71906,71907,71908,71909,71909,71910,71911,71912,71913,71914,71914,71915,71916,71916,71917,71918,71919,71920,71921,71921,71922,71923,71923,71924,71925,71925,71926,71927,71927,71928,71929,71929,71930,71931,71932,71933,71934,71935,71936,71937,71937,71938,71939,71939,71940,71941,71942,71943,71944,71945,71946,71947,71948,71949,71950,71950,71951,71952,71952,71953,71954,71955,71956,71957,71957,71958,71959,71960,71961,71962,71963,71964,71965,71965,71966,71967,71967,71968,71969,71969,71970,71971,71972,71973,71974,71974,71975,71976,71976,71977,71978,71979,71980,71981,71982,71983,71984,71985,71986,71987,71987,71988,71989,71989,71990,71991,71991,71992,71993,71993,71994,71995,71996,71997,71998,71999,72000,72001,72001,72002,72003,72003,72004,72005,72005,72006,72007,71750,71752,71754,71756,71758,71760,71760,71762,71764,71768,71770,71772,71772,71774,71775,71775,71777,71779,71780,71782,72008,71783,71785,72009,71786,71788,71790,71790,71792,71794,71795,71797,71799,72010,71800,71802,71805,71807,71809,71809,71811,72011,71812,71814,71816,71817,71819,71820,71820,71822,71824,72012,71825,71827,71827,71829,71831,71832,71834,71836,71837,71839,71841,71841,71843,71844,71844,71846,72013,72013,71847,71849,71849,71851,71853,72014,71854,71856,72015,71857,71859,71860,71862,71864,71865,71867,71869,71869,71871,71873,72016,71874,71876,71876,71878,71880,71881,71883,71885,71887,71889,71890,71892,71894,71896,71896,71898,71900,71900,71902,71904,71904,71906,72017,71907,71909,71911,71914,71916,71918,71919,71921,71923,71923,71925,71927,71927,71929,71931,71932,71934,72018,71935,71937,71939,71939,71941,72019,71942,71944,72020,71945,71947,72021,71948,71950,71952,71952,71954,72022,71955,71957,71959,71960,71962,72023,71963,71965,71967,71967,71969,71971,71972,71974,71976,71979,71981,72024,71982,71984,72025,72025,71985,71987,71987,71989,71991,71991,71993,71995,71996,71998,72026,71999,72001,72003,72003,72005,72007,71750,71754,71756,71756,71760,71764,71768,71772,71775,71775,71779,72027,72028,71780,72008,72008,71783,72009,71786,71790,71794,71794,71795,71799,72010,71802,71804,71805,71809,72011,71812,71816,71817,71817,71820,71824,72012,71827,71831,71832,71836,71837,71837,71841,71844,71844,72013,71849,71849,71853,72014,72014,71856,72015,72015,71859,72029,72030,71860,71864,72031,71865,71869,71869,71873,72032,72016,71876,71880,71881,71885,71887,71887,71890,71892,71892,71896,71900,71900,71904,72017,71918,71919,71923,71923,71927,71931,71932,72018,71935,71935,71939,72019,71942,72020,71945,71948,71952,72022,72033,71955,71959,72034,71960,72023,71963,71967,71971,71972,71976,71978,72025,71987,71991,71991,71995,72035,72026,71999,72003,72003,72007,72036,72037,71750,71756,71756,71764,72038,71767,71768,71775,72028,72008,72009,72009,71786,71794,71799,72010,71804,71805,72011,71812,71812,71817,71824,72012,71831,72039,71832,71837,71844,71844,71849,72014,72014,72015,72029,72030,71864,72040,72031,71869,72032,72041,71881,71887,71887,71892,71900,71900,72017,71907,71918,71923,71931,71932,71935,72019,72021,71948,72022,72033,71959,72042,72023,71963,71971,72043,71972,71978,72025,71991,72035,71996,72026,72003,72003,72036,72037,72037,71756,72038,71765,71767,71775,72009,71794,71799,71799,71804,71805,71805,71812,71824,72012,72039,72044,72045,71832,71844,71844,72014,72029,72046,72030,72040,72047,72031,72032,72041,71887,71900,71900,71907,71911,71914,71918,71931,71931,71932,72019,72021,72022,72033,72033,72042,72048,72023,71971,72043,72043,71978,71979,71982,72025,72035,71996,72003,72037,71765,71775,72027,72009,71799,71805,71805,71824,72049,72012,72044,72050,72050,72045,71844,71844,72029,72051,72046,72040,72052,72052,72047,72032,72041,71900,71911,71931,72019,71942,71945,72021,72033,72033,72048,72053,72023,72043,71979,71982,72035,71996,71996,72037,72038,71765,72027,72054,72028,72009,71805,71805,72049,72055,72050,71844,72051,72052,72032,72056,71880,72041,71911,71914,71931,71942,72033,72053,72034,72034,72023,71979,72024,71982,71996,71765,72054,72028,72028,71805,72055,72012,72050,72051,72052,72056,72016,71880,71911,71912,71914,71942,71945,72033,72034,71979,72024,71996,72038,72028,72055,72057,72057,72012,72051,71880,71912,71914,71914,71945,72033,72033,71979,72024,71765,72028,72057,72057,72051,72046,71880,71914,72033,72033,72024,72038,72038,71765,72057,72057,72046,72052,72016,71880,72033,72038,72057,72052,72016,72033,72038,72038,72052,72016,72058,72059,72060,72061,72062,72063,72063,72064,72065,72065,72066,72067,72067,72068,72069,72069,72070,72071,72071,72072,72073,72074,72075,72076,72076,72077,72078,72078,72079,72080,72081,72082,72058,72058,72060,72061,72061,72063,72065,72065,72067,72069,72069,72071,72073,72083,72074,72076,72076,72078,72080,72058,72061,72065,72065,72069,72073,72083,72076,72080,72058,72065,72073,72073,72083,72080,72081,72058,72073,72073,72080,72081,72084,72085,72086,72086,72087,72088,72088,72089,72084,72084,72086,72088,72090,72091,72092,72092,72093,72094,72094,72095,72096,72096,72097,72098,72099,72100,72101,72101,72102,72103,72090,72092,72094,72094,72096,72098,72098,72099,72101,72090,72094,72098,72098,72101,72103,72103,72090,72098,72104,72105,72106,72106,72107,72108,72109,72110,72111,72111,72112,72113,72113,72114,72115,72115,72116,72117,72117,72118,72119,72119,72120,72121,72121,72122,72123,72123,72124,72125,72126,72127,72128,72129,72130,72131,72132,72133,72104,72104,72106,72108,72109,72111,72113,72113,72115,72117,72117,72119,72121,72121,72123,72125,72134,72126,72128,72135,72129,72131,72136,72132,72104,72104,72108,72109,72109,72113,72117,72117,72121,72125,72134,72128,72135,72136,72104,72109,72117,72125,72137,72134,72135,72131,72131,72136,72109,72109,72117,72137,72137,72134,72131,72131,72109,72137,72138,72139,72140,72140,72141,72142,72142,72143,72144,72145,72146,72147,72147,72148,72149,72150,72151,72152,72153,72154,72155,72155,72156,72157,72157,72158,72138,72142,72144,72145,72145,72147,72149,72153,72155,72157,72157,72138,72140,72140,72142,72145,72145,72149,72150,72152,72153,72157,72157,72140,72145,72145,72150,72152,72152,72157,72145,70846,70845,72159,72159,72160,72161,72161,72162,72163,72164,72165,72166,72166,72167,72168,72169,72170,72171,72172,72173,72174,72175,72176,72177,72177,72178,72179,72179,72180,72181,72182,72183,72184,72185,72186,72187,72187,72188,72189,72190,72191,72192,72193,72194,72195,72196,72197,72198,72198,72199,72200,72201,72202,72203,72203,72204,72205,72206,72207,72208,72209,72210,72211,72212,72213,72214,72214,72215,72216,72217,72218,72219,72220,72221,72222,72223,72224,72225,72226,72227,72228,72229,72230,72231,72231,72232,72233,72234,72235,72236,72236,72237,72238,72238,72239,72240,72240,72241,72242,72243,72244,72245,72246,72247,72248,72248,72249,72250,72250,72251,72252,72253,72254,72255,72255,72256,72257,72257,72258,72259,72259,72260,72261,72261,72262,72263,72263,72264,72265,72266,72267,72268,72269,72270,72271,72271,72272,72273,72274,72275,72276,72276,72277,72278,72278,72279,72280,72281,72282,72283,72284,72285,72286,72287,72288,72289,72289,72290,72291,72292,72293,72294,72294,72295,72296,72296,72297,72298,72298,72299,72300,72301,72302,72303,72304,72305,72306,72306,72307,72308,72309,72310,72311,72312,72313,72314,72315,72316,72317,72318,72319,72320,72320,72321,72322,72323,72324,72325,72325,72326,72327,72328,72329,72330,72330,72331,72332,72332,72333,72334,72335,72336,72337,72338,72339,72340,72341,72342,72343,72343,72344,72345,72345,72346,72347,72347,72348,72349,72349,72350,72351,72352,72353,72354,72355,72356,72357,72358,72359,72360,72361,72362,72363,72364,72365,72366,72367,72368,72369,72369,72370,72371,72372,72373,72374,72375,72376,72377,72377,72378,72379,72379,72380,72381,72382,72383,72384,72384,72385,72386,72387,72388,72389,72389,72390,72391,72392,72393,72394,72394,72395,72396,72397,72398,72399,72400,72401,72402,72403,72404,72405,72406,72407,72408,72408,72409,72410,72411,72412,72413,72413,72414,72415,72415,72416,72417,72417,72418,72419,72420,72421,72422,72423,72424,72425,72425,72426,72427,72428,72429,72430,72430,72431,72432,72433,72434,72435,72435,72436,72437,72437,72438,72439,72440,72441,72442,72443,72444,72445,72446,72447,72448,72448,72449,72450,72450,72451,72452,72452,72453,72454,72455,72456,72457,72457,72458,72459,72459,72460,72461,72461,72462,72463,72464,72465,72466,72466,70158,70157,70157,70958,70957,70952,70951,70950,70947,70946,71012,71012,71011,70945,70944,70943,71112,71112,71105,71075,71075,71010,70942,70939,70938,70937,70936,70935,70934,70931,70930,70929,70924,70923,70922,70921,70920,70919,70915,70914,70913,70911,70910,70909,70908,70907,70906,70904,70903,71054,70895,70894,71053,71053,71093,71104,71104,71111,71009,71009,70893,70892,70892,70891,70890,70890,70889,71052,71052,70888,70887,70887,70886,71008,71008,70885,70884,70884,70883,70882,70879,70878,71007,71007,71006,70877,70872,70871,71005,70869,70868,71051,71051,71092,71050,71050,70867,70866,70864,70863,70862,70857,70856,71004,71004,70855,70854,70854,70853,71003,70851,70850,70849,70846,72159,72161,72161,72163,72164,72166,72168,72467,72169,72171,72172,72172,72174,72175,72175,72177,72179,72179,72181,72182,72182,72184,72468,72185,72187,72189,72190,72192,72193,72193,72195,72469,72470,72196,72198,72198,72200,72201,72201,72203,72205,72206,72208,72471,72472,72212,72214,72217,72219,72220,72220,72222,72473,72223,72225,72474,72229,72231,72233,72234,72236,72238,72243,72245,72246,72250,72252,72253,72253,72255,72257,72257,72259,72261,72263,72265,72475,72266,72268,72269,72269,72271,72273,72273,72274,72276,72276,72278,72280,72281,72283,72476,72477,72284,72286,72287,72289,72291,72478,72292,72294,72294,72296,72298,72298,72300,72301,72301,72303,72304,72306,72308,72479,72311,72312,72314,72480,72315,72317,72318,72320,72322,72323,72325,72327,72330,72332,72334,72335,72337,72338,72341,72343,72345,72347,72349,72351,72352,72354,72481,72355,72357,72482,72482,72358,72360,72361,72363,72364,72364,72366,72483,72367,72369,72371,72371,72372,72374,72484,72375,72377,72377,72379,72381,72382,72384,72386,72387,72389,72391,72392,72394,72396,72397,72399,72485,72403,72405,72406,72406,72408,72410,72413,72415,72417,72423,72425,72427,72427,72428,72430,72430,72432,72486,72433,72435,72437,72487,72440,72442,72443,72445,72488,72488,72446,72448,72448,72450,72452,72455,72457,72459,72459,72461,72463,72463,72464,72466,72466,70157,70957,70953,70952,70950,70947,71012,70945,70944,71112,71075,70939,70937,70936,70936,70934,70933,70932,70931,70929,70924,70922,70921,70916,70915,70913,70911,70909,70908,70905,70904,71054,70896,70895,71053,71053,71104,71009,71009,70892,70890,70890,71052,70887,70887,71008,70884,70884,70882,70881,70879,71007,70877,70872,71005,70870,70869,71051,71050,70865,70864,70862,70858,70857,71004,70854,71003,70852,70846,72161,72164,72164,72166,72467,72172,72175,72179,72179,72182,72468,72185,72189,72489,72190,72193,72469,72470,72198,72201,72201,72205,72490,72491,72206,72471,72472,72214,72216,72216,72217,72220,72220,72473,72223,72223,72474,72226,72228,72229,72233,72234,72238,72240,72243,72246,72248,72250,72253,72257,72257,72261,72263,72266,72269,72273,72273,72276,72280,72281,72476,72477,72477,72286,72492,72287,72291,72493,72294,72298,72301,72306,72479,72494,72309,72311,72314,72480,72317,72318,72318,72322,72495,72323,72327,72496,72328,72330,72334,72335,72338,72340,72345,72347,72351,72352,72481,72355,72482,72360,72497,72361,72364,72483,72483,72367,72371,72371,72374,72498,72484,72377,72381,72382,72386,72499,72387,72391,72500,72392,72396,72397,72397,72485,72400,72501,72403,72406,72406,72410,72411,72411,72413,72417,72423,72427,72430,72502,72433,72437,72487,72442,72503,72504,72443,72488,72448,72452,72454,72463,72466,70957,70954,70953,70950,70947,70945,70944,70944,71075,70942,70939,70936,70933,70932,70929,70928,70924,70921,70919,70917,70916,70913,70906,70905,71054,70896,71053,71009,71009,70890,70887,70887,70884,70881,70880,70879,70877,70869,71050,70866,70865,70862,70861,70858,71004,70854,70854,70852,70851,70847,70846,72164,72164,72467,72169,72172,72179,72468,72505,72185,72489,72506,72190,72469,72507,72470,72201,72201,72490,72508,72211,72472,72216,72216,72220,72223,72223,72226,72228,72228,72233,72234,72234,72240,72242,72243,72248,72250,72250,72257,72263,72509,72266,72273,72273,72280,72510,72281,72477,72492,72306,72494,72511,72309,72314,72512,72480,72318,72495,72328,72334,72335,72345,72351,72352,72482,72497,72361,72361,72483,72371,72498,72484,72381,72513,72382,72499,72387,72500,72392,72392,72397,72400,72406,72411,72417,72423,72430,72486,72502,72437,72439,72514,72487,72503,72504,72488,72448,72448,72454,72455,72459,72463,70957,70955,70954,70950,70947,70944,70942,70939,70933,70932,70932,70928,70927,70918,70917,70913,70908,70906,71054,70896,71009,70887,70881,70880,70877,70870,70869,70866,70859,70858,70854,70847,72164,72169,72169,72172,72468,72489,72506,72469,72469,72507,72201,72201,72508,72515,72209,72211,72216,72216,72223,72228,72228,72234,72242,72243,72250,72263,72509,72273,72510,72510,72281,72492,72306,72511,72309,72309,72512,72516,72480,72495,72323,72328,72335,72340,72345,72352,72355,72355,72482,72361,72361,72371,72498,72498,72381,72513,72513,72499,72517,72387,72392,72400,72501,72406,72417,72518,72423,72486,72519,72502,72439,72514,72503,72504,72504,72448,72455,72455,72459,70957,70948,70947,70942,70939,70932,70927,70918,70913,70912,70908,71054,70902,70896,70887,70881,70881,70877,70876,70872,70870,70866,70859,70854,70851,70848,70847,72169,72505,72489,72469,72469,72201,72515,72520,72209,72216,72216,72228,72242,72242,72243,72263,72509,72510,72492,72306,72309,72516,72480,72323,72496,72328,72340,72341,72355,72361,72498,72513,72517,72521,72387,72400,72402,72501,72417,72419,72518,72486,72522,72523,72519,72439,72514,72504,72455,72455,70957,70956,70948,70942,70941,70939,70927,70926,70919,70918,70912,70908,70902,70901,70897,70896,70881,70881,70876,70875,70873,70872,70866,70860,70859,70851,70849,70848,72169,72505,72469,72515,72216,72242,72524,72216,72524,72520,72242,72263,72475,72509,72492,72287,72304,72306,72516,72328,72341,72345,72345,72355,72498,72513,72521,72387,72387,72402,72501,72501,72419,72525,72422,72518,72522,72523,72439,72526,72526,72514,72455,72455,70956,70955,70948,70941,70940,70939,70926,70925,70919,70912,70911,70908,70901,70900,70898,70897,70881,70881,70875,70874,70873,70866,70865,70861,70860,70851,72169,72468,72527,72169,72527,70849,72468,72505,72515,72528,72520,72524,72528,72524,72242,72520,72528,72471,72242,72475,72529,72509,72287,72493,72304,72516,72530,72345,72498,72531,72345,72531,72328,72501,72525,72420,72422,72522,72523,72523,72526,72455,72455,70955,70950,70948,70940,70939,70939,70925,70924,70919,70911,70908,70908,70900,70899,70899,70898,70881,70873,70865,70861,70861,70851,70849,72468,72515,72532,72532,70849,72527,72532,72527,72468,72533,72471,72528,72533,72528,72242,72471,72533,72491,72242,72529,72534,72509,72493,72478,72535,72328,72531,72535,72531,72498,72328,72535,72496,72501,72420,72422,72422,72523,72455,72455,70950,70949,70948,70939,70924,70924,70919,70908,70881,70874,72536,70881,72536,70899,72537,70849,72532,72537,72532,72515,70849,72537,70861,72538,72491,72533,72538,72533,72242,72491,72538,72539,72242,72534,72509,72498,72513,72540,72540,72496,72535,72540,72535,72498,72422,72455,72541,72422,72541,72501,72455,70949,70948,70924,70908,72542,70924,72542,70948,70874,70873,72543,72543,70899,72536,72543,72536,70874,72544,70861,72537,72537,72515,72545,72537,72545,72544,70861,72544,72546,70861,72546,70873,72547,72539,72538,72547,72538,72242,72539,72547,72515,72242,72509,72478,72548,72501,72541,72548,72541,72455,72501,72548,72387,72549,70948,72542,72549,72542,70908,70948,72549,72455,72550,70873,72546,72550,72546,72544,72551,72544,72545,72551,72545,72515,72544,72551,72550,70873,72550,72552,72552,70899,72543,72552,72543,70873,72242,72478,72553,72242,72553,72554,72547,72554,72555,72547,72555,72515,72554,72547,72242,72556,72387,72548,72556,72548,72455,72387,72556,72513,70908,70899,72557,70908,72557,72558,72549,72558,72559,72549,72559,72455,72558,72549,70908,72552,72478,72560,72552,72560,70899,72478,72552,72550,72554,72550,72551,72551,72515,72555,72551,72555,72554,72550,72554,72553,72550,72553,72478,72561,72513,72556,72556,72455,72562,72556,72562,72561,72513,72561,72563,72563,72496,72540,72563,72540,72513,72560,72294,72564,72560,72564,70899,72294,72560,72478,72563,72565,72566,72563,72566,72496,72565,72563,72561,72567,72561,72562,72567,72562,72455,72561,72567,72565,72568,72496,72566,72568,72566,72565,72496,72568,72480,72564,72301,72569,72564,72569,70899,72301,72564,72294,70899,72480,72568,72568,72565,72570,72568,72570,70899,72558,72565,72567,72567,72455,72559,72567,72559,72558,72565,72558,72557,72557,70899,72570,72557,72570,72565,72569,72304,72571,72569,72571,70899,72304,72569,72301,72530,72480,70899,72530,70899,72571,72530,72571,72304,72572,72573,72574,72574,72575,72576,72576,72577,72578,72572,72574,72576,72576,72578,72572,72579,72580,72581,72581,72582,72583,72583,72584,72585,72585,72579,72581,72581,72583,72585,72586,72587,72588,72588,72589,72590,72591,72592,72593,72586,72588,72590,72590,72591,72593,72594,72586,72590,72590,72593,72594,72416,72415,72595,72595,72596,72597,72598,72599,72600,72600,72601,72602,72603,72604,72605,72605,72606,72607,72608,72609,72610,72611,72612,72613,72613,72614,72615,72615,72616,72617,72617,72618,72619,72619,72620,72621,72621,72622,72623,72624,72625,72626,72626,72627,72628,72629,72630,72631,72632,72633,72634,72635,72636,72637,72637,72638,72639,72640,72641,72642,72642,72643,72644,72645,72646,72647,72647,72648,72649,72649,72650,72651,72652,72653,72654,72655,72656,72657,72658,72659,72660,72661,72662,72663,72663,72664,72665,72666,72667,72668,72669,72670,72671,72671,72672,72673,72674,72675,72676,72677,72678,72679,72680,72681,72682,72682,72683,72684,72685,72686,72687,72688,72689,72690,72691,72692,72693,72693,72694,72695,72695,72696,72697,72697,72698,72699,72700,72701,72702,72703,72704,72705,72705,72706,72707,72708,72709,72710,72711,72712,72713,72714,72715,72716,72717,72718,72719,72720,72721,72722,72723,72724,72725,72725,72726,72727,72728,72729,72730,72730,72731,72732,72733,72734,72735,72735,72736,72737,72738,72739,72740,72741,72742,72743,72743,72744,72745,72745,63186,63185,63183,63182,63181,63180,63179,63526,63177,63176,63175,63175,63174,63173,63173,63172,63171,63171,63170,64005,64005,63525,63169,63168,63167,64149,64149,63663,63524,63165,63164,63163,63158,63157,63662,63662,63768,63843,63843,63949,64004,64004,63889,63767,63153,63152,63661,63661,63842,63151,63144,63143,63766,63766,63765,63660,63139,63138,63137,63137,63136,63135,63133,63132,63659,63659,63948,63131,63130,63129,63128,63125,63124,63123,63122,63121,63120,63114,63113,63658,63658,63888,63523,63111,63110,63764,63106,63105,63657,63657,63841,63887,63887,63522,63104,63103,63102,63101,63100,63099,70210,70207,70206,71017,71017,71056,71016,70202,70201,71095,71095,71078,70200,70197,70196,71015,71015,71055,70964,70194,70193,71129,71129,70192,70191,70191,70190,70963,70186,70185,70962,70962,71014,70184,70181,70180,70179,70178,70177,70961,70961,70960,70176,70175,70174,70173,70172,70171,71013,71013,70170,70169,70169,70168,70959,70959,70167,70166,70166,70165,71077,71077,71113,71116,71116,71123,71094,71094,71076,70164,70161,70160,70159,70159,70158,72466,72465,72464,72463,72462,72461,72460,72460,72459,72458,72458,72457,72456,72456,72455,72454,72449,72448,72447,72447,72446,72488,72444,72443,72504,72504,72503,72442,72441,72440,72487,72487,72514,72526,72526,72439,72438,72434,72433,72502,72502,72519,72523,72523,72522,72486,72429,72428,72427,72424,72423,72518,72518,72422,72421,72421,72420,72525,72525,72419,72418,72417,72416,72595,72595,72597,72746,72747,72598,72600,72603,72605,72607,72608,72610,72748,72611,72613,72615,72615,72617,72619,72621,72623,72624,72626,72628,72629,72629,72631,72632,72632,72634,72635,72635,72637,72639,72640,72642,72644,72645,72647,72649,72649,72651,72652,72655,72657,72749,72661,72663,72665,72666,72668,72750,72751,72669,72671,72673,72674,72676,72676,72677,72679,72680,72682,72684,72685,72687,72752,72753,72688,72690,72691,72693,72695,72695,72697,72699,72700,72702,72754,72703,72705,72707,72708,72710,72755,72711,72713,72756,72714,72716,72717,72717,72719,72720,72720,72722,72757,72723,72725,72727,72728,72730,72732,72733,72735,72737,72737,72738,72740,72741,72743,72745,72745,63185,63184,63183,63181,63180,63180,63526,63178,63178,63177,63175,63171,64005,63169,63168,64149,63524,63166,63165,63163,63158,63662,63843,63843,64004,63767,63153,63661,63151,63145,63144,63766,63766,63660,63142,63140,63139,63137,63133,63659,63131,63131,63130,63128,63125,63123,63122,63114,63658,63523,63112,63111,63764,63106,63657,63887,63103,63101,63100,63100,70210,70209,70207,71017,71016,70203,70202,71095,71095,70200,70199,70197,71015,70964,70194,71129,70191,70191,70963,70189,70186,70962,70184,70181,70179,70178,70178,70961,70176,70172,71013,70169,70169,70959,70166,70166,71077,71116,71116,71094,70164,70161,70159,72466,72465,72463,72462,72462,72460,72458,72458,72456,72454,72447,72488,72445,72444,72504,72442,72441,72487,72526,72526,72438,72437,72434,72502,72523,72523,72486,72432,72429,72427,72426,72424,72518,72421,72421,72525,72418,72417,72595,72746,72747,72600,72602,72603,72607,72758,72608,72748,72759,72611,72615,72619,72619,72621,72624,72624,72626,72629,72629,72632,72635,72635,72639,72760,72761,72640,72644,72645,72649,72652,72655,72749,72762,72661,72665,72666,72666,72750,72763,72751,72671,72673,72673,72676,72679,72680,72684,72764,72765,72685,72752,72753,72690,72691,72691,72695,72699,72700,72754,72766,72767,72703,72707,72708,72755,72711,72756,72714,72717,72720,72757,72723,72727,72728,72732,72768,72733,72737,72769,72741,72745,63184,63183,63180,63180,63178,63175,63173,63171,63169,63169,63168,63524,63166,63163,63162,63158,63843,63767,63153,63151,63150,63145,63766,63142,63140,63137,63135,63134,63133,63131,63131,63128,63127,63125,63122,63120,63115,63114,63523,63112,63764,63109,63106,63887,63104,63103,63100,70209,70208,70207,71016,70203,71095,70199,70197,70964,70195,70195,70194,70191,70191,70189,70188,70186,70184,70183,70181,70178,70176,70169,70166,71116,71116,70164,70163,70162,70161,72466,72466,72465,72462,72462,72458,72454,72449,72447,72445,72444,72442,72441,72441,72526,72437,72435,72434,72523,72523,72432,72431,72429,72426,72425,72425,72424,72421,72418,72417,72746,72747,72602,72770,72603,72758,72608,72759,72611,72619,72624,72629,72635,72761,72644,72645,72645,72652,72654,72771,72655,72762,72772,72661,72666,72763,72751,72673,72673,72679,72680,72680,72764,72765,72765,72752,72773,72753,72691,72699,72766,72767,72707,72708,72711,72756,72756,72717,72720,72720,72723,72727,72727,72732,72774,72768,72737,72740,72769,72745,63184,63184,63180,63175,63173,63169,63524,63524,63166,63162,63159,63158,63767,63154,63153,63150,63146,63145,63142,63134,63131,63127,63126,63125,63120,63116,63115,63523,63523,63112,63109,63107,63106,63104,63103,70209,70208,70208,71016,70205,70204,70203,70199,70198,70197,70195,70195,70191,70188,70187,70186,70183,70181,70176,70175,70169,71116,70163,70162,72466,72462,72462,72454,72453,72445,72444,72441,72441,72437,72436,72435,72523,72431,72425,72421,72418,72418,72746,72747,72759,72619,72624,72624,72635,72760,72760,72761,72645,72645,72654,72771,72771,72762,72658,72660,72772,72666,72666,72763,72673,72673,72680,72765,72773,72753,72699,72766,72707,72775,72708,72756,72720,72768,72740,72769,72769,63184,63175,63175,63173,63524,63524,63162,63161,63159,63767,63156,63155,63154,63150,63146,63142,63141,63135,63134,63127,63117,63116,63523,63107,63104,63103,63103,70208,70205,70205,70204,70199,70198,70195,70188,70181,70175,70173,70169,70163,70162,70162,72462,72453,72445,72441,72436,72435,72431,72430,72429,72425,72418,72759,72624,72760,72760,72645,72771,72771,72658,72660,72660,72666,72673,72765,72773,72699,72766,72775,72708,72708,72720,72727,72768,72769,63175,63175,63524,63161,63159,63156,63155,63155,63150,63149,63146,63141,63140,63140,63135,63127,63117,63523,63109,63103,70205,70199,70199,70198,70188,70182,70181,70173,70169,70162,72453,72445,72436,72435,72435,72430,72429,72429,72418,72747,72760,72771,72776,72760,72776,72759,72660,72673,72765,72765,72699,72777,72700,72766,72708,72708,72727,72774,72774,72768,63175,63175,63161,63160,63159,63155,63149,63140,63127,63126,63118,63117,63109,63107,63103,70199,70199,70188,70187,70182,70173,70172,70172,70169,72453,72445,72435,72429,72429,72747,72770,72771,72660,72778,72778,72759,72776,72778,72776,72771,72660,72765,72777,72700,72708,72774,63175,63160,72779,63175,72779,72774,63159,63149,63148,63140,63126,63120,63119,63118,63109,63108,63107,70199,70182,70172,72453,72429,72770,72780,72429,72780,72445,72660,72777,72781,72660,72781,72782,72778,72782,72783,72778,72783,72759,72782,72778,72660,72784,72700,72774,63160,63159,72785,72785,72774,72779,72785,72779,63160,63159,63148,63147,63146,63140,63120,63119,63109,63108,63108,70199,70187,70182,72453,72452,72770,72603,72786,72786,72445,72780,72786,72780,72770,72783,72787,72788,72783,72788,72759,72787,72783,72782,72789,72782,72781,72789,72781,72777,72782,72789,72787,72790,72759,72788,72790,72788,72787,72759,72790,72608,72791,72774,72785,72785,63159,72792,72785,72792,72791,72774,72791,72793,72774,72793,72784,63147,63146,63120,63108,70187,72794,63108,72794,63119,70182,72452,72451,72795,72787,72796,72795,72796,72784,72787,72795,72797,72790,72797,72798,72790,72798,72608,72797,72790,72787,72789,72784,72796,72789,72796,72787,72784,72789,72777,63159,63147,72799,63159,72799,72800,72791,72800,72801,72801,72784,72793,72801,72793,72791,72800,72791,72792,72800,72792,63159,63147,63120,63119,72794,70183,72802,72794,72802,63119,70183,72794,70187,70182,72451,72450,72798,72800,72803,72798,72803,72608,72800,72798,72797,72801,72797,72795,72801,72795,72784,72797,72801,72800,72799,72608,72803,72799,72803,72800,72608,72799,63147,72804,63119,72802,72804,72802,70183,63119,72804,63147,70182,72450,72449,72603,72608,63147,72804,70182,72805,72804,72805,63147,70182,72804,70183,70182,72449,72445,72603,63147,72806,72806,72445,72786,72806,72786,72603,72805,72445,72806,72805,72806,63147,72445,72805,70182,72807,72808,72809,72810,72811,72812,72812,72813,72814,72815,72816,72817,72817,72807,72809,72810,72812,72814,72815,72817,72809,72810,72814,72815,72815,72809,72810,72818,72819,72820,72820,72821,72822,72822,72823,72824,72825,72826,72827,72827,72828,72829,72830,72818,72820,72820,72822,72824,72825,72827,72829,72831,72830,72820,72824,72825,72829,72831,72820,72824,72824,72829,72832,72832,72831,72824,72833,72834,72835,72836,72837,72838,72839,72840,72841,72841,72842,72843,72844,72845,72846,72833,72835,72836,72836,72838,72839,72839,72841,72843,72844,72846,72833,72833,72836,72839,72839,72843,72847,72847,72844,72833,72833,72839,72847,72848,72849,72850,72850,72851,72852,72852,72853,72854,72854,72855,72856,72856,72848,72850,72850,72852,72854,72854,72856,72850,72857,72858,72859,72859,72860,72861,72861,72862,72857,72857,72859,72861,72863,72864,72865,72865,72866,72867,72867,72868,72869,72869,72863,72865,72865,72867,72869,72870,72871,72872,72872,72873,72874,72874,72875,72876,72876,72877,72878,72878,72870,72872,72872,72874,72876,72876,72878,72872,69788,69787,72879,72879,72880,72881,72881,72882,72883,72883,72884,72885,72885,72886,72887,72888,72889,72890,72891,72892,72893,72893,72894,72895,72896,58914,58913,58911,58910,59358,59358,58909,58908,58906,58905,59303,69797,69796,69867,69867,69795,69794,69788,72879,72881,72881,72883,72885,72885,72887,72888,72888,72890,72891,72895,72896,58913,58912,58911,59358,58906,59303,69800,69798,69797,69867,69867,69794,69793,69789,69788,72881,72881,72885,72888,72888,72891,72893,72893,72895,58913,58912,59358,58908,58907,58906,69800,69798,69867,69793,69789,72881,72888,72893,58913,58912,58912,58908,58907,58907,69800,69799,69799,69798,69793,69790,69789,72888,72893,58912,58907,58907,69799,69793,69791,69790,72888,72888,72893,58907,58907,69793,69792,69792,69791,72888,72888,58907,69792,72897,72898,72899,72900,72901,72902,72902,72903,72904,72905,72906,72907,72907,72908,58968,58968,58967,58966,58965,58964,59360,59360,59376,59383,59383,58963,58962,58962,58961,58960,58959,58958,58957,58956,58955,59305,59305,58954,58953,58951,58950,59339,59339,59304,58949,58948,58947,58946,58943,58942,58941,58938,58937,59338,59338,59375,59389,59389,59394,59382,59382,59374,58936,58931,58930,58929,58929,58928,58927,58924,58923,58922,58921,58920,58919,58919,58918,59359,59359,58917,58916,58915,58914,72896,72896,72895,72894,72894,72893,72892,72892,72891,72890,72889,72888,72887,72886,72885,72884,72882,72881,72880,72880,72879,69787,69785,69784,69783,69783,69782,69781,69778,69777,69776,69776,69775,69774,69774,69773,72909,72910,72911,72912,72913,72914,72915,72916,72917,72918,72918,72919,72920,72921,72922,72923,72924,72925,72926,72926,72927,72928,72929,72930,72931,72931,72932,72933,72934,72935,72936,72936,72937,72938,72939,72897,72899,72900,72902,72904,72940,72905,72907,72907,58968,58966,58965,59360,59383,59383,58962,58960,58956,59305,58953,58951,59339,58949,58943,58941,58940,58938,59338,59389,59389,59382,58936,58931,58929,58927,58924,58922,58921,58921,58919,59359,58916,58915,72896,72896,72894,72892,72889,72887,72886,72886,72884,72883,72880,69787,69786,69785,69783,69781,69778,69776,69774,69774,72909,72941,72913,72915,72942,72916,72918,72920,72921,72923,72943,72944,72924,72926,72929,72931,72933,72945,72934,72936,72939,72899,72946,72947,72900,72904,72948,72940,72907,72907,58966,58965,58965,59383,58960,58957,58956,58953,58951,58949,58948,58944,58943,58940,58938,59389,58936,58931,58927,58926,58925,58924,58921,58921,59359,58916,58916,72896,72892,72880,69786,69785,69785,69781,69780,69779,69778,69774,69774,72941,72949,72913,72942,72916,72916,72920,72950,72950,72921,72943,72944,72926,72928,72929,72933,72951,72945,72936,72938,72939,72946,72952,72947,72904,72953,72948,72907,58965,58965,58960,58959,58957,58953,58952,58951,58948,58946,58944,58940,58939,58939,58938,58936,58931,58926,58925,58921,58916,72892,72882,72880,69785,69785,69780,69779,69779,69774,72949,72913,72916,72950,72950,72943,72954,72955,72944,72928,72956,72929,72951,72951,72945,72938,72953,72948,58965,58959,58957,58952,58952,58951,58946,58944,58939,58936,58931,58925,58921,58921,72892,72890,72882,69785,69779,69779,72949,72957,72912,72913,72950,72950,72954,72955,72955,72928,72956,72956,72951,72938,72947,72953,58965,58959,58952,58946,58945,58944,58936,58931,58921,72890,72883,72882,69779,72912,72950,72955,72955,72956,72938,72958,72947,58965,58959,58946,58945,58945,58936,58935,58932,58931,72890,72886,72883,69779,72910,72912,72955,72955,72938,72939,72958,58965,58959,58959,58945,58935,58932,72890,72889,72886,69779,72957,72910,72955,72939,72952,72958,58959,58959,58935,58934,58932,72889,72886,72886,72957,72910,72910,72939,72952,72952,58959,58934,58932,72886,72910,72910,72952,58934,58933,58932,72910,72910,58934,58933,72959,72960,72961,72961,72962,72963,72963,72964,72965,72966,72967,72968,72968,72969,72970,72971,72972,72973,72973,72974,72975,72976,72977,72978,72979,72980,72981,72981,72982,72983,72984,72985,72986,72987,72988,72989,72990,72991,72992,72993,72994,72995,72995,72996,72997,72998,72999,73000,73001,73002,73003,73003,73004,73005,73006,73007,73008,73009,73010,73011,73011,73012,73013,73014,73015,73016,73017,73018,73019,73019,73020,73021,73022,73023,73024,73025,73026,73027,72959,72961,72963,73028,72966,72968,72968,72970,73029,73030,72971,72973,72973,72975,72976,72976,72978,72979,72979,72981,72983,72984,72986,73031,73032,72987,72989,72989,72990,72992,72992,72993,72995,73001,73003,73005,73033,73006,73008,73009,73011,73013,73013,73014,73016,73017,73019,73021,73022,73024,73025,72959,72963,72965,73028,72968,73029,73030,72973,72976,72976,72979,72983,72984,73031,73032,73032,72989,72992,72992,72995,72997,73000,73001,73005,73033,73008,73009,73009,73013,73016,73017,73021,73034,73022,73025,73027,73027,72959,72965,72965,73028,73029,73035,73030,72976,72976,72983,72984,72984,73032,72992,73000,73005,73036,73036,73033,73009,73009,73016,73037,73038,73017,73034,73022,73027,72965,72965,73029,73035,73035,72976,72984,72984,72992,72997,72998,73000,73036,73036,73009,73037,73038,73034,73022,73022,72965,73035,73035,72984,72997,72998,73036,73037,73037,73038,73022,73022,73035,72997,72997,72998,73037,73037,73022,72997,73039,73040,73041,73042,73043,73044,73044,73045,73046,73046,73047,73048,73048,73049,73050,73050,73051,73052,73053,73054,73055,73056,73057,73058,73059,73060,73061,73062,73063,73064,73064,73065,73066,73066,73067,73068,73069,73070,73071,73071,73072,73073,73074,73075,73076,73077,73078,73079,73079,73080,73081,73082,73083,73084,73085,73086,73087,73087,73088,73089,73089,73090,73091,73092,72988,72987,72987,73032,73031,72985,72984,72983,72980,72979,72978,72977,72976,72975,72973,72972,73093,73093,73094,73095,73095,73096,73097,73097,73098,73099,73099,73100,73101,73101,73102,73103,73104,73105,73106,73106,73107,73108,73108,73109,73110,73110,73111,73112,73112,73113,73114,73115,73116,73117,73117,73039,73041,73118,73042,73044,73048,73050,73052,73119,73053,73055,73055,73056,73058,73059,73061,73062,73062,73064,73066,73069,73071,73073,73074,73076,73120,73077,73079,73081,73085,73087,73089,73089,73091,73092,73092,72987,73031,72985,72983,72982,72981,72980,72978,72978,72977,72975,72973,73093,73095,73095,73097,73099,73099,73101,73103,73104,73106,73108,73110,73112,73114,73115,73117,73041,73118,73044,73046,73046,73048,73052,73119,73055,73058,73121,73059,73062,73062,73066,73068,73068,73069,73073,73120,73077,73081,73085,73089,73092,73092,73031,72986,72978,72975,72974,72974,72973,73095,73099,73103,73122,73123,73104,73108,73110,73114,73124,73115,73041,73125,73118,73046,73052,73126,73119,73058,73121,73062,73068,73068,73073,73127,73120,73081,73128,73084,73085,73092,72978,72974,73095,73095,73099,73122,73123,73108,73110,73110,73124,73115,73118,73052,73126,73126,73058,73129,73129,73121,73068,73068,73127,73074,73120,73128,73082,73082,73084,73092,72978,73095,73122,73130,73123,73110,73110,73115,73125,73118,73126,73129,73129,73068,73074,73074,73120,73082,73082,73092,72986,72981,72978,73122,73130,73110,73125,73125,73118,73129,73129,73074,73082,73082,72986,72985,72981,73122,73131,73131,73130,73125,73125,73129,73082,73082,72985,72982,72981,73131,73125,73125,73082,72982,72982,72981,73125,73132,73133,73134,73134,73135,73136,73136,73137,73138,73139,73102,73101,73100,73099,73098,73093,72972,72971,72971,73030,73035,73035,73029,72970,72967,72966,73028,73028,72965,72964,72961,72960,73140,73141,73142,73143,73143,73144,73145,73145,73146,73147,73148,73149,73150,73151,73152,73153,73153,73154,73155,73156,73157,73158,73158,73159,73160,73160,73161,73162,73162,73163,73164,73165,73166,73167,73168,73132,73134,73134,73136,73138,73169,73139,73101,73101,73100,73098,73093,72971,73035,72967,73028,72964,72962,72961,73140,73141,73143,73145,73145,73147,73170,73148,73150,73151,73151,73153,73155,73156,73158,73160,73160,73162,73164,73165,73167,73171,73168,73134,73138,73169,73101,73098,73094,73093,73035,72967,72964,72963,72962,73140,73172,73141,73145,73170,73148,73151,73155,73173,73156,73160,73160,73164,73174,73165,73171,73168,73168,73138,73169,73169,73098,73097,73095,73094,73035,72968,72967,72963,72963,72962,73172,73172,73141,73170,73148,73155,73175,73175,73173,73160,73168,73169,73097,73095,73035,72970,72968,72963,73172,73172,73170,73148,73148,73175,73160,73165,73168,73097,73096,73095,72970,72968,73172,73148,73148,73160,73174,73174,73165,73097,73096,72970,72969,72969,72968,73148,73148,73174,73097,73097,73096,72969,72969,73148,73097,73176,73177,73178,73179,73180,73181,73181,73182,73183,73184,73176,73178,73179,73181,73183,73183,73184,73178,73178,73179,73183,73185,73186,73187,73188,73189,73190,73190,73191,73192,73192,73193,73194,73194,73195,73196,73196,73197,73198,73199,73200,73201,73202,73203,73204,73204,73205,73206,73207,73208,73209,73209,73210,73211,73211,73212,73213,73185,73187,73214,73188,73190,73192,73192,73194,73196,73196,73198,73215,73199,73201,73202,73202,73204,73206,73207,73209,73211,73216,73185,73214,73214,73188,73192,73192,73196,73215,73199,73202,73206,73206,73207,73211,73216,73214,73192,73192,73215,73217,73217,73199,73206,73206,73211,73213,73213,73216,73192,73192,73217,73206,73206,73213,73192,73218,73219,73220,73220,73221,73222,73222,73223,73224,73224,73225,73226,73226,73227,73228,73228,73218,73220,73220,73222,73224,73224,73226,73228,73228,73220,73224,73229,73230,73231,73231,73232,73233,73233,73234,73235,73236,73237,73238,73238,73239,73240,73229,73231,73233,73233,73235,73236,73236,73238,73240,73240,73229,73233,73233,73236,73240,59106,59105,73241,73242,73243,73244,73244,73245,73246,73247,73248,73249,73250,73251,73252,73253,73254,73255,73255,73256,73257,73257,73258,73259,73259,73260,73261,73262,73263,73264,73265,73266,73267,73267,73268,73269,73269,73270,73271,73272,73273,73274,73275,73276,73277,73277,73278,73279,73279,73280,73281,73281,73282,73283,73283,73284,73285,73286,73287,73288,73288,73289,73290,73291,73292,73293,73293,73294,73295,73296,73297,73298,73299,73300,73301,73301,73302,73303,73303,73304,73305,73306,73307,73308,73309,73310,73311,73312,73313,73314,73315,73316,73317,73317,73318,73319,73320,73321,73322,73323,73324,73325,73325,73326,73327,73327,73328,73329,73330,73331,73332,73332,73333,73334,73335,73336,73337,73338,73339,73340,73340,73341,73342,73343,73344,73345,73346,73347,73348,73349,73350,73351,73351,73352,73353,73354,73355,73356,73356,73357,73358,73359,73360,73361,73361,73362,73363,73364,73365,73366,73366,73367,73368,73368,73369,73370,73370,73371,73372,73373,73374,73375,73376,73377,73378,73378,73379,73380,73381,73382,73383,73384,73385,73386,73386,73387,73388,73388,73389,73390,73390,73391,73392,73393,73394,73395,73395,73396,73397,73398,73399,73400,73400,73401,73402,73403,73404,73405,73405,73406,73407,73408,73409,73410,73410,73411,73412,73413,73414,73415,73416,73417,73418,73419,73420,73421,73422,73423,73424,73425,73426,73427,73427,73428,73429,73430,73431,73432,73432,73433,73434,73435,73436,73437,73437,73438,73439,73439,73440,73441,73442,73443,73444,73444,73445,73446,73447,73448,73449,73450,73451,73452,73452,73453,73454,73454,73455,73456,73456,73457,73458,73458,73459,73460,73460,73461,73462,73463,73464,73465,73465,73466,73467,73467,73468,73469,73470,73471,73472,73472,73473,73474,73474,59166,59165,59164,59163,59328,59161,59160,59370,59370,59327,59159,59158,59157,59351,59351,59156,59155,59153,59152,59326,59326,59151,73475,73476,73477,73478,73479,59147,59146,59146,59324,59145,59144,59143,59400,59400,59390,59368,59368,59142,59141,59139,59138,59137,59136,59135,59134,59133,59132,59131,59130,59129,59323,59127,59126,59125,59124,59123,59349,59119,59118,59348,59348,59322,59117,59112,59111,59347,59347,59377,59321,59321,59110,59109,59107,59106,73241,73242,73244,73246,73247,73249,73250,73250,73252,73480,73481,73253,73255,73255,73257,73259,73259,73261,73482,73262,73264,73265,73265,73267,73269,73269,73271,73483,73274,73275,73277,73277,73279,73281,73281,73283,73285,73286,73288,73290,73291,73293,73295,73295,73296,73298,73299,73301,73303,73309,73311,73484,73312,73314,73315,73315,73317,73319,73322,73323,73325,73325,73327,73329,73330,73332,73334,73485,73338,73340,73346,73348,73349,73349,73351,73353,73356,73358,73486,73359,73361,73363,73364,73366,73368,73370,73372,73487,73373,73375,73488,73376,73378,73380,73489,73381,73383,73383,73384,73386,73386,73388,73390,73390,73392,73490,73490,73393,73395,73395,73397,73398,73398,73400,73402,73403,73405,73407,73408,73410,73412,73413,73415,73491,73416,73418,73492,73493,73419,73421,73494,73422,73424,73425,73427,73429,73430,73432,73434,73435,73437,73439,73442,73444,73446,73447,73449,73495,73450,73452,73454,73460,73462,73463,73463,73465,73467,73470,73472,73474,73474,59165,59164,59164,59328,59162,59162,59161,59370,59158,59351,59155,59154,59153,59326,59326,73475,73496,73476,73478,73479,73479,59146,59145,59145,59144,59400,59400,59368,59141,59139,59137,59136,59133,59131,59130,59130,59323,59128,59125,59124,59349,59120,59119,59348,59113,59112,59347,59347,59321,59109,59107,73241,73497,73246,73247,73250,73481,73255,73259,73262,73265,73269,73269,73483,73498,73274,73277,73281,73285,73286,73290,73290,73291,73295,73295,73298,73499,73299,73303,73305,73312,73315,73319,73322,73325,73329,73485,73340,73342,73345,73346,73349,73349,73353,73500,73354,73356,73486,73501,73359,73363,73502,73364,73368,73370,73487,73503,73504,73373,73488,73488,73376,73380,73489,73383,73386,73386,73390,73490,73490,73395,73398,73398,73402,73505,73505,73403,73407,73408,73412,73506,73506,73413,73491,73507,73416,73492,73493,73421,73494,73494,73424,73508,73509,73425,73429,73430,73434,73510,73442,73446,73511,73495,73450,73454,73458,73460,73463,73463,73467,73469,73470,73474,59164,59164,59162,59370,59159,59158,59155,59154,59326,73496,73476,73479,59145,59145,59400,59141,59139,59136,59134,59133,59130,59128,59125,59349,59122,59120,59348,59117,59113,59347,59109,59108,59107,73497,73246,73250,73480,73481,73259,73482,73482,73262,73269,73272,73274,73281,73295,73499,73299,73299,73305,73512,73484,73312,73319,73320,73322,73329,73513,73485,73342,73345,73349,73500,73354,73486,73501,73501,73363,73514,73502,73368,73370,73504,73488,73380,73489,73386,73490,73398,73505,73407,73407,73408,73506,73506,73491,73515,73493,73494,73508,73508,73509,73429,73430,73510,73435,73441,73442,73511,73495,73454,73456,73458,73463,73469,73516,73470,59164,59164,59370,59159,59154,73496,73517,73518,73476,59145,59145,59141,59140,59134,59133,59128,59125,59122,59121,59121,59120,59117,59113,59109,59108,59108,73497,73519,73242,73246,73480,73482,73269,73498,73498,73272,73281,73295,73299,73512,73309,73484,73319,73320,73329,73520,73513,73342,73521,73343,73345,73500,73501,73514,73522,73523,73502,73370,73524,73504,73380,73525,73489,73490,73398,73407,73506,73493,73508,73429,73430,73435,73439,73441,73511,73526,73447,73495,73456,73458,73469,73516,73516,59164,59159,59154,73517,73527,73518,59145,59140,59134,59128,59127,59125,59121,59117,59113,59108,73519,73242,73480,73481,73482,73498,73528,73482,73528,73481,73498,73281,73285,73290,73295,73512,73309,73319,73320,73320,73520,73529,73513,73521,73530,73343,73500,73354,73501,73522,73531,73523,73370,73503,73503,73524,73380,73532,73525,73490,73398,73506,73515,73533,73493,73429,73534,73430,73439,73439,73441,73526,73535,73447,73456,73458,73516,59159,59154,73527,73518,73518,59140,59139,59134,59127,59125,59125,59117,59116,59114,59113,73519,73519,73242,73481,73498,73285,73536,73536,73481,73528,73536,73528,73498,73290,73512,73306,73309,73320,73529,73343,73354,73501,73537,73523,73503,73503,73380,73532,73532,73490,73398,73398,73515,73507,73429,73534,73538,73429,73538,73533,73534,73439,73526,73456,73458,59159,73518,59139,59134,59125,59116,59115,59115,59114,73519,73539,73481,73536,73536,73285,73540,73536,73540,73539,73481,73539,73541,73481,73541,73519,73290,73306,73308,73309,73529,73330,73343,73501,73531,73531,73537,73503,73503,73532,73398,73398,73507,73492,73534,73526,73542,73542,73533,73538,73542,73538,73534,73456,59159,59155,73543,73519,73541,73543,73541,73539,73544,73539,73540,73544,73540,73285,73539,73544,73543,73519,73543,73545,73519,73545,59115,73285,73290,73308,73309,73330,73334,73531,73503,73546,73531,73546,73343,73398,73492,73547,73398,73547,73503,73548,73533,73542,73548,73542,73526,73533,73548,73492,73456,59155,59154,73545,73549,73550,73545,73550,59115,73549,73545,73543,73551,73543,73544,73551,73544,73285,73543,73551,73549,73552,59115,73550,73552,73550,73549,59115,73552,59125,73285,73308,73309,73309,73334,73335,73553,73503,73547,73547,73492,73554,73547,73554,73553,73546,73553,73555,73546,73555,73343,73553,73546,73503,73526,73556,73557,73557,73492,73548,73557,73548,73526,73456,59154,73558,73456,73558,73535,73552,73559,73560,73552,73560,59125,73559,73552,73549,73561,73549,73551,73561,73551,73285,73549,73561,73559,73562,59125,73560,73562,73560,73559,59125,73562,59134,73285,73309,73335,73555,73563,73564,73555,73564,73343,73563,73555,73553,73565,73553,73554,73565,73554,73492,73553,73565,73563,73566,73343,73564,73566,73564,73563,73343,73566,73567,73556,73568,73569,73569,73492,73557,73569,73557,73556,73558,73518,73570,73558,73570,73535,73518,73558,59154,73562,73571,73572,73562,73572,59134,73571,73562,73559,73573,73559,73561,73573,73561,73285,73559,73573,73571,73574,59134,73572,73574,73572,73571,59134,73574,73518,73285,73335,73337,73575,73563,73576,73576,73568,73577,73576,73577,73575,73566,73575,73578,73566,73578,73567,73575,73566,73563,73492,73569,73579,73579,73563,73565,73579,73565,73492,73569,73568,73576,73576,73563,73579,73576,73579,73569,73580,73535,73570,73580,73570,73518,73535,73580,73581,73571,73337,73582,73571,73582,73583,73574,73583,73584,73574,73584,73518,73583,73574,73571,73337,73571,73573,73337,73573,73285,73578,73585,73586,73578,73586,73567,73585,73578,73575,73587,73575,73577,73587,73577,73568,73575,73587,73585,73588,73567,73586,73588,73586,73585,73567,73588,73530,73589,73580,73590,73589,73590,73583,73580,73589,73581,73580,73518,73584,73584,73583,73590,73584,73590,73580,73591,73583,73582,73582,73337,73592,73582,73592,73591,73589,73591,73593,73589,73593,73581,73591,73589,73583,73588,73594,73595,73588,73595,73530,73594,73588,73585,73596,73585,73587,73596,73587,73568,73585,73596,73594,73597,73530,73595,73597,73595,73594,73530,73597,73513,73593,73598,73599,73593,73599,73581,73598,73593,73591,73600,73591,73592,73600,73592,73337,73591,73600,73598,73601,73581,73599,73601,73599,73598,73581,73601,73568,73597,73598,73602,73597,73602,73513,73598,73597,73594,73601,73594,73596,73601,73596,73568,73594,73601,73598,73600,73513,73602,73600,73602,73598,73513,73600,73337,73603,73604,73605,73605,73606,73607,73608,73609,73610,73611,73612,73613,73613,73614,73615,73615,73616,73603,73603,73605,73607,73617,73608,73610,73611,73613,73615,73615,73603,73607,73617,73610,73611,73611,73615,73607,73607,73617,73611,73618,73619,73620,73621,73622,73623,73623,73624,73625,73625,73626,73627,73627,73628,73629,73629,73630,73618,73618,73620,73621,73621,73623,73625,73625,73627,73629,73629,73618,73621,73621,73625,73629,73631,73632,73633,73633,73634,73635,73635,73636,73637,73637,73638,73639,73640,73641,73642,73643,73644,73645,73645,73646,73631,73631,73633,73635,73635,73637,73639,73643,73645,73631,73635,73639,73640,73642,73643,73631,73631,73635,73640,73640,73642,73631,73647,73648,73649,73649,73650,73651,73651,73652,73653,73653,73654,73655,73655,73656,73657,73657,73658,73659,73659,73660,73661,73647,73649,73651,73651,73653,73655,73655,73657,73659,73659,73661,73647,73647,73651,73655,73655,73659,73647,73662,73663,73664,73664,73665,73666,73666,73667,73668,73668,73669,73670,73670,73671,73662,73662,73664,73666,73666,73668,73670,73670,73662,73666,73672,73673,73674,73675,73676,73677,73677,73678,73672,73672,73674,73675,73675,73677,73672,73679,73680,73681,73681,73682,73683,73683,73684,73685,73685,73686,73687,73687,73688,73689,73689,73679,73681,73683,73685,73687,73687,73689,73681,73681,73683,73687,73690,73691,73692,73693,73694,73695,73695,73696,73697,73697,73698,73699,73699,73700,73701,73702,73703,73704,73705,73706,73707,73707,73708,73709,73710,73711,73712,73712,73713,73714,73715,73716,73717,73718,73719,73720,73720,73721,73722,73723,73724,73725,73725,73726,73727,73727,73728,73729,73729,73730,73731,73732,73733,73734,73734,73735,73736,73737,73738,73739,73739,73690,73692,73692,73693,73695,73695,73697,73699,73699,73701,73740,73702,73704,73741,73742,73705,73707,73707,73709,73743,73710,73712,73714,73715,73717,73718,73718,73720,73722,73723,73725,73727,73727,73729,73731,73732,73734,73736,73737,73739,73692,73692,73695,73699,73699,73740,73744,73742,73707,73743,73745,73710,73714,73715,73718,73722,73746,73723,73727,73727,73731,73732,73732,73736,73747,73748,73737,73692,73692,73699,73744,73742,73743,73749,73749,73745,73714,73715,73722,73750,73746,73727,73732,73732,73747,73751,73751,73748,73692,73692,73744,73702,73752,73742,73749,73749,73714,73715,73715,73750,73746,73746,73732,73751,73751,73692,73702,73741,73752,73749,73749,73715,73746,73746,73751,73702,73741,73749,73746,73746,73702,73741,69673,69672,73753,73753,73754,73755,73755,73756,73757,73758,73759,73760,73761,73762,73763,73764,73765,73766,73767,73768,73769,73769,73770,73771,73772,73773,73774,73775,73776,73777,73777,73778,73779,73779,73780,73781,73781,73782,73783,73784,73785,73786,73787,73788,73789,73789,73790,73791,73791,73792,73793,73794,73795,73796,73797,73798,73799,73800,73801,73802,73803,73804,73805,73805,73806,73807,73807,73808,73809,73809,73810,73811,73811,73812,73813,73814,73815,73816,73816,73817,73818,73818,73819,73820,73820,73821,73822,73823,73824,73825,73825,73826,73827,73827,73828,73829,73829,73830,73831,73831,73832,73833,73833,73834,73835,73836,73837,73838,73839,69682,69681,69678,69677,69834,69675,69674,69673,69673,73753,73755,73755,73757,73840,73758,73760,73761,73764,73766,73767,73767,73769,73771,73772,73774,73841,73775,73777,73779,73779,73781,73783,73787,73789,73791,73842,73794,73796,73797,73799,73843,73800,73802,73803,73803,73805,73807,73807,73809,73811,73811,73813,73844,73816,73818,73820,73823,73825,73827,73827,73829,73831,73831,73833,73835,73836,73838,73839,73839,69681,69680,69678,69834,69676,69675,69673,73755,73840,73758,73761,73764,73767,73771,73845,73772,73841,73775,73779,73783,73787,73791,73793,73842,73796,73797,73800,73803,73807,73807,73811,73844,73816,73820,73822,73846,73823,73827,73827,73831,73835,73836,73839,69680,69679,69678,69676,69676,69675,73755,73840,73761,73763,73763,73764,73771,73771,73845,73841,73847,73775,73783,73793,73842,73797,73848,73800,73807,73816,73822,73846,73846,73827,73835,73849,73836,69680,69679,69676,73755,73771,73841,73850,73847,73783,73851,73787,73793,73797,73848,73807,73844,73816,73846,73835,73835,73849,69680,69680,69679,73755,73850,73847,73851,73786,73787,73797,73848,73844,73852,73816,73835,69680,69680,73755,73840,73771,73850,73851,73784,73786,73797,73848,73852,73814,73814,73816,69680,69680,73840,73763,73763,73771,73851,73784,73797,73843,73843,73848,73814,73814,69680,73763,73763,73851,73853,73784,73843,73814,73814,73763,73853,73853,73784,73814,73854,73855,73856,73857,73858,73859,73860,73861,73862,73862,73863,73864,73864,73865,73866,73866,73867,73868,73868,73869,73870,73871,73872,73873,73873,73854,73856,73857,73859,73860,73860,73862,73864,73864,73866,73868,73868,73870,73871,73871,73873,73856,73874,73857,73860,73860,73864,73868,73868,73871,73856,73874,73860,73868,73868,73856,73874,73875,73876,73877,73877,73878,73879,73879,73880,73881,73881,73882,73883,73883,73884,73885,73885,73886,73887,73887,73875,73877,73877,73879,73881,73881,73883,73885,73887,73877,73881,73881,73885,73887,73888,73889,73890,73890,73891,73892,73892,73893,73894,73894,73895,73896,73896,73897,73898,73898,73888,73890,73890,73892,73894,73894,73896,73898,73898,73890,73894,73899,73900,73901,73901,73902,73903,73904,73905,73906,73907,73908,73909,73909,73910,73911,73912,73899,73901,73901,73903,73904,73904,73906,73907,73907,73909,73911,73912,73901,73904,73904,73907,73911,73911,73912,73904,73913,73914,73915,73915,73916,73917,73918,73919,73920,73920,73913,73915,73915,73917,73918,73918,73920,73915,73921,73922,73923,73923,73924,73925,73925,73926,73927,73927,73928,73929,73929,73921,73923,73925,73927,73929,73929,73923,73925,73930,73931,73932,73932,73933,73934,73934,73935,73936,73936,73937,73938,73938,73930,73932,73932,73934,73936,73936,73938,73932,73939,73940,73941,73941,73942,73943,73943,73944,73945,73946,73947,73948,73948,73939,73941,73941,73943,73945,73946,73948,73941,73941,73945,73946,73949,73950,73951,73951,73952,73953,73953,73954,73955,73955,73949,73951,73951,73953,73955,73956,73957,73958,73958,73959,73960,73960,73961,73962,73962,73963,73956,73956,73958,73960,73960,73962,73956,59964,73964,73965,73966,73967,73968,73968,73969,73970,73971,73972,73973,73974,73975,73976,73976,73977,73978,73979,73980,73981,73982,73983,73984,73985,73986,73987,73987,73988,73989,73990,73991,73992,73992,73993,73994,73994,73995,73996,73996,73997,73998,73998,59882,59881,59881,59880,59879,59876,59875,59874,59874,59873,59872,59869,59868,59867,59867,59866,60178,60178,60096,59865,59864,59863,59862,59860,59859,60095,60095,59858,59857,59857,59856,60094,60094,59855,59854,59854,59853,59852,73999,74000,74001,74002,74003,74004,74005,74006,74007,74008,74009,74010,74011,74012,74013,74014,74015,74016,74017,74018,74019,74019,74020,74021,74022,74023,74024,74025,74026,74027,74027,74028,74029,74030,74031,74032,74032,74033,74034,74034,74035,74036,74037,74038,74039,74039,74040,74041,74042,74043,74044,74044,74045,74046,74047,74048,74049,74049,74050,74051,74051,74052,74053,74053,74054,74055,74055,74056,74057,74058,74059,74060,74061,74062,74063,74063,74064,74065,74065,74066,74067,74068,74069,74070,74070,74071,74072,74073,74074,74075,74076,74077,74078,74079,74080,74081,74081,74082,74083,74083,74084,74085,74086,74087,74088,74088,74089,74090,74091,74092,74093,74093,74094,74095,74095,74096,74097,74098,74099,74100,74101,74102,74103,74103,74104,74105,74106,74107,74108,74109,74110,74111,74112,74113,74114,74114,74115,74116,74116,74117,74118,74119,74120,74121,74122,74123,74124,74125,74126,74127,74128,74129,74130,74131,74132,74133,74134,74135,74136,74136,74137,74138,74138,74139,74140,74140,59974,59973,59973,60112,60154,60154,60153,59972,59971,59970,60111,60111,60181,60152,59964,73965,74141,73966,73968,73970,74142,73974,73976,73976,73978,73979,73979,73981,74143,73982,73984,73985,73985,73987,73989,74144,73990,73992,73992,73994,73996,73996,73998,59881,59881,59879,59878,59876,59874,59872,59869,59867,60178,59864,59862,59861,59860,60095,59857,59857,60094,59854,59854,59852,74145,73999,74001,74002,74002,74004,74146,74005,74007,74147,74008,74010,74148,74148,74011,74013,74014,74016,74149,74150,74017,74019,74019,74021,74022,74022,74024,74151,74025,74027,74029,74030,74032,74034,74034,74036,74152,74037,74039,74041,74042,74044,74046,74047,74049,74051,74051,74053,74055,74055,74057,74153,74058,74060,74154,74061,74063,74065,74155,74068,74070,74073,74075,74156,74156,74076,74078,74079,74081,74083,74083,74085,74157,74086,74088,74090,74091,74093,74095,74098,74100,74158,74158,74101,74103,74103,74105,74159,74106,74108,74160,74109,74111,74112,74112,74114,74116,74116,74118,74119,74122,74124,74161,74127,74128,74130,74131,74133,74134,74134,74136,74138,74138,74140,59973,59973,60154,59972,59971,60111,60152,74141,73966,73970,74142,73976,73979,73979,74143,73982,74144,73992,73996,73996,59881,59878,59876,59872,59871,59869,60178,59865,59864,59861,59860,59857,59854,74145,73999,74002,74146,74146,74005,74147,74147,74008,74148,74148,74013,74162,74162,74014,74149,74150,74019,74022,74025,74029,74163,74164,74030,74034,74034,74152,74037,74037,74041,74165,74046,74047,74051,74051,74055,74153,74154,74061,74065,74155,74070,74072,74072,74073,74156,74156,74078,74166,74167,74079,74083,74157,74086,74090,74168,74091,74095,74158,74103,74159,74106,74160,74109,74112,74116,74119,74121,74122,74161,74125,74127,74130,74131,74134,74138,74138,59973,59972,59971,60152,59969,74141,73970,73971,73973,74142,73979,73979,73982,73985,73989,74144,73996,73996,59878,59877,59876,59871,59870,59869,59865,59864,59864,59860,59857,59857,74145,74169,74170,73999,74146,74147,74148,74162,74149,74150,74022,74025,74163,74164,74164,74034,74037,74037,74165,74042,74042,74046,74051,74058,74154,74065,74171,74155,74072,74072,74156,74166,74167,74083,74157,74157,74090,74172,74168,74095,74097,74098,74158,74159,74106,74109,74112,74112,74119,74121,74121,74161,74125,74173,74131,74138,74138,59972,59971,59971,59969,59968,74141,73971,73973,73973,73979,73985,73989,73996,59877,59869,59864,59857,59857,74169,74170,74170,74146,74147,74147,74162,74149,74025,74164,74037,74042,74051,74153,74058,74065,74067,74171,74072,74166,74167,74157,74172,74172,74168,74097,74097,74098,74159,74106,74112,74121,74121,74125,74130,74173,74138,59971,74141,73973,73985,73985,73989,59877,59869,59857,74170,74170,74147,74149,74174,74025,74037,74042,74153,74175,74058,74067,74176,74176,74171,74166,74177,74167,74172,74172,74097,74159,74106,74121,74130,74178,74173,59971,73985,59877,74179,73985,74179,74141,74170,74149,74180,74170,74180,59869,74151,74174,74037,74181,74058,74176,74176,74166,74182,74172,74159,74183,74172,74183,74177,74184,74106,74130,74130,74178,59971,74179,59876,74185,74179,74185,74141,59876,74179,59877,74186,59869,74180,74186,74180,74149,59869,74186,59870,74151,74037,74042,74181,74176,74182,74187,74177,74183,74187,74183,74159,74177,74187,74188,74189,74184,74130,74130,59971,59968,59876,59870,74190,74190,74141,74185,74190,74185,59876,74149,74022,74191,74191,59870,74186,74191,74186,74149,74022,74151,74042,74175,74181,74182,74192,74188,74187,74192,74187,74159,74188,74192,74182,74193,74189,74130,74130,59968,59967,74194,74141,74190,74194,74190,59870,74141,74194,59964,74022,74042,74195,74195,59870,74191,74195,74191,74022,74042,74175,74182,74159,74193,74196,74196,74182,74192,74196,74192,74159,74193,74130,59967,74197,59964,74194,74197,74194,59870,59964,74197,59965,74195,74182,74198,74195,74198,59870,74182,74195,74042,74193,59967,74199,74199,74182,74196,74199,74196,74193,74198,74200,74201,74198,74201,59870,74200,74198,74182,74200,59965,74197,74197,59870,74201,74197,74201,74200,74199,59966,74202,74199,74202,74182,59966,74199,59967,74202,59965,74200,74202,74200,74182,59965,74202,59966,59833,59832,74203,74204,74205,74206,74207,74208,74209,74210,74211,74212,74212,74213,74214,74215,74216,74217,74218,74219,74220,74220,74221,74222,74223,74224,74225,74225,74226,74227,74228,74229,74230,74231,74232,74233,74233,74234,74235,74235,74236,74237,74238,74239,74240,74241,74242,74243,74244,74245,74246,74247,74248,74249,74249,74250,74251,74252,74253,74254,74255,74256,74257,74258,74259,74260,74261,74262,74263,74263,74264,74265,74266,74267,74268,74269,74270,74271,74271,74272,74273,74274,74275,74276,74277,74278,74279,74280,74281,74282,74283,74284,74285,74286,74287,74288,74289,74290,74291,74291,74292,74293,74294,74295,74296,74296,74297,74298,74299,74300,74301,74302,74303,74304,74304,74305,74306,74307,74308,74309,74309,74310,74311,74311,74312,74313,74313,74314,74315,74316,74317,74318,74319,74033,74032,74031,74030,74164,74164,74163,74029,74026,74025,74174,74174,74151,74024,74023,74022,74021,74018,74017,74150,74150,74149,74016,74015,74014,74162,74012,74011,74148,74009,74008,74147,74006,74005,74146,74003,74002,74001,74000,73999,74170,74170,74169,74145,74145,59852,59851,59850,59849,59848,59847,59846,59845,59842,59841,60093,59839,59838,59837,59836,59835,59834,59834,59833,74203,74204,74206,74207,74207,74209,74320,74321,74210,74212,74212,74214,74215,74218,74220,74222,74223,74225,74227,74231,74233,74235,74235,74237,74238,74238,74240,74241,74244,74246,74322,74247,74249,74251,74251,74252,74254,74323,74258,74260,74261,74263,74265,74269,74271,74273,74274,74276,74324,74277,74279,74280,74280,74282,74325,74283,74285,74326,74286,74288,74327,74289,74291,74293,74328,74294,74296,74296,74298,74299,74299,74301,74329,74329,74302,74304,74307,74309,74311,74311,74313,74315,74316,74318,74330,74331,74319,74032,74031,74164,74029,74026,74174,74024,74023,74021,74020,74018,74150,74016,74015,74162,74013,74012,74148,74010,74009,74147,74007,74006,74146,74004,74000,74170,74145,74145,59851,59850,59850,59848,59847,59847,59845,59844,59842,60093,59840,59839,59837,59836,59836,59834,74203,74332,74204,74207,74321,74212,74215,74333,74218,74222,74334,74223,74227,74335,74231,74235,74235,74238,74241,74322,74247,74251,74251,74254,74336,74323,74260,74261,74261,74265,74266,74337,74269,74273,74274,74324,74277,74277,74280,74325,74283,74326,74286,74286,74327,74289,74289,74293,74328,74328,74296,74299,74299,74329,74304,74307,74311,74315,74330,74331,74032,74031,74029,74028,74027,74026,74024,74023,74020,74019,74018,74016,74015,74015,74013,74012,74010,74009,74007,74001,74000,74145,74145,59850,59847,59839,59836,74203,74338,74332,74207,74320,74321,74215,74333,74222,74334,74334,74227,74339,74335,74235,74241,74322,74251,74336,74257,74323,74261,74337,74273,74274,74274,74277,74325,74283,74286,74289,74289,74328,74299,74299,74304,74306,74330,74032,74031,74031,74028,74027,74027,74024,74023,74018,74015,74012,74012,74010,74007,74003,74001,74145,74145,59847,59844,59840,59839,74203,74338,74207,74320,74320,74215,74217,74333,74334,74339,74340,74335,74241,74244,74322,74336,74257,74261,74266,74337,74274,74325,74325,74283,74289,74289,74299,74306,74316,74330,74031,74031,74027,74023,74018,74012,74007,74003,74145,59844,59840,74203,74341,74342,74338,74320,74320,74217,74333,74333,74339,74343,74340,74241,74243,74243,74244,74336,74255,74257,74266,74344,74337,74325,74325,74289,74306,74316,74031,74023,74004,74003,59844,59842,59840,74341,74342,74320,74333,74333,74343,74228,74345,74340,74243,74243,74336,74255,74255,74266,74268,74268,74344,74325,74325,74306,74307,74316,74023,74019,74006,74004,59844,59843,59842,74341,74341,74342,74333,74230,74345,74243,74243,74255,74268,74268,74325,74307,74315,74316,74019,74007,74006,59844,59843,74341,74333,74228,74230,74243,74243,74268,74307,74315,74019,74018,74007,59844,59843,74333,74228,74346,74333,74346,59843,74228,74243,74307,74315,74018,74007,74007,59843,74346,74007,74346,74228,74228,74307,74315,74315,74007,74228,60091,59826,74347,74348,74349,74350,74350,74351,74352,74352,74353,74354,74354,74355,74356,74356,74357,74358,74359,74360,74361,74362,74363,74364,74365,74366,74367,74368,74369,74370,74371,74372,74373,74374,74375,74376,74376,74377,74378,74379,74380,74381,74382,74383,74384,74385,74386,74387,74388,74389,74390,74390,69293,69292,69474,69473,69472,69471,69470,69469,69468,69467,69522,69522,69466,69465,69463,69462,69496,69456,69455,69526,69526,69511,69495,69454,74391,74392,74392,74393,74394,74394,74395,74396,74397,74398,74236,74234,74233,74232,74232,74231,74335,74335,74340,74345,74345,74230,74229,74229,74228,74343,74343,74339,74227,74224,74223,74334,74219,74218,74333,74333,74217,74216,74216,74215,74214,74211,74210,74321,74321,74320,74209,74208,74207,74206,74205,74204,74332,74332,74338,74342,74342,74341,74203,74203,59832,59831,59831,59830,60092,59828,59827,60091,60091,74347,74399,74348,74350,74352,74352,74354,74356,74359,74361,74362,74362,74364,74365,74365,74367,74368,74368,74370,74371,74371,74373,74400,74401,74374,74376,74376,74378,74402,74379,74381,74382,74382,74384,74403,74403,74385,74387,74388,74390,69292,69475,69474,69472,69471,69469,69468,69468,69522,69465,69463,69496,69461,69457,69456,69526,69526,69495,69454,74392,74394,74396,74396,74397,74236,74232,74335,74345,74345,74229,74343,74343,74227,74226,74224,74334,74222,74219,74333,74216,74216,74214,74213,74211,74321,74209,74205,74332,74342,74342,74203,59831,59831,60092,59829,59828,60091,74399,74348,74352,74356,74404,74359,74362,74362,74365,74368,74401,74376,74402,74379,74382,74403,74388,69292,69475,69475,69472,69471,69471,69468,69465,69463,69461,69460,69457,69526,69454,69454,74392,74396,74396,74236,74235,74232,74345,74343,74224,74222,74221,74220,74219,74216,74212,74211,74209,74205,74342,59831,59831,59829,59828,59828,74399,74348,74348,74356,74358,74404,74362,74368,74401,74402,74379,74379,74403,74387,74388,69475,69471,69471,69465,69464,69463,69460,69459,69458,69457,69454,69454,74396,74235,74234,74232,74343,74220,74216,74213,74206,74205,59831,59831,59828,74348,74348,74358,74405,74404,74368,74371,74401,74379,74387,74388,69471,69464,69459,69458,69454,69454,74235,74234,74234,74343,74226,74221,74220,74213,74208,74206,59831,59831,74348,74405,74405,74404,74371,74401,74387,74388,74388,69464,69463,69459,69454,74234,74234,74226,74225,74224,74221,74213,74209,74208,59831,59831,74405,74371,74400,74401,74388,74388,69463,69459,69459,74234,74225,74212,74209,59831,59831,74371,74400,74400,74388,69459,69459,74225,74224,74212,59831,74400,74400,69459,74224,74213,74212,74400,74400,74224,74213,60420,60419,60418,60418,60417,60465,60465,60468,60416,60415,60414,60413,60406,60405,60456,60456,60476,60481,60481,60480,60475,60475,60467,60464,60404,60403,60504,60504,60503,60563,60563,60571,60573,60573,60572,60568,60568,60502,60501,60501,60500,60562,60562,60570,60561,60561,60499,60498,69222,69221,69220,69220,69219,69218,69216,69215,74406,74407,74408,74409,74409,74410,74411,74411,74412,74413,74413,74414,74415,74415,74416,74417,74417,74418,74419,74420,74421,74422,74423,74424,74425,74425,74426,74427,74428,69938,69937,69937,69949,74429,74430,74431,74432,74433,74434,69635,69634,69633,69632,69627,69626,69847,69847,69870,69846,69624,69623,69831,69831,69860,69830,69621,69620,69829,69618,69617,69616,69615,69614,69845,69845,69828,69613,69612,69611,69827,69609,69608,69607,69605,69604,69356,69356,69355,69501,69501,69480,69354,69351,69350,69479,69479,69500,69349,69348,69347,69346,69345,69344,69343,69343,69342,69341,69336,69335,69334,69333,69332,69514,69514,69518,69499,69499,69331,69330,69330,69329,69328,69328,69327,69529,69529,69530,69498,69325,69324,69478,69478,69323,69322,69318,69317,69517,69517,69513,69497,69313,69312,69524,69524,69477,69311,69310,69309,69528,69528,69523,69512,69512,69308,69307,69305,69304,69303,69303,69302,69476,69298,69297,69296,69294,69293,74390,74389,74388,74387,74386,74385,74403,74383,74382,74381,74380,74379,74402,74375,74374,74401,74401,74400,74373,74372,74371,74370,74369,74368,74367,74366,74365,74364,74363,74362,74361,74360,74359,74404,74404,74405,74358,74357,74356,74355,74353,74352,74351,74349,74348,74399,74399,74347,59826,59825,59824,60145,60145,60189,60195,60195,59823,59822,59820,59819,60144,60144,59818,59817,59815,59814,59813,59810,59809,59808,59807,59806,59805,59804,59803,60177,60177,60166,59802,59799,59798,60143,60143,60090,59797,59796,59795,59794,59792,59791,59790,60421,60420,60418,60418,60465,60416,60415,60413,60412,60406,60456,60481,60481,60475,60464,60504,60563,60573,60573,60568,60501,60501,60562,60561,69222,69220,69218,69217,69216,74406,74407,74409,74411,74411,74413,74415,74417,74419,74420,74422,74423,74425,74427,74428,69937,69937,74429,74435,74430,74432,74433,74433,69635,69634,69634,69632,69631,69627,69847,69846,69624,69831,69830,69621,69829,69619,69618,69616,69615,69615,69845,69613,69612,69827,69610,69605,69356,69501,69351,69479,69349,69346,69345,69343,69343,69341,69340,69333,69514,69499,69328,69529,69498,69325,69478,69322,69318,69517,69497,69313,69524,69311,69310,69528,69512,69306,69305,69303,69303,69476,69301,69298,69296,69295,69295,69294,74390,74390,74389,74387,74386,74403,74384,74383,74381,74380,74380,74402,74378,74375,74401,74373,74372,74370,74369,74364,74363,74361,74360,74404,74358,74350,74349,74399,74399,59826,59825,59825,60145,60195,60195,59822,59821,59820,60144,59817,59810,59808,59807,59807,59805,59804,59804,60177,59802,59800,59799,60143,59796,59794,59793,59792,59790,59789,60421,60418,60416,60416,60415,60412,60407,60406,60481,60481,60464,60404,60404,60504,60573,60501,60561,60498,69218,69217,74406,74436,74407,74411,74411,74415,74417,74417,74420,74422,74422,74425,74427,74427,69937,74435,74435,74430,74433,74433,69634,69631,69628,69627,69846,69624,69830,69622,69618,69615,69613,69613,69612,69610,69606,69605,69501,69351,69349,69348,69343,69340,69339,69334,69333,69499,69330,69328,69498,69326,69325,69322,69319,69318,69497,69314,69313,69311,69311,69310,69512,69306,69303,69301,69299,69298,69295,69295,74390,74387,74383,74380,74378,74376,74375,74373,74373,74372,74369,74361,74360,74358,74350,74399,59825,59825,60195,59821,59820,59817,59816,59807,59804,59802,59800,60143,59797,59793,59792,59789,60421,60416,60412,60407,60481,60404,60404,60573,60501,60501,60498,69223,69222,69218,74406,74436,74411,74417,74422,74427,74435,74433,69631,69630,69629,69628,69846,69624,69622,69621,69619,69618,69613,69613,69610,69609,69606,69501,69354,69351,69348,69346,69346,69343,69339,69334,69499,69330,69330,69498,69326,69326,69322,69321,69319,69497,69316,69314,69311,69512,69306,69301,69300,69299,69295,74387,74383,74378,74377,74377,74376,74373,74361,74358,74357,74351,74350,59825,59825,59821,59820,59810,59807,59802,59801,59800,59797,59793,59789,60422,60422,60421,60412,60408,60407,60404,60404,60501,69223,69222,74406,74437,74438,74436,74417,74422,74435,74433,74433,69630,69629,69629,69846,69625,69624,69621,69619,69619,69613,69609,69607,69606,69354,69351,69346,69339,69336,69334,69330,69330,69326,69321,69315,69314,69512,69299,74387,74386,74377,74373,74369,74364,74361,74357,74351,59825,59820,59811,59810,59802,59801,59797,59796,59793,60422,60412,60409,60408,60404,60404,69223,69222,69222,74437,74439,74440,74438,74417,74422,74433,69629,69629,69625,69624,69619,69609,69607,69607,69354,69353,69336,69330,69321,69315,69512,69307,69299,74386,74384,74383,74377,74369,74364,74357,74355,74353,74351,59820,59812,59811,59802,59801,59796,59793,59793,60412,60411,60410,60409,60404,69222,74439,74441,69222,74441,60404,74442,74440,74417,74417,74422,69629,69624,69619,69607,69607,69353,69352,69337,69336,69321,69315,69307,69306,69300,69299,74384,74384,74383,74369,74353,59820,59816,59813,59812,59802,74443,60404,74441,74443,74441,74439,60404,74443,60410,74439,74442,74417,69629,69624,74444,69629,74444,74417,69624,69607,69352,69338,69337,69321,69315,69306,69300,74384,74369,74367,74354,74353,59816,59813,59802,59801,74445,60410,74443,74445,74443,74439,60410,74445,60411,74446,74417,74444,74446,74444,69624,74417,74446,74439,69624,69352,69351,69339,69338,69321,69315,69300,74384,74384,74367,74366,74355,74354,59816,59815,59813,59801,74447,60411,74445,74447,74445,74439,60411,74447,59793,69624,69351,74448,74448,74439,74446,74448,74446,69624,69339,69321,69320,69316,69315,74384,74384,74366,74364,74364,74355,59816,59815,59801,59793,74448,74449,74450,74448,74450,74439,74448,69351,74451,74448,74451,74449,74447,74449,74452,74447,74452,59793,74447,74439,74450,74447,74450,74449,69339,69320,69319,69316,74384,74364,74364,59816,59815,59815,59793,74452,74452,74449,74453,74452,74453,59815,74454,74449,74451,74451,69351,74455,74451,74455,74454,74453,74454,74456,74453,74456,59815,74454,74453,74449,69339,69319,69316,74364,59815,74457,74364,74457,69316,74454,69339,74458,74458,59815,74456,74458,74456,74454,69339,74454,74455,69339,74455,69351,74458,69316,74457,74458,74457,59815,69316,74458,69339,74459,74460,74461,74461,74462,74463,74463,74464,74465,74466,74467,74459,74461,74463,74465,74466,74459,74461,74461,74465,74466,74468,74469,74470,74470,74471,74472,74473,74474,74475,74475,74476,74477,74477,74478,74479,74479,74480,74481,74482,74483,74484,74484,74485,74486,74486,74487,74488,74488,74489,74490,74490,74491,74492,74492,74493,74494,74494,74495,74496,74496,74497,74498,74499,74500,74501,74502,74503,74504,74504,74505,74506,74506,74507,74508,74509,74510,74511,74512,74513,74514,74514,74515,74516,74517,74518,74519,74519,74520,74521,74522,74523,74524,74524,74525,74526,74527,74528,74529,74529,74530,74531,74532,74533,74534,74535,74536,74537,74538,74539,74540,74540,74541,74542,74542,74543,74544,74544,74545,74546,74546,74547,74548,74548,74549,74550,74550,74551,74552,74552,74553,74554,74554,74555,74556,74557,74558,74559,74559,74560,74561,74562,74563,74564,74564,74565,74566,74567,74568,74569,74569,74570,74571,74571,74572,74573,74574,74575,74576,74576,74577,74578,74579,74580,74581,74581,74582,74583,74584,74585,74586,74587,74588,74589,74590,74591,74592,74593,74594,74595,74596,74597,74598,74598,74599,74600,74600,74601,74602,74602,74603,74604,74605,74606,74607,74607,74608,74609,74610,74611,74612,74613,74614,74615,74615,74616,74617,74617,74618,74619,74619,74620,74621,74622,74623,74624,74624,74625,74626,74627,74628,74629,74629,74630,74631,74631,74632,74633,74633,74634,74635,74635,74636,74637,74637,74638,74639,74640,74641,74642,74642,74643,74644,74645,74646,74647,74647,74648,74649,74650,74651,74652,74653,74654,74655,74656,74657,74658,74658,74659,74660,74660,74661,74662,74662,74663,74664,74665,74666,74667,74667,74668,74669,74670,74671,74672,74672,74673,74674,74675,74676,74677,74678,74679,74680,74680,74681,74682,74682,74683,74684,74685,74686,74687,74688,74689,74690,74691,74692,74693,74693,74694,74695,74695,74696,74697,74698,74699,74700,74701,74702,74703,74704,74705,74706,74706,74707,74708,74709,74710,74711,74711,74712,74713,74714,74715,74716,74716,74717,74718,74719,74720,74721,74470,74472,74722,74473,74475,74477,74477,74479,74481,74484,74486,74488,74488,74490,74492,74492,74494,74496,74496,74498,74499,74499,74501,74723,74723,74502,74504,74504,74506,74508,74512,74514,74516,74517,74519,74521,74522,74524,74526,74526,74527,74529,74529,74531,74724,74724,74532,74534,74535,74537,74725,74540,74542,74544,74548,74550,74552,74552,74554,74556,74557,74559,74561,74562,74564,74566,74569,74571,74573,74726,74574,74576,74579,74581,74583,74587,74589,74590,74590,74592,74593,74596,74598,74600,74600,74602,74604,74727,74605,74607,74607,74609,74610,74610,74612,74613,74615,74617,74619,74622,74624,74626,74627,74629,74631,74633,74635,74637,74640,74642,74644,74645,74647,74649,74650,74652,74653,74653,74655,74728,74656,74658,74660,74660,74662,74664,74665,74667,74669,74670,74672,74674,74675,74677,74729,74678,74680,74682,74682,74684,74685,74688,74690,74730,74731,74691,74693,74693,74695,74697,74706,74708,74732,74709,74711,74713,74733,74714,74716,74716,74718,74719,74719,74721,74734,74468,74470,74722,74722,74473,74477,74477,74481,74735,74482,74484,74488,74492,74496,74499,74723,74504,74508,74511,74512,74516,74517,74521,74522,74522,74526,74529,74529,74724,74534,74736,74535,74725,74540,74544,74546,74546,74548,74552,74552,74556,74557,74557,74561,74737,74562,74566,74738,74567,74569,74573,74726,74576,74578,74579,74583,74584,74739,74587,74590,74590,74593,74595,74596,74600,74604,74727,74607,74610,74613,74615,74619,74740,74622,74626,74741,74627,74631,74631,74633,74637,74742,74640,74644,74743,74645,74649,74744,74650,74653,74653,74728,74745,74745,74656,74660,74660,74664,74746,74746,74665,74669,74670,74674,74675,74747,74678,74682,74748,74688,74730,74731,74693,74697,74749,74709,74713,74733,74716,74719,74468,74722,74477,74477,74735,74750,74482,74488,74492,74492,74499,74723,74723,74508,74509,74511,74516,74751,74522,74529,74534,74534,74736,74725,74546,74552,74557,74737,74562,74738,74752,74567,74573,74753,74726,74578,74586,74739,74590,74595,74596,74604,74727,74610,74613,74613,74619,74621,74740,74626,74741,74741,74631,74637,74742,74644,74743,74743,74649,74754,74653,74745,74660,74660,74746,74669,74670,74675,74729,74747,74682,74685,74748,74730,74755,74755,74731,74697,74749,74713,74756,74733,74719,74734,74734,74468,74477,74482,74492,74723,74511,74751,74757,74517,74522,74534,74534,74725,74538,74540,74546,74557,74557,74737,74738,74752,74573,74758,74758,74753,74578,74586,74590,74595,74595,74604,74759,74760,74727,74613,74613,74621,74761,74740,74741,74637,74639,74742,74743,74653,74660,74669,74762,74670,74729,74763,74747,74685,74748,74755,74697,74749,74756,74764,74765,74733,74734,74734,74477,74750,74482,74723,74509,74517,74534,74538,74540,74557,74738,74752,74758,74578,74586,74595,74759,74613,74761,74740,74740,74637,74639,74639,74743,74754,74744,74653,74669,74762,74729,74763,74763,74685,74687,74748,74697,74766,74767,74749,74764,74765,74734,74750,74768,74482,74509,74757,74517,74538,74538,74540,74738,74769,74752,74578,74586,74759,74760,74613,74740,74639,74639,74754,74744,74744,74669,74762,74762,74763,74687,74748,74766,74770,74767,74764,74765,74765,74750,74768,74768,74509,74511,74757,74538,74738,74769,74578,74579,74586,74760,74613,74613,74639,74744,74744,74762,74687,74748,74770,74698,74765,74768,74511,74511,74757,74738,74769,74579,74584,74586,74613,74744,74744,74687,74748,74748,74698,74700,74767,74765,74511,74511,74738,74771,74769,74584,74586,74586,74744,74748,74748,74700,74701,74732,74767,74511,74511,74771,74769,74769,74586,74748,74748,74701,74703,74732,74511,74769,74769,74748,74703,74706,74732,74769,74769,74703,74704,74704,74706,74769,74772,74773,74774,74775,74776,74777,74778,74779,74780,74780,74781,74782,74783,74784,74785,74786,74787,74788,74788,74789,74790,74791,74792,74793,74793,74794,74795,74796,74797,74798,74799,74800,74801,74802,74803,74804,74804,74805,74806,74806,74807,74808,74809,74810,74811,74812,74813,74814,74814,74815,74816,74817,74818,74819,74819,74820,74821,74821,74822,74823,74823,74824,74825,74826,74827,74828,74829,74830,74831,74832,74833,74834,74834,74835,74836,74837,74838,74839,74839,74840,74841,74841,74842,74843,74844,74845,74846,74847,74848,74849,74849,74850,74851,74851,74852,74853,74854,74855,74856,74856,74857,74858,74859,74860,74861,74861,74862,74863,74863,74864,74865,74865,74866,74867,74867,74868,74869,74869,74870,74871,74871,74872,74873,74874,74875,74876,74876,74877,74878,74879,74880,74881,74881,74882,74883,74883,74884,74885,74886,74887,74888,74888,74889,74890,74890,74891,74892,74893,74894,74895,74896,74897,74898,74899,74900,74901,74901,74902,74903,74904,74905,74906,74906,74907,74908,74908,74909,74910,74910,74911,74912,74913,74914,74915,74915,74916,74917,74917,74918,74919,74919,74920,74921,74921,74922,74923,74923,74924,74925,74926,74927,74928,74929,74930,74931,74931,74932,74933,74934,74935,74936,74936,74937,74938,74939,74940,74941,74941,74942,74943,74943,74944,74945,74946,74947,74948,74949,74950,74951,74951,74952,74953,74954,74955,74956,74956,74957,74958,74959,74960,74961,74961,74962,74963,74963,74964,74965,74966,74967,74968,74968,74969,74970,74971,74972,74973,74973,74974,74975,74975,74976,74977,74978,74979,74980,74980,74981,74982,74982,74983,74984,74984,74985,74986,74986,74987,74988,74989,74990,74991,74991,74992,74993,74994,74995,74996,74997,74998,74999,75000,75001,75002,75002,75003,75004,75004,75005,75006,75006,75007,75008,75008,75009,75010,75010,75011,75012,75012,75013,75014,75014,75015,75016,75017,75018,75019,75020,75021,75022,75022,75023,75024,75025,75026,75027,75027,75028,75029,75029,75030,75031,75032,75033,75034,75034,75035,75036,75036,75037,75038,75039,75040,75041,75041,75042,75043,75044,75045,75046,75046,75047,75048,75048,75049,75050,75050,75051,75052,75052,75053,75054,75054,75055,75056,75056,75057,75058,75059,75060,75061,75061,75062,75063,75063,75064,75065,75066,75067,75068,75069,75070,75071,75072,75073,75074,75074,75075,75076,75076,75077,75078,75078,75079,75080,75080,75081,75082,75083,75084,75085,75086,75087,75088,75088,75089,75090,75090,75091,75092,75093,75094,75095,75095,75096,75097,75098,75099,75100,75101,75102,75103,75104,75105,75106,75107,75108,75109,75109,75110,75111,75111,75112,75113,75113,75114,75115,75116,75117,75118,75118,75119,75120,75121,75122,75123,75123,75124,75125,75125,75126,75127,75128,75129,75130,75131,75132,75133,75134,75135,75136,75136,75137,75138,75138,75139,75140,75141,75142,75143,75143,75144,75145,75145,75146,75147,75148,75149,75150,75151,75152,75153,75153,75154,75155,75155,75156,75157,75158,75159,75160,75160,75161,75162,75162,75163,75164,75165,75166,75167,75167,75168,75169,75170,75171,75172,75173,75174,75175,75175,75176,75177,75178,75179,75180,75180,75181,75182,75183,74772,74774,74775,74777,75184,74778,74780,74782,74783,74785,75185,74788,74790,75186,74791,74793,74795,74796,74798,75187,74799,74801,75188,74802,74804,74806,74806,74808,75189,74809,74811,75190,74812,74814,74816,74817,74819,74821,74826,74828,75191,74829,74831,75192,75192,74832,74834,74834,74836,74837,74837,74839,74841,74841,74843,75193,74844,74846,75194,74847,74849,74851,74854,74856,74858,75195,74859,74861,74861,74863,74865,74865,74867,74869,74869,74871,74873,74874,74876,74878,75196,74879,74881,74881,74883,74885,75197,74886,74888,74888,74890,74892,74892,74893,74895,75198,74896,74898,74899,74901,74903,74904,74906,74908,74908,74910,74912,74913,74915,74917,74919,74921,74923,74929,74931,74933,74934,74936,74938,74939,74941,74943,74943,74945,74946,74946,74948,75199,74949,74951,74953,74954,74956,74958,74959,74961,74963,74963,74965,74966,74966,74968,74970,74971,74973,74975,74975,74977,75200,74978,74980,74982,74982,74984,74986,74986,74988,75201,74989,74991,74993,74994,74996,75202,74997,74999,75000,75000,75002,75004,75004,75006,75008,75008,75010,75012,75017,75019,75203,75020,75022,75024,75025,75027,75029,75204,75032,75034,75034,75036,75038,75039,75041,75043,75044,75046,75048,75048,75050,75052,75052,75054,75056,75059,75061,75063,75063,75065,75066,75066,75068,75069,75069,75071,75205,75072,75074,75076,75076,75078,75080,75083,75085,75086,75086,75088,75090,75090,75092,75206,75093,75095,75097,75098,75100,75101,75101,75103,75207,75104,75106,75208,75107,75109,75111,75111,75113,75115,75116,75118,75120,75121,75123,75125,75125,75127,75209,75128,75130,75131,75131,75133,75210,75134,75136,75138,75138,75140,75141,75141,75143,75145,75145,75147,75211,75148,75150,75212,75151,75153,75155,75155,75157,75213,75160,75162,75164,75165,75167,75169,75170,75172,75173,75173,75175,75177,75214,75178,75180,75183,74774,75215,75216,74775,75184,75217,74778,74782,74783,75185,74786,74788,75186,75218,75218,74791,74795,75219,74796,75187,75220,74799,75188,74802,74806,75189,75221,74809,75190,74812,74816,74817,74817,74821,74823,74825,74826,75191,74829,75192,74834,74834,74837,74841,75222,74844,75194,75223,74847,74851,74854,74858,75224,75195,74861,74865,74865,74869,74873,74874,74878,75225,75196,74881,74885,74888,74892,74895,75198,74898,74899,75226,74904,74908,74908,74912,75227,74913,74917,74919,74919,74923,74925,74928,74929,74933,74934,74938,75228,75228,74939,74943,74943,74946,75199,75199,74949,74953,75229,74954,74958,74959,74963,74966,74966,74970,74971,74975,75200,74978,74978,74982,74986,74986,75201,75230,75230,74989,74993,74993,74994,75202,74997,75000,75004,75008,75012,75014,75231,75017,75203,75020,75024,75025,75025,75029,75031,75204,75034,75038,75038,75039,75043,75044,75048,75052,75052,75056,75058,75059,75063,75066,75069,75205,75232,75076,75080,75082,75083,75086,75090,75090,75206,75233,75093,75097,75234,75098,75101,75207,75107,75111,75115,75235,75116,75120,75121,75125,75209,75236,75128,75131,75131,75210,75134,75134,75138,75141,75141,75145,75211,75148,75212,75151,75158,75160,75164,75164,75165,75169,75173,75177,75237,75214,75180,75182,75217,74782,74783,74788,75218,74795,75219,75187,75238,75188,74802,75189,75221,75190,74812,74812,74817,74823,74823,74825,75191,75191,74829,74834,74834,74841,75193,75223,74851,74853,74853,74854,75224,75195,74865,74873,74873,74874,75225,75239,75196,74885,74888,74895,75240,75241,75198,74899,75242,75226,74908,74908,75227,75243,74913,74919,74925,74926,74928,74933,74933,74934,75228,75228,74943,75199,75199,74953,75244,75229,74958,75245,74959,74966,74971,74975,74978,74986,75230,74993,75202,74997,75004,75008,75008,75014,75016,75203,75020,75025,75025,75031,75204,75204,75038,75043,75044,75052,75058,75059,75066,75069,75076,75082,75246,75083,75090,75233,75234,75098,75207,75107,75115,75247,75235,75120,75121,75121,75209,75248,75131,75134,75141,75141,75211,75249,75148,75151,75155,75158,75164,75169,75173,75237,75214,75214,75182,75183,75250,75217,74783,74788,74795,75251,75219,75238,75252,75220,75188,75189,75221,74812,74823,74823,75191,74834,74834,75193,75253,75194,75223,74853,74853,75224,75195,75195,74873,75225,75239,74885,75197,75197,74888,75240,75241,74899,74903,75242,74908,75243,74913,74925,74926,74926,74933,75228,75228,75199,75244,74959,74971,74975,74975,74986,75230,75230,75202,74997,74997,75008,75016,75203,75025,75204,75204,75043,75254,75254,75044,75058,75059,75069,75232,75076,75246,75255,75255,75083,75233,75234,75207,75104,75107,75247,75256,75235,75121,75248,75236,75131,75141,75141,75249,75148,75257,75158,75169,75173,75214,75183,75250,74783,74786,74788,75251,75219,75219,75252,75258,75220,75189,75259,75260,75221,74823,74823,74834,75253,74853,75195,75225,75197,75240,75241,75241,74903,75261,75261,75242,75243,74913,74926,75228,75228,75244,75229,75245,74959,74975,74975,75230,74997,74997,75016,75231,75231,75203,75204,75254,75058,75262,75059,75232,75072,75255,75233,75093,75093,75234,75104,75107,75256,75263,75264,75235,75248,75248,75236,75141,75213,75257,75169,75170,75173,75183,75250,74786,74788,74788,75219,75258,75258,75220,75259,75265,75260,74823,74823,75253,75222,75194,74853,75225,75197,75241,75261,75261,75243,75266,74913,75228,75229,75229,75245,74975,74975,74997,75231,75204,75254,75262,75255,75093,75104,75107,75263,75264,75248,75141,75148,75213,75169,75267,75170,75183,75215,75250,74788,75258,74823,75222,75268,74823,75268,75265,75194,75225,75269,75261,75266,75270,75261,75270,75197,75229,74975,75271,75229,75271,74913,74975,75231,75204,75204,75262,75272,75076,75255,75104,75248,75148,75155,75155,75213,75267,75273,75170,75215,75184,75250,75258,75268,75194,75274,75268,75274,75265,75194,75268,75222,75194,75269,75275,75276,75197,75270,75276,75270,75266,75197,75276,75239,75204,74913,75271,75204,75271,74975,75204,75272,75277,75076,75104,75208,75248,75155,75267,75184,75258,75259,75278,75265,75274,75278,75274,75194,75265,75278,75259,75194,75275,75279,75266,75280,75281,75281,75239,75276,75281,75276,75266,75280,74913,75204,75204,75277,75282,75072,75076,75208,75248,75267,75273,75216,75184,75259,75194,75279,75283,75283,75259,75278,75283,75278,75194,75280,75204,75284,75280,75284,75285,75281,75285,75286,75281,75286,75239,75285,75281,75280,75204,75282,75287,75072,75208,75288,75248,75273,75215,75215,75216,75259,75283,75239,75289,75283,75289,75259,75239,75283,75279,75204,75287,75059,75072,75288,75290,75248,75215,75291,75248,75291,75264,75215,75259,75289,75215,75289,75239,75204,75059,75072,75072,75290,75107,75239,75264,75291,75239,75291,75215,75285,75072,75292,75292,75239,75286,75292,75286,75285,75072,75285,75284,75072,75284,75204,75264,75239,75293,75264,75293,75107,75292,75107,75293,75292,75293,75239,75107,75292,75072,75294,75295,75296,75296,75297,75298,75298,75299,75300,75300,75301,75302,75303,75304,75305,75306,75294,75296,75296,75298,75300,75300,75302,75303,75303,75305,75306,75306,75296,75300,75300,75303,75306,75307,75308,75309,75309,75310,75311,75311,75312,75307,75307,75309,75311,75313,75314,75315,75315,75316,75317,75318,75319,75320,75320,75321,75322,75322,75323,75313,75313,75315,75317,75318,75320,75322,75322,75313,75317,75317,75318,75322,75324,75325,75326,75326,75327,75328,75328,75329,75330,75330,75331,75332,75333,75334,75335,75335,75336,75337,75337,75338,75339,75340,75341,75342,75343,75344,75345,75345,75346,75347,75347,75348,75349,75349,75350,75351,75351,75352,75353,75353,75354,75355,75356,75357,75358,75358,75324,75326,75328,75330,75332,75333,75335,75337,75340,75342,75359,75360,75343,75345,75345,75347,75349,75351,75353,75355,75358,75326,75328,75361,75333,75337,75339,75340,75359,75360,75345,75349,75349,75351,75355,75356,75358,75328,75361,75337,75339,75339,75359,75362,75363,75360,75349,75349,75355,75356,75356,75328,75332,75361,75339,75362,75362,75363,75349,75349,75356,75332,75361,75362,75349,75349,75332,75361,75364,75365,75366,75366,75367,75368,75368,75369,75370,75370,75371,75372,75372,75373,75374,75374,75375,75376,75376,75364,75366,75368,75370,75372,75372,75374,75376,75376,75366,75368,75368,75372,75376,75377,75378,75379,75380,75381,75382,75382,75383,75384,75384,75385,75386,75386,75387,75377,75377,75379,75388,75380,75382,75384,75384,75386,75377,75377,75388,75380,75380,75384,75377,75389,75390,75391,75391,75392,75393,75393,75394,75395,75395,75389,75391,75391,75393,75395,75396,75397,75398,75398,75399,75400,75400,75401,75402,75402,75403,75404,75404,75405,75406,75406,75407,75408,75409,75410,75411,75411,75412,75413,75414,75415,75416,75416,75417,75418,75418,75419,75420,75420,75421,75422,75396,75398,75400,75400,75402,75404,75404,75406,75408,75409,75411,75413,75414,75416,75418,75418,75420,75422,75422,75396,75400,75400,75404,75408,75408,75409,75413,75414,75418,75422,75422,75400,75408,75408,75413,75414,75414,75422,75408,75423,75424,75425,75425,75426,75427,75427,75428,75429,75429,75430,75431,75431,75432,75433,75434,75435,75423,75423,75425,75427,75427,75429,75431,75431,75433,75434,75434,75423,75427,75427,75431,75434,75436,75437,75438,75438,75439,75440,75440,75441,75442,75442,75436,75438,75438,75440,75442,75443,75444,75445,75445,75446,75447,75447,75448,75449,75449,75450,75451,75451,75452,75453,75453,75454,75455,75455,75443,75445,75445,75447,75449,75449,75451,75453,75453,75455,75445,75445,75449,75453,75456,75457,75458,75458,75459,75460,75460,75461,75462,75462,75463,75464,75464,75465,75466,75466,75467,75468,75469,75470,75471,75471,75472,75456,75456,75458,75460,75460,75462,75464,75464,75466,75468,75469,75471,75456,75460,75464,75468,75473,75469,75456,75460,75468,75473,75473,75456,75460,75474,75475,75476,75477,75478,75479,75479,75480,75481,75481,75482,75483,75483,75484,75485,75485,75486,75487,75488,75489,75490,75490,75491,75492,75492,75493,75494,75494,75495,75496,75496,75474,75476,75477,75479,75481,75483,75485,75487,75490,75492,75494,75494,75496,75476,75477,75481,75483,75483,75487,75497,75488,75490,75494,75494,75476,75477,75477,75483,75497,75488,75494,75477,75477,75497,75488,75498,75499,75500,75500,75501,75502,75502,75503,75504,75504,75505,75506,75507,75508,75509,75509,75510,75511,75511,75512,75498,75498,75500,75502,75502,75504,75506,75507,75509,75511,75511,75498,75502,75502,75506,75507,75507,75511,75502,75513,75514,75515,75515,75516,75517,75517,75518,75519,75519,75520,75521,75521,75522,75523,75524,75525,75526,75526,75527,75528,75528,75529,75530,75530,75531,75532,75532,75533,75534,75535,75536,75537,75537,75538,75539,75539,75540,75541,75542,75543,75544,75544,75545,75546,75546,75547,75548,75548,75549,75550,75550,75551,75552,75552,75553,75554,75554,75555,75556,75556,75557,75558,75558,75559,75560,75560,75513,75515,75515,75517,75519,75519,75521,75523,75526,75528,75530,75530,75532,75534,75537,75539,75541,75542,75544,75546,75546,75548,75550,75552,75554,75556,75558,75560,75515,75515,75519,75523,75526,75530,75534,75542,75546,75550,75550,75552,75556,75558,75515,75523,75524,75526,75534,75542,75550,75556,75558,75523,75524,75524,75534,75535,75541,75542,75556,75558,75524,75535,75537,75541,75556,75556,75558,75535,75535,75537,75556,75561,75562,75563,75563,75564,75565,75565,75566,75567,75567,75568,75569,75569,75561,75563,75563,75565,75567,75567,75569,75563,75570,75571,75572,75572,75573,75574,75574,75575,75576,75576,75577,75578,75579,75580,75581,75581,75582,75583,75583,75584,75585,75585,75586,75587,75587,75588,75589,75590,75591,75592,75592,75593,75594,75595,75596,75597,75597,75598,75599,75600,75601,75602,75602,75603,75604,75604,75570,75572,75572,75574,75576,75576,75578,75605,75606,75579,75581,75581,75583,75585,75585,75587,75589,75590,75592,75594,75595,75597,75599,75604,75572,75576,75576,75605,75607,75606,75581,75585,75585,75589,75590,75590,75594,75595,75595,75599,75608,75602,75604,75576,75576,75607,75606,75606,75585,75590,75590,75595,75608,75602,75576,75606,75590,75608,75600,75600,75602,75606,75606,75590,75600,75609,75610,75611,75611,75612,75613,75613,75614,75615,75615,75616,75617,75617,75618,75619,75619,75620,75609,75609,75611,75613,75613,75615,75617,75617,75619,75609,75609,75613,75617,75621,75622,75623,75623,75624,75625,75625,75626,75627,75627,75628,75629,75629,75630,75631,75631,75621,75623,75623,75625,75627,75627,75629,75631,75631,75623,75627,75632,75633,75634,75634,75635,75636,75636,75637,75638,75638,75639,75632,75632,75634,75636,75636,75638,75632,74682,75640,75641,75641,75642,75643,75644,75645,75646,75646,75647,75648,75649,75650,75651,75652,75653,75654,75654,75655,75656,75656,75657,75658,75658,75659,75660,75661,75662,75663,75663,75664,75665,75666,75667,75668,75669,75670,75671,75672,75673,75674,75675,74469,74468,74468,74734,74721,74720,74719,74718,74717,74716,74715,74715,74714,74733,74733,74765,74764,74764,74756,74713,74710,74709,74749,74749,74767,74732,74732,74708,74707,74707,74706,74705,74705,74704,74703,74702,74701,74700,74699,74698,74770,74770,74766,74697,74692,74691,74731,74731,74755,74730,74689,74688,74748,74748,74687,74686,74686,74685,74684,74682,75641,75643,75644,75646,75648,75652,75654,75656,75656,75658,75660,75661,75663,75665,75666,75668,75669,75669,75671,75676,75672,75674,75677,75678,75675,74468,74468,74721,74720,74715,74733,74764,74764,74713,74712,74710,74749,74732,74732,74707,74705,74705,74703,74702,74702,74700,74699,74699,74770,74697,74692,74731,74730,74689,74748,74686,74686,74684,74683,74683,74682,75643,75644,75648,75649,75679,75652,75656,75656,75660,75680,75661,75665,75666,75666,75669,75676,75676,75672,75677,75678,74468,74720,74715,74764,74712,74710,74732,74705,74705,74702,74699,74692,74730,74690,74690,74689,74686,74683,75643,75681,75644,75649,75651,75651,75679,75656,75680,75661,75666,75666,75676,75677,75677,75678,74720,74717,74715,74712,74711,74710,74705,74705,74699,74697,74693,74692,74690,74690,74686,74683,74683,75681,75644,75651,75656,75680,75680,75666,75677,75677,74720,74718,74718,74717,74712,74712,74711,74705,74705,74697,74696,74693,74690,74683,74683,75644,75651,75651,75680,75677,75677,74718,74712,74712,74705,74696,74694,74693,74683,74683,75651,75677,75677,74712,74696,74694,74683,75677,75677,74696,74695,74695,74694,75677,75682,75683,75684,75684,75685,75686,75686,75687,75688,75689,75690,75691,75691,75692,75693,75693,75682,75684,75684,75686,75688,75689,75691,75693,75684,75688,75689,75689,75693,75684,75694,75695,75696,75696,75697,75698,75698,75699,75700,75700,75701,75694,75694,75696,75698,75698,75700,75694,75702,75703,75704,75704,75705,75706,75707,75708,75709,75709,75710,75711,75711,75712,75713,75714,75715,75716,75716,75717,75718,75718,75719,75720,75720,75721,75722,75702,75704,75706,75707,75709,75711,75714,75716,75718,75718,75720,75722,75702,75706,75723,75723,75707,75711,75724,75714,75718,75718,75722,75702,75723,75711,75713,75724,75718,75702,75702,75723,75713,75713,75724,75702,75725,75726,75727,75728,75729,75730,75730,75731,75732,75732,75733,75734,75734,75725,75727,75727,75728,75730,75730,75732,75734,75734,75727,75730,75735,75736,75737,75737,75738,75739,75739,75740,75741,75741,75742,75743,75744,75735,75737,75737,75739,75741,75741,75743,75745,75745,75744,75737,75737,75741,75745,75746,75747,75748,75749,75750,75751,75751,75752,75753,75753,75754,75746,75746,75748,75755,75755,75749,75751,75751,75753,75746,75746,75755,75751,75756,75757,75758,75759,75760,75761,75762,75763,75764,75764,75765,75766,75766,75767,75768,75768,75769,75770,75770,75771,75772,75772,75756,75758,75773,75759,75761,75762,75764,75766,75766,75768,75770,75772,75758,75774,75761,75762,75766,75770,75772,75774,75761,75766,75770,75770,75774,75773,75773,75761,75770,75775,75776,75777,75777,75778,75779,75780,75781,75782,75782,75783,75784,75785,75786,75787,75788,75789,75790,75791,75792,75793,75794,75795,75796,75796,75797,75798,75799,75800,75801,75802,75803,75804,75804,75805,75806,75806,75807,75808,75809,75810,75811,75812,75813,75814,75815,75816,75817,75775,75777,75779,75779,75780,75782,75785,75787,75788,75788,75790,75818,75791,75793,75794,75796,75798,75799,75799,75801,75802,75802,75804,75806,75806,75808,75819,75809,75811,75812,75812,75814,75815,75820,75775,75779,75779,75782,75784,75821,75785,75788,75788,75818,75791,75794,75796,75799,75799,75802,75806,75806,75819,75822,75823,75809,75812,75812,75815,75817,75820,75779,75784,75821,75788,75791,75794,75799,75806,75823,75812,75817,75817,75820,75784,75824,75821,75791,75794,75806,75822,75825,75823,75817,75817,75784,75826,75794,75822,75825,75817,75826,75824,75791,75794,75825,75817,75824,75791,75791,75825,75817,75827,75828,75829,75829,75830,75827,75831,75832,75833,75833,75834,75835,75835,75831,75833,75836,75837,75838,75838,75839,75840,75840,75841,75842,75843,75844,75836,75838,75840,75842,75845,75843,75836,75838,75842,75845,75845,75836,75838,75846,75847,75848,75848,75849,75850,75850,75851,75852,75852,75853,75854,75854,75855,75846,75846,75848,75850,75850,75852,75854,75854,75846,75850,75856,75857,75858,75858,75859,75860,75860,75861,75862,75862,75863,75864,75864,75865,75856,75856,75858,75860,75860,75862,75864,75864,75856,75860,75866,75867,75868,75868,75869,75870,75870,75871,75872,75872,75873,75874,75874,75866,75868,75868,75870,75872,75872,75874,75868,75875,75876,75877,75878,75879,75880,75880,75881,75882,75882,75883,75884,75884,75885,75886,75886,75875,75877,75878,75880,75882,75882,75884,75886,75886,75877,75878,75878,75882,75886,75887,75888,75889,75889,75890,75891,75891,75892,75893,75894,75887,75889,75889,75891,75893,75893,75894,75889,75895,75896,75897,75897,75898,75899,75899,75900,75901,75901,75902,75903,75903,75904,75895,75897,75899,75901,75901,75903,75895,75895,75897,75901,75905,75906,75907,75907,75908,75909,75909,75910,75911,75911,75912,75905,75905,75907,75909,75909,75911,75905,75913,75914,75915,75915,75916,75917,75917,75918,75919,75919,75920,75913,75913,75915,75917,75917,75919,75913,75921,75922,75923,75923,75924,75925,75926,75927,75921,75923,75925,75928,75929,75926,75921,75921,75923,75928,75928,75929,75921,75930,75931,75932,75932,75933,75934,75934,75935,75930,75930,75932,75934,75936,75937,75938,75938,75939,75940,75940,75941,75942,75942,75943,75944,75945,75946,75947,75947,75948,75936,75936,75938,75940,75942,75944,75945,75945,75947,75936,75936,75940,75942,75942,75945,75936,75949,75950,75951,75951,75952,75953,75953,75954,75955,75955,75956,75957,75957,75949,75951,75951,75953,75955,75955,75957,75951,75958,75959,75960,75960,75961,75962,75963,75964,75965,75966,75967,75958,75960,75962,75963,75965,75966,75958,75958,75960,75963,75963,75965,75958,75968,75969,75970,75970,75971,75972,75973,75974,75975,75975,75976,75968,75968,75970,75972,75973,75975,75968,75968,75972,75973,75977,75978,75979,75979,75980,75981,75981,75982,75977,75977,75979,75981,75983,75984,75985,75986,75987,75988,75988,75989,75990,75990,75983,75985,75985,75986,75988,75988,75990,75985,75991,75992,75993,75994,75995,75996,75996,75997,75998,75998,75991,75993,75994,75996,75998,75998,75993,75999,75999,75994,75998,76000,76001,76002,76002,76003,76004,76004,76005,76000,76000,76002,76004,76006,76007,76008,76009,76010,76011,76011,76012,76013,76013,76014,76015,76016,76017,76018,76018,76006,76008,76008,76009,76011,76011,76013,76015,76016,76018,76008,76008,76011,76015,76015,76016,76008,76019,76020,76021,76022,76023,76024,76024,76025,76026,76026,76027,76019,76019,76021,76022,76022,76024,76026,76026,76019,76022,76028,76029,76030,76030,76031,76032,76032,76033,76034,76034,76028,76030,76030,76032,76034,76035,76036,76037,76038,76039,76040,76041,76042,76043,76043,76044,76045,76045,76046,76047,76048,76049,76050,76050,76035,76037,76038,76040,76041,76041,76043,76045,76048,76050,76037,76037,76038,76041,76041,76045,76047,76051,76048,76037,76037,76041,76047,76047,76051,76037,76052,76053,76054,76054,76055,76056,76057,76058,76059,76059,76060,76061,76061,76062,76063,76064,76065,76066,76066,76067,76068,76068,76069,76070,76071,76072,76073,76073,76074,76075,76052,76054,76056,76076,76057,76059,76059,76061,76063,76077,76064,76066,76066,76068,76070,76078,76071,76073,76073,76075,76052,76052,76056,76076,76076,76059,76063,76077,76066,76070,76078,76073,76052,76052,76076,76063,76077,76070,76078,76052,76063,76077,76077,76078,76052,76079,76080,76081,76081,76082,76083,76083,76084,76079,76079,76081,76083,76085,76086,76087,76087,76088,76089,76090,76091,76092,76092,76093,76094,76094,76095,76096,76096,76097,76098,76099,76100,76101,76101,76102,76103,76085,76087,76089,76090,76092,76094,76094,76096,76098,76099,76101,76103,76104,76085,76089,76094,76098,76105,76099,76103,76104,76104,76089,76090,76090,76094,76105,76099,76104,76090,76090,76105,76099,76106,76107,76108,76108,76109,76110,76110,76111,76106,76106,76108,76110,76112,76113,76114,76114,76115,76116,76116,76117,76118,76118,76112,76114,76114,76116,76118,76119,76120,76121,76121,76122,76123,76123,76124,76125,76125,76126,76127,76127,76128,76129,76130,76131,76132,76133,76134,76135,76135,76119,76121,76121,76123,76125,76125,76127,76129,76130,76132,76133,76133,76135,76121,76121,76125,76129,76129,76130,76133,76133,76121,76129,76136,76137,76138,76138,76139,76140,76141,76142,76143,76143,76144,76145,76145,76146,76147,76147,76148,76149,76149,76150,76151,76151,76152,76153,76154,76155,76156,76156,76157,76158,76159,76160,76161,76161,76162,76163,76163,76164,76165,76165,76166,76167,76168,76169,76170,76171,76172,76173,76173,76174,76175,76175,76176,76177,76177,76178,76179,76179,76180,76181,76182,76183,76184,76185,76186,76187,76187,76188,76189,76136,76138,76140,76190,76141,76143,76143,76145,76147,76191,76154,76156,76159,76161,76163,76163,76165,76167,76168,76170,76192,76171,76173,76175,76177,76179,76181,76193,76182,76184,76194,76185,76187,76195,76136,76140,76190,76143,76147,76191,76156,76158,76158,76159,76163,76163,76167,76168,76196,76171,76175,76175,76177,76181,76193,76184,76197,76194,76187,76189,76195,76140,76190,76190,76147,76149,76153,76191,76158,76158,76163,76168,76196,76175,76181,76197,76194,76189,76198,76195,76190,76190,76149,76151,76151,76153,76158,76158,76168,76192,76199,76196,76181,76193,76197,76189,76200,76198,76190,76190,76151,76158,76158,76192,76199,76199,76181,76201,76193,76189,76200,76158,76199,76201,76202,76193,76200,76158,76201,76203,76202,76200,76190,76158,76203,76202,76202,76190,76158,47150,76204,76205,76205,76206,76207,76207,76208,76209,76210,76211,76212,76212,76213,76214,76215,76216,76217,76217,76218,76219,76220,76221,76222,76223,76224,76225,76226,76227,76228,76229,76230,76231,76232,76233,76234,76234,76235,76236,76237,73007,73006,73006,73033,73036,73002,73001,73000,72999,72998,72997,72996,72995,72994,72994,72993,72992,72991,72990,72989,72989,72988,73092,73092,73091,73090,73086,73085,73084,73083,73082,73128,73128,73081,73080,73078,73077,73120,73075,73074,73127,73127,73073,73072,73070,73069,73068,73063,73062,73061,73061,73060,76238,76239,76240,76241,76241,76242,76243,76243,76244,76245,76246,76247,76248,76249,76250,76251,76251,76252,76253,76254,76255,76256,76256,76257,76258,76258,76259,76260,76261,76262,76263,76263,76264,76265,76265,76266,76267,76268,76269,76270,76270,76271,76272,76272,76273,76274,76274,76275,76276,76276,76277,76278,76278,76279,76280,76281,76282,76283,76284,76285,76286,76287,76288,76289,76289,76290,76291,76292,76293,76294,76295,76296,76297,76297,76298,76299,76300,76301,76302,76303,76304,76305,76305,76306,76307,76307,76308,76309,76310,76311,76312,76313,76314,76315,76315,76316,76317,76318,76319,76320,76321,76322,76323,76323,76324,76325,76325,76326,76327,76327,76328,76329,76330,76331,76332,76333,76334,76335,76335,76336,76337,76337,76338,76339,76339,76340,76341,76341,76342,76343,76344,76345,76346,76347,76348,76349,76349,76350,76351,76352,76353,76354,76354,76355,76356,76356,76357,76358,76358,76359,76360,76360,76361,76362,76362,76363,76364,76365,76366,76367,76367,76368,76369,76369,76370,76371,76371,76372,76373,76374,76375,76376,76376,76377,76378,76378,76379,76380,76381,76382,76383,76383,76384,76385,76385,76386,76387,76387,76388,76389,76390,76391,76392,76393,76394,76395,76396,76397,76398,76399,76400,76401,76401,76402,76403,76403,76404,76405,76405,76406,76407,76407,76408,76409,76410,76411,76412,76412,76413,76414,76414,76415,76416,76417,76418,76419,76419,76420,76421,76421,76422,76423,76423,76424,76425,76426,76427,76428,76429,76430,76431,76432,76433,76434,76435,76436,76437,76437,76438,76439,76440,47166,47165,47165,47164,47163,47162,47161,47210,47210,47160,47159,47155,47154,47211,47211,47212,47202,47152,47151,47206,47206,47150,76205,76205,76207,76209,76210,76212,76214,76215,76217,76219,76223,76225,76441,76441,76226,76228,76229,76231,76442,76232,76234,76236,76237,73006,73036,73002,73000,72999,72999,72997,72996,72994,72992,72991,72991,72989,73092,73087,73086,73084,73083,73128,73080,73078,73120,73076,73076,73075,73127,73070,73068,73067,73063,73061,76238,76239,76241,76243,76243,76245,76246,76249,76251,76253,76254,76256,76258,76261,76263,76265,76265,76267,76268,76268,76270,76272,76274,76276,76278,76281,76283,76443,76284,76286,76287,76287,76289,76291,76292,76294,76295,76295,76297,76299,76300,76302,76444,76303,76305,76307,76307,76309,76445,76446,76310,76312,76447,76313,76315,76315,76317,76448,76318,76320,76321,76321,76323,76325,76325,76327,76329,76333,76335,76337,76337,76339,76341,76341,76343,76449,76344,76346,76450,76352,76354,76356,76356,76358,76360,76360,76362,76364,76367,76369,76371,76371,76373,76451,76452,76374,76376,76376,76378,76380,76381,76383,76385,76385,76387,76389,76453,76393,76395,76454,76399,76401,76405,76407,76409,76410,76412,76414,76414,76416,76455,76419,76421,76423,76423,76425,76456,76426,76428,76457,76458,76429,76431,76432,76434,76459,76435,76437,76439,76440,47165,47163,47163,47162,47210,47156,47155,47211,47211,47202,47153,47152,47206,76205,76205,76209,76460,76210,76214,76461,76215,76219,76220,76222,76223,76441,76441,76228,76462,76442,76232,76236,76236,76237,73036,73002,72999,72996,72994,72991,73092,73087,73084,73083,73079,73078,73076,73076,73127,73072,73071,73070,73067,73064,73063,76238,76238,76239,76243,76243,76246,76248,76249,76253,76463,76463,76254,76258,76260,76261,76265,76272,76274,76278,76281,76443,76464,76284,76287,76291,76291,76292,76295,76295,76299,76300,76465,76303,76307,76447,76315,76448,76318,76321,76325,76325,76329,76466,76467,76333,76337,76337,76341,76449,76468,76344,76450,76352,76356,76360,76360,76364,76365,76365,76367,76371,76452,76376,76380,76469,76381,76385,76385,76389,76390,76453,76395,76396,76454,76401,76403,76403,76405,76409,76410,76414,76455,76417,76419,76423,76458,76431,76470,76471,76432,76459,76439,76440,47163,47163,47210,47159,47156,47211,47153,47153,47152,76205,76210,76461,76215,76220,76222,76441,76441,76462,76472,76236,73036,73005,73003,73002,72996,72994,73092,73090,73087,73083,73080,73079,73076,73072,73071,73067,73066,73064,76238,76243,76243,76248,76473,76474,76249,76463,76463,76258,76260,76260,76265,76268,76272,76278,76280,76475,76284,76291,76291,76295,76300,76465,76307,76445,76312,76447,76448,76318,76325,76466,76332,76467,76337,76337,76449,76468,76476,76352,76360,76360,76365,76371,76451,76452,76380,76469,76385,76390,76454,76403,76409,76477,76410,76455,76417,76423,76456,76458,76470,76471,76471,76459,76435,76435,76439,47163,47163,47159,47158,47156,47153,76205,76220,76441,76472,76442,76236,73005,73004,73003,72996,72994,73090,73089,73080,73079,73072,73071,73066,73065,73065,73064,76243,76474,76463,76260,76260,76268,76272,76475,76291,76300,76465,76445,76478,76446,76312,76448,76479,76318,76466,76332,76337,76468,76476,76360,76371,76451,76380,76480,76481,76469,76390,76454,76409,76482,76477,76455,76483,76484,76417,76456,76435,47163,47158,47157,47156,76205,76215,76220,76472,76229,76442,73005,73004,72996,72994,72994,73089,73088,73080,73072,73071,73071,73065,76243,76485,76474,76260,76464,76475,76300,76444,76465,76478,76446,76448,76479,76479,76466,76486,76330,76332,76468,76351,76476,76371,76487,76481,76390,76454,76482,76488,76477,76483,76489,76489,76484,76456,76471,76435,47158,47158,47157,76205,76215,76472,76229,76229,73005,73004,73004,72994,73088,73080,73071,76243,76490,76485,76260,76464,76300,76444,76444,76478,76446,76446,76479,76486,76330,76468,76450,76351,76371,76451,76480,76487,76390,76454,76488,76477,76477,76489,76456,47158,76205,76460,76215,76229,73004,73004,73088,73087,73087,73080,76243,76490,76260,76272,76464,76444,76446,76446,76486,76330,76330,76450,76347,76451,76480,76390,76454,76477,76456,47158,76460,76491,73004,73087,76492,73004,76492,76215,73087,76243,76473,76473,76490,76272,76281,76464,76446,76446,76330,76347,76451,76390,76392,76454,76456,76426,47158,76491,76493,76494,76215,76492,76494,76492,73087,76215,76494,76210,76473,76272,76495,76473,76495,73087,76496,76281,76446,76451,76392,76453,76454,76426,76457,47158,76493,76497,76272,76280,76498,76498,73087,76495,76498,76495,76272,76496,76446,76347,76454,76457,76458,47158,76497,76210,76280,76499,76500,76500,73087,76498,76500,76498,76280,76501,76496,76347,76398,76454,76458,76471,47158,76210,76501,76347,76349,76398,76458,76471,76471,76210,76494,76494,73087,76502,76494,76502,76471,76501,76349,76351,76398,76471,76502,76398,76502,73087,76499,76501,76351,76396,76398,73087,76499,76351,76451,76453,76396,73087,76451,73087,76500,76451,76500,76499,76451,76453,73087,76503,76504,76505,76505,76506,76507,76507,76508,76509,76510,76511,76512,76513,76514,76515,76515,76516,76517,76518,76519,76520,76521,76522,76523,76523,76524,76525,76525,76526,76527,76528,76529,76530,76531,76532,76533,76534,76535,76536,76536,76537,76538,76538,76539,76540,76540,76541,76542,76543,76544,76545,76545,76546,76547,76547,76548,76549,76550,76551,76552,76553,76554,76555,76555,76556,76557,76558,76559,76560,76560,76561,76562,76563,76564,76565,76566,76567,76568,76569,76570,76571,76571,76572,76573,76574,74272,74271,74270,74269,74337,74337,74344,74268,74267,74266,74265,74262,74261,74260,74259,74258,74323,74323,74257,74256,74256,74255,74336,74253,74252,74251,74248,74247,74322,74245,74244,74243,74242,74241,74240,74239,74238,74237,74237,74236,74398,74398,74397,74396,74393,74392,74391,74391,69454,69453,69453,69452,69494,69450,69449,69521,69521,69510,69448,69445,69444,69493,69442,69441,69516,69516,69509,69440,69439,69438,69492,69492,69525,69491,69436,69435,69508,69508,69490,69434,69433,69432,69431,69428,69427,69489,69489,69426,69425,69425,69603,69602,69599,69598,69597,69597,69596,69595,69595,69594,69593,69590,69589,69844,69844,69869,69878,69878,69883,69859,69859,69843,69588,69587,69586,69826,69826,69585,69584,69574,69573,69842,69842,69868,69825,69571,69570,69569,69568,69567,69824,69565,69564,69563,69562,69561,69560,69558,69557,69556,69554,69553,69552,69551,69550,69549,69549,69548,69547,69547,69546,69823,69540,69539,69822,69537,69536,69841,69841,69858,69877,69877,69881,69821,69534,69533,69532,76503,76505,76507,76507,76509,76575,76576,76510,76512,76577,76513,76515,76515,76517,76578,76518,76520,76579,76521,76523,76525,76531,76533,76580,76534,76536,76538,76538,76540,76542,76543,76545,76547,76547,76549,76581,76582,76550,76552,76553,76555,76557,76558,76560,76562,76566,76568,76583,76569,76571,76573,74270,74337,74268,74268,74267,74265,74263,74262,74260,74259,74323,74256,74256,74336,74254,74253,74251,74250,74248,74322,74246,74245,74243,74242,74239,74237,74398,74394,74393,74391,74391,69453,69494,69450,69521,69448,69445,69493,69443,69442,69516,69440,69439,69492,69491,69436,69508,69434,69434,69433,69431,69428,69489,69425,69425,69602,69601,69597,69595,69593,69590,69844,69878,69878,69859,69588,69587,69826,69584,69575,69574,69842,69842,69825,69572,69571,69569,69568,69568,69824,69566,69565,69563,69562,69558,69556,69555,69552,69551,69549,69549,69547,69823,69541,69540,69822,69537,69841,69877,69877,69821,69535,69534,69532,76584,76503,76507,76575,76576,76512,76585,76577,76515,76578,76586,76518,76579,76521,76525,76527,76530,76531,76580,76587,76534,76538,76538,76542,76543,76582,76552,76553,76553,76557,76558,76565,76566,76583,76588,76569,76573,74271,74270,74268,74268,74265,74264,74259,74256,74254,74248,74246,74245,74245,74242,74240,74239,74398,74396,74394,74391,69494,69451,69450,69448,69445,69443,69442,69442,69440,69439,69439,69491,69437,69434,69431,69430,69428,69425,69601,69599,69597,69593,69591,69590,69878,69588,69587,69584,69575,69842,69572,69571,69568,69566,69565,69562,69560,69554,69552,69549,69549,69823,69545,69541,69822,69538,69537,69877,69535,69534,76584,76589,76589,76503,76575,76575,76576,76585,76585,76577,76578,76586,76579,76521,76521,76527,76590,76528,76530,76580,76587,76538,76543,76582,76553,76558,76583,76588,76573,74271,74268,74264,74260,74259,74254,74249,74248,74245,74245,74240,74239,74239,74396,74395,74395,74394,69494,69451,69448,69447,69445,69442,69439,69439,69437,69436,69429,69428,69601,69599,69593,69592,69591,69878,69588,69588,69584,69583,69576,69575,69572,69571,69566,69565,69565,69560,69559,69554,69549,69545,69541,69538,69537,69537,69535,69534,69534,76589,76575,76575,76585,76578,76586,76521,76590,76528,76580,76591,76587,76543,76547,76581,76582,76558,76565,76583,76573,76574,74271,74264,74263,74260,74254,74249,74245,74239,74395,69494,69451,69451,69447,69446,69445,69439,69436,69429,69601,69600,69599,69592,69591,69591,69588,69583,69577,69576,69572,69572,69571,69565,69555,69554,69545,69541,69537,69534,69534,76575,76578,76578,76586,76590,76587,76547,76581,76581,76558,76562,76565,76573,76574,76574,74264,74263,74263,74254,74253,74250,74249,74239,74395,69451,69446,69446,69445,69436,69429,69600,69599,69599,69591,69583,69577,69572,69565,69555,69545,69544,69541,69534,76578,76578,76590,76528,76587,76581,76562,76563,76565,76574,76574,74263,74253,74250,74239,74395,74395,69446,69436,69430,69429,69599,69599,69583,69582,69578,69577,69565,69555,69544,69543,69542,69541,76578,76578,76528,76591,76591,76587,76562,76563,76574,74253,74253,74250,74395,74395,69436,69434,69430,69599,69582,69578,69565,69559,69555,69543,69542,69542,76578,76591,76591,76562,76563,76563,74253,74395,74395,69434,69430,69430,69582,69581,69578,69559,69558,69558,69555,69542,76563,74395,76592,76563,76592,76591,69430,69581,76593,69430,76593,74395,69578,69558,69542,69581,69580,76594,76594,74395,76593,76594,76593,69581,69579,69578,69542,69580,69579,76595,76595,74395,76594,76595,76594,69580,69579,69542,76591,69579,76591,76592,76592,74395,76595,76592,76595,69579,59248,59247,59372,59372,59387,59336,59245,59244,59243,59241,59240,59239,59238,59237,59236,59236,59235,59335,59335,59371,59334,59233,59232,59386,59386,59231,59230,59226,59225,59224,59224,59223,59333,59221,59220,59406,59406,59397,59392,59392,59379,59332,59214,59213,59212,59211,59210,76596,76596,76597,76598,76599,76600,76601,76601,76602,76603,76603,76604,76605,76606,76605,76604,76607,76608,76609,76610,76611,76612,76612,76613,76614,76615,76616,76617,76618,76619,76620,76620,76621,76622,76623,76624,76625,76625,76626,76627,76628,76626,76625,76625,76629,76630,76631,76632,76633,76634,76635,76636,76637,76638,76639,76640,76641,76642,76643,76644,76645,76646,76647,76648,76649,76650,76651,76651,76652,76653,76653,76654,76655,76656,76657,76658,76658,76659,76660,76661,76662,76663,76663,76664,76665,76666,76667,76668,76668,76669,76670,76670,76671,76672,76673,76674,76675,76676,76677,76678,76679,76680,76681,76681,76682,76683,76684,76685,76686,76686,76687,76688,76688,76689,76690,76690,76691,76692,76693,76694,76695,76695,76696,76697,76697,76698,76699,76699,76700,76701,76702,76703,76704,76704,76705,76706,76706,76707,76708,76709,76710,76711,76711,76712,76713,76714,76715,76716,76717,76718,76719,76719,76720,76721,76722,76723,76724,76725,76726,76727,76727,76728,76729,76730,76731,76732,76733,76734,76735,76736,76737,76738,76738,76739,76740,76740,76741,76742,76742,76743,76744,76745,76746,76747,76748,76749,76750,76750,76751,76752,76752,76753,76754,76755,76756,76548,76548,76547,76546,76544,76543,76542,76539,76538,76537,76535,76534,76587,76587,76591,76580,76532,76531,76530,76529,76528,76590,76590,76527,76526,76522,76521,76579,76520,76519,76757,76757,76758,76759,76760,76761,76762,76762,76763,76764,76764,76765,76766,76767,76768,76769,76770,76771,76772,76772,76773,76774,76775,76776,76777,76777,76778,76779,76780,76781,76782,76782,76783,76784,76784,76785,76786,76787,76788,76789,76789,76790,76791,76792,76793,76794,76794,76795,76796,76796,76797,76798,76798,76799,76800,76801,76802,76803,76804,76805,76806,76807,59249,59248,59248,59372,59336,59246,59245,59243,59239,59238,59236,59236,59335,59334,59234,59233,59386,59226,59224,59333,59221,59406,59392,59392,59332,59219,59214,59212,59211,59211,76596,76598,76603,76605,76808,76603,76808,76601,76606,76604,76607,76607,76609,76809,76610,76612,76614,76615,76617,76810,76618,76620,76622,76623,76625,76627,76628,76625,76630,76631,76633,76811,76812,76634,76636,76637,76639,76640,76643,76645,76646,76646,76648,76813,76649,76651,76653,76658,76660,76814,76661,76663,76665,76666,76668,76670,76670,76672,76815,76673,76675,76816,76817,76676,76678,76679,76681,76683,76818,76684,76686,76688,76690,76692,76692,76693,76695,76695,76697,76699,76699,76701,76819,76820,76702,76704,76704,76706,76708,76709,76711,76713,76821,76717,76719,76719,76721,76722,76725,76727,76729,76730,76732,76822,76733,76735,76823,76736,76738,76740,76740,76742,76744,76745,76747,76824,76748,76750,76752,76752,76754,76825,76826,76755,76548,76548,76546,76545,76545,76544,76542,76536,76535,76587,76587,76580,76533,76532,76530,76529,76529,76590,76526,76522,76579,76520,76520,76757,76759,76760,76762,76764,76764,76766,76827,76770,76772,76774,76828,76775,76777,76777,76779,76829,76780,76782,76784,76789,76791,76830,76792,76794,76796,76798,76800,76831,76804,76806,76832,76833,76807,59248,59248,59336,59246,59246,59243,59242,59236,59334,59234,59234,59386,59230,59226,59333,59222,59222,59221,59392,59215,59214,59211,59211,76598,76834,76835,76601,76808,76835,76808,76605,76601,76835,76599,76606,76607,76809,76809,76610,76614,76836,76615,76810,76618,76622,76837,76838,76623,76627,76839,76628,76630,76840,76631,76811,76841,76637,76640,76643,76646,76813,76842,76649,76653,76661,76665,76843,76843,76666,76670,76670,76815,76673,76817,76678,76679,76818,76686,76688,76688,76692,76695,76695,76699,76819,76820,76704,76708,76844,76709,76713,76821,76719,76722,76845,76725,76729,76729,76730,76822,76823,76736,76740,76745,76824,76846,76847,76748,76752,76848,76826,76548,76536,76587,76533,76532,76529,76526,76523,76522,76520,76520,76759,76849,76850,76760,76764,76764,76827,76767,76770,76774,76851,76828,76777,76829,76780,76784,76786,76787,76789,76830,76792,76796,76798,76798,76831,76801,76804,76832,76852,76833,59248,59246,59239,59236,59234,59234,59230,59229,59227,59226,59222,59222,59392,59219,59215,59211,76834,76605,76853,76854,76854,76599,76835,76854,76835,76605,76855,76606,76809,76809,76614,76836,76856,76618,76837,76838,76627,76857,76857,76839,76630,76840,76811,76812,76841,76640,76642,76858,76643,76813,76859,76842,76653,76661,76843,76670,76670,76673,76816,76860,76817,76679,76861,76818,76688,76688,76695,76819,76862,76820,76708,76844,76713,76714,76821,76722,76724,76845,76729,76822,76823,76740,76744,76847,76752,76825,76863,76848,76548,76537,76536,76533,76533,76532,76526,76523,76520,76849,76850,76764,76767,76864,76770,76851,76865,76828,76829,76866,76780,76786,76787,76830,76867,76868,76792,76798,76804,76852,76833,76833,59246,59242,59239,59234,59229,59227,59222,59219,59216,59215,76834,76853,76869,76870,76870,76599,76854,76870,76854,76853,76855,76809,76836,76856,76837,76871,76857,76630,76840,76840,76812,76636,76872,76841,76642,76642,76858,76813,76859,76653,76655,76661,76670,76816,76860,76679,76683,76861,76688,76819,76862,76708,76873,76844,76714,76716,76874,76821,76724,76845,76822,76733,76733,76823,76744,76875,76847,76825,76863,76548,76545,76539,76537,76533,76533,76526,76525,76524,76523,76849,76876,76850,76767,76864,76851,76877,76865,76829,76866,76787,76867,76868,76868,76798,76801,76804,76833,59242,59241,59239,59229,59228,59227,59219,59217,59216,76834,76855,76836,76810,76810,76856,76871,76857,76840,76636,76872,76642,76813,76878,76859,76655,76814,76661,76816,76816,76860,76683,76879,76861,76819,76880,76862,76873,76881,76844,76716,76733,76744,76745,76875,76825,76882,76883,76863,76545,76540,76539,76533,76525,76524,76849,76876,76767,76769,76877,76865,76866,76787,76868,76801,76884,76804,59242,59242,59241,59229,59228,59219,59218,59218,59217,76834,76855,76810,76871,76857,76636,76872,76872,76813,76878,76878,76655,76885,76658,76814,76816,76816,76683,76886,76887,76879,76819,76880,76873,76888,76881,76716,76889,76733,76745,76846,76846,76875,76882,76882,76883,76545,76540,76533,76525,76525,76849,76876,76864,76877,76866,76890,76787,76801,76803,76884,59242,59242,59229,59228,59228,59218,76834,76855,76871,76838,76656,76658,76816,76891,76887,76819,76845,76733,76846,76846,76882,76545,76541,76540,76525,76525,76876,76769,76864,76866,76786,76890,76801,76803,76803,59242,59228,59228,76834,76892,76855,76838,76857,76885,76656,76816,76893,76891,76819,76894,76845,76846,76846,76545,76542,76542,76541,76525,76525,76769,76895,76895,76864,76786,76890,76803,59228,59228,76892,76896,76897,76855,76857,76885,76816,76886,76898,76893,76819,76894,76846,76542,76542,76525,76895,76895,76786,76899,76899,76890,59228,59228,76896,76599,76857,76872,76900,76857,76900,76897,76878,76885,76886,76886,76898,76819,76901,76894,76542,76895,76899,76902,76895,76902,76542,76899,59228,76599,76903,76897,76900,76903,76900,76872,76897,76903,76869,76878,76886,76904,76878,76904,76872,76886,76819,76880,76905,76901,76542,76899,76599,76906,76906,76542,76902,76906,76902,76899,76907,76872,76904,76907,76904,76886,76872,76907,76908,76903,76908,76909,76903,76909,76869,76908,76903,76872,76880,76888,76910,76880,76910,76886,76905,76542,76906,76906,76599,76911,76906,76911,76905,76888,76912,76913,76913,76886,76910,76913,76910,76888,76724,76905,76911,76911,76599,76914,76911,76914,76724,76912,76881,76915,76915,76886,76913,76915,76913,76912,76874,76724,76914,76914,76599,76916,76914,76916,76874,76881,76869,76909,76881,76909,76908,76915,76908,76907,76915,76907,76886,76908,76915,76881,76917,76874,76916,76917,76916,76599,76874,76917,76918,76869,76881,76889,76919,76918,76917,76919,76917,76599,76918,76919,76920,76870,76889,76921,76870,76921,76599,76889,76870,76869,76921,76920,76919,76921,76919,76599,76920,76921,76889,76922,76923,76924,76924,76925,76926,76926,76927,76928,76928,76929,76930,76931,76932,76933,76933,76934,76922,76922,76924,76926,76926,76928,76930,76931,76933,76922,76922,76926,76930,76930,76931,76922,76935,76936,76937,76937,76938,76939,76939,76940,76941,76941,76935,76937,76937,76939,76941,76942,76943,76944,76944,76945,76946,76946,76947,76948,76948,76942,76944,76944,76946,76948,76949,76950,76951,76951,76952,76953,76953,76954,76955,76956,76957,76958,76958,76959,76960,76961,76962,76963,76963,76964,76965,76966,76967,76968,76969,76970,76971,76971,76972,76973,76974,76975,76976,76977,76978,76979,76979,76980,76981,76981,76982,76983,76983,76984,76985,76985,76986,76987,76988,76989,76990,76991,76992,76993,76994,76995,76996,76997,76998,76999,77000,77001,77002,77002,77003,77004,77004,77005,77006,77007,77008,77009,77009,77010,77011,77012,77013,77014,77015,77016,77017,77018,77019,77020,77020,76949,76951,76953,76955,77021,76956,76958,76960,76963,76965,77022,76966,76968,76969,76969,76971,76973,77023,76974,76976,76977,76979,76981,76981,76983,76985,76991,76993,76994,76994,76996,77024,76997,76999,77000,77002,77004,77006,77025,77007,77009,77009,77011,77012,77012,77014,77026,77015,77017,77027,77018,77020,76951,76956,76960,77028,76966,76969,76973,77023,76976,76977,76977,76981,76985,76991,76994,77024,76997,77000,77002,77002,77006,77029,77025,77009,77012,77012,77026,77030,77031,77015,77027,77018,76951,76953,76956,77028,76961,77032,76966,76973,77023,76977,76985,76990,76991,77024,77033,76997,77002,77002,77029,77025,77025,77012,77030,77027,77018,76953,77032,76973,77034,77035,77023,76985,76990,77024,77036,77033,77002,77025,77025,77030,77037,77031,77027,76953,77032,77034,77035,77035,76985,76987,77036,77033,77025,77031,76953,77021,77032,77035,76987,76990,77036,77025,77031,77021,76956,77022,77032,76987,76988,76990,77025,77031,76956,76961,76963,77022,76987,76988,77025,77037,77037,77031,76961,76961,76963,76987,76988,77037,76961,76961,76987,76988,77038,77039,77040,77041,77042,77043,77044,77045,77046,77046,77047,77048,77048,77049,77050,77051,77052,77053,77054,77055,77056,77056,77057,77058,77058,77059,77060,77061,77062,77063,77064,77065,77066,77066,77067,77068,77069,77070,77071,77072,77073,77074,77075,77076,77077,77077,77078,77079,77079,77080,77081,77081,77082,77083,77084,77085,77086,77086,77087,77088,77089,77090,77091,77092,77093,77094,77094,77095,77096,77096,77097,77098,77098,77099,77100,77101,77102,77103,77103,77104,77105,77105,77038,77040,77041,77043,77106,77044,77046,77048,77048,77050,77107,77054,77056,77058,77058,77060,77108,77109,77061,77063,77064,77066,77068,77072,77074,77110,77075,77077,77079,77079,77081,77083,77084,77086,77088,77089,77091,77111,77092,77094,77096,77096,77098,77100,77101,77103,77105,77105,77040,77112,77112,77041,77106,77106,77044,77048,77048,77107,77051,77113,77054,77058,77058,77108,77109,77114,77064,77068,77071,77072,77110,77110,77075,77079,77079,77083,77084,77084,77088,77089,77089,77111,77092,77092,77096,77100,77101,77105,77112,77112,77106,77048,77048,77051,77053,77115,77113,77058,77063,77114,77068,77071,77110,77079,77079,77084,77089,77089,77092,77100,77101,77112,77048,77116,77115,77058,77063,77068,77069,77071,77079,77089,77089,77100,77117,77117,77101,77048,77116,77058,77109,77069,77071,77089,77089,77117,77048,77118,77116,77109,77063,77069,77089,77089,77048,77053,77053,77118,77109,77063,77089,77053,77053,77109,77063,77119,77120,77121,77121,77122,77123,77123,77124,77119,77119,77121,77123,77125,77126,77127,77127,77128,77129,77129,77130,77131,77131,77132,77125,77125,77127,77129,77129,77131,77125,76584,69532,69531,69531,69820,69840,69818,69817,69857,69857,69839,69816,69815,69814,69876,69876,69892,69889,69889,69880,69875,69875,69856,69813,69810,69809,69808,69806,69805,69804,69801,58871,58870,59292,59291,59356,59356,59381,59388,59388,59380,59290,59287,59286,59285,59284,59283,59282,59281,59280,59279,59276,59275,59274,59273,59272,59355,59268,59267,59444,59444,59416,59408,59408,59393,59354,59259,59258,59257,59256,59255,59254,59253,59252,59251,59250,59249,76807,76807,76833,76852,76852,76832,76806,76805,76804,76884,76884,76803,76802,76802,76801,76831,76799,76798,76797,76793,76792,76868,76868,76867,76830,76790,76789,76788,76788,76787,76890,76890,76899,76786,76781,76780,76866,76866,76829,76779,76778,76777,76776,76776,76775,76828,76828,76865,76877,76877,76851,76774,76771,76770,76864,76864,76895,76769,76768,76767,76827,76761,76760,76850,76850,76876,76849,76849,76759,76758,76757,76519,76518,76518,76586,76578,76514,76513,76577,76577,76585,76512,76511,77133,77134,76504,76503,76589,76589,76584,69531,69531,69840,69819,69819,69818,69857,69815,69876,69889,69889,69875,69813,69806,69804,69803,69802,69801,58870,59292,59356,59388,59388,59290,59289,59285,59284,59282,59281,59279,59278,59277,59276,59274,59273,59355,59271,59269,59268,59444,59444,59408,59354,59259,59257,59256,59256,59254,59253,59251,59250,76807,76807,76852,76806,76806,76805,76884,76884,76802,76831,76793,76868,76830,76790,76788,76890,76890,76786,76785,76781,76866,76779,76776,76828,76877,76772,76771,76864,76864,76769,76768,76768,76827,76766,76761,76850,76849,76757,76518,76578,76514,76577,76512,76504,76589,69531,69819,69857,69816,69815,69889,69813,69806,69803,69802,69802,58870,59297,59293,59292,59388,59388,59289,59288,59282,59281,59278,59277,59274,59273,59269,59444,59354,59256,59253,59251,59251,76807,76806,76806,76884,76831,76794,76793,76830,76791,76790,76890,76890,76785,76784,76782,76781,76779,76776,76877,76774,76772,76864,76768,76761,76849,76758,76758,76757,76578,76514,76512,76511,77135,76504,69531,69819,69816,69815,69815,69813,69812,69806,69802,59297,59294,59293,59388,59282,59278,59277,59277,59273,59271,59270,59269,59354,59259,59256,59251,59251,76806,76831,76794,76830,76791,76791,76890,76784,76776,76774,76773,76772,76768,76766,76762,76761,76758,76758,76578,76517,76515,76514,76511,77136,77135,69531,69819,69815,69812,69806,59297,59296,59294,59388,59288,59285,59282,59277,59277,59271,59270,59270,59354,59266,59259,59251,76831,76795,76794,76791,76791,76784,76783,76776,76773,76772,76772,76766,76765,76762,76758,76517,76515,76511,77134,77134,77136,69531,69531,69819,69812,69806,59296,59295,59295,59294,59288,59285,59277,59270,59270,59266,59265,59260,59259,76831,76795,76791,76783,76776,76772,76765,76763,76762,76517,77134,69531,69812,69806,59295,59288,59285,59270,59265,59260,76831,76800,76795,76783,76782,76778,76776,76765,76764,76763,76517,77134,69812,69811,69807,69806,59288,59287,59285,59265,59260,76800,76799,76795,76782,76779,76778,76765,76764,76764,76517,76516,77134,69811,69810,69808,69807,59288,59287,59265,59264,59261,59260,76799,76796,76795,76779,76778,76764,76516,77134,69810,69808,69808,59288,59287,59287,59264,59263,59261,76799,76797,76796,76779,76778,76778,76516,76515,77134,69808,59287,59287,59263,59262,59261,76797,76796,76796,76778,76515,76515,77134,59287,59287,59262,59261,76796,76515,77137,76796,77137,59261,59287,59261,77137,59287,77137,76515,72909,69773,69772,69772,69874,69866,69768,69767,69766,69766,69765,69865,69865,69764,69763,69761,69760,69855,69855,69885,69838,69838,69759,69758,69758,69757,69756,69753,69752,69751,69749,69748,69747,69746,69745,69873,69873,69888,69879,69879,69872,69744,69741,69740,69854,69854,69864,69899,69899,69887,69884,69884,69882,69739,69734,69733,69732,69729,69728,69837,69726,69725,69724,69723,69722,77138,77139,77140,77141,77141,77142,77143,77143,77144,77145,77145,77146,77147,77148,77149,77150,77150,77151,77152,77153,77154,77155,77156,77157,77158,77158,77159,77160,77160,77161,77162,77162,77163,77164,77165,77166,77167,77167,77168,77169,77169,77170,77171,77171,77172,77173,77173,77174,77175,77175,77176,72898,72898,72897,72939,72939,72938,72937,72935,72934,72945,72945,72951,72933,72930,72929,72956,72956,72928,72927,72925,72924,72944,72944,72955,72954,72954,72943,72923,72922,72921,72950,72917,72916,72942,72914,72913,72912,72911,72910,72957,72957,72949,72941,72941,72909,69772,69772,69866,69771,69768,69766,69865,69761,69855,69838,69758,69756,69755,69749,69747,69746,69746,69873,69879,69741,69854,69899,69899,69884,69739,69734,69732,69731,69729,69837,69727,69726,69724,69723,69723,77138,77139,77139,77141,77143,77143,77145,77147,77148,77150,77152,77177,77153,77155,77155,77156,77158,77160,77162,77164,77165,77167,77169,77169,77171,77173,77175,72898,72939,72935,72945,72933,72931,72930,72956,72956,72927,72926,72925,72944,72954,72922,72950,72920,72917,72942,72915,72914,72912,72911,72911,72957,72941,72941,69772,69771,69768,69865,69763,69761,69838,69758,69750,69749,69746,69746,69879,69744,69741,69899,69739,69729,69727,69726,69726,69723,77139,77139,77143,77147,77178,77148,77152,77177,77155,77158,77160,77164,77179,77165,77169,77173,77175,72939,72937,72931,72956,72926,72925,72954,72923,72922,72920,72919,72915,72914,72911,72911,72941,69771,69768,69763,69762,69762,69761,69758,69750,69746,69744,69742,69741,69739,69730,69729,69726,69726,77139,77147,77178,77152,77180,77181,77177,77158,77165,77173,77175,77175,72937,72936,72932,72931,72926,72926,72925,72923,72915,72911,69771,69768,69762,69758,69751,69750,69744,69742,69739,69738,69730,69726,77147,77182,77178,77180,77183,77181,77158,77184,77165,77175,77175,72936,72935,72933,72932,72926,72926,72923,72922,72915,69771,69770,69769,69768,69758,69751,69744,69743,69742,69738,69737,69731,69730,77147,77182,77180,77183,77183,77158,77160,77184,77175,72935,72917,72915,69770,69769,69758,69755,69751,69743,69742,69742,69737,69736,69734,69731,77147,77182,77183,77160,77179,77184,72935,72917,69770,69769,69769,69755,69754,69753,69751,69742,69742,69736,69735,69735,69734,77147,77182,77160,77179,77179,72935,72933,72918,72917,69769,69753,69742,69735,69735,77147,77182,77182,77179,72933,72918,69769,69754,69754,69753,69735,69735,77182,72933,72919,72918,69754,69754,69735,72933,72922,72919,69754,69754,72933,72926,72926,72922,69754,72899,72898,77185,77185,77186,77187,77188,77189,77190,77190,72906,72905,72905,72940,72948,72948,72953,72904,72901,72900,72947,72947,72958,72952,72952,72946,72899,72899,77185,77187,77187,77188,77190,77190,72905,72948,72948,72904,72903,72901,72947,72952,72952,72899,77187,77190,72948,72903,72902,72901,72952,72952,77187,77190,77190,72903,72902,72902,72952,77190,77191,77192,77193,77193,77194,77195,77195,77191,77193,77196,77197,77198,77198,77199,77200,77200,77201,77202,77202,77196,77198,77198,77200,77202,77203,77204,77205,77205,77206,77203,77207,77208,77209,77209,77210,77211,77211,77212,77207,77207,77209,77211,77213,77214,77215,77215,77216,77217,77217,77218,77213,77213,77215,77217,77219,77220,77221,77221,77222,77223,77223,77224,77225,77225,77226,77227,77227,77228,77219,77219,77221,77223,77225,77227,77219,77219,77223,77225,77229,77230,77231,77231,77232,77233,77233,77229,77231,77234,77235,77236,77236,77237,77238,77238,77239,77240,77241,77242,77234,77236,77238,77240,77241,77234,77236,77236,77240,77241,77243,77244,77245,77245,77246,77247,77247,77248,77249,77249,77250,77243,77243,77245,77247,77247,77249,77243,77251,77252,77253,77253,77254,77255,77255,77256,77257,77257,77251,77253,77253,77255,77257,77133,76511,76510,76510,76576,76575,76508,76507,76506,76506,76505,76504,76504,77135,77136,77136,77134,77133,77133,76510,76575,76508,76506,76504,76504,77136,77133,77133,76575,76509,76508,76504,77133,77133,76509,76508,74069,74068,74155,74155,74171,74176,74176,74067,74066,74062,74061,74154,74059,74058,74181,74181,74175,74153,74153,74057,74056,74056,74055,74054,74052,74051,74050,74048,74047,74046,74045,74044,74043,74043,74042,74165,74038,74037,74152,74035,74034,74033,74033,74319,74331,74331,74330,74318,74317,74316,74315,74312,74311,74310,74308,74307,74306,74303,74302,77258,77259,77260,77261,77262,77263,77264,77265,77266,77267,77267,77268,77269,77269,77270,77271,77271,77272,77273,77274,77275,77276,77277,77278,77279,77280,77281,77282,77282,77283,77284,77284,77285,77286,77287,77288,77289,77290,77291,77292,77292,77293,77294,77295,77296,77297,77298,77299,77300,77300,77301,77302,77303,77304,77305,77305,77306,77307,77307,77308,77309,77309,77310,77311,77312,77313,77314,77315,77316,77317,77318,77319,77320,77321,73132,73168,73168,73171,73167,73166,73165,73174,73174,73164,73163,73161,73160,73159,73157,73156,73173,73173,73175,73155,73152,73151,73150,73149,73148,73170,73144,73143,73142,73142,73141,73172,73172,73140,72960,72960,72959,73027,73026,73025,73024,73023,73022,73034,73020,73019,73018,73018,77322,77323,77323,77324,77325,77325,77326,77327,77328,77329,77330,77331,77332,77333,77333,77334,77335,77335,77336,77337,77337,77338,77339,77339,77340,77341,77341,77342,77343,77344,77345,77346,77347,77348,77349,77350,77351,77352,77353,74088,74087,74087,74086,74157,74080,74079,74167,74167,74177,74188,74188,74182,74166,74077,74076,74156,74074,74073,74072,74069,74155,74176,74062,74154,74060,74060,74059,74181,74181,74153,74056,74056,74054,74053,74048,74046,74045,74045,74043,74165,74038,74152,74036,74035,74033,74331,74318,74317,74315,74308,74306,74305,74304,74303,77258,77258,77259,77261,77262,77264,77354,77265,77267,77269,77274,77276,77277,77280,77282,77284,77355,77287,77289,77289,77290,77292,77356,77298,77300,77300,77302,77357,77303,77305,77307,77307,77309,77311,77312,77314,77315,77315,77317,77318,77358,77321,73168,73166,73174,73163,73157,73173,73155,73153,73152,73150,73149,73170,73147,73142,73172,72960,72960,73027,73026,73024,73023,73034,73020,73018,77323,77323,77325,77327,77328,77330,77359,77360,77331,77333,77333,77335,77337,77339,77341,77343,77344,77346,77347,77350,77352,77361,77362,77353,74087,74087,74157,74085,74080,74167,74188,74188,74166,74078,74077,74156,74075,74074,74072,74071,74070,74069,74176,74063,74062,74060,74060,74181,74056,74045,74165,74041,74039,74038,74036,74035,74331,74318,74318,74315,74314,74309,74308,74305,74304,77258,77261,77261,77262,77354,77265,77269,77271,77363,77274,77277,77364,77280,77284,77355,77289,77292,77356,77300,77357,77365,77303,77307,77307,77311,77312,77312,77315,77318,77320,77358,73168,73166,73163,73162,73158,73157,73155,73153,73150,73149,73149,73147,73146,73144,73142,72960,73024,73034,73021,73021,73020,77323,77323,77327,77328,77360,77333,77337,77337,77339,77343,77350,77361,77362,77362,74087,74085,74081,74080,74188,74077,74075,74074,74070,74176,74066,74063,74060,74056,74048,74045,74041,74039,74036,74035,74035,74318,74314,74309,74305,74304,74304,77261,77354,77354,77265,77271,77366,77363,77277,77364,77284,77286,77367,77355,77292,77368,77356,77357,77365,77307,77312,77312,77318,77320,77320,73168,73167,73158,73155,73154,73153,73149,73146,73144,72960,73026,73021,77323,77328,77369,77360,77337,77350,77362,74085,74082,74081,74188,74070,74066,74065,74064,74063,74056,74048,74041,74040,74039,74035,74314,74309,74304,77354,77354,77271,77273,77366,77277,77279,77279,77364,77286,77367,77292,77294,77370,77368,77357,77371,77365,77312,77312,77320,73167,73154,73153,73146,73145,73144,73026,73024,73021,77328,77369,77337,77343,77372,77350,74085,74082,74188,74078,74070,74065,74064,74064,74056,74053,74049,74048,74040,74039,74314,74313,74310,74309,77354,77366,77279,77286,77373,77367,77294,77370,77357,77374,77375,77371,77312,77312,73167,73166,73158,73154,73146,73146,73145,73026,73026,73024,77328,77359,77369,77343,77372,74085,74084,74083,74082,74078,74070,74064,74053,74049,74040,74039,74039,74313,74312,74312,74310,77354,77366,77286,77376,77373,77294,77295,77370,77374,77375,77375,77312,73166,73146,73026,77328,77359,77343,77344,77372,74084,74083,74083,74078,74077,74071,74070,74053,74049,74039,74312,74312,77354,77273,77377,77366,77376,77373,77295,77297,77370,77375,73166,73158,73146,77328,77359,77344,77347,77378,77372,74083,74071,74053,74052,74050,74049,74312,74312,77273,77379,77377,77376,77380,77373,77297,77381,77381,77370,73166,73158,77328,77359,77359,77347,77349,77378,74083,74077,74071,74052,74050,74050,74312,77379,77377,77380,77382,77373,77381,73166,73158,77359,77349,77349,77378,74077,74071,74050,77379,77377,77382,77373,77373,73166,73162,73159,73158,77349,77349,74077,74074,74074,74071,77379,77377,77373,73162,73159,77349,74074,74074,77379,77377,77377,73162,73161,73161,73159,74074,74074,77377,73161,77383,77384,77385,77386,77387,77388,77389,77390,77391,77391,77392,77393,77394,77395,77396,77397,77398,77399,77400,77401,77402,77402,77403,77404,77405,77406,77407,77408,77409,77410,77410,77411,77412,77412,77413,77414,77415,77416,77417,77417,77418,77419,77420,77421,77422,77422,77423,77424,77424,77425,77426,77426,77427,77428,77428,77429,77430,77431,77432,77433,77434,77435,77436,77436,77437,77438,77438,77439,77440,77441,77442,77443,77443,77444,77445,77445,77446,77447,77448,77449,77450,77451,77452,77453,77453,77454,77455,77456,77457,77458,77458,77459,77460,77461,77462,77463,77464,77465,77466,77466,77467,77468,77468,77469,77470,77471,77472,77473,77474,77475,77476,77476,77477,77478,77478,77284,77283,77281,77280,77364,77364,77279,77278,77278,77277,77276,77275,77274,77363,77363,77366,77377,77377,77379,77273,77272,77271,77270,77266,77265,77354,77263,77262,77261,77260,77259,77258,77258,74302,74329,74300,74299,74298,74295,74294,74328,74290,74289,74327,74287,74286,74326,74284,74283,74325,74325,74282,74281,74281,77479,77480,77481,77482,77483,77484,77485,77486,77487,77488,77489,77490,77491,77492,77492,77493,77494,77495,77496,77497,77497,77498,77499,77500,77501,77502,77502,77503,77504,77505,77506,77507,77508,77509,77510,77510,77511,77512,77513,77514,77515,77516,77517,77518,77519,77383,77385,77386,77388,77389,77389,77391,77393,77393,77394,77396,77400,77402,77404,77405,77407,77408,77408,77410,77412,77520,77415,77417,77417,77419,77521,77424,77426,77428,77428,77430,77522,77431,77433,77434,77436,77438,77440,77441,77443,77445,77451,77453,77455,77458,77460,77523,77524,77461,77463,77464,77466,77468,77468,77470,77525,77471,77473,77526,77474,77476,77478,77478,77283,77282,77282,77281,77364,77278,77276,77275,77275,77363,77377,77377,77273,77272,77272,77270,77269,77266,77354,77264,77263,77261,77260,77260,77258,74329,74301,74300,74298,74295,74328,74293,74290,74327,74288,74287,74326,74285,74284,74325,74281,74281,77480,77481,77481,77483,77527,77484,77486,77528,77489,77490,77492,77492,77494,77529,77495,77497,77499,77500,77502,77504,77505,77507,77530,77508,77510,77512,77513,77515,77516,77516,77518,77531,77519,77385,77386,77386,77389,77393,77399,77400,77404,77405,77408,77412,77520,77417,77521,77422,77424,77428,77532,77431,77434,77441,77445,77447,77451,77455,77533,77458,77523,77524,77524,77463,77534,77534,77464,77468,77525,77471,77526,77535,77474,77478,77282,77364,77278,77275,77377,77272,77267,77266,77264,77260,74329,74301,74301,74298,74297,74291,74290,74288,74285,74284,74281,74281,77481,77527,77484,77528,77487,77487,77489,77492,77495,77499,77500,77500,77504,77536,77537,77505,77530,77538,77508,77512,77516,77531,77539,77539,77519,77386,77386,77393,77396,77399,77404,77540,77405,77412,77414,77414,77520,77521,77422,77428,77522,77532,77434,77436,77541,77451,77533,77458,77524,77534,77534,77468,77525,77535,77478,77282,77275,77272,77269,77268,77267,77264,77260,74301,74297,74287,74285,74281,74281,77527,77484,77484,77487,77492,77495,77500,77536,77542,77538,77512,77513,77516,77539,77539,77386,77396,77399,77540,77405,77405,77414,77521,77422,77522,77532,77541,77533,77456,77458,77534,77525,77526,77535,77282,77278,77275,77269,77268,77264,77263,77263,77260,74297,74287,74281,77484,77484,77492,77529,77543,77495,77536,77544,77542,77512,77513,77539,77396,77399,77405,77521,77420,77422,77532,77545,77541,77456,77526,77282,77278,77278,77269,77268,77268,77263,74297,74288,74287,77484,77484,77529,77546,77544,77512,77547,77547,77513,77396,77399,77521,77420,77420,77532,77436,77545,77456,77458,77525,77526,77278,77278,77268,74297,74291,74288,77484,77484,77546,77548,77530,77544,77547,77547,77396,77549,77399,77420,77436,77458,77525,77278,77278,74297,74296,74291,77484,77548,77530,77547,77549,77397,77399,77436,77458,77278,74296,74292,74291,77548,77537,77530,77549,77397,77436,77440,77545,77458,74296,74293,74292,77548,77537,77549,77550,77397,77440,77551,77552,77545,74296,74293,77548,77543,77537,77550,77397,77397,77551,77441,77552,74296,74295,74295,74293,77543,77397,77441,77447,77552,74295,77543,77537,77397,77447,77450,77552,77543,77536,77537,77447,77448,77450,77543,77543,77536,77447,77447,77448,77543,77553,77554,77555,77555,77556,77557,77557,77558,77559,77559,77560,77561,77561,77562,77563,77563,77564,77553,77553,77555,77557,77559,77561,77563,77563,77553,77557,77557,77559,77563,77565,77566,77567,77568,77569,77570,77570,77571,77572,77572,77573,77574,77574,77565,77567,77568,77570,77572,77572,77574,77567,77567,77568,77572,77575,77576,77577,77577,77578,77579,77579,77580,77581,77581,77582,77583,77583,77584,77575,77575,77577,77579,77579,77581,77583,77583,77575,77579,77585,77586,77587,77587,77588,77589,77589,77585,77587,77590,77591,77592,77593,77594,77595,77596,77597,77598,77598,77599,77600,77600,77601,77590,77590,77592,77593,77593,77595,77596,77596,77598,77600,77600,77590,77593,77593,77596,77600,77602,77603,77604,77604,77605,77606,77606,77607,77608,77608,77609,77610,77610,77602,77604,77604,77606,77608,77608,77610,77604,77611,77612,77613,77613,77614,77615,77616,77617,77618,77619,77620,77621,77621,77622,77623,77623,77624,77625,77625,77611,77613,77613,77615,77626,77626,77616,77618,77619,77621,77623,77623,77625,77613,77613,77626,77618,77618,77619,77623,77623,77613,77618,77627,77628,77629,77629,77630,77631,77631,77632,77633,77633,77634,77627,77627,77629,77631,77631,77633,77627,77635,77636,77637,77637,77638,77639,77639,77635,77637,77640,77641,77642,77643,77644,77645,77646,77647,77648,77648,77649,77650,77651,77652,77653,77654,77655,77640,77640,77642,77656,77656,77643,77645,77646,77648,77650,77651,77653,77654,77654,77640,77656,77656,77645,77646,77646,77650,77651,77651,77654,77656,77656,77646,77651,77657,77658,77659,77659,77660,77661,77661,77657,77659,77662,77663,77664,77665,77666,77667,77668,77669,77670,77670,77671,77672,77672,77673,77674,77674,77675,77676,77676,77677,77678,77679,77680,77681,77681,77682,77662,77662,77664,77683,77665,77667,77668,77668,77670,77672,77672,77674,77676,77679,77681,77662,77662,77683,77665,77665,77668,77672,77672,77676,77678,77678,77679,77662,77662,77665,77672,77672,77678,77662,77479,74281,74280,74280,74279,74278,74278,74277,74324,74275,74274,74273,74273,74272,76574,76574,76573,76572,76572,76571,76570,76570,76569,76588,76588,76583,76568,76567,76566,76565,76564,76563,76562,76559,76558,76557,76556,76555,76554,76554,76553,76552,76551,76550,76582,76582,76581,76549,76549,76548,76756,76756,76755,76826,76826,76848,76863,76863,76883,76882,76882,76825,76754,76753,76752,76751,76749,76748,76847,76847,76875,76846,76846,76824,76747,76746,76745,76744,76738,76737,77684,77684,77384,77383,77383,77519,77539,77539,77531,77518,77517,77516,77515,77514,77513,77547,77547,77512,77511,77509,77508,77538,77538,77542,77544,77544,77530,77507,77506,77505,77537,77537,77536,77504,77501,77500,77499,77496,77495,77543,77543,77548,77546,77546,77529,77494,77491,77490,77489,77488,77487,77528,77485,77484,77527,77482,77481,77480,77480,77479,74280,74278,74324,74276,74276,74275,74273,74273,76574,76572,76570,76588,76568,76567,76565,76564,76564,76562,76561,76560,76559,76557,76556,76554,76552,76551,76582,76549,76756,76826,76863,76863,76882,76754,76749,76847,76846,76746,76744,76743,76739,76738,77684,77684,77383,77539,77517,77515,77514,77514,77547,77511,77509,77538,77544,77506,77537,77504,77501,77499,77498,77496,77543,77546,77491,77489,77488,77488,77528,77486,77485,77527,77483,77480,74280,74278,74276,74273,76572,76570,76568,76567,76567,76564,76561,76560,76557,76556,76556,76552,76551,76551,76549,76756,76756,76863,76754,76749,76846,76747,76746,76743,76742,76739,77684,77539,77517,77514,77511,77509,77544,77507,77506,77504,77503,77502,77501,77498,77497,77496,77546,77491,77488,77486,77486,77485,77483,77482,77480,74278,74278,74276,76572,76570,76567,76561,76556,76551,76756,76756,76754,76753,76750,76749,76747,76746,76742,76741,76740,76739,77539,77517,77511,77510,77509,77507,77506,77506,77503,77502,77497,77546,77494,77491,77486,77483,77482,74278,76572,76570,76561,76560,76556,76756,76753,76750,76747,76746,76740,77539,77518,77509,77506,77502,77497,77494,77493,77491,77483,77482,77482,76572,76570,76570,76560,76556,76556,76753,76751,76750,76746,76741,76741,76740,77518,77510,77509,77502,77497,77493,77492,77491,77482,76570,76570,76556,76751,76751,76750,76741,76741,77518,77517,77510,77502,77498,77492,77491,76570,76570,76751,76741,76741,77517,77510,77510,77498,77497,77497,77492,76570,76570,76741,77510,77510,77497,76570,47130,47129,77685,77686,77687,77688,77689,77690,77691,77692,77693,77694,77695,77696,77697,77697,74118,74117,74113,74112,74111,74110,74109,74160,74107,74106,74184,74184,74189,74193,74193,74159,74105,74102,74101,74158,74099,74098,74097,74092,74091,74168,74168,74172,74090,74089,74088,77353,77353,77362,77361,77351,77350,77372,77372,77378,77349,77348,77347,77346,77345,77344,77343,77340,77339,77338,77336,77335,77334,77334,77333,77332,77332,77331,77360,77360,77369,77359,77329,77328,77327,77324,77323,77322,77322,73018,73017,73017,73038,73037,73015,73014,73013,73010,73009,73008,73008,73007,76237,76237,76236,76235,76235,76234,76233,76233,76232,76442,76442,76231,76230,76230,76229,76472,76472,76462,76228,76227,76226,76441,76224,76223,76222,76221,76220,76219,76216,76215,76461,76213,76212,76211,76211,76210,76497,76497,76493,76491,76491,76460,76209,76204,47150,47149,47147,47146,47145,47142,47141,47201,47201,47200,47140,47139,47138,47137,47136,47135,47199,47199,47205,47198,47133,47132,47131,47131,47130,77685,77686,77688,77698,77689,77691,77699,77700,77692,77694,77694,77695,77697,77697,74117,74116,74114,74113,74111,74110,74160,74108,74108,74107,74184,74184,74193,74105,74102,74158,74100,74099,74097,74096,74092,74168,74090,74090,74089,77353,77353,77361,77352,77352,77351,77372,77372,77349,77348,77345,77343,77342,77341,77340,77338,77332,77360,77359,77330,77329,77327,77324,77322,73017,73017,73037,73016,73015,73013,73012,73010,73008,76237,76233,76442,76230,76230,76472,76228,76227,76441,76225,76224,76222,76221,76221,76219,76218,76217,76216,76461,76214,76213,76211,76211,76497,76491,76491,76209,76208,76204,47149,47148,47147,47145,47144,47142,47201,47140,47136,47199,47198,47134,47133,47131,47131,77685,77686,77698,77689,77699,77694,77697,74116,74114,74111,74110,74108,74184,74105,74100,74099,74096,74093,74092,74090,74090,77353,77352,77352,77372,77348,77346,77345,77342,77332,77359,77330,77330,77327,77326,77325,77324,73017,73015,73012,73011,73010,76237,76235,76235,76233,76230,76228,76227,76225,76224,76221,76218,76217,76461,76214,76214,76211,76491,76205,76204,47148,47147,47144,47143,47142,47140,47139,47136,47198,47134,47134,47131,77686,77698,77699,77700,77700,77694,74116,74114,74110,74108,74108,74105,74104,74102,74100,74096,74093,74090,77352,77352,77348,77346,77346,77342,77341,77332,77330,77326,77325,73017,73016,73011,73010,76235,76235,76230,76228,76224,76218,76217,76217,76214,76491,76205,47148,47147,47136,47134,77686,77700,74116,74115,74114,74108,74104,74094,74093,77352,77352,77346,77341,77334,77332,77326,77326,77325,73016,73015,73011,76235,76224,76217,76491,76205,47147,47143,47137,47136,77686,77698,77700,74115,74115,74114,74104,74095,74094,77352,77352,77341,77338,77336,77334,77326,77326,73016,73015,73015,76235,76228,76225,76224,76491,76205,47143,47142,47139,47137,77686,77698,74115,74104,74095,77352,77338,77336,77326,73015,73015,76228,76225,76225,76491,76208,47139,77686,77698,77698,74104,74103,74096,74095,77338,77337,77336,73015,76225,76208,77701,76225,77701,73015,47142,47139,77698,77698,74103,74102,74102,74096,77338,77338,77337,73015,77701,76207,77702,77701,77702,73015,76207,77701,76208,76205,47142,77698,74102,77338,77703,74102,77703,77698,77704,73015,77702,77704,77702,76207,73015,77704,77338,76205,77698,77703,77703,77338,77705,77703,77705,76205,77704,76206,77706,77704,77706,77338,76206,77704,76207,76206,76205,77705,77705,77338,77706,77705,77706,76206,76606,76855,76897,76897,76869,76853,76853,76605,76606,76606,76897,76853,59206,59209,59208,59208,59331,59353,59353,59207,59206,59206,59208,59353,73475,59151,59150,59150,59149,59350,59350,59378,59369,59369,59325,59148,59148,59147,73479,73477,73476,73518,73518,73527,73517,73517,73496,73475,73475,59150,59350,59350,59369,59148,59148,73479,73478,73478,73477,73518,73518,73517,73475,73475,59350,59148,59148,73478,73518,73518,73475,59148,77308,77307,77707,77707,77708,77709,77709,77710,77711,77711,77712,77713,77713,77714,77715,77716,77717,77718,77718,77719,77720,77720,77721,77722,77722,77723,77724,77725,77726,77727,77727,77728,77729,77729,77730,77731,77732,77663,77662,77682,77681,77733,77734,77735,77736,77736,77737,77738,77739,77740,73040,73039,73117,73116,73116,73115,73124,73111,73110,73109,73105,73104,73123,73123,73130,73131,73131,73122,73103,73103,73102,73139,73139,73169,73138,73135,73134,73133,73133,73132,77321,77321,77358,77320,77319,77318,77317,77316,77315,77314,77313,77312,77311,77309,77308,77707,77709,77711,77713,77716,77718,77720,77720,77722,77724,77725,77727,77729,77741,77732,77662,77662,77682,77733,77734,77736,77738,77739,73040,73039,73039,73116,73124,73112,73111,73109,73105,73123,73131,73103,73139,73138,73136,73135,73133,73133,77321,77320,77319,77317,77316,77313,77311,77310,77310,77309,77707,77709,77713,77715,77716,77720,77724,77725,77729,77731,77742,77741,77662,77662,77733,77743,77738,77739,73039,73039,73124,73114,73106,73105,73131,73131,73103,73138,73136,73133,77320,77310,77707,77709,77709,77715,77744,77744,77716,77724,77725,77731,77745,77742,77662,77743,77734,77738,73039,73106,73131,73138,73136,77320,77319,77313,77310,77709,77744,77724,77725,77745,77742,77743,77734,73039,73114,73107,73106,73138,73137,73136,77319,77313,77709,77744,77744,77725,77745,77745,77743,77734,77734,73114,73113,73107,73138,73137,73137,77319,77316,77314,77313,77744,77744,77745,77734,77734,73113,73112,73107,73137,77316,77316,77314,77744,77744,77734,73112,73108,73107,77316,77316,77744,73112,73109,73108,77316,77316,73112,73109,77373,77382,77380,77380,77376,77286,77475,77474,77535,77535,77526,77473,77472,77471,77525,77525,77470,77469,77469,77468,77467,77465,77464,77534,77462,77461,77524,77524,77523,77460,77459,77458,77457,77457,77456,77533,77452,77451,77541,77541,77545,77552,77552,77450,77449,77449,77448,77447,77446,77445,77444,77442,77441,77551,77551,77440,77439,77437,77436,77435,77435,77434,77433,77432,77431,77532,77532,77522,77430,77427,77426,77671,77669,77668,77667,77666,77665,77683,77664,77663,77732,77732,77741,77742,77742,77745,77731,77726,77725,77724,77723,77722,77721,77717,77716,77744,77744,77715,77714,77710,77709,77708,77707,77307,77306,77304,77303,77365,77365,77371,77375,77375,77374,77357,77299,77298,77356,77356,77368,77370,77370,77381,77297,77296,77295,77294,77291,77290,77289,77288,77287,77355,77355,77367,77373,77373,77380,77286,77476,77475,77535,77473,77472,77525,77469,77467,77466,77465,77534,77463,77462,77524,77460,77460,77459,77457,77457,77533,77455,77452,77541,77552,77552,77449,77447,77443,77442,77551,77438,77437,77435,77432,77532,77430,77428,77427,77671,77669,77667,77666,77666,77683,77664,77664,77732,77742,77742,77731,77730,77727,77726,77724,77717,77744,77714,77711,77710,77708,77708,77707,77306,77304,77365,77375,77375,77357,77302,77299,77356,77370,77370,77297,77296,77296,77294,77293,77288,77355,77373,77373,77286,77285,77476,77535,77473,77473,77525,77469,77465,77463,77462,77462,77460,77457,77457,77455,77454,77453,77452,77552,77552,77447,77446,77443,77551,77439,77438,77435,77433,77428,77671,77670,77669,77666,77664,77664,77742,77730,77727,77724,77723,77718,77717,77714,77711,77708,77306,77305,77304,77375,77299,77370,77296,77288,77373,77285,77477,77476,77473,77473,77469,77466,77465,77462,77457,77453,77552,77446,77444,77443,77439,77439,77438,77433,77429,77428,77670,77669,77664,77730,77727,77723,77721,77719,77718,77714,77711,77306,77305,77305,77375,77302,77300,77299,77296,77289,77288,77285,77477,77473,77466,77465,77457,77454,77454,77453,77446,77444,77439,77433,77430,77429,77670,77670,77669,77730,77720,77719,77714,77711,77305,77302,77301,77300,77296,77291,77289,77285,77477,77466,77465,77465,77454,77446,77432,77430,77670,77670,77730,77729,77721,77720,77714,77712,77711,77302,77301,77296,77293,77291,77285,77284,77477,77465,77446,77432,77670,77729,77721,77714,77713,77712,77302,77301,77301,77293,77292,77291,77284,77478,77478,77477,77446,77433,77432,77729,77721,77713,77712,77712,77301,77292,77292,77291,77478,77478,77446,77444,77433,77729,77746,77433,77746,77444,77721,77712,77292,77292,77478,77444,77746,77728,77747,77746,77747,77444,77728,77746,77729,77727,77721,77292,77292,77444,77747,77292,77747,77728,77728,77727,77292,77748,77749,77750,77750,77751,77752,77752,77753,77754,77755,77756,77757,77757,77758,77748,77748,77750,77752,77752,77754,77755,77755,77757,77748,77748,77752,77755,73305,73304,77759,77759,77760,77761,77762,77763,77764,77764,77765,77766,77767,77768,77769,77770,77771,77772,77772,77773,77774,77775,77776,77777,77778,77779,77780,77781,77782,77783,77783,77784,77785,77785,77786,77787,77787,77788,77789,77789,77790,77791,77792,77793,77794,77795,77796,77797,77798,77799,77800,77800,77801,77802,77802,77803,77804,77805,77806,77807,77808,77809,77810,77811,77812,77813,77814,77815,77816,77817,77818,77819,77819,77820,77821,77821,77822,77823,77824,73389,73388,73385,73384,73383,73382,73381,73489,73489,73525,73532,73532,73380,73379,73377,73376,73488,73374,73373,73504,73504,73524,73503,73503,73487,73372,73371,73370,73369,73365,73364,73502,73502,73523,73537,73537,73531,73522,73522,73514,73363,73360,73359,73501,73501,73486,73358,73357,73356,73355,73355,73354,73500,73500,73353,73352,73350,73349,73348,73347,73346,73345,73344,73343,73567,73567,73530,73521,73521,73342,73341,73339,73338,73485,73485,73513,73337,73336,73335,73334,73331,73330,73529,73529,73520,73329,73324,73323,73322,73321,73320,73319,73316,73315,73314,73313,73312,73484,73310,73309,73308,73307,73306,73512,73512,73305,77759,77759,77761,77762,77762,77764,77766,77769,77770,77772,77772,77774,77775,77778,77780,77825,77783,77785,77787,77787,77789,77791,77792,77794,77826,77795,77797,77798,77798,77800,77802,77805,77807,77808,77808,77810,77811,77813,77814,77816,77821,77823,77824,77824,73388,73387,73382,73489,73532,73377,73488,73375,73374,73504,73503,73371,73369,73368,73365,73502,73537,73537,73522,73363,73361,73360,73501,73357,73355,73500,73351,73350,73348,73347,73345,73344,73344,73567,73521,73339,73485,73337,73336,73334,73333,73332,73331,73529,73529,73329,73328,73324,73322,73321,73321,73319,73318,73313,73484,73311,73311,73310,73308,73307,73512,77759,77762,77766,77827,77769,77772,77775,77777,77778,77825,77781,77783,77787,77787,77791,77828,77829,77795,77798,77798,77802,77804,77805,77808,77811,77813,77816,77817,77819,77821,77824,77824,73387,73386,73382,73532,73379,73375,73374,73503,73372,73371,73368,73366,73365,73537,73537,73363,73362,73361,73501,73358,73357,73500,73352,73347,73344,73521,73339,73337,73336,73336,73333,73332,73332,73529,73328,73325,73324,73321,73314,73313,73311,73311,73308,73307,73307,77759,77762,77777,77825,77781,77781,77787,77828,77829,77798,77804,77805,77811,77813,77813,77817,77819,77819,77824,73386,73383,73382,73379,73375,73503,73372,73372,73368,73367,73366,73537,73362,73361,73358,73357,73348,73347,73521,73340,73339,73336,73336,73332,73328,73325,73321,73318,73314,73311,73307,73307,77762,77827,77777,77781,77828,77826,77829,77804,77805,77813,77819,77819,73386,73385,73385,73383,73379,73375,73372,73367,73366,73362,73361,73361,73357,73352,73351,73348,73521,73340,73336,73328,73326,73325,73318,73314,73307,77827,77775,77777,77828,77792,77826,77804,77805,77819,73385,73385,73379,73378,73377,73375,73367,73366,73361,73352,73351,73521,73341,73340,73328,73327,73326,73318,73317,73316,73314,77827,77769,77775,77828,77792,77804,77830,77830,77805,73385,73378,73377,73367,73366,73352,73351,73351,73341,73340,73340,73327,73326,73317,73316,77827,77769,77828,77831,77792,77830,73385,73385,73378,73367,73351,73340,73326,73326,73317,77827,77769,77831,77792,77792,73385,73367,73366,73351,73326,73326,77827,77767,77767,77769,77792,77792,73367,73366,73366,73326,77767,77767,77792,73366,77832,77833,77834,77834,77835,77836,77836,77837,77838,77839,77832,77834,77834,77836,77838,77838,77839,77834,77840,77841,77842,77842,77843,77844,77844,77845,77846,77846,77840,77842,77842,77844,77846,77847,77848,77849,77849,77850,77851,77851,77852,77853,77853,77854,77855,77855,77856,77847,77847,77849,77851,77851,77853,77855,77855,77847,77851,77857,77858,77859,77859,77860,77861,77861,77862,77857,77857,77859,77861,77863,77864,77865,77865,77866,77867,77867,77868,77869,77869,77863,77865,77865,77867,77869,77870,77871,77872,77872,77873,77874,77874,77875,77876,77877,77878,77879,77879,77870,77872,77872,77874,77876,77877,77879,77872,77872,77876,77877,77880,77881,77882,77882,77883,77884,77884,77885,77886,77886,77887,77888,77888,77889,77890,77880,77882,77884,77884,77886,77888,77888,77890,77891,77891,77880,77884,77884,77888,77891,60097,59882,73998,73995,73994,73993,73991,73990,74144,74144,73989,73988,73986,73985,73984,73983,73982,74143,73980,73979,73978,73977,73976,73975,73975,73974,74142,74142,73973,73972,73972,73971,73970,73967,73966,74141,73964,59964,59963,59962,59961,59960,59959,59958,60110,59956,59955,59954,59953,59952,59951,59950,59949,59948,59941,59940,60151,60151,59939,59938,59938,59937,60109,59935,59934,60108,60108,60150,60107,59932,59931,59930,59930,59929,60211,60211,59928,59927,59927,59926,60106,60106,60149,59925,59922,59921,60105,59919,59918,60148,60148,60180,60104,59916,59915,59914,59911,59910,60103,60103,60147,60179,60179,60190,60167,60167,60146,59909,59906,59905,60196,60196,60102,59904,59903,59902,60101,59900,59899,60100,59897,59896,60099,59894,59893,60098,59891,59890,59889,59888,59887,59886,59884,59883,60097,60097,73998,73997,73991,74144,73988,73987,73986,73984,73983,74143,73981,73980,73978,73977,73975,74142,73972,73972,73970,73969,73967,74141,73965,73965,73964,59963,59962,59960,59959,59959,60110,59957,59956,59954,59953,59953,59951,59950,59950,59948,59947,59941,60151,59938,59938,60109,59936,59935,60108,60107,59932,59930,60211,59927,60106,59925,59922,60105,59920,59919,60148,60104,59916,59914,59913,59911,60103,60179,60179,60167,59909,59907,59906,60196,59903,60101,59901,59900,60100,59898,59897,60099,59895,59894,60098,59892,59892,59891,59889,59885,59884,60097,73992,73991,73988,73987,73984,73983,73983,73981,73980,73975,73972,73969,73968,73967,73965,73965,59963,59962,59962,59959,59957,59957,59956,59953,59953,59950,59947,59942,59941,59938,59935,60107,59933,59933,59932,60211,59927,59925,59924,59919,60104,59917,59911,60179,59909,59907,60196,59904,59904,59903,59901,59901,59900,59898,59897,59895,59894,59894,59892,59889,59886,59885,60097,73992,73988,73987,73987,73983,73980,73975,73969,73968,73968,73965,59962,59962,59957,59953,59953,59947,59946,59942,59938,59936,59936,59935,59933,59933,60211,59927,59927,59924,59923,59920,59919,59917,59911,59909,59908,59908,59907,59904,59901,59898,59897,59897,59894,59889,59886,60097,73997,73992,73987,73980,73975,73968,59962,59962,59953,59946,59942,59936,59933,59933,59927,59923,59920,59917,59916,59912,59911,59908,59901,59897,59889,59888,59886,73997,73993,73992,73980,73977,73975,59962,59942,59933,59923,59922,59920,59916,59912,59908,59904,59904,59901,59889,59888,73997,73996,73977,59962,59946,59943,59942,59923,59922,59916,59913,59913,59912,59904,59904,59889,59888,59888,73996,73995,73980,73977,59946,59944,59943,59923,59922,59913,59904,59904,59888,73995,73993,73980,59946,59945,59944,59923,59922,59904,73995,73995,73993,59946,59945,59923,59922,73995,59946,59945,59945,59922,73995,76628,76839,76857,76857,76627,76626,76626,76628,76857,77892,77893,77894,77895,77896,77897,77897,77898,77899,77899,77900,77901,77902,77903,77904,77905,77906,77907,77907,77908,77909,77909,77910,77911,77912,77913,77914,77915,77916,77917,77917,77918,77919,77919,77920,77921,77922,77923,77924,77924,77925,77926,77926,77927,77928,77928,77929,77930,77931,77932,77933,77933,77934,77935,77936,77937,77938,77938,77939,77940,77940,77941,77942,77942,77943,77944,77945,77946,77947,77947,77948,77949,77949,77950,77951,77952,77953,77954,77955,77956,77957,77957,77958,77959,77960,77961,77962,77962,77963,77964,77965,77966,77967,77968,77969,77970,77970,77971,77972,77972,77973,77974,77975,77976,77977,77977,77978,77979,77979,77980,77981,77981,77982,77983,77983,77984,77985,77985,77986,77987,77987,77988,77989,77989,77990,77991,77991,77992,77993,77993,77994,77995,77995,77996,77997,77998,77999,78000,78000,78001,78002,78002,78003,78004,78005,78006,78007,78008,78009,78010,78010,78011,78012,78012,78013,78014,78015,78016,78017,78018,78019,78020,78020,78021,78022,78022,78023,78024,78024,78025,78026,78027,78028,78029,78030,78031,78032,78032,78033,78034,78034,78035,78036,78037,78038,78039,78039,78040,78041,78041,78042,78043,78044,78045,78046,78047,78048,78049,78049,78050,78051,78051,78052,78053,78054,78055,78056,78057,78058,78059,78059,78060,78061,78061,78062,78063,78064,78065,78066,78067,78068,78069,78069,78070,78071,78072,78073,78074,78075,78076,78077,78077,78078,78079,78079,78080,78081,78081,78082,78083,78084,78085,78086,78087,78088,78089,78090,78091,78092,78092,78093,78094,78095,78096,78097,78097,78098,78099,78099,78100,78101,78101,78102,78103,78103,78104,78105,78105,78106,78107,78108,78109,78110,78110,78111,78112,78113,78114,78115,78115,78116,78117,78117,78118,78119,78119,78120,78121,78122,78123,78124,78124,78125,78126,78126,78127,78128,78128,78129,78130,78130,78131,78132,78133,78134,78135,78135,78136,78137,78138,78139,78140,78141,78142,78143,78143,78144,78145,78145,78146,78147,78147,78148,78149,78150,78151,78152,78153,78154,78155,78155,78156,78157,78158,78159,78160,78160,78161,78162,78163,78164,78165,78165,78166,78167,78167,78168,78169,78169,78170,78171,78172,78173,78174,78174,78175,78176,78176,78177,78178,78179,78180,78181,78181,78182,78183,78183,78184,78185,78186,78187,78188,78189,78190,78191,78191,78192,78193,78193,78194,78195,78196,78197,78198,78199,78200,78201,78201,78202,78203,78203,78204,78205,78206,78207,78208,78208,78209,78210,78210,78211,78212,78212,78213,78214,78214,78215,78216,78217,78218,78219,78219,78220,78221,78221,78222,78223,78224,78225,78226,78226,78227,78228,78228,78229,78230,78231,78232,78233,78234,78235,78236,78236,78237,78238,78239,78240,78241,78241,78242,78243,78244,78245,78246,78247,78248,78249,78249,78250,78251,78252,78253,78254,78254,78255,78256,78256,78257,78258,78258,78259,78260,78261,78262,78263,78264,78265,78266,78266,78267,78268,78268,78269,78270,77892,77894,77895,77895,77897,77899,77905,77907,77909,78271,77915,77917,77917,77919,77921,78272,77922,77924,77924,77926,77928,77928,77930,78273,78273,77931,77933,77938,77940,77942,77942,77944,78274,77945,77947,77949,77949,77951,78275,78275,77952,77954,78276,77955,77957,77960,77962,77964,77965,77967,78277,77968,77970,77972,77972,77974,78278,77975,77977,77979,77979,77981,77983,77983,77985,77987,77987,77989,77991,77991,77993,77995,77995,77997,78279,77998,78000,78002,78002,78004,78280,78008,78010,78012,78018,78020,78022,78022,78024,78026,78027,78029,78281,78030,78032,78034,78034,78036,78037,78037,78039,78041,78041,78043,78282,78047,78049,78051,78053,78054,78056,78057,78059,78061,78063,78064,78066,78071,78072,78074,78075,78077,78079,78079,78081,78083,78084,78086,78283,78087,78089,78284,78090,78092,78094,78097,78099,78101,78101,78103,78105,78113,78115,78117,78117,78119,78121,78122,78124,78126,78128,78130,78132,78133,78135,78137,78141,78143,78145,78145,78147,78149,78285,78150,78152,78153,78155,78157,78158,78160,78162,78163,78165,78167,78167,78169,78171,78172,78174,78176,78176,78178,78286,78179,78181,78183,78191,78193,78195,78196,78198,78199,78199,78201,78203,78203,78205,78206,78208,78210,78212,78212,78214,78216,78217,78219,78221,78221,78223,78287,78224,78226,78228,78231,78233,78234,78234,78236,78238,78239,78241,78243,78244,78246,78288,78247,78249,78251,78252,78254,78256,78256,78258,78260,78264,78266,78268,78268,78270,78289,77892,77895,77899,77905,77909,77911,78271,77917,77921,78272,77924,77928,78273,77933,77935,77936,77938,77942,77942,78274,78290,77945,77949,78275,78275,77954,78291,78276,77957,77959,77960,77964,78292,77968,77972,78278,77975,77979,77983,77987,77991,77995,77998,78002,78280,78008,78012,78014,78017,78018,78022,78022,78026,78027,78027,78281,78293,78293,78030,78034,78037,78041,78282,78047,78051,78053,78056,78057,78061,78061,78063,78066,78075,78079,78083,78283,78087,78284,78090,78094,78095,78095,78097,78101,78101,78105,78107,78113,78117,78121,78122,78126,78128,78128,78132,78294,78133,78137,78295,78296,78141,78145,78145,78149,78285,78285,78152,78297,78153,78157,78158,78158,78162,78298,78163,78167,78171,78171,78172,78176,78299,78179,78183,78189,78191,78195,78300,78196,78199,78199,78203,78206,78208,78212,78216,78216,78217,78221,78287,78224,78228,78231,78234,78238,78239,78243,78244,78244,78288,78247,78252,78256,78260,78263,78264,78268,78268,78289,78301,78302,77892,77899,78303,77905,77911,77914,78271,77921,78272,77928,78273,78273,77935,78304,77936,77942,78290,78305,77945,78275,78275,78291,78276,77960,78292,77965,77968,78278,77975,77975,77983,77987,77987,77995,78279,78306,77998,78280,78007,78008,78014,78017,78022,78027,78293,78034,78037,78037,78282,78044,78047,78053,78056,78056,78061,78066,78307,78075,78083,78283,78284,78308,78090,78095,78101,78101,78107,78108,78112,78113,78121,78309,78122,78128,78133,78295,78138,78296,78145,78285,78285,78297,78310,78311,78153,78158,78312,78163,78171,78171,78176,78286,78299,78183,78185,78188,78189,78195,78300,78199,78206,78216,78221,78287,78287,78228,78230,78313,78231,78238,78244,78247,78251,78252,78260,78314,78263,78268,78301,78315,78302,77899,77904,78303,77911,77914,77921,78316,78272,78273,78304,78317,77936,78290,78318,78305,78275,77960,77965,78277,77968,77975,77987,77987,78279,78306,78306,78280,78319,78007,78014,78015,78017,78027,78293,78293,78037,78044,78046,78047,78056,78056,78066,78067,78320,78307,78083,78084,78283,78308,78090,78101,78108,78110,78112,78121,78309,78128,78294,78133,78138,78140,78321,78296,78285,78311,78158,78298,78298,78312,78171,78171,78286,78299,78299,78185,78186,78188,78195,78322,78323,78300,78206,78208,78216,78287,78287,78230,78324,78313,78238,78239,78244,78251,78325,78252,78314,78326,78261,78263,78301,78315,77899,77901,77904,77911,77912,77914,78316,78327,78328,78272,78304,78329,78317,78290,78318,78275,78276,77960,78277,77968,77968,77987,78306,78007,78015,78017,78017,78293,78044,78044,78046,78056,78056,78067,78069,78320,78083,78330,78084,78308,78090,78090,78108,78110,78110,78121,78331,78309,78294,78332,78133,78140,78333,78333,78321,78285,78298,78171,78299,78299,78186,78188,78188,78322,78323,78323,78206,78208,78208,78287,78324,78313,78239,78244,78325,78252,78326,78326,78261,78301,78315,77901,78334,77904,77912,77914,77914,78327,78335,78328,78304,78336,78329,78290,78337,77959,77960,77968,77968,78306,78319,78007,78017,78044,78044,78056,78069,78084,78090,78110,78309,78332,78133,78333,78285,78310,78311,78298,78299,78188,78323,78208,78208,78324,78313,78326,78301,78338,78338,78315,78334,77904,77914,78335,78328,78336,78329,78329,78337,78318,77959,77968,78319,78007,78044,78069,78084,78110,78331,78133,78333,78310,78311,78299,78188,78208,78313,78339,78208,78339,78188,78325,78326,78338,78338,78334,77902,77902,77904,78335,78328,78329,78318,78276,77959,78319,78005,78007,78069,78340,78084,78331,78309,78133,78310,78310,78311,78188,78339,78244,78341,78339,78341,78188,78244,78339,78313,78325,78338,77902,77902,78335,78342,78328,78318,78276,78276,78319,78343,78005,78069,78071,78344,78340,78331,78309,78310,78188,78244,78325,78345,78345,78188,78341,78345,78341,78244,78325,77902,78342,78276,78343,78346,78346,78005,78071,78330,78344,78331,78331,78309,78188,78342,78188,78345,78342,78345,78325,78346,78071,78074,78330,78331,78188,78188,78342,78328,78276,78346,78074,78330,78188,78347,78330,78347,78320,78188,78328,78276,78276,78074,78320,78276,78320,78347,78276,78347,78188,78348,78349,78350,78350,78351,78352,78352,78353,78354,78354,78348,78350,78350,78352,78354,78355,78356,78357,78357,78358,78359,78359,78360,78361,78361,78355,78357,78357,78359,78361,78362,78363,78364,78364,78365,78366,78367,78368,78362,78364,78366,78369,78367,78362,78364,78364,78369,78367,78370,78371,78372,78372,78373,78374,78374,78375,78370,78370,78372,78374,78376,78377,78378,78378,78379,78380,78380,78381,78382,78382,78383,78384,78384,78385,78386,78386,78387,78388,78389,78376,78378,78378,78380,78382,78382,78384,78386,78386,78388,78389,78389,78378,78382,78382,78386,78389,78390,78391,78392,78392,78393,78394,78395,78396,78397,78397,78398,78399,78399,78400,78401,78401,78402,78403,78404,78405,78406,78406,78407,78408,78409,78410,78411,78411,78412,78413,78390,78392,78394,78395,78397,78399,78399,78401,78403,78404,78406,78408,78409,78411,78413,78414,78390,78394,78395,78399,78403,78415,78404,78408,78409,78413,78414,78414,78394,78416,78417,78395,78403,78418,78415,78408,78409,78414,78416,78419,78417,78403,78418,78408,78409,78409,78416,78420,78420,78419,78403,78418,78409,78420,78420,78403,78418,78421,78422,78423,78423,78424,78425,78425,78426,78427,78428,78421,78423,78423,78425,78427,78429,78428,78423,78423,78427,78429,78430,78431,78432,78432,78433,78434,78434,78435,78436,78437,78438,78430,78430,78432,78434,78434,78436,78437,78437,78430,78434,78439,78440,78441,78441,78442,78443,78443,78444,78445,78445,78446,78447,78448,78449,78439,78439,78441,78443,78443,78445,78447,78448,78439,78443,78443,78447,78448,78450,78451,78452,78452,78453,78454,78455,78456,78457,78457,78458,78459,78459,78460,78461,78461,78462,78450,78450,78452,78454,78455,78457,78459,78459,78461,78450,78450,78454,78455,78455,78459,78450,78463,78464,78465,78466,78467,78468,78468,78469,78470,78470,78471,78472,78472,78463,78465,78465,78466,78468,78468,78470,78472,78472,78465,78468,78473,78474,78475,78475,78476,78477,78477,78478,78479,78479,78480,78481,78481,78482,78483,78484,78485,78473,78473,78475,78477,78477,78479,78481,78481,78483,78486,78484,78473,78477,78477,78481,78486,78487,78484,78477,78477,78486,78488,78488,78487,78477,78489,78490,78491,78491,78492,78493,78493,78494,78495,78495,78496,78489,78489,78491,78493,78493,78495,78489,78497,78498,78499,78499,78500,78501,78501,78502,78503,78504,78505,78506,78506,78507,78508,78508,78509,78510,78511,78512,78513,78513,78514,78515,78515,78516,78517,78518,78519,78520,78521,78522,78523,78523,78524,78525,78525,78526,78527,78528,78529,78530,78530,78531,78532,78532,78533,78534,78535,78536,78537,78537,78538,78539,78539,78540,78541,78542,78543,78544,78545,78546,78547,78547,78548,78549,78550,78551,78552,78553,78554,78555,78555,78556,78557,78557,78558,78559,78559,78560,78561,78561,78562,78563,78564,78565,78566,78567,78568,78569,78570,78571,78572,78572,78573,78574,78574,78575,78576,78577,78578,78579,78580,78581,78582,78583,78584,78585,78585,78586,78587,78588,78589,78590,78591,78592,78593,78593,78594,78595,78596,78597,78598,78598,78599,78600,78601,78602,78603,78604,78605,78606,78606,78607,78608,78608,78609,78610,78610,78611,78612,78613,78614,78615,78616,78617,78618,78618,78619,78620,78621,78622,78623,78623,78624,78625,78625,78626,78627,78628,78629,78630,78631,78632,78633,78633,78634,78635,78636,78637,78638,78639,78640,78641,78642,78643,78644,78645,78646,78647,78647,78648,78649,78650,78651,78652,78653,78654,78655,78656,78657,78658,78658,78659,78660,78660,78661,78662,78663,78664,78665,78665,78666,78667,78667,78668,78669,78670,78671,78672,78673,78674,78675,78675,78676,78677,78678,78679,78680,78680,78681,78682,78682,78683,78684,78685,78686,78687,78687,78688,78689,78690,78691,78692,78692,78693,78694,78695,78696,78697,78697,78698,78699,78699,78700,78701,78701,78702,78703,78703,78704,78705,78705,78706,78707,78708,78709,78710,78710,78711,78712,78713,78714,78715,78716,78717,78718,78719,78720,78721,78721,78722,78723,78497,78499,78501,78506,78508,78510,78511,78513,78515,78520,78521,78523,78525,78527,78528,78528,78530,78532,78724,78535,78537,78537,78539,78541,78541,78542,78544,78545,78547,78549,78553,78555,78557,78566,78567,78569,78570,78572,78574,78574,78576,78577,78577,78579,78725,78726,78580,78582,78727,78583,78585,78585,78587,78728,78588,78590,78729,78591,78593,78595,78596,78598,78600,78601,78603,78730,78604,78606,78608,78608,78610,78612,78731,78613,78615,78616,78618,78620,78620,78621,78623,78625,78627,78628,78628,78630,78732,78733,78631,78633,78633,78635,78734,78636,78638,78735,78639,78641,78642,78642,78644,78736,78645,78647,78649,78650,78652,78653,78653,78655,78737,78656,78658,78660,78738,78663,78665,78665,78667,78669,78670,78672,78739,78739,78673,78675,78678,78680,78682,78682,78684,78740,78685,78687,78689,78689,78690,78692,78695,78697,78699,78699,78701,78703,78703,78705,78707,78708,78710,78712,78713,78715,78741,78716,78718,78719,78719,78721,78723,78497,78501,78503,78504,78506,78510,78510,78511,78515,78518,78520,78523,78525,78528,78532,78724,78537,78541,78541,78544,78742,78545,78549,78743,78553,78557,78559,78564,78566,78569,78570,78574,78577,78726,78582,78744,78745,78727,78585,78728,78588,78729,78746,78591,78595,78595,78596,78600,78604,78608,78612,78731,78615,78747,78747,78616,78620,78620,78623,78625,78625,78628,78732,78733,78633,78734,78636,78735,78748,78748,78639,78642,78645,78649,78749,78750,78650,78653,78751,78656,78660,78738,78665,78669,78669,78670,78739,78739,78675,78677,78752,78678,78682,78682,78740,78753,78685,78689,78692,78754,78695,78699,78699,78703,78707,78755,78708,78712,78716,78719,78723,78756,78497,78503,78504,78510,78515,78757,78518,78523,78523,78525,78532,78758,78724,78541,78742,78545,78743,78759,78553,78559,78760,78564,78569,78577,78725,78761,78577,78761,78570,78745,78585,78728,78762,78746,78595,78595,78600,78601,78763,78604,78612,78731,78747,78620,78620,78625,78732,78732,78733,78734,78764,78636,78748,78748,78642,78736,78645,78749,78765,78750,78653,78737,78751,78660,78662,78738,78669,78739,78752,78682,78753,78753,78685,78692,78754,78699,78707,78755,78712,78713,78741,78716,78723,78723,78756,78503,78504,78515,78517,78766,78757,78523,78523,78532,78534,78758,78541,78742,78742,78743,78767,78552,78759,78559,78563,78760,78569,78762,78595,78601,78763,78612,78768,78620,78732,78769,78620,78769,78731,78732,78734,78770,78764,78748,78736,78771,78645,78765,78765,78750,78737,78751,78662,78772,78738,78739,78677,78773,78752,78753,78753,78692,78694,78774,78754,78707,78755,78713,78741,78741,78723,78503,78775,78504,78517,78523,78534,78776,78523,78776,78766,78742,78767,78777,78742,78777,78758,78550,78552,78559,78563,78569,78778,78563,78778,78561,78779,78762,78601,78780,78763,78768,78781,78731,78769,78781,78769,78732,78731,78781,78768,78770,78764,78736,78771,78765,78737,78782,78773,78753,78753,78694,78783,78784,78774,78707,78741,78503,78785,78775,78517,78786,78787,78766,78776,78787,78776,78534,78766,78787,78786,78767,78788,78789,78789,78758,78777,78789,78777,78767,78559,78561,78790,78559,78790,78550,78778,78791,78792,78778,78792,78561,78791,78778,78569,78729,78779,78601,78793,78768,78781,78793,78781,78732,78768,78793,78780,78732,78770,78736,78736,78771,78737,78753,78783,78794,78753,78794,78782,78795,78784,78707,78741,78785,78775,78796,78786,78787,78796,78787,78534,78786,78796,78775,78788,78797,78798,78798,78758,78789,78798,78789,78788,78799,78550,78790,78799,78790,78561,78550,78799,78800,78792,78570,78801,78792,78801,78561,78570,78792,78791,78728,78729,78601,78802,78780,78793,78802,78793,78732,78780,78802,78803,78736,78737,78804,78736,78804,78732,78805,78782,78794,78805,78794,78783,78782,78805,78677,78795,78707,78806,78807,78775,78796,78796,78534,78808,78796,78808,78807,78775,78807,78809,78775,78809,78741,78797,78800,78810,78810,78758,78798,78810,78798,78797,78811,78561,78801,78811,78801,78570,78561,78811,78812,78799,78812,78813,78799,78813,78800,78812,78799,78561,78728,78601,78730,78814,78803,78802,78814,78802,78732,78803,78814,78815,78737,78751,78816,78816,78732,78804,78816,78804,78737,78817,78677,78805,78805,78783,78818,78805,78818,78817,78677,78817,78819,78677,78819,78738,78795,78806,78820,78809,78821,78822,78809,78822,78741,78821,78809,78807,78823,78807,78808,78823,78808,78534,78807,78823,78821,78824,78741,78822,78824,78822,78821,78741,78824,78755,78825,78800,78813,78825,78813,78812,78826,78812,78811,78826,78811,78570,78812,78826,78825,78800,78825,78827,78827,78758,78810,78827,78810,78800,78745,78728,78730,78828,78815,78814,78828,78814,78732,78815,78828,78829,78751,78772,78830,78830,78732,78816,78830,78816,78751,78831,78738,78819,78831,78819,78817,78832,78817,78818,78832,78818,78783,78817,78832,78831,78738,78831,78833,78738,78833,78772,78834,78795,78820,78824,78835,78836,78824,78836,78755,78835,78824,78821,78837,78821,78823,78837,78823,78534,78821,78837,78835,78838,78755,78836,78838,78836,78835,78755,78838,78839,78827,78840,78841,78827,78841,78758,78840,78827,78825,78842,78825,78826,78842,78826,78570,78825,78842,78840,78843,78758,78841,78843,78841,78840,78758,78843,78844,78744,78745,78730,78830,78845,78846,78830,78846,78732,78830,78772,78847,78830,78847,78845,78828,78845,78848,78828,78848,78829,78828,78732,78846,78828,78846,78845,78783,78834,78849,78783,78849,78850,78831,78850,78851,78851,78772,78833,78851,78833,78831,78850,78831,78832,78850,78832,78783,78834,78820,78852,78838,78853,78854,78838,78854,78839,78853,78838,78835,78855,78835,78837,78855,78837,78534,78835,78855,78853,78856,78839,78854,78856,78854,78853,78839,78856,78852,78843,78857,78858,78843,78858,78844,78857,78843,78840,78859,78840,78842,78859,78842,78570,78840,78859,78857,78860,78844,78858,78860,78858,78857,78844,78860,78861,78744,78730,78862,78848,78863,78864,78848,78864,78829,78863,78848,78845,78865,78845,78847,78865,78847,78772,78845,78865,78863,78866,78829,78864,78866,78864,78863,78829,78866,78862,78834,78852,78867,78834,78867,78868,78850,78868,78869,78869,78772,78851,78869,78851,78850,78868,78850,78849,78868,78849,78834,78534,78870,78871,78871,78872,78873,78871,78873,78534,78853,78872,78874,78874,78852,78856,78874,78856,78853,78872,78853,78855,78855,78534,78873,78855,78873,78872,78860,78875,78876,78860,78876,78861,78875,78860,78857,78877,78857,78859,78877,78859,78570,78857,78877,78875,78878,78861,78876,78878,78876,78875,78861,78878,78870,78879,78862,78866,78879,78866,78863,78880,78863,78865,78880,78865,78772,78863,78880,78879,78862,78879,78881,78862,78881,78744,78882,78883,78884,78882,78884,78872,78883,78882,78885,78883,78852,78874,78874,78872,78884,78874,78884,78883,78886,78872,78871,78871,78870,78887,78871,78887,78886,78882,78886,78888,78882,78888,78885,78886,78882,78872,78889,78868,78890,78890,78885,78891,78890,78891,78889,78869,78889,78892,78869,78892,78772,78889,78869,78868,78867,78883,78893,78867,78893,78868,78883,78867,78852,78883,78885,78890,78890,78868,78893,78890,78893,78883,78894,78875,78895,78894,78895,78725,78875,78894,78896,78878,78896,78897,78878,78897,78870,78896,78878,78875,78895,78877,78898,78895,78898,78725,78877,78895,78875,78877,78570,78761,78761,78725,78898,78761,78898,78877,78881,78899,78900,78881,78900,78744,78899,78881,78879,78901,78879,78880,78901,78880,78772,78879,78901,78899,78902,78744,78900,78902,78900,78899,78744,78902,78726,78903,78904,78905,78903,78905,78906,78903,78885,78907,78903,78907,78904,78908,78904,78909,78908,78909,78725,78908,78906,78905,78908,78905,78904,78910,78889,78911,78910,78911,78906,78910,78772,78892,78910,78892,78889,78903,78889,78891,78903,78891,78885,78903,78906,78911,78903,78911,78889,78912,78886,78913,78912,78913,78896,78912,78885,78888,78912,78888,78886,78897,78886,78887,78897,78887,78870,78897,78896,78913,78897,78913,78886,78894,78904,78914,78894,78914,78896,78894,78725,78909,78894,78909,78904,78912,78904,78907,78912,78907,78885,78912,78896,78914,78912,78914,78904,78902,78906,78915,78902,78915,78726,78906,78902,78899,78910,78899,78901,78910,78901,78772,78899,78910,78906,78908,78726,78915,78908,78915,78906,78726,78908,78725,78916,78917,78918,78918,78919,78920,78921,78497,78756,78722,78721,78720,78720,78719,78718,78717,78716,78741,78741,78715,78714,78714,78713,78712,78709,78708,78755,78755,78839,78852,78852,78820,78806,78702,78701,78700,78696,78695,78754,78754,78774,78784,78784,78795,78834,78834,78783,78694,78693,78692,78691,78691,78690,78922,78923,78924,78925,78925,78926,78927,78927,78928,78929,78930,78931,78932,78932,78933,78934,78934,78935,78936,78937,78938,78939,78939,78940,78941,78942,78943,78944,78944,78945,78946,78947,78948,78949,78949,78950,78951,78951,78952,78953,78953,78954,78955,78955,78956,78957,78957,78958,78959,78960,78961,78962,78962,78963,78964,78965,78966,78967,78968,78969,78970,78970,78971,78972,78973,78974,78975,78976,78977,78978,78979,78980,78981,78981,78982,78983,78984,78985,78986,78987,78988,78989,78989,78990,78991,78992,78993,78994,78994,78995,78996,78996,78997,78998,78998,78999,79000,79001,79002,79003,79004,79005,79006,79007,79008,79009,79010,79011,79012,79013,79014,79015,79015,79016,79017,79017,79018,79019,79019,79020,79021,79021,79022,79023,79024,79025,79026,79027,79028,79029,79029,79030,79031,79032,79033,79034,79035,79036,79037,79037,79038,79039,79040,79041,79042,79042,79043,79044,79044,79045,79046,79047,79048,79049,79050,79051,79052,79052,79053,79054,79054,79055,79056,79057,79058,79059,79060,79061,79062,79062,79063,79064,79064,79065,79066,79066,79067,79068,79068,79069,79070,79071,79072,79073,79073,79074,79075,79075,79076,79077,79078,79079,79080,79081,79082,79083,79083,79084,79085,79086,79087,79088,79088,79089,79090,79091,79092,79093,79093,79094,79095,79096,79097,79098,79099,79100,79101,79102,79103,79104,79104,79105,79106,79107,79108,79109,79110,79111,79112,79112,79113,79114,79115,79116,79117,79117,79118,79119,79119,79120,79121,79122,79123,79124,79124,79125,79126,79126,79127,79128,79128,79129,79130,79130,79131,79132,78920,78921,78756,78720,78718,78717,78717,78741,78714,78709,78755,78852,78852,78806,78707,78702,78700,78699,78696,78754,78784,78784,78834,78694,78694,78693,78691,78691,78922,79133,78923,78925,78927,78930,78932,78934,78934,78936,78937,78937,78939,78941,78942,78944,78946,78947,78949,78951,78953,78955,78957,78957,78959,79134,78960,78962,78964,78965,78967,79135,78968,78970,78972,78973,78975,79136,78979,78981,78983,78984,78986,78987,78987,78989,78991,78992,78994,78996,78996,78998,79000,79001,79003,79004,79004,79006,79137,79007,79009,79010,79013,79015,79017,79017,79019,79021,79024,79026,79138,79027,79029,79031,79032,79034,79139,79035,79037,79039,79040,79042,79044,79050,79052,79054,79057,79059,79140,79060,79062,79064,79064,79066,79068,79068,79070,79141,79071,79073,79075,79075,79077,79142,79143,79078,79080,79081,79083,79085,79085,79086,79088,79144,79091,79093,79096,79098,79099,79099,79101,79145,79146,79102,79104,79107,79109,79147,79148,79110,79112,79149,79115,79117,79117,79119,79121,79122,79124,79126,79126,79128,79130,79130,79132,78916,78918,78920,78756,78720,78717,78714,78710,78709,78852,78697,78696,78784,78784,78694,78691,78923,78927,78929,78930,78934,78937,79150,78942,78946,79151,78947,78951,78951,78953,78957,79134,78960,78964,78965,79135,79152,79153,78968,78972,78973,79136,78976,79154,78979,78983,79155,78984,78987,78987,78991,79156,78992,78996,79000,79001,79004,79137,79007,79010,79012,79157,79013,79017,79017,79021,79023,79158,79024,79138,79159,79027,79031,79035,79039,79160,79040,79044,79046,79161,79050,79054,79057,79140,79060,79060,79064,79068,79162,79071,79075,79143,79080,79163,79081,79085,79088,79144,79093,79095,79096,79099,79145,79146,79104,79106,79164,79107,79147,79148,79112,79114,79149,79117,79121,79165,79122,79126,79126,79130,78916,78916,78918,78756,78720,78714,78712,78710,78852,78707,78697,78784,78691,78923,78929,78930,78930,78937,78941,79166,79150,78946,79151,78951,78957,79134,78964,79167,78965,79152,79153,78973,78976,78978,79154,78983,79168,79155,78987,79156,78992,79000,79169,79170,79001,79137,79012,79157,79017,79017,79023,79158,79158,79138,79159,79159,79031,79032,79035,79160,79040,79040,79046,79047,79161,79054,79056,79060,79068,79141,79162,79075,79142,79142,79143,79163,79163,79081,79088,79171,79144,79095,79172,79096,79145,79145,79146,79106,79164,79147,79173,79174,79148,79114,79114,79149,79121,79165,79126,78916,78916,78756,78723,78722,78720,78712,78711,78710,78707,78698,78697,78691,79175,78923,78930,78930,78941,79166,79176,79151,78957,78957,79134,79167,78965,79153,78972,79168,79155,79156,79170,79137,79177,79007,79012,79017,79017,79158,79159,79035,79040,79047,79049,79161,79056,79060,79141,79178,79179,79162,79142,79142,79163,79088,79171,79095,79180,79145,79106,79164,79164,79173,79181,79114,79121,79182,78916,78723,79183,78916,79183,79165,78722,78712,78711,78711,78707,78706,78699,78698,78691,79175,78930,79166,78946,79176,78957,78957,79167,79184,78965,78972,79185,79168,79156,78992,79007,79017,79159,79139,79035,79047,79049,79056,79057,79179,79142,79088,79172,79145,79164,79164,79181,79174,79114,79182,79165,79183,78722,79186,79183,79186,79165,78722,79183,78723,78711,78706,79187,78711,79187,78722,78699,78691,79133,79188,79175,79166,79166,78946,78957,79168,78992,79169,79177,79007,79159,79032,79139,79047,79049,79057,79060,79178,79179,79088,79172,79164,79174,79189,79165,79186,79189,79186,78722,79165,79189,79114,78706,78705,79190,79190,78722,79187,79190,79187,78706,78699,79133,79191,79192,79188,79166,79166,78957,79184,79168,79169,79193,79168,79193,79154,79177,79159,79194,79177,79194,79170,79159,79032,79047,79178,79088,79195,79178,79195,79060,79174,79114,79196,79174,79196,79172,79190,79197,79198,79190,79198,78722,79197,79190,78705,79197,79114,79189,79189,78722,79198,79189,79198,79197,78699,79191,79199,79200,79192,79166,79166,79184,79201,79159,79047,79202,79202,79170,79194,79202,79194,79159,79088,79090,79203,79203,79060,79195,79203,79195,79088,79204,79172,79196,79204,79196,79114,79172,79204,79180,78705,78704,79205,79205,79114,79197,79205,79197,78705,78699,79199,79206,79206,79200,79166,79166,79201,78965,79207,79170,79202,79207,79202,79047,79170,79207,79169,79208,79060,79203,79203,79090,79209,79203,79209,79208,79060,79208,79210,79060,79210,79049,79205,79211,79212,79205,79212,79114,79205,78704,79213,79205,79213,79211,79212,79180,79204,79212,79204,79114,79212,79211,79214,79212,79214,79180,79206,79166,79215,79206,79215,78699,79166,78965,79185,79216,79169,79207,79207,79047,79217,79207,79217,79216,79169,79216,79218,79218,79154,79193,79218,79193,79169,79090,79171,79219,79219,79220,79221,79219,79221,79090,79208,79220,79222,79222,79049,79210,79222,79210,79208,79220,79208,79209,79209,79090,79221,79209,79221,79220,79223,79180,79214,79223,79214,79211,79224,79211,79213,79224,79213,78704,79211,79224,79223,79180,79223,79225,79180,79225,79171,79226,78699,79215,79226,79215,79166,78699,79226,78702,79166,79185,78973,79227,79216,79228,79227,79228,79049,79216,79227,79229,79218,79229,79230,79218,79230,79154,79229,79218,79216,79217,79049,79228,79217,79228,79216,79049,79217,79047,79231,79223,79232,79231,79232,79233,79231,79171,79225,79231,79225,79223,79234,79223,79224,79234,79224,78704,79234,79233,79232,79234,79232,79223,79235,79220,79236,79235,79236,79233,79235,79049,79222,79235,79222,79220,79231,79220,79219,79231,79219,79171,79231,79233,79236,79231,79236,79220,79237,78702,79226,79237,79226,79166,78702,79237,78703,79166,78973,78978,79230,79233,79238,79230,79238,79154,79233,79230,79229,79235,79229,79227,79235,79227,79049,79229,79235,79233,79234,79154,79238,79234,79238,79233,79234,78704,79239,79234,79239,79154,79237,78978,79240,79237,79240,78703,78978,79237,79166,79241,79154,79239,79239,78704,79242,79239,79242,79241,79243,78703,79240,79243,79240,78978,78703,79243,78704,79243,79241,79242,79243,79242,78704,79241,79243,78978,79244,79245,79246,79246,79247,79248,79248,79249,79250,79251,79252,79253,79254,79255,79256,79256,79257,79258,79259,79260,79261,79262,79263,79264,79264,79265,79266,79266,79267,79268,79268,79269,79270,79271,79272,79273,79273,79274,79275,79275,79276,79277,79278,79279,79280,79280,79281,79282,79282,79283,79284,79285,79286,79287,79287,79288,79289,79290,79291,79292,79293,79294,79295,79295,79296,79297,79297,79298,79299,79300,79301,79302,79302,79303,79304,79304,79305,79306,79306,79307,79308,79309,79310,79311,79312,79313,79314,79315,79316,79317,79318,79319,79320,79321,79322,79323,79324,79325,78568,78568,78567,78566,78565,78564,78760,78760,78563,78562,78562,78561,78560,78560,78559,78558,78554,78553,78759,78759,78552,78551,78551,78550,78800,78800,78797,78788,78788,78767,78743,78546,78545,78742,78742,78544,78543,78543,79326,79327,79328,79329,79330,79330,79331,79332,79332,79333,79334,79334,79335,79336,79337,79338,79339,79340,79244,79246,79246,79248,79250,79251,79253,79254,79256,79258,79341,79264,79266,79342,79264,79342,79262,79268,79270,79343,79268,79343,79266,79271,79273,79275,79275,79277,79344,79278,79280,79282,79285,79287,79289,79289,79290,79292,79293,79295,79297,79300,79302,79304,79304,79306,79308,79311,79312,79314,79315,79317,79318,79320,79321,79323,78568,78566,78565,78565,78760,78562,78562,78560,78558,78555,78554,78759,78551,78800,78788,78788,78743,78549,78547,78546,78742,78742,78543,79327,79328,79330,79332,79334,79336,79337,79337,79339,79345,79346,79340,79246,79251,79254,79256,79347,79262,79342,79347,79342,79266,79262,79347,79261,79270,79348,79349,79349,79266,79343,79349,79343,79270,79350,79271,79275,79275,79344,79278,79278,79282,79284,79351,79285,79289,79289,79292,79352,79353,79293,79297,79299,79300,79304,79304,79308,79309,79309,79311,79314,79320,79323,79324,78565,78562,79354,78565,79354,78568,78562,78558,78557,78556,78555,78759,78759,78551,78788,78547,78742,79327,79327,79328,79332,79337,79345,79355,79337,79355,79334,79345,79346,79246,79356,79266,79349,79356,79349,79348,79266,79356,79357,79347,79357,79358,79347,79358,79261,79357,79347,79266,79278,79284,79359,79278,79359,79275,79351,79289,79352,79353,79297,79299,79299,79304,79309,79309,79314,79315,78562,78557,79360,79360,78568,79354,79360,79354,78562,78556,78759,78788,78548,78547,79327,79332,79334,79361,79332,79361,79327,79345,79246,79362,79362,79334,79355,79362,79355,79345,79358,79363,79364,79358,79364,79261,79363,79358,79357,79365,79357,79356,79365,79356,79348,79357,79365,79363,79366,79261,79364,79366,79364,79363,79261,79366,79259,79367,79275,79359,79367,79359,79284,79275,79367,79350,79368,79351,79352,79353,79299,79309,79309,79315,79318,78556,78788,78549,79369,79327,79361,79369,79361,79334,79327,79369,78548,79362,79250,79370,79362,79370,79334,79250,79362,79246,79366,79371,79372,79366,79372,79259,79371,79366,79363,79373,79363,79365,79373,79365,79348,79363,79373,79371,79374,79259,79372,79374,79372,79371,79259,79374,79341,79284,79368,79375,79375,79350,79367,79375,79367,79284,79368,79352,79376,79353,79309,79318,78556,78549,78548,79377,79334,79370,79377,79370,79250,79334,79377,79378,79369,79378,79379,79369,79379,78548,79378,79369,79334,79348,79350,79380,79380,79381,79382,79380,79382,79348,79371,79381,79383,79383,79341,79374,79383,79374,79371,79381,79371,79373,79373,79348,79382,79373,79382,79381,79368,79376,79353,79318,79320,79384,79318,79384,79353,79379,79385,79386,79379,79386,78548,79385,79379,79378,79387,79378,79377,79387,79377,79250,79378,79387,79385,79388,78548,79386,79388,79386,79385,78548,79388,78556,79383,79389,79390,79383,79390,79341,79389,79383,79381,79391,79381,79380,79380,79350,79392,79380,79392,79391,79381,79391,79393,79381,79393,79389,79394,79341,79390,79390,79389,79395,79390,79395,79394,79341,79394,79396,79341,79396,79256,79368,79353,79384,79368,79384,79320,79388,79397,79398,79388,79398,78556,79397,79388,79385,79399,79385,79387,79399,79387,79250,79385,79399,79397,79400,78556,79398,79400,79398,79397,78556,79400,78557,79401,79350,79375,79375,79368,79402,79375,79402,79401,79350,79401,79403,79403,79404,79405,79403,79405,79350,79389,79404,79406,79389,79406,79407,79394,79407,79408,79408,79256,79396,79408,79396,79394,79407,79394,79395,79407,79395,79389,79404,79389,79393,79404,79393,79391,79405,79391,79392,79405,79392,79350,79391,79405,79404,79320,79324,79409,79320,79409,79368,79410,79397,79411,79410,79411,79251,79397,79410,79412,79400,79412,79413,79400,79413,78557,79412,79400,79397,79399,79251,79411,79399,79411,79397,79251,79399,79250,79414,79407,79415,79414,79415,79416,79407,79414,79417,79408,79417,79418,79408,79418,79256,79417,79408,79407,79406,79416,79415,79406,79415,79407,79416,79406,79404,79403,79419,79420,79403,79420,79404,79419,79403,79401,79421,79401,79402,79421,79402,79368,79401,79421,79419,79422,79404,79420,79422,79420,79419,79404,79422,79416,79418,79423,79424,79418,79424,79256,79423,79418,79417,79425,79417,79414,79425,79414,79416,79417,79425,79423,79426,79256,79424,79426,79424,79423,79256,79426,79251,79324,78568,79427,79427,79368,79409,79427,79409,79324,79428,78557,79413,79428,79413,79412,79429,79412,79410,79410,79251,79430,79410,79430,79429,79412,79429,79431,79412,79431,79428,78557,79428,79432,78557,79432,79433,79360,79433,79434,79360,79434,78568,79433,79360,78557,79433,79416,79435,79435,78568,79434,79435,79434,79433,79416,79433,79432,79416,79432,79428,79423,79428,79431,79423,79431,79429,79426,79429,79430,79426,79430,79251,79429,79426,79423,79428,79423,79425,79428,79425,79416,79419,78568,79435,79435,79416,79422,79435,79422,79419,79427,79419,79421,79427,79421,79368,79419,79427,78568,79436,79437,79438,79438,79439,79440,79440,79441,79442,79442,79443,79436,79436,79438,79440,79440,79442,79436,79444,79445,79446,79447,79448,79449,79449,79450,79451,79452,79453,79454,79455,79456,79457,79458,79459,79460,79461,79462,79463,79464,79465,79466,79467,79468,79469,79469,79470,79471,79472,79473,79474,79474,79475,79476,79477,79478,79479,79480,79481,79482,79482,79483,79484,79484,79485,79486,79487,79488,79489,79490,79491,79492,79492,79493,79494,79495,79496,79497,79497,79498,79499,79500,79501,79502,79502,79503,79504,79505,79506,79507,79508,79509,79510,79511,79512,79513,79514,79515,79516,79516,79517,79518,79518,79245,79244,79244,79340,79346,79346,79345,79339,79338,79337,79336,79335,79334,79333,79329,79328,79327,79326,78543,78542,78542,78541,78540,78536,78535,78724,78724,78758,78844,78844,78861,78870,78870,78534,78533,78529,78528,78527,78526,78525,78524,78522,78521,78520,78519,78518,78757,78757,78766,78786,78786,78517,78516,78516,78515,78514,78512,78511,78510,78507,78506,78505,78505,78504,78775,78775,78785,78503,78498,78497,78921,78921,78920,78919,78919,78918,78917,78917,78916,79519,79520,79521,79522,79523,79524,79525,79525,79526,79527,79527,79528,79529,79530,79531,79532,79532,79533,79534,79535,79536,79537,79538,79539,79540,79541,79542,79543,79544,79545,79546,79546,79547,79548,79548,79549,79550,79550,79551,79552,79552,79553,79554,79555,79556,79557,79558,79444,79446,79559,79447,79449,79451,79452,79454,79455,79457,79458,79458,79460,79461,79467,79469,79471,79472,79474,79476,79476,79477,79479,79480,79482,79484,79484,79486,79487,79487,79489,79490,79490,79492,79494,79494,79495,79497,79500,79502,79504,79505,79507,79508,79508,79510,79560,79511,79513,79561,79514,79516,79518,79518,79244,79346,79346,79339,79338,79338,79336,79335,79335,79333,79332,79330,79329,79327,79327,79326,78542,78536,78724,78844,78844,78870,78533,78527,78526,78524,78522,78520,78519,78519,78757,78786,78786,78516,78514,78512,78510,78509,78508,78507,78505,78505,78775,78503,78499,78498,78921,78921,78919,78917,78917,79519,79562,79562,79520,79522,79523,79525,79527,79527,79529,79530,79530,79532,79534,79535,79537,79563,79538,79540,79541,79544,79546,79548,79552,79554,79564,79564,79555,79557,79557,79558,79446,79559,79449,79451,79454,79455,79458,79458,79461,79463,79467,79471,79565,79566,79472,79476,79476,79479,79480,79480,79484,79487,79487,79490,79494,79499,79500,79504,79505,79508,79560,79511,79561,79514,79514,79518,79346,79335,79332,79567,79335,79567,79338,79330,79327,78542,78537,78536,78844,78844,78533,78532,78527,78524,78523,78522,78519,78786,78508,78505,78503,78500,78499,78921,78921,78917,79562,79562,79522,79568,79569,79523,79527,79538,79541,79543,79544,79548,79550,79550,79552,79564,79564,79557,79446,79451,79454,79458,79466,79467,79565,79566,79476,79480,79480,79487,79494,79497,79499,79504,79570,79505,79560,79511,79514,79346,79330,78542,78540,78537,78844,78532,78529,78527,78523,78522,78786,78514,78509,78508,78503,78501,78500,78921,78921,79562,79568,79569,79527,79530,79571,79538,79543,79544,79550,79564,79564,79446,79559,79458,79463,79572,79458,79572,79451,79466,79565,79566,79566,79480,79494,79497,79504,79573,79570,79560,79511,79511,79346,79338,79331,79330,78540,78538,78537,78532,78522,78514,78513,78509,78503,78502,78501,78921,79568,79569,79530,79534,79571,79543,79574,79564,79559,79575,79564,79575,79544,79466,79566,79494,79570,79511,79338,79331,78540,78539,78539,78538,78532,78509,78502,78501,78501,79568,79569,79576,79544,79575,79576,79575,79559,79544,79576,79574,79466,79494,79577,79466,79577,79464,79573,79570,79338,79331,78539,78532,78512,78509,78501,79569,79534,79578,79569,79578,78501,79579,79574,79576,79579,79576,79559,79574,79579,79571,79580,79464,79577,79580,79577,79494,79464,79580,79581,79582,79338,79567,79567,79332,79583,79567,79583,79582,79338,79582,79584,79338,79584,79573,79332,79331,78532,78512,78501,79578,78512,79578,79534,79559,79451,79585,79585,79571,79579,79585,79579,79559,79586,79581,79580,79586,79580,79494,79581,79586,79463,79587,79573,79584,79587,79584,79582,79588,79582,79583,79588,79583,79332,79582,79588,79587,79573,79587,79589,79573,79589,79497,79332,78532,78531,78513,78512,79534,79590,79571,79585,79590,79585,79451,79571,79590,79591,79592,79463,79586,79592,79586,79494,79463,79592,79593,79572,79593,79594,79572,79594,79451,79593,79572,79463,79589,79595,79596,79589,79596,79497,79595,79589,79587,79597,79587,79588,79597,79588,79332,79587,79597,79595,79598,79497,79596,79598,79596,79595,79497,79598,79494,79332,78531,78530,78513,79534,79599,78513,79599,78522,79600,79591,79590,79600,79590,79451,79591,79600,79601,79602,79595,79603,79603,79604,79605,79603,79605,79602,79598,79602,79606,79598,79606,79494,79602,79598,79595,79597,79607,79608,79597,79608,79595,79607,79597,79332,79607,79604,79603,79603,79595,79608,79603,79608,79607,79609,79610,79611,79609,79611,79593,79610,79609,79604,79610,79451,79594,79594,79593,79611,79594,79611,79610,79602,79593,79592,79592,79494,79606,79592,79606,79602,79609,79602,79605,79609,79605,79604,79602,79609,79593,79332,78530,78529,79612,78522,79599,79612,79599,79534,78522,79612,78523,79600,79610,79613,79600,79613,79601,79610,79600,79451,79610,79604,79614,79614,79601,79613,79614,79613,79610,79615,79604,79607,79607,79332,79616,79607,79616,79615,79614,79615,79617,79614,79617,79601,79615,79614,79604,78529,78523,79618,78529,79618,79332,79612,79535,79619,79612,79619,78523,79535,79612,79534,79620,79601,79617,79617,79615,79621,79617,79621,79620,79622,79615,79616,79616,79332,79623,79616,79623,79622,79615,79622,79624,79624,79620,79621,79624,79621,79615,79625,78523,79619,79619,79535,79626,79619,79626,79625,78523,79625,79627,79627,79332,79618,79627,79618,78523,79563,79620,79624,79624,79622,79628,79624,79628,79563,79629,79622,79623,79623,79332,79630,79623,79630,79629,79622,79629,79631,79631,79563,79628,79631,79628,79622,79631,79625,79632,79631,79632,79563,79625,79631,79629,79627,79629,79630,79627,79630,79332,79629,79627,79625,79626,79563,79632,79626,79632,79625,79563,79626,79535,79633,79634,79635,79635,79636,79637,79637,79638,79639,79639,79640,79641,79641,79642,79633,79633,79635,79637,79637,79639,79641,79641,79633,79637,79643,79644,79645,79645,79646,79647,79647,79648,79649,79649,79643,79645,79645,79647,79649,79650,79651,79652,79652,79653,79654,79654,79655,79656,79657,79658,79659,79660,79661,79662,79663,79664,79665,79665,79666,79667,79668,79669,79670,79670,79671,79672,79673,79674,79675,79675,79676,79677,79678,79679,79680,79680,79681,79682,79682,79683,79684,79684,79685,79686,79686,79687,79688,79689,79690,79691,79692,79693,79694,79694,79695,79696,79696,79697,79698,79699,79700,79701,79701,79702,79703,79703,79704,79705,79705,79706,79707,79707,79708,79709,79710,79711,79712,79712,79713,79714,79714,79715,79716,79717,79718,79719,79719,79720,79721,79722,79723,79724,79724,79725,79726,79726,79727,79728,79729,79730,79731,79732,79733,79734,79734,79735,79736,79737,79738,79739,79740,79741,79742,79743,79744,79745,79746,79747,79748,79748,79749,79750,79750,79751,79752,79753,79754,79755,79755,79756,79757,79758,79759,79760,79761,79762,79763,79763,79764,79765,79765,79766,79767,79767,79768,79769,79769,79770,79771,79772,79773,79774,79775,79776,79777,79778,79779,79780,79781,79782,79783,79783,79784,79785,79785,79786,79787,79788,79789,79790,79790,79791,79792,79793,79794,79795,79795,79796,79797,79798,79799,79800,79800,79801,79802,79803,79804,79805,79806,79807,79808,79809,79810,79811,79812,79813,79814,79814,79815,79816,79817,79818,79819,79819,79820,79821,79652,79654,79656,79822,79657,79659,79660,79662,79663,79663,79665,79667,79668,79670,79672,79673,79675,79677,79678,79680,79682,79682,79684,79686,79686,79688,79823,79692,79694,79696,79696,79698,79824,79699,79701,79703,79703,79705,79707,79707,79709,79825,79710,79712,79714,79826,79717,79719,79827,79722,79724,79724,79726,79728,79729,79731,79828,79732,79734,79736,79740,79742,79743,79743,79745,79746,79746,79748,79750,79753,79755,79757,79758,79760,79761,79761,79763,79765,79767,79769,79771,79772,79774,79829,79830,79775,79777,79778,79780,79831,79832,79781,79783,79783,79785,79787,79833,79788,79790,79834,79793,79795,79835,79798,79800,79800,79802,79836,79836,79803,79805,79806,79808,79837,79809,79811,79838,79812,79814,79816,79839,79817,79819,79819,79821,79840,79652,79656,79841,79841,79822,79659,79660,79663,79667,79668,79672,79673,79673,79677,79842,79843,79678,79682,79682,79686,79823,79692,79696,79824,79824,79699,79703,79703,79707,79825,79844,79710,79714,79826,79719,79721,79827,79724,79728,79729,79828,79845,79846,79732,79736,79739,79740,79743,79743,79746,79750,79847,79753,79757,79758,79761,79765,79765,79767,79771,79772,79829,79830,79830,79777,79848,79778,79831,79849,79832,79783,79787,79833,79790,79792,79850,79834,79795,79835,79800,79836,79851,79809,79838,79852,79812,79816,79839,79819,79840,79652,79841,79659,79660,79667,79853,79853,79668,79673,79843,79682,79823,79854,79692,79824,79824,79703,79825,79844,79714,79716,79721,79827,79728,79846,79736,79737,79737,79739,79743,79743,79750,79752,79765,79771,79855,79830,79848,79778,79856,79832,79787,79857,79833,79792,79850,79795,79797,79858,79835,79836,79837,79851,79838,79852,79816,79839,79839,79840,79650,79650,79652,79659,79660,79853,79673,79842,79843,79823,79691,79854,79824,79824,79825,79859,79721,79728,79860,79846,79737,79743,79743,79752,79861,79758,79765,79855,79856,79787,79857,79857,79792,79850,79850,79797,79862,79858,79836,79805,79806,79837,79838,79852,79839,79650,79650,79659,79863,79864,79660,79673,79673,79842,79823,79824,79859,79865,79824,79865,79691,79721,79860,79729,79846,79743,79861,79758,79855,79866,79856,79857,79850,79867,79858,79805,79806,79838,79852,79852,79650,79863,79864,79673,79823,79868,79691,79865,79868,79865,79859,79691,79868,79689,79826,79721,79729,79845,79846,79861,79757,79758,79866,79856,79850,79862,79867,79805,79806,79806,79852,79863,79869,79864,79823,79870,79689,79868,79870,79868,79859,79689,79870,79823,79826,79729,79845,79845,79861,79871,79847,79757,79866,79867,79806,79863,79872,79869,79823,79859,79844,79873,79873,79823,79870,79873,79870,79859,79874,79826,79845,79845,79871,79847,79847,79866,79772,79862,79867,79863,79875,79872,79823,79845,79847,79876,79845,79876,79874,79847,79772,79830,79862,79863,79877,79862,79877,79856,79878,79875,79823,79879,79874,79876,79879,79876,79847,79874,79879,79716,79847,79830,79778,79880,79856,79877,79880,79877,79863,79856,79880,79849,79878,79823,79873,79878,79873,79844,79881,79716,79879,79881,79879,79847,79716,79881,79844,79847,79778,79849,79863,79882,79883,79883,79849,79880,79883,79880,79863,79884,79878,79844,79881,79849,79885,79881,79885,79844,79849,79881,79847,79882,79884,79886,79886,79849,79883,79886,79883,79882,79886,79844,79885,79886,79885,79849,79844,79886,79884,79887,79888,79889,79890,79891,79892,79893,79894,79895,79895,79896,79897,79898,79899,79900,79900,79901,79902,79902,79903,79904,79904,79887,79889,79890,79892,79893,79893,79895,79897,79900,79902,79904,79904,79889,79905,79905,79890,79893,79893,79897,79898,79898,79900,79904,79904,79905,79893,79893,79898,79904,79906,79907,79908,79908,79909,79910,79910,79911,79912,79912,79913,79914,79914,79915,79916,79916,79917,79918,79918,79906,79908,79908,79910,79912,79912,79914,79916,79916,79918,79908,79908,79912,79916,79919,79764,79763,79762,79761,79760,79759,79758,79757,79754,79753,79847,79847,79871,79861,79861,79752,79751,79747,79746,79745,79744,79743,79742,79741,79740,79739,79738,79737,79736,79733,79732,79846,79846,79845,79828,79730,79729,79860,79725,79724,79723,79920,79921,79922,79922,79923,79924,79925,79926,79927,79927,79928,79929,79930,79931,79932,79932,79933,79934,79934,79935,79936,79937,79938,79939,79940,79941,79942,79943,79944,79945,79945,79946,79947,79947,79948,79949,79949,79950,79951,79951,79952,79953,79954,79955,79956,79956,79957,79958,79959,79960,79961,79962,79963,79964,79964,79965,79966,79966,79967,79968,79969,79970,79971,79971,79972,79973,79974,79975,79976,79976,79977,79978,79978,79979,79980,79980,79981,79982,79983,79984,79985,79986,79987,79988,79988,79989,79990,79991,79992,79485,79481,79480,79479,79477,79476,79475,79473,79472,79566,79566,79565,79471,79468,79467,79466,79465,79464,79581,79581,79463,79462,79462,79461,79460,79459,79458,79457,79456,79455,79454,79453,79452,79451,79450,79449,79448,79448,79447,79559,79559,79446,79445,79993,79994,79995,79996,79997,79998,79998,79999,80000,80000,80001,80002,80003,80004,80005,80006,80007,80008,80009,80010,80011,80012,80013,80014,80015,80016,80017,80017,80018,80019,80019,80020,80021,80021,80022,80023,80024,80025,80026,80027,80028,80029,80029,80030,80031,80032,80033,80034,80034,80035,80036,80037,80038,80039,80040,80041,80042,80042,80043,80044,80045,80046,80047,80047,80048,80049,80050,80051,80052,80053,80054,80055,80055,80056,80057,80058,80059,80060,80061,80062,80063,80063,80064,80065,80066,80067,80068,80068,80069,80070,80070,80071,80072,80072,80073,80074,80075,80076,80077,80077,80078,80079,80080,80081,80082,80082,80083,80084,80084,80085,80086,80087,80088,80089,80090,79919,79763,79762,79760,79759,79759,79757,79756,79754,79847,79861,79741,79739,79738,79733,79846,79828,79730,79860,79728,79725,79723,80091,80092,79920,79922,79922,79924,80093,80094,79925,79927,79927,79929,80095,79930,79932,79934,79934,79936,80096,80097,79937,79939,79940,79942,80098,79943,79945,79947,79947,79949,79951,79951,79953,79954,79956,79958,79959,79959,79961,79962,79962,79964,79966,79966,79968,80099,80100,79969,79971,79974,79976,79978,79978,79980,79982,79986,79988,79990,79991,79485,79484,79482,79481,79479,79473,79566,79471,79468,79466,79465,79465,79581,79462,79460,79459,79457,79456,79454,79453,79453,79451,79450,79448,79559,79445,80101,79993,79995,79996,79998,80000,80000,80002,80102,80003,80005,80103,80006,80008,80009,80009,80011,80012,80012,80014,80104,80104,80015,80017,80017,80019,80021,80027,80029,80031,80032,80034,80036,80037,80039,80105,80042,80044,80045,80045,80047,80049,80053,80055,80057,80057,80058,80060,80061,80063,80065,80066,80068,80070,80070,80072,80074,80075,80077,80079,80080,80082,80084,80084,80086,80087,80087,80089,80090,80090,79763,79762,79759,79756,79755,79754,79861,79751,79741,79738,79736,79734,79733,79828,79731,79730,79728,79726,79725,80091,80092,79922,80093,80094,79927,80095,80106,79930,79934,79934,80096,80107,80097,79939,80108,79940,80098,79943,79943,79947,79951,79951,79954,79956,79959,79962,79966,80100,79971,79973,80109,79974,79978,79978,79982,79983,79986,79990,79991,79991,79484,79483,79483,79482,79479,79474,79473,79471,79469,79468,79465,79465,79462,79460,79460,79457,79456,79453,79450,79448,79448,79445,80110,80111,80101,79995,80112,79996,80000,80003,80103,80113,80006,80009,80012,80104,80017,80021,80027,80031,80032,80032,80036,80037,80042,80045,80049,80114,80053,80057,80057,80060,80115,80061,80065,80066,80066,80070,80074,80075,80079,80116,80117,80080,80084,80087,80090,79762,79762,79759,79755,79755,79754,79751,79742,79741,79736,79734,79828,79731,79731,79728,79727,79727,79726,80091,80091,80092,80093,80118,80094,80095,80106,79934,80107,80119,80097,80108,80108,79940,79943,79943,79951,79956,79959,79966,80099,80120,80100,79973,80121,80109,79978,80122,79986,79991,79991,79483,79479,79469,79465,79460,79456,79453,79448,79448,80110,80123,80124,80111,79995,80112,80000,80102,80125,80006,80012,80012,80104,80021,80027,80032,80037,80040,80042,80049,80114,80057,80115,80061,80066,80074,80075,80116,80126,80117,80084,80087,80087,79762,79755,79755,79751,79750,79742,79736,79735,79734,79731,79727,79727,80091,80093,80118,80095,80127,80127,80106,80107,80119,80108,79943,79943,79956,79959,79973,80121,79978,80122,79991,79479,79470,79469,79460,79448,80123,80128,79448,80128,79456,80129,80124,79995,79995,80112,80102,80125,80012,80021,80027,80037,80105,80105,80040,80049,80130,80114,80115,80131,80061,80074,80132,80075,80126,80117,80087,79755,79755,79750,79749,79735,79734,79727,79727,80093,80118,80118,80127,80107,80133,80119,79943,79959,80099,80134,79959,80134,79943,79973,79978,79983,79985,80122,79479,79470,79460,79456,80123,80135,80136,80136,79456,80128,80136,80128,80123,80137,80129,79995,79995,80102,80138,80139,80125,80021,80105,80049,80140,80105,80140,80027,80130,80115,80141,80142,80131,80074,80132,80126,80117,80117,79755,79749,79742,79735,79727,80118,80107,80143,80118,80143,79727,80144,79943,80134,80144,80134,80099,79943,80144,80133,80120,79973,79983,79985,79479,79478,79471,79470,79456,80135,80145,80146,80146,79456,80136,80146,80136,80135,80147,80137,79995,79995,80138,80148,80139,80021,80023,80049,80050,80149,80149,80027,80140,80149,80140,80049,80052,80130,80141,80142,80074,80132,80117,79749,80150,80117,80150,80132,79744,79742,79727,80107,80133,80151,80151,79727,80143,80151,80143,80107,80099,80120,80152,80152,80133,80144,80152,80144,80099,79983,79985,80153,79983,80153,80120,79985,79478,79477,79471,79456,80154,79471,80154,79474,80145,80155,80156,80156,79456,80146,80156,80146,80145,80157,80147,79995,80158,80139,80023,80050,80052,80159,80159,80027,80149,80159,80149,80050,80052,80141,80160,80161,80132,80150,80161,80150,79749,80132,80161,80142,80162,79727,80151,80162,80151,80133,79727,80162,79744,80163,80120,80153,80163,80153,79985,80120,80163,80164,80152,80164,80165,80152,80165,80133,80164,80152,80120,79477,79475,80166,79477,80166,79985,80167,79456,80156,80156,80155,80168,80156,80168,80167,79456,80167,80169,80169,79474,80154,80169,80154,79456,80170,80157,79995,80113,80158,80023,80052,80160,80171,80171,80027,80159,80171,80159,80052,80172,80142,80161,80161,79749,80173,80161,80173,80172,80142,80172,80174,80142,80174,80160,80175,79744,80162,80175,80162,80133,79744,80175,79745,80176,79985,80166,80176,80166,79475,79985,80176,80177,80164,80177,80178,80178,80133,80165,80178,80165,80164,80177,80164,80163,80177,80163,79985,80169,80179,80180,80169,80180,79474,80179,80169,80167,80181,80167,80168,80181,80168,80155,80167,80181,80179,80182,79474,80180,80182,80180,80179,79474,80182,79475,80183,80170,79995,80113,80023,80024,80184,80027,80171,80184,80171,80160,80027,80184,80185,79749,79748,80186,79749,80186,80187,80172,80187,80188,80188,80160,80174,80188,80174,80172,80187,80172,80173,80187,80173,79749,80189,79745,80175,80189,80175,80133,79745,80189,79747,80179,80190,80191,80191,79475,80182,80191,80182,80179,80192,80179,80181,80192,80181,80155,80179,80192,80190,80193,80191,80194,80193,80194,80195,80191,80193,79475,80191,80190,80196,80196,80195,80194,80196,80194,80191,80197,80177,80198,80197,80198,80195,80177,80197,80199,80178,80199,80200,80178,80200,80133,80199,80178,80177,80198,80176,80201,80198,80201,80195,80176,80198,80177,80176,79475,80193,80193,80195,80201,80193,80201,80176,80202,80183,79995,80113,80024,80026,80187,80203,80204,80204,80160,80188,80204,80188,80187,80205,80187,80186,80205,80186,79748,80187,80205,80203,80206,80184,80207,80206,80207,80203,80184,80206,80185,80184,80160,80204,80204,80203,80207,80204,80207,80184,80208,79747,80189,80208,80189,80133,79747,80208,79748,80155,80209,80210,80210,80211,80212,80210,80212,80155,80213,80211,80214,80214,80215,80216,80214,80216,80213,80211,80213,80217,80217,80155,80212,80217,80212,80211,80195,80215,80218,80218,80219,80220,80218,80220,80195,80199,80219,80221,80221,80133,80200,80221,80200,80199,80219,80199,80197,80197,80195,80220,80197,80220,80219,80215,80195,80196,80196,80190,80222,80196,80222,80215,80213,80190,80192,80192,80155,80217,80192,80217,80213,80190,80213,80216,80216,80215,80222,80216,80222,80190,80223,80202,79995,80113,80026,80185,80224,79748,80208,80208,80133,80225,80208,80225,80224,79748,80224,80226,80226,80227,80228,80226,80228,79748,80203,80227,80229,80203,80229,80230,80206,80230,80231,80206,80231,80185,80230,80206,80203,80227,80203,80205,80205,79748,80228,80205,80228,80227,80209,80232,80233,80233,80234,80235,80233,80235,80209,80236,80234,80237,80237,80238,80239,80237,80239,80236,80234,80236,80240,80240,80209,80235,80240,80235,80234,80215,80238,80241,80241,80242,80243,80241,80243,80215,80219,80242,80244,80244,80133,80221,80244,80221,80219,80242,80219,80218,80218,80215,80243,80218,80243,80242,80238,80215,80214,80214,80211,80245,80214,80245,80238,80236,80211,80210,80210,80209,80240,80210,80240,80236,80211,80236,80239,80239,80238,80245,80239,80245,80211,80232,80223,79995,80246,80230,80247,80246,80247,80248,80230,80246,80249,80231,80249,80250,80231,80250,80185,80249,80231,80230,80229,80248,80247,80229,80247,80230,80248,80229,80227,80226,80251,80252,80226,80252,80227,80251,80226,80224,80253,80224,80225,80253,80225,80133,80224,80253,80251,80254,80227,80252,80254,80252,80251,80227,80254,80248,80255,80185,80250,80255,80250,80249,80256,80249,80246,80256,80246,80248,80249,80256,80255,80185,80255,80257,80185,80257,80113,80232,79995,80258,80258,80259,80260,80258,80260,80232,80261,80259,80262,80262,80263,80264,80262,80264,80261,80259,80261,80265,80265,80232,80260,80265,80260,80259,80238,80263,80266,80266,80267,80268,80266,80268,80238,80242,80267,80269,80269,80133,80244,80269,80244,80242,80267,80242,80241,80241,80238,80268,80241,80268,80267,80263,80238,80237,80237,80234,80270,80237,80270,80263,80261,80234,80233,80233,80232,80265,80233,80265,80261,80234,80261,80264,80264,80263,80270,80264,80270,80234,80271,80255,80272,80271,80272,80273,80255,80271,80274,80257,80274,80275,80257,80275,80113,80274,80257,80255,80256,80273,80272,80256,80272,80255,80273,80256,80248,80254,80276,80277,80254,80277,80248,80276,80254,80251,80278,80251,80253,80278,80253,80133,80251,80278,80276,80279,80248,80277,80279,80277,80276,80248,80279,80273,80275,80280,80281,80275,80281,80113,80280,80275,80274,80282,80274,80271,80282,80271,80273,80274,80282,80280,80283,80113,80281,80283,80281,80280,80113,80283,80003,80284,80285,80286,80284,80286,80263,80285,80284,80287,80288,80287,80289,80288,80289,80148,80287,80288,80285,80290,80263,80286,80290,80286,80285,80263,80290,80291,80292,80267,80293,80292,80293,80291,80267,80292,80294,80269,80294,80295,80269,80295,80133,80294,80269,80267,80266,80291,80293,80266,80293,80267,80291,80266,80263,80289,80259,80296,80289,80296,80148,80259,80289,80287,80262,80287,80284,80262,80284,80263,80287,80262,80259,80258,80148,80296,80258,80296,80259,80148,80258,79995,80297,80280,80298,80297,80298,80291,80280,80297,80299,80283,80299,80300,80283,80300,80003,80299,80283,80280,80282,80291,80298,80282,80298,80280,80291,80282,80273,80279,80294,80301,80279,80301,80273,80294,80279,80276,80295,80276,80278,80295,80278,80133,80276,80295,80294,80292,80273,80301,80292,80301,80294,80273,80292,80291,80300,80285,80302,80300,80302,80003,80285,80300,80299,80290,80299,80297,80290,80297,80291,80299,80290,80285,80288,80003,80302,80288,80302,80285,80003,80288,80148,80303,80304,80305,80305,80306,80307,80307,80308,80309,80310,80311,80312,80312,80313,80314,80314,80303,80305,80305,80307,80309,80310,80312,80314,80305,80309,80310,80310,80314,80305,79314,79313,80315,80315,80316,80317,80317,80318,80319,80320,80321,80322,80322,80323,80324,80325,80326,80327,80327,80328,80329,80329,80330,80331,80332,80333,80334,80335,80336,78594,78592,78591,78746,78746,78762,78779,78779,78729,78590,78589,78588,78728,78586,78585,78584,78584,78583,78727,78727,78745,78744,78744,78582,78581,78581,78580,78726,78726,78725,78579,78578,78577,78576,78575,78574,78573,78571,78570,78791,78569,78568,79325,79325,79324,79323,79322,79321,79320,79319,79318,79317,79316,79315,79314,79314,80315,80317,80320,80322,80324,80325,80327,80329,80332,80334,80335,80335,78594,78593,78592,78746,78779,78589,78728,78587,78587,78586,78584,78584,78727,78744,78581,78726,78579,78579,78578,78576,78575,78573,78572,78572,78571,78791,78791,78569,79325,79325,79323,79322,79322,79320,79319,79319,79317,79316,79316,79314,80317,80319,80320,80324,80325,80329,80331,80337,80332,80335,78593,78592,78779,78590,78589,78587,78584,78744,78581,78581,78579,78576,78575,78572,78791,78791,79325,79322,79322,79319,79316,79316,80317,80319,80319,80324,80338,80338,80325,80331,80337,80335,78593,78593,78779,78590,78590,78587,78584,78581,78576,80339,78581,80339,78584,78576,78575,78791,79322,79316,80340,79322,80340,78791,80319,80338,80341,80319,80341,79316,80342,80337,78593,78593,78590,78584,78576,78791,80343,80343,78584,80339,80343,80339,78576,80340,80338,80344,80340,80344,78791,80340,79316,80341,80340,80341,80338,80345,80342,78593,80346,78584,80343,80343,78791,80347,80343,80347,80346,78584,80346,80348,78584,80348,78593,80338,80331,80349,80349,78791,80344,80349,80344,80338,80350,80345,78593,80331,80350,80351,80351,78791,80349,80351,80349,80331,80350,78593,80348,80350,80348,80346,80351,80346,80347,80351,80347,78791,80346,80351,80350,80352,80353,80354,80355,80356,80357,80358,80359,80360,80360,80361,80362,80363,80364,80365,80365,80366,80367,80368,80369,80370,80371,80372,80373,80374,80375,80376,80376,80377,80378,80378,80379,80380,80381,80382,80383,80383,80384,80385,80385,80386,80387,80388,80389,80390,80391,80392,80393,80394,80395,80396,80397,80398,80399,80400,80401,80402,80403,80404,80405,80405,80406,80407,80408,80409,80410,80410,80411,80412,80413,80414,80415,80415,80416,80417,80417,80418,80419,80419,80420,80421,80422,80423,80424,80425,80426,80427,80428,80429,80430,80431,80432,80433,80433,80434,80435,80436,80437,80438,80439,80440,80441,80442,80443,80444,80444,80445,80446,80446,80447,80448,80448,80449,80450,80451,80452,80453,80453,80454,80455,80455,80456,80457,80457,80458,80459,80460,80461,80462,80463,80464,80465,80466,80467,80468,80469,80470,80471,80471,80472,80473,80473,80474,80475,80476,80477,80478,80479,80480,80481,80482,80483,80484,80484,80485,80486,80486,80487,80488,80489,80490,80491,80491,80492,80493,80493,80494,80495,80496,80497,80498,80499,80500,80501,80501,80502,80503,80504,80505,80506,80507,80508,80509,80509,80510,80511,80512,80513,80514,80514,80515,80516,80516,80517,80518,80518,80519,80520,80521,80522,80523,80523,80524,80525,80526,80527,80528,80528,80529,80530,80531,80532,80533,80533,80534,80535,80535,80536,80537,80537,80538,80539,80539,80540,80541,80542,80543,80544,80545,80546,80547,80548,80549,80550,80551,80552,80553,80554,80555,80556,80557,80558,80559,80559,80560,80561,80561,80562,80563,80564,80565,80566,80567,80568,80569,80569,80570,80571,80571,80572,80573,80573,80574,80575,80576,80577,80578,80578,80579,80580,80581,80582,80583,80583,80584,80585,80585,80586,80587,80587,80588,80589,80590,80591,80592,80592,80593,80594,80595,80596,80597,80597,80598,80599,80600,80601,80602,80603,80604,80605,80605,80606,80607,80607,80608,80609,80609,80610,80611,80612,80613,80614,80614,80615,80616,80617,80618,80619,80620,80621,80622,80623,80624,80625,80626,80627,80628,80628,80629,80630,80631,80632,80633,80633,80634,80635,80635,80352,80354,80360,80362,80636,80637,80363,80365,80638,80368,80370,80371,80373,80639,80374,80376,80378,80378,80380,80640,80381,80383,80385,80385,80387,80641,80391,80393,80642,80394,80396,80397,80397,80399,80400,80403,80405,80407,80408,80410,80412,80417,80419,80421,80424,80425,80427,80431,80433,80435,80439,80441,80442,80442,80444,80446,80446,80448,80450,80455,80457,80459,80459,80460,80462,80463,80465,80643,80468,80469,80471,80471,80473,80475,80478,80479,80481,80481,80482,80484,80484,80486,80488,80491,80493,80495,80499,80501,80503,80504,80506,80644,80645,80507,80509,80512,80514,80516,80521,80523,80525,80646,80526,80528,80528,80530,80647,80533,80535,80537,80537,80539,80541,80648,80542,80544,80545,80547,80649,80548,80550,80650,80551,80553,80651,80554,80556,80652,80557,80559,80561,80561,80563,80653,80654,80564,80566,80567,80569,80571,80571,80573,80575,80576,80578,80580,80580,80581,80583,80583,80585,80587,80590,80592,80594,80595,80597,80599,80603,80605,80607,80607,80609,80611,80655,80612,80614,80614,80616,80656,80617,80619,80620,80620,80622,80657,80623,80625,80626,80626,80628,80630,80631,80633,80635,80635,80354,80355,80358,80360,80636,80637,80365,80367,80638,80370,80658,80658,80371,80639,80659,80374,80378,80378,80640,80381,80381,80385,80641,80660,80391,80642,80661,80394,80397,80397,80400,80402,80662,80403,80407,80408,80412,80663,80415,80417,80421,80422,80424,80427,80430,80431,80435,80439,80442,80446,80446,80450,80451,80455,80459,80462,80468,80471,80475,80478,80481,80484,80484,80488,80489,80491,80495,80496,80664,80499,80503,80645,80509,80511,80520,80521,80525,80646,80528,80647,80531,80533,80537,80537,80541,80648,80648,80544,80665,80545,80649,80666,80548,80650,80551,80651,80554,80652,80667,80557,80561,80561,80653,80668,80654,80566,80567,80567,80571,80575,80669,80576,80580,80580,80583,80587,80590,80594,80670,80671,80595,80599,80603,80607,80611,80655,80614,80656,80657,80623,80626,80626,80630,80672,80672,80631,80635,80635,80355,80357,80357,80358,80636,80673,80638,80658,80658,80639,80674,80378,80381,80675,80378,80675,80659,80381,80641,80676,80661,80397,80402,80662,80407,80408,80413,80415,80421,80422,80427,80428,80430,80435,80677,80678,80439,80446,80453,80455,80462,80466,80468,80475,80476,80478,80484,80484,80489,80491,80498,80664,80503,80644,80645,80511,80520,80525,80679,80679,80646,80647,80531,80537,80648,80648,80665,80680,80545,80666,80681,80651,80652,80682,80667,80561,80668,80654,80567,80575,80669,80580,80587,80590,80670,80683,80671,80599,80684,80603,80611,80685,80685,80655,80656,80620,80657,80626,80626,80672,80635,80357,80636,80686,80687,80673,80658,80658,80674,80688,80689,80659,80675,80689,80675,80381,80659,80689,80690,80381,80676,80691,80692,80661,80402,80693,80662,80408,80413,80421,80694,80422,80428,80430,80430,80677,80695,80678,80446,80451,80451,80453,80462,80696,80466,80475,80476,80484,80491,80498,80503,80504,80504,80644,80511,80520,80679,80647,80697,80531,80648,80648,80680,80545,80545,80681,80698,80651,80682,80699,80700,80667,80668,80654,80575,80669,80669,80587,80589,80671,80684,80701,80602,80603,80685,80685,80656,80702,80620,80626,80635,80357,80686,80637,80687,80658,80688,80381,80691,80703,80703,80690,80689,80703,80689,80381,80692,80402,80704,80692,80704,80642,80693,80408,80663,80413,80694,80705,80430,80695,80706,80438,80678,80451,80451,80462,80463,80696,80475,80707,80707,80476,80491,80498,80504,80511,80518,80520,80647,80697,80648,80545,80545,80698,80708,80700,80668,80654,80669,80589,80709,80669,80709,80654,80671,80701,80710,80602,80685,80702,80620,80635,80357,80357,80637,80367,80711,80687,80688,80712,80690,80703,80703,80691,80713,80703,80713,80712,80690,80712,80688,80714,80642,80704,80714,80704,80402,80642,80714,80660,80663,80715,80716,80663,80716,80693,80413,80705,80422,80430,80706,80717,80430,80717,80422,80436,80438,80451,80451,80463,80643,80707,80491,80718,80707,80718,80696,80498,80511,80512,80518,80647,80719,80719,80697,80545,80720,80654,80709,80720,80709,80589,80654,80720,80700,80600,80602,80702,80620,80357,80721,80620,80721,80617,80722,80711,80688,80691,80723,80724,80691,80724,80725,80712,80725,80726,80712,80726,80688,80725,80712,80713,80725,80713,80691,80402,80693,80727,80727,80660,80714,80727,80714,80402,80728,80422,80717,80728,80717,80706,80422,80728,80413,80706,80436,80451,80451,80643,80729,80491,80496,80730,80730,80696,80718,80730,80718,80491,80496,80498,80512,80518,80719,80545,80731,80700,80720,80731,80720,80589,80700,80731,80699,80710,80600,80702,80357,80367,80732,80732,80617,80721,80732,80721,80357,80367,80722,80688,80723,80733,80734,80734,80735,80736,80734,80736,80723,80725,80735,80737,80737,80688,80726,80737,80726,80725,80735,80725,80724,80724,80723,80736,80724,80736,80735,80738,80693,80716,80738,80716,80715,80693,80738,80739,80727,80739,80740,80727,80740,80660,80739,80727,80693,80741,80413,80728,80741,80728,80706,80413,80741,80715,80451,80729,80742,80451,80742,80706,80743,80696,80730,80743,80730,80496,80696,80743,80744,80516,80518,80545,80731,80590,80745,80731,80745,80699,80590,80731,80589,80671,80710,80702,80746,80617,80732,80746,80732,80367,80617,80746,80702,80747,80688,80737,80747,80737,80735,80748,80735,80734,80748,80734,80733,80735,80748,80747,80688,80747,80749,80688,80749,80367,80750,80715,80741,80741,80706,80751,80741,80751,80750,80715,80750,80752,80715,80752,80753,80739,80753,80754,80739,80754,80755,80740,80755,80756,80740,80756,80660,80755,80740,80739,80753,80739,80738,80753,80738,80715,80729,80757,80758,80758,80706,80742,80758,80742,80729,80496,80512,80759,80759,80744,80743,80759,80743,80496,80516,80545,80760,80516,80760,80512,80590,80683,80761,80761,80699,80745,80761,80745,80590,80671,80702,80762,80671,80762,80763,80747,80764,80765,80765,80367,80749,80765,80749,80747,80766,80747,80748,80766,80748,80733,80747,80766,80764,80746,80765,80767,80746,80767,80702,80765,80746,80367,80765,80764,80768,80768,80702,80767,80768,80767,80765,80755,80769,80770,80755,80770,80771,80771,80660,80756,80771,80756,80755,80769,80755,80754,80769,80754,80753,80752,80772,80773,80752,80773,80753,80772,80752,80750,80774,80750,80751,80774,80751,80706,80750,80774,80772,80775,80753,80773,80775,80773,80772,80753,80775,80769,80776,80660,80771,80777,80771,80770,80777,80770,80769,80771,80777,80776,80660,80776,80778,80660,80778,80390,80757,80779,80780,80780,80706,80758,80780,80758,80757,80545,80708,80781,80781,80512,80760,80781,80760,80545,80782,80699,80761,80782,80761,80683,80699,80782,80651,80768,80763,80762,80768,80762,80702,80763,80768,80764,80783,80764,80766,80766,80733,80784,80766,80784,80783,80764,80783,80785,80764,80785,80763,80779,80786,80787,80787,80706,80780,80787,80780,80779,80708,80548,80788,80788,80512,80781,80788,80781,80708,80683,80789,80790,80790,80651,80782,80790,80782,80683,80789,80763,80785,80785,80783,80791,80785,80791,80789,80792,80783,80784,80784,80733,80793,80784,80793,80792,80783,80792,80794,80794,80789,80791,80794,80791,80783,80786,80744,80795,80795,80706,80787,80795,80787,80786,80792,80651,80790,80790,80789,80794,80790,80794,80792,80651,80792,80793,80651,80793,80733,80769,80744,80796,80769,80796,80797,80776,80797,80798,80798,80390,80778,80798,80778,80776,80797,80776,80777,80797,80777,80769,80744,80769,80775,80744,80775,80772,80795,80772,80774,80795,80774,80706,80772,80795,80744,80551,80651,80733,80798,80799,80800,80798,80800,80390,80799,80798,80797,80801,80797,80796,80801,80796,80744,80797,80801,80799,80802,80390,80800,80802,80800,80799,80390,80802,80388,80548,80551,80733,80802,80803,80804,80802,80804,80388,80803,80802,80799,80805,80799,80801,80805,80801,80744,80799,80805,80803,80806,80388,80804,80806,80804,80803,80388,80806,80733,80548,80733,80807,80807,80512,80788,80807,80788,80548,80806,80512,80807,80806,80807,80733,80512,80806,80803,80759,80803,80805,80759,80805,80744,80803,80759,80512,80545,80680,80665,80543,80542,80648,80648,80541,80540,80534,80533,80532,80532,80531,80697,80697,80719,80647,80647,80530,80529,80527,80526,80646,80646,80679,80525,80522,80521,80520,80519,80518,80517,80517,80516,80515,80513,80512,80511,80508,80507,80645,80645,80644,80506,80505,80504,80503,80500,80499,80664,80664,80498,80497,80497,80496,80495,80494,80493,80492,80492,80491,80490,80490,80489,80488,80483,80482,80481,80480,80479,80478,80477,80476,80707,80707,80475,80474,80470,80469,80468,80467,80466,80696,80696,80744,80786,80786,80779,80757,80757,80729,80643,80464,80463,80462,80461,80460,80459,80456,80455,80454,80454,80453,80452,80452,80451,80450,80449,80448,80447,80443,80442,80441,80440,80439,80678,80678,80438,80437,80437,80436,80706,80706,80695,80677,80677,80435,80808,80809,80810,80811,80812,80813,80814,80815,80816,80817,80818,80819,80820,80821,80822,80823,80824,80825,80826,80827,80828,80829,80830,80831,80832,80833,80834,80835,80835,80836,80837,80837,80838,80839,80839,80840,80841,80842,80843,80844,80845,80846,80847,80847,80848,80849,80849,80850,80851,80852,80853,80854,80855,80856,80857,80858,80859,80860,80860,80861,80862,80863,80864,80865,80866,80546,80545,80545,80665,80544,80543,80648,80540,80534,80532,80697,80697,80647,80529,80527,80646,80525,80522,80520,80519,80519,80517,80515,80514,80513,80511,80508,80645,80506,80506,80505,80503,80500,80664,80497,80497,80495,80494,80494,80492,80490,80490,80488,80487,80480,80478,80477,80477,80707,80474,80470,80468,80467,80467,80696,80786,80786,80757,80643,80465,80464,80462,80456,80454,80452,80452,80450,80449,80441,80440,80678,80437,80706,80677,80808,80809,80811,80814,80815,80817,80818,80820,80821,80821,80823,80824,80824,80826,80827,80827,80829,80867,80867,80830,80832,80835,80837,80839,80839,80841,80868,80842,80844,80869,80845,80847,80849,80849,80851,80870,80871,80852,80854,80872,80855,80857,80873,80858,80860,80860,80862,80863,80863,80865,80874,80874,80866,80545,80543,80540,80539,80535,80534,80697,80527,80525,80524,80523,80522,80519,80519,80515,80514,80514,80511,80510,80508,80506,80503,80494,80490,80487,80480,80477,80474,80470,80467,80786,80786,80643,80465,80465,80462,80461,80457,80456,80452,80441,80678,80437,80437,80677,80808,80808,80811,80812,80814,80817,80818,80824,80827,80867,80867,80832,80833,80833,80835,80839,80869,80845,80849,80849,80870,80875,80876,80871,80854,80877,80872,80857,80878,80873,80860,80860,80863,80874,80874,80545,80544,80535,80697,80529,80527,80524,80523,80523,80519,80514,80514,80510,80509,80508,80503,80502,80481,80480,80474,80471,80470,80786,80786,80465,80461,80457,80452,80449,80441,80437,80808,80808,80812,80814,80814,80818,80821,80824,80867,80833,80833,80839,80868,80869,80849,80875,80879,80876,80854,80880,80877,80857,80881,80878,80860,80874,80544,80543,80536,80535,80529,80523,80514,80509,80508,80502,80501,80483,80481,80474,80471,80786,80461,80458,80457,80449,80443,80441,80808,80808,80814,80821,80824,80833,80882,80824,80882,80821,80833,80868,80883,80842,80869,80875,80884,80880,80857,80857,80881,80860,80874,80543,80539,80537,80536,80529,80527,80523,80509,80483,80474,80473,80472,80471,80461,80459,80458,80449,80444,80443,80808,80842,80875,80885,80886,80884,80857,80860,80874,80539,80528,80527,80509,80484,80483,80473,80473,80472,80461,80459,80449,80447,80444,80808,80821,80842,80885,80887,80854,80886,80857,80860,80539,80538,80528,80509,80508,80473,80461,80888,80473,80888,80484,80445,80444,80821,80842,80887,80889,80854,80857,80860,80860,80538,80537,80529,80528,80508,80461,80459,80890,80890,80484,80888,80890,80888,80461,80445,80821,80882,80445,80882,80833,80891,80842,80889,80854,80860,80892,80854,80892,80879,80860,80537,80529,80529,80508,80501,80459,80447,80893,80893,80484,80890,80893,80890,80459,80446,80445,80833,80891,80889,80894,80529,80501,80895,80529,80895,80860,80447,80446,80833,80891,80894,80896,80501,80500,80897,80897,80860,80895,80897,80895,80501,80447,80833,80883,80891,80896,80898,80500,80879,80892,80892,80860,80897,80892,80897,80500,80447,80883,80899,80898,80900,80901,80898,80901,80891,80879,80500,80497,80899,80484,80893,80899,80893,80447,80900,80902,80903,80903,80891,80901,80903,80901,80900,80904,80879,80497,80485,80484,80899,80905,80891,80903,80905,80903,80902,80891,80905,80899,80906,80904,80497,80485,80899,80907,80485,80907,80486,80902,80908,80909,80909,80899,80905,80909,80905,80902,80910,80906,80497,80909,80486,80907,80909,80907,80899,80486,80909,80908,80911,80910,80497,80487,80486,80908,80912,80911,80497,80494,80487,80908,80908,80912,80497,80497,80494,80908,80913,80914,80915,80915,80916,80917,80918,80919,80920,80920,80921,80922,80922,80923,80924,80924,80925,80926,80926,80927,80928,80928,80929,80930,80930,80931,80932,80932,80933,80934,80935,80936,80937,80937,80938,80939,80940,80941,80942,80943,80944,80945,80945,80946,80947,80947,80948,80949,80949,80950,80951,80952,80953,80954,80954,80955,80956,80956,80957,80958,80959,80960,80961,80962,80963,80964,80965,80966,80967,80967,80968,80969,80970,80971,80972,80972,80973,80974,80975,80976,80977,80978,80979,80980,80980,80981,80982,80983,80984,80985,80986,80987,80988,80988,80989,80990,80990,80991,80992,80993,80994,80995,80995,80996,80997,80998,80999,81000,81001,81002,81003,81004,81005,81006,81007,81008,81009,81010,81011,81012,81012,81013,81014,81015,81016,81017,81018,81019,81020,81020,81021,81022,81022,81023,81024,81025,81026,81027,81027,81028,81029,81030,81031,81032,81032,81033,81034,81035,81036,81037,81037,81038,81039,81040,81041,81042,81042,81043,81044,81045,81046,81047,81048,81049,81050,81050,81051,81052,81052,81053,81054,81054,81055,81056,81056,81057,81058,81059,81060,81061,81061,81062,81063,81064,81065,81066,81067,81068,81069,81069,81070,81071,81072,81073,81074,81075,81076,81077,81077,81078,81079,81080,81081,81082,81082,81083,81084,81084,81085,81086,81087,81088,81089,81090,81091,81092,81093,81094,81095,81096,81097,81098,81098,81099,81100,81101,81102,81103,81104,81105,81106,81107,81108,81109,81110,81111,81112,81113,81114,81115,81116,81117,81118,81119,81120,81121,81122,81123,81124,81125,81126,81127,81128,81129,81130,81130,81131,81132,81132,81133,81134,81134,81135,81136,81136,81137,81138,81139,81140,81141,81142,81143,81144,81145,81146,81147,81147,81148,81149,81150,81151,81152,81153,81154,81155,81156,81157,81158,81158,81159,81160,81161,81162,81163,81163,81164,81165,81166,81167,81168,81169,81170,81171,81171,81172,81173,81173,80913,80915,80918,80920,80922,80922,80924,80926,80928,80930,80932,80932,80934,81174,80935,80937,80939,80940,80942,80943,80943,80945,80947,80947,80949,80951,81175,80952,80954,80956,80958,81176,80962,80964,81177,81177,80965,80967,80970,80972,80974,80975,80977,81178,80978,80980,80982,80982,80983,80985,80986,80988,80990,81179,80993,80995,80995,80997,80998,80998,81000,81180,81181,81001,81003,81004,81006,81007,81007,81009,81010,81010,81012,81014,81015,81017,81182,81020,81022,81024,81183,81025,81027,81027,81029,81030,81030,81032,81034,81184,81035,81037,81037,81039,81040,81040,81042,81044,81048,81050,81052,81054,81056,81058,81061,81063,81064,81064,81066,81067,81067,81069,81071,81072,81074,81075,81075,81077,81079,81185,81080,81082,81082,81084,81086,81087,81089,81186,81090,81092,81187,81093,81095,81096,81096,81098,81100,81100,81101,81103,81104,81106,81188,81189,81107,81109,81110,81112,81190,81113,81115,81191,81116,81118,81192,81122,81124,81125,81125,81127,81193,81128,81130,81132,81132,81134,81136,81136,81138,81194,81195,81142,81144,81145,81147,81149,81150,81152,81196,81156,81158,81160,81161,81163,81165,81169,81171,81173,81173,80915,80917,80918,80922,80926,80932,81174,81197,80935,80939,81198,81198,80940,80943,80943,80947,80951,81175,80954,80956,80962,81177,80967,80969,80970,80974,81178,80978,80982,80982,80985,81199,81200,80986,80990,81179,80995,80998,80998,81180,81181,81181,81003,81201,81004,81007,81010,81010,81014,81202,81015,81182,81018,81020,81024,81203,81183,81027,81030,81030,81034,81184,81184,81037,81040,81040,81044,81204,81048,81052,81054,81054,81058,81059,81064,81067,81071,81071,81072,81075,81075,81079,81205,81185,81082,81086,81093,81096,81100,81100,81103,81206,81189,81109,81207,81208,81113,81191,81191,81116,81192,81122,81125,81193,81209,81128,81132,81132,81136,81194,81195,81144,81145,81145,81149,81210,81210,81150,81196,81156,81160,81211,81161,81165,81212,81168,81169,81173,81173,80917,80918,80918,80926,80928,81198,80943,80951,81175,80956,81176,80962,80967,80969,80969,80974,81213,80975,81178,80982,81200,80990,80992,80992,81179,80998,81201,81004,81010,81010,81202,81015,81015,81018,81020,81020,81203,81214,81214,81183,81030,81184,81040,81204,81048,81054,81059,81061,81064,81071,81071,81075,81205,81205,81185,81086,81215,81093,81100,81100,81206,81104,81189,81207,81216,81208,81191,81192,81122,81193,81217,81209,81132,81194,81195,81145,81210,81210,81196,81153,81155,81156,81211,81161,81212,81218,81166,81168,81173,81173,80918,80928,80935,81198,80951,81219,81175,81176,80962,80969,81213,81213,80975,80982,80998,81181,81220,80998,81220,80992,81201,81010,81015,81015,81020,81214,81214,81030,81184,81184,81204,81045,81048,81059,81061,81061,81071,81205,81205,81086,81221,81187,81215,81100,81100,81104,81188,81208,81192,81119,81222,81122,81217,81209,81194,81139,81141,81195,81210,81210,81153,81155,81155,81211,81223,81166,81173,80928,81224,80935,80951,80961,80962,81213,80982,81199,81225,80982,81225,81213,81226,80992,81220,81226,81220,81181,80992,81226,81200,81201,81015,81227,81201,81227,81181,81015,81214,81184,81061,81205,81228,81061,81228,81048,81187,81100,81188,81222,81217,81229,81230,81209,81139,81141,81210,81155,81218,81166,80928,81224,80951,81231,80959,80961,81213,81199,81200,81232,81232,81213,81225,81232,81225,81199,81233,81181,81227,81233,81227,81015,81181,81233,81234,81226,81234,81235,81226,81235,81200,81234,81226,81181,81184,81045,81236,81184,81236,81015,81221,81048,81228,81221,81228,81205,81090,81187,81188,81237,81222,81229,81230,81139,81141,81141,81155,81223,81161,81218,80928,81224,81231,81219,81238,81213,81232,81238,81232,81200,81213,81238,80959,81234,81045,81239,81239,81200,81235,81239,81235,81234,81045,81234,81233,81233,81015,81236,81233,81236,81045,81048,81221,81240,81241,81090,81188,81237,81229,81242,81242,81230,81141,81141,81223,81161,81161,80928,80932,81224,81219,81176,81243,80959,81238,81243,81238,81200,80959,81243,81176,81239,81047,81244,81239,81244,81200,81047,81239,81045,81048,81240,81245,81241,81188,81246,81237,81242,81141,81161,80932,81247,81161,81247,81141,81197,81224,81176,81248,81200,81244,81244,81047,81249,81244,81249,81248,81200,81248,81250,81250,81176,81243,81250,81243,81200,81048,81245,81087,81241,81246,81251,81252,81141,81247,81252,81247,80932,81141,81252,81237,81253,81248,81254,81253,81254,81048,81248,81253,81255,81250,81255,81256,81250,81256,81176,81255,81250,81248,81249,81048,81254,81249,81254,81248,81048,81249,81047,81048,81087,81186,81241,81251,81189,81257,81237,81252,81257,81252,80932,81237,81257,81121,81048,81186,81258,81259,81121,81257,81259,81257,80932,81121,81259,81119,81048,81258,81241,81259,81197,81260,81259,81260,81119,81197,81259,80932,81241,81189,81261,81241,81261,81048,81176,81119,81260,81176,81260,81197,81189,81216,81262,81262,81048,81261,81262,81261,81189,81119,81176,81263,81119,81263,81208,81256,81216,81264,81256,81264,81176,81216,81256,81255,81262,81255,81253,81262,81253,81048,81255,81262,81216,81265,81208,81263,81265,81263,81176,81208,81265,81190,81264,81110,81266,81264,81266,81176,81110,81264,81216,81266,81190,81265,81266,81265,81176,81190,81266,81110,81267,80067,80066,80064,80063,80062,80062,80061,80131,80131,80142,80160,80160,80141,80115,80059,80058,80057,80054,80053,80114,80114,80130,80052,80051,80050,80049,80046,80045,80044,80044,80043,81268,81268,81269,81270,81271,81272,81273,81274,81275,81276,81276,81277,81278,81279,81280,81281,81282,81283,81284,81285,81286,81287,81287,81288,81289,81290,81291,81292,81293,81294,81295,81296,81297,81298,81299,81300,81301,81302,81303,81304,81305,81306,81307,81308,81309,81310,81311,81312,81313,81314,81315,81316,81316,81317,81318,81318,81319,81320,81320,81321,81322,81323,81324,81325,81326,81327,81328,81329,81330,81331,81331,81332,81333,81334,81335,81336,81336,81337,79109,79108,79107,79164,79164,79106,79105,79103,79102,79146,79146,79145,79101,79100,79099,79098,79097,79096,79172,79172,79180,79095,79092,79091,79144,79144,79171,79090,79087,79086,79085,79082,79081,79163,79079,79078,79143,79143,79142,79077,79076,79075,81338,81338,81339,81340,81341,81342,81343,81344,81345,81346,81346,81347,81348,81349,81350,81351,81351,81352,81353,81354,81355,81356,81357,81358,81359,81359,81360,81361,81361,81362,81363,81363,81364,81365,81366,81367,81368,81368,81369,81370,81371,81372,81373,81374,81375,81376,81377,81378,81379,81380,81381,81382,81382,81383,81384,81384,81385,81386,81387,81388,81389,81390,81391,81009,81008,81007,81006,81005,81004,81201,81002,81001,81181,81181,81180,81000,80999,80998,80997,80994,80993,81179,81179,80992,80991,80991,80990,80989,80987,80986,81200,81200,81199,80985,80984,80983,80982,80979,80978,81178,80976,80975,81213,80971,80970,80969,80966,80965,81177,80963,80962,80961,80960,80959,81176,80957,80956,80955,80953,80952,81175,81175,81219,81231,80948,80947,80946,80944,80943,80942,80941,80940,81198,81198,80939,80938,81392,81393,81394,81395,81396,81397,81397,81398,81399,81400,81401,81402,81402,81403,81404,81404,81405,81406,81406,81407,81408,81408,81409,81410,81411,81412,81413,81413,81414,81415,81416,81417,81418,81419,81420,81421,81421,81422,81423,81423,81424,81425,81426,81427,81428,81429,81430,81431,81431,81432,81433,81434,81435,81436,81436,81437,81438,81439,81440,81441,81441,81442,81443,81444,81445,81446,81446,81447,81448,81448,81449,81450,81451,81452,81453,81454,81455,81456,81457,81458,81459,81459,81460,81461,81461,81462,81463,81464,81465,81466,81467,81468,81469,81470,81471,81472,81472,81473,81474,81475,81476,81477,81478,81479,81480,81480,81481,81482,81483,81484,81485,81486,81487,81488,81489,81490,81491,81491,81492,81493,81493,81494,81495,81496,81497,81498,81498,81499,81500,81501,81502,81503,81503,81504,81505,81506,81507,81508,81509,81510,81511,81512,81513,81514,81514,81515,81516,81517,81518,81519,81520,81521,81522,81523,81524,81525,81525,81526,81527,81527,81528,81529,81529,81530,81531,81532,81533,81534,81534,81535,81536,81536,81537,81538,81538,81539,81540,81540,81541,81542,81542,81543,81544,81545,81546,81547,81548,81549,81550,81550,81551,81552,81553,81554,81555,81556,81557,81558,81558,81559,81560,81561,81562,81563,81563,81564,81565,81565,81566,81567,81568,81569,81570,81571,81572,81573,81573,81574,81575,81575,81576,81577,81577,81578,81579,81580,81581,81582,81582,81583,81584,81585,81586,81587,81587,81588,81589,81590,81591,81592,81593,81594,81595,81596,81597,81598,81599,81600,81601,81601,81602,81603,81603,81604,81605,81606,81607,81608,81608,81609,81610,81610,81611,81612,81613,81614,81615,81615,81616,81617,81617,81618,81619,81619,81620,81621,81622,81623,81624,81625,81626,81627,81627,81267,80066,80062,80131,80160,80160,80115,80060,80054,80114,80052,80051,80049,80048,80046,80044,81268,81271,81273,81628,81274,81276,81278,81629,81279,81281,81630,81285,81287,81287,81289,81631,81290,81292,81293,81293,81295,81632,81296,81298,81299,81304,81305,81307,81307,81308,81310,81311,81313,81633,81314,81316,81318,81318,81320,81322,81323,81325,81634,81326,81328,81635,81329,81331,81333,81334,81336,79109,79109,79108,79164,79164,79105,79104,79103,79146,79101,79100,79098,79097,79097,79172,79095,79092,79144,79090,79087,79085,79084,79083,79082,79163,79079,79143,79077,79077,79076,81338,81338,81340,81636,81637,81344,81346,81346,81348,81638,81351,81353,81639,81640,81354,81356,81357,81359,81361,81361,81363,81365,81368,81370,81371,81371,81373,81641,81374,81376,81642,81377,81379,81643,81643,81380,81382,81382,81384,81386,81387,81389,81644,81390,81009,81008,81006,81005,81201,81002,81181,81000,80999,80997,80996,80994,81179,80991,80987,81200,80985,80980,80979,81178,80976,81213,80974,80971,80969,80968,80966,81177,80964,80964,80963,80961,80961,80960,81176,80957,80955,80954,80953,81175,81231,80948,80946,80945,80941,81198,80938,81645,81392,81394,81395,81397,81399,81400,81402,81404,81404,81406,81408,81411,81413,81415,81419,81421,81423,81434,81436,81438,81439,81441,81443,81444,81446,81448,81451,81453,81454,81454,81456,81646,81457,81459,81461,81463,81464,81466,81470,81472,81474,81475,81477,81647,81648,81478,81480,81480,81482,81649,81483,81485,81650,81486,81488,81489,81489,81491,81493,81496,81498,81500,81501,81503,81505,81508,81509,81511,81651,81512,81514,81514,81516,81652,81652,81517,81519,81519,81520,81522,81523,81525,81527,81527,81529,81531,81532,81534,81536,81536,81538,81540,81540,81542,81544,81547,81548,81550,81550,81552,81653,81556,81558,81560,81563,81565,81567,81654,81571,81573,81573,81575,81577,81580,81582,81584,81585,81587,81589,81590,81592,81655,81593,81595,81656,81599,81601,81603,81603,81605,81606,81606,81608,81610,81610,81612,81657,81613,81615,81617,81617,81619,81621,81622,81624,81625,81625,81627,80066,80064,80062,80160,80055,80054,80052,80046,81268,81270,81628,81274,81278,81630,81287,81631,81290,81293,81632,81296,81299,81301,81304,81307,81310,81311,81633,81314,81314,81318,81322,81322,81323,81634,81634,81326,81635,81658,81329,81333,81659,81334,79109,79109,79164,79104,79103,79101,79100,79100,79097,79095,79092,79090,79089,79083,79163,79080,79079,79077,81338,81637,81346,81638,81351,81639,81640,81640,81356,81660,81357,81361,81365,81641,81374,81642,81661,81377,81643,81643,81382,81386,81386,81387,81644,81006,81201,81003,81002,81000,80999,80994,80991,80989,80988,80987,80985,80980,81178,80977,80977,80976,80974,80964,80961,81176,80953,81231,80951,80942,80941,80938,81645,81394,81662,81662,81395,81399,81400,81404,81408,81411,81415,81416,81663,81419,81423,81434,81438,81664,81664,81439,81443,81444,81448,81450,81450,81451,81454,81457,81461,81463,81463,81466,81665,81470,81474,81666,81667,81475,81647,81648,81480,81649,81650,81486,81489,81489,81493,81495,81668,81496,81500,81669,81501,81505,81508,81511,81670,81651,81514,81652,81523,81527,81531,81531,81532,81536,81536,81540,81544,81547,81550,81653,81671,81556,81560,81561,81563,81567,81654,81573,81577,81579,81580,81584,81584,81585,81589,81655,81593,81656,81599,81603,81606,81606,81610,81657,81613,81617,81621,81622,81625,80066,80064,80160,80060,80055,80052,80051,80047,80046,81270,81271,81628,81278,81672,81630,81631,81673,81290,81632,81304,81310,81674,81311,81314,81322,81322,81634,81635,81658,81333,81675,81676,81659,79109,79104,79103,79100,79100,79095,79094,79092,79089,79088,79080,79079,81338,81343,81637,81638,81351,81640,81660,81660,81357,81365,81661,81643,81386,81386,81644,81390,81006,81003,81002,80995,80994,80989,80989,80988,80985,80980,80977,80974,80964,81176,80958,80954,80953,80951,80944,80942,80938,81645,81662,81399,81677,81400,81408,81411,81416,81418,81663,81423,81425,81433,81434,81664,81664,81443,81444,81444,81450,81454,81646,81457,81463,81678,81470,81666,81647,81648,81649,81650,81489,81495,81668,81500,81669,81669,81505,81679,81680,81651,81652,81523,81531,81536,81536,81544,81681,81545,81547,81653,81682,81671,81560,81683,81561,81567,81684,81654,81577,81577,81579,81584,81584,81589,81685,81655,81656,81686,81599,81606,81657,81613,81621,81687,81622,80066,80065,80065,80064,80060,80055,80051,80048,80047,81270,81271,81271,81278,81629,81672,81631,81688,81689,81673,81632,81311,81322,81635,81658,81675,81676,81676,79109,79104,79104,79100,79094,79093,79092,79088,79080,81338,81636,81341,81343,81638,81349,81351,81660,81660,81365,81366,81642,81661,81386,81386,81390,81008,81008,81006,81002,80995,80989,80985,80980,80974,80973,80966,80964,80958,80954,80951,80950,80944,80938,81645,81645,81399,81690,81691,81677,81408,81411,81418,81663,81663,81425,81426,81433,81664,81444,81444,81454,81646,81646,81463,81665,81678,81666,81692,81647,81649,81693,81647,81693,81667,81483,81650,81495,81668,81669,81679,81670,81680,81652,81694,81523,81536,81536,81681,81695,81545,81653,81553,81682,81560,81683,81683,81567,81568,81696,81684,81577,81577,81584,81685,81657,81613,81697,81657,81697,81599,81687,81622,80065,80065,80060,80059,80055,80048,80047,80047,81271,81629,81689,81632,81296,81311,81635,81698,81658,81676,79104,79104,79094,79093,79093,79088,79087,79083,79080,81636,81341,81638,81349,81660,81366,81699,81660,81699,81349,81642,81386,81700,81642,81700,81641,81002,80999,81701,81002,81701,81008,80995,80985,81702,80995,81702,80996,80966,80958,80957,80957,80954,80950,80944,81645,81690,81690,81691,81408,81663,81426,81703,81663,81703,81411,81444,81646,81704,81444,81704,81433,81646,81665,81705,81678,81692,81706,81649,81707,81708,81708,81667,81693,81708,81693,81649,81709,81483,81495,81668,81679,81506,81670,81652,81519,81694,81536,81695,81545,81553,81555,81682,81683,81568,81570,81696,81577,81577,81685,81710,81687,80065,80059,80047,81629,81711,80047,81711,80055,81688,81689,81296,81311,81698,81658,79104,79093,81712,79104,81712,81658,79084,79083,81636,81713,81349,81699,81713,81699,81366,81349,81713,81341,81714,81641,81700,81714,81700,81386,81641,81714,81371,80999,80996,81715,81715,81008,81701,81715,81701,80999,80985,80984,81716,81716,80996,81702,81716,81702,80985,80966,80957,80950,80945,80944,81690,81690,81408,81410,81426,81428,81717,81717,81411,81703,81717,81703,81426,81718,81433,81704,81718,81704,81646,81433,81718,81431,81678,81706,81719,81707,81709,81720,81720,81667,81708,81720,81708,81707,81709,81495,81668,81508,81670,81519,81694,81695,81721,81545,81555,81682,81682,81568,81570,81570,81577,81710,81687,80059,81722,81687,81722,81613,81629,81281,81723,81723,80055,81711,81723,81711,81629,81688,81296,81301,81724,81658,81712,81724,81712,79093,81658,81724,81311,79084,81636,81341,81366,81368,81725,81725,81341,81713,81725,81713,81366,81726,81371,81714,81726,81714,81386,81371,81726,81368,80984,80982,81727,81727,80996,81716,81727,81716,80984,80967,80966,80950,80945,81690,81410,81728,81431,81718,81728,81718,81646,81431,81728,81429,81678,81719,81729,81709,81668,81730,81730,81667,81720,81730,81720,81709,81508,81519,81522,81694,81721,81731,81682,81570,81732,81682,81732,81545,81570,81710,81590,80059,80057,81733,81733,81613,81722,81733,81722,80059,81281,81282,81734,81734,80055,81723,81734,81723,81281,81672,81688,81301,81735,81311,81724,81735,81724,79093,81311,81735,81674,81736,81341,81725,81725,81368,81737,81725,81737,81736,81341,81736,81738,81341,81738,79084,81386,81008,81739,81739,81368,81726,81739,81726,81386,80982,80981,81740,81740,80996,81727,81740,81727,80982,80968,80967,80950,80948,80945,81410,81646,81705,81741,81741,81429,81728,81741,81728,81646,81668,81506,81742,81742,81667,81730,81742,81730,81668,81508,81522,81694,81570,81590,81655,80057,80056,81743,81743,81613,81733,81743,81733,80057,81282,81284,81744,81744,80055,81734,81744,81734,81282,81284,81672,81301,81745,81674,81735,81745,81735,79093,81674,81745,81304,81738,81746,81747,81738,81747,79084,81746,81738,81736,81748,81736,81737,81748,81737,81368,81736,81748,81746,81749,79084,81747,81749,81747,81746,79084,81749,79087,81750,81008,81715,81715,80996,81751,81715,81751,81750,81739,81750,81752,81739,81752,81368,81750,81739,81008,80968,80950,80949,80949,80948,81410,81753,81429,81741,81753,81741,81705,81429,81753,81754,81755,81667,81742,81755,81742,81506,81667,81755,81756,81694,81731,81757,81694,81757,81508,81655,81545,81732,81655,81732,81570,80056,80055,81758,81758,81613,81743,81758,81743,80056,81301,81302,81759,81301,81759,81284,81760,81304,81745,81745,79093,81761,81745,81761,81760,81304,81760,81762,81304,81762,81302,81752,81763,81764,81752,81764,81368,81752,81750,81765,81752,81765,81763,81766,81750,81751,81751,80996,81767,81751,81767,81766,81765,81766,81768,81765,81768,81763,81766,81765,81750,81769,81746,81770,81770,81763,81771,81770,81771,81769,81749,81769,81772,81749,81772,79087,81769,81749,81746,81770,81368,81764,81770,81764,81763,81770,81746,81748,81770,81748,81368,80968,80949,81410,81705,81773,81774,81774,81754,81753,81774,81753,81705,81506,81508,81775,81775,81756,81755,81775,81755,81506,81731,81545,81655,81776,80055,81744,81744,81284,81777,81744,81777,81776,80055,81776,81778,81778,81613,81758,81778,81758,80055,81779,81302,81762,81779,81762,81760,81780,81760,81761,81780,81761,79093,81760,81780,81779,81302,81779,81781,81781,81284,81759,81781,81759,81302,81782,81769,81783,81782,81783,81784,81769,81782,81785,81772,81785,81786,81772,81786,79087,81785,81772,81769,81771,81784,81783,81771,81783,81769,81784,81771,81763,81768,81787,81788,81768,81788,81763,81787,81768,81766,81789,81766,81767,81789,81767,80996,81766,81789,81787,81790,81763,81788,81790,81788,81787,81763,81790,81784,81786,81791,81792,81786,81792,79087,81791,81786,81785,81793,81785,81782,81793,81782,81784,81785,81793,81791,81794,79087,81792,81794,81792,81791,79087,81794,79093,80971,80968,81410,81773,81467,81795,81795,81754,81774,81795,81774,81773,81796,81508,81757,81796,81757,81731,81508,81796,81797,81775,81797,81798,81775,81798,81756,81797,81775,81508,81731,81655,81686,81799,81284,81781,81781,81779,81800,81781,81800,81799,81801,81779,81780,81780,79093,81802,81780,81802,81801,81779,81801,81803,81803,81799,81800,81803,81800,81779,81284,81799,81804,81804,81805,81806,81804,81806,81284,81776,81805,81807,81807,81613,81778,81807,81778,81776,81805,81776,81777,81777,81284,81806,81777,81806,81805,81808,80996,81740,81808,81740,80981,80996,81808,81809,81810,81809,81811,81811,81812,81813,81811,81813,81810,81809,81810,81814,81809,81814,80996,81784,81812,81815,81815,81816,81817,81815,81817,81784,81791,81816,81818,81818,79093,81794,81818,81794,81791,81816,81791,81793,81793,81784,81817,81793,81817,81816,81812,81784,81790,81812,81790,81787,81810,81787,81789,81789,80996,81814,81789,81814,81810,81787,81810,81813,81787,81813,81812,80972,80971,81410,81467,81469,81819,81819,81754,81795,81819,81795,81467,81731,81686,81820,81820,81821,81822,81820,81822,81731,81797,81821,81823,81823,81756,81798,81823,81798,81797,81821,81797,81796,81796,81731,81822,81796,81822,81821,81824,81825,81826,81824,81826,81827,81825,81824,81828,81825,81799,81829,81829,81827,81826,81829,81826,81825,81830,81827,81831,81831,81812,81832,81831,81832,81830,81824,81830,81833,81824,81833,81828,81830,81824,81827,81834,81805,81835,81835,81828,81836,81835,81836,81834,81807,81834,81837,81807,81837,81613,81834,81807,81805,81804,81825,81838,81804,81838,81805,81825,81804,81799,81825,81828,81835,81835,81805,81838,81835,81838,81825,81839,81801,81840,81840,81816,81841,81840,81841,81839,81803,81839,81842,81803,81842,81799,81839,81803,81801,81802,81818,81843,81802,81843,81801,81818,81802,79093,81818,81816,81840,81840,81801,81843,81840,81843,81818,81844,81815,81845,81844,81845,81827,81815,81844,81816,81815,81812,81831,81831,81827,81845,81831,81845,81815,81839,81827,81829,81829,81799,81842,81829,81842,81839,81844,81839,81841,81844,81841,81816,81839,81844,81827,81846,81847,81848,81848,81809,81849,81848,81849,81846,81850,81846,81851,81850,81851,81852,81846,81850,81847,81853,81811,81854,81853,81854,81847,81811,81853,81812,81811,81809,81848,81848,81847,81854,81848,81854,81811,81855,81808,81856,81855,81856,81857,81808,81855,81809,81808,80981,81858,81858,81857,81856,81858,81856,81808,81846,81857,81859,81859,81852,81851,81859,81851,81846,81855,81846,81849,81855,81849,81809,81846,81855,81857,81860,81861,81862,81860,81862,81863,81861,81860,81828,81861,81852,81864,81864,81863,81862,81864,81862,81861,81834,81863,81865,81865,81613,81837,81865,81837,81834,81860,81834,81836,81860,81836,81828,81834,81860,81863,81830,81847,81866,81866,81828,81833,81866,81833,81830,81853,81830,81832,81853,81832,81812,81830,81853,81847,81850,81861,81867,81850,81867,81847,81861,81850,81852,81861,81828,81866,81866,81847,81867,81866,81867,81861,80973,80972,81410,81868,81754,81819,81868,81819,81469,81754,81868,81428,81869,81821,81870,81869,81870,81871,81821,81869,81872,81823,81872,81873,81823,81873,81756,81872,81823,81821,81820,81871,81870,81820,81870,81821,81871,81820,81686,80981,80980,81874,81874,81875,81876,81874,81876,80981,81877,81875,81878,81878,81879,81880,81878,81880,81877,81875,81877,81881,81881,80981,81876,81881,81876,81875,81852,81879,81882,81882,81883,81884,81882,81884,81852,81863,81883,81885,81885,81613,81865,81885,81865,81863,81883,81863,81864,81864,81852,81884,81864,81884,81883,81879,81852,81859,81859,81857,81886,81859,81886,81879,81877,81857,81858,81858,80981,81881,81858,81881,81877,81857,81877,81880,81880,81879,81886,81880,81886,81857,80973,81410,81887,81469,81888,81889,81889,81428,81868,81889,81868,81469,81890,81872,81891,81890,81891,81596,81872,81890,81892,81873,81892,81893,81873,81893,81756,81892,81873,81872,81869,81596,81891,81869,81891,81872,81596,81869,81871,80980,80973,81894,81894,81895,81896,81894,81896,80980,81897,81895,81898,81898,81899,81900,81898,81900,81897,81895,81897,81901,81901,80980,81896,81901,81896,81895,81879,81899,81902,81902,81903,81904,81902,81904,81879,81883,81903,81905,81905,81613,81885,81905,81885,81883,81903,81883,81882,81882,81879,81904,81882,81904,81903,81899,81879,81878,81878,81875,81906,81878,81906,81899,81897,81875,81874,81874,80980,81901,81874,81901,81897,81875,81897,81900,81900,81899,81906,81900,81906,81875,80973,81887,81411,81888,81678,81907,81907,81428,81889,81907,81889,81888,81908,81892,81909,81908,81909,81598,81892,81908,81910,81893,81910,81911,81893,81911,81756,81910,81893,81892,81890,81598,81909,81890,81909,81892,81598,81890,81596,80973,81411,81717,80973,81717,81428,81912,81910,81913,81912,81913,81599,81910,81912,81914,81911,81914,81915,81911,81915,81756,81914,81911,81910,81908,81599,81913,81908,81913,81910,81599,81908,81598,81916,81428,81907,81907,81678,81917,81907,81917,81916,81428,81916,81918,81428,81918,80973,81919,81914,81920,81919,81920,81613,81914,81919,81921,81915,81921,81922,81915,81922,81756,81921,81915,81914,81912,81613,81920,81912,81920,81914,81912,81599,81697,81912,81697,81613,81899,81678,81923,81923,81924,81925,81923,81925,81899,81903,81924,81926,81926,81613,81905,81926,81905,81903,81924,81903,81902,81902,81899,81925,81902,81925,81924,81678,81899,81898,81898,81895,81927,81898,81927,81678,81916,81895,81894,81894,80973,81918,81894,81918,81916,81895,81916,81917,81917,81678,81927,81917,81927,81895,81922,81928,81929,81922,81929,81756,81928,81922,81921,81930,81921,81919,81930,81919,81613,81921,81930,81928,81931,81756,81929,81931,81929,81928,81756,81931,81729,81931,81924,81932,81931,81932,81729,81924,81931,81928,81926,81928,81930,81926,81930,81613,81928,81926,81924,81923,81729,81932,81923,81932,81924,81729,81923,81678,81933,81934,81935,81936,81937,81938,81939,81940,81941,81942,81943,81944,81945,81946,81947,81947,81948,81949,81949,81950,81951,81952,81953,81954,81955,81956,81957,81958,81959,81960,81960,81961,81962,81963,81964,81965,81966,81967,81968,81969,81970,81971,81971,81972,81973,81974,81975,81976,81976,81977,81978,81979,81980,81981,81982,81983,81984,81984,81985,81986,81987,81988,81989,81990,81991,81992,81992,81993,81994,81995,81996,81997,81998,81999,82000,82000,82001,82002,82002,82003,82004,82004,82005,82006,82006,82007,82008,82009,82010,82011,82012,82013,82014,82014,82015,82016,82017,82018,82019,82020,82021,82022,82022,82023,82024,82025,82026,82027,82028,82029,82030,82030,82031,82032,82033,82034,82035,82036,82037,82038,82039,82040,82041,82042,82043,82044,82045,82046,82047,82048,82049,82050,82051,82052,82053,82053,82054,82055,82056,82057,82058,82059,82060,82061,82062,82063,82064,82064,82065,82066,82066,82067,82068,82069,82070,82071,82071,82072,82073,82074,82075,82076,82076,82077,82078,82078,82079,82080,82080,82081,82082,82083,82084,82085,82086,82087,82088,82088,82089,82090,82090,82091,82092,82093,82094,82095,82095,82096,82097,82097,82098,82099,82100,82101,82102,82103,82104,82105,82105,82106,82107,82107,82108,82109,82110,82111,82112,82112,82113,81933,81936,81938,82114,82115,81939,81941,81942,81944,82116,81945,81947,81949,81949,81951,81952,81952,81954,81955,81955,81957,82117,82117,81958,81960,81963,81965,82118,81966,81968,81969,81969,81971,81973,81979,81981,81982,81982,81984,81986,81987,81989,82119,81992,81994,81995,81995,81997,82120,82121,81998,82000,82004,82006,82008,82009,82011,82012,82012,82014,82016,82017,82019,82020,82020,82022,82024,82025,82027,82122,82028,82030,82032,82036,82038,82123,82039,82041,82042,82042,82044,82045,82047,82048,82050,82051,82053,82055,82056,82058,82124,82125,82059,82061,82126,82062,82064,82064,82066,82068,82069,82071,82073,82127,82074,82076,82076,82078,82080,82082,82083,82085,82086,82088,82090,82093,82095,82097,82100,82102,82128,82129,82103,82105,82105,82107,82109,82110,82112,81933,82130,81936,82114,82115,81941,82131,82132,81945,81949,81949,81952,81955,82117,81960,81962,82118,81966,81969,81969,81973,81974,81978,81979,81982,81982,81986,81987,81995,82120,82133,81995,82133,81992,82121,82000,82002,82002,82004,82008,82009,82012,82016,82017,82020,82024,82025,82122,82134,82134,82028,82032,82135,82036,82123,82136,82039,82042,82042,82045,82047,82047,82050,82137,82137,82051,82055,82124,82125,82061,82138,82126,82064,82064,82068,82069,82139,82127,82076,82076,82080,82082,82086,82090,82092,82140,82093,82097,82141,82100,82128,82128,82129,82105,82105,82109,82110,82110,81933,81935,82130,82114,82142,82142,82115,82131,82132,81949,81955,82117,81962,82143,82117,82143,81955,81963,82118,81969,81969,81974,81976,81976,81978,81982,81982,81987,82119,82144,81992,82133,82144,82133,82120,81992,82144,81990,82145,82121,82002,82002,82008,82009,82009,82016,82146,82146,82017,82024,82024,82025,82134,82134,82032,82033,82135,82123,82147,82136,82042,82047,82047,82137,82055,82124,82061,82148,82149,82138,82064,82073,82139,82076,82082,82085,82150,82082,82150,82076,82151,82140,82097,82141,82128,82105,82110,81935,82152,82110,82152,82105,82142,82131,81942,82153,82132,81955,81963,81969,81976,81976,81982,82119,82145,82002,82009,82146,82024,82154,82146,82154,82009,82024,82134,82033,82147,82136,82047,82047,82055,82155,82056,82124,82148,82156,82149,82064,82157,82076,82150,82157,82150,82085,82076,82157,82073,82151,82097,82099,82158,82141,82105,81935,82159,82160,82160,82105,82152,82160,82152,81935,82142,81942,82116,82153,81955,82161,82153,82161,82162,82163,81963,81976,81976,82119,81990,82145,82009,82164,82145,82164,82165,82024,82033,82166,82166,82009,82154,82166,82154,82024,82147,82047,82155,82155,82056,82148,82156,82064,82167,82156,82167,82168,82085,82086,82169,82169,82073,82157,82169,82157,82085,82170,82151,82099,82158,82105,82160,82158,82160,82159,82142,82116,82162,82171,81955,82143,82143,81962,82172,82143,82172,82171,81955,82171,82173,82173,82162,82161,82173,82161,81955,81962,82163,81976,82174,81990,82144,82144,82120,82175,82144,82175,82174,81990,82174,82176,81990,82176,81976,82177,82009,82166,82166,82033,82178,82166,82178,82177,82009,82177,82179,82179,82165,82164,82179,82164,82009,82135,82147,82155,82155,82148,82180,82181,82168,82167,82181,82167,82064,82168,82181,82180,82170,82099,82182,82183,82158,82159,82184,82162,82173,82184,82173,82171,82185,82171,82172,82185,82172,81962,82171,82185,82184,82162,82184,82186,82162,82186,82142,81962,81976,82176,82176,82174,82187,82176,82187,81962,82188,82174,82175,82175,82120,82189,82175,82189,82188,82174,82188,82190,82190,81962,82187,82190,82187,82174,82179,82191,82192,82179,82192,82165,82191,82179,82177,82193,82177,82178,82193,82178,82033,82177,82193,82191,82194,82165,82192,82194,82192,82191,82165,82194,82195,82196,82135,82155,82197,82180,82181,82197,82181,82064,82180,82197,82155,82198,82170,82182,82199,82188,82200,82199,82200,82201,82199,81962,82190,82199,82190,82188,82202,82188,82189,82202,82189,82120,82202,82201,82200,82202,82200,82188,82203,82184,82204,82203,82204,82201,82203,82142,82186,82203,82186,82184,82199,82184,82185,82199,82185,81962,82199,82201,82204,82199,82204,82184,82205,82191,82206,82205,82206,82035,82191,82205,82207,82194,82207,82208,82194,82208,82195,82207,82194,82191,82193,82035,82206,82193,82206,82191,82035,82193,82033,82197,82209,82210,82197,82210,82155,82209,82197,82064,82196,82155,82210,82196,82210,82209,82198,82182,82183,82203,82211,82212,82203,82212,82142,82211,82203,82201,82213,82201,82202,82213,82202,82120,82201,82213,82211,82214,82142,82212,82214,82212,82211,82142,82214,82130,82215,82207,82216,82215,82216,82217,82207,82215,82218,82208,82218,82219,82208,82219,82195,82218,82208,82207,82205,82217,82216,82205,82216,82207,82217,82205,82035,82220,82196,82209,82220,82209,82064,82196,82220,82217,82198,82183,82159,82120,82195,82221,82221,82222,82223,82221,82223,82120,82211,82222,82224,82224,82130,82214,82224,82214,82211,82222,82211,82213,82213,82120,82223,82213,82223,82222,82225,82218,82226,82226,82064,82227,82226,82227,82225,82219,82225,82228,82219,82228,82195,82225,82219,82218,82215,82220,82229,82215,82229,82218,82220,82215,82217,82220,82064,82226,82226,82218,82229,82226,82229,82220,82092,82198,82159,82230,82225,82231,82231,82069,82232,82231,82232,82230,82228,82230,82233,82228,82233,82195,82230,82228,82225,82227,82069,82231,82227,82231,82225,82069,82227,82064,82086,82092,82159,82234,82230,82235,82235,82073,82236,82235,82236,82234,82233,82234,82237,82233,82237,82195,82234,82233,82230,82069,82073,82235,82235,82230,82232,82235,82232,82069,82086,82159,82238,82239,82169,82240,82239,82240,82241,82169,82239,82073,82169,82086,82242,82242,82241,82240,82242,82240,82169,82234,82241,82243,82243,82195,82237,82243,82237,82234,82239,82234,82236,82239,82236,82073,82234,82239,82241,82086,82238,82244,82086,82130,82224,82224,82222,82245,82224,82245,82086,82241,82222,82221,82221,82195,82243,82221,82243,82241,82222,82241,82242,82242,82086,82245,82242,82245,82222,82086,82244,82130,82246,82247,82248,82249,82250,82251,82251,82252,82253,82254,82255,82256,82257,82258,82259,82260,82261,82262,82263,82264,82265,82265,82266,82267,82268,82269,82270,82271,82272,82273,82273,82274,82275,82276,82277,82278,82279,82280,82281,82282,82283,82284,82284,82285,82286,82287,82288,82289,82289,82290,82291,82291,82292,82293,82293,82294,82295,82295,82296,82297,82297,82298,82299,82300,82301,82302,82303,82304,82305,82306,82307,82308,82308,82309,82310,82311,82312,82313,82313,82314,82315,82316,82317,82318,82318,82319,82320,82320,82321,82322,82322,82323,82062,82060,82059,82125,82125,82124,82058,82057,82056,82155,82052,82051,82137,82049,82048,82047,82046,82045,82044,82043,82042,82041,82040,82039,82136,82136,82147,82123,82037,82036,82135,82135,82196,82217,82217,82035,82034,82034,82033,82032,82029,82028,82134,82134,82122,82027,82324,82325,82326,82324,82326,82327,82325,82324,82328,82329,82328,82330,82330,82331,82332,82330,82332,82329,82328,82329,82333,82328,82333,82325,82334,82327,82326,82326,82325,82335,82326,82335,82334,82327,82334,82336,82327,82336,82337,82338,82339,82340,82340,82341,82342,82342,82343,82344,82345,82346,82347,82348,82349,82350,82351,82352,82353,82354,82355,82356,82356,82357,82358,82358,82359,82360,82360,82361,82362,82363,82364,82365,82366,82367,82368,82369,82370,82371,82372,82373,82374,82375,82376,82377,82378,82379,82380,82380,82381,82382,82382,82383,82384,82385,82386,82387,82388,82389,82390,82330,82391,82392,82330,82392,82331,82391,82330,82328,82393,82328,82324,82393,82324,82327,82328,82393,82391,82394,82331,82392,82394,82392,82391,82331,82394,82395,82327,82396,82397,82397,82398,82399,82400,82401,82402,82402,82403,82404,82405,82406,82407,82407,82408,82409,82409,82410,82411,82412,82413,82414,82414,82415,82416,82416,82417,82418,82419,82420,82421,82421,82422,82423,82424,82425,82426,82427,82428,82429,82429,82430,82431,82431,82432,82433,82434,82435,82436,82437,82438,82439,82440,82441,82442,82442,82443,82444,82445,82446,82447,82447,82448,82449,82450,82451,82452,82453,82454,82455,82455,82456,82457,82458,82459,82460,82460,82461,82462,82463,82464,82465,82465,82466,82467,82468,82469,82470,82470,82471,82472,82472,82473,82474,82474,82475,82476,82477,82478,82479,82479,82480,82481,82481,82482,82483,82484,82485,82486,82486,82487,82488,82488,82489,82490,82490,82491,82492,82492,82493,82494,82494,82495,82496,82496,82497,82498,82499,82500,82501,82502,82503,82504,82505,82506,82507,82507,82508,82509,82510,82511,82512,82512,82513,82514,82515,82516,82517,82517,82518,82519,82519,82520,82521,82522,82523,82524,82525,82526,82527,82527,82528,82529,82530,82531,82532,82532,82533,82534,82534,82535,82536,82537,82538,82539,82540,82246,82248,82541,82249,82251,82251,82253,82542,82254,82256,82543,82257,82259,82544,82260,82262,82545,82263,82265,82267,82546,82268,82270,82271,82273,82275,82547,82276,82278,82279,82281,82548,82284,82286,82549,82287,82289,82291,82291,82293,82295,82295,82297,82299,82300,82302,82550,82551,82303,82305,82552,82306,82308,82308,82310,82553,82554,82311,82313,82313,82315,82316,82316,82318,82320,82320,82322,82062,82060,82125,82058,82057,82155,82055,82052,82137,82050,82049,82047,82046,82044,82043,82041,82040,82136,82123,82037,82135,82217,82217,82034,82032,82029,82134,82027,82331,82555,82556,82331,82556,82557,82558,82557,82559,82559,82560,82561,82559,82561,82558,82557,82558,82331,82325,82560,82562,82562,82563,82564,82562,82564,82325,82334,82563,82565,82565,82337,82336,82565,82336,82334,82563,82334,82335,82335,82325,82564,82335,82564,82563,82560,82325,82333,82333,82329,82566,82333,82566,82560,82558,82329,82332,82558,82332,82331,82329,82558,82561,82561,82560,82566,82561,82566,82329,82567,82338,82340,82342,82344,82345,82347,82348,82350,82354,82356,82358,82358,82360,82362,82366,82368,82568,82369,82371,82372,82372,82374,82375,82378,82380,82382,82385,82387,82388,82394,82569,82570,82394,82570,82395,82569,82394,82391,82571,82391,82393,82571,82393,82327,82391,82571,82569,82572,82395,82570,82572,82570,82569,82395,82572,82390,82327,82397,82399,82400,82402,82404,82405,82407,82409,82412,82414,82416,82419,82421,82423,82573,82427,82429,82429,82431,82433,82437,82439,82440,82445,82447,82449,82450,82452,82574,82453,82455,82457,82458,82460,82462,82462,82463,82465,82465,82467,82575,82468,82470,82472,82472,82474,82476,82477,82479,82481,82481,82483,82576,82484,82486,82488,82492,82494,82496,82577,82499,82501,82502,82504,82578,82505,82507,82509,82510,82512,82514,82579,82515,82517,82519,82521,82580,82580,82522,82524,82525,82527,82529,82581,82530,82532,82532,82534,82536,82537,82539,82540,82540,82248,82582,82541,82251,82542,82543,82257,82544,82260,82545,82263,82263,82267,82546,82546,82270,82583,82271,82275,82547,82584,82279,82548,82287,82291,82295,82295,82299,82585,82551,82305,82586,82554,82313,82316,82316,82320,82062,82060,82058,82057,82057,82055,82054,82053,82052,82050,82041,82040,82123,82038,82037,82217,82217,82032,82031,82029,82027,82587,82555,82567,82588,82555,82588,82589,82590,82589,82591,82590,82591,82592,82589,82590,82555,82560,82592,82593,82593,82594,82595,82593,82595,82560,82563,82594,82596,82596,82337,82565,82596,82565,82563,82594,82563,82562,82562,82560,82595,82562,82595,82594,82592,82560,82559,82592,82559,82557,82590,82557,82556,82590,82556,82555,82557,82590,82592,82567,82340,82342,82342,82345,82347,82347,82350,82597,82354,82358,82362,82598,82366,82568,82369,82372,82375,82599,82378,82382,82600,82385,82388,82572,82601,82602,82572,82602,82390,82601,82572,82569,82603,82569,82571,82603,82571,82327,82569,82603,82601,82604,82390,82602,82604,82602,82601,82390,82604,82388,82399,82605,82606,82399,82606,82327,82607,82400,82404,82412,82416,82418,82608,82419,82423,82573,82429,82433,82437,82440,82442,82444,82445,82449,82609,82450,82574,82610,82453,82457,82611,82458,82462,82462,82465,82575,82612,82468,82472,82477,82481,82576,82576,82484,82488,82490,82492,82496,82505,82509,82613,82510,82514,82579,82579,82517,82519,82519,82580,82524,82525,82529,82581,82581,82532,82536,82536,82537,82540,82540,82582,82614,82614,82541,82542,82543,82544,82260,82260,82263,82546,82583,82271,82547,82549,82287,82295,82295,82585,82615,82551,82586,82616,82554,82316,82062,82060,82057,82054,82041,82123,82038,82038,82217,82031,82029,82587,82337,82567,82342,82617,82567,82617,82618,82619,82618,82620,82619,82620,82621,82618,82619,82567,82592,82621,82622,82592,82622,82623,82594,82623,82624,82624,82337,82596,82624,82596,82594,82623,82594,82593,82623,82593,82592,82621,82592,82591,82621,82591,82589,82619,82589,82588,82619,82588,82567,82589,82619,82621,82354,82362,82363,82598,82568,82625,82626,82369,82375,82599,82382,82384,82604,82627,82628,82604,82628,82388,82627,82604,82601,82629,82601,82603,82603,82327,82630,82603,82630,82629,82601,82629,82631,82601,82631,82627,82632,82388,82628,82628,82627,82633,82628,82633,82632,82388,82632,82634,82388,82634,82600,82605,82635,82636,82636,82327,82606,82636,82606,82605,82637,82607,82404,82412,82418,82638,82639,82608,82423,82640,82573,82433,82641,82437,82442,82449,82609,82574,82610,82457,82611,82462,82575,82642,82462,82642,82611,82575,82612,82472,82643,82477,82576,82576,82488,82490,82490,82496,82498,82505,82613,82510,82510,82579,82519,82519,82524,82644,82525,82581,82536,82536,82540,82614,82614,82542,82254,82543,82260,82546,82583,82547,82278,82284,82549,82295,82645,82554,82062,82041,82038,82031,82030,82029,82337,82342,82347,82646,82342,82646,82647,82648,82647,82649,82649,82650,82651,82649,82651,82648,82647,82648,82652,82647,82652,82342,82621,82650,82653,82653,82654,82655,82653,82655,82621,82623,82654,82656,82656,82337,82624,82656,82624,82623,82654,82623,82622,82622,82621,82655,82622,82655,82654,82650,82621,82620,82650,82620,82618,82648,82618,82617,82617,82342,82652,82617,82652,82648,82618,82648,82651,82618,82651,82650,82657,82626,82375,82658,82632,82659,82658,82659,82660,82632,82658,82661,82634,82661,82662,82634,82662,82600,82661,82634,82632,82633,82660,82659,82633,82659,82632,82660,82633,82627,82631,82663,82664,82631,82664,82627,82663,82631,82629,82665,82629,82630,82665,82630,82327,82629,82665,82663,82666,82627,82664,82666,82664,82663,82627,82666,82660,82667,82600,82662,82667,82662,82661,82668,82661,82658,82668,82658,82660,82661,82668,82667,82600,82667,82669,82600,82669,82384,82637,82404,82405,82670,82412,82638,82639,82423,82424,82426,82640,82433,82436,82641,82442,82449,82574,82610,82671,82611,82642,82671,82642,82575,82611,82671,82610,82472,82476,82672,82472,82672,82575,82643,82576,82673,82643,82673,82476,82576,82490,82498,82674,82505,82510,82519,82644,82675,82519,82675,82510,82644,82525,82536,82614,82254,82676,82614,82676,82536,82254,82543,82546,82546,82583,82278,82284,82295,82615,82677,82645,82062,82044,82041,82031,82031,82030,82337,82347,82597,82678,82347,82678,82679,82680,82679,82681,82681,82682,82683,82681,82683,82680,82679,82680,82684,82679,82684,82347,82650,82682,82685,82685,82686,82687,82685,82687,82650,82654,82686,82688,82688,82337,82656,82688,82656,82654,82686,82654,82653,82653,82650,82687,82653,82687,82686,82682,82650,82649,82682,82649,82647,82680,82647,82646,82646,82347,82684,82646,82684,82680,82647,82680,82683,82647,82683,82682,82689,82657,82375,82667,82690,82691,82691,82384,82669,82691,82669,82667,82690,82667,82668,82690,82668,82660,82692,82660,82666,82692,82666,82663,82693,82663,82665,82693,82665,82327,82663,82693,82692,82660,82692,82694,82660,82694,82690,82695,82384,82691,82691,82690,82696,82691,82696,82695,82384,82695,82697,82384,82697,82599,82637,82405,82409,82670,82638,82698,82639,82424,82426,82426,82433,82699,82434,82436,82442,82700,82610,82671,82671,82575,82701,82671,82701,82700,82610,82700,82702,82610,82702,82449,82703,82476,82673,82703,82673,82576,82476,82703,82704,82672,82704,82705,82672,82705,82575,82704,82672,82476,82576,82498,82706,82674,82510,82675,82675,82644,82707,82675,82707,82674,82708,82536,82676,82708,82676,82254,82536,82708,82644,82546,82278,82709,82282,82284,82615,82677,82062,82126,82044,82031,82337,82689,82375,82377,82710,82695,82711,82710,82711,82712,82695,82710,82713,82697,82713,82714,82697,82714,82599,82713,82697,82695,82696,82712,82711,82696,82711,82695,82712,82696,82690,82694,82715,82716,82694,82716,82690,82715,82694,82692,82717,82692,82693,82717,82693,82327,82692,82717,82715,82718,82690,82716,82718,82716,82715,82690,82718,82712,82714,82719,82720,82714,82720,82599,82719,82714,82713,82721,82713,82710,82721,82710,82712,82713,82721,82719,82722,82599,82720,82722,82720,82719,82599,82722,82723,82724,82637,82409,82670,82698,82725,82639,82426,82699,82726,82449,82702,82726,82702,82700,82727,82700,82701,82727,82701,82575,82700,82727,82726,82449,82726,82728,82449,82728,82444,82729,82704,82730,82729,82730,82706,82704,82729,82731,82705,82731,82732,82705,82732,82575,82731,82705,82704,82703,82706,82730,82703,82730,82704,82706,82703,82576,82733,82674,82707,82733,82707,82644,82674,82733,82734,82254,82546,82735,82735,82644,82708,82735,82708,82254,82736,82282,82615,82677,82126,82138,82046,82044,82337,82737,82689,82377,82738,82719,82739,82738,82739,82740,82719,82738,82741,82722,82741,82742,82722,82742,82723,82741,82722,82719,82721,82740,82739,82721,82739,82719,82740,82721,82712,82718,82743,82744,82718,82744,82712,82743,82718,82715,82745,82715,82717,82745,82717,82327,82715,82745,82743,82746,82712,82744,82746,82744,82743,82712,82746,82740,82742,82747,82748,82742,82748,82723,82747,82742,82741,82749,82741,82738,82749,82738,82740,82741,82749,82747,82750,82723,82748,82750,82748,82747,82723,82750,82751,82724,82409,82411,82411,82670,82725,82752,82639,82699,82728,82753,82754,82728,82754,82444,82753,82728,82726,82755,82726,82727,82755,82727,82575,82726,82755,82753,82756,82444,82754,82756,82754,82753,82444,82756,82442,82757,82731,82758,82757,82758,82759,82731,82757,82760,82732,82760,82761,82732,82761,82575,82760,82732,82731,82729,82759,82758,82729,82758,82731,82759,82729,82706,82762,82734,82733,82762,82733,82644,82734,82762,82763,82546,82709,82764,82546,82764,82765,82735,82765,82766,82735,82766,82644,82765,82735,82546,82548,82736,82615,82767,82677,82138,82049,82046,82337,82768,82737,82377,82769,82747,82770,82769,82770,82771,82747,82769,82772,82750,82772,82773,82750,82773,82751,82772,82750,82747,82749,82771,82770,82749,82770,82747,82771,82749,82740,82746,82774,82775,82746,82775,82740,82774,82746,82743,82776,82743,82745,82776,82745,82327,82743,82776,82774,82777,82740,82775,82777,82775,82774,82740,82777,82771,82773,82778,82779,82773,82779,82751,82778,82773,82772,82780,82772,82769,82780,82769,82771,82772,82780,82778,82781,82751,82779,82781,82779,82778,82751,82781,82782,82783,82724,82411,82411,82725,82784,82752,82699,82434,82756,82785,82786,82756,82786,82442,82785,82756,82753,82787,82753,82755,82787,82755,82575,82753,82787,82785,82788,82442,82786,82788,82786,82785,82442,82788,82434,82789,82760,82790,82789,82790,82791,82760,82789,82792,82761,82792,82793,82761,82793,82575,82792,82761,82760,82757,82791,82790,82757,82790,82760,82791,82757,82759,82794,82763,82762,82794,82762,82644,82763,82794,82578,82709,82795,82796,82796,82797,82798,82796,82798,82709,82765,82797,82799,82799,82644,82766,82799,82766,82765,82797,82765,82764,82764,82709,82798,82764,82798,82797,82548,82615,82800,82767,82138,82149,82050,82049,82337,82768,82377,82801,82802,82771,82803,82802,82803,82635,82771,82802,82804,82778,82804,82805,82805,82782,82781,82805,82781,82778,82804,82778,82780,82804,82780,82771,82803,82774,82806,82803,82806,82635,82803,82771,82777,82803,82777,82774,82636,82774,82776,82636,82776,82327,82636,82635,82806,82636,82806,82774,82783,82411,82784,82784,82752,82434,82791,82577,82807,82807,82808,82809,82807,82809,82791,82792,82808,82810,82810,82575,82793,82810,82793,82792,82808,82792,82789,82789,82791,82809,82789,82809,82808,82811,82578,82794,82811,82794,82644,82578,82811,82502,82795,82812,82813,82813,82814,82815,82813,82815,82795,82797,82814,82816,82816,82644,82799,82816,82799,82797,82814,82797,82796,82796,82795,82815,82796,82815,82814,82548,82800,82300,82767,82149,82156,82053,82050,82337,82768,82801,82817,82818,82804,82819,82819,82820,82821,82819,82821,82818,82805,82818,82822,82805,82822,82782,82818,82805,82804,82802,82820,82819,82802,82819,82804,82820,82802,82635,82820,82783,82784,82788,82823,82824,82788,82824,82434,82823,82788,82785,82825,82785,82787,82787,82575,82826,82787,82826,82825,82785,82825,82827,82785,82827,82823,82828,82434,82824,82828,82824,82823,82434,82828,82784,82577,82501,82829,82829,82830,82831,82829,82831,82577,82808,82830,82832,82832,82575,82810,82832,82810,82808,82830,82808,82807,82807,82577,82831,82807,82831,82830,82833,82502,82811,82833,82811,82644,82502,82833,82834,82548,82300,82835,82548,82835,82584,82553,82767,82156,82053,82337,82688,82053,82688,82686,82836,82686,82685,82836,82685,82682,82686,82836,82053,82837,82682,82681,82837,82681,82679,82838,82679,82678,82838,82678,82597,82679,82838,82837,82682,82837,82839,82839,82053,82836,82839,82836,82682,82840,82841,82842,82840,82842,82784,82841,82840,82843,82820,82784,82842,82820,82842,82841,82818,82843,82844,82844,82782,82822,82844,82822,82818,82841,82818,82821,82841,82821,82820,82818,82841,82843,82501,82845,82846,82846,82847,82848,82846,82848,82501,82830,82847,82849,82849,82575,82832,82849,82832,82830,82847,82830,82829,82829,82501,82848,82829,82848,82847,82850,82833,82851,82850,82851,82814,82833,82850,82834,82833,82644,82816,82816,82814,82851,82816,82851,82833,82852,82814,82813,82813,82812,82853,82813,82853,82852,82850,82852,82854,82850,82854,82834,82852,82850,82814,82300,82550,82855,82855,82584,82835,82855,82835,82300,82553,82156,82168,82054,82053,82839,82839,82837,82856,82839,82856,82054,82857,82837,82838,82838,82597,82858,82838,82858,82857,82837,82857,82859,82859,82054,82856,82859,82856,82837,82844,82860,82861,82844,82861,82782,82860,82844,82843,82862,82843,82840,82862,82840,82784,82843,82862,82860,82863,82782,82861,82863,82861,82860,82782,82863,82817,82845,82864,82865,82865,82866,82867,82865,82867,82845,82847,82866,82868,82868,82575,82849,82868,82849,82847,82866,82847,82846,82846,82845,82867,82846,82867,82866,82854,82869,82870,82854,82870,82834,82869,82854,82852,82871,82852,82853,82871,82853,82812,82852,82871,82869,82872,82834,82870,82872,82870,82869,82834,82872,82864,82550,82551,82873,82873,82584,82855,82873,82855,82550,82308,82553,82168,82060,82054,82859,82859,82857,82874,82859,82874,82060,82875,82857,82858,82858,82597,82876,82858,82876,82875,82857,82875,82877,82877,82060,82874,82877,82874,82857,82863,82823,82878,82863,82878,82817,82823,82863,82860,82828,82860,82862,82828,82862,82784,82860,82828,82823,82878,82825,82879,82878,82879,82817,82878,82823,82827,82878,82827,82825,82575,82817,82879,82879,82825,82826,82879,82826,82575,82812,82584,82880,82880,82881,82882,82880,82882,82812,82869,82881,82883,82883,82864,82872,82883,82872,82869,82881,82869,82871,82871,82812,82882,82871,82882,82881,82551,82616,82884,82884,82584,82873,82884,82873,82551,82552,82308,82168,82877,82885,82886,82877,82886,82060,82885,82877,82875,82887,82875,82876,82887,82876,82597,82875,82887,82885,82888,82060,82886,82888,82886,82885,82060,82888,82061,82768,82817,82575,82889,82584,82884,82889,82884,82616,82584,82889,82890,82881,82890,82891,82891,82864,82883,82891,82883,82881,82890,82881,82880,82890,82880,82584,82552,82168,82180,82888,82892,82893,82888,82893,82061,82892,82888,82885,82894,82885,82887,82894,82887,82597,82885,82894,82892,82895,82061,82893,82895,82893,82892,82061,82895,82148,82625,82768,82575,82616,82552,82896,82896,82897,82898,82896,82898,82616,82890,82897,82899,82899,82864,82891,82899,82891,82890,82897,82890,82889,82889,82616,82898,82889,82898,82897,82552,82180,82148,82597,82351,82900,82900,82901,82902,82900,82902,82597,82892,82901,82903,82903,82148,82895,82903,82895,82892,82901,82892,82894,82894,82597,82902,82894,82902,82901,82625,82575,82904,82625,82904,82598,82552,82148,82905,82552,82905,82906,82907,82906,82908,82907,82908,82909,82906,82907,82552,82897,82909,82910,82897,82910,82911,82899,82911,82912,82899,82912,82864,82911,82899,82897,82909,82897,82896,82896,82552,82907,82896,82907,82909,82351,82353,82913,82913,82914,82915,82913,82915,82351,82901,82914,82916,82916,82148,82903,82916,82903,82901,82914,82901,82900,82900,82351,82915,82900,82915,82914,82917,82598,82904,82917,82904,82575,82598,82917,82918,82911,82353,82919,82919,82864,82912,82919,82912,82911,82920,82911,82910,82920,82910,82909,82911,82920,82353,82914,82909,82908,82914,82908,82906,82916,82906,82905,82916,82905,82148,82906,82916,82914,82909,82914,82913,82913,82353,82920,82913,82920,82909,82921,82918,82917,82921,82917,82575,82918,82921,82922,82919,82354,82923,82919,82923,82864,82354,82919,82353,82868,82922,82921,82868,82921,82575,82922,82868,82866,82924,82866,82865,82924,82865,82864,82866,82924,82922,82354,82363,82925,82925,82864,82923,82925,82923,82354,82926,82922,82924,82924,82864,82927,82924,82927,82926,82363,82365,82928,82928,82864,82925,82928,82925,82363,82365,82926,82927,82927,82864,82928,82927,82928,82365,82929,82930,82931,82931,82932,82933,82933,82934,82935,82935,82936,82937,82937,82929,82931,82931,82933,82935,82935,82937,82931,82938,82939,82940,82940,82941,82942,82943,82944,82945,82946,82947,82948,82948,82949,82950,82950,82951,82952,82953,82954,82955,82955,82956,82957,82957,82958,82959,82960,82961,82962,82963,82964,82965,82965,82966,82967,82968,82969,82970,82971,82972,82973,82974,82975,82976,82976,82977,82978,82979,82980,82981,82982,82983,82984,82985,82986,82987,82988,82989,82990,82990,82991,82992,82992,82993,82994,82995,82996,82997,82998,82999,83000,83000,83001,83002,83003,83004,83005,83006,83007,83008,83008,83009,83010,83011,83012,83013,83014,83015,83016,83017,83018,83019,83019,83020,83021,83021,83022,83023,83024,83025,83026,83027,83028,83029,83029,83030,83031,83031,83032,83033,83034,83035,83036,83037,83038,83039,83039,83040,83041,83042,83043,83044,83045,83046,83047,83048,83049,83050,83050,83051,83052,83052,83053,83054,83054,83055,83056,83056,83057,83058,83059,83060,83061,83061,83062,83063,83063,83064,83065,83066,83067,83068,83068,83069,83070,83071,83072,83073,83073,83074,83075,83076,83077,83078,83079,83080,83081,83081,83082,83083,83083,83084,83085,83085,83086,83087,83088,83089,83090,83091,83092,83093,83093,83094,83095,83096,83097,83098,83099,83100,83101,83101,83102,83103,83104,83105,83106,83107,82938,82940,82940,82942,83108,82943,82945,82946,82946,82948,82950,83109,82953,82955,82955,82957,82959,82960,82962,82963,82963,82965,82967,82970,82971,82973,83110,82974,82976,82976,82978,82979,82979,82981,83111,82982,82984,82985,82985,82987,82988,82990,82992,82994,82994,82995,82997,82998,83000,83002,83003,83005,83006,83006,83008,83010,83112,83011,83013,83113,83014,83016,83017,83019,83021,83026,83027,83029,83029,83031,83033,83034,83036,83114,83115,83037,83039,83039,83041,83042,83042,83044,83045,83045,83047,83116,83116,83048,83050,83050,83052,83054,83054,83056,83058,83059,83061,83063,83063,83065,83117,83066,83068,83070,83071,83073,83075,83075,83076,83078,83079,83081,83083,83083,83085,83087,83088,83090,83091,83093,83095,83118,83096,83098,83099,83099,83101,83103,83107,82940,83108,82946,82950,82952,83109,82955,82959,83119,82960,82963,82963,82967,83120,82968,82970,82973,83110,82976,82979,82979,83111,83121,82988,82990,83122,82988,83122,82985,82994,82997,83123,82994,83123,82990,83124,82998,83002,83002,83003,83006,83006,83010,83125,83126,83112,83013,83127,83113,83016,83017,83021,83023,83024,83026,83029,83029,83033,83128,83129,83034,83114,83115,83039,83042,83042,83045,83116,83116,83050,83054,83054,83058,83130,83063,83117,83131,83063,83131,83059,83132,83066,83070,83070,83071,83075,83075,83078,83133,83079,83083,83087,83088,83091,83093,83093,83118,83134,83096,83099,83103,83135,83107,83108,83136,83109,82959,83119,82963,83120,82968,82973,83137,83138,83110,82979,83139,82985,83122,83139,83122,82990,82985,83139,82982,83123,83140,83141,83123,83141,82990,83140,83123,82997,83124,83002,83006,83006,83125,83142,83143,83126,83013,83144,83017,83023,83145,83024,83029,83029,83128,83129,83115,83042,83116,83116,83054,83130,83146,83059,83131,83146,83131,83117,83059,83146,83147,83148,83132,83070,83070,83075,83133,83149,83079,83087,83088,83093,83134,83134,83096,83103,83150,83135,83108,83136,82959,83119,83119,83120,83151,83152,82968,83137,83137,83138,82979,83153,82990,83141,83153,83141,83140,82990,83153,83154,83139,83154,83155,83139,83155,82982,83154,83139,82990,83006,83142,83156,83006,83156,83124,83157,83143,83013,83144,83023,83158,83145,83029,83129,83114,83115,83116,83116,83130,83159,83117,83160,83161,83161,83147,83146,83161,83146,83117,83162,83148,83070,83070,83133,83149,83149,83087,83163,83088,83134,83103,83106,83150,83108,82952,83136,83119,83119,83151,83152,83137,82979,83164,83137,83164,83152,83155,83165,83166,83155,83166,82982,83165,83155,83154,83167,83154,83153,83167,83153,83140,83154,83167,83165,83168,82982,83166,83168,83166,83165,82982,83168,83169,83142,83170,83171,83171,83124,83156,83171,83156,83142,83172,83157,83013,83144,83158,83145,83145,83129,83114,83116,83159,83173,83116,83173,83114,83174,83162,83070,83149,83163,83175,83149,83175,83070,83088,83103,83176,83104,83106,83108,82952,83119,83177,82952,83177,82946,83178,83152,83164,83164,82979,83179,83164,83179,83178,83152,83178,83180,83152,83180,83119,83168,83181,83182,83168,83182,83169,83181,83168,83165,83183,83165,83167,83183,83167,83140,83165,83183,83181,83184,83169,83182,83184,83182,83181,83169,83184,83185,83170,83186,83187,83187,83124,83171,83187,83171,83170,83188,83172,83013,83145,83114,83189,83145,83189,83144,83159,83190,83191,83191,83114,83173,83191,83173,83159,83192,83070,83175,83192,83175,83163,83070,83192,83174,83088,83176,83193,83104,83108,83194,83195,83119,83180,83195,83180,83178,83196,83178,83179,83196,83179,82979,83178,83196,83195,83119,83195,83197,83197,82946,83177,83197,83177,83119,83184,83198,83199,83184,83199,83185,83198,83184,83181,83200,83181,83183,83200,83183,83140,83181,83200,83198,83201,83185,83199,83201,83199,83198,83185,83201,83121,83186,83202,83203,83203,83124,83187,83203,83187,83186,83204,83188,83013,83205,83144,83189,83205,83189,83114,83144,83205,83016,83190,83206,83207,83207,83114,83191,83207,83191,83190,83208,83174,83192,83208,83192,83163,83174,83208,83160,83088,83193,83104,83104,83194,83209,83197,83210,83211,83197,83211,82946,83210,83197,83195,83212,83195,83196,83212,83196,82979,83195,83212,83210,83213,82946,83211,83213,83211,83210,82946,83213,82943,83214,83198,83215,83214,83215,83216,83198,83214,83217,83201,83217,83218,83201,83218,83121,83217,83201,83198,83200,83216,83215,83200,83215,83198,83216,83200,83140,83202,83219,83220,83220,83124,83203,83220,83203,83202,83221,83204,83013,83222,83016,83205,83222,83205,83114,83016,83222,83127,83206,83223,83224,83224,83114,83207,83224,83207,83206,83225,83160,83208,83208,83163,83226,83208,83226,83225,83160,83225,83227,83227,83147,83161,83227,83161,83160,83104,83209,83228,83104,83228,83088,83213,83229,83230,83213,83230,82943,83229,83213,83210,83231,83210,83212,83231,83212,82979,83210,83231,83229,83232,82943,83230,83232,83230,83229,82943,83232,83233,83234,83217,83235,83234,83235,83124,83217,83234,83236,83218,83236,83237,83218,83237,83121,83236,83218,83217,83214,83124,83235,83214,83235,83217,83124,83214,83216,83219,83238,83239,83239,83124,83220,83239,83220,83219,83221,83013,83240,83221,83240,83241,83242,83127,83222,83242,83222,83114,83127,83242,83013,83223,83243,83244,83244,83114,83224,83244,83224,83223,83245,83225,83246,83245,83246,83247,83225,83245,83248,83227,83248,83249,83227,83249,83147,83248,83227,83225,83226,83247,83246,83226,83246,83225,83247,83226,83163,83209,83250,83251,83251,83088,83228,83251,83228,83209,83232,83252,83253,83232,83253,83233,83252,83232,83229,83254,83229,83231,83254,83231,82979,83229,83254,83252,83255,83233,83253,83255,83253,83252,83233,83255,83256,83257,83258,83259,83257,83259,83238,83257,83260,83261,83257,83261,83258,83239,83258,83262,83239,83262,83124,83239,83238,83259,83239,83259,83258,83260,83263,83264,83260,83264,83236,83263,83121,83237,83237,83236,83264,83237,83264,83263,83258,83236,83234,83234,83124,83262,83234,83262,83258,83236,83258,83261,83236,83261,83260,83265,83241,83240,83265,83240,83013,83241,83265,83266,83244,83267,83268,83244,83268,83114,83244,83243,83269,83244,83269,83267,83242,83267,83270,83242,83270,83013,83242,83114,83268,83242,83268,83267,83247,83088,83271,83271,83272,83273,83271,83273,83247,83248,83272,83274,83274,83147,83249,83274,83249,83248,83272,83248,83245,83245,83247,83273,83245,83273,83272,83250,83256,83275,83275,83088,83251,83275,83251,83250,82979,83121,83276,83276,83277,83278,83276,83278,82979,83252,83277,83279,83279,83256,83255,83279,83255,83252,83277,83252,83254,83254,82979,83278,83254,83278,83277,83238,83280,83281,83281,83282,83283,83281,83283,83238,83260,83282,83284,83284,83121,83263,83284,83263,83260,83282,83260,83257,83257,83238,83283,83257,83283,83282,83285,83266,83265,83285,83265,83013,83266,83285,83286,83243,83287,83288,83288,83289,83290,83288,83290,83243,83267,83289,83291,83291,83013,83270,83291,83270,83267,83289,83267,83269,83269,83243,83290,83269,83290,83289,83275,83292,83293,83275,83293,83088,83292,83275,83256,83292,83294,83295,83295,83088,83293,83295,83293,83292,83272,83294,83296,83296,83147,83274,83296,83274,83272,83295,83272,83271,83295,83271,83088,83272,83295,83294,83297,83284,83298,83297,83298,83299,83284,83297,83121,83284,83282,83300,83300,83299,83298,83300,83298,83284,83301,83282,83281,83281,83280,83302,83281,83302,83301,83300,83301,83303,83300,83303,83299,83301,83300,83282,83304,83277,83305,83305,83299,83306,83305,83306,83304,83279,83304,83307,83279,83307,83256,83304,83279,83277,83297,83305,83308,83297,83308,83121,83305,83297,83299,83305,83277,83276,83276,83121,83308,83276,83308,83305,83309,83286,83285,83309,83285,83013,83286,83309,83310,83287,83311,83312,83312,83313,83314,83312,83314,83287,83289,83313,83315,83315,83013,83291,83315,83291,83289,83313,83289,83288,83288,83287,83314,83288,83314,83313,83296,83316,83317,83296,83317,83147,83316,83296,83294,83318,83294,83292,83318,83292,83256,83294,83318,83316,83319,83147,83317,83319,83317,83316,83147,83319,83311,83320,83321,83322,83320,83322,83299,83321,83320,83323,83324,83323,83325,83324,83325,83326,83323,83324,83321,83327,83299,83322,83327,83322,83321,83299,83327,83328,83329,83304,83330,83329,83330,83328,83304,83329,83331,83307,83331,83332,83307,83332,83256,83331,83307,83304,83306,83328,83330,83306,83330,83304,83328,83306,83299,83325,83301,83333,83325,83333,83326,83301,83325,83323,83303,83323,83320,83303,83320,83299,83323,83303,83301,83302,83326,83333,83302,83333,83301,83326,83302,83280,83334,83310,83309,83334,83309,83013,83310,83334,83335,83336,83311,83319,83319,83316,83337,83319,83337,83336,83338,83316,83318,83318,83256,83339,83318,83339,83338,83316,83338,83340,83340,83336,83337,83340,83337,83316,83311,83336,83341,83311,83341,83342,83313,83342,83343,83343,83013,83315,83343,83315,83313,83342,83313,83312,83342,83312,83311,83344,83345,83346,83344,83346,83328,83345,83344,83347,83348,83347,83349,83348,83349,83350,83347,83348,83345,83351,83328,83346,83351,83346,83345,83328,83351,83352,83353,83331,83354,83353,83354,83352,83331,83353,83355,83332,83355,83356,83332,83356,83256,83355,83332,83331,83329,83352,83354,83329,83354,83331,83352,83329,83328,83349,83321,83357,83349,83357,83350,83321,83349,83347,83327,83347,83344,83327,83344,83328,83347,83327,83321,83324,83350,83357,83324,83357,83321,83350,83324,83326,83358,83335,83334,83358,83334,83013,83335,83358,83359,83352,83360,83361,83361,83336,83362,83361,83362,83352,83360,83363,83364,83364,83336,83361,83364,83361,83360,83342,83363,83365,83365,83013,83343,83365,83343,83342,83364,83342,83341,83364,83341,83336,83342,83364,83363,83338,83355,83366,83366,83336,83340,83366,83340,83338,83356,83338,83339,83356,83339,83256,83338,83356,83355,83366,83353,83367,83366,83367,83336,83353,83366,83355,83367,83352,83362,83367,83362,83336,83352,83367,83353,83368,83363,83369,83368,83369,83345,83363,83368,83370,83365,83370,83371,83365,83371,83013,83370,83365,83363,83360,83351,83372,83360,83372,83363,83351,83360,83352,83372,83345,83369,83372,83369,83363,83345,83372,83351,83373,83370,83374,83374,83350,83375,83374,83375,83373,83371,83373,83376,83371,83376,83013,83373,83371,83370,83368,83348,83377,83368,83377,83370,83348,83368,83345,83348,83350,83374,83374,83370,83377,83374,83377,83348,83378,83359,83358,83378,83358,83013,83359,83378,83379,83373,83380,83381,83373,83381,83382,83376,83382,83383,83376,83383,83013,83382,83376,83373,83380,83373,83375,83380,83375,83350,83384,83379,83378,83384,83378,83013,83379,83384,83385,83382,83386,83387,83387,83013,83383,83387,83383,83382,83386,83382,83381,83386,83381,83380,83388,83385,83384,83388,83384,83013,83385,83388,83389,83387,83389,83388,83387,83388,83013,83389,83387,83386,83083,83082,83390,83391,83392,83393,83394,83395,83396,83397,83398,83399,83400,83401,83402,83402,83403,83404,83404,83405,83406,83406,83407,83408,83408,83409,83410,83411,83412,83413,83414,83415,83416,83416,83417,83418,83419,83420,83421,83422,83423,83424,83424,83425,83426,83426,83427,83428,83428,83429,83430,83431,83432,83433,83433,83434,83435,83435,83436,83437,83438,83439,83440,83441,83442,83443,83443,83444,83445,83445,83446,83447,83448,83449,83450,83450,83451,83452,83452,83453,83454,83455,83456,83457,83458,83459,83460,83460,83461,83462,83463,83464,83465,83466,83467,83468,83468,83469,83470,83470,83471,83472,83473,83474,83475,83475,83476,83477,83478,83479,83480,83480,83481,83482,83483,83484,83485,83485,83486,83487,83487,82939,82938,82938,83107,83135,83135,83150,83106,83105,83104,83193,83193,83176,83103,83100,83099,83098,83097,83096,83134,83134,83118,83095,83094,83093,83092,83092,83091,83090,83089,83088,83247,83247,83163,83087,83084,83083,83390,83488,83391,83393,83394,83396,83489,83490,83397,83399,83400,83402,83404,83404,83406,83408,83408,83410,83491,83492,83411,83413,83413,83414,83416,83416,83418,83419,83419,83421,83493,83422,83424,83426,83426,83428,83430,83431,83433,83435,83435,83437,83438,83438,83440,83494,83494,83441,83443,83443,83445,83447,83448,83450,83452,83455,83457,83458,83458,83460,83462,83463,83465,83466,83466,83468,83470,83473,83475,83477,83495,83478,83480,83480,83482,83496,83497,83483,83485,83485,83487,82938,82938,83135,83106,83106,83105,83193,83193,83103,83102,83097,83134,83095,83095,83094,83092,83090,83089,83247,83085,83084,83390,83488,83393,83394,83394,83489,83498,83490,83399,83499,83500,83400,83404,83404,83408,83491,83492,83413,83416,83416,83419,83493,83422,83426,83430,83501,83431,83435,83435,83438,83494,83494,83443,83447,83448,83452,83454,83454,83455,83458,83502,83463,83466,83466,83470,83472,83472,83473,83477,83495,83480,83496,83497,83485,82938,82938,83106,83193,83193,83102,83101,83098,83097,83095,83092,83090,83247,83086,83085,83390,83488,83394,83498,83500,83404,83491,83492,83416,83493,83422,83430,83501,83501,83435,83494,83494,83447,83503,83448,83454,83458,83502,83466,83472,83472,83477,83504,83504,83495,83496,83505,83497,82938,82938,83193,83101,83092,83247,83087,83087,83086,83390,83488,83498,83490,83506,83500,83491,83507,83492,83493,83422,83501,83494,83494,83503,83448,83508,83502,83472,83509,83505,82938,83095,83092,83087,83087,83390,83510,83488,83490,83499,83506,83491,83511,83512,83507,83493,83493,83422,83494,83494,83448,83458,83462,83508,83472,83509,82938,83101,83098,83095,83087,83087,83510,83513,83514,83506,83511,83512,83493,83494,83462,83472,83504,83496,83509,83101,83098,83087,83513,83514,83511,83515,83515,83512,83494,83458,83462,83504,83496,83101,83516,83496,83516,83504,83100,83098,83513,83515,83494,83517,83515,83517,83514,83518,83504,83516,83518,83516,83101,83504,83518,83458,83100,83513,83488,83519,83514,83517,83519,83517,83494,83514,83519,83520,83521,83458,83518,83518,83101,83522,83518,83522,83521,83458,83521,83523,83458,83523,83494,83100,83488,83499,83521,83520,83519,83519,83494,83523,83519,83523,83521,83520,83521,83522,83522,83101,83524,83522,83524,83520,83100,83499,83525,83100,83525,83101,83526,83520,83524,83524,83101,83527,83524,83527,83526,83499,83526,83527,83527,83101,83525,83527,83525,83499,83528,83529,83530,83530,83531,83532,83532,83528,83530,83533,83534,83535,83535,83536,83537,83537,83538,83539,83539,83540,83541,83541,83542,83543,83544,83545,83546,83533,83535,83537,83537,83539,83541,83541,83543,83544,83544,83546,83533,83533,83537,83541,83541,83544,83533,83547,83548,83549,83549,83550,83551,83552,83553,83554,83555,83556,83557,83557,83558,83559,83560,83561,83562,83563,83564,83565,83566,83567,79651,79651,79650,79840,79818,79817,79839,79839,79816,79815,79813,79812,79852,79852,79838,79811,79810,79809,79851,79851,79837,79808,79807,79806,79805,79804,79803,79836,79799,79798,79835,79835,79858,79867,79867,79862,79797,79794,79793,79834,79834,79850,79792,79789,79788,79833,79833,79857,79787,79786,79785,79784,79782,79781,79832,79832,79856,79849,79849,79831,79780,79779,79778,79848,79776,79775,79830,79830,79829,79774,79773,79772,79866,79866,79855,79771,79768,79767,79766,79765,79764,79919,79919,80090,80089,80088,80087,80086,80085,80084,80083,80081,80080,80117,80117,80126,80116,80076,80075,80132,80132,80074,80073,80068,80067,81267,81626,81625,81624,81623,81622,81687,81614,81613,81657,81609,81608,81607,81607,81606,81605,81604,81603,81602,81602,81601,81600,81600,81599,81598,81597,81596,81871,81871,81686,81656,81594,81593,81655,81591,81590,81710,81710,81685,81589,81586,81585,81584,81583,81582,81581,81581,81580,81579,81572,81571,81654,81654,81684,81696,81696,81570,81569,81569,81568,81567,81564,81563,81562,81562,81561,81683,81683,81560,81559,81557,81556,81671,81671,81682,81555,81554,81553,81653,81549,81548,81547,81546,81545,81731,81731,81721,81695,81695,81681,81544,81537,81536,81535,81533,81532,81531,81530,81529,81528,81524,81523,81694,81694,81522,81521,81521,81520,81519,81518,81517,81652,81513,81512,81651,81651,81680,81670,81670,81511,81510,81510,81509,81508,81507,81506,83568,83569,83570,83571,83572,83573,83574,83574,83575,83576,83577,83578,83579,83580,83581,83582,83582,83583,83584,83585,83586,83587,83588,83589,83590,83591,83592,83593,83594,83595,83596,83596,83597,83598,83599,83600,83601,83601,83602,83603,83603,81933,82113,82111,82110,82109,82105,82104,83604,83604,83605,83606,83607,83608,83609,83610,83611,83612,83612,83613,83614,83614,83615,83616,83617,83618,83619,83619,83620,83621,83622,83623,83624,83625,83626,83547,83547,83549,83551,83627,83555,83557,83557,83559,83560,83562,83563,83565,79651,79840,79821,79818,79839,79815,79814,79813,79852,79810,79851,79808,79807,79805,79804,79804,79836,79802,79799,79835,79867,79867,79797,79796,79794,79834,79792,79789,79833,79787,79782,79832,79849,79779,79848,79777,79776,79830,79774,79774,79773,79866,79769,79768,79766,79766,79765,79919,80089,80088,80086,80085,80083,80082,80081,80117,80116,80076,80132,80073,80069,80068,81267,81627,81626,81624,81624,81623,81687,81615,81614,81657,81609,81607,81605,81604,81602,81600,81600,81598,81597,81597,81871,81656,81594,81655,81592,81592,81591,81710,81710,81589,81588,81581,81579,81578,81572,81654,81696,81564,81562,81683,81683,81559,81558,81557,81671,81555,81555,81554,81653,81549,81547,81546,81546,81731,81695,81538,81537,81535,81533,81531,81530,81530,81528,81527,81525,81524,81694,81521,81519,81518,81518,81652,81516,81513,81651,81670,81510,81508,81507,81507,83568,83569,83569,83571,83572,83574,83576,83628,83628,83577,83579,83580,83582,83584,83629,83585,83587,83588,83590,83630,83593,83594,83596,83596,83598,83631,83599,83601,83603,83603,82113,82112,82112,82111,82109,82106,82105,83604,83607,83609,83632,83610,83612,83614,83614,83616,83633,83634,83617,83619,83625,83547,83551,83627,83557,83560,83562,83565,83566,83566,79651,79821,79818,79815,79814,79814,79852,79811,79810,79808,79807,79807,79804,79802,79799,79867,79796,79794,79792,79791,79789,79787,79786,79783,79782,79849,79780,79779,79777,79776,79774,79866,79769,79766,79919,80089,80086,80085,80082,80081,80116,80077,80076,80073,80070,80069,81267,81267,81627,81624,81624,81687,81621,81616,81615,81657,81610,81609,81605,81604,81600,81597,81597,81656,81595,81595,81594,81592,81592,81710,81588,81581,81578,81577,81572,81696,81569,81564,81683,81558,81558,81557,81555,81555,81653,81552,81549,81546,81695,81534,81533,81530,81525,81694,81521,81521,81518,81516,81513,81670,81510,81510,81507,83569,83572,83574,83628,83628,83579,83635,83580,83584,83636,83637,83629,83587,83587,83588,83630,83591,83593,83596,83596,83631,83599,83599,83603,82112,82106,83604,83606,83606,83607,83632,83632,83610,83614,83638,83634,83619,83639,83625,83551,83627,83560,83562,83566,79821,79820,79819,79818,79814,79810,79807,79802,79799,79796,79795,79794,79791,79790,79789,79786,79784,79783,79849,79780,79780,79777,79776,79776,79866,79771,79769,79919,80089,80089,80085,80082,80082,80116,80079,80078,80077,80073,80071,80070,81267,81267,81624,81621,81616,81657,81612,81604,81597,81595,81595,81592,81588,81573,81572,81569,81558,81555,81552,81549,81695,81544,81526,81525,81521,81513,81510,83569,83572,83628,83635,83635,83580,83636,83640,83637,83587,83630,83591,83596,83596,83599,82112,82106,83606,83632,83632,83614,83633,83638,83619,83621,83641,83639,83551,83627,83562,83566,83566,79820,79819,79810,79802,79801,79799,79795,79794,79784,79783,79780,79776,79771,79770,79769,80089,80082,80082,80079,80078,80078,80073,80072,80071,81267,81621,81617,81616,81612,81605,81604,81595,81595,81588,81587,81573,81569,81567,81564,81558,81552,81550,81549,81544,81527,81526,81521,81514,81513,83569,83572,83635,83636,83642,83640,83587,83630,83596,83643,83630,83643,83587,82112,82109,83644,82112,83644,83596,82107,82106,83632,83632,83633,83645,83645,83638,83621,83641,83551,83646,83566,79819,83647,83566,83647,83627,79810,79801,79800,79800,79799,79794,79784,79780,79776,79776,79770,79769,79769,80082,80078,80072,80071,81621,81618,81617,81612,81610,81605,81595,81595,81587,81586,81573,81567,81566,81564,81552,81551,81550,81544,81543,81527,81521,81516,81514,83569,83572,83648,83642,83587,83649,83596,83644,83644,82109,83650,83644,83650,83649,83643,83649,83651,83643,83651,83587,83649,83643,83596,83632,83645,83652,83632,83652,82107,83645,83621,83653,83624,83641,83646,83647,79814,83654,83647,83654,83627,79814,83647,79819,79800,79794,79790,79784,79776,79769,79769,80078,80072,80072,81621,81620,81619,81618,81612,81595,81586,83655,81595,83655,81610,81565,81564,81551,81551,81550,81543,81530,81527,81516,81515,81514,83572,83656,83648,83587,82109,82108,83657,83657,83658,83659,83657,83659,82109,83649,83658,83660,83660,83587,83651,83660,83651,83649,83658,83649,83650,83650,82109,83659,83650,83659,83658,83661,82107,83652,83661,83652,83645,82107,83661,82108,83645,83653,83622,83624,83646,83662,83663,83627,83654,83663,83654,79814,83627,83663,83554,79810,79800,79790,79789,79784,79769,80072,81620,83664,80072,83664,79769,81620,81619,81612,83665,81610,83655,83665,83655,81586,81610,83665,81611,81551,81543,83666,81551,83666,81565,81530,81516,81515,81515,83572,83636,83667,83656,83587,83661,83668,83669,83661,83669,82108,83668,83661,83645,83668,83670,83671,83671,82108,83669,83671,83669,83668,83658,83670,83672,83672,83587,83660,83672,83660,83658,83670,83658,83657,83657,82108,83671,83657,83671,83670,83622,83624,83662,83673,83554,83663,83673,83663,79814,83554,83673,83552,79810,79790,79789,83674,79769,83664,83664,81620,83675,83664,83675,83674,79769,83674,83676,79769,83676,79789,81620,81612,81611,81586,81584,83677,83677,81611,83665,83677,83665,81586,81543,81542,83678,83678,81565,83666,83678,83666,81543,81530,81515,83636,83667,83587,83672,83672,83670,83679,83672,83679,83667,83680,83670,83668,83668,83645,83681,83668,83681,83680,83670,83680,83682,83682,83667,83679,83682,83679,83670,83622,83662,83683,83673,79811,83684,83673,83684,83552,79811,83673,79814,83676,83685,83686,83676,83686,79789,83685,83676,83674,83687,83674,83675,83687,83675,81620,83674,83687,83685,83688,79789,83686,83688,83686,83685,79789,83688,79810,83689,81611,83677,83689,83677,81584,81611,83689,81620,81542,81541,83690,83690,81565,83678,83690,83678,81542,81530,83636,83691,81530,83691,81534,83692,83667,83682,83682,83680,83693,83682,83693,83692,83694,83680,83681,83681,83645,83695,83681,83695,83694,83680,83694,83696,83696,83692,83693,83696,83693,83680,83622,83683,83552,79811,79810,83697,83697,83552,83684,83697,83684,79811,81584,81583,83698,83698,81620,83689,83698,83689,81584,81541,81540,83699,83699,81565,83690,83699,83690,81541,83700,81534,83691,83700,83691,83636,81534,83700,81535,83696,83701,83702,83696,83702,83692,83701,83696,83694,83703,83694,83695,83703,83695,83645,83694,83703,83701,83704,83692,83702,83704,83702,83701,83692,83704,83636,83685,81583,83705,83705,79810,83688,83705,83688,83685,83698,83685,83687,83698,83687,81620,83685,83698,81583,81540,81539,83706,83706,81565,83699,83706,83699,81540,83707,81535,83700,83707,83700,83636,81535,83707,81538,83645,83622,83708,83708,83709,83710,83708,83710,83645,83701,83709,83711,83711,83636,83704,83711,83704,83701,83710,83701,83703,83710,83703,83645,83701,83710,83709,83697,83705,83712,83697,83712,83552,83705,83697,79810,83705,81583,83713,83713,83552,83712,83713,83712,83705,81539,81538,83714,83714,81565,83706,83714,83706,81539,83711,81538,83707,83711,83707,83636,83711,83709,83715,83711,83715,81538,83716,83709,83708,83708,83622,83717,83708,83717,83716,83715,83716,83718,83715,83718,81538,83716,83715,83709,83713,81581,83719,83713,83719,83552,81581,83713,81583,83716,81565,83714,83714,81538,83718,83714,83718,83716,83720,83716,83717,83720,83717,83622,83716,83720,81565,81577,83552,83719,81577,83719,81581,81566,81565,83720,83720,83622,83721,83720,83721,81566,83552,81577,81576,83722,81566,83721,83722,83721,83622,81566,83722,81573,83552,81576,81575,83723,81573,83722,83723,83722,83622,81573,83723,81574,83552,81575,83724,83552,83724,83622,83724,81574,83723,83724,83723,83622,81574,83724,81575,83725,83726,83727,83727,83728,83729,83730,83731,83732,83733,83734,83735,83735,83736,83737,83738,83739,83740,83741,83742,83743,83743,83744,83745,83746,83747,83748,83749,83750,83751,83752,83753,83754,83755,83756,83757,83757,83758,83759,83760,83761,83762,83763,83764,83765,83766,83767,83768,83769,83770,83771,83771,83772,83773,83773,83774,83775,83776,83777,83778,83778,83779,83780,83780,83781,83782,83782,83783,83784,83785,83786,83787,83788,83789,83790,83790,83791,83792,83792,83793,83794,83795,83796,83797,83798,83799,83800,83801,83802,83803,83803,83804,83805,83806,83807,83808,83809,83810,83811,83812,83813,83814,83814,83815,83816,83817,83818,83819,83819,83820,83725,83725,83727,83729,83821,83730,83732,83735,83737,83822,83738,83740,83823,83741,83743,83745,83824,83746,83748,83748,83749,83751,83751,83752,83754,83755,83757,83759,83760,83762,83763,83766,83768,83825,83769,83771,83773,83776,83778,83780,83788,83790,83792,83795,83797,83798,83798,83800,83826,83803,83805,83827,83828,83806,83808,83811,83812,83814,83814,83816,83829,83817,83819,83725,83725,83729,83821,83733,83735,83822,83822,83738,83823,83830,83741,83745,83824,83748,83751,83751,83754,83831,83831,83755,83759,83760,83763,83765,83832,83766,83825,83833,83769,83773,83775,83776,83780,83787,83788,83792,83834,83795,83798,83798,83826,83801,83801,83803,83827,83828,83808,83835,83811,83814,83829,83829,83817,83725,83733,83822,83823,83830,83745,83824,83824,83751,83831,83831,83759,83760,83833,83773,83775,83775,83780,83782,83787,83792,83794,83834,83798,83801,83801,83827,83836,83836,83828,83835,83809,83811,83829,83829,83725,83821,83837,83733,83823,83838,83830,83824,83824,83831,83760,83825,83833,83775,83775,83782,83784,83785,83787,83794,83794,83834,83801,83801,83836,83835,83809,83829,83821,83837,83823,83838,83838,83824,83760,83832,83825,83775,83839,83785,83794,83794,83801,83835,83835,83809,83821,83838,83760,83840,83838,83840,83837,83765,83832,83775,83839,83794,83835,83835,83821,83732,83840,83765,83841,83840,83841,83837,83765,83840,83760,83765,83775,83784,83784,83839,83835,83835,83732,83837,83784,83837,83841,83784,83841,83765,83784,83835,83837,83842,83843,83844,83844,83845,83846,83846,83847,83848,83848,83849,83850,83850,83842,83844,83844,83846,83848,83848,83850,83844,83727,83726,83851,83852,83853,83854,83855,83856,83857,83858,83859,83860,83861,83862,83863,83864,83865,83866,83867,83868,83869,83870,83871,83872,83872,83873,83874,83875,83876,83877,83877,83878,83879,83879,83880,83881,83881,83882,83883,83883,83884,83885,83886,83887,83888,83889,83890,83891,83891,83892,83893,83894,83895,83896,83896,83897,83898,83899,83900,83901,83901,83902,83903,83904,83905,83906,83907,83908,83909,83909,83910,83911,83911,83912,83913,83913,83914,83915,83916,83917,83918,83918,83919,83920,83920,83921,83922,83923,83924,83925,83926,83927,83928,83928,83929,83930,83930,83931,83932,83933,83934,83935,83935,83936,83937,83937,83938,83939,83940,83941,83942,83942,83943,83944,83945,83946,83947,83948,83949,83950,83951,83952,83953,83953,83954,83955,83955,83956,83957,83957,83958,83959,83959,83960,83961,83961,83962,83963,83964,83965,83966,83966,83967,83968,83969,83970,83971,83972,83973,83974,83974,83975,83976,83976,83977,83978,83979,83980,83981,83981,83982,83983,83984,83985,83986,83987,83988,83989,83989,83990,83991,83991,83992,83993,83993,83994,83995,83996,83997,83998,83999,84000,84001,84001,84002,84003,84003,84004,84005,84006,84007,84008,84008,84009,84010,84011,84012,84013,84013,84014,84015,84016,84017,84018,84018,84019,84020,84021,84022,84023,84024,84025,84026,84027,84028,84029,84029,84030,84031,84032,84033,84034,84034,84035,84036,84037,84038,84039,84039,84040,84041,84042,84043,84044,84044,84045,84046,84046,84047,84048,84049,84050,84051,84051,84052,84053,84054,84055,84056,84057,84058,84059,84060,84061,84062,84063,84064,83772,83770,83769,83833,83833,83825,83768,83767,83766,83832,83832,83765,83764,83764,83763,83762,83761,83760,83759,83756,83755,83831,83753,83752,83751,83750,83749,83748,83747,83746,83824,83824,83745,83744,83742,83741,83830,83830,83838,83823,83739,83738,83822,83736,83735,83734,83734,83733,83837,83837,83732,83731,83731,83730,83821,83821,83729,83728,83727,83851,84065,84066,83852,83854,83855,83857,84067,83858,83860,84068,83861,83863,84069,83867,83869,84070,83870,83872,83874,83875,83877,83879,83881,83883,83885,83885,83886,83888,83889,83891,83893,83893,83894,83896,83896,83898,84071,83899,83901,83903,83904,83906,83907,83907,83909,83911,83911,83913,83915,83916,83918,83920,83920,83922,84072,83926,83928,83930,83930,83932,84073,83933,83935,83937,83937,83939,84074,84075,83940,83942,83942,83944,83945,83948,83950,84076,84077,83951,83953,83953,83955,83957,83957,83959,83961,83964,83966,83968,84078,83969,83971,83971,83972,83974,84079,83979,83981,83981,83983,84080,83986,83987,83989,83991,83993,83995,83996,83998,83999,84001,84003,84005,84006,84008,84010,84081,84011,84013,84016,84018,84020,84021,84023,84082,84083,84024,84026,84027,84029,84031,84031,84032,84034,84034,84036,84084,84037,84039,84041,84042,84044,84046,84049,84051,84053,84056,84057,84059,84085,84060,84062,84063,83772,83771,83771,83770,83833,83833,83768,83767,83767,83832,83764,83764,83762,83761,83761,83759,83758,83756,83831,83754,83750,83748,83747,83747,83824,83744,83742,83830,83823,83740,83739,83822,83736,83734,83837,83731,83821,83728,84065,84066,83854,83855,84067,84086,83861,84069,83864,83866,83867,84070,84087,83870,83874,84088,83875,83879,83879,83881,83885,83885,83888,84089,83889,83893,83896,84071,83899,83903,83907,83911,83915,84090,83916,83920,83920,84072,84091,83926,83930,84073,84092,83933,83937,84075,83942,83945,83948,84076,84077,84077,83953,83957,83957,83961,83963,83964,83968,84093,84078,83971,83974,84079,83981,84080,83984,83986,83989,83989,83991,83995,83999,84001,84005,84094,84006,84010,84081,84013,84015,84016,84020,84021,84083,84026,84095,84095,84027,84031,84031,84034,84084,84041,84042,84046,84048,84049,84053,84054,84056,84059,84063,83771,83833,83767,83764,83761,83742,83823,83740,83740,83822,83737,83736,83837,83731,84065,83854,84096,83855,84086,83858,83861,83864,83866,83866,84070,84097,84098,84087,83874,84088,83879,83885,83885,84089,84099,84100,83889,83896,83896,84071,83903,83904,83907,83915,84101,84090,83920,83920,84091,84102,83925,83926,84073,84103,84092,83937,84104,84075,83945,84077,83957,83963,84105,84078,83974,84106,84079,84080,83984,83989,83995,83999,84005,84107,84094,84010,84081,84081,84015,84108,84109,84016,84021,84083,84095,84031,84031,84084,84110,84041,84046,84048,84048,84053,84111,84054,84059,84085,84062,84063,83833,83767,83761,83758,83743,83742,83740,83736,83731,83728,83861,83866,84097,84098,83874,84112,84112,84088,83885,84100,83896,83903,84113,83904,83915,84101,83920,84102,83923,83925,84073,84103,83937,84074,84114,84104,83945,84077,83963,84115,84105,83974,83976,84116,84106,84080,84117,83984,83995,83996,83999,84107,84094,84081,84108,84109,84021,84082,84118,84083,84031,84031,84110,84119,84041,84048,84111,84054,84085,84062,84062,83833,83767,83743,83740,83737,83737,83736,83728,84097,84098,84112,84112,83885,84099,84120,84100,83903,84121,84113,83915,83915,84101,84102,84122,83923,84073,84123,84103,84074,84114,83945,83947,84077,84115,84124,84105,83976,83978,84116,84080,84125,84126,84117,83995,84107,84094,84108,84127,84109,84082,84118,84031,84119,84041,84111,84054,84054,84062,83767,83743,83737,83728,84097,84112,84099,84099,84120,83903,84128,84121,83915,83915,84102,84122,84122,84073,84123,84123,84074,84129,84130,84114,83947,84077,84124,83964,84116,84125,84131,84132,84126,83995,83996,84107,84108,84108,84127,84082,84118,84119,84037,84041,84054,83767,83744,83743,83728,83861,84097,84099,84099,83903,84133,84128,83915,84122,84122,84123,84129,84130,83947,83948,84077,83964,84093,84132,83995,83996,83996,84108,84082,84118,84037,84041,83767,83758,84134,83767,84134,84041,83744,83728,83727,84068,83861,84099,84099,84133,84135,84136,84128,84122,84122,84129,84130,84130,83948,84077,84077,84093,84105,83996,84082,84137,83996,84137,84132,84118,84041,84134,84118,84134,83758,83744,83727,84065,83858,84068,84099,84099,84135,84138,84122,84130,84139,84122,84139,84136,84130,84077,84105,84140,84132,84137,84140,84137,84082,84132,84140,84131,84118,83758,84141,84118,84141,84142,83744,84065,84096,83858,84099,84138,84143,84136,84139,84143,84139,84130,84136,84143,84144,84130,84105,83978,84145,84131,84140,84145,84140,84082,84131,84145,84116,84146,84142,84141,84146,84141,83758,84142,84146,84147,83747,83744,84096,83855,83858,84138,84130,83978,84148,84148,84144,84143,84148,84143,84130,84145,84147,84149,84145,84149,84116,84147,84145,84082,83758,83757,84150,84150,84147,84146,84150,84146,83758,83750,83747,84096,84096,83855,84138,83978,84116,84151,84151,84144,84148,84151,84148,83978,84149,83757,84152,84149,84152,84116,84149,84147,84150,84149,84150,83757,84096,84138,84153,84096,84153,83750,84152,83756,84154,84152,84154,84116,83756,84152,83757,84153,84144,84155,84153,84155,83750,84144,84153,84138,83754,84116,84154,83754,84154,83756,84151,83750,84155,84151,84155,84144,83750,84151,84116,84116,83754,83753,83751,83750,84116,84116,83753,83751,83808,83807,84156,84157,84158,84159,84159,84160,84161,84162,84163,84164,84164,84165,84166,84166,84167,84168,84169,84170,84171,84172,84173,84174,84174,84175,84176,84177,84178,84179,84179,84180,84181,84182,84183,84184,84185,84186,84187,84188,84189,84190,84190,84191,84192,84192,84193,84194,84195,84196,84197,84198,84199,84200,84200,84201,84202,84202,84203,84204,84205,84206,84207,83890,83889,84100,84100,84120,84099,84099,84089,83888,83887,83886,83885,83882,83881,83880,83878,83877,83876,83876,83875,84088,84088,84112,83874,83871,83870,84087,84087,84098,84097,84097,84070,83869,83868,83867,83866,83865,83864,84069,83862,83861,84068,83859,83858,84086,84086,84067,83857,83856,83855,84096,83853,83852,84066,84066,84065,83851,83851,83726,83725,83818,83817,83829,83829,83816,83815,83815,83814,83813,83813,83812,83811,83810,83809,83835,83835,83808,84156,84157,84159,84161,84208,84162,84164,84164,84166,84168,84174,84176,84177,84179,84181,84182,84182,84184,84209,84190,84192,84194,84195,84197,84210,84198,84200,84202,84202,84204,84205,84205,84207,83892,83890,84100,84099,84099,83888,83887,83887,83885,83884,83883,83882,83880,83878,83876,84088,84088,83874,83873,83871,84087,84097,83868,83866,83865,83865,84069,83863,83863,83862,84068,83859,84086,83857,83856,84096,83854,83853,84066,83851,83851,83725,83820,83818,83829,83815,83813,83811,83810,83810,83835,84156,84157,84161,84208,84164,84168,84211,84164,84211,84208,84174,84177,84179,84179,84182,84209,84188,84190,84194,84195,84210,84212,84198,84202,84205,84205,83892,83891,83891,83890,84099,83887,83884,83883,83883,83880,83879,83878,84088,83873,83871,84097,83869,83868,83865,83863,83863,84068,83860,83860,83859,83857,83856,83854,83853,83853,83851,83820,83819,83818,83815,83813,83810,84156,84213,84208,84211,84213,84211,84168,84208,84213,84157,84174,84179,84209,84188,84194,84214,84195,84212,84215,84198,84205,83891,83891,84099,83887,83872,83871,83869,83868,83863,83860,83860,83857,83856,83856,83853,83820,83815,83813,84156,84213,84169,84216,84213,84216,84157,84169,84213,84168,84174,84209,84185,84188,84214,84217,84198,83891,83887,83872,83869,83868,83868,83860,83856,83856,83820,83819,83819,83815,84156,84216,84171,84218,84216,84218,84157,84171,84216,84169,84172,84174,84185,84187,84188,84217,84198,83887,83883,83872,83868,83856,83819,84156,84219,83819,84219,83856,84220,84157,84218,84220,84218,84171,84157,84220,84221,84172,84185,84187,84187,84217,84222,84198,83883,83879,83872,83856,84219,83872,84219,84156,84220,84172,84223,84220,84223,84221,84172,84220,84171,84172,84187,84222,84198,83879,83878,83873,83872,84156,84223,84222,84224,84223,84224,84221,84222,84223,84172,84198,83878,83873,83873,84156,84221,84224,84195,84225,84224,84225,84221,84195,84224,84222,84215,84198,83873,84225,84215,84226,84225,84226,84221,84215,84225,84195,83873,84221,84226,83873,84226,84215,79039,84227,84228,84229,84230,84231,84232,84233,84234,84235,84236,84237,84237,84238,84239,84239,84240,84241,84242,84243,84244,84244,84245,84246,84246,84247,84248,84248,84249,84250,84251,84252,84253,84254,84255,84256,84256,84257,84258,84259,84260,84261,84262,84263,84264,84265,84266,84267,84268,84269,84270,84270,84271,84272,84273,84274,84275,84275,84276,84277,84277,84278,84279,84279,84280,84281,84281,84282,84283,84284,84285,84286,84287,84288,84289,84290,84291,84292,84293,84294,84295,84296,84297,84298,84299,84300,84301,84302,84303,84304,84304,84305,84306,84307,84308,84309,84310,84311,84312,84313,84314,84315,84316,84317,84318,84318,84319,84320,84320,84321,84322,84323,84324,84325,84325,84326,84327,84327,84328,84329,84329,84330,84331,84332,84333,84334,84335,84336,84337,84337,84338,84339,84339,84340,84341,84342,84343,84344,84344,84345,84346,84347,84348,84349,84350,84351,84352,84352,84353,84354,84354,84355,84356,84356,84357,84358,84359,84360,84361,84362,84363,84364,84365,84366,84367,84367,84368,84369,84369,84370,84371,84371,84372,81038,81038,81037,81036,81036,81035,81184,81033,81032,81031,81031,81030,81029,81026,81025,81183,81183,81214,81203,81023,81022,81021,81021,81020,81019,81019,81018,81182,81016,81015,81202,81011,81010,81009,81391,81390,81644,81388,81387,81386,81381,81380,81643,81378,81377,81661,81661,81642,81376,81375,81374,81641,81372,81371,81370,81369,81368,81367,81367,81366,81365,81358,81357,81660,81660,81356,81355,81355,81354,81640,81640,81639,81353,81352,81351,81350,81350,81349,81638,81638,81348,81347,81345,81344,81637,81637,81343,81342,81342,81341,81636,81338,79075,79074,79072,79071,79162,79162,79179,79178,79178,79141,79070,79069,79068,79067,79065,79064,79063,79061,79060,79140,79058,79057,79056,79051,79050,79161,79161,79049,79048,79048,79047,79046,79041,79040,79160,79160,79039,84228,84229,84231,84373,84232,84234,84235,84235,84237,84239,84239,84241,84374,84374,84242,84244,84244,84246,84248,84248,84250,84251,84251,84253,84375,84254,84256,84258,84376,84259,84261,84377,84262,84264,84265,84267,84268,84270,84272,84378,84273,84275,84277,84277,84279,84281,84284,84286,84379,84287,84289,84380,84292,84293,84295,84295,84296,84298,84381,84299,84301,84382,84302,84304,84304,84306,84383,84383,84307,84309,84310,84312,84313,84313,84315,84384,84318,84320,84322,84323,84325,84327,84327,84329,84331,84335,84337,84339,84339,84341,84385,84342,84344,84346,84350,84352,84354,84354,84356,84358,84358,84359,84361,84362,84364,84386,84365,84367,84369,84369,84371,81038,81036,81184,81034,81034,81033,81031,81031,81029,81028,81026,81183,81203,81023,81021,81019,81019,81182,81017,81016,81202,81014,81011,81009,81391,81391,81644,81389,81388,81386,81385,81381,81643,81379,81378,81661,81376,81375,81641,81373,81373,81372,81370,81369,81367,81365,81359,81358,81660,81355,81640,81353,81352,81350,81638,81345,81637,81342,81342,81636,81340,81338,79074,79073,79072,79162,79178,79178,79070,79069,79061,79140,79059,79059,79058,79056,79051,79161,79048,79048,79046,79045,79041,79160,84228,84229,84373,84387,84232,84235,84239,84374,84244,84248,84251,84375,84254,84254,84258,84388,84376,84261,84377,84377,84264,84389,84270,84378,84273,84273,84277,84281,84284,84379,84390,84390,84287,84380,84290,84292,84295,84295,84298,84381,84382,84304,84383,84391,84310,84313,84313,84384,84316,84323,84327,84331,84335,84339,84385,84385,84342,84346,84392,84350,84354,84354,84358,84361,84365,84369,81038,81038,81036,81034,81026,81203,81024,81023,81019,81017,81017,81016,81014,81012,81011,81391,81379,81378,81376,81375,81373,81370,81370,81369,81365,81359,81660,81355,81352,81638,81347,81345,81342,81340,81339,81338,79073,79073,79072,79178,79178,79069,79067,79062,79061,79059,79059,79056,79055,79052,79051,79048,79048,79045,79044,79042,79041,84228,84387,84232,84239,84239,84374,84248,84251,84254,84388,84377,84389,84393,84270,84273,84281,84290,84295,84381,84394,84382,84383,84391,84313,84316,84395,84323,84331,84334,84335,84385,84385,84346,84396,84392,84354,84361,84365,81038,81034,81023,81017,81014,81013,81012,81391,81379,81376,81375,81375,81370,81365,81360,81359,81355,81353,81352,81347,81346,81345,81340,81340,81339,79073,79073,79178,79067,79062,79059,79055,79052,79048,79044,79042,84228,84397,84387,84239,84248,84248,84251,84388,84377,84393,84265,84270,84281,84283,84398,84290,84381,84399,84394,84383,84309,84391,84316,84322,84395,84331,84334,84385,84396,84349,84392,84361,84386,84365,81034,81023,81014,81013,81013,81391,81389,81381,81379,81375,81375,81365,81364,81360,81355,81353,81353,81347,81346,81346,81340,79073,79073,79067,79066,79063,79062,79055,79053,79052,79044,79043,79042,84397,84387,84248,84400,84387,84400,84229,84248,84388,84401,84270,84283,84402,84398,84381,84301,84399,84383,84309,84309,84316,84318,84318,84322,84331,84334,84396,84347,84347,84349,84361,84362,84386,81034,81023,81013,81389,81375,81364,84403,81375,84403,81381,81361,81360,81353,81346,79073,79066,79065,79063,79055,79054,79053,79044,79043,84397,84404,84400,84401,84405,84400,84405,84229,84401,84400,84248,84270,84402,84284,84399,84309,84318,84318,84331,84332,84347,84361,84406,84347,84406,84334,84407,84362,81034,81024,81023,81389,84408,81381,84403,84408,84403,81364,81381,84408,81382,81353,81346,84409,81353,84409,81361,81346,79066,79065,79065,79055,79054,79054,79044,79043,84410,84229,84405,84410,84405,84401,84229,84410,84404,84270,84284,84390,84301,84399,84318,84318,84332,84334,84361,84407,84411,84411,84334,84406,84411,84406,84361,84407,81034,81031,81026,81024,81389,81364,81363,84412,84412,81382,84408,84412,84408,81364,81346,79065,84413,84413,81361,84409,84413,84409,81346,79054,79043,84414,79054,84414,79065,84410,84415,84416,84410,84416,84404,84415,84410,84401,84270,84390,84380,84301,84318,84417,84301,84417,84398,84418,84334,84411,84418,84411,84407,84334,84418,84318,84407,81031,81028,81026,81389,81388,81363,81362,84419,84419,81382,84412,84419,84412,81363,84420,84413,84421,84420,84421,79043,84413,84420,81361,84413,79065,84414,84414,79043,84421,84414,84421,84413,84415,84376,84422,84422,84404,84416,84422,84416,84415,84270,84380,84423,84270,84423,84268,84418,84424,84425,84418,84425,84318,84418,84407,84426,84418,84426,84424,84417,84424,84427,84417,84427,84398,84417,84318,84425,84417,84425,84424,84407,81028,81027,81388,81385,84428,81388,84428,81026,81362,81361,84429,84429,81382,84419,84429,84419,81362,79043,84404,84430,84430,81361,84420,84430,84420,79043,84376,84377,84431,84431,84404,84422,84431,84422,84376,84427,84432,84433,84427,84433,84398,84432,84427,84424,84434,84424,84426,84434,84426,84407,84424,84434,84432,84435,84398,84433,84435,84433,84432,84398,84435,84380,84436,81026,84428,84436,84428,81385,81026,84436,81027,84430,84437,84438,84430,84438,81361,84430,84404,84439,84430,84439,84437,84429,84437,84440,84429,84440,81382,84429,81361,84438,84429,84438,84437,84377,84265,84441,84441,84404,84431,84441,84431,84377,84442,84380,84435,84442,84435,84432,84443,84432,84434,84443,84434,84407,84432,84443,84442,84380,84442,84444,84444,84268,84423,84444,84423,84380,81385,81384,84445,84445,81027,84436,84445,84436,81385,84440,84446,84447,84440,84447,81382,84446,84440,84437,84448,84437,84439,84448,84439,84404,84437,84448,84446,84449,81382,84447,84449,84447,84446,81382,84449,81383,84265,84268,84450,84450,84404,84441,84450,84441,84265,84451,84442,84452,84451,84452,81027,84442,84451,84453,84444,84453,84454,84444,84454,84268,84453,84444,84442,84443,81027,84452,84443,84452,84442,81027,84443,84407,84449,84455,84456,84449,84456,81383,84455,84449,84446,84457,84446,84448,84457,84448,84404,84446,84457,84455,84458,81383,84456,84458,84456,84455,81383,84458,81384,84454,84459,84460,84454,84460,84268,84459,84454,84453,84461,84453,84451,84461,84451,81027,84453,84461,84459,84462,84268,84460,84462,84460,84459,84462,84404,84450,84462,84450,84268,84459,81384,84458,84459,84458,84455,84462,84455,84457,84462,84457,84404,84455,84462,84459,81384,84459,84461,84461,81027,84445,84461,84445,81384,78922,78690,78689,78686,78685,78753,78753,78740,78684,78679,78678,78752,78752,78773,78782,78782,78677,78676,78676,78675,78674,78674,78673,78739,78671,78670,78669,78664,78663,78738,78738,78772,78662,78657,78656,78751,78751,78737,78655,78655,78654,84463,84464,84465,84466,84466,84467,84468,84469,84470,84471,84472,84473,84474,84475,84476,84477,84478,84479,84480,84480,84481,84482,84482,84483,84484,84485,84486,84487,84488,84489,84490,84491,84492,84493,84494,84495,84496,84497,84498,84499,84500,84501,84502,84503,84504,84505,84506,84507,84508,84508,84509,84510,84511,84512,84513,84514,84515,84516,84516,84517,84518,84519,84520,84521,84521,84522,84523,84524,84525,84526,84527,84528,84529,84529,84530,84531,84532,84533,84534,84534,84535,84536,84536,84537,84538,84538,84539,84540,84541,84542,84543,84543,84544,84545,84545,84546,84547,84548,84549,84550,84550,84551,84552,84552,84553,84554,84554,84555,84556,84556,84557,84558,84559,84560,84561,84561,83009,83008,83007,83006,83005,83004,83003,83002,82999,82998,83124,82997,82996,84562,84563,84564,84565,84566,84567,84568,84569,84570,84571,84572,84573,84574,84574,84575,84576,84577,84578,84579,84580,84581,84582,84583,84584,84585,84585,84586,84587,84587,84588,84589,84589,84590,84591,84592,84593,84594,84594,84595,84596,84596,84597,84598,84598,84599,84600,84601,84602,84603,84603,84604,84605,84605,84606,84607,84607,84608,84609,84610,84611,84612,84613,84614,84615,84616,84617,84618,84618,84619,84620,84621,84622,84623,84624,84243,84242,84242,84374,84241,84236,84235,84234,84233,84232,84387,84387,84373,84231,84230,84229,84404,84404,84397,84228,84227,79039,79038,79036,79035,79139,79033,79032,79031,79028,79027,79159,79159,79138,79026,79025,79024,79158,79158,79023,79022,79018,79017,79016,79014,79013,79157,79157,79012,79011,79011,79010,79009,79008,79007,79177,79177,79137,79006,79005,79004,79003,79002,79001,79170,79170,79169,79000,78997,78996,78995,78993,78992,79156,79156,78991,78990,78988,78987,78986,78985,78984,79155,79155,79168,78983,78980,78979,79154,79154,79241,78978,78977,78976,79136,78974,78973,79185,79185,78972,78971,78969,78968,79153,79153,79152,79135,79135,78967,78966,78966,78965,79201,79201,79184,79167,78961,78960,79134,79134,78959,78958,78954,78953,78952,78948,78947,79151,79151,79176,78946,78943,78942,79150,79150,79166,78941,78938,78937,78936,78931,78930,78929,78924,78923,79175,79175,79188,79192,79192,79200,79206,79206,79199,79191,79191,79133,78922,78686,78753,78684,78679,78752,78782,78782,78676,78674,78674,78739,78672,78671,78669,78668,78664,78738,78662,78658,78657,78751,78751,78655,84463,84466,84468,84469,84469,84471,84472,84472,84474,84625,84625,84475,84477,84478,84480,84482,84485,84487,84626,84488,84490,84627,84491,84493,84494,84494,84496,84628,84628,84497,84499,84629,84500,84502,84502,84503,84505,84630,84506,84508,84513,84514,84516,84631,84519,84521,84521,84523,84632,84633,84524,84526,84529,84531,84532,84534,84536,84538,84538,84540,84634,84541,84543,84545,84635,84548,84550,84550,84552,84554,84554,84556,84558,84559,84561,83008,83000,82999,83124,83140,82997,84562,84563,84565,84566,84566,84568,84636,84569,84571,84637,84637,84572,84574,84574,84576,84638,84577,84579,84580,84580,84582,84639,84583,84585,84587,84589,84591,84640,84641,84592,84594,84594,84596,84598,84598,84600,84642,84601,84603,84605,84605,84607,84609,84610,84612,84613,84613,84615,84643,84616,84618,84620,84620,84621,84623,84644,84624,84242,84233,84387,84231,84230,84404,84228,84228,84227,79038,79036,79139,79034,79033,79031,79030,79028,79159,79026,79025,79158,79022,79014,79157,79011,79011,79009,79008,79008,79177,79006,79002,79170,79000,78994,78993,79156,78985,79155,78983,78980,79154,78978,78978,78977,79136,78974,79185,78971,78969,79153,79135,78966,79201,79167,78961,79134,78958,78954,78952,78951,78948,79151,78946,78943,79150,78941,78931,78929,78928,78924,79175,79192,79192,79206,79191,79191,78922,78689,78687,78686,78684,78680,78679,78782,78671,78668,78667,78665,78664,78662,78658,78751,84463,84469,84472,84625,84625,84477,84645,84478,84482,84484,84485,84626,84646,84491,84494,84628,84628,84499,84647,84629,84502,84505,84630,84508,84510,84513,84516,84518,84631,84521,84632,84632,84633,84526,84527,84529,84532,84532,84534,84538,84541,84545,84547,84550,84554,84648,84550,84648,84635,84554,84558,84559,84559,83008,83007,83000,83124,83216,83216,83140,84562,84569,84637,84574,84649,84577,84580,84583,84587,84589,84589,84640,84650,84641,84594,84598,84651,84601,84605,84605,84609,84652,84610,84613,84643,84616,84620,84623,84653,84644,84242,84234,84233,84231,84231,84230,84228,84228,79038,79037,79037,79036,79034,79034,79033,79030,79029,79028,79026,79025,79022,79021,79015,79014,79011,79011,79008,79006,79003,79002,79000,78994,79156,78990,78985,78983,78982,78981,78980,78978,78978,79136,78975,78974,78971,78970,78969,79135,78966,78966,79167,78964,78962,78961,78958,78949,78948,78946,78944,78943,78941,78932,78931,78928,78925,78924,79192,79192,79191,78689,78688,78687,78684,78680,78782,78674,78665,78662,78661,78659,78658,84463,84466,84469,84625,84654,84478,84484,84627,84491,84628,84628,84647,84655,84655,84629,84505,84630,84510,84656,84518,84631,84632,84632,84526,84527,84532,84538,84657,84532,84657,84527,84541,84547,84658,84554,84559,84659,84659,84635,84648,84659,84648,84554,83007,83005,84660,83007,84660,84559,83001,83000,83216,83216,84562,84563,84569,84574,84638,84649,84580,84639,84639,84583,84589,84641,84598,84642,84651,84605,84652,84610,84643,84616,84616,84623,84661,84653,84242,84241,84234,84231,84228,84228,79037,79034,79034,79030,79029,79015,79011,79006,79003,79000,78999,78995,78994,78990,78985,78982,78981,78981,78978,78975,78975,78974,78970,78970,78969,78966,78966,78964,78963,78949,78946,78945,78944,78941,78940,78932,78928,78927,78925,79192,78689,78681,78680,78674,78665,78661,78660,78660,78659,84463,84466,84625,84645,84654,84484,84485,84627,84628,84655,84655,84505,84630,84513,84518,84632,84662,84527,84657,84662,84657,84538,84527,84662,84632,84634,84541,84658,84663,84559,84660,84663,84660,83005,84559,84663,84664,84659,84664,84665,84659,84665,84635,84664,84659,84559,83001,83216,84563,84569,84638,84649,84639,84589,84650,84666,84641,84642,84667,84651,84652,84610,84616,84661,84661,84653,84241,84236,84234,84228,84228,79034,79029,79015,79006,79005,79003,78999,78998,78995,78990,78989,78985,78981,78975,78975,78970,78966,78966,78963,78962,78950,78949,78945,78945,78944,78940,78926,78925,78689,78682,78681,78674,78666,78665,78660,78660,84463,84464,84654,84485,84646,84488,84627,84655,84655,84630,84656,84668,84632,84662,84662,84538,84669,84662,84669,84668,84632,84668,84670,84632,84670,84513,84538,84634,84658,84665,84671,84672,84665,84672,84635,84671,84665,84664,84673,84664,84663,84673,84663,83005,84664,84673,84671,84674,84635,84672,84674,84672,84671,84635,84674,84675,83002,83001,84563,84676,84569,84649,84649,84639,84650,84666,84642,84677,84667,84652,84678,84661,84241,84240,84237,84236,84228,84228,79029,79026,79015,79005,79003,79003,78998,78997,78986,78985,78975,78966,78962,78958,78951,78950,78945,78945,78940,78939,78927,78926,78689,78682,78674,78672,78660,84464,84679,78660,84679,78666,84646,84488,84655,84655,84656,84680,84681,84513,84670,84681,84670,84668,84682,84668,84669,84682,84669,84538,84668,84682,84681,84513,84681,84683,84513,84683,84511,84674,84684,84685,84674,84685,84675,84684,84674,84671,84686,84671,84673,84686,84673,83005,84671,84686,84684,84687,84675,84685,84687,84685,84684,84675,84687,84658,83004,83002,84563,84676,84649,84650,84666,84677,84688,84688,84667,84678,84661,84240,84239,84237,84228,79026,79003,78997,84689,79003,84689,79015,78975,78966,84690,78975,84690,78986,78966,78958,78957,78954,78951,78945,78945,78939,78938,78932,78927,78689,78682,78672,78671,84691,78666,84679,84691,84679,84464,78666,84691,78667,84654,84646,84655,84683,84692,84693,84683,84693,84511,84692,84683,84681,84694,84681,84682,84694,84682,84538,84681,84694,84692,84695,84511,84693,84695,84693,84692,84511,84695,84696,84687,84697,84698,84687,84698,84658,84697,84687,84684,84699,84684,84686,84699,84686,83005,84684,84699,84697,84700,84658,84698,84700,84698,84697,84658,84700,84538,83005,83004,84563,84676,84650,84666,84666,84688,84678,84661,84239,84701,84661,84701,84610,84238,84237,79026,78997,78995,84702,84702,79015,84689,84702,84689,78997,84703,78986,84690,84703,84690,78966,78986,84703,78988,78966,78957,78956,78955,78954,78945,78945,78938,78936,78933,78932,78689,78683,78682,78671,84704,78667,84691,84704,84691,84464,78667,84704,78671,84654,84655,84680,84695,84705,84706,84695,84706,84696,84705,84695,84692,84707,84692,84694,84707,84694,84538,84692,84707,84705,84708,84696,84706,84708,84706,84705,84696,84708,84680,83005,84563,84709,84709,84710,84711,84709,84711,83005,84697,84710,84712,84712,84538,84700,84712,84700,84697,84710,84697,84699,84699,83005,84711,84699,84711,84710,84666,84678,84713,84666,84713,84676,84239,84238,84714,84714,84610,84701,84714,84701,84239,84238,79026,79025,78995,78989,84715,84715,79015,84702,84715,84702,78995,84716,78988,84703,84716,84703,78966,78988,84716,78989,78955,78945,78936,78933,78689,78688,84717,78671,84704,84704,84464,84718,84704,84718,84717,78671,84717,84719,78671,84719,78683,84645,84654,84680,84720,84712,84721,84720,84721,84722,84712,84720,84538,84712,84710,84723,84723,84722,84721,84723,84721,84712,84724,84710,84709,84709,84563,84725,84709,84725,84724,84710,84724,84726,84726,84722,84723,84726,84723,84710,84727,84720,84728,84727,84728,84729,84720,84727,84538,84720,84722,84730,84730,84729,84728,84730,84728,84720,84705,84729,84731,84731,84680,84708,84731,84708,84705,84727,84705,84707,84727,84707,84538,84705,84727,84729,84732,84676,84713,84732,84713,84678,84676,84732,84733,84238,79025,84734,84734,84610,84714,84734,84714,84238,84735,79015,84715,84735,84715,78989,79015,84735,79016,78955,78936,78935,78934,78933,78688,84736,78683,84719,84736,84719,84717,84737,84717,84718,84737,84718,84464,84717,84737,84736,78683,84736,84738,78683,84738,78684,84645,84680,84739,84645,84739,84466,84740,84566,84741,84740,84741,84742,84566,84740,84563,84743,84742,84744,84744,84745,84746,84744,84746,84743,84740,84743,84747,84740,84747,84563,84743,84740,84742,84722,84745,84748,84748,84749,84750,84748,84750,84722,84729,84749,84751,84751,84680,84731,84751,84731,84729,84750,84729,84730,84750,84730,84722,84729,84750,84749,84724,84743,84752,84752,84722,84726,84752,84726,84724,84747,84724,84725,84747,84725,84563,84724,84747,84743,84745,84722,84752,84752,84743,84746,84752,84746,84745,84732,84753,84754,84732,84754,84733,84753,84732,84678,84755,84610,84734,84755,84734,79025,84610,84755,84753,84756,78989,84716,84756,84716,78966,78989,84756,84757,84735,84757,84758,84735,84758,79016,84757,84735,78989,78935,78934,84759,78935,84759,78955,78934,78688,78684,84464,84466,84760,84464,84760,84761,84736,84761,84762,84762,78684,84738,84762,84738,84736,84761,84736,84737,84761,84737,84464,84751,84763,84764,84751,84764,84680,84763,84751,84749,84763,84466,84739,84739,84680,84764,84739,84764,84763,84765,84749,84748,84748,84745,84766,84748,84766,84765,84763,84765,84767,84763,84767,84466,84765,84763,84749,84768,84745,84744,84744,84742,84769,84744,84769,84768,84770,84742,84741,84741,84566,84771,84741,84771,84770,84769,84770,84772,84769,84772,84768,84770,84769,84742,84773,84765,84774,84774,84768,84775,84774,84775,84773,84767,84773,84776,84767,84776,84466,84773,84767,84765,84745,84768,84774,84774,84765,84766,84774,84766,84745,84777,84753,84755,84755,79025,84778,84755,84778,84777,84754,84777,84779,84754,84779,84733,84777,84754,84753,84758,84780,84781,84758,84781,79016,84780,84758,84757,84782,84757,84756,84782,84756,78966,84757,84782,84780,84783,79016,84781,84783,84781,84780,79016,84783,79018,78684,78955,84759,78684,84759,78934,84784,84785,84786,84786,84768,84787,84786,84787,84784,84788,84784,84789,84788,84789,84636,84784,84788,84785,84790,84768,84786,84786,84785,84791,84786,84791,84790,84792,84773,84793,84792,84793,84790,84773,84792,84794,84776,84794,84795,84776,84795,84466,84794,84776,84773,84775,84790,84793,84775,84793,84773,84790,84775,84768,84784,84770,84796,84796,84636,84789,84796,84789,84784,84772,84784,84787,84772,84787,84768,84784,84772,84770,84566,84636,84796,84796,84770,84771,84796,84771,84566,84779,84797,84798,84779,84798,84733,84797,84779,84777,84799,84777,84778,84799,84778,79025,84777,84799,84797,84800,84733,84798,84800,84798,84797,84733,84800,84801,84783,84802,84803,84783,84803,79018,84802,84783,84780,84804,84780,84782,84804,84782,78966,84780,84804,84802,84805,79018,84803,84805,84803,84802,79018,84805,79019,78955,78684,84762,78955,84762,84761,84806,84761,84760,84806,84760,84466,84761,84806,78955,84807,84808,84809,84807,84809,84790,84808,84807,84810,84811,84810,84812,84811,84812,84801,84810,84811,84808,84813,84790,84809,84813,84809,84808,84790,84813,84814,84815,84794,84816,84815,84816,84814,84794,84815,84817,84795,84817,84818,84795,84818,84466,84817,84795,84794,84792,84814,84816,84792,84816,84794,84814,84792,84790,84812,84785,84819,84812,84819,84801,84785,84812,84810,84791,84810,84807,84791,84807,84790,84810,84791,84785,84788,84801,84819,84788,84819,84785,84801,84788,84636,84820,84797,84821,84820,84821,79021,84797,84820,84822,84800,84822,84823,84800,84823,84801,84822,84800,84797,84799,79021,84821,84799,84821,84797,79021,84799,79025,78966,78956,84824,84824,84825,84826,84824,84826,78966,84802,84825,84827,84827,79019,84805,84827,84805,84802,84825,84802,84804,84804,78966,84826,84804,84826,84825,84828,78955,84806,84806,84466,84829,84806,84829,84828,78955,84828,84830,78955,84830,78956,84831,84822,84832,84831,84832,79020,84822,84831,84833,84823,84833,84834,84823,84834,84801,84833,84823,84822,84820,79020,84832,84820,84832,84822,79020,84820,79021,84835,78956,84830,84835,84830,84828,84836,84828,84829,84836,84829,84466,84828,84836,84835,78956,84835,84837,78956,84837,84838,84839,84825,84840,84839,84840,84838,84825,84839,84841,84827,84841,84842,84827,84842,79019,84841,84827,84825,84824,84838,84840,84824,84840,84825,84838,84824,78956,84843,84833,84844,84843,84844,79019,84833,84843,84845,84834,84845,84846,84834,84846,84801,84845,84834,84833,84831,79019,84844,84831,84844,84833,79019,84831,79020,84847,84841,84848,84848,84849,84850,84848,84850,84847,84842,84847,84851,84842,84851,79019,84847,84842,84841,84839,84852,84853,84839,84853,84841,84852,84839,84838,84852,84849,84848,84848,84841,84853,84848,84853,84852,84854,84855,84856,84854,84856,84845,84855,84854,84849,84855,84801,84846,84846,84845,84856,84846,84856,84855,84847,84845,84843,84843,79019,84851,84843,84851,84847,84854,84847,84850,84854,84850,84849,84847,84854,84845,84835,84817,84857,84857,84838,84837,84857,84837,84835,84818,84835,84836,84818,84836,84466,84835,84818,84817,84858,84857,84859,84858,84859,84814,84857,84858,84838,84857,84817,84815,84815,84814,84859,84815,84859,84857,84813,84849,84860,84813,84860,84814,84849,84813,84808,84855,84808,84811,84855,84811,84801,84808,84855,84849,84860,84852,84861,84860,84861,84814,84852,84860,84849,84852,84838,84858,84858,84814,84861,84858,84861,84852,80335,80334,84862,84862,84863,84864,84864,84865,84866,84867,84868,84869,84869,84870,84871,84871,84872,84873,84873,84874,84875,84875,84876,84877,84877,84878,84879,84880,84881,84882,84883,84884,84885,84885,84886,78609,78609,78608,78607,78605,78604,78763,78763,78780,78803,78803,78815,78829,78829,78862,78730,78602,78601,78600,78597,78596,78595,78595,78594,80336,80336,80335,84862,84862,84864,84866,84869,84871,84873,84873,84875,84877,84877,84879,84880,84880,84882,84887,84883,84885,78609,78605,78763,78803,78803,78829,78730,78602,78600,78599,78597,78595,80336,80336,84862,84866,84867,84869,84873,84873,84877,84880,84883,78609,78607,78606,78605,78803,78803,78730,78603,78603,78602,78599,78598,78597,80336,80336,84866,84888,84867,84873,84880,84889,84883,78607,78607,78606,78803,78803,78603,78599,78599,78598,80336,80336,84888,84890,84867,84880,84887,84889,78607,78803,78803,78599,80336,84867,84887,84889,78803,80336,84890,84867,84889,78803,78803,84890,84867,84463,78654,78653,78651,78650,78750,78750,78765,78749,78646,78645,78771,78771,78736,78644,78643,78642,78641,78640,78639,78748,78748,78735,78638,78637,78636,78764,78764,78770,78734,78734,78635,78634,78632,78631,78733,78733,78732,78630,78629,78628,78627,78626,78625,78624,78622,78621,78620,78617,78616,78747,78614,78613,78731,78731,78768,78612,78611,78610,78609,84884,84883,84889,84889,84887,84882,84881,84880,84879,84879,84878,84891,84891,84892,84893,84894,84895,84896,84897,84898,84899,84900,84901,84902,84903,84904,84905,84905,84906,84907,84908,84909,84910,84910,84911,84912,84912,84913,84914,84915,84916,84917,84918,84919,84920,84921,84922,84923,84923,84924,84501,84501,84500,84629,84629,84655,84647,84498,84497,84628,84495,84494,84493,84492,84491,84627,84489,84488,84646,84646,84626,84487,84486,84485,84484,84481,84480,84479,84479,84478,84654,84654,84645,84477,84476,84475,84625,84473,84472,84471,84470,84469,84468,84467,84466,84465,84465,84464,84463,84463,78653,78652,78651,78750,78749,78646,78771,78644,78644,78643,78641,78640,78748,78638,78637,78764,78734,78632,78733,78630,78629,78627,78626,78626,78624,78623,78622,78620,78619,78617,78747,78615,78614,78731,78612,78611,78609,84886,84884,84889,84882,84881,84879,84891,84894,84896,84897,84897,84899,84900,84900,84902,84903,84903,84905,84907,84925,84908,84910,84910,84912,84914,84915,84917,84918,84921,84923,84501,84501,84629,84647,84498,84628,84496,84495,84493,84492,84492,84627,84490,84489,84646,84487,84487,84486,84484,84482,84481,84479,84479,84654,84477,84476,84625,84474,84471,84470,84468,84468,84467,84465,84465,84463,78652,78652,78651,78749,78647,78646,78644,78641,78640,78638,78638,78637,78734,78633,78632,78630,78629,78626,78623,78618,78617,78615,78612,78611,84886,84885,84884,84882,84881,84891,84893,84897,84900,84903,84903,84907,84926,84925,84910,84914,84920,84921,84501,84501,84647,84499,84492,84490,84489,84489,84487,84484,84482,84479,84477,84476,84474,84473,84471,84468,84465,84465,78652,78749,78647,78644,78641,78641,78638,78734,78633,78630,78629,78618,78615,78614,78614,78612,84886,84885,84882,84881,84881,84893,84894,84903,84926,84927,84903,84927,84897,84926,84925,84914,84920,84501,84499,84492,84489,84484,84482,84477,84476,84471,84465,78749,78648,78647,78641,78641,78734,78634,78633,78629,78623,78614,84886,84885,84885,84881,84894,84928,84897,84927,84928,84927,84926,84897,84928,84894,84926,84914,84929,84920,84499,84498,84495,84492,84484,84482,84476,84473,84473,84471,78749,78641,78634,78633,78618,78614,84885,84930,84894,84928,84930,84928,84926,84894,84930,84885,84926,84929,84931,84920,84498,84932,84920,84932,84918,84495,84484,84483,84483,84482,84473,84473,78749,78649,78641,78633,78623,78618,84885,84930,78618,84930,84926,84932,84496,84933,84932,84933,84918,84496,84932,84498,84495,84483,84473,84473,78649,78648,78619,78618,84926,84933,84495,84934,84933,84934,84918,84495,84933,84496,84473,78648,84935,84473,84935,84495,78622,78619,84926,84935,78641,84936,84935,84936,84495,78641,84935,78648,78623,78622,84926,84936,84918,84934,84936,84934,84495,84918,84936,78641,78641,78623,84926,84915,84918,78641,78641,84926,84931,84931,84915,78641,84937,84938,84939,84940,84941,84942,84937,84939,84940,84940,84942,84937,84943,84944,84945,84945,84946,84947,84948,84949,84950,84951,84952,84953,84953,84954,84955,84955,84956,84957,84957,84958,84959,84943,84945,84947,84960,84948,84950,84961,84951,84953,84957,84959,84962,84963,84943,84947,84960,84950,84964,84961,84953,84955,84955,84957,84962,84963,84947,84960,84960,84964,84965,84965,84961,84955,84955,84962,84966,84963,84960,84965,84955,84966,84963,84963,84965,84955,84967,84968,84969,84969,84970,84967,84971,83929,83928,83927,83926,83925,83924,83923,84122,84122,84102,84091,84091,84072,83922,83921,83920,83919,83917,83916,84090,84090,84101,83915,83908,83907,83906,83905,83904,84113,84113,84121,84128,84128,84136,84144,84144,84138,84135,84135,84133,83903,83900,83899,84071,83895,83894,83893,83893,83892,84207,84206,84205,84204,84203,84202,84201,84199,84198,84215,84215,84212,84210,84196,84195,84222,84222,84217,84214,84191,84190,84189,84189,84188,84187,84186,84185,84209,84183,84182,84181,84180,84179,84178,84178,84177,84176,84175,84174,84173,84173,84172,84171,84170,84169,84168,84168,84972,84973,84973,84974,84975,84976,84977,84978,84979,84980,84981,84981,84982,84983,84984,84985,84986,84987,84988,84989,84989,84990,84991,84992,84993,84994,84994,84995,84996,84997,84998,84999,85000,85001,85002,85003,85004,85005,85005,85006,85007,85007,85008,85009,85009,85010,85011,85012,85013,85014,85015,85016,85017,85018,85019,85020,85021,85022,85023,85023,85024,85025,85026,85027,85028,85029,85030,85031,85032,85033,85034,85035,85036,85037,85037,85038,85039,85040,85041,85042,85043,85044,85045,85046,85047,85048,85049,85050,85051,85052,85053,85054,85054,85055,85056,85057,85058,85059,85060,85061,85062,85063,85064,85065,85066,85067,85068,85068,85069,85070,85070,85071,85072,85073,85074,85075,85075,85076,85077,85077,85078,85079,85080,85081,85082,85083,85084,85085,85085,85086,85087,85088,85089,85090,85090,85091,85092,85092,85093,85094,85094,85095,85096,85097,85098,85099,85099,85100,85101,85102,85103,85104,85105,85106,85107,85107,85108,85109,85110,85111,85112,85113,85114,85115,85116,85117,85118,85119,85120,85121,85122,84971,83928,83928,83927,83925,83924,84122,84091,83922,83921,83919,83917,84090,83915,83909,83908,83906,83906,83905,84113,84113,84128,84144,84144,84135,83903,83900,84071,83898,83895,83893,84207,84203,84201,84200,84199,84215,84210,84197,84196,84222,84222,84214,84194,84192,84191,84189,84189,84187,84186,84186,84209,84184,84181,84180,84178,84175,84173,84171,84171,84170,84168,84168,84973,84975,84976,84978,85123,84979,84981,84983,84984,84986,84987,84987,84989,84991,84992,84994,84996,84997,84999,85000,85000,85002,85003,85003,85005,85007,85007,85009,85011,85015,85017,85124,85018,85020,85125,85021,85023,85025,85026,85028,85126,85126,85029,85031,85127,85032,85034,85128,85035,85037,85037,85039,85129,85040,85042,85130,85043,85045,85131,85132,85046,85048,85049,85051,85052,85052,85054,85056,85057,85059,85133,85134,85060,85062,85066,85068,85070,85073,85075,85077,85083,85085,85087,85088,85090,85092,85092,85094,85096,85097,85099,85101,85102,85104,85105,85105,85107,85109,85110,85112,85113,85113,85115,85116,85116,85118,85119,85119,85121,85135,85122,83928,83925,83925,83924,84091,83922,83919,83918,83917,83915,83914,83909,83906,84113,84113,84144,83903,83901,83900,83898,83895,84207,84206,84200,84199,84210,84197,84222,84194,84192,84189,84186,84176,84175,84171,84171,84168,84975,85123,84979,84983,84984,84987,84991,85136,84992,84996,84997,85000,85003,85003,85007,85011,85014,85015,85124,85021,85025,85137,85138,85026,85126,85126,85031,85139,85127,85034,85128,85128,85037,85129,85040,85130,85043,85043,85131,85140,85132,85048,85049,85049,85052,85056,85056,85057,85133,85066,85070,85072,85072,85073,85077,85083,85087,85088,85088,85092,85096,85141,85097,85101,85102,85105,85109,85113,85116,85119,85135,85122,83925,83925,84091,83922,83922,83918,83917,83917,83914,83913,83909,84113,83903,83901,83898,83897,83895,84206,84204,84200,84210,84197,84197,84194,84193,84192,84186,84184,84178,84176,84171,84171,84975,84976,85123,84983,85142,85143,84984,84991,85136,84996,85144,84997,85003,85011,85125,85021,85137,85126,85139,85127,85127,85128,85129,85040,85043,85140,85145,85132,85049,85049,85056,85133,85066,85072,85077,85083,85088,85096,85146,85141,85101,85102,85109,85147,85113,85119,85135,85135,83925,83922,83917,83913,83912,83910,83909,83903,83896,83895,84204,84200,84197,84193,84192,84184,84183,84178,84171,84976,85123,85142,85143,85143,84991,85148,85149,85136,85144,85144,84997,85011,85125,85137,85138,85126,85127,85129,85129,85040,85140,85150,85145,85049,85065,85066,85077,85151,85083,85096,85146,85101,85152,85102,85147,85153,85110,85113,85135,85135,83922,83917,83910,83903,83902,83897,83896,84204,84203,84200,84193,84181,84178,84976,85143,85148,85149,85149,85144,85011,85138,85126,85129,85129,85140,85150,85150,85049,85133,85063,85065,85077,85151,85096,85146,85146,85152,85102,85110,85135,83917,83910,83902,83901,83901,83897,84204,84204,84203,84193,84183,84181,84976,85149,85011,85154,85149,85154,85143,85138,85129,85155,85138,85155,85125,85129,85150,85133,85063,85077,85079,85151,85146,85102,85156,85110,83917,83910,83901,84204,84204,84193,84192,84183,84976,85123,85154,85012,85157,85154,85157,85143,85012,85154,85011,85129,85133,85158,85158,85125,85155,85158,85155,85129,85063,85079,85080,85159,85151,85102,85153,85156,83917,83910,84204,84192,84183,85123,85160,84183,85160,84192,85157,85014,85161,85157,85161,85143,85014,85157,85012,85162,85125,85158,85162,85158,85133,85125,85162,85018,85062,85063,85080,85163,85159,85102,85102,85153,83917,83911,83910,84192,85123,85143,85164,85164,84192,85160,85164,85160,85123,85014,85124,85165,85165,85143,85161,85165,85161,85014,85166,85018,85162,85166,85162,85133,85018,85166,85167,85062,85080,85082,85163,85102,83917,85168,84192,85164,85168,85164,85143,84192,85168,83911,85124,85169,85170,85170,85143,85165,85170,85165,85124,85171,85167,85166,85171,85166,85133,85167,85171,85169,85062,85082,85163,83917,83912,85172,83917,85172,85163,85173,83911,85168,85173,85168,85143,83911,85173,83912,85174,85169,85171,85171,85133,85175,85171,85175,85174,85170,85174,85176,85170,85176,85143,85174,85170,85169,85177,85163,85172,85177,85172,83912,85163,85177,85062,85173,85174,85178,85173,85178,83912,85173,85143,85176,85173,85176,85174,85179,85174,85175,85179,85175,85133,85179,83912,85178,85179,85178,85174,85180,85062,85177,85180,85177,83912,85062,85180,85134,85179,85134,85180,85179,85180,83912,85134,85179,85133,83988,83987,83986,83985,83984,84117,84117,84126,84132,84132,84131,84125,84125,84080,83983,83980,83979,84079,84079,84106,84116,84116,83978,83977,83977,83976,83975,83973,83972,83971,83970,83969,84078,84078,84105,84093,83965,83964,84124,84124,84115,83963,83954,83953,83952,83952,83951,84077,84077,84076,83950,83949,83948,83947,83946,83945,83944,83941,83940,84075,84075,84104,84114,84114,84130,84129,84129,84074,83939,83934,83933,84092,84092,84103,84123,84123,84073,83932,83930,83929,84971,84971,85122,85135,85120,85119,85118,85117,85116,85115,85114,85113,85112,85111,85110,85156,85156,85153,85147,85147,85109,85108,85106,85105,85104,85103,85102,85152,85098,85097,85141,85141,85146,85096,85093,85092,85091,85089,85088,85087,85084,85083,85151,85151,85159,85163,85163,85082,85081,85081,85080,85079,85075,85074,85181,85181,85182,85183,85183,85184,85185,85186,85187,85188,85188,85189,85190,85190,85191,85192,85193,85194,85195,85195,85196,85197,85197,85198,85199,85199,85200,85201,85201,85202,85203,85204,85205,85206,85206,85207,85208,85209,85210,85211,85212,85213,85214,85214,85215,85216,85216,85217,85218,85219,85220,85221,85221,85222,85223,85223,85224,85225,85226,85227,85228,85229,85230,85231,85231,85232,85233,85234,85235,85236,85237,85238,85239,85240,85241,85242,85243,85244,85245,85245,85246,85247,85248,85249,85250,85250,85251,85252,85253,85254,85255,85256,85257,85258,85258,85259,85260,85261,85262,85263,85264,85265,85266,85267,85268,85269,85270,85271,85272,85272,85273,85274,85274,85275,85276,85277,85278,85279,85280,85281,85282,85283,85284,85285,85286,85287,85288,85289,85290,85291,85291,85292,85293,85293,85294,85295,85296,85297,85298,85299,85300,85301,85302,85303,85304,85304,85305,85306,85307,85308,85309,85310,85311,85312,85313,85314,85315,85316,85317,85318,85319,85320,85321,85321,85322,85323,85324,85325,85326,85326,85327,85328,85329,85330,85331,85331,85332,85333,85333,85334,85335,85335,85336,85337,85338,85339,85340,85341,85342,85343,85343,85344,85345,85345,85346,85347,85348,85349,85350,85350,85351,85352,85352,85353,85354,85354,85355,85356,85356,85357,85358,85359,85360,85361,85361,85362,85363,85364,85365,85366,85367,85368,85369,85370,85371,85372,85373,85374,85375,85376,85377,85378,85378,85379,85380,85381,85382,85383,85384,85385,85386,85386,85387,85388,85388,85389,85390,85390,85391,85392,85393,85394,85395,85396,85397,85398,85398,85399,85400,85400,85401,85402,85402,85403,85404,85405,85406,85407,85407,85408,85409,85409,85410,85411,85411,85412,85413,85414,85415,85416,85417,85418,85419,85419,85420,85421,85421,85422,85423,85423,85424,85425,85425,85426,85427,85428,85429,85430,85431,85432,85433,85433,85434,85435,85435,85436,85437,85437,85438,85439,83988,83986,83985,83985,84117,84132,84132,84125,83983,83980,84079,84116,84116,83977,83975,83970,84078,84093,83966,83965,84124,84124,83963,83962,83955,83954,83952,83952,84077,83950,83949,83947,83946,83941,84075,84114,84114,84129,83939,83934,84092,84123,83930,84971,85135,85120,85118,85117,85117,85115,85114,85114,85112,85111,85111,85156,85147,85104,85103,85152,85098,85141,85096,85089,85087,85086,85085,85084,85151,85151,85163,85081,85081,85079,85078,85076,85075,85181,85181,85183,85185,85440,85186,85188,85188,85190,85192,85193,85195,85197,85199,85201,85203,85204,85206,85208,85212,85214,85216,85216,85218,85441,85219,85221,85223,85226,85228,85442,85229,85231,85233,85234,85236,85443,85237,85239,85444,85444,85240,85242,85445,85243,85245,85446,85248,85250,85250,85252,85447,85448,85253,85255,85256,85258,85260,85261,85263,85264,85264,85266,85449,85267,85269,85270,85274,85276,85450,85450,85277,85279,85285,85286,85288,85451,85289,85291,85291,85293,85295,85296,85298,85452,85299,85301,85453,85454,85302,85304,85304,85306,85455,85455,85307,85309,85309,85310,85312,85312,85313,85315,85315,85316,85318,85318,85319,85321,85321,85323,85324,85326,85328,85329,85333,85335,85337,85340,85341,85343,85347,85348,85350,85356,85358,85359,85359,85361,85363,85456,85367,85369,85457,85370,85372,85458,85373,85375,85376,85378,85380,85459,85384,85386,85386,85388,85390,85393,85395,85396,85396,85398,85400,85400,85402,85404,85405,85407,85409,85409,85411,85413,85460,85414,85416,85417,85419,85421,85421,85423,85425,85461,85428,85430,85435,85437,85439,83988,83985,84132,83980,84116,83975,83971,83970,84093,83966,84124,83962,83952,83950,83949,83949,83946,83944,83941,84114,83939,83934,84123,83932,83931,83930,85135,85117,85114,85111,85111,85147,85108,85106,85104,85152,85098,85096,85095,85090,85089,85086,85085,85151,85081,85076,85181,85185,85440,85188,85192,85193,85197,85199,85199,85203,85462,85204,85208,85463,85464,85212,85216,85216,85441,85465,85219,85223,85225,85466,85226,85442,85442,85229,85233,85233,85234,85443,85467,85237,85444,85444,85242,85445,85445,85245,85247,85446,85250,85447,85447,85448,85255,85255,85256,85260,85261,85264,85449,85449,85267,85270,85272,85274,85450,85285,85288,85468,85469,85451,85291,85291,85295,85470,85296,85452,85471,85472,85299,85453,85454,85304,85455,85455,85309,85312,85315,85318,85321,85321,85324,85326,85326,85329,85331,85333,85337,85338,85340,85343,85345,85347,85350,85352,85354,85356,85359,85359,85363,85364,85456,85369,85473,85474,85457,85372,85475,85458,85375,85476,85376,85380,85459,85386,85390,85393,85396,85400,85400,85404,85477,85405,85409,85413,85460,85416,85478,85479,85417,85421,85421,85425,85427,85461,85430,85431,85433,85435,85439,85439,83988,84132,83981,83980,83975,83971,84093,83968,83967,83966,83962,83952,83949,83944,83942,83941,83939,83935,83934,83932,83932,83931,85135,85117,85111,85108,85106,85152,85101,85098,85095,85094,85086,85085,85081,85077,85076,85185,85440,85192,85480,85193,85199,85462,85464,85216,85465,85465,85219,85225,85442,85233,85443,85444,85445,85247,85481,85446,85447,85447,85255,85260,85261,85449,85270,85270,85272,85450,85283,85285,85468,85469,85291,85470,85470,85296,85471,85472,85453,85482,85455,85312,85483,85455,85483,85454,85315,85321,85484,85315,85484,85312,85321,85326,85331,85331,85333,85338,85338,85340,85345,85345,85347,85352,85352,85354,85359,85485,85474,85372,85486,85475,85375,85476,85380,85487,85488,85459,85390,85393,85400,85477,85489,85405,85413,85478,85479,85421,85421,85427,85490,85461,85431,85433,85433,85439,84132,83981,83975,83974,83971,83968,83967,83967,83962,83961,83955,83952,83944,83942,83939,83938,83935,83932,85135,85117,85108,85107,85106,85101,85100,85098,85094,85093,85090,85086,85081,85078,85077,85185,85440,85480,85491,85492,85193,85462,85493,85464,85465,85465,85225,85494,85466,85442,85443,85467,85444,85247,85495,85481,85447,85447,85260,85261,85270,85450,85496,85270,85496,85261,85497,85283,85468,85468,85469,85470,85498,85454,85483,85498,85483,85312,85454,85498,85482,85321,85331,85499,85321,85499,85500,85484,85500,85501,85484,85501,85312,85500,85484,85321,85345,85352,85345,85345,85345,85338,85359,85364,85502,85359,85502,85352,85473,85485,85372,85372,85486,85375,85476,85487,85381,85488,85390,85392,85392,85393,85477,85477,85489,85413,85478,85421,85490,85433,84132,83983,83981,83974,83973,83971,83967,83961,83942,83938,83937,83936,83935,85135,85117,85107,85106,85106,85100,85099,85098,85093,85091,85090,85081,85078,85078,85185,85440,85440,85491,85503,85504,85492,85462,85493,85465,85494,85466,85443,85505,85467,85247,85495,85447,85261,85506,85447,85506,85495,85496,85279,85507,85496,85507,85261,85279,85496,85450,85497,85468,85470,85508,85482,85498,85508,85498,85312,85482,85508,85472,85509,85500,85510,85510,85338,85511,85510,85511,85509,85501,85509,85512,85501,85512,85312,85509,85501,85500,85499,85338,85510,85499,85510,85500,85338,85499,85331,85513,85352,85502,85513,85502,85364,85352,85513,85514,85345,85514,85515,85345,85515,85338,85514,85345,85352,85516,85476,85381,85383,85488,85392,85392,85477,85413,85460,85478,85490,85433,83983,83982,83981,83973,83971,83971,83961,83960,83943,83942,83937,83936,85135,85121,85117,85106,85099,85090,85078,85440,85504,85462,85204,85493,85494,85517,85518,85467,85495,85519,85261,85507,85519,85507,85279,85519,85495,85506,85519,85506,85261,85282,85497,85470,85520,85312,85512,85520,85512,85509,85521,85509,85511,85521,85511,85338,85509,85521,85520,85312,85520,85522,85522,85472,85508,85522,85508,85312,85523,85516,85381,85381,85383,85392,85392,85413,85524,85460,85490,85525,85433,83982,83981,83981,83971,83960,83943,83937,83936,83936,85121,85120,85120,85117,85099,85091,85090,85440,85504,85204,85463,85493,85517,85526,85527,85495,85519,85519,85279,85528,85519,85528,85527,85495,85527,85529,85495,85529,85518,85282,85470,85471,85522,85530,85531,85522,85531,85472,85530,85522,85520,85532,85520,85521,85532,85521,85338,85520,85532,85530,85533,85472,85531,85533,85531,85530,85472,85533,85534,85375,85523,85381,85392,85524,85535,85392,85535,85381,85460,85525,85461,85461,85433,83981,83943,83936,85120,85120,85099,85098,85098,85091,85440,85503,85504,85463,85529,85536,85537,85529,85537,85518,85536,85529,85527,85538,85527,85528,85538,85528,85279,85527,85538,85536,85539,85518,85537,85539,85537,85536,85518,85539,85505,85282,85471,85534,85540,85514,85541,85541,85542,85543,85541,85543,85540,85515,85540,85544,85515,85544,85338,85540,85515,85514,85545,85541,85546,85545,85546,85364,85541,85545,85542,85541,85514,85513,85513,85364,85546,85513,85546,85541,85547,85533,85548,85547,85548,85542,85533,85547,85534,85533,85530,85549,85549,85542,85548,85549,85548,85533,85540,85530,85532,85532,85338,85544,85532,85544,85540,85549,85540,85543,85549,85543,85542,85540,85549,85530,85372,85375,85381,85535,85460,85550,85535,85550,85381,85460,85535,85524,85461,83981,85551,85461,85551,85460,83944,83943,85120,85120,85098,85440,85552,85505,85539,85552,85539,85536,85553,85536,85538,85553,85538,85279,85536,85553,85552,85505,85552,85554,85505,85554,85466,85547,85555,85556,85547,85556,85534,85555,85547,85542,85557,85542,85545,85557,85545,85364,85542,85557,85555,85558,85534,85556,85558,85556,85555,85534,85558,85282,85372,85381,85559,85372,85559,85473,85560,85460,85551,85560,85551,83981,85560,85381,85550,85560,85550,85460,83944,85120,85561,83944,85561,83955,85440,85503,85562,85440,85562,85120,85554,85563,85564,85554,85564,85466,85563,85554,85552,85565,85552,85553,85565,85553,85279,85552,85565,85563,85566,85466,85564,85566,85564,85563,85466,85566,85526,85558,85567,85568,85558,85568,85282,85567,85558,85555,85569,85555,85557,85569,85557,85364,85555,85569,85567,85570,85282,85568,85570,85568,85567,85282,85570,85280,85571,85473,85559,85571,85559,85381,85473,85571,85456,85560,83960,85572,85560,85572,85381,83960,85560,83981,85573,85120,85562,85573,85562,85503,85573,83955,85561,85573,85561,85120,85566,85574,85575,85566,85575,85526,85574,85566,85563,85576,85563,85565,85565,85279,85577,85565,85577,85576,85563,85576,85578,85563,85578,85574,85579,85526,85575,85575,85574,85580,85575,85580,85579,85526,85579,85581,85526,85581,85493,85570,85582,85583,85570,85583,85280,85582,85570,85567,85584,85567,85569,85584,85569,85364,85567,85584,85582,85585,85280,85583,85585,85583,85582,85280,85585,85586,85572,85587,85588,85572,85588,85381,85572,83960,85589,85572,85589,85587,85571,85587,85590,85571,85590,85456,85571,85381,85588,85571,85588,85587,85591,83955,85573,85591,85573,85503,83955,85591,83956,85592,85574,85593,85592,85593,85594,85594,85595,85596,85594,85596,85592,85574,85592,85597,85574,85597,85598,85599,85579,85600,85599,85600,85598,85579,85599,85601,85581,85601,85602,85581,85602,85493,85601,85581,85579,85580,85598,85600,85580,85600,85579,85598,85580,85574,85576,85595,85594,85578,85594,85593,85578,85593,85574,85594,85578,85576,85595,85576,85577,85595,85577,85279,85585,85603,85604,85585,85604,85586,85603,85585,85582,85605,85582,85584,85605,85584,85364,85582,85605,85603,85606,85586,85604,85606,85604,85603,85586,85606,85595,85607,85587,85608,85607,85608,83959,85587,85607,85609,85590,85609,85610,85590,85610,85456,85609,85590,85587,85589,83959,85608,85589,85608,85587,83959,85589,83960,85611,83956,85591,85611,85591,85503,83956,85611,83957,85601,85612,85613,85613,85493,85602,85613,85602,85601,85614,85601,85599,85614,85599,85598,85601,85614,85612,85615,85616,85617,85615,85617,85612,85616,85615,85364,85616,85493,85613,85613,85612,85617,85613,85617,85616,85618,85598,85597,85618,85597,85592,85598,85618,85603,85606,85592,85596,85606,85596,85595,85606,85603,85618,85606,85618,85592,85605,85612,85619,85605,85619,85603,85605,85364,85615,85605,85615,85612,85614,85603,85619,85614,85619,85612,85603,85614,85598,85620,85609,85621,85620,85621,83958,85609,85620,85622,85610,85622,85623,85610,85623,85456,85622,85610,85609,85607,83958,85621,85607,85621,85609,83958,85607,83959,85624,83957,85611,85624,85611,85503,83957,85624,83958,85625,85493,85616,85625,85616,85364,85493,85625,85211,85626,85622,85627,85626,85627,85503,85626,85456,85623,85626,85623,85622,85624,85622,85620,85624,85620,83958,85624,85503,85627,85624,85627,85622,85628,85211,85625,85628,85625,85364,85211,85628,85209,85629,85456,85626,85629,85626,85503,85456,85629,85366,85630,85209,85628,85630,85628,85364,85209,85630,85463,85631,85366,85629,85631,85629,85503,85366,85631,85364,85631,85463,85630,85631,85630,85364,85463,85631,85503,85409,85408,85632,85633,85634,85635,85636,85637,85638,85639,85640,85641,85641,85642,85643,85644,85645,85646,85647,85648,85649,85649,85650,85651,85652,85653,85654,85655,85656,85657,85658,85659,85660,85660,85661,85662,85663,85664,85665,85666,85667,85668,85669,85670,85671,85672,85673,85674,85674,85675,85676,85677,85678,85679,85680,85681,85682,85683,85684,85685,85686,85687,85688,85688,85689,85690,85690,85691,85692,85693,85694,85695,85695,85696,85697,85698,85699,85700,85701,85702,85703,85704,85705,85706,85707,85708,85709,85709,85710,85711,85711,85712,85713,85714,85715,85716,85717,85718,85719,85720,85721,85722,85722,85723,85724,85725,85726,85727,85727,85728,85729,85730,85731,85732,85732,85733,85734,85734,85735,85736,85736,85737,85738,85738,85739,85740,85740,85741,85742,85742,85743,85744,85745,85746,85747,85748,85749,85750,85750,85751,85752,85752,85753,85754,85755,85756,85757,85757,85758,85759,85760,85761,85762,85763,85764,85765,85765,85766,85767,84012,84011,84081,84007,84006,84094,84094,84107,84005,84002,84001,84000,84000,83999,83998,83997,83996,83995,83992,83991,83990,83989,83988,85439,85436,85435,85434,85434,85433,85432,85432,85431,85430,85429,85428,85461,85461,85525,85490,85490,85427,85426,85422,85421,85420,85418,85417,85479,85479,85478,85416,85415,85414,85460,85460,85524,85413,85410,85409,85632,85633,85635,85768,85636,85638,85769,85639,85641,85643,85644,85646,85770,85647,85649,85651,85771,85652,85654,85655,85657,85772,85773,85658,85660,85660,85662,85774,85663,85665,85775,85666,85668,85776,85669,85671,85777,85672,85674,85676,85677,85679,85680,85683,85685,85778,85688,85690,85692,85693,85695,85697,85697,85698,85700,85700,85701,85703,85704,85706,85707,85707,85709,85711,85720,85722,85724,85725,85727,85729,85779,85730,85732,85732,85734,85736,85738,85740,85742,85780,85748,85750,85750,85752,85754,85755,85757,85759,85760,85762,85781,85765,85767,84013,84012,84081,84010,84008,84007,84094,84094,84005,84004,84002,84000,83998,83997,83995,83994,83993,83992,83990,83990,83989,85439,85436,85434,85432,85432,85430,85429,85429,85461,85490,85490,85426,85425,85423,85422,85420,85418,85479,85416,85415,85460,85413,85411,85410,85632,85633,85768,85636,85769,85639,85643,85782,85644,85770,85647,85651,85771,85771,85654,85783,85783,85655,85772,85773,85660,85774,85774,85663,85775,85775,85666,85776,85784,85672,85676,85785,85677,85680,85786,85683,85778,85688,85692,85787,85788,85693,85697,85697,85700,85703,85704,85707,85711,85719,85720,85724,85725,85729,85779,85779,85732,85736,85736,85738,85742,85780,85750,85754,85754,85755,85759,85759,85760,85781,84008,84094,84004,84002,83998,83997,83997,83994,83993,83993,83990,85439,85437,85436,85432,85429,85490,85425,85423,85420,85419,85418,85416,85415,85415,85413,85412,85411,85632,85633,85769,85643,85789,85647,85771,85783,85790,85773,85774,85774,85775,85776,85791,85784,85676,85676,85785,85680,85786,85778,85792,85686,85688,85787,85788,85697,85703,85704,85711,85713,85717,85719,85724,85736,85742,85744,85780,85754,85759,85759,85781,85763,84008,84004,84003,84002,83997,83993,83993,85439,85438,85437,85432,85429,85429,85425,85424,85418,85415,85412,85411,85633,85636,85769,85789,85782,85770,85647,85783,85790,85774,85776,85791,85676,85680,85786,85792,85793,85686,85787,85788,85788,85703,85794,85704,85713,85795,85796,85717,85724,85736,85744,85745,85797,85780,85759,84009,84008,84003,84003,84002,83993,83993,85438,85437,85437,85429,85424,85419,85418,85412,85412,85411,85636,85769,85782,85770,85770,85783,85772,85790,85776,85669,85777,85791,85680,85798,85786,85793,85686,85788,85794,85796,85724,85799,85779,85736,85745,85747,85797,85759,84009,84003,83993,83993,85437,85424,85419,85412,85636,85769,85770,85772,85790,85669,85777,85777,85680,85682,85798,85793,85686,85686,85794,85800,85796,85799,85801,85725,85779,85745,85747,85759,85763,84009,83993,85424,85419,85636,85769,85769,85772,85790,85777,85682,85802,85777,85802,85790,85682,85798,85686,85686,85800,85803,85796,85801,85725,85725,85745,85747,84010,84009,85424,85769,85790,85804,85769,85804,85419,85682,85686,85805,85805,85790,85802,85805,85802,85682,85686,85803,85806,85716,85796,85725,85725,85747,85763,84012,84010,85424,85807,85419,85804,85807,85804,85790,85419,85807,85423,85805,85806,85808,85805,85808,85790,85806,85805,85686,85716,85725,85763,84013,84012,85424,85809,85807,85810,85809,85810,85806,85807,85809,85423,85807,85790,85808,85808,85806,85810,85808,85810,85807,85714,85716,85763,84013,85424,85811,84013,85811,85765,85812,85423,85809,85812,85809,85806,85423,85812,85424,85714,85763,85765,85812,85704,85813,85812,85813,85424,85704,85812,85806,85714,85765,85811,85714,85811,85424,85795,85424,85813,85795,85813,85704,85814,85714,85424,85424,85795,85815,85815,85814,85424,81645,80938,80937,80936,80935,81224,81224,81197,81174,80933,80932,80931,80929,80928,80927,80926,80925,85816,85816,85817,85818,85819,85820,85821,85821,85822,81403,81401,81400,81677,81677,81691,81690,81690,81399,81398,81396,81395,81662,81662,81394,81393,81393,81392,81645,81645,80937,80936,80936,81224,81174,80934,80933,80931,80929,80927,80926,80926,85816,85818,85819,85821,81403,81402,81401,81677,81677,81690,81398,81396,81662,81393,81393,81645,80936,80936,81174,80934,80934,80931,80930,80929,80926,85818,85819,81403,81402,81402,81677,81398,81397,81396,81393,81393,80936,80934,80934,80930,80929,80929,85818,85819,85819,81402,81398,81397,81393,80934,80934,80929,85819,85819,81398,81397,81397,80934,85819,83568,81506,81679,81679,81505,81504,81502,81501,81669,81669,81500,81499,81497,81496,81668,81668,81495,81494,81492,81491,81490,81490,81489,81488,81487,81486,81650,81484,81483,81709,81709,81707,81649,81479,81478,81648,81648,81647,81477,81476,81475,81667,81667,81756,81729,81729,81719,81706,81706,81692,81666,81471,81470,81678,81678,81888,81469,81468,81467,81773,81773,81705,81665,81465,81464,81463,81458,81457,81646,81455,81454,81453,81452,81451,81450,81447,81446,81445,81445,81444,81443,81440,81439,81664,81435,81434,81433,81432,81431,81430,81430,81429,81754,81754,81428,81427,81427,81426,81425,81424,81423,81422,81420,81419,81663,81663,81418,81417,81417,81416,81415,81414,81413,81412,85823,85824,85825,85825,85826,85827,85828,85829,85830,85831,85832,85833,85834,85835,85836,85837,85838,85839,85839,85840,85841,85841,85842,85843,85844,85845,85846,85846,85847,85848,85848,85849,85850,85851,85852,85853,85854,85855,85856,85857,85858,85859,85860,85861,85862,85862,85863,85864,85864,85865,85866,85867,85868,85869,85870,85871,81983,81983,81982,81981,81980,81979,81978,81977,81976,81975,81975,81974,81973,81970,81969,81968,81967,81966,82118,81964,81963,82163,82163,81962,81961,81958,82117,81957,81956,81955,81954,81953,81952,81951,81946,81945,82132,82132,82153,82162,82162,82116,81944,81943,81942,82131,81940,81939,82115,82115,82142,82114,81937,81936,82130,82130,82244,82238,82238,82159,81935,81934,81933,83603,83600,83599,83631,83595,83594,83593,83592,83591,83630,83630,83590,83589,83589,83588,83587,83648,83656,83667,83667,83692,83636,83581,83580,83635,83578,83577,83628,83575,83574,83573,83573,83572,83571,83570,83569,83568,83568,81679,81504,81502,81669,81499,81497,81668,81494,81487,81650,81485,81485,81484,81709,81709,81649,81482,81479,81648,81477,81476,81667,81729,81729,81706,81666,81471,81678,81469,81469,81468,81773,81773,81665,81466,81465,81463,81462,81458,81646,81456,81456,81455,81453,81452,81450,81449,81445,81443,81442,81440,81664,81438,81435,81433,81432,81432,81430,81754,81754,81427,81425,81425,81424,81422,81420,81663,81417,81417,81415,81414,81414,81412,85872,85823,85825,85827,85828,85830,85831,85831,85833,85834,85834,85836,85873,85837,85839,85841,85841,85843,85874,85874,85844,85846,85846,85848,85850,85857,85859,85860,85860,85862,85864,85875,85867,85869,85870,81983,81981,81980,81978,81977,81977,81975,81973,81967,82118,81965,81965,81964,82163,82163,81961,81960,81959,81958,81957,81956,81954,81953,81946,82132,82162,81943,82131,81941,81940,82115,82114,81937,82130,82238,82238,81935,81934,81934,83603,83602,83601,83600,83631,83595,83593,83592,83592,83630,83589,83589,83587,83586,83642,83648,83667,83667,83636,83584,83582,83581,83635,83578,83628,83576,83576,83575,83573,83573,83571,83570,83570,83568,81504,81503,81502,81499,81498,81497,81494,81488,81487,81485,81485,81709,81482,81480,81479,81477,81476,81729,81666,81472,81471,81469,81469,81773,81466,81465,81462,81461,81459,81458,81456,81452,81449,81448,81447,81445,81442,81441,81440,81438,81436,81435,81432,81432,81754,81425,81421,81420,81417,81417,81414,85872,85823,85827,85828,85876,85837,85841,85874,85846,85850,85860,85864,85877,85860,85877,85857,85878,85875,85869,85879,85870,81981,81980,81977,81973,81967,81965,82163,81956,81953,81951,81946,82162,81944,81944,81943,81941,81940,82114,81938,81938,81937,82238,82238,81934,83602,83601,83631,83598,83595,83592,83589,83640,83642,83667,83582,83635,83579,83579,83578,83576,83576,83573,83570,83570,81504,81503,81503,81499,81498,81498,81494,81493,81488,81485,81482,81480,81477,81476,81476,81666,81474,81473,81472,81469,81469,81466,81465,81459,81456,81453,81447,81442,81441,81441,81438,81437,81436,81432,81425,81421,81417,85872,85823,85828,85831,85876,85841,85874,85874,85850,85851,85880,85857,85877,85880,85877,85864,85857,85880,85881,85878,85869,85882,85882,85879,81981,81981,81980,81973,81967,82163,81960,81957,81956,81951,81947,81946,81944,81941,81940,81938,81938,82238,83602,83602,83601,83598,83637,83640,83667,83583,83582,83579,83576,83570,81503,81503,81498,81493,81488,81482,81481,81476,81474,85883,81476,85883,81480,81473,81469,81465,81460,81459,81453,81437,81436,81425,81421,85872,85823,85831,85834,85884,85831,85884,85823,85885,85876,85874,85864,85866,85886,85886,85881,85880,85886,85880,85864,85878,85882,81981,81981,81973,81972,81968,81967,81960,81948,81947,81944,81938,83602,85887,81938,85887,81941,83602,83598,83597,83629,83637,83667,83583,83579,83576,83576,81503,81493,81490,81488,81481,85888,81480,85883,85888,85883,81474,81480,85888,81481,81474,81473,81465,81460,81453,81452,81441,81437,81425,81422,81421,85823,85873,85885,85874,85889,85881,85886,85889,85886,85866,85881,85889,85890,85866,85878,81981,81981,81972,81971,81968,81960,81959,81948,81944,81941,85887,83597,85891,85887,85891,81941,83597,85887,83602,83585,83629,83667,83583,83576,81493,85892,81481,85888,85892,85888,81474,81481,85892,81490,81474,81465,81461,81441,81425,85893,81441,85893,81447,81422,85823,85894,81422,85894,81425,85873,85874,85851,85866,81981,85895,85866,85895,85896,85889,85896,85897,85889,85897,85890,85896,85889,85866,81959,81957,85898,81959,85898,81968,85899,81941,85891,85899,85891,83597,81941,85899,81948,83586,83585,83667,83584,83583,81493,81461,85900,85901,81461,85901,81474,85900,81490,85892,85892,81474,85901,85892,85901,85900,85902,81425,85894,85894,85823,85903,85894,85903,85902,85893,85902,85904,85893,85904,81447,85902,85893,81425,85873,85851,85905,85873,85905,85834,85906,85896,85907,85906,85907,81971,85896,85906,85908,85897,85908,85909,85897,85909,85890,85908,85897,85896,85895,81971,85907,85895,85907,85896,81971,85895,81981,81957,81951,85910,85910,81968,85898,85910,85898,81957,85911,81948,85899,85911,85899,83597,81948,85911,81949,83586,83667,83584,83584,81493,81492,85912,81490,85900,85912,85900,81461,81490,85912,81492,85904,85913,85914,85904,85914,81447,85913,85904,85902,85915,85902,85903,85915,85903,85823,85902,85915,85913,85916,81447,85914,85916,85914,85913,81447,85916,81448,85851,85853,85917,85917,85834,85905,85917,85905,85851,85909,85918,85919,85909,85919,85890,85918,85909,85908,85920,85908,85906,85920,85906,81971,85908,85920,85918,85921,85890,85919,85921,85919,85918,85890,85921,85856,85922,81968,85910,85922,85910,81951,81968,85922,81970,85923,81949,85911,85923,85911,83597,81949,85923,81950,83586,83584,81492,81461,81460,85924,85924,81492,85912,85924,85912,81461,85913,85834,85925,85925,81448,85916,85925,85916,85913,85834,85913,85915,85915,85823,85884,85915,85884,85834,85926,85918,85927,85926,85927,81970,85918,85926,85928,85921,85928,85929,85921,85929,85856,85928,85921,85918,85920,81970,85927,85920,85927,85918,81970,85920,81971,81951,81950,85930,81951,85930,85931,85922,85931,85932,85922,85932,81970,85931,85922,81951,85923,83596,85933,85923,85933,81950,83596,85923,83597,85934,81492,85924,85924,81460,85935,85924,85935,85934,81492,85934,85936,81492,85936,83586,85937,81448,85925,85925,85834,85938,85925,85938,85937,81448,85937,85939,81448,85939,81452,85940,85931,85941,85940,85941,85942,85940,81970,85932,85940,85932,85931,85943,85931,85930,85943,85930,81950,85943,85942,85941,85943,85941,85931,85944,85928,85945,85944,85945,85942,85944,85856,85929,85944,85929,85928,85940,85928,85926,85940,85926,81970,85940,85942,85945,85940,85945,85928,83596,83595,85946,85946,81950,85933,85946,85933,83596,85936,85947,85948,85936,85948,83586,85947,85936,85934,85949,85934,85935,85949,85935,81460,85934,85949,85947,85950,83586,85948,85950,85948,85947,83586,85950,83589,85951,85853,85952,85951,85952,85953,85951,85834,85917,85951,85917,85853,85937,85953,85954,85954,81452,85939,85954,85939,85937,85951,85937,85938,85951,85938,85834,85937,85951,85953,85944,85955,85956,85944,85956,85856,85955,85944,85942,85957,85942,85943,85957,85943,81950,85942,85957,85955,85958,85856,85956,85958,85956,85955,85856,85958,85854,83595,83589,85959,83595,85959,85960,85946,85960,85961,85946,85961,81950,85960,85946,83595,81460,81452,85962,85962,85963,85964,85962,85964,81460,85947,85963,85965,85965,83589,85950,85965,85950,85947,85963,85947,85949,85949,81460,85964,85949,85964,85963,85853,85854,85966,85966,85967,85968,85966,85968,85853,85953,85967,85969,85969,81452,85954,85969,85954,85953,85967,85953,85952,85952,85853,85968,85952,85968,85967,85970,85960,85971,85971,85972,85973,85971,85973,85970,85961,85970,85974,85961,85974,81950,85970,85961,85960,85959,85975,85976,85959,85976,85960,85975,85959,83589,85975,85972,85971,85971,85960,85976,85971,85976,85975,85977,85978,85979,85977,85979,85955,85978,85977,85972,85978,85854,85958,85958,85955,85979,85958,85979,85978,85970,85955,85957,85957,81950,85974,85957,85974,85970,85977,85970,85973,85977,85973,85972,85970,85977,85955,85980,85967,85981,85980,85981,85972,85980,81452,85969,85980,85969,85967,85978,85967,85966,85978,85966,85854,85978,85972,85981,85978,85981,85967,85975,85963,85982,85975,85982,85972,85975,83589,85965,85975,85965,85963,85980,85963,85962,85980,85962,81452,85980,85972,85982,85980,85982,85963,85983,85984,85985,85986,85987,85988,85989,85990,85991,85992,85993,85994,85995,85996,85997,85998,85999,86000,86001,86002,86003,86004,86005,86006,86007,86008,86009,86009,86010,86011,86012,86013,86014,86015,86016,86017,86017,86018,86019,86020,86021,86022,86022,86023,86024,86024,86025,86026,86027,86028,86029,86029,86030,86031,86032,86033,86034,86034,86035,86036,86037,86038,86039,86039,86040,86041,86041,86042,86043,86044,86045,86046,86046,86047,86048,86049,86050,86051,86051,86052,86053,86053,86054,86055,86056,86057,86058,86059,86060,86061,86062,86063,86064,86065,86066,86067,86068,86069,86070,86071,86072,86073,86073,86074,86075,86076,86077,86078,86079,86080,86081,86082,86083,86084,86085,86086,86087,86088,86089,86090,86091,86092,86093,86093,86094,86095,86095,86096,86097,86098,85983,85985,85985,85986,85988,86099,85989,85991,85992,85994,86100,86101,85995,85997,85998,86000,86001,86001,86003,86004,86004,86006,86102,86007,86009,86011,86103,86012,86014,86015,86017,86019,86020,86022,86024,86027,86029,86031,86104,86032,86034,86037,86039,86041,86041,86043,86105,86044,86046,86048,86051,86053,86055,86059,86061,86106,86062,86064,86107,86108,86065,86067,86067,86068,86070,86070,86071,86073,86073,86075,86076,86079,86081,86082,86082,86084,86109,86085,86087,86110,86110,86088,86090,86091,86093,86095,86095,86097,86111,86112,86098,85985,85985,85988,86099,86099,85991,86113,85992,86100,86101,86101,85997,86114,86007,86011,86115,86115,86103,86014,86116,86015,86019,86117,86020,86024,86026,86027,86031,86104,86034,86036,86037,86041,86105,86044,86048,86118,86051,86055,86056,86119,86059,86106,86108,86067,86070,86070,86073,86076,86079,86082,86109,86091,86095,86111,86112,85985,86099,86099,86113,85992,85992,86101,86114,86007,86115,86014,86014,86116,86019,86117,86024,86026,86026,86031,86120,86121,86104,86036,86036,86037,86105,86105,86044,86118,86051,86056,86058,86119,86106,86062,86107,86108,86070,86070,86076,86078,86079,86109,86085,86090,86091,86111,86111,86112,86099,85992,86114,85998,86014,86019,86122,86123,86117,86026,86026,86120,86121,86121,86036,86105,86105,86118,86124,86049,86051,86058,86058,86119,86062,86107,86070,86078,86110,86090,86111,86111,86099,85992,85992,85998,86001,86007,86014,86122,86125,86123,86026,86026,86121,86105,86105,86124,86126,86049,86058,86062,86062,86107,86078,86110,86111,85992,86007,86122,86125,86125,86026,86105,86105,86126,86127,86049,86062,86078,86110,85992,86128,86110,86128,86085,86125,86105,86129,86125,86129,86007,86130,86049,86078,86131,86085,86128,86131,86128,85992,86085,86131,86079,86132,86007,86129,86132,86129,86105,86007,86132,86102,86127,86130,86078,86133,86079,86131,86133,86131,85992,86079,86133,86078,86134,86102,86132,86134,86132,86105,86102,86134,86004,86127,86078,86135,86127,86135,86105,86133,86001,86136,86133,86136,86078,86001,86133,85992,86137,86004,86134,86137,86134,86105,86004,86137,86001,86137,86078,86136,86137,86136,86001,86137,86105,86135,86137,86135,86078,86138,86139,86140,86141,86142,86143,86143,86138,86140,86140,86141,86143,86144,86145,86146,86146,86147,86148,86148,86149,86150,86151,86152,86153,86154,86155,86156,86156,86157,86158,86158,86159,86160,86160,86161,86162,86162,86163,86164,86165,86166,86167,86167,86168,86169,86170,86171,86172,86173,86174,86175,86175,86176,86177,86177,86178,86179,86180,86181,86182,86182,86183,86184,86185,86186,86187,86187,86188,86189,86190,86191,86192,86193,86194,86195,86195,86196,86197,86198,86199,86200,86200,86201,86202,86203,86033,86032,86032,86104,86121,86121,86120,86031,86028,86027,86026,86021,86020,86117,86117,86123,86125,86125,86122,86019,86016,86015,86116,86116,86014,86013,86013,86012,86103,86103,86115,86011,86008,86007,86102,86005,86004,86003,86002,86001,86000,85999,85998,86114,85996,85995,86101,86101,86100,85994,85993,85992,86113,86113,85991,85990,85990,85989,86099,86099,85988,85987,86204,86205,86206,86206,86207,86208,86209,86210,86211,86211,86212,86213,86214,86215,86216,86217,86218,86219,86219,86220,86221,86222,86223,86224,86225,86226,86227,86227,86228,86229,86229,86230,86231,86232,86233,86234,86234,86235,86236,86236,86237,86238,86239,86240,86241,86241,86242,86243,86244,86245,86246,86247,86248,86249,86249,86250,86251,86252,86253,86254,86254,86255,86256,86256,86257,86258,86259,86260,86261,86261,86262,86263,86263,86264,86265,86265,86266,86267,86268,86269,86270,86270,86271,86272,86272,86273,86274,86275,86276,86277,86277,86278,86279,86280,86281,86282,86282,86283,86284,86284,86285,86286,86287,86288,86289,86289,86290,86291,86292,86293,86294,86295,86296,86297,86298,86299,86300,86300,86301,86302,86302,86303,86304,86304,86305,86306,86307,86308,86309,86310,86311,86312,86312,86313,86314,86314,86315,86316,86317,86318,86319,86320,86321,86322,86322,86323,86324,86324,86325,86326,86326,86327,86328,86328,86329,86330,86331,86332,86333,86333,86334,86335,86336,86337,86338,86339,86340,86341,86342,86343,86344,86344,86345,86346,86346,86347,86348,86348,86349,86350,86350,86351,86352,86353,86354,86355,86355,86356,86357,86358,86359,86360,86361,86362,86363,86364,86365,86366,86366,86367,86368,86369,86370,86371,86371,86372,86373,86374,86375,86376,86376,86377,86378,86379,86380,86381,86382,86144,86146,86148,86150,86151,86151,86153,86383,86154,86156,86158,86158,86160,86162,86162,86164,86384,86165,86167,86169,86170,86172,86385,86173,86175,86177,86177,86179,86386,86386,86180,86182,86387,86185,86187,86187,86189,86190,86190,86192,86388,86389,86193,86195,86195,86197,86198,86198,86200,86202,86203,86032,86121,86121,86031,86030,86028,86026,86025,86021,86117,86125,86016,86116,86013,86013,86103,86011,86009,86008,86102,86005,86003,86002,86002,86000,85999,85999,86114,85997,85996,86101,85994,85994,85993,86113,85990,86099,85987,85987,86204,86206,86390,86209,86211,86216,86217,86219,86222,86224,86391,86225,86227,86229,86232,86234,86236,86239,86241,86243,86243,86244,86246,86246,86247,86249,86249,86251,86392,86252,86254,86256,86256,86258,86393,86259,86261,86263,86263,86265,86267,86268,86270,86272,86272,86274,86394,86275,86277,86279,86280,86282,86284,86284,86286,86395,86287,86289,86291,86291,86292,86294,86295,86297,86396,86302,86304,86306,86306,86307,86309,86310,86312,86314,86314,86316,86397,86317,86319,86398,86320,86322,86324,86324,86326,86328,86331,86333,86335,86399,86336,86338,86339,86341,86342,86344,86346,86348,86348,86350,86352,86353,86355,86357,86358,86360,86400,86361,86363,86364,86364,86366,86368,86369,86371,86373,86373,86374,86376,86401,86379,86381,86381,86382,86146,86148,86151,86383,86154,86158,86162,86402,86165,86169,86170,86385,86403,86173,86177,86386,86386,86182,86184,86387,86187,86190,86389,86195,86198,86198,86202,86404,86203,86121,86030,86029,86028,86025,86022,86021,86125,86017,86016,86013,86013,86011,86010,86009,86102,86006,86006,86005,86002,86002,85999,85997,85994,86113,85990,85990,85987,86206,86390,86211,86213,86216,86219,86221,86222,86391,86405,86225,86229,86231,86232,86236,86238,86238,86239,86243,86243,86246,86249,86249,86392,86406,86406,86252,86256,86393,86259,86263,86263,86267,86407,86408,86268,86272,86272,86394,86409,86409,86275,86279,86280,86284,86395,86287,86291,86294,86294,86295,86396,86300,86302,86306,86306,86309,86410,86410,86310,86314,86398,86320,86324,86324,86328,86330,86411,86331,86335,86399,86338,86339,86344,86348,86352,86412,86353,86357,86413,86361,86364,86364,86368,86369,86369,86373,86376,86401,86381,86146,86146,86148,86383,86162,86384,86414,86162,86414,86154,86402,86169,86170,86415,86173,86386,86386,86184,86387,86387,86190,86388,86416,86389,86198,86404,86203,86030,86022,86125,86019,86017,86013,86010,86009,86006,86002,85996,85994,85990,85990,86206,86208,86390,86213,86417,86214,86216,86221,86405,86225,86231,86418,86232,86238,86238,86243,86249,86406,86256,86393,86393,86263,86407,86408,86272,86409,86409,86279,86419,86280,86395,86287,86287,86294,86396,86298,86300,86306,86410,86314,86397,86398,86324,86330,86411,86335,86420,86420,86399,86339,86344,86352,86412,86412,86357,86421,86413,86364,86369,86369,86376,86378,86422,86401,86146,86423,86154,86414,86423,86414,86384,86154,86423,86424,86425,86402,86170,86415,86386,86387,86387,86388,86416,86416,86198,86404,86404,86030,86029,86023,86022,86019,86010,86009,86002,85997,85996,85990,86208,86390,86417,86426,86214,86221,86231,86418,86238,86238,86249,86406,86406,86393,86407,86409,86419,86280,86280,86287,86396,86410,86397,86427,86317,86398,86330,86330,86411,86420,86420,86339,86342,86412,86421,86428,86429,86413,86369,86369,86378,86430,86430,86422,86146,86425,86170,86403,86431,86415,86387,86416,86404,86432,86416,86432,86387,86404,86029,86025,86023,86019,86018,86017,86010,86002,85997,85990,86208,86426,86221,86222,86231,86238,86406,86409,86280,86396,86410,86427,86433,86433,86317,86330,86330,86420,86342,86344,86412,86428,86429,86369,86430,86430,86146,86383,86434,86425,86403,86435,86387,86432,86435,86432,86404,86387,86435,86431,86018,86017,86002,86002,85997,86208,86405,86231,86406,86408,86409,86396,86433,86330,86342,86344,86428,86358,86436,86429,86430,86430,86383,86424,86434,86403,86437,86438,86431,86435,86438,86435,86404,86431,86438,86437,86002,86208,86439,86002,86439,86018,86405,86406,86407,86407,86408,86396,86433,86342,86440,86433,86440,86410,86358,86400,86441,86358,86441,86344,86400,86436,86430,86442,86424,86423,86442,86423,86384,86424,86442,86430,86443,86437,86438,86438,86404,86444,86438,86444,86443,86437,86443,86445,86437,86445,86434,86446,86018,86439,86446,86439,86208,86018,86446,86023,86222,86405,86407,86396,86447,86448,86396,86448,86407,86342,86344,86449,86449,86410,86440,86449,86440,86342,86400,86430,86450,86450,86344,86441,86450,86441,86400,86384,86434,86451,86384,86451,86452,86442,86452,86453,86442,86453,86430,86452,86442,86384,86404,86025,86454,86454,86455,86456,86454,86456,86404,86443,86455,86457,86457,86434,86445,86457,86445,86443,86456,86443,86444,86456,86444,86404,86443,86456,86455,86458,86023,86446,86458,86446,86208,86023,86458,86024,86222,86407,86459,86222,86459,86426,86447,86460,86461,86461,86407,86448,86461,86448,86447,86462,86410,86449,86462,86449,86344,86410,86462,86306,86452,86463,86464,86464,86430,86453,86464,86453,86452,86465,86452,86451,86465,86451,86434,86452,86465,86463,86466,86450,86467,86466,86467,86463,86450,86466,86344,86450,86430,86464,86464,86463,86467,86464,86467,86450,86025,86024,86468,86468,86469,86470,86468,86470,86025,86455,86469,86471,86471,86434,86457,86471,86457,86455,86469,86455,86454,86454,86025,86470,86454,86470,86469,86208,86417,86472,86472,86024,86458,86472,86458,86208,86473,86407,86461,86473,86461,86460,86473,86426,86459,86473,86459,86407,86463,86474,86475,86475,86344,86466,86475,86466,86463,86476,86463,86465,86476,86465,86434,86463,86476,86474,86477,86462,86478,86477,86478,86474,86462,86477,86306,86462,86344,86475,86475,86474,86478,86475,86478,86462,86479,86472,86480,86479,86480,86481,86472,86479,86024,86472,86417,86482,86482,86481,86480,86482,86480,86472,86469,86481,86483,86483,86434,86471,86483,86471,86469,86479,86469,86468,86479,86468,86024,86469,86479,86481,86484,86426,86473,86473,86460,86485,86473,86485,86484,86426,86484,86486,86426,86486,86417,86477,86487,86488,86477,86488,86306,86487,86477,86474,86489,86474,86476,86489,86476,86434,86474,86489,86487,86490,86306,86488,86490,86488,86487,86306,86490,86298,86491,86481,86492,86492,86460,86493,86492,86493,86491,86483,86491,86494,86483,86494,86434,86491,86483,86481,86482,86484,86495,86482,86495,86481,86482,86417,86486,86482,86486,86484,86492,86484,86485,86492,86485,86460,86492,86481,86495,86492,86495,86484,86490,86496,86497,86490,86497,86298,86496,86490,86487,86498,86487,86489,86498,86489,86434,86487,86498,86496,86499,86298,86497,86499,86497,86496,86298,86499,86500,86499,86491,86501,86499,86501,86500,86491,86499,86496,86494,86496,86498,86494,86498,86434,86496,86494,86491,86493,86500,86501,86493,86501,86491,86500,86493,86460,86502,82104,82103,82103,82129,82128,82101,82100,82141,82141,82158,82183,82183,82182,82099,82094,82093,82140,82140,82151,82170,82170,82198,82092,82091,82090,82089,82087,82086,82085,82084,82083,82082,82081,82080,82079,82139,82073,82072,82072,82071,82070,82070,82069,82068,82067,82066,82065,82065,82064,82063,82063,82062,82323,82319,82318,82317,82317,82316,82315,82312,82311,82554,82554,82645,82677,82677,82767,82553,82309,82308,82307,82307,82306,82552,82552,82616,82586,82304,82303,82551,82551,82550,82302,82301,82300,82800,82800,82615,82585,82585,82299,82298,82288,82287,82549,82549,82286,82285,82285,82284,82283,82283,82282,82736,82736,82548,82281,82280,82279,82584,82584,82812,82795,82795,82709,82278,82277,82276,82547,82272,82271,82583,82269,82268,82546,82546,82267,82266,82264,82263,82545,82261,82260,82544,82258,82257,82543,82255,82254,82542,82250,82249,82541,82541,82614,82582,82247,82246,86503,86503,86504,86505,86506,86507,86508,86508,86509,86510,86510,86511,86512,86512,86513,86514,86515,86516,86517,86518,86519,86520,86521,86522,86523,86523,86524,86525,86526,86527,86528,86528,86529,86530,86530,86531,86532,86533,86534,86535,86536,86537,86538,86539,86540,86541,86542,86543,86544,86545,86502,82103,82103,82128,82102,82102,82101,82141,82141,82183,82099,82094,82140,82170,82170,82092,82091,82088,82087,82085,82084,82082,82081,82127,82139,82072,82072,82070,82068,82067,82065,82063,82063,82323,82322,82317,82315,82314,82312,82554,82677,82677,82553,82310,82310,82309,82307,82307,82552,82586,82304,82551,82302,82302,82301,82800,82800,82585,82298,82289,82288,82549,82285,82283,82736,82281,82280,82584,82584,82795,82278,82277,82547,82275,82272,82583,82270,82269,82546,82266,82264,82545,82262,82261,82544,82259,82258,82543,82256,82255,82542,82253,82250,82541,82582,82247,86503,86505,86506,86508,86510,86510,86512,86514,86515,86517,86546,86547,86518,86520,86520,86521,86523,86523,86525,86526,86526,86528,86530,86530,86532,86548,86548,86533,86535,86536,86538,86549,86549,86539,86541,86542,86544,86550,86545,82103,82102,82102,82141,82099,82094,82170,82091,82089,82088,82085,82084,82081,82079,82074,82127,82072,82072,82068,82067,82067,82063,82322,82313,82312,82677,82677,82310,82307,82307,82586,82305,82305,82304,82302,82302,82800,82298,82289,82549,82285,82285,82736,82281,82281,82584,82278,82273,82272,82270,82270,82269,82266,82262,82261,82259,82258,82256,82255,82255,82253,82252,82250,82582,82248,82248,82247,86505,86551,86506,86510,86547,86520,86523,86526,86530,86548,86552,86536,86549,86549,86541,86542,86542,86550,86553,86554,86545,82102,82102,82099,82098,82094,82091,82089,82089,82085,82084,82075,82074,82072,82067,82322,86555,82067,86555,82072,82313,82677,82307,82307,82305,82302,82302,82298,82297,82290,82289,82285,82285,82281,82278,82274,82273,82270,82264,82262,82259,82258,82255,82252,82250,82248,86505,86551,86510,86514,86556,86547,86523,86526,86548,86535,86552,86549,86542,86553,86554,82102,82102,82098,82097,82095,82094,82089,82084,82079,86557,82084,86557,82089,86558,82072,86555,86558,86555,82322,82072,86558,82075,82314,82313,82307,82307,82302,82297,82290,82285,82278,82274,82270,82266,82264,82259,82258,82258,82252,82251,82251,82250,86505,86559,86551,86514,86556,86523,86526,86535,86552,86542,86542,86553,82102,82102,82097,82096,86560,82089,86557,86560,86557,82079,82089,86560,82095,86561,82075,86558,86561,86558,82322,82075,86561,82076,82317,82314,82307,82307,82297,82296,82291,82290,82278,82274,82266,82265,82264,82258,82251,82251,86505,86562,86562,86559,86514,86546,86556,86526,86535,86542,82102,86563,82095,86560,86563,86560,82079,82095,86563,82096,82322,82321,86564,86564,82076,86561,86564,86561,82322,82319,82317,82307,82292,82291,82278,82251,86562,86514,86546,86526,86535,82102,82096,86565,82102,86565,86535,82079,82078,86566,86566,82096,86563,86566,86563,82079,82321,82320,86567,86567,82076,86564,86567,86564,82321,82320,82319,82307,82292,82278,82277,82264,82251,86514,86546,86535,86568,86546,86568,86515,86569,82096,86566,86566,82078,86570,86566,86570,86569,86565,86569,86571,86565,86571,86535,86569,86565,82096,82320,82307,86572,82320,86572,86573,86567,86573,86574,86567,86574,82076,86573,86567,82320,82277,82275,86575,82277,86575,82292,82265,82264,86514,86576,86515,86568,86576,86568,86535,86515,86576,86577,82078,82077,86578,86578,86579,86580,86578,86580,82078,86569,86579,86581,86581,86535,86571,86581,86571,86569,86579,86569,86570,86570,82078,86580,86570,86580,86579,86574,86582,86583,86574,86583,82076,86582,86574,86573,86584,86573,86572,86584,86572,82307,86573,86584,86582,86585,82076,86583,86585,86583,86582,82076,86585,82077,82275,82274,86586,86586,82292,86575,86586,86575,82275,82265,86514,86587,82265,86587,82274,86581,86588,86589,86581,86589,86535,86588,86581,86579,86590,86579,86578,86590,86578,82077,86579,86590,86588,86591,86535,86589,86591,86589,86588,86591,86577,86576,86591,86576,86535,86582,82296,86592,86592,82077,86585,86592,86585,86582,82296,86582,86584,82296,86584,82307,86593,82292,86586,86593,86586,82274,82292,86593,82293,86514,86577,86594,86594,82274,86587,86594,86587,86514,86595,86588,86596,86596,82296,86597,86596,86597,86595,86591,86595,86598,86591,86598,86577,86595,86591,86588,86590,86592,86599,86590,86599,86588,86592,86590,82077,86592,82296,86596,86596,86588,86599,86596,86599,86592,86600,82274,86594,86594,86577,86601,86594,86601,86600,82274,86600,86602,86602,82293,86593,86602,86593,82274,86603,86595,86604,86603,86604,82295,86595,86603,86605,86598,86605,86606,86598,86606,86577,86605,86598,86595,86597,82295,86604,86597,86604,86595,82295,86597,82296,86602,86607,86608,86602,86608,82293,86607,86602,86600,86609,86600,86601,86609,86601,86577,86600,86609,86607,86610,82293,86608,86610,86608,86607,82293,86610,82294,86610,86605,86611,86610,86611,82294,86605,86610,86607,86606,86607,86609,86606,86609,86577,86607,86606,86605,86603,82294,86611,86603,86611,86605,82294,86603,82295,84562,82996,82995,82995,82994,82993,82993,82992,82991,82991,82990,82989,82989,82988,82987,82986,82985,82984,82983,82982,83169,83169,83185,83121,83121,83111,82981,82981,82980,86612,86613,86614,86615,86615,86616,86617,86618,86619,86620,86621,86622,86623,86623,86624,86625,86625,86626,86627,86627,86628,86629,86630,86631,86632,86633,86634,86635,86636,86637,86638,86638,86145,86144,86144,86382,86381,86639,86640,86641,86642,86643,86644,86645,86646,86647,86647,86648,86649,86649,86650,86651,86651,86652,86653,86653,86654,86655,86655,86656,86657,86658,86659,86660,86661,86662,86663,86663,86664,86665,86665,86666,86667,86668,86669,86670,86670,86671,86672,86672,86673,86674,86675,86676,86677,86678,84312,84311,84311,84310,84391,84391,84309,84308,84308,84307,84383,84303,84302,84382,84382,84394,84399,84399,84301,84300,84300,84299,84381,84297,84296,84295,84294,84293,84292,84291,84290,84398,84398,84380,84289,84288,84287,84390,84390,84379,84286,84285,84284,84402,84402,84283,84282,84282,84281,84280,84276,84275,84274,84274,84273,84378,84378,84272,84271,84271,84270,84269,84269,84268,84267,84266,84265,84393,84393,84389,84264,84263,84262,84377,84260,84259,84376,84376,84415,84401,84401,84388,84258,84255,84254,84375,84252,84251,84250,84245,84244,84243,84243,84624,84644,84644,84653,84661,84661,84623,84622,84622,84621,84620,84617,84616,84643,84614,84613,84612,84611,84610,84753,84753,84678,84652,84602,84601,84651,84651,84667,84688,84688,84677,84642,84595,84594,84593,84593,84592,84641,84641,84666,84650,84650,84640,84591,84590,84589,84588,84584,84583,84639,84639,84582,84581,84581,84580,84579,84578,84577,84649,84649,84638,84576,84573,84572,84637,84570,84569,84676,84676,84733,84801,84801,84636,84568,84567,84566,84565,84564,84563,84562,84562,82995,82993,82993,82991,82989,82989,82987,82986,82986,82984,82983,82983,83169,83121,83121,82981,86612,86613,86615,86617,86618,86620,86679,86621,86623,86625,86625,86627,86629,86630,86632,86633,86635,86636,86638,86638,86144,86381,86639,86641,86680,86642,86644,86681,86682,86645,86647,86647,86649,86651,86651,86653,86655,86658,86660,86683,86661,86663,86665,86665,86667,86684,86685,86668,86670,86670,86672,86674,86686,86675,86677,86687,86678,84311,84311,84391,84308,84308,84383,84306,84303,84382,84399,84300,84381,84298,84297,84295,84294,84294,84292,84291,84291,84398,84289,84288,84390,84286,84285,84402,84282,84276,84274,84378,84271,84269,84267,84266,84393,84264,84263,84377,84261,84260,84376,84401,84255,84375,84253,84253,84252,84250,84245,84243,84644,84644,84661,84622,84622,84620,84619,84617,84643,84615,84614,84612,84611,84611,84753,84652,84602,84651,84688,84688,84642,84600,84593,84641,84650,84591,84590,84588,84584,84639,84581,84578,84649,84576,84573,84637,84571,84570,84676,84801,84801,84568,84567,84567,84565,84564,84562,82993,86688,84562,86688,84564,82986,82983,86689,82986,86689,82989,83121,86612,86690,83121,86690,82983,86612,86613,86617,86618,86679,86691,86692,86621,86625,86629,86693,86694,86629,86694,86625,86693,86630,86633,86633,86635,86638,86638,86381,86695,86642,86681,86696,86647,86651,86655,86658,86683,86697,86697,86661,86665,86665,86684,86685,86685,86670,86674,86686,86677,86698,86699,86687,84311,84311,84308,84306,84303,84399,84300,84294,84291,84289,84289,84288,84286,84286,84285,84282,84276,84378,84271,84271,84267,84266,84263,84261,84260,84260,84401,84258,84253,84250,84249,84246,84245,84644,84644,84622,84619,84617,84615,84614,84614,84611,84652,84602,84688,84600,84595,84593,84650,84591,84588,84587,84585,84584,84581,84579,84578,84576,84571,84570,84801,86700,84564,86688,86700,86688,82993,84564,86700,84567,86701,82983,86690,86701,86690,86612,82983,86701,86702,86689,86702,86703,86689,86703,82989,86702,86689,82983,86612,86617,86618,86618,86691,86692,86704,86625,86694,86704,86694,86693,86625,86704,86692,86633,86638,86705,86633,86705,86693,86638,86695,86706,86682,86647,86655,86658,86697,86665,86665,86685,86674,86699,84311,84306,84303,84300,84298,84294,84289,84286,84276,84271,84266,84263,84260,84258,84253,84249,84248,84247,84246,84644,84617,84614,84652,84603,84602,84600,84596,84595,84650,84586,84585,84581,84579,84576,84575,84573,84571,84801,86707,84567,86700,86700,82993,86708,86700,86708,86707,84567,86707,86709,84567,86709,84801,86710,82989,86703,86710,86703,86702,86711,86702,86701,86711,86701,86612,86702,86711,86710,82989,86710,86712,82989,86712,82993,86612,86618,86692,86638,86706,86713,86713,86693,86705,86713,86705,86638,86682,86655,86657,86714,86658,86665,86665,86674,86715,86698,86699,84306,84303,84298,84297,84297,84294,84286,84277,84276,84266,84264,84263,84258,84248,84247,84644,84618,84617,84652,84604,84603,84600,84596,84650,84591,84587,84586,84581,84581,84579,84575,84573,84801,86709,86709,86707,86716,86709,86716,84573,86717,86707,86708,86708,82993,86718,86708,86718,86717,86716,86717,86719,86716,86719,84573,86717,86716,86707,86720,86710,86721,86720,86721,86692,86710,86720,86722,86712,86722,86723,86712,86723,82993,86722,86712,86710,86711,86692,86721,86711,86721,86710,86692,86711,86612,86706,86639,86724,86724,86693,86713,86724,86713,86706,86714,86665,86715,86686,86698,84306,84297,84286,86725,84297,86725,84303,84277,84266,84264,84264,84258,84257,84253,84248,84644,84618,84652,84609,84604,84600,84599,84597,84596,84591,84587,84581,84575,86726,84573,86719,86726,86719,86717,86727,86717,86718,86727,86718,82993,86717,86727,86726,84573,86726,86728,84573,86728,84574,86704,86729,86730,86704,86730,86692,86729,86704,86693,86729,86731,86732,86732,86692,86730,86732,86730,86729,86722,86731,86733,86733,82993,86723,86733,86723,86722,86732,86722,86720,86732,86720,86692,86722,86732,86731,86639,86680,86734,86734,86693,86724,86734,86724,86639,86657,86714,86715,86735,86686,84306,86736,84303,86725,86736,86725,84286,84303,86736,84304,84264,84257,86737,84264,86737,84277,84253,84644,84619,84618,84609,84608,84604,84599,84598,84597,84591,84587,86728,86738,86739,86728,86739,84574,86738,86728,86726,86740,86726,86727,86740,86727,82993,86726,86740,86738,86741,84574,86739,86741,86739,86738,84574,86741,84575,86734,86742,86743,86734,86743,86693,86734,86680,86744,86734,86744,86742,86745,86742,86746,86745,86746,86747,86745,86693,86743,86745,86743,86742,86731,86747,86748,86731,86748,86749,86733,86749,86750,86733,86750,82993,86749,86733,86731,86747,86731,86729,86729,86693,86745,86729,86745,86747,86657,86715,86735,86735,84306,84305,86736,84282,86751,86736,86751,84304,84282,86736,84286,84257,84256,86752,86752,84277,86737,86752,86737,84257,84255,84253,84619,84618,84608,84607,84598,84597,84587,86753,84575,86741,86753,86741,86738,86754,86738,86740,86754,86740,82993,86738,86754,86753,84575,86753,86755,84575,86755,84587,86680,86642,86756,86756,86757,86758,86756,86758,86680,86759,86757,86760,86760,86761,86762,86760,86762,86759,86757,86759,86763,86763,86680,86758,86763,86758,86757,86747,86761,86764,86764,86765,86766,86764,86766,86747,86749,86765,86767,86767,82993,86750,86767,86750,86749,86765,86749,86748,86748,86747,86766,86748,86766,86765,86761,86747,86746,86746,86742,86768,86746,86768,86761,86759,86742,86744,86744,86680,86763,86744,86763,86759,86742,86759,86762,86762,86761,86768,86762,86768,86742,86735,84305,86769,86735,86769,86657,84282,84280,86770,86770,84304,86751,86770,86751,84282,84256,84255,86771,86771,84277,86752,86771,86752,84256,84255,84619,84618,84618,84607,84606,86755,86772,86773,86755,86773,84587,86772,86755,86753,86774,86753,86754,86774,86754,82993,86753,86774,86772,86775,84587,86773,86775,86773,86772,84587,86775,84598,86642,86696,86776,86776,86777,86778,86776,86778,86642,86779,86777,86780,86780,86781,86782,86780,86782,86779,86777,86779,86783,86783,86642,86778,86783,86778,86777,86761,86781,86784,86784,86785,86786,86784,86786,86761,86765,86785,86787,86787,82993,86767,86787,86767,86765,86785,86765,86764,86764,86761,86786,86764,86786,86785,86781,86761,86760,86760,86757,86788,86760,86788,86781,86779,86757,86756,86756,86642,86783,86756,86783,86779,86757,86779,86782,86782,86781,86788,86782,86788,86757,86789,86657,86769,86789,86769,84305,86657,86789,86682,84280,84279,86790,86790,84304,86770,86790,86770,84280,84255,84618,86791,86791,84277,86771,86791,86771,84255,86775,86792,86793,86775,86793,84598,86792,86775,86772,86794,86772,86774,86794,86774,82993,86772,86794,86792,86795,84598,86793,86795,86793,86792,84598,86795,84604,86696,86682,86796,86796,86797,86798,86796,86798,86696,86799,86797,86800,86800,86801,86802,86800,86802,86799,86797,86799,86803,86803,86696,86798,86803,86798,86797,86781,86801,86804,86804,86805,86806,86804,86806,86781,86785,86805,86807,86807,82993,86787,86807,86787,86785,86805,86785,86784,86784,86781,86806,86784,86806,86805,86801,86781,86780,86780,86777,86808,86780,86808,86801,86799,86777,86776,86776,86696,86803,86776,86803,86799,86777,86799,86802,86802,86801,86808,86802,86808,86777,86789,84304,86809,86789,86809,86682,84304,86789,84305,84279,84278,86810,86810,84304,86790,86810,86790,84279,86811,84277,86791,86811,86791,84618,84277,86811,84278,86795,86812,86813,86795,86813,84604,86812,86795,86792,86814,86792,86794,86814,86794,82993,86792,86814,86812,86815,84604,86813,86815,86813,86812,84604,86815,84605,86816,86809,86817,86816,86817,86818,86809,86816,86682,86809,84304,86819,86819,86818,86817,86819,86817,86809,86820,86818,86821,86821,86822,86823,86821,86823,86820,86816,86820,86824,86816,86824,86682,86820,86816,86818,86801,86822,86825,86825,86826,86827,86825,86827,86801,86805,86826,86828,86828,82993,86807,86828,86807,86805,86826,86805,86804,86804,86801,86827,86804,86827,86826,86822,86801,86800,86800,86797,86829,86800,86829,86822,86820,86797,86796,86796,86682,86824,86796,86824,86820,86829,86820,86823,86829,86823,86822,86820,86829,86797,86830,84278,86811,86811,84618,86831,86811,86831,86830,84278,86830,86832,86832,84304,86810,86832,86810,84278,86833,86815,86834,86833,86834,86822,86815,86833,84605,86815,86812,86835,86835,86822,86834,86835,86834,86815,86826,86812,86814,86814,82993,86828,86814,86828,86826,86835,86826,86825,86835,86825,86822,86826,86835,86812,86818,86836,86837,86837,86822,86821,86837,86821,86818,86838,86818,86819,86838,86819,84304,86818,86838,86836,86833,86837,86839,86833,86839,84605,86837,86833,86822,86837,86836,86840,86840,84605,86839,86840,86839,86837,86841,84606,86842,86841,86842,86843,84606,86841,84618,86830,86843,86844,86844,84304,86832,86844,86832,86830,86841,86830,86831,86841,86831,84618,86830,86841,86843,84606,84605,86840,86840,86836,86845,86840,86845,84606,86843,86836,86838,86838,84304,86844,86838,86844,86843,86836,86843,86842,86842,84606,86845,86842,86845,86836,82530,82581,82529,82528,82527,82526,82526,82525,82644,82523,82522,82580,82520,82519,82518,82516,82515,82579,82579,82514,82513,82513,82512,82511,82511,82510,82613,82613,82509,86846,86847,86848,86849,86849,86850,86851,86851,82492,82491,82491,82490,82489,82489,82488,82487,82487,82486,86852,86853,86854,86855,86855,86856,86857,86858,86859,86860,86861,86862,86863,86864,86865,86866,86866,86867,86868,86868,86869,86870,86870,86871,86872,86872,86873,86874,86874,86875,86876,86877,86878,86879,86880,86881,86882,86882,86883,86884,86884,86885,86886,86886,86887,86888,86889,86890,86891,86892,86893,86894,86894,86895,86896,86896,86897,86898,86899,86900,86901,86901,86902,86903,86904,86905,86906,86906,86907,86908,86909,86910,86911,86912,86913,86914,86915,86916,86917,86917,86918,86919,86919,86920,86921,86922,86923,86924,86925,86926,86927,86928,86929,86930,86931,86932,86933,86934,86935,86936,86937,86938,86939,86939,86940,86941,86942,86943,86944,86944,86945,86946,86947,86948,86949,86949,86950,86951,86952,86953,86954,86955,86956,86957,86958,86959,86960,86960,86961,86962,86962,86963,86964,86965,86966,86967,86968,86969,86970,86970,86971,86972,86972,86973,86974,86974,86975,86976,86976,86977,86978,86979,86980,86981,86981,86982,86983,86984,86985,86986,86987,86988,86989,86989,86990,86991,86991,86992,86993,86994,86995,86996,86996,86997,86998,86999,87000,87001,87001,87002,87003,87004,79949,79948,79948,79947,79946,79944,79943,80098,79941,79940,80108,80108,79939,79938,79938,79937,80097,80097,80119,80133,80133,80107,80096,79931,79930,80106,80106,80127,80095,79926,79925,80094,80094,80118,80093,79921,79920,80092,80092,80091,79723,79723,79722,79827,79827,79721,79720,79718,79717,79826,79826,79648,79647,79649,79648,79826,79633,79642,79826,79826,79874,79716,79711,79710,79844,79844,79859,79825,79702,79701,79700,79700,79699,79824,79693,79692,79854,79854,79691,79690,79690,79689,79823,79679,79678,79843,79843,79842,79677,79676,79675,79674,79674,79673,79672,79669,79668,79853,79664,79663,79662,79661,79660,79864,79864,79869,79872,79872,79875,79878,79878,79884,79882,79882,79863,79659,79658,79657,79822,79822,79841,79656,79653,79652,79651,83567,83566,83565,83564,83563,83562,83561,83560,83559,83556,83555,83627,83627,83554,83553,83553,83552,83683,83683,83662,83646,83646,83551,83550,83548,87005,87006,87006,87007,87008,87008,87009,87010,87010,87011,87012,87013,87014,87015,87016,87017,87018,87019,87020,87021,87022,87023,87024,87024,87025,87026,87027,87028,87029,87030,87031,87032,87032,87033,87034,87035,87036,87037,87037,87038,87039,87040,87041,87042,87042,87043,87044,87045,87046,87047,87048,87049,87050,87050,87051,87052,87053,82531,82530,82530,82529,82528,82526,82644,82524,82523,82580,82521,82520,82518,82517,82516,82579,82513,82511,82613,86846,86847,86849,86851,86851,82491,82489,82489,82487,86852,86852,86853,86855,87054,86861,86863,86866,86868,86870,86870,86872,86874,87055,86877,86879,86880,86882,86884,86884,86886,86888,86889,86891,86892,86894,86896,86898,86899,86901,86903,86904,86906,86908,86909,86911,86912,86912,86914,86915,86917,86919,86921,86925,86927,86928,86928,86930,87056,86931,86933,86934,86934,86936,86937,86937,86939,86941,86941,86942,86944,86947,86949,86951,87057,86952,86954,87058,86955,86957,86958,86960,86962,86965,86967,87059,86968,86970,86972,86974,86976,86978,86979,86981,86983,86984,86986,86987,86987,86989,86991,86994,86996,86998,86998,86999,87001,87001,87003,87004,87004,79948,79946,79944,80098,79942,79941,80108,79938,79938,80097,80133,80133,80096,79936,79931,80106,80095,79926,80094,80093,79921,80092,79723,79723,79827,79720,79718,79826,79647,79643,79649,79826,79633,79826,79716,79711,79844,79825,79700,79824,79698,79693,79854,79690,79690,79823,79688,79679,79843,79677,79676,79674,79672,79670,79669,79853,79665,79664,79662,79661,79864,79872,79872,79878,79882,79882,79659,79658,79658,79822,79656,79653,79651,83567,83567,83565,83564,83564,83562,83561,83561,83559,83558,83556,83627,83553,83553,83683,83646,83548,87006,87008,87010,87012,87013,87013,87015,87060,87016,87018,87061,87019,87021,87062,87022,87024,87026,87027,87029,87063,87030,87032,87034,87064,87035,87037,87040,87042,87044,87047,87048,87050,87050,87052,87065,87066,87053,82530,82528,82526,82524,82511,86846,87067,87068,86847,86851,86851,82489,86852,86852,86855,86857,86864,86866,86870,86870,86874,86876,87055,86879,86880,86880,86884,86888,86889,86892,86894,86894,86898,87069,86899,86903,87070,87070,86904,86908,87071,86909,86912,86912,86915,86917,87056,86931,86934,86934,86937,86941,86941,86944,86946,86946,86947,86951,87057,86954,87058,87058,86957,86958,86958,86962,86964,87072,86965,87059,86974,86978,87073,87074,86979,86983,86984,86987,86991,86994,86998,87001,87001,87004,79946,79945,79944,79942,79942,79941,79938,79938,80133,79936,79932,79931,80095,79926,80093,79924,79921,79723,79720,79719,79718,79647,79643,79826,79642,79634,79633,79716,79712,79711,79825,79700,79698,79697,79694,79693,79690,79690,79688,79687,79679,79677,79676,79670,79853,79667,79665,79662,79661,79661,79872,79882,79658,79656,79655,79654,79653,83567,83564,83561,83558,83557,83556,83553,83553,83646,83550,83549,83548,87008,87010,87013,87060,87016,87061,87075,87075,87019,87062,87022,87026,87076,87077,87030,87034,87064,87037,87039,87078,87040,87044,87047,87050,87065,87065,87066,82530,82528,82524,82523,82513,82511,87067,87067,87068,86851,86851,86852,86857,86870,86876,87079,86870,87079,86864,86880,86888,87080,86889,86894,87069,87070,86908,87081,87082,87071,86912,86912,86917,86921,87056,86934,86941,86941,86946,86951,87057,87058,86958,87072,87059,87083,86972,86974,87073,87074,86983,86984,86984,86991,86993,86993,86994,87001,87001,79946,79945,79938,79936,79935,79932,80095,79929,79927,79926,79924,79922,79921,79720,79720,79719,79647,79644,79643,79642,79634,79716,79715,79713,79712,79825,79694,79690,79687,79680,79679,79676,79670,79667,79666,79665,79661,79882,79655,79654,83567,83567,83564,83558,83558,83557,83553,83553,83550,83549,83549,87008,87010,87010,87060,87016,87075,87062,87022,87077,87034,87084,87085,87064,87039,87078,87044,87045,87047,87065,82530,82528,82523,82521,82516,82513,87067,87067,86851,86857,87086,86864,87079,87086,87079,86876,86864,87086,87087,87055,86880,87080,87070,87081,87082,87082,86912,86921,86928,87056,86941,86941,86951,87057,87057,86958,86964,87072,87083,86968,86968,86972,87073,87074,86984,86993,86993,87001,79945,79938,79935,79934,79933,79932,79929,79927,79924,79923,79922,79720,79647,79644,79642,79641,79635,79634,79715,79713,79825,79709,79695,79694,79687,79680,79676,79672,79671,79670,79666,79665,79882,79658,79655,83567,83558,83558,83553,83549,87010,87016,87088,87010,87088,83549,87077,87084,87089,87085,87039,87090,87091,87078,87045,87047,82530,82528,82528,82521,82520,87067,86857,86858,87086,87092,87093,87086,87093,87087,87092,87086,86876,87094,87055,87080,87082,86921,87095,87082,87095,87070,86925,86928,86941,86941,87057,86964,87072,86968,87073,87074,86993,79945,79933,79929,79928,79927,79923,79922,79922,79647,79646,79645,79644,79641,79635,79715,79714,79714,79713,79709,79695,79687,79686,79680,79672,79671,79666,79665,79658,83558,83549,87096,83558,87096,79655,87016,87075,87097,87097,83549,87088,87097,87088,87016,87063,87077,87089,87091,87045,87047,82528,82520,87098,82528,87098,87047,87067,86858,86860,87092,87094,87099,87099,87087,87093,87099,87093,87092,87094,87080,87100,86921,86922,87101,87101,87070,87095,87101,87095,86921,86925,86941,87102,86925,87102,87103,86941,86964,87072,87073,87074,79945,79927,79922,79646,79645,79641,79640,79635,79714,79709,79695,79686,79685,79666,79658,79655,87075,79655,87096,87096,83549,87097,87096,87097,87075,87027,87063,87089,87104,87091,87047,82520,82517,87105,87105,87047,87098,87105,87098,82520,87067,86860,87106,87094,87100,87107,87107,87087,87099,87107,87099,87094,86922,86924,87108,87108,87070,87101,87108,87101,86922,86941,87072,87109,87109,87103,87102,87109,87102,86941,87073,79945,87110,87073,87110,87072,79928,79927,79646,79645,79640,79639,79636,79635,79709,79666,79655,87075,87027,87089,87085,87111,87047,87105,87111,87105,82517,87047,87111,87104,87067,87106,87054,87112,87087,87107,87112,87107,87100,87087,87112,86863,87113,87103,87109,87109,87072,87114,87109,87114,87113,87103,87113,87115,87103,87115,86924,87110,79942,87116,87110,87116,87072,79942,87110,79945,79928,79646,87117,79928,87117,79933,79646,79645,79639,79637,79636,79709,79671,79666,87075,87027,87085,87090,82517,82516,87118,82517,87118,87119,87111,87119,87120,87111,87120,87104,87119,87111,82517,82516,87067,87054,87100,86889,87121,87121,86863,87112,87121,87112,87100,87122,86924,87115,87122,87115,87113,87123,87113,87114,87123,87114,87072,87113,87123,87122,86924,87122,87124,87124,87070,87108,87124,87108,86924,79942,79938,87125,87125,87072,87116,87125,87116,79942,87117,79639,87126,87117,87126,79933,79639,87117,79646,79637,79709,79708,79680,79671,87075,87076,87027,87090,82516,87054,87127,82516,87127,87128,87119,87128,87129,87129,87104,87120,87129,87120,87119,87128,87119,87118,87128,87118,82516,86889,87069,87130,86889,87130,87131,87121,87131,87132,87121,87132,86863,87131,87121,86889,87125,87133,87134,87125,87134,87072,87125,79938,87135,87125,87135,87133,87136,87133,87137,87136,87137,87138,87136,87072,87134,87136,87134,87133,87122,87138,87139,87122,87139,87140,87124,87140,87141,87124,87141,87070,87140,87124,87122,87123,87136,87142,87123,87142,87122,87136,87123,87072,87138,87122,87142,87138,87142,87136,87126,79638,87143,87126,87143,79933,79638,87126,79639,79637,79708,79707,79681,79680,87075,87129,87144,87145,87129,87145,87104,87144,87129,87128,87146,87128,87127,87146,87127,87054,87128,87146,87144,87147,87104,87145,87147,87145,87144,87104,87147,87148,87132,87149,87150,87132,87150,86863,87149,87132,87131,87151,87131,87130,87151,87130,87069,87131,87151,87149,87152,86863,87150,87152,87150,87149,86863,87152,87054,87153,87138,87154,87153,87154,79934,87138,87153,87155,87140,87155,87156,87156,87070,87141,87156,87141,87140,87155,87140,87139,87155,87139,87138,87133,79934,87154,87154,87138,87137,87154,87137,87133,79934,87133,87135,79934,87135,79938,87143,79637,87157,87143,87157,79933,79637,87143,79638,79637,79707,79706,79682,79681,87075,87158,87148,87147,87158,87147,87144,87148,87158,87069,87149,87144,87146,87146,87054,87152,87146,87152,87149,87158,87149,87151,87158,87151,87069,87149,87158,87144,87159,87155,87160,87159,87160,79933,87155,87159,87161,87156,87161,87162,87156,87162,87070,87161,87156,87155,87153,79933,87160,87153,87160,87155,79933,87153,79934,79637,79706,87163,87163,79933,87157,87163,87157,79637,79682,87075,87022,87090,87148,87069,79706,79705,87164,87164,79933,87163,87164,87163,79706,79683,79682,87022,87090,87069,87165,87090,87165,87076,79705,79704,87166,87166,79933,87164,87166,87164,79705,87022,87076,87167,87022,87167,79683,87165,86899,87168,87165,87168,87076,86899,87165,87069,79704,79703,87169,87169,79933,87166,87169,87166,79704,87170,79683,87167,87170,87167,87076,79683,87170,79684,87070,87076,87168,87070,87168,86899,79703,79702,87171,87171,79933,87169,87171,87169,79703,87076,87070,87172,87172,79684,87170,87172,87170,87076,79702,79700,87173,87173,79933,87171,87173,87171,79702,87174,79684,87172,87174,87172,87070,79684,87174,79685,79700,79697,87175,87175,79933,87173,87175,87173,79700,87176,79685,87174,87176,87174,87070,79685,87176,79695,79697,79696,87177,79697,87177,87178,87175,87178,87179,87175,87179,79933,87178,87175,79697,87180,79695,87176,87180,87176,87070,79695,87180,79696,87162,79696,87180,87162,87180,87070,79696,87162,87161,87178,87161,87159,87159,79933,87179,87159,87179,87178,87161,87178,87177,87161,87177,79696,86846,82509,82508,82506,82505,82674,82674,82734,82763,82763,82578,82504,82503,82502,82834,82834,82864,82845,82845,82501,82500,82500,82499,82577,82577,82791,82759,82759,82706,82498,82493,82492,86851,86848,86847,87068,87068,87067,86846,86846,82508,82507,82507,82506,82674,82674,82763,82504,82504,82503,82834,82834,82845,82500,82500,82577,82759,82759,82498,82497,82494,82493,86851,86848,87068,86846,82507,82674,82504,82504,82834,82500,82500,82759,82497,82495,82494,86851,86849,86848,86846,86846,82507,82504,82504,82500,82497,82495,86851,86850,86849,86846,82504,82504,82497,82496,82495,86850,86849,86849,82504,82496,82496,82495,86849,82532,82531,87053,87053,87066,87065,87051,87050,87049,87049,87048,87047,87046,87045,87044,87041,87040,87078,87078,87091,87104,87104,87148,87090,87090,87039,87038,87036,87035,87064,87064,87085,87089,87089,87084,87034,87031,87030,87077,87077,87063,87029,87028,87027,87076,87023,87022,87062,87020,87019,87075,87075,87061,87018,87017,87016,87060,87060,87015,87014,87014,87013,87012,87011,87010,87009,87009,87008,87007,87005,83548,83547,83626,83625,83639,83639,83641,83624,83623,83622,83653,83653,83621,83620,83618,83617,83634,83634,83638,83645,83645,83633,83616,83611,83610,83632,83608,83607,83606,83604,82104,86502,86502,86545,86554,86554,86553,86550,86543,86542,86541,86540,86539,86549,86537,86536,86552,86552,86535,86534,86534,86533,86548,86548,86532,86531,86527,86526,86525,86522,86521,86520,86519,86518,86547,86547,86556,86546,86516,86515,86577,86577,86514,86513,86511,86510,86509,86507,86506,86551,86551,86559,86562,86562,86505,86504,86504,86503,82246,82246,82540,82539,82538,82537,82536,82533,82532,87053,87053,87065,87052,87049,87047,87046,87046,87044,87043,87041,87078,87104,87104,87090,87038,87036,87064,87089,87031,87077,87029,87028,87076,87026,87023,87062,87021,87020,87075,87018,87017,87060,87014,87014,87012,87011,87011,87009,87007,87006,87005,83547,83547,83626,83639,83639,83624,83623,83623,83653,83620,83618,83634,83645,83645,83616,83615,83611,83632,83609,83608,83606,83605,83605,83604,86502,86502,86554,86550,86544,86543,86541,86540,86549,86538,86537,86552,86534,86534,86548,86531,86528,86527,86525,86522,86520,86519,86519,86547,86546,86516,86577,86513,86507,86551,86562,86504,82246,82539,82538,82536,82535,82534,82533,87053,87053,87052,87051,87051,87049,87046,87046,87043,87042,87042,87041,87104,87104,87038,87037,87036,87089,87034,87031,87029,87028,87028,87026,87025,87024,87023,87021,87021,87020,87018,87014,87011,87007,87006,83547,83639,83639,83623,83620,83618,83645,83615,83612,83611,83609,83608,83605,86502,86502,86550,86544,86544,86541,86540,86538,86537,86534,86534,86531,86530,86529,86528,86525,86519,86546,86517,86517,86516,86513,86507,86562,86504,82539,82538,82535,82534,87053,87051,87051,87046,87042,87042,87104,87037,87036,87034,87033,87031,87028,87025,87024,87021,87018,87014,87007,87181,87014,87181,87017,87007,87006,83639,83639,83620,83619,83618,83615,83614,83608,86502,86544,86538,86534,86530,86529,86525,86524,86522,86519,86517,86517,86513,86512,86507,86504,82539,82539,82535,82534,82534,87051,87042,87042,87037,87036,87032,87031,87025,87025,87024,87018,87007,83639,83619,83618,83614,83613,83609,83608,86544,86540,86538,86530,86530,86529,86524,86522,86517,86512,86508,86507,82539,82534,87042,87182,82534,87182,82539,87042,87036,87033,87032,87025,87018,87007,83619,87183,87183,87017,87181,87183,87181,87007,83612,83609,86544,86540,86530,87184,86540,87184,86544,86530,86524,86523,86523,86522,86512,87185,82539,87182,87185,87182,87042,82539,87185,86508,87042,87033,87032,87032,87018,87017,83619,83618,87186,87186,87017,87183,87186,87183,83619,83612,86544,87184,83612,87184,86530,86523,86512,86511,87187,86508,87185,87187,87185,87042,86508,87187,86509,87032,87017,87188,87032,87188,87042,83618,83613,87189,83618,87189,87190,87186,87190,87191,87186,87191,87017,87190,87186,83618,83613,83612,86530,86523,86511,86509,87192,87042,87188,87188,87017,87193,87188,87193,87192,87187,87192,87194,87187,87194,86509,87192,87187,87042,83613,86530,87195,87195,87196,87197,87195,87197,83613,87190,87196,87198,87198,87017,87191,87198,87191,87190,87197,87190,87189,87197,87189,83613,87190,87197,87196,87199,86509,87194,87199,87194,87192,86509,87199,86523,87200,87192,87193,87193,87017,87201,87193,87201,87200,87199,87200,87202,87199,87202,86523,87200,87199,87192,87202,87196,87203,87202,87203,86523,87196,87202,87200,87198,87200,87201,87198,87201,87017,87200,87198,87196,87195,86523,87203,87195,87203,87196,86523,87195,86530,83440,83439,87204,87205,87206,87207,87207,87208,87209,87210,87211,87212,87213,87214,87215,87216,87217,87218,87218,87219,87220,87221,87222,87223,87224,87225,87226,87226,87227,87228,87229,87230,87231,87231,87232,87233,87234,87235,87236,87236,87237,87238,87238,87239,87240,87240,87241,87242,87243,80353,80352,80352,80635,80634,80632,80631,80672,80672,80630,80629,80627,80626,80625,80624,80623,80657,80657,80622,80621,80621,80620,80619,80618,80617,80702,80702,80656,80616,80613,80612,80655,80655,80685,80611,80608,80607,80606,80606,80605,80604,80604,80603,80602,80601,80600,80710,80710,80701,80684,80596,80595,80671,80671,80763,80789,80789,80683,80670,80593,80592,80591,80591,80590,80589,80588,80587,80586,80582,80581,80580,80577,80576,80669,80669,80575,80574,80568,80567,80566,80565,80564,80654,80654,80668,80653,80558,80557,80667,80667,80700,80699,80699,80682,80652,80555,80554,80651,80651,80553,80552,80552,80551,80650,80549,80548,80708,80708,80698,80681,80866,80874,87244,87244,87245,87246,87247,87248,87249,87250,87251,87252,87252,87253,87254,87255,87256,87257,87258,87259,87260,85322,85321,85320,85320,85319,85318,85317,85316,85315,85314,85313,85312,85311,85310,85309,85308,85307,85455,85303,85302,85454,85454,85482,85453,85300,85299,85472,85472,85534,85471,85471,85452,85298,85297,85296,85470,85470,85295,85294,85290,85289,85451,85451,85469,85468,85287,85286,85285,85284,85283,85497,85497,85282,85281,85281,85280,85586,85586,85595,85279,85278,85277,85450,85450,85276,87261,87262,87263,87264,87264,87265,87266,87267,87268,87269,87270,87271,87272,87273,87274,87275,87275,82972,82971,82971,82970,82969,82969,82968,83152,83152,83151,83120,82964,82963,82962,82961,82960,83119,82954,82953,83109,83109,83136,82952,82947,82946,82945,82944,82943,83233,83233,83256,83250,83250,83209,83194,83194,83108,82942,82940,82939,83487,83486,83485,83484,83484,83483,83497,83497,83505,83509,83509,83496,83482,83479,83478,83495,83495,83504,83477,83474,83473,83472,83467,83466,83465,83464,83463,83502,83502,83508,83462,83459,83458,83457,83456,83455,83454,83449,83448,83503,83503,83447,83446,83444,83443,83442,83442,83441,83494,83494,83440,87204,87205,87207,87209,87276,87210,87212,87216,87218,87220,87221,87223,87224,87224,87226,87228,87229,87231,87233,87234,87236,87238,87277,87243,80352,80352,80634,80633,80632,80672,80629,80628,80627,80625,80624,80657,80621,80621,80619,80618,80618,80702,80616,80613,80655,80611,80606,80604,80602,80602,80601,80710,80710,80684,80599,80596,80671,80789,80789,80670,80594,80593,80591,80589,80582,80580,80579,80577,80669,80574,80565,80654,80653,80559,80558,80667,80667,80699,80652,80555,80651,80552,80552,80650,80550,80549,80708,80681,80546,80866,87244,87244,87246,87278,87278,87247,87249,87279,87250,87252,87252,87254,87255,87255,87257,87258,87258,87260,85323,85320,85318,85317,85317,85315,85314,85314,85312,85311,85311,85309,85308,85308,85455,85306,85303,85454,85453,85300,85472,85471,85297,85470,85294,85290,85451,85468,85287,85285,85284,85284,85497,85281,85281,85586,85279,85278,85450,87261,87262,87264,87266,87280,87270,87272,87281,87273,87275,87275,82971,82969,82969,83152,83120,82961,83119,82959,82954,83109,82952,82948,82947,82945,82944,83233,83250,83250,83194,82942,82941,82940,83487,83484,83497,83509,83509,83482,83481,83479,83495,83477,83474,83472,83471,83465,83464,83502,83502,83462,83461,83460,83459,83457,83456,83454,83453,83450,83449,83503,83442,83494,87204,87282,87205,87209,87276,87212,87283,87284,87216,87220,87224,87228,87229,87229,87233,87285,87285,87234,87238,87277,80352,80633,80633,80632,80629,80625,80624,80621,80621,80618,80616,80613,80611,80610,80606,80602,80710,80597,80596,80789,80593,80589,80588,80582,80579,80578,80578,80577,80574,80566,80565,80653,80559,80667,80652,80555,80552,80550,80550,80549,80681,80547,80546,87244,87278,87249,87279,87252,87255,87258,85320,85317,85314,85314,85311,85308,85308,85306,85305,85304,85303,85453,85301,85300,85471,85298,85297,85294,85290,85468,85288,85287,85284,85281,85281,85279,85278,85278,87261,87286,87286,87262,87266,87272,87281,87287,87272,87287,87280,87275,82969,87288,87275,87288,87281,82969,83120,82967,82962,82961,82959,82954,82952,82951,82948,82945,82944,82944,83250,82942,82941,83487,83486,83484,83509,83481,83479,83477,83476,83465,83502,83461,83460,83457,83456,83456,83453,83452,83451,83450,83503,83444,83442,87204,87282,87209,87289,87276,87283,87213,87284,87220,87221,87229,87285,87290,87229,87290,87224,87285,87238,87240,87242,87277,80633,80628,80625,80621,80621,80616,80615,80608,80606,80710,80597,80789,80594,80593,80588,80586,80582,80578,80574,80566,80653,80563,80559,80652,80556,80555,80550,80681,80649,80547,87244,87244,87278,87279,85305,85304,85453,85301,85471,85298,85298,85294,85293,85287,85281,85278,87286,87266,87291,87286,87291,85278,87292,87281,87288,87288,82969,87293,87288,87293,87292,87281,87292,87294,87294,87280,87287,87294,87287,87281,82969,82967,82966,82962,82959,82958,82955,82954,82951,82944,82942,87295,82944,87295,82948,82941,83486,83484,83484,83481,83480,83479,83476,83475,83467,83465,83461,83461,83460,83456,83451,83503,83446,83445,83444,87204,87282,87289,87276,87276,87213,87215,87284,87221,87224,87285,87240,87296,87296,87224,87290,87296,87290,87285,87240,87242,80633,80628,80621,80615,80609,80608,80710,80598,80597,80594,80594,80593,80586,80582,80574,80573,80568,80566,80563,80559,80556,80555,80555,80681,80666,80666,80649,87244,87244,87279,87252,85305,85453,85301,85301,85298,85293,85288,85287,85278,87266,87297,87298,87298,85278,87291,87298,87291,87266,87299,87280,87294,87299,87294,87292,87300,87292,87293,87300,87293,82969,87292,87300,87299,87280,87299,87301,87280,87301,87269,82962,82958,82957,82955,82951,82950,87302,82948,87295,87302,87295,82942,82948,87302,82949,83484,83480,87303,83484,87303,82941,83479,83475,83474,83467,83461,83456,83452,83451,83446,83446,83445,87204,87282,87276,87215,87304,87224,87296,87296,87240,87305,87296,87305,87304,87224,87304,87306,87224,87306,87284,87240,80633,80629,80629,80628,80615,80609,80710,80599,80598,80594,80586,80582,80573,80572,80569,80568,80563,80559,80555,80666,87244,87252,87307,87244,87307,80666,85305,85301,85293,85290,85288,85278,87297,87308,87309,87309,85278,87298,87309,87298,87297,87299,82966,87310,87301,87310,87311,87301,87311,87269,87310,87301,87299,82966,87299,87300,82966,87300,82969,82955,82950,82949,82942,82941,87312,87312,82949,87302,87312,87302,82942,83480,83479,87313,87313,82941,87303,87313,87303,83480,83468,83467,83456,83452,83446,87204,87282,87215,87284,87240,80629,87314,87314,87315,87316,87314,87316,87240,87304,87315,87317,87317,87284,87306,87317,87306,87304,87315,87304,87305,87305,87240,87316,87305,87316,87315,80629,80615,80614,80609,80599,80598,80598,80586,80585,80583,80582,80572,80569,80563,80562,80560,80559,80666,87252,87258,87318,87318,80666,87307,87318,87307,87252,85305,85293,85292,87319,85278,87309,87319,87309,87308,85278,87319,85290,87320,87269,87311,87320,87311,87310,87310,82966,87321,87310,87321,87320,87269,87320,87322,87269,87322,87267,87323,82949,87312,87323,87312,82941,82949,87323,82955,83479,83474,87324,87324,82941,87313,87324,87313,83479,83468,83456,83452,83452,87204,87282,87325,87284,87317,87325,87317,87315,87326,87315,87314,87326,87314,80629,87315,87326,87325,87284,87325,87327,87284,87327,87282,80629,80614,80613,80609,80598,80585,80583,80572,80571,80570,80569,80562,87318,87328,87329,87318,87329,80666,87328,87318,87258,80560,80666,87329,80560,87329,87328,85305,85292,87330,85305,87330,85308,87331,85290,87319,87331,87319,87308,85290,87331,85291,87322,87332,87333,87322,87333,87267,87332,87322,87320,87334,87320,87321,87334,87321,82966,87320,87334,87332,87335,87267,87333,87335,87333,87332,87267,87335,87336,87337,82955,87323,87337,87323,82941,82955,87337,82956,83452,87282,87338,83452,87338,83468,80613,87339,87340,80613,87340,80629,87339,87341,87342,87342,80629,87340,87342,87340,87339,87325,87341,87343,87343,87282,87327,87343,87327,87325,87342,87325,87326,87342,87326,80629,87325,87342,87341,80609,80585,87344,80609,87344,80610,80571,80570,80562,87345,80560,87328,87345,87328,87258,80560,87345,80561,87346,85308,87330,87330,85292,87347,87330,87347,87346,85308,87346,87348,85308,87348,85314,87349,85291,87331,87349,87331,87308,85291,87349,85292,87335,87350,87351,87335,87351,87336,87350,87335,87332,87352,87332,87334,87352,87334,82966,87332,87352,87350,87353,87336,87351,87353,87351,87350,87336,87353,87308,87354,82941,87324,87354,87324,83474,82941,87354,87355,87337,87355,87356,87337,87356,82956,87355,87337,82941,87357,83468,87338,87357,87338,87282,83468,87357,83469,80613,80610,87358,80613,87358,87359,87359,87360,87361,87359,87361,80613,87341,87360,87362,87362,87282,87343,87362,87343,87341,87360,87341,87339,87339,80613,87361,87339,87361,87360,80585,80584,87363,87363,80610,87344,87363,87344,80585,80571,80562,80561,87258,85323,87364,87258,87364,87365,87345,87365,87366,87345,87366,80561,87365,87345,87258,87367,85314,87348,87367,87348,87346,87368,87346,87347,87368,87347,85292,87346,87368,87367,85314,87367,87369,85314,87369,85320,87370,87308,87353,87370,87353,87350,87371,87350,87352,87371,87352,82966,87350,87371,87370,87308,87370,87372,87372,85292,87349,87372,87349,87308,83474,83471,87373,87373,87374,87375,87373,87375,83474,87355,87374,87376,87376,82956,87356,87376,87356,87355,87374,87355,87354,87354,83474,87375,87354,87375,87374,87357,87362,87377,87357,87377,83469,87362,87357,87282,87362,87360,87378,87378,83469,87377,87378,87377,87362,87379,87360,87359,87380,87359,87358,87380,87358,80610,87359,87380,87379,87360,87379,87381,87381,83469,87378,87381,87378,87360,80584,80583,87382,87382,80610,87363,87382,87363,80584,87365,87383,87384,87384,80561,87366,87384,87366,87365,87385,87365,87364,87385,87364,85323,87365,87385,87383,87386,80561,87384,87386,87384,87383,80561,87386,80571,87369,87387,87388,87369,87388,85320,87387,87369,87367,87389,87367,87368,87389,87368,85292,87367,87389,87387,87390,85320,87388,87390,87388,87387,85320,87390,85322,87391,87370,87392,87391,87392,82965,87370,87391,87393,87372,87393,87394,87372,87394,85292,87393,87372,87370,87371,82965,87392,87371,87392,87370,82965,87371,82966,83471,83470,87395,87395,87396,87397,87395,87397,83471,87374,87396,87398,87398,82956,87376,87398,87376,87374,87396,87374,87373,87373,83471,87397,87373,87397,87396,83470,83469,87381,87381,87379,87399,87381,87399,83470,87400,87379,87380,87380,80610,87401,87380,87401,87400,87379,87400,87402,87402,83470,87399,87402,87399,87379,80583,80571,87403,87403,80610,87382,87403,87382,80583,85323,85322,87404,87404,87405,87406,87404,87406,85323,87383,87405,87407,87407,80571,87386,87407,87386,87383,87405,87383,87385,87385,85323,87406,87385,87406,87405,87408,87409,87410,87408,87410,87393,87408,87411,87412,87408,87412,87409,87394,87409,87413,87394,87413,85292,87394,87393,87410,87394,87410,87409,87391,87414,87415,87391,87415,87393,87391,82965,87416,87391,87416,87414,87408,87414,87417,87408,87417,87411,87408,87393,87415,87408,87415,87414,87418,87419,87420,87418,87420,87387,87418,87411,87421,87418,87421,87419,87390,87419,87422,87390,87422,85322,87390,87387,87420,87390,87420,87419,87389,87409,87423,87389,87423,87387,87389,85292,87413,87389,87413,87409,87418,87409,87412,87418,87412,87411,87418,87387,87423,87418,87423,87409,87424,87425,87426,87424,87426,87400,87424,87427,87428,87424,87428,87425,87402,87425,87429,87402,87429,83470,87402,87400,87426,87402,87426,87425,87401,87430,87431,87401,87431,87400,87401,80610,87432,87401,87432,87430,87424,87430,87433,87424,87433,87427,87424,87400,87431,87424,87431,87430,87434,87435,87436,87434,87436,87396,87434,87427,87437,87434,87437,87435,87398,87435,87438,87398,87438,82956,87398,87396,87436,87398,87436,87435,87395,87425,87439,87395,87439,87396,87395,83470,87429,87395,87429,87425,87434,87425,87428,87434,87428,87427,87434,87396,87439,87434,87439,87425,87405,87440,87441,87441,80571,87407,87441,87407,87405,87442,87405,87404,87442,87404,85322,87405,87442,87440,87443,87403,87444,87443,87444,87440,87403,87443,80610,87403,80571,87441,87441,87440,87444,87441,87444,87403,87445,87446,87447,87445,87447,87411,87446,87445,87448,87449,87448,87450,87449,87450,82964,87448,87449,87446,87451,87411,87447,87451,87447,87446,87411,87451,87452,87453,87419,87454,87453,87454,87452,87419,87453,87455,87422,87455,87456,87422,87456,85322,87455,87422,87419,87421,87452,87454,87421,87454,87419,87452,87421,87411,87450,87414,87457,87450,87457,82964,87414,87450,87448,87417,87448,87445,87417,87445,87411,87448,87417,87414,87416,82964,87457,87416,87457,87414,82964,87416,82965,87458,87435,87459,87458,87459,87460,87435,87458,87461,87438,87461,87462,87438,87462,82956,87461,87438,87435,87437,87460,87459,87437,87459,87435,87460,87437,87427,87433,87463,87464,87433,87464,87427,87463,87433,87430,87465,87430,87432,87465,87432,80610,87430,87465,87463,87466,87427,87464,87466,87464,87463,87427,87466,87460,87462,87467,87468,87462,87468,82956,87467,87462,87461,87469,87461,87458,87469,87458,87460,87461,87469,87467,87470,82956,87468,87470,87468,87467,82956,87470,82957,87471,87455,87472,87472,87473,87474,87472,87474,87471,87456,87471,87475,87456,87475,85322,87471,87456,87455,87453,87476,87477,87453,87477,87455,87476,87453,87452,87476,87473,87472,87472,87455,87477,87472,87477,87476,87478,87479,87480,87478,87480,87440,87479,87478,87473,87479,80610,87443,87443,87440,87480,87443,87480,87479,87471,87440,87442,87442,85322,87475,87442,87475,87471,87478,87471,87474,87478,87474,87473,87471,87478,87440,87451,87481,87482,87451,87482,87452,87481,87451,87446,87481,87483,87484,87484,87452,87482,87484,87482,87481,87485,87446,87449,87449,82964,87486,87449,87486,87485,87481,87485,87487,87481,87487,87483,87485,87481,87446,87488,87473,87489,87489,87483,87490,87489,87490,87488,87479,87488,87491,87479,87491,80610,87488,87479,87473,87489,87476,87492,87489,87492,87483,87476,87489,87473,87476,87452,87484,87484,87483,87492,87484,87492,87476,87467,87493,87494,87467,87494,87495,87470,87495,87496,87470,87496,82957,87495,87470,87467,87493,87467,87469,87493,87469,87460,87466,87497,87498,87466,87498,87460,87497,87466,87463,87499,87463,87465,87499,87465,80610,87463,87499,87497,87500,87460,87498,87500,87498,87497,87460,87500,87493,87501,82957,87496,87501,87496,87495,87502,87495,87494,87502,87494,87493,87495,87502,87501,82957,87501,87503,82957,87503,82962,87504,87501,87505,87504,87505,87483,87501,87504,87506,87503,87506,87507,87503,87507,82962,87506,87503,87501,87502,87483,87505,87502,87505,87501,87483,87502,87493,87500,87488,87508,87500,87508,87493,87488,87500,87497,87491,87497,87499,87491,87499,80610,87497,87491,87488,87490,87493,87508,87490,87508,87488,87493,87490,87483,87507,87485,87509,87507,87509,82962,87485,87507,87506,87487,87506,87504,87487,87504,87483,87506,87487,87485,87486,82962,87509,87486,87509,87485,82962,87486,82964,80110,79445,79444,79444,79558,79557,79556,79555,79564,79553,79552,79551,79551,79550,79549,79545,79544,79574,79574,79543,79542,79542,79541,79540,79539,79538,79571,79571,79591,79601,79601,79620,79563,79536,79535,79534,79531,79530,79529,79528,79527,79526,79524,79523,79569,79569,79568,79522,79521,79520,79562,79519,78916,79132,79127,79126,79125,79123,79122,79165,79165,79182,79121,79118,79117,79116,79116,79115,79149,79149,79114,79113,79111,79110,79148,79148,79174,79181,79181,79173,79147,79147,79109,81337,81335,81334,81659,81659,81676,81675,81330,81329,81658,81658,81698,81635,81327,81326,81634,81324,81323,81322,81321,81320,81319,81315,81314,81633,81312,81311,81674,81674,81310,81309,81309,81308,81307,81306,81305,81304,81303,81302,81301,81300,81299,81298,81297,81296,81632,81295,81294,87510,87511,87512,87513,87513,87514,87515,87515,87516,87517,87518,87519,87520,87521,87522,79998,79997,79996,80112,79994,79993,80101,80123,80110,79444,79556,79564,79554,79553,79551,79549,79546,79545,79574,79539,79571,79601,79601,79563,79537,79536,79534,79533,79532,79531,79529,79524,79569,79522,79521,79562,79519,79519,79132,79131,79128,79127,79125,79124,79123,79165,79165,79121,79120,79116,79149,79113,79111,79148,79181,79181,79147,81337,81336,81335,81659,81659,81675,81333,81330,81658,81635,81327,81634,81325,81324,81322,81321,81315,81633,81313,81312,81674,81309,81309,81307,81306,81306,81304,81303,81303,81301,81300,81300,81298,81297,81297,81632,81295,81295,87510,87523,87511,87513,87515,87515,87517,87518,87521,79998,79997,79997,80112,79995,79994,80101,80111,80135,80123,79444,79556,79554,79553,79546,79574,79542,79540,79539,79601,79601,79537,79536,79536,79533,79532,79532,79529,79528,79525,79524,79522,79521,79519,79131,79128,79125,79124,79124,79165,79120,79118,79116,79113,79111,79181,81337,81336,81659,81333,81331,81330,81635,81328,81327,81325,81316,81315,81313,81313,81312,81309,81309,81306,81303,81300,81297,81295,87523,87511,87515,87515,87518,87520,87521,79997,79995,79994,80111,80124,80145,80135,79444,79547,79546,79542,79542,79540,79601,79601,79536,79532,79526,79525,79522,79522,79521,79131,79128,79124,79120,79118,79113,79112,79112,79111,81337,81336,81333,81332,81331,81635,81328,81328,81325,81324,81316,81313,81309,81309,81303,81300,81300,81295,87523,87523,87515,87520,87521,79995,79994,79994,80124,80129,80155,80145,79444,79548,79547,79542,79542,79601,79532,79526,79522,79131,79129,79128,79120,79118,79112,81337,81336,81332,81331,81331,81328,81324,81317,81316,81309,81309,81300,87523,87523,87520,87524,79994,80129,80137,80209,80155,79444,79549,79548,79542,79542,79532,79528,79528,79526,79131,79129,79120,79119,79119,79118,81337,81336,81331,81324,81318,81317,81309,81309,87523,87524,79994,80137,80147,80232,80209,79444,79549,79542,79528,79528,79131,79130,79119,81337,81336,81336,81324,81321,81309,87524,87525,81309,87525,81318,79994,80147,80157,80223,80232,79444,79549,79528,87526,79549,87526,79553,79528,79130,79129,79119,81336,81321,87527,81318,87525,87527,87525,87524,81318,87527,81319,79994,80157,80170,80202,80223,79444,87528,79553,87526,87528,87526,79528,79553,87528,79556,79129,79119,87529,79129,87529,79528,79119,81321,81319,87527,87521,87530,87527,87530,81319,87521,87527,87524,79994,80170,80183,80183,80202,79444,87531,79528,87529,87531,87529,79119,87531,79556,87528,87531,87528,79528,87532,81319,87530,87530,87521,87533,87530,87533,87532,81319,87532,87534,81319,87534,79119,80183,79444,87535,80183,87535,79994,87536,79556,87531,87536,87531,79119,79556,87536,79557,87537,87532,87538,87537,87538,79994,87532,87537,87539,87534,87539,87540,87534,87540,79119,87539,87534,87532,87533,79994,87538,87533,87538,87532,79994,87533,87521,79444,79557,87541,87541,79994,87535,87541,87535,79444,87536,87539,87542,87536,87542,79557,87536,79119,87540,87536,87540,87539,87541,87539,87537,87541,87537,79994,87541,79557,87542,87541,87542,87539,87510,81294,81293,81291,81290,81673,81673,81689,81688,81688,81631,81289,81286,81285,81630,81630,81672,81284,81283,81282,81281,81281,81280,87543,87544,87545,87546,87546,87547,87548,87548,87549,87550,87550,87551,87552,87552,87553,87554,87555,87556,87557,87557,87558,87559,87560,87561,87562,87562,87563,87564,87564,80010,80009,80007,80006,80125,80125,80139,80158,80158,80113,80103,80004,80003,80148,80148,80138,80102,79999,79998,87522,87522,87521,87524,87524,87520,87519,87519,87518,87517,87512,87511,87523,87523,87510,81293,81292,81291,81673,81673,81688,81289,81286,81630,81284,81283,81281,87543,87544,87546,87548,87548,87550,87552,87555,87557,87559,87562,87564,80009,80007,80125,80158,80158,80103,80005,80004,80148,80102,80000,79999,87522,87522,87524,87519,87512,87523,81293,81292,81673,81289,81286,81284,81283,81283,87543,87565,87566,87544,87548,87548,87552,87554,87555,87559,87560,87562,80009,80008,80008,80007,80158,80005,80004,80102,80000,87522,87519,87513,87512,81293,81293,81292,81289,81286,81283,87565,87566,87548,87554,87555,87560,87562,87562,80008,80158,80158,80005,80102,80001,80000,87519,87513,81293,81289,81287,81286,87565,87567,87566,87554,87555,87562,80158,80158,80102,80002,80002,80001,87519,87514,87513,81289,81288,81287,87565,87565,87567,87554,87554,87555,80158,80158,80002,87519,87515,87514,81289,81288,87565,87554,87554,80158,87519,87515,81289,81288,87554,87519,87517,87516,87515,81288,87554,87517,87516,87516,81288,87554,80011,80010,87564,87563,87562,87561,87561,87560,87559,87556,87555,87554,87549,87548,87547,87545,87544,87566,87566,87567,87565,87565,87543,81280,81280,81279,81629,81275,81274,81628,81272,81271,81270,81268,80043,80042,80041,80040,80105,80038,80037,80036,80033,80032,80031,80028,80027,80185,80185,80026,80025,80025,80024,80023,80022,80021,80020,80016,80015,80104,80013,80012,80011,80011,87564,87563,87563,87561,87559,87556,87554,87553,87545,87566,87565,87565,81280,81629,81275,81628,81273,81273,81272,81270,81269,81268,80042,80042,80041,80105,80038,80036,80035,80034,80033,80031,80029,80028,80185,80185,80025,80023,80016,80104,80014,80013,80011,87563,87563,87559,87558,87557,87556,87553,87545,87565,81629,81275,81273,81270,81270,81269,80042,80042,80105,80039,80038,80035,80034,80034,80031,80030,80029,80185,80023,80017,80016,80014,80013,87563,87558,87558,87557,87553,87546,87545,81629,81275,81270,80042,80042,80039,80038,80034,80030,80029,80029,80023,80022,80017,80014,80013,80013,87558,87553,87546,81629,81278,81276,81275,80042,80042,80038,80034,80034,80029,80022,80017,80013,87553,87547,87546,81278,81276,80042,80034,80034,80022,80020,80018,80017,87553,87549,87547,81278,81277,81276,80034,80034,80020,80019,80019,80018,87553,87549,81278,81277,81277,80034,80019,80019,87553,87552,87549,81277,80019,80019,87552,87551,87550,87549,80019,80019,87551,87550,82626,82657,82689,82689,82737,82768,82768,82625,82568,82367,82366,82598,82598,82918,82922,82922,82926,82365,82364,82363,82362,82361,82360,82359,82359,82358,82357,82355,82354,82353,82352,82351,82597,82597,82350,82349,82349,82348,82347,82346,82345,82344,82343,82342,82341,82339,82338,82567,82567,82555,82331,82331,82395,82390,82389,82388,82387,82386,82385,82600,82600,82384,82383,82383,82382,82381,82381,82380,82379,82379,82378,82599,82599,82723,82751,82751,82782,82817,82817,82801,82377,82376,82375,82374,82373,82372,82371,82370,82369,82626,82626,82689,82768,82768,82568,82368,82367,82598,82922,82922,82365,82364,82364,82362,82361,82359,82357,82356,82355,82353,82352,82352,82597,82349,82349,82347,82346,82344,82343,82341,82339,82567,82331,82331,82390,82389,82389,82387,82386,82386,82600,82383,82379,82599,82751,82751,82817,82377,82370,82626,82768,82368,82367,82922,82922,82364,82361,82356,82355,82352,82352,82349,82346,82344,82341,82340,82339,82331,82389,82386,82383,82381,82381,82379,82751,82751,82377,82376,82371,82370,82768,82368,82922,82361,82359,82356,82352,82352,82346,82344,82340,82339,82389,82386,82381,82751,82751,82376,82374,82373,82371,82768,82768,82368,82361,82359,82352,82344,82344,82340,82389,82389,82386,82751,82373,82768,82361,82361,82359,82344,82344,82389,82751,82374,82373,82361,82361,82344,82751,82751,82374,82361,86294,86293,87568,87568,87569,87570,87570,87571,87572,87572,87573,87574,87575,87576,87577,87578,87579,87580,87580,87581,87582,87582,87583,87584,87585,87586,87587,87587,87588,87589,87589,87590,87591,87592,87593,87594,87595,87596,87597,87598,87599,87600,87600,87601,87602,87602,87603,87604,87604,87605,87606,87607,87608,87609,87609,87610,87611,87612,87613,87614,87614,87615,87616,87617,87618,87619,87619,87620,87621,87622,87623,87624,87625,87626,87627,87627,87628,87629,87630,87631,87632,87632,87633,87634,87635,81074,81073,81073,81072,81071,81070,81069,81068,81068,81067,81066,81065,81064,81063,81062,81061,81060,81060,81059,81058,81055,81054,81053,81051,81050,81049,81049,81048,81047,81046,81045,81204,81041,81040,81039,81039,81038,84372,84370,84369,84368,84368,84367,84366,84366,84365,84386,84386,84364,84363,84363,84362,84407,84360,84359,84358,84357,84356,84355,84351,84350,84392,84392,84349,84348,84348,84347,84396,84396,84346,84345,84343,84342,84385,84385,84341,84340,84338,84337,84336,84336,84335,84334,84333,84332,84331,84324,84323,84395,84395,84322,84321,84319,84318,84317,84317,84316,84384,84314,84313,84312,84312,86678,86687,86687,86699,86698,86676,86675,86686,86686,86735,86715,86715,86674,86673,86669,86668,86685,86685,86684,86667,86666,86665,86664,86662,86661,86697,86697,86683,86660,86659,86658,86714,86714,86657,86656,86648,86647,86646,86646,86645,86682,86682,86696,86681,86643,86642,86680,86640,86639,86706,86706,86695,86381,86380,86379,86401,86401,86422,86430,86430,86378,86377,86375,86374,86373,86370,86369,86368,86365,86364,86363,86362,86361,86413,86413,86429,86436,86436,86400,86360,86359,86358,86428,86428,86421,86357,86354,86353,86412,86412,86352,86351,86351,86350,86349,86345,86344,86343,86343,86342,86341,86340,86339,86338,86337,86336,86399,86399,86420,86335,86332,86331,86411,86411,86330,86329,86321,86320,86398,86318,86317,86433,86433,86427,86397,86311,86310,86410,86410,86309,86308,86308,86307,86306,86303,86302,86301,86301,86300,86299,86299,86298,86500,86500,86460,86447,86447,86396,86297,86296,86295,86294,86294,87568,87570,87570,87572,87574,87575,87577,87636,87578,87580,87582,87582,87584,87637,87585,87587,87589,87592,87594,87638,87595,87597,87639,87598,87600,87602,87604,87606,87640,87607,87609,87611,87612,87614,87616,87617,87619,87621,87621,87622,87624,87625,87627,87629,87630,87632,87634,87641,87635,81073,81073,81071,81070,81068,81066,81065,81063,81062,81060,81060,81058,81057,81056,81055,81053,81051,81049,81047,81047,81046,81204,81041,81039,84372,84371,84370,84368,84366,84386,84363,84363,84407,84361,84352,84351,84392,84348,84396,84345,84343,84385,84340,84338,84336,84334,84334,84333,84331,84324,84395,84321,84320,84319,84317,84317,84384,84315,84314,84312,86687,86687,86698,86677,86676,86686,86715,86715,86673,86672,86669,86685,86667,86662,86697,86660,86659,86714,86656,86649,86648,86646,86646,86682,86681,86643,86680,86641,86640,86706,86381,86380,86401,86430,86371,86370,86368,86362,86413,86436,86436,86360,86359,86359,86428,86357,86354,86412,86351,86346,86345,86343,86343,86341,86340,86340,86338,86337,86337,86399,86335,86332,86411,86329,86321,86398,86319,86319,86318,86433,86433,86397,86316,86311,86410,86308,86308,86306,86305,86304,86303,86301,86301,86299,86500,86500,86447,86297,86296,86294,87570,87574,87575,87636,87578,87582,87637,87637,87585,87589,87591,87592,87638,87598,87602,87604,87607,87611,87612,87612,87616,87617,87617,87621,87624,87629,87630,87634,87641,81073,81070,81068,81065,81063,81063,81060,81057,81056,81053,81052,81051,81047,81204,81042,81041,84372,84371,84368,84366,84366,84363,84361,84352,84392,84348,84348,84345,84344,84343,84340,84339,84338,84334,84331,84325,84324,84321,84320,84317,84315,84314,86687,86677,86676,86715,86672,86660,86659,86656,86649,86646,86681,86644,86643,86641,86641,86640,86381,86380,86430,86377,86363,86362,86436,86359,86357,86356,86355,86354,86351,86346,86343,86340,86337,86335,86334,86333,86332,86329,86321,86319,86433,86312,86311,86308,86308,86305,86304,86304,86301,86500,86297,86296,87570,87574,87636,87642,87578,87637,87589,87598,87604,87640,87607,87612,87617,87629,87634,87641,87641,81070,81068,81068,81063,81057,81057,81056,81052,81051,81204,81044,81042,84372,84371,84371,84366,84361,84352,84348,84344,84339,84338,84331,84325,84321,84320,84315,84314,86677,86676,86672,86671,86662,86660,86656,86650,86649,86681,86644,86641,86381,86381,86380,86377,86365,86363,86436,86436,86359,86356,86355,86351,86349,86347,86346,86340,86340,86337,86334,86333,86329,86328,86322,86321,86433,86313,86312,86308,86304,86500,86297,86297,87570,87574,87578,87589,87591,87639,87598,87640,87640,87607,87617,87629,87641,81068,81068,81057,81052,81052,81051,81044,81043,81042,84371,84371,84361,84360,84353,84352,84344,84339,84331,84330,84326,84325,84320,84320,84315,86677,86676,86671,86670,86663,86662,86656,86650,86681,86644,86644,86381,86377,86365,86436,86356,86355,86349,86348,86347,86340,86334,86322,86433,86316,86314,86313,86308,86308,86304,86297,86297,87574,87642,87578,87591,87638,87595,87639,87640,87640,87617,87624,81068,81052,81044,81043,84371,84360,84339,84330,84329,84326,84320,86677,86676,86670,86669,86663,86656,86655,86644,86377,86376,86365,86356,87643,86365,87643,86366,86348,86347,86334,86322,86316,86315,86308,86297,87644,86308,87644,86314,86297,87642,87578,87640,87624,87645,87640,87645,87595,81068,81044,81043,81043,84360,84358,84339,84329,84328,84327,84326,86677,86676,86669,86667,86663,86655,86654,86644,86376,86375,86356,86355,87646,87646,86366,87643,87646,87643,86356,86348,86334,87647,86348,87647,86355,86322,86315,86314,86297,87578,87648,87648,86314,87644,87648,87644,86297,87624,87625,87649,87649,87595,87645,87649,87645,87624,81068,81043,84358,84327,86677,86676,86663,86654,86653,86644,86375,86373,87650,86355,87647,87647,86334,87651,87647,87651,87650,86355,87650,87652,87652,86366,87646,87652,87646,86355,87653,86314,87648,87653,87648,87578,86314,87653,86322,87654,87595,87649,87654,87649,87625,87595,87654,87638,81068,84358,87655,81068,87655,87629,86676,86667,87656,86676,87656,84327,86663,86653,86652,86650,86644,86373,86334,86333,87657,87657,87658,87659,87657,87659,86334,87650,87658,87660,87660,86366,87652,87660,87652,87650,87658,87650,87651,87651,86334,87659,87651,87659,87658,87661,86322,87653,87661,87653,87578,86322,87661,86323,87625,87629,87662,87662,87638,87654,87662,87654,87625,87655,84357,87663,87655,87663,87629,84357,87655,84358,87664,84327,87656,87664,87656,86667,84327,87664,84328,86663,86652,86651,86651,86650,86373,87665,86323,87661,87665,87661,87578,86323,87665,86324,87666,87629,87663,87663,84357,87667,87663,87667,87666,87662,87666,87668,87662,87668,87638,87666,87662,87629,86667,86666,87669,87669,84328,87664,87669,87664,86667,86664,86663,86651,86651,86373,86372,87670,86324,87665,87670,87665,87578,86324,87670,86325,87668,87671,87672,87668,87672,87638,87671,87668,87666,87673,87666,87667,87673,87667,84357,87666,87673,87671,87674,87638,87672,87674,87672,87671,87638,87674,87578,86651,86372,86371,87675,86325,87670,87675,87670,87578,86325,87675,86326,87676,87671,87677,87676,87677,84355,87671,87676,87678,87674,87678,87679,87674,87679,87578,87678,87674,87671,87673,84355,87677,87673,87677,87671,84355,87673,84357,86651,86371,86368,87675,87679,87680,87675,87680,86326,87679,87675,87578,87679,87678,87681,87681,86326,87680,87681,87680,87679,87682,87678,87676,87676,84355,87683,87676,87683,87682,87681,87682,87684,87681,87684,86326,87682,87681,87678,86651,86368,86367,86327,86326,87684,87684,87682,87685,87684,87685,86327,87686,87682,87683,87683,84355,87687,87683,87687,87686,87682,87686,87688,87688,86327,87685,87688,87685,87682,86664,86651,86367,86328,86327,87688,87688,87686,87689,87688,87689,86328,87690,87686,87687,87687,84355,87691,87687,87691,87690,87686,87690,87692,87692,86328,87689,87692,87689,87686,86666,86664,86367,87690,87693,87694,87694,86328,87692,87694,87692,87690,87695,87690,87691,87695,87691,84355,87690,87695,87693,87696,86328,87694,87696,87694,87693,86328,87696,86333,86666,86367,86366,87693,84354,87697,87693,87697,87698,87696,87698,87699,87696,87699,86333,87698,87696,87693,84354,87693,87695,84354,87695,84355,86666,86366,87660,86666,87660,87658,87700,87658,87657,87700,87657,86333,87658,87700,86666,87698,84353,87701,87698,87701,87702,87702,86333,87699,87702,87699,87698,84353,87698,87697,84353,87697,84354,87703,87669,87704,87703,87704,86333,87669,87703,84328,87669,86666,87700,87700,86333,87704,87700,87704,87669,87702,84344,87705,87702,87705,86333,84344,87702,87701,84344,87701,84353,87706,84328,87703,87706,87703,86333,84328,87706,84339,87705,84343,87707,87705,87707,86333,84343,87705,84344,87707,84339,87706,87707,87706,86333,84339,87707,84343,81075,81074,87635,87635,87641,87634,87631,87630,87629,87628,87627,87626,87626,87625,87624,87623,87622,87621,87708,87709,87710,87711,87712,87713,87714,87715,87716,87716,87717,87718,87719,87720,87721,87721,87722,87723,87723,87724,87725,87726,87727,87728,87729,87730,87731,87731,87732,87733,87734,87735,87736,87736,87737,87738,87739,87740,87741,87741,87742,87743,87744,87745,87746,87746,87747,87748,87749,87750,87751,87752,87753,87754,87754,87755,87756,87756,87757,87758,87758,87759,87760,87760,87761,87762,87763,87764,87765,87765,87766,87767,87768,87769,87770,87771,87772,87773,87774,87775,87776,87777,87778,87779,87780,87781,87782,87782,87783,87784,87785,87786,87787,87787,87788,87789,87790,87791,87792,87793,87794,80914,81170,81169,81168,81167,81166,81218,81218,81212,81165,81164,81163,81162,81162,81161,81223,81223,81211,81160,81157,81156,81155,81154,81153,81196,81151,81150,81210,81146,81145,81144,81143,81142,81195,81195,81141,81140,81140,81139,81194,81194,81138,81137,81129,81128,81209,81209,81230,81242,81242,81229,81217,81217,81193,81127,81126,81125,81124,81123,81122,81222,81222,81237,81121,81120,81119,81192,81117,81116,81191,81114,81113,81208,81208,81190,81112,81111,81110,81216,81216,81207,81109,81108,81107,81189,81189,81251,81246,81246,81188,81106,81105,81104,81206,81102,81101,81100,81097,81096,81095,81094,81093,81215,81215,81187,81092,81091,81090,81241,81241,81258,81186,81186,81089,81088,81088,81087,81245,81245,81240,81221,81221,81086,81085,81081,81080,81185,81185,81205,81079,81076,81075,87635,87635,87634,87633,87631,87629,87628,87626,87624,87623,87623,87621,87708,87708,87710,87795,87711,87713,87796,87796,87714,87716,87721,87723,87725,87725,87726,87728,87729,87731,87733,87734,87736,87738,87741,87743,87797,87744,87746,87748,87798,87749,87751,87752,87754,87756,87756,87758,87760,87760,87762,87799,87763,87765,87767,87768,87770,87800,87771,87773,87801,87774,87776,87777,87780,87782,87784,87785,87787,87789,87802,87790,87792,87793,80914,80913,81170,81168,81167,81167,81218,81165,81162,81223,81160,81157,81155,81154,81154,81196,81152,81152,81151,81210,81147,81146,81144,81143,81195,81140,81140,81194,81137,81129,81209,81242,81242,81217,81127,81123,81222,81121,81121,81120,81192,81117,81191,81115,81114,81208,81112,81111,81216,81109,81108,81189,81246,81105,81206,81103,81102,81100,81099,81094,81215,81092,81092,81091,81241,81241,81186,81088,81088,81245,81221,81081,81185,81079,81077,81076,87635,87635,87633,87632,87632,87631,87628,87628,87626,87623,87623,87708,87795,87796,87716,87718,87721,87725,87728,87803,87729,87733,87733,87734,87738,87804,87744,87748,87751,87752,87756,87756,87760,87799,87763,87767,87805,87768,87800,87771,87771,87801,87806,87774,87777,87779,87779,87780,87784,87807,87785,87789,87802,87792,87793,87793,80913,81173,81170,81167,81165,81164,81162,81160,81158,81157,81154,81152,81210,81149,81147,81144,81143,81143,81140,81137,81130,81129,81242,81124,81123,81121,81121,81192,81118,81115,81114,81112,81111,81109,81108,81108,81246,81106,81106,81105,81103,81094,81092,81241,81241,81088,81221,81081,81079,81078,81077,87635,87632,87632,87628,87623,87623,87795,87808,87711,87796,87718,87719,87721,87728,87803,87733,87738,87797,87804,87748,87798,87751,87756,87756,87799,87763,87763,87805,87809,87810,87768,87771,87811,87774,87779,87779,87784,87812,87813,87807,87789,87802,87793,81173,81170,81165,81164,81164,81160,81159,81158,81154,81152,81152,81149,81148,81147,81143,81137,81130,81242,81127,81126,81124,81121,81121,81118,81117,81115,81112,81111,81111,81108,81106,81094,81241,81221,81078,81077,87632,87632,87623,87808,87711,87718,87719,87719,87728,87814,87815,87803,87738,87741,87797,87748,87816,87798,87756,87817,87810,87771,87811,87779,87812,87813,87789,87802,87802,81173,81172,81171,81170,81164,81164,81159,81158,81147,81137,81136,81131,81130,81127,81126,81121,81117,81117,81115,81111,81111,81106,81103,81095,81094,81221,81081,81078,87632,87632,87808,87711,87711,87719,87814,87818,87815,87738,87741,87748,87819,87820,87816,87756,87821,87817,87771,87806,87811,87812,87813,87802,81172,81171,81164,81158,81147,81136,81135,81132,81131,81127,81127,81126,81117,81117,81111,81103,81097,81095,81221,81081,87632,87711,87711,87814,87818,87818,87738,87739,87741,87819,87820,87820,87756,87763,87821,87771,87806,87806,87812,87822,87813,81172,81171,81171,81158,81152,81147,81135,81134,81132,81127,81117,81117,81103,81102,81098,81097,81221,81082,81081,87711,87711,87818,87739,87739,87741,87820,87820,87763,87809,87821,87806,87822,87813,81171,81152,81147,81134,81133,81132,81117,81102,81099,81098,81221,81083,81082,87711,87739,87820,87823,87739,87823,87711,87820,87809,87821,87821,87822,87813,87813,81152,81148,81133,81132,81102,81102,81099,81221,87824,87711,87823,87824,87823,87820,87711,87824,81083,87821,87813,87825,87821,87825,87820,87813,81148,81147,81133,81102,87826,81133,87826,81147,81102,81221,81085,87827,81083,87824,87827,87824,87820,81083,87827,81084,87813,81147,87828,87828,87820,87825,87828,87825,87813,81102,81085,87829,87829,81147,87826,87829,87826,81102,87830,81084,87827,87827,87820,87831,87827,87831,87830,81084,87830,87832,81084,87832,81085,87829,87830,87833,87829,87833,81147,87829,81085,87832,87829,87832,87830,87828,87830,87831,87828,87831,87820,87828,81147,87833,87828,87833,87830,86146,86145,86638,86637,86636,86635,86634,86633,86632,86631,86630,86693,86626,86625,86624,86622,86621,86692,86692,86691,86679,86619,86618,86617,86614,86613,86612,86612,82980,82979,82975,82974,83110,83110,83138,83137,83137,82973,82972,82972,87275,87274,87274,87273,87281,87270,87280,87269,87268,87267,87336,87336,87308,87297,87263,87262,87286,87261,85276,85275,85275,85274,85273,85273,85272,85271,85271,85270,85269,85268,85267,85449,85265,85264,85263,85262,85261,85260,85257,85256,85255,85254,85253,85448,85448,85447,85252,85249,85248,85446,85446,85481,85495,85495,85247,85246,85244,85243,85445,85445,85242,85241,85241,87834,87835,87836,87837,87838,87839,87840,87841,87841,87842,87843,87843,87844,87845,87846,87847,87848,87849,87850,87851,87852,87853,87854,87854,87855,87856,87856,87857,87858,87859,87860,87861,87861,87862,87863,87863,87864,87865,87866,87867,87868,87868,87869,87870,87870,87871,87872,87872,87873,86124,86124,86118,86048,86045,86044,86105,86042,86041,86040,86038,86037,86036,86034,86033,86203,86203,86404,86202,86199,86198,86197,86196,86195,86194,86194,86193,86389,86389,86416,86388,86191,86190,86189,86186,86185,86387,86387,86184,86183,86181,86180,86386,86174,86173,86415,86415,86431,86437,86437,86403,86385,86171,86170,86169,86166,86165,86402,86402,86425,86434,86434,86384,86164,86155,86154,86424,86424,86383,86153,86152,86151,86150,86149,86148,86147,86147,86146,86638,86637,86635,86634,86631,86693,86629,86626,86624,86623,86622,86692,86679,86620,86619,86617,86615,86614,86612,86612,82979,82978,82975,83110,83137,83137,82972,87274,87274,87281,87272,87271,87270,87269,87269,87268,87336,87336,87297,87266,87263,87286,87261,87261,85275,85273,85271,85269,85268,85268,85449,85266,85265,85263,85262,85262,85260,85259,85257,85255,85254,85254,85448,85252,85249,85446,85495,85244,85445,85241,87835,87836,87838,87839,87841,87843,87843,87845,87846,87846,87848,87874,87849,87851,87875,87876,87852,87854,87854,87856,87858,87858,87859,87861,87861,87863,87865,87866,87868,87870,87870,87872,86124,86045,86105,86043,86038,86036,86035,86035,86034,86203,86203,86202,86201,86200,86199,86197,86194,86389,86388,86192,86191,86189,86186,86387,86183,86181,86386,86179,86174,86415,86437,86437,86385,86172,86172,86171,86169,86166,86402,86434,86434,86164,86163,86155,86424,86153,86150,86149,86147,86147,86638,86637,86632,86631,86629,86623,86622,86679,86620,86617,86616,86615,86612,82978,83137,87274,87877,83137,87877,82975,87272,87271,87878,87272,87878,87274,87269,87336,87879,87269,87879,87271,87263,87261,85273,85265,85262,85259,85254,85252,85251,85250,85249,85495,85244,85241,87835,87835,87838,87880,87839,87843,87846,87881,87849,87875,87876,87854,87858,87858,87861,87865,87866,87870,86124,86046,86045,86043,86039,86038,86035,86035,86203,86201,86200,86197,86196,86194,86388,86192,86186,86183,86182,86175,86174,86437,86166,86434,86163,86156,86155,86153,86150,86147,86637,86632,86629,87882,86632,87882,86634,86626,86623,86679,86620,86616,86615,86615,82978,82977,87883,82975,87877,87883,87877,87274,82975,87883,82976,87884,87271,87879,87879,87336,87885,87879,87885,87884,87271,87884,87886,87886,87274,87878,87886,87878,87271,87264,87263,85273,85254,85251,85250,85250,85495,85246,85245,85244,87835,87835,87880,87839,87839,87846,87874,87875,87876,87858,87858,87865,87887,87888,87866,86124,86046,86043,86042,86040,86039,86035,86035,86201,86200,86200,86196,86194,86187,86186,86182,86176,86175,86437,86167,86166,86163,86157,86156,86153,86152,86150,86637,86629,86628,87889,87889,86634,87882,87889,87882,86629,86626,86679,87890,86626,87890,86627,86615,82977,87891,86615,87891,86620,87892,87274,87886,87892,87886,87884,87893,87884,87885,87893,87885,87336,87884,87893,87892,87274,87892,87894,87894,82976,87883,87894,87883,87274,87265,87264,85273,85250,85246,87895,85250,87895,85254,85245,87835,87839,87839,87874,87881,87875,87858,87887,87896,87888,86124,86040,86035,86200,86187,86182,86181,86176,86437,86172,86168,86167,86163,86158,86157,86153,86153,86152,86637,87897,86634,87889,87897,87889,86628,86634,87897,86637,87898,86627,87890,87898,87890,86679,86627,87898,86628,82977,82976,87899,87899,86620,87891,87899,87891,82977,87336,87266,87900,87900,87901,87902,87900,87902,87336,87892,87901,87903,87903,82976,87894,87903,87894,87892,87901,87892,87893,87893,87336,87902,87893,87902,87901,87265,85273,85271,85246,85245,87904,87904,85254,87895,87904,87895,85246,85245,87839,87881,87881,87875,87887,87905,87896,86124,86040,86200,86194,86177,86176,86172,86163,86162,87906,86163,87906,86168,86158,86153,86637,87907,86628,87898,87907,87898,86679,86628,87907,87908,87897,87908,87909,87897,87909,86637,87908,87897,86628,87903,87910,87911,87903,87911,82976,87910,87903,87901,87912,87901,87900,87912,87900,87266,87901,87912,87910,87911,87913,87914,87911,87914,82976,87913,87911,87910,87914,86620,87899,87914,87899,82976,86620,87914,87913,87265,85271,87915,87265,87915,87266,85245,87881,87916,87916,85254,87904,87916,87904,85245,87881,87887,87917,87905,86124,86048,86042,86040,86194,86177,86172,86169,86162,86161,87918,87918,86168,87906,87918,87906,86162,86158,86637,87919,86158,87919,86159,86679,86620,87920,87920,87921,87922,87920,87922,86679,87908,87921,87923,87923,86637,87909,87923,87909,87908,87921,87908,87907,87907,86679,87922,87907,87922,87921,87924,87266,87915,87924,87915,85271,87266,87924,87925,87926,87925,87927,87926,87927,87928,87925,87926,87266,87910,87928,87929,87910,87929,87930,87913,87930,87931,87913,87931,86620,87930,87913,87910,87928,87910,87912,87912,87266,87926,87912,87926,87928,87916,87917,87932,87916,87932,85254,87917,87916,87881,87905,86048,86047,86042,86194,86192,86178,86177,86169,86161,86160,87933,87933,86168,87918,87933,87918,86161,87934,86159,87919,87934,87919,86637,86159,87934,86160,87935,87936,87937,87937,87921,87938,87937,87938,87935,87939,87935,87940,87939,87940,87928,87935,87939,87936,87941,87923,87942,87941,87942,87936,87923,87941,86637,87923,87921,87937,87937,87936,87942,87937,87942,87923,87943,87920,87944,87943,87944,87930,87920,87943,87921,87920,86620,87931,87931,87930,87944,87931,87944,87920,87935,87930,87929,87929,87928,87940,87929,87940,87935,87943,87935,87938,87943,87938,87921,87935,87943,87930,87945,87946,87947,87945,87947,87925,87946,87945,87948,87946,87928,87927,87927,87925,87947,87927,87947,87946,87949,87925,87924,87924,85271,87950,87924,87950,87949,87945,87949,87951,87945,87951,87948,87949,87945,87925,87952,87936,87953,87953,87948,87954,87953,87954,87952,87941,87952,87955,87941,87955,86637,87952,87941,87936,87939,87946,87956,87939,87956,87936,87946,87939,87928,87946,87948,87953,87953,87936,87956,87953,87956,87946,87957,85254,87932,87957,87932,87917,85254,87957,85257,87905,86047,86046,86046,86042,86192,86179,86178,86169,87958,86160,87934,87934,86637,87959,87934,87959,87958,86160,87958,87960,87960,86168,87933,87960,87933,86160,87961,87948,87962,87961,87962,87963,87964,87963,87965,87964,87965,85268,87963,87964,87961,87948,87961,87966,87948,87966,87967,87968,87952,87969,87968,87969,87967,87952,87968,87970,87955,87970,87971,87955,87971,86637,87970,87955,87952,87954,87967,87969,87954,87969,87952,87967,87954,87948,87949,85268,87965,87949,87965,87963,87951,87963,87962,87951,87962,87948,87963,87951,87949,85268,87949,87950,85268,87950,85271,87972,85257,87957,87972,87957,87917,85257,87972,85258,87973,87905,86046,86179,86169,87974,86179,87974,86181,87960,87975,87976,87960,87976,86168,87975,87960,87958,87977,87958,87959,87977,87959,86637,87958,87977,87975,87978,86168,87976,87978,87976,87975,86168,87978,86169,87979,87980,87981,87979,87981,87967,87980,87979,87982,87983,87982,87984,87983,87984,85266,87982,87983,87980,87985,87967,87981,87985,87981,87980,87967,87985,87986,87987,87970,87988,87987,87988,87986,87970,87987,87989,87971,87989,87990,87971,87990,86637,87989,87971,87970,87968,87986,87988,87968,87988,87970,87986,87968,87967,87984,87961,87991,87984,87991,85266,87961,87984,87982,87966,87982,87979,87966,87979,87967,87982,87966,87961,87964,85266,87991,87964,87991,87961,85266,87964,85268,87992,85258,87972,87992,87972,87917,85258,87992,85259,87973,86046,86192,87993,86169,87978,87993,87978,87975,87994,87975,87977,87994,87977,86637,87975,87994,87993,86169,87993,87995,87995,86181,87974,87995,87974,86169,87996,85265,87997,87996,87997,87998,85265,87996,85266,87999,87998,88000,88000,88001,88002,88000,88002,87999,87996,87999,88003,87996,88003,85266,87999,87996,87998,87986,88001,88004,88004,88005,88006,88004,88006,87986,87989,88005,88007,88007,86637,87990,88007,87990,87989,88006,87989,87987,88006,87987,87986,87989,88006,88005,87980,87999,88008,88008,87986,87985,88008,87985,87980,88003,87980,87983,88003,87983,85266,87980,88003,87999,88001,87986,88008,88008,87999,88002,88008,88002,88001,87992,88009,88010,87992,88010,85259,88009,87992,87917,88009,87973,86192,87995,88001,88011,87995,88011,86181,88001,87995,87993,88005,87993,87994,87994,86637,88007,87994,88007,88005,87993,88005,88004,87993,88004,88001,87998,86181,88011,88011,88001,88000,88011,88000,87998,88012,87998,87997,88012,87997,85265,87998,88012,86181,88010,86192,88013,88010,88013,85259,86192,88010,88009,86187,86181,88012,88012,85265,88014,88012,88014,86187,88015,85259,88013,88015,88013,86192,85259,88015,85265,88016,86187,88014,88016,88014,85265,86187,88016,86188,88015,86189,88017,88015,88017,85265,86189,88015,86192,88017,86188,88016,88017,88016,85265,86188,88017,86189,86070,86069,88018,88019,88020,88021,88021,88022,88023,88024,88025,88026,88026,88027,88028,88029,88030,88031,88031,88032,88033,88034,88035,88036,88037,88038,88039,88040,88041,88042,88042,88043,88044,88045,88046,88047,88048,88049,88050,88050,88051,88052,88053,88054,88055,88056,88057,88058,88058,88059,88060,88061,88062,88063,88064,88065,88066,88066,88067,88068,88069,88070,88071,88072,88073,88074,88075,88076,88077,88078,88079,88080,88081,88082,88083,88083,88084,88085,88086,88087,88088,88088,88089,88090,88091,88092,88093,88093,85984,85983,85983,86098,86112,86112,86111,86097,86096,86095,86094,86094,86093,86092,86092,86091,86090,86088,86110,86087,86086,86085,86109,86083,86082,86081,86080,86079,86078,86077,86076,86075,86072,86071,86070,86070,88018,88094,88019,88021,88023,88024,88026,88028,88029,88031,88033,88033,88034,88036,88040,88042,88044,88045,88047,88048,88048,88050,88052,88095,88053,88055,88096,88056,88058,88058,88060,88097,88098,88061,88063,88064,88066,88068,88072,88074,88075,88075,88077,88078,88081,88083,88085,88086,88088,88090,88090,88091,88093,88093,85983,86112,86096,86094,86092,86092,86090,86089,86089,86088,86087,86087,86086,86109,86081,86080,86078,86077,86075,86074,86072,86070,88094,88019,88023,88099,88100,88024,88028,88101,88029,88033,88040,88044,88102,88102,88045,88048,88048,88052,88103,88095,88055,88104,88096,88058,88097,88098,88063,88064,88064,88068,88105,88071,88072,88075,88075,88078,88080,88080,88081,88085,88086,88090,88093,88093,86112,86097,86092,86089,86087,86087,86109,86084,86081,86078,86077,86073,86072,88094,88019,88099,88100,88100,88028,88101,88039,88040,88102,88102,88048,88103,88104,88096,88097,88098,88064,88105,88071,88075,88080,88080,88085,88086,88086,88093,86097,86087,86084,88106,86087,88106,86092,86083,86081,86077,86073,88094,88019,88019,88100,88101,88037,88039,88102,88102,88103,88107,88095,88104,88097,88098,88105,88108,88069,88071,88080,88080,88086,86097,86084,86083,88109,88109,86092,88106,88109,88106,86084,86083,86077,86074,86073,88019,88101,88036,88037,88102,88102,88107,88110,88111,88095,88097,88108,88069,88080,88080,86097,86096,86083,86074,88112,88112,86092,88109,88112,88109,86083,86074,86073,88101,88033,88036,88102,88102,88110,88111,88111,88097,88113,88098,88108,88080,88080,86096,86092,86074,88101,88033,88033,88102,88111,88098,88080,86092,86074,88033,88114,88114,86092,88112,88114,88112,86074,88113,88098,86092,88114,88111,88115,88114,88115,86092,88111,88114,88033,88113,86092,88115,88113,88115,88111,86069,86068,86067,86066,86065,86108,86108,86107,86064,86063,86062,86106,86060,86059,86119,86119,86058,86057,86057,86056,86055,86052,86051,86050,86050,86049,86130,86130,86127,86126,86126,86124,87873,87867,87866,87888,87888,87896,87905,87905,87973,88009,88009,87917,87887,87887,87865,87864,87860,87859,87858,87853,87852,87876,87876,87875,87851,87850,87849,87881,87881,87874,87848,87847,87846,87845,87844,87843,87842,87840,87839,87880,87836,87835,87834,87834,85241,85240,85240,85444,85239,85238,85237,85467,85467,85518,85505,85505,85443,85236,85235,85234,85233,85230,85229,85442,85227,85226,85466,85466,85526,85517,85517,85494,85225,85220,85219,85465,85465,85441,85218,85217,85216,85215,85213,85212,85464,85464,85493,85211,85210,85209,85463,85463,85208,85207,85205,85204,85462,85200,85199,85198,85194,85193,85492,85492,85504,85503,85503,85491,85480,85480,85192,85191,85187,85186,85440,85184,85183,85182,85182,85181,85074,85074,85073,85072,85069,85068,85067,85067,85066,85065,85064,85063,85062,85061,85060,85134,85134,85133,85059,85058,85057,85056,85053,85052,85051,85050,85049,85048,85047,85046,85132,85132,85145,85150,85150,85140,85131,85131,85045,88116,88117,88118,88119,88120,88121,88122,88123,88124,88125,88126,88127,88128,88128,88129,88130,88130,88131,88132,88133,88134,88135,88136,88137,88138,88139,88140,88141,88142,88143,88144,88145,88146,88147,88147,88148,88149,88149,88023,88022,88020,88019,88094,88018,86069,86067,86066,86108,86064,86063,86106,86061,86060,86119,86057,86053,86052,86050,86050,86130,86126,86126,87873,87872,87867,87888,87905,87905,88009,87887,87860,87858,87857,87853,87876,87851,87850,87881,87848,87848,87847,87845,87840,87880,87838,87837,87836,87834,87834,85240,85239,85239,85238,85467,85467,85505,85236,85235,85233,85232,85230,85442,85228,85227,85466,85517,85517,85225,85224,85220,85465,85218,85213,85464,85211,85210,85463,85207,85205,85462,85203,85201,85200,85198,85195,85194,85492,85492,85503,85480,85187,85440,85185,85182,85074,85072,85069,85067,85065,85064,85062,85061,85061,85134,85059,85054,85053,85051,85050,85048,85047,85047,85132,85150,85150,85131,88116,88117,88119,88150,88120,88122,88151,88123,88125,88152,88126,88128,88130,88130,88132,88133,88135,88136,88138,88139,88141,88153,88153,88142,88144,88145,88147,88149,88021,88020,88094,88018,86067,86066,86066,86064,86063,86061,86060,86057,86053,86050,86126,86126,87872,87871,87868,87867,87905,87905,87887,87864,87853,87851,87850,87850,87848,87845,87841,87840,87838,87837,87834,85239,85239,85467,85236,85235,85232,85231,85231,85230,85228,85227,85517,85224,85221,85220,85218,85214,85213,85211,85211,85210,85207,85205,85203,85202,85195,85492,85480,85188,85187,85185,85184,85182,85072,85069,85065,85064,85064,85061,85059,85047,85150,88116,88117,88150,88120,88151,88123,88152,88154,88126,88130,88139,88153,88144,88021,88094,88018,88018,86066,86063,86061,86057,86055,86054,86053,86126,87868,87905,87864,87854,87853,87850,87850,87845,87844,87841,87838,87837,87837,85239,85236,85235,85231,85228,85228,85227,85224,85222,85221,85218,85214,85211,85207,85205,85202,85201,85196,85195,85480,85188,85185,85184,85184,85072,85071,85069,85064,85059,85050,85047,88116,88117,88120,88151,88151,88152,88155,88154,88130,88133,88138,88139,88144,88022,88021,88018,88018,86063,86061,86054,86126,87871,87869,87868,87864,87854,87850,87844,87841,87837,85236,85228,85224,85223,85222,85218,85217,85215,85214,85207,85197,85196,85480,85188,85184,85071,85070,85069,85059,85051,85050,88116,88117,88151,88155,88135,88138,88144,88149,88022,88018,88018,86061,86055,86055,86054,87871,87870,87869,87864,87855,87854,87844,87842,87841,85236,85228,85223,85222,85215,85207,85206,85197,85480,85191,85189,85188,85071,85070,85059,85058,85051,88116,88156,88117,88155,88157,88133,88135,88144,88149,88018,86055,86055,87871,87870,87870,87864,87863,87856,87855,87844,87844,87842,85236,85228,85222,85217,85215,85206,85205,85198,85197,85191,85190,85189,85071,85070,85058,85056,85051,88156,88117,88133,88144,88158,88133,88158,88154,86055,87870,88159,86055,88159,88149,87870,87863,87862,87844,85236,88160,87844,88160,87856,85228,85217,88161,85228,88161,85235,85217,85215,85205,85198,85191,85190,85190,85071,85070,85070,85056,85055,85051,88117,88157,88144,88145,88162,88162,88154,88158,88162,88158,88144,88159,87862,88163,88159,88163,88149,87862,88159,87870,85236,85235,88164,88164,87856,88160,88164,88160,85236,85217,85205,85201,85198,85190,85070,85070,85055,85054,85054,85051,88157,88145,88149,88165,88165,88154,88162,88165,88162,88145,88163,87861,88166,88163,88166,88149,87861,88163,87862,88167,85235,88161,88167,88161,85217,88167,87856,88164,88167,88164,85235,85217,85201,85198,85070,85054,88168,85070,88168,85198,85054,88157,88169,88170,88149,88166,88166,87861,88171,88166,88171,88170,88165,88170,88172,88165,88172,88154,88170,88165,88149,88173,87856,88167,88173,88167,85217,87856,88173,87857,88174,85198,88168,88174,88168,85054,85198,88174,85217,85054,88169,88175,88176,88170,88177,88176,88177,87860,88170,88176,88178,88172,88178,88179,88172,88179,88154,88178,88172,88170,88171,87860,88177,88171,88177,88170,87860,88171,87861,88180,87857,88173,88173,85217,88181,88173,88181,88180,87857,88180,88182,87857,88182,87860,88174,88175,88183,88174,88183,85217,88175,88174,85054,88178,88180,88184,88184,88154,88179,88184,88179,88178,88182,88178,88176,88182,88176,87860,88178,88182,88180,88184,85217,88185,88184,88185,88154,88184,88180,88181,88184,88181,85217,88183,88154,88185,88183,88185,85217,88154,88183,88175,88099,88023,88149,88146,88145,88144,88143,88142,88153,88140,88139,88138,88137,88136,88135,88134,88133,88132,88127,88126,88154,88154,88175,88169,88169,88157,88155,88155,88152,88125,88124,88123,88151,88121,88120,88150,88118,88117,88156,85044,85043,85130,85041,85040,85129,85038,85037,85036,85036,85035,85128,85033,85032,85127,85127,85139,85031,85030,85029,85126,85027,85026,85138,85138,85137,85025,85024,85023,85022,85022,85021,85125,85019,85018,85167,85167,85169,85124,85016,85015,85014,85013,85012,85011,85008,85007,85006,85004,85003,85002,85002,85001,84968,84968,84967,88186,88186,88187,88188,88189,88190,88191,88191,88192,88193,88194,88195,88196,88196,88197,88198,88198,88199,88200,88201,88202,88203,88203,88204,88205,88206,88092,88091,88087,88086,88085,88082,88081,88080,88079,88078,88077,88076,88075,88074,88073,88072,88071,88070,88069,88108,88108,88105,88068,88065,88064,88063,88062,88061,88098,88098,88113,88097,88057,88056,88096,88096,88104,88055,88054,88053,88095,88095,88111,88110,88110,88107,88103,88049,88048,88047,88046,88045,88102,88041,88040,88039,88038,88037,88036,88035,88034,88033,88030,88029,88101,88025,88024,88100,88100,88099,88149,88147,88146,88144,88143,88153,88141,88140,88138,88137,88137,88135,88134,88134,88132,88131,88127,88154,88169,88169,88155,88125,88124,88151,88122,88121,88150,88119,88118,88156,88116,85044,85130,85042,85041,85129,85039,85036,85128,85034,85033,85127,85031,85030,85126,85028,85027,85138,85025,85022,85125,85020,85019,85167,85124,85016,85014,85013,85008,85006,85005,85002,84968,88186,88189,88191,88193,88207,88194,88196,88200,88201,88203,88205,88206,88091,88088,88087,88085,88082,88080,88079,88073,88071,88070,88070,88108,88068,88062,88098,88097,88057,88096,88055,88054,88095,88110,88110,88103,88052,88046,88102,88044,88042,88041,88039,88038,88036,88035,88035,88033,88032,88030,88101,88028,88026,88025,88100,88100,88149,88148,88147,88144,88143,88140,88137,88134,88134,88131,88130,88128,88127,88169,88124,88122,88121,88119,88118,88116,85042,85041,85039,85034,85033,85031,85030,85028,85027,85027,85025,85024,85022,85020,85019,85019,85124,85017,85017,85016,85013,85004,85002,88186,88208,88189,88193,88207,88196,88198,88200,88203,88205,88205,88091,88090,88088,88085,88084,88083,88082,88079,88073,88070,88068,88063,88062,88097,88057,88055,88054,88054,88110,88052,88047,88046,88044,88042,88039,88038,88038,88035,88032,88031,88030,88028,88026,88100,88148,88147,88143,88141,88140,88134,88130,88129,88128,88169,88121,88119,88116,85042,85039,85038,85034,85031,85030,85030,85027,85024,85024,85022,85019,85019,85017,85013,85004,88186,88188,88188,88208,88193,88207,88198,88200,88200,88205,88090,88089,88088,88084,88083,88079,88077,88074,88073,88068,88065,88063,88097,88057,88054,88052,88049,88047,88044,88042,88038,88032,88027,88026,88148,88140,88130,88129,88129,88169,88125,88121,88116,85045,85042,85038,85036,85034,85030,85024,85024,85019,85013,85005,85004,88188,88188,88193,88207,88200,88090,88209,88200,88209,88207,88089,88084,88083,88074,88068,88067,88065,88097,88060,88057,88052,88051,88049,88044,88043,88043,88042,88032,88027,88148,88147,88140,88129,88125,88121,85045,85044,85044,85042,85036,85024,85013,88210,85024,88210,85034,85008,85005,88188,88211,88207,88209,88211,88209,88090,88207,88211,88188,88074,88067,88066,88066,88065,88060,88058,88057,88051,88049,88043,88032,88027,88147,88141,88141,88140,88125,88121,85044,85036,85013,85011,88212,88212,85034,88210,88212,88210,85013,85009,85008,88188,88211,88089,88213,88211,88213,88188,88089,88211,88090,88076,88074,88066,88066,88060,88059,88058,88051,88050,88049,88032,88031,88028,88027,88141,88141,88125,88124,88121,85036,85034,85011,85010,88214,88214,85034,88212,88214,88212,85011,85009,88188,88213,88213,88089,88215,88213,88215,85009,88076,88066,88059,88058,88050,88049,88049,88031,88028,88141,88124,88216,88141,88216,88028,88124,88121,85034,85010,85009,88217,88217,85034,88214,88217,88214,85010,88215,88083,88218,88215,88218,85009,88083,88215,88089,88076,88059,88058,88058,88049,88028,88124,85034,88219,88219,88028,88216,88219,88216,88124,88218,88220,88221,88218,88221,85009,88220,88218,88083,88220,85034,88217,88217,85009,88221,88217,88221,88220,88058,88028,88222,88058,88222,88076,88220,88077,88223,88220,88223,85034,88077,88220,88083,88224,88222,88225,88224,88225,85034,88222,88224,88076,88222,88028,88219,88219,85034,88225,88219,88225,88222,88223,88076,88224,88223,88224,85034,88076,88223,88077,85755,85754,88226,88227,88228,88229,88229,88230,88231,88232,88233,88234,88234,88235,88236,88237,88238,88239,88240,88241,88242,88242,88243,88244,88244,88245,88246,88246,88247,88248,88249,88250,88251,88251,88252,88253,88254,88255,88256,88256,88257,88258,88259,88260,88261,88262,88263,84033,84033,84032,84031,84028,84027,84095,84025,84024,84083,84083,84118,84142,84142,84147,84082,84022,84021,84020,84017,84016,84109,84109,84127,84108,84108,84015,84014,84014,84013,85767,85766,85765,85764,85764,85763,85781,85761,85760,85759,85756,85755,88226,88227,88229,88231,88232,88234,88236,88242,88244,88246,88246,88248,88264,88265,88249,88251,88251,88253,88266,88254,88256,88258,88259,88261,88267,88262,84033,84031,84028,84095,84026,84025,84083,84142,84142,84082,84023,84017,84109,84108,84108,84014,85767,85766,85764,85781,85761,85759,85758,85757,85756,88226,88268,88227,88231,88269,88232,88236,88240,88242,88246,88246,88264,88270,88265,88251,88266,88254,88258,88271,88259,88267,88262,88262,84031,84030,84028,84026,84025,84025,84142,84023,84018,84017,84108,84108,85767,85766,85766,85781,85762,85761,85758,85757,85757,88226,88272,88268,88231,88273,88273,88269,88236,88240,88246,88270,88265,88266,88274,88274,88254,88271,88271,88259,88262,88262,84030,84029,84028,84025,84023,84019,84018,84108,84108,85766,85762,85761,85757,88272,88268,88273,88236,88275,88240,88270,88265,88274,88271,88271,88262,84029,84028,84023,84022,84019,84108,85762,85762,85761,88272,88268,88236,88237,88275,88270,88276,88265,88271,84029,84029,84028,84022,84020,84019,85762,85762,88272,88268,88268,88237,88239,88275,88276,88265,88265,84029,84022,84022,84020,85762,85762,88268,88239,88275,88265,84022,84022,85762,88239,88277,88275,84022,84022,88239,88277,88278,88279,88280,88280,88281,88282,88282,88283,88284,88284,88285,88286,88286,88287,88288,88288,88289,88278,88278,88280,88282,88282,88284,88286,88286,88288,88278,88278,88282,88286,88290,88291,88292,88292,88293,88294,88294,88295,88296,88297,88298,88290,88290,88292,88294,88294,88296,88297,88297,88290,88294,88299,88300,88301,88301,88302,88303,88303,88304,88305,88305,88306,88307,88307,88308,88299,88299,88301,88303,88303,88305,88307,88307,88299,88303,88309,88310,88311,88311,88312,88313,88313,88314,88315,88315,88309,88311,88311,88313,88315,88316,88317,88318,88318,88319,88320,88320,88321,88322,88322,88316,88318,88318,88320,88322,88323,88324,88325,88325,88326,88327,88327,88328,88323,88323,88325,88327,88329,88330,88331,88331,88332,88333,88333,88334,88335,88335,88329,88331,88331,88333,88335,85632,85408,85407,85406,85405,85489,85489,85477,85404,85397,85396,85395,85394,85393,85392,85385,85384,85459,85459,85488,85383,85382,85381,85487,85377,85376,85476,85476,85516,85523,85523,85375,85374,85486,85372,85371,85485,85473,85369,85367,85456,85366,85365,85364,85363,85362,85361,85360,85360,85359,85358,85357,85356,85355,85355,85354,85353,85353,85352,85351,85351,85350,85349,85348,85347,85346,85346,85345,85344,85344,85343,85342,85341,85340,85339,85339,85338,85337,85336,85335,85334,85334,85333,85332,85332,85331,85330,85330,85329,85328,85327,85326,85325,85325,85324,85323,87259,87258,87257,87256,87255,87254,87253,87252,87251,87250,87279,87249,87248,87247,87278,87244,80874,80865,80864,80863,80862,80881,80857,80856,80886,80854,80853,80876,80879,80904,80846,80845,80869,80869,80844,80843,80843,80842,80891,80891,80899,80883,80883,80868,80841,80840,80839,80838,80838,80837,80836,80836,80835,80834,80834,80833,80832,80831,80830,80867,80867,80829,80828,80828,80827,80826,80825,80824,80823,80822,80821,80820,80819,80818,80817,80816,80815,80814,80813,80812,80811,80811,80810,88336,88337,88338,88339,88339,88340,88341,88342,88343,88344,88344,88345,88346,88347,88348,88349,88350,88351,88352,88352,88353,88354,88355,88356,88357,88358,88359,88360,88361,88362,85681,85681,85680,85679,85678,85677,85785,85673,85672,85784,85784,85791,85777,85670,85669,85776,85667,85666,85775,85664,85663,85774,85659,85658,85773,85773,85790,85772,85656,85655,85783,85653,85652,85771,85648,85647,85770,85645,85644,85782,85782,85789,85643,85640,85639,85769,85637,85636,85768,85634,85633,85632,85632,85407,85406,85406,85489,85404,85397,85395,85394,85394,85392,85391,85385,85459,85383,85383,85382,85487,85377,85476,85523,85475,85486,85371,85474,85485,85369,85368,85367,85366,85366,85365,85363,85358,85357,85355,85349,85348,85346,85346,85344,85342,85342,85341,85339,85339,85337,85336,85336,85334,85332,85332,85330,85328,85327,85325,85323,87260,87259,87257,87257,87256,87254,87254,87253,87251,87251,87250,87249,87248,87278,87246,87245,87244,80865,80865,80864,80862,80878,80881,80856,80884,80886,80853,80871,80876,80904,80846,80869,80843,80843,80891,80883,80836,80834,80832,80831,80867,80828,80828,80826,80825,80825,80823,80822,80822,80820,80819,80819,80817,80816,80816,80814,80813,80813,80811,88336,88337,88339,88341,88346,88347,88349,88350,88352,88354,88358,88360,88361,88361,85681,85679,85678,85785,85676,85673,85784,85777,85670,85776,85668,85667,85775,85665,85664,85774,85662,85659,85773,85772,85656,85783,85654,85653,85771,85651,85648,85770,85646,85645,85782,85643,85640,85769,85638,85637,85768,85635,85634,85632,85406,85406,85404,85403,85397,85394,85391,85386,85385,85383,85383,85487,85380,85377,85523,85374,85458,85475,85371,85457,85474,85369,85369,85368,85366,85366,85363,85362,85358,85355,85353,85351,85349,85346,85346,85342,85339,85339,85336,85332,85327,85323,87260,87260,87257,87254,87251,87249,87248,87246,87245,80865,80873,80878,80856,80880,80884,80853,80852,80871,80904,80847,80846,80843,80843,80883,80841,80831,80828,80825,80822,80819,80816,80813,88336,88363,88337,88341,88364,88349,88350,88354,88358,88361,85679,85674,85673,85777,85671,85670,85668,85659,85772,85657,85653,85651,85650,85649,85648,85646,85646,85645,85643,85641,85640,85638,85638,85637,85635,85635,85634,85406,85406,85403,85402,85397,85391,85390,85386,85383,85380,85377,85374,85373,85373,85458,85371,85370,85457,85369,85369,85366,85362,85360,85358,85353,85353,85351,85346,85339,85332,88365,85339,88365,85346,85328,85327,87260,87260,87254,87251,87248,87246,80865,80858,80873,80856,80877,80880,80853,80853,80852,80904,80848,80847,80843,80843,80841,80840,80831,80825,80822,80822,80816,80813,80813,88363,88366,88337,88364,88367,88346,88349,88354,88368,88358,85679,85674,85777,85671,85671,85668,85667,85660,85659,85657,85649,85646,85643,85641,85638,85635,85635,85406,85402,85397,85390,85389,85387,85386,85380,85377,85373,85371,85371,85370,85369,85369,85362,85360,85353,85346,85353,85353,85353,85360,85332,85328,88369,88369,85346,88365,88369,88365,85332,85328,87260,87251,87251,87248,80865,80859,80858,80856,80872,80877,80853,80853,80904,80906,80848,80843,80840,80822,80813,88370,80822,88370,80831,88337,88367,88342,88344,88346,88354,88368,85679,85678,85674,85671,85667,85661,85660,85657,85650,85649,85643,85642,85641,85635,85635,85402,85401,85397,85389,85388,85388,85387,85380,85371,85369,88371,85371,88371,85377,88372,85360,85353,85353,85346,88373,85353,88373,88372,85360,88372,88374,85360,88374,85369,85328,87251,88375,85328,88375,88376,88369,88376,88377,88369,88377,85346,88376,88369,85328,87251,80865,80862,80855,80872,80853,80853,80906,80910,80849,80848,80840,88370,88366,88378,88370,88378,80831,88366,88370,80813,88344,88354,88355,88368,85678,85676,85674,85667,85665,85661,85657,85656,85650,85643,85642,85642,85635,85401,85398,85397,85388,85388,85380,85379,88372,88379,88380,88380,85369,88374,88380,88374,88372,88381,88372,88373,88381,88373,85346,88372,88381,88379,88382,88371,88383,88382,88383,88379,88371,88382,85377,88371,85369,88380,88380,88379,88383,88380,88383,88371,87251,80862,88384,88384,88385,88386,88384,88386,87251,88376,88385,88387,88387,85346,88377,88387,88377,88376,88385,88376,88375,88375,87251,88386,88375,88386,88385,80856,80855,80853,80853,80910,80911,80849,80840,80838,88378,88337,88388,88378,88388,80831,88337,88378,88366,88344,88355,88357,88368,85676,85675,85661,85656,85654,85650,85642,85401,85398,85388,85379,88382,88389,88390,88382,88390,85377,88389,88382,88379,88391,88379,88381,88391,88381,85346,88379,88391,88389,88392,85377,88390,88392,88390,88389,85377,88392,85378,88393,88385,88394,88393,88394,80861,88385,88393,88395,88387,88395,88396,88387,88396,85346,88395,88387,88385,88384,80861,88394,88384,88394,88385,80861,88384,80862,80856,80853,80911,80849,80838,80836,88388,88342,88397,88388,88397,80831,88342,88388,88337,88344,88357,88398,88368,85675,85674,85661,85654,85653,85653,85650,85401,85398,85379,85378,88399,88395,88400,88399,88400,80860,88395,88399,88401,88396,88401,88402,88396,88402,85346,88401,88396,88395,88393,80860,88400,88393,88400,88395,80860,88393,80861,80856,80911,88403,80856,88403,80859,80849,80836,80832,88397,88344,88404,88397,88404,80831,88344,88397,88342,88405,88368,85674,85653,85401,88406,85653,88406,85661,88392,88407,88408,88392,88408,85378,88407,88392,88389,88409,88389,88391,88409,88391,85346,88389,88409,88407,88410,85378,88408,88410,88408,88407,85378,88410,85398,88411,88401,88412,88411,88412,80859,88401,88411,88413,88402,88413,88414,88402,88414,85346,88413,88402,88401,88399,80859,88412,88399,88412,88401,80859,88399,80860,80911,80912,88415,88415,80859,88403,88415,88403,80911,80832,80831,88416,80832,88416,80849,88344,88398,88417,88417,80831,88404,88417,88404,88344,88405,85674,85665,85401,85400,88418,88418,85661,88406,88418,88406,85401,88410,88419,88420,88410,88420,85398,88419,88410,88407,88421,88407,88409,88421,88409,85346,88407,88421,88419,88422,85398,88420,88422,88420,88419,85398,88422,85399,88415,88423,88424,88415,88424,80859,88423,88415,80912,88423,88425,88426,88426,80859,88424,88426,88424,88423,88413,88425,88427,88427,85346,88414,88427,88414,88413,88426,88413,88411,88426,88411,80859,88413,88426,88425,88398,88405,88428,88428,80831,88417,88428,88417,88398,88405,85665,85664,85400,85399,88429,88429,85661,88418,88429,88418,85400,88430,88431,88432,88430,88432,88425,88430,88433,88434,88430,88434,88431,88427,88431,88435,88427,88435,85346,88427,88425,88432,88427,88432,88431,88423,88436,88437,88423,88437,88425,88423,80912,88438,88423,88438,88436,88430,88436,88439,88430,88439,88433,88430,88425,88437,88430,88437,88436,88440,88441,88442,88440,88442,88419,88440,88433,88443,88440,88443,88441,88422,88441,88444,88422,88444,85399,88422,88419,88442,88422,88442,88441,88421,88431,88445,88421,88445,88419,88421,85346,88435,88421,88435,88431,88440,88431,88434,88440,88434,88433,88440,88419,88445,88440,88445,88431,88405,85664,88446,88405,88446,88447,88428,88447,88448,88428,88448,80831,88447,88428,88405,88449,88450,88451,88449,88451,88433,88450,88449,88452,88453,88452,88454,88453,88454,80908,88452,88453,88450,88455,88433,88451,88455,88451,88450,88433,88455,88456,88457,88441,88458,88457,88458,88456,88441,88457,88459,88444,88459,88460,88444,88460,85399,88459,88444,88441,88443,88456,88458,88443,88458,88441,88456,88443,88433,88454,88436,88461,88454,88461,80908,88436,88454,88452,88439,88452,88449,88439,88449,88433,88452,88439,88436,88438,80908,88461,88438,88461,88436,80908,88438,80912,88462,80831,88448,88462,88448,88447,88463,88447,88446,88463,88446,85664,88447,88463,88462,80831,88462,88464,88464,80849,88416,88464,88416,80831,88465,88466,88467,88465,88467,88456,88466,88465,88468,88469,88468,88470,88469,88470,80902,88468,88469,88466,88471,88456,88467,88471,88467,88466,88456,88471,88472,88473,88459,88474,88473,88474,88472,88459,88473,88475,88460,88475,88476,88460,88476,85399,88475,88460,88459,88457,88472,88474,88457,88474,88459,88472,88457,88456,88470,88450,88477,88470,88477,80902,88450,88470,88468,88455,88468,88465,88455,88465,88456,88468,88455,88450,88453,80902,88477,88453,88477,88450,80902,88453,80908,88478,88462,88479,88478,88479,85662,88462,88478,88480,88464,88480,88481,88464,88481,80849,88480,88464,88462,88463,85662,88479,88463,88479,88462,85662,88463,85664,88482,88483,88484,88482,88484,88472,88483,88482,88485,88486,88485,88487,88486,88487,80900,88485,88486,88483,88488,88472,88484,88488,88484,88483,88472,88488,88489,88490,88475,88491,88490,88491,88489,88475,88490,88492,88476,88492,88493,88476,88493,85399,88492,88476,88475,88473,88489,88491,88473,88491,88475,88489,88473,88472,88466,80900,88487,88466,88487,88485,88471,88485,88482,88471,88482,88472,88485,88471,88466,80900,88466,88469,80900,88469,80902,88494,85661,88495,88494,88495,88496,85661,88494,85662,88480,88496,88497,88497,80849,88481,88497,88481,88480,88494,88480,88478,88494,88478,85662,88480,88494,88496,88498,88489,88499,88498,88499,88500,88501,88500,88502,88501,88502,80898,88500,88501,88498,88489,88498,88503,88489,88503,88504,88505,88492,88506,88505,88506,88504,88492,88505,88507,88493,88507,88508,88493,88508,85399,88507,88493,88492,88490,88504,88506,88490,88506,88492,88504,88490,88489,88483,80898,88502,88483,88502,88500,88488,88500,88499,88488,88499,88489,88500,88488,88483,80898,88483,88486,80898,88486,80900,88429,88509,88510,88429,88510,85661,88509,88429,85399,88509,88511,88512,88512,85661,88510,88512,88510,88509,88496,88511,88513,88513,80849,88497,88513,88497,88496,88512,88496,88495,88512,88495,85661,88496,88512,88511,88514,88504,88515,88515,80896,88516,88515,88516,88514,88504,88514,88517,88504,88517,88518,88507,88518,88519,88507,88519,88520,88508,88520,88521,88508,88521,85399,88520,88508,88507,88518,88507,88505,88518,88505,88504,88498,80896,88515,88515,88504,88503,88515,88503,88498,80896,88498,88501,80896,88501,80898,88513,88522,88523,88513,88523,80849,88522,88513,88511,88524,88511,88509,88524,88509,85399,88511,88524,88522,88525,80849,88523,88525,88523,88522,80849,88525,80850,88526,88518,88527,88526,88527,80894,88518,88526,88528,88520,88528,88529,88529,85399,88521,88529,88521,88520,88528,88520,88519,88528,88519,88518,88514,80894,88527,88527,88518,88517,88527,88517,88514,80894,88514,88516,80894,88516,80896,88525,88530,88531,88525,88531,80850,88530,88525,88522,88532,88522,88524,88532,88524,85399,88522,88532,88530,88533,80850,88531,88533,88531,88530,80850,88533,80851,88534,88528,88535,88534,88535,80889,88528,88534,88536,88529,88536,88537,88529,88537,85399,88536,88529,88528,88526,80889,88535,88526,88535,88528,80889,88526,80894,88533,88538,88539,88533,88539,80851,88538,88533,88530,88540,88530,88532,88540,88532,85399,88530,88540,88538,88541,80851,88539,88541,88539,88538,80851,88541,80870,88542,88536,88543,88542,88543,80887,88536,88542,88544,88537,88544,88545,88537,88545,85399,88544,88537,88536,88534,80887,88543,88534,88543,88536,80887,88534,80889,88541,88546,88547,88541,88547,80870,88546,88541,88538,88548,88538,88540,88548,88540,85399,88538,88548,88546,88549,80870,88547,88549,88547,88546,80870,88549,80875,88550,88544,88551,88550,88551,80885,88544,88550,88552,88545,88552,88553,88545,88553,85399,88552,88545,88544,88542,80885,88551,88542,88551,88544,80885,88542,80887,88549,88552,88554,88549,88554,80875,88552,88549,88546,88553,88546,88548,88553,88548,85399,88546,88553,88552,88550,80875,88554,88550,88554,88552,80875,88550,80885,88555,88556,88557,88557,88558,88559,88560,88561,88562,88562,88563,88564,88564,88565,88566,88566,88567,88568,88569,88570,88571,88571,88572,88555,88555,88557,88559,88560,88562,88564,88564,88566,88568,88569,88571,88555,88555,88559,88573,88573,88560,88564,88564,88568,88569,88569,88555,88573,88573,88564,88569,87708,87621,87620,87620,87619,87618,87618,87617,87616,87613,87612,87611,87611,88574,88575,88575,88576,88577,88578,88579,88580,88580,88581,88582,88582,88583,88584,88585,87727,87726,87722,87721,87720,87720,87719,87718,87715,87714,87796,87796,87713,87712,87712,87711,87808,87808,87795,87710,87709,87708,87620,87614,87613,87611,88575,88577,88578,88578,88580,88582,88584,88585,87726,87723,87722,87720,87720,87718,87717,87715,87796,87712,87712,87808,87710,87710,87709,87620,87614,87611,88575,88578,88582,88584,88584,87726,87725,87723,87720,87717,87715,87712,87710,87710,87620,87618,87615,87614,88575,88575,88578,88584,88584,87725,87724,87723,87717,87716,87716,87715,87710,87710,87618,87616,87616,87615,88575,88575,88584,87724,87723,87716,87710,87710,87616,88575,88575,87724,87723,87723,87710,88575,84526,84525,88586,88586,88587,88588,88588,88589,88590,88591,88592,88593,88594,88595,88596,88597,88598,88599,88599,88600,88601,88601,88602,88603,88603,88604,88605,88605,88606,88607,88607,88608,88609,88609,88610,88611,88611,88612,88613,88613,88614,88615,88616,88617,88618,88619,88620,88621,88622,88623,88624,88624,88625,88626,88627,88628,88629,88630,88631,88632,88633,88634,88635,88636,88637,88638,88638,88639,88640,88640,88641,88642,88642,88643,88644,88644,88645,88646,88647,88648,88649,88650,42029,42028,42028,42027,42093,42093,42026,42025,42025,42024,42092,42092,42097,42023,42023,42022,42109,42109,42108,88651,88652,88653,88654,88655,88656,88657,88657,88658,88659,88660,88661,88662,88662,88663,88664,88665,88666,88667,88668,88669,88670,88670,88671,88672,88672,88673,88674,88675,88676,88677,88677,88678,88679,88680,88681,88682,88683,88684,88685,88686,88687,88688,88689,88690,88691,88692,88693,88694,88695,88696,88697,88698,88699,88700,88701,88702,88703,88704,88705,88706,88707,83028,83027,83027,83026,83025,83025,83024,83145,83145,83158,83023,83018,83017,83144,83144,83016,83015,83015,83014,83113,83113,83127,83013,83010,83009,84561,84560,84559,84558,84557,84556,84555,84555,84554,84553,84553,84552,84551,84551,84550,84549,84549,84548,84635,84635,84675,84658,84658,84547,84546,84542,84541,84634,84634,84540,84539,84539,84538,84537,84537,84536,84535,84535,84534,84533,84533,84532,84531,84530,84529,84528,84528,84527,84526,84526,88586,88588,88588,88590,88591,88708,88594,88596,88599,88601,88603,88605,88607,88609,88611,88613,88615,88619,88621,88709,88622,88624,88626,88710,88627,88629,88630,88632,88633,88636,88638,88640,88640,88642,88644,88644,88646,88647,88649,88650,42028,42028,42093,42025,42025,42092,42023,42023,42109,88651,88654,88655,88657,88660,88662,88664,88665,88667,88711,88670,88672,88674,88675,88677,88679,88683,88685,88686,88686,88688,88689,88691,88692,88694,88695,88697,88698,88698,88700,88701,88701,88703,88704,88707,83027,83025,83025,83145,83023,83018,83144,83015,83015,83113,83013,83125,83010,84561,84560,84558,84557,84555,84553,84551,84549,84635,84658,84543,84542,84634,84539,84537,84535,84533,84531,84530,84528,84526,88588,88712,88708,88596,88603,88605,88713,88603,88713,88599,88605,88609,88611,88611,88615,88616,88618,88619,88709,88709,88622,88626,88630,88633,88635,88714,88636,88640,88640,88644,88647,88649,42028,42025,42025,42023,88651,88654,88657,88659,88660,88664,88715,88665,88711,88668,88668,88670,88674,88675,88679,88680,88683,88686,88689,88691,88694,88716,88717,88695,88698,88701,88704,88706,88706,88707,83025,83025,83023,83022,83019,83018,83015,83142,83125,84561,84560,84557,84555,84555,84551,84549,84549,84658,84546,84544,84543,84634,84535,84533,84530,84530,84528,88588,88712,88596,88597,88605,88611,88616,88718,88630,88635,88635,88714,88640,88640,88647,88649,88649,42025,88651,88654,88659,88719,88719,88660,88715,88668,88674,88720,88721,88675,88680,88682,88683,88689,88691,88716,88722,88698,88701,88706,88706,83025,83022,83020,83019,83015,83170,83142,84561,84555,84549,88723,84555,88723,84560,84549,84546,84545,84544,84634,84539,84530,88588,88724,84530,88724,84535,88725,88712,88597,88605,88616,88618,88718,88635,88640,88649,88651,88726,88649,88726,88640,88719,88715,88727,88668,88720,88721,88721,88680,88682,88682,88689,88691,88698,88706,88728,88698,88728,88717,88706,83022,83021,83020,83015,83013,83186,83170,84561,84549,84545,88729,84549,88729,88730,88723,88730,88731,88723,88731,84560,88730,88723,84549,84544,84539,84535,88591,84535,88724,88591,88724,88588,88732,88725,88597,88618,88709,88733,88618,88733,88605,88718,88640,88726,88718,88726,88651,88719,88727,88665,88668,88721,88682,88682,88691,88722,88706,83021,88734,88734,88717,88728,88734,88728,88706,83021,83020,83013,83202,83186,84561,88731,88735,88736,88731,88736,84560,88735,88731,88730,88737,88730,88729,88737,88729,84545,88730,88737,88735,88738,84560,88736,88738,88736,88735,84560,88738,84561,84545,84544,84535,84535,88591,88593,88739,88732,88597,88740,88605,88733,88733,88709,88741,88733,88741,88740,88605,88740,88742,88742,88599,88713,88742,88713,88605,88629,88718,88651,88665,88668,88682,88682,88722,88743,83021,83013,88744,88744,88717,88734,88744,88734,83021,83219,83202,84561,84535,88593,88745,84535,88745,84545,88739,88597,88599,88629,88651,88746,88682,88743,88747,88682,88747,88665,88748,88717,88744,88748,88744,83013,88717,88748,88749,83238,83219,84561,88750,84545,88745,88745,88593,88751,88745,88751,88750,84545,88750,88752,84545,88752,88753,88735,88753,88754,88735,88754,88755,88738,88755,88756,88738,88756,84561,88755,88738,88735,88753,88735,88737,88753,88737,84545,88757,88739,88599,88629,88746,88652,88758,88665,88747,88758,88747,88743,88665,88758,88719,88759,88749,88748,88759,88748,83013,88749,88759,88743,83280,83238,84561,88760,88761,88762,88760,88762,88753,88761,88760,88763,88764,88763,88765,88764,88765,88757,88763,88764,88761,88766,88753,88762,88766,88762,88761,88753,88766,88767,88768,88755,88769,88768,88769,88767,88755,88768,88770,88756,88770,88771,88756,88771,84561,88770,88756,88755,88754,88767,88769,88754,88769,88755,88767,88754,88753,88765,88750,88772,88765,88772,88757,88750,88765,88763,88752,88763,88760,88752,88760,88753,88763,88752,88750,88751,88757,88772,88751,88772,88750,88757,88751,88593,88773,88599,88742,88773,88742,88740,88774,88740,88741,88774,88741,88709,88740,88774,88773,88599,88773,88775,88599,88775,88757,88629,88652,88654,88776,88719,88758,88776,88758,88743,88719,88776,88654,83013,83012,88777,88777,88743,88759,88777,88759,83013,83280,84561,88778,83280,88778,83326,88779,88780,88781,88781,88782,88783,88781,88783,88779,88784,88779,88785,88784,88785,88709,88779,88784,88780,88786,88787,88788,88786,88788,88780,88787,88786,88789,88787,88782,88781,88781,88780,88788,88781,88788,88787,88790,88791,88792,88790,88792,88773,88791,88790,88782,88791,88757,88775,88775,88773,88792,88775,88792,88791,88779,88773,88774,88774,88709,88785,88774,88785,88779,88790,88779,88783,88790,88783,88782,88779,88790,88773,88793,88794,88795,88793,88795,88789,88794,88793,88796,88794,88767,88797,88797,88789,88795,88797,88795,88794,88770,88796,88798,88798,84561,88771,88798,88771,88770,88794,88770,88768,88794,88768,88767,88770,88794,88796,88761,88782,88799,88799,88767,88766,88799,88766,88761,88791,88761,88764,88791,88764,88757,88761,88791,88782,88799,88787,88800,88799,88800,88767,88787,88799,88782,88787,88789,88797,88797,88767,88800,88797,88800,88787,88629,88654,88776,88776,88743,88801,88776,88801,88629,83012,83011,88802,88802,88743,88777,88802,88777,83012,88803,83326,88778,88803,88778,84561,83326,88803,83350,88709,88626,88804,88709,88804,88805,88806,88805,88807,88807,88808,88809,88807,88809,88806,88805,88806,88810,88805,88810,88709,88789,88808,88811,88811,88812,88813,88811,88813,88789,88796,88812,88814,88814,84561,88798,88814,88798,88796,88812,88796,88793,88793,88789,88813,88793,88813,88812,88808,88789,88786,88786,88780,88815,88786,88815,88808,88806,88780,88784,88784,88709,88810,88784,88810,88806,88780,88806,88809,88809,88808,88815,88809,88815,88780,88816,88629,88801,88816,88801,88743,88629,88816,88710,83011,83112,88817,88817,88743,88802,88817,88802,83011,88818,83350,88803,88818,88803,84561,83350,88818,83380,88626,88710,88819,88819,88820,88821,88819,88821,88626,88822,88820,88823,88823,88824,88825,88823,88825,88822,88820,88822,88826,88826,88626,88821,88826,88821,88820,88808,88824,88827,88827,88828,88829,88827,88829,88808,88812,88828,88830,88830,84561,88814,88830,88814,88812,88828,88812,88811,88811,88808,88829,88811,88829,88828,88824,88808,88807,88807,88805,88831,88807,88831,88824,88822,88805,88804,88804,88626,88826,88804,88826,88822,88805,88822,88825,88825,88824,88831,88825,88831,88805,88832,88743,88817,88817,83112,88833,88817,88833,88832,88743,88832,88834,88834,88710,88816,88834,88816,88743,88835,83380,88818,88835,88818,84561,83380,88835,83386,88836,88837,88838,88836,88838,88839,88836,88824,88840,88836,88840,88837,88841,88837,88842,88841,88842,83112,88841,88839,88838,88841,88838,88837,88843,88828,88844,88843,88844,88839,88843,84561,88830,88843,88830,88828,88836,88828,88827,88836,88827,88824,88836,88839,88844,88836,88844,88828,88820,88832,88845,88845,88824,88823,88845,88823,88820,88834,88820,88819,88834,88819,88710,88820,88834,88832,88833,88837,88846,88833,88846,88832,88833,83112,88842,88833,88842,88837,88845,88837,88840,88845,88840,88824,88845,88832,88846,88845,88846,88837,88847,83386,88835,88847,88835,84561,83386,88847,83389,88848,88839,88849,88848,88849,83126,88839,88848,88850,88843,88850,88851,88843,88851,84561,88850,88843,88839,88841,83126,88849,88841,88849,88839,83126,88841,83112,88852,83389,88847,88852,88847,84561,83389,88852,83385,88853,88850,88854,88853,88854,83143,88850,88853,88855,88851,88855,88856,88851,88856,84561,88855,88851,88850,88848,83143,88854,88848,88854,88850,83143,88848,83126,88857,83385,88852,88857,88852,84561,83385,88857,83379,88858,88855,88859,88858,88859,83157,88855,88858,88860,88856,88860,88861,88856,88861,84561,88860,88856,88855,88853,83157,88859,88853,88859,88855,83157,88853,83143,88862,83379,88857,88862,88857,84561,83379,88862,83359,88863,88860,88864,88863,88864,83172,88860,88863,88865,88861,88865,88866,88861,88866,84561,88865,88861,88860,88858,83172,88864,88858,88864,88860,83172,88858,83157,88867,83359,88862,88867,88862,84561,83359,88867,83335,88868,88865,88869,88868,88869,83188,88865,88868,88870,88866,88870,88871,88866,88871,84561,88870,88866,88865,88863,83188,88869,88863,88869,88865,83188,88863,83172,88872,83335,88867,88872,88867,84561,83335,88872,83310,88873,88870,88874,88873,88874,83204,88870,88873,88875,88871,88875,88876,88871,88876,84561,88875,88871,88870,88868,83204,88874,88868,88874,88870,83204,88868,83188,88877,83310,88872,88872,84561,88878,88872,88878,88877,83310,88877,88879,83310,88879,83286,88880,88875,88881,88880,88881,83221,88875,88880,88882,88876,88882,88883,88876,88883,84561,88882,88876,88875,88873,83221,88881,88873,88881,88875,83221,88873,83204,88884,83286,88879,88884,88879,88877,88885,88877,88878,88885,88878,84561,88877,88885,88884,83286,88884,88886,83286,88886,83266,88887,88882,88888,88887,88888,83241,88882,88887,88889,88883,88889,88890,88883,88890,84561,88889,88883,88882,88880,83241,88888,88880,88888,88882,83241,88880,83221,88886,88889,88891,88886,88891,83266,88889,88886,88884,88890,88884,88885,88890,88885,84561,88884,88890,88889,88887,83266,88891,88887,88891,88889,83266,88887,83241,85700,85699,88892,88892,88893,88894,88895,88896,88897,88898,88899,88900,88900,88901,88902,88902,88903,88904,88904,88905,88906,88907,88908,88909,88909,88910,88911,88912,85735,85734,85733,85732,85731,85731,85730,85779,85726,85725,85801,85801,85799,85724,85721,85720,85719,85718,85717,85796,85796,85716,85715,85715,85714,85814,85814,85815,85795,85795,85713,85712,85708,85707,85706,85705,85704,85806,85806,85803,85800,85800,85794,85703,85702,85701,85700,85700,88892,88894,88898,88900,88902,88907,88909,88911,88911,88912,85734,85731,85779,85729,85727,85726,85801,85721,85719,85718,85718,85796,85715,85715,85814,85795,85795,85712,85711,85709,85708,85706,85705,85806,85800,85700,88894,88895,88898,88902,88904,88913,88907,88911,88911,85734,85733,85733,85731,85729,85727,85801,85724,85721,85718,85715,85715,85795,85711,85709,85706,85705,85705,85800,85703,85702,85700,88895,88914,88898,88904,88906,88913,88911,85733,85729,85728,85728,85727,85724,85722,85721,85715,85715,85711,85710,85709,85705,85703,85703,85702,88895,88906,88911,85733,85728,85724,85723,85723,85722,85715,85715,85710,85709,85703,88895,88897,88904,88906,85733,85723,85715,85709,85703,88897,88915,88914,88904,85733,85723,85709,85703,85703,88915,88914,88914,85733,85728,85723,85703,88914,88914,85728,85723,88916,88917,88918,88918,88919,88920,88920,88921,88922,88922,88923,88924,88924,88916,88918,88918,88920,88922,88922,88924,88918,88925,88926,88927,88927,88928,88929,88929,88930,88931,88931,88932,88933,88933,88934,88935,88935,88925,88927,88927,88929,88931,88931,88933,88935,88935,88927,88931,88936,88937,88938,88938,88939,88940,88941,88942,88943,88944,88945,88946,88946,88947,88936,88936,88938,88940,88941,88943,88944,88944,88946,88936,88936,88940,88948,88948,88941,88944,88944,88936,88948,88949,88950,88951,88951,88952,88953,88953,88954,88949,88949,88951,88953,88955,88956,88957,88957,88958,88959,88959,88960,88961,88961,88962,88963,88963,88964,88965,88965,88966,88967,88967,88955,88957,88959,88961,88963,88963,88965,88967,88967,88957,88959,88959,88963,88967,88968,88969,88970,88971,88972,88973,88973,88974,88975,88976,88977,88978,88979,88980,88981,88982,88983,88984,88984,88985,88986,88986,88987,88988,88988,88989,88990,88991,88992,88993,88993,88994,88995,88996,88997,88998,88998,88999,89000,89000,89001,89002,89003,89004,89005,89005,89006,89007,89007,89008,89009,89009,89010,89011,89012,89013,89014,89014,89015,89016,89017,89018,89019,89019,89020,89021,89022,89023,89024,89024,89025,89026,89026,89027,89028,89029,89030,89031,89032,89033,89034,89034,89035,89036,89037,89038,89039,89040,89041,89042,89042,89043,89044,89045,89046,89047,89047,89048,89049,89049,89050,89051,89052,89053,89054,89055,89056,89057,89057,89058,89059,89060,89061,89062,89063,89064,89065,89066,89067,89068,89068,89069,89070,89071,89072,89073,89074,89075,89076,89077,89078,89079,89079,89080,89081,89081,89082,89083,89083,89084,89085,89086,89087,89088,89089,89090,89091,89092,89093,89094,89094,89095,89096,89097,89098,89099,89099,89100,89101,89101,89102,89103,89103,89104,89105,89105,89106,89107,89108,89109,89110,89110,89111,89112,89113,89114,89115,89115,89116,89117,89117,89118,89119,89119,89120,89121,89122,89123,89124,89124,89125,89126,89126,89127,89128,89128,89129,89130,89131,89132,89133,89134,89135,89136,89137,89138,89139,89139,89140,89141,89141,89142,89143,89144,89145,89146,89147,89148,89149,89149,89150,89151,89152,89153,89154,89155,89156,89157,89157,89158,89159,89159,89160,89161,89161,89162,89163,89163,89164,89165,89166,89167,89168,89169,89170,89171,89172,88968,88970,88971,88973,88975,88976,88978,89173,88979,88981,89174,88982,88984,88986,88986,88988,88990,88990,88991,88993,88993,88995,88996,88996,88998,89000,89003,89005,89007,89007,89009,89011,89011,89012,89014,89017,89019,89021,89021,89022,89024,89024,89026,89028,89029,89031,89175,89175,89032,89034,89037,89039,89176,89040,89042,89044,89045,89047,89049,89052,89054,89177,89055,89057,89059,89060,89062,89178,89066,89068,89070,89071,89073,89179,89074,89076,89077,89077,89079,89081,89081,89083,89085,89089,89091,89092,89092,89094,89096,89099,89101,89103,89103,89105,89107,89108,89110,89112,89113,89115,89117,89117,89119,89121,89122,89124,89126,89126,89128,89130,89131,89133,89180,89134,89136,89181,89137,89139,89141,89144,89146,89182,89147,89149,89151,89152,89154,89183,89155,89157,89159,89159,89161,89163,89163,89165,89184,89166,89168,89169,89169,89171,89185,89172,88970,89186,89186,88971,88975,89187,88976,89173,88979,89174,89188,89188,88982,88986,88990,88993,88996,88996,89000,89002,89189,89003,89007,89007,89011,89014,89017,89021,89024,89029,89175,89034,89176,89040,89044,89045,89049,89051,89052,89177,89055,89055,89059,89190,89190,89060,89178,89066,89070,89191,89191,89071,89179,89179,89074,89077,89077,89081,89085,89089,89092,89096,89097,89099,89103,89103,89107,89108,89108,89112,89192,89193,89113,89117,89117,89121,89122,89122,89126,89130,89130,89131,89180,89181,89137,89141,89194,89144,89182,89147,89151,89195,89152,89183,89196,89155,89159,89163,89163,89184,89197,89197,89166,89169,89169,89185,89172,89172,89186,88975,88975,89187,89173,89188,88986,88990,89189,89007,89014,89198,89017,89024,89199,89029,89034,89037,89176,89044,89200,89045,89051,89052,89055,89190,89190,89178,89201,89191,89179,89077,89077,89085,89086,89089,89096,89097,89097,89103,89108,89108,89192,89202,89193,89117,89122,89130,89180,89134,89181,89141,89143,89194,89182,89147,89147,89195,89152,89203,89155,89163,89197,89169,89172,89172,88975,89173,88979,89188,88990,89204,89189,89014,89198,89024,89028,89205,89199,89034,89037,89044,89200,89200,89051,89052,89190,89201,89206,89190,89206,89052,89191,89077,89086,89089,89097,89108,89108,89202,89193,89122,89130,89207,89122,89207,89193,89134,89181,89208,89134,89208,89130,89143,89209,89210,89143,89210,89181,89194,89147,89152,89203,89163,89197,89172,89173,89211,89172,89211,89197,88979,88990,88996,89002,89204,89014,89212,89198,89028,89205,89034,89036,89037,89200,89052,89201,89063,89213,89213,89052,89206,89213,89206,89201,89191,89086,89214,89191,89214,89066,89088,89089,89108,89215,89193,89207,89215,89207,89130,89193,89215,89108,89216,89181,89210,89216,89210,89209,89181,89216,89217,89208,89217,89218,89208,89218,89130,89217,89208,89181,89219,89194,89152,89220,89203,89197,89211,89221,89222,89211,89222,89197,89221,89211,89173,89223,88979,88996,89002,89014,89016,89205,89036,89037,89224,89052,89213,89224,89213,89063,89052,89224,89037,89225,89066,89214,89225,89214,89086,89066,89225,89226,89088,89108,89227,89088,89227,89086,89228,89130,89218,89228,89218,89217,89229,89217,89216,89216,89209,89230,89216,89230,89229,89217,89229,89231,89217,89231,89228,89130,89228,89232,89130,89232,89233,89215,89233,89234,89215,89234,89108,89233,89215,89130,89209,89219,89152,89235,89220,89197,89222,89236,89237,89222,89237,89197,89236,89222,89221,88996,89002,89016,89238,89037,89224,89238,89224,89063,89037,89238,89205,89239,89226,89225,89239,89225,89086,89226,89239,89240,89233,89086,89227,89227,89108,89234,89227,89234,89233,89241,89233,89232,89241,89232,89228,89233,89241,89086,89242,89228,89231,89242,89231,89229,89243,89229,89230,89243,89230,89209,89229,89243,89242,89228,89242,89244,89244,89086,89241,89244,89241,89228,89209,89152,89196,89245,89197,89237,89245,89237,89236,89197,89245,89235,88996,89016,89246,89247,89205,89238,89247,89238,89063,89205,89247,89028,89244,89240,89239,89244,89239,89086,89240,89244,89242,89248,89242,89243,89243,89209,89249,89243,89249,89248,89242,89248,89250,89242,89250,89240,89251,89235,89245,89251,89245,89236,89235,89251,89196,88996,89246,89212,89252,89028,89247,89247,89063,89253,89247,89253,89252,89028,89252,89254,89028,89254,89212,89065,89240,89250,89250,89248,89255,89250,89255,89065,89256,89248,89249,89249,89209,89257,89249,89257,89256,89248,89256,89258,89258,89065,89255,89258,89255,89248,89259,89196,89251,89259,89251,89236,89196,89259,89209,89260,89212,89254,89260,89254,89252,89261,89252,89253,89261,89253,89063,89252,89261,89260,89212,89260,89262,89212,89262,88996,89063,89065,89258,89258,89256,89263,89258,89263,89063,89264,89256,89257,89257,89209,89265,89257,89265,89264,89256,89264,89266,89266,89063,89263,89266,89263,89256,89259,89267,89268,89259,89268,89209,89267,89259,89236,89262,89269,89270,89262,89270,88996,89269,89262,89260,89269,89209,89271,89271,88996,89270,89271,89270,89269,89264,89260,89261,89261,89063,89266,89261,89266,89264,89269,89264,89265,89269,89265,89209,89264,89269,89260,89268,89223,89272,89268,89272,89209,89223,89268,89267,89272,88996,89271,89272,89271,89209,88996,89272,89223,89273,89274,89275,89275,89276,89277,89277,89278,89279,89279,89280,89273,89273,89275,89277,89277,89279,89273,89281,89282,89283,89283,89284,89285,89285,89281,89283,89286,89287,89288,89288,89289,89290,89290,89291,89292,89292,89293,89294,89294,89295,89286,89286,89288,89290,89290,89292,89294,89294,89286,89290,89296,89297,89298,89299,89300,89301,89301,89302,89303,89303,89304,89305,89305,89306,89307,89307,89296,89298,89299,89301,89303,89303,89305,89307,89307,89298,89308,89308,89299,89303,89303,89307,89308,89309,89310,89311,89311,89312,89313,89313,89314,89315,89315,89316,89309,89309,89311,89313,89313,89315,89309,89317,89318,89319,89319,89320,89321,89321,89322,89323,89323,89324,89325,89325,89326,89327,89327,89317,89319,89319,89321,89323,89323,89325,89327,89327,89319,89323,89328,89329,89330,89330,89331,89332,89332,89333,89334,89334,89335,89336,89336,89328,89330,89330,89332,89334,89334,89336,89330,89337,89338,89339,89339,89340,89341,89341,89342,89343,89344,89345,89346,89346,89337,89339,89339,89341,89343,89344,89346,89339,89339,89343,89347,89347,89344,89339,89348,89349,89350,89350,89351,89352,89352,89353,89354,89355,89348,89350,89350,89352,89354,89354,89355,89350,89356,89357,89358,89358,89359,89360,89360,89361,89362,89363,89364,89356,89356,89358,89360,89360,89362,89363,89363,89356,89360],"contour_indices":[1,0,0,104,104,103,103,102,102,101,101,100,100,111,111,99,99,98,98,97,97,126,126,130,130,96,96,95,95,94,94,93,93,92,92,91,91,90,90,116,116,120,120,89,89,88,88,87,87,86,86,85,85,115,115,110,110,84,84,83,83,82,82,81,81,80,80,79,79,78,78,77,77,109,109,129,129,128,128,123,123,108,108,76,76,75,75,74,74,73,73,72,72,71,71,70,70,69,69,68,68,107,107,114,114,125,125,131,131,67,67,66,66,65,65,64,64,63,63,62,62,61,61,60,60,119,119,59,59,58,58,57,57,127,127,122,122,118,118,56,56,55,55,54,54,53,53,52,52,51,51,50,50,49,49,48,48,47,47,46,46,45,45,44,44,43,43,42,42,41,41,40,40,39,39,38,38,37,37,36,36,35,35,34,34,33,33,32,32,31,31,106,106,30,30,29,29,28,28,27,27,26,26,105,105,113,113,25,25,24,24,23,23,22,22,21,21,20,20,19,19,18,18,17,17,16,16,15,15,14,14,13,13,124,124,117,117,12,12,11,11,10,10,9,9,8,8,112,112,121,121,7,7,6,6,5,5,4,4,3,3,2,2,1,135,134,134,241,241,240,240,239,239,238,238,269,269,278,278,281,281,259,259,237,237,236,236,235,235,234,234,233,233,232,232,231,231,276,276,230,230,229,229,228,228,227,227,226,226,225,225,224,224,223,223,222,222,221,221,268,268,258,258,220,220,219,219,218,218,267,267,257,257,217,217,216,216,215,215,214,214,213,213,212,212,256,256,211,211,210,210,209,209,266,266,255,255,208,208,207,207,206,206,205,205,204,204,203,203,202,202,275,275,277,277,274,274,254,254,201,201,11,11,12,12,117,117,124,124,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,113,113,105,105,26,26,27,27,28,28,29,29,30,30,106,106,31,31,32,32,200,200,253,253,252,252,199,199,198,198,197,197,196,196,195,195,194,194,251,251,193,193,192,192,191,191,190,190,189,189,250,250,249,249,188,188,187,187,186,186,280,280,273,273,265,265,185,185,184,184,183,183,182,182,181,181,248,248,180,180,179,179,178,178,177,177,176,176,175,175,174,174,272,272,173,173,172,172,171,171,170,170,169,169,264,264,279,279,263,263,247,247,168,168,167,167,166,166,246,246,165,165,164,164,163,163,271,271,162,162,161,161,160,160,159,159,158,158,157,157,156,156,155,155,154,154,153,153,152,152,151,151,262,262,270,270,245,245,150,150,149,149,148,148,244,244,147,147,146,146,145,145,261,261,260,260,243,243,144,144,143,143,142,142,242,242,141,141,140,140,139,139,138,138,137,137,136,136,135,290,289,289,359,359,358,358,357,357,370,370,356,356,355,355,354,354,353,353,352,352,351,351,350,350,349,349,348,348,347,347,346,346,345,345,372,372,369,369,363,363,344,344,343,343,342,342,341,341,340,340,362,362,368,368,371,371,373,373,339,339,338,338,337,337,336,336,335,335,334,334,333,333,367,367,376,376,375,375,374,374,366,366,332,332,331,331,330,330,361,361,329,329,328,328,327,327,326,326,325,325,324,324,323,323,322,322,321,321,320,320,319,319,318,318,317,317,316,316,365,365,360,360,315,315,314,314,313,313,378,378,377,377,312,312,311,311,310,310,309,309,308,308,307,307,306,306,305,305,364,364,304,304,303,303,302,302,301,301,300,300,299,299,298,298,297,297,296,296,295,295,294,294,293,293,292,292,291,291,290,380,379,379,386,386,385,385,384,384,383,383,382,382,381,381,380,388,387,387,397,397,396,396,395,395,394,394,393,393,392,392,391,391,390,390,389,389,388,399,398,398,403,403,402,402,401,401,400,400,399,404,467,467,466,466,465,465,464,464,463,463,462,462,461,461,460,460,459,459,458,458,457,457,456,456,455,455,454,454,453,453,474,474,476,476,452,452,451,451,450,450,449,449,448,448,471,471,447,447,446,446,445,445,444,444,443,443,470,470,473,473,442,442,441,441,440,440,439,439,438,438,437,437,436,436,435,435,434,434,433,433,432,432,431,431,475,475,469,469,430,430,429,429,428,428,427,427,426,426,425,425,424,424,423,423,422,422,421,421,420,420,419,419,418,418,417,417,416,416,415,415,468,468,414,414,413,413,412,412,472,472,411,411,410,410,409,409,408,408,407,407,406,406,405,405,404,341,342,342,343,343,344,344,363,363,369,369,372,372,345,345,346,346,347,347,348,348,349,349,350,350,351,351,352,352,353,353,354,354,355,355,356,356,370,370,357,357,358,358,359,359,289,289,290,290,545,545,544,544,543,543,542,542,541,541,540,540,539,539,538,538,537,537,536,536,535,535,534,534,550,550,549,549,533,533,532,532,531,531,558,558,530,530,529,529,528,528,527,527,526,526,557,557,559,559,525,525,524,524,523,523,522,522,521,521,556,556,561,561,548,548,520,520,519,519,518,518,517,517,516,516,515,515,514,514,513,513,512,512,511,511,510,510,509,509,508,508,507,507,555,555,506,506,505,505,504,504,503,503,502,502,501,501,500,500,499,499,498,498,497,497,496,496,554,554,562,562,560,560,553,553,495,495,494,494,493,493,492,492,491,491,490,490,489,489,488,488,552,552,547,547,487,487,486,486,485,485,484,484,483,483,482,482,481,481,546,546,480,480,479,479,478,478,551,551,477,477,341,564,563,563,735,735,734,734,733,733,752,752,732,732,731,731,730,730,729,729,728,728,762,762,761,761,751,751,727,727,726,726,725,725,724,724,723,723,722,722,721,721,720,720,769,769,780,780,779,779,750,750,719,719,718,718,717,717,760,760,716,716,715,715,714,714,749,749,776,776,778,778,775,775,759,759,713,713,712,712,711,711,710,710,709,709,708,708,707,707,706,706,705,705,704,704,703,703,702,702,748,748,701,701,700,700,699,699,698,698,697,697,696,696,695,695,694,694,693,693,692,692,747,747,691,691,690,690,689,689,688,688,687,687,686,686,685,685,684,684,683,683,682,682,681,681,768,768,774,774,680,680,679,679,678,678,677,677,676,676,675,675,674,674,673,673,672,672,671,671,767,767,670,670,669,669,668,668,667,667,666,666,665,665,664,664,663,663,662,662,746,746,766,766,661,661,660,660,659,659,658,658,657,657,745,745,656,656,655,655,654,654,653,653,652,652,744,744,765,765,651,651,650,650,649,649,648,648,647,647,646,646,645,645,644,644,643,643,642,642,743,743,764,764,773,773,641,641,640,640,639,639,742,742,784,784,638,638,637,637,636,636,635,635,634,634,633,633,632,632,631,631,630,630,629,629,758,758,772,772,771,771,628,628,627,627,626,626,625,625,624,624,623,623,622,622,621,621,620,620,741,741,619,619,618,618,617,617,616,616,615,615,614,614,613,613,757,757,612,612,611,611,610,610,609,609,608,608,607,607,606,606,605,605,604,604,603,603,602,602,756,756,763,763,777,777,783,783,786,786,794,794,790,790,782,782,601,601,600,600,599,599,740,740,598,598,597,597,596,596,595,595,594,594,593,593,739,739,592,592,591,591,590,590,781,781,755,755,589,589,588,588,587,587,738,738,586,586,585,585,584,584,737,737,770,770,754,754,736,736,583,583,582,582,581,581,580,580,579,579,578,578,577,577,753,753,576,576,575,575,574,574,573,573,572,572,571,571,570,570,569,569,568,568,567,567,566,566,565,565,564,801,800,800,810,810,809,809,808,808,807,807,806,806,805,805,804,804,803,803,802,802,801,812,811,811,821,821,820,820,819,819,818,818,817,817,816,816,815,815,814,814,813,813,812,823,822,822,834,834,833,833,832,832,831,831,830,830,829,829,828,828,827,827,826,826,825,825,824,824,823,836,835,835,845,845,844,844,843,843,842,842,841,841,840,840,839,839,838,838,837,837,836,847,846,846,863,863,862,862,861,861,860,860,859,859,858,858,857,857,864,864,865,865,856,856,855,855,854,854,853,853,852,852,851,851,850,850,849,849,848,848,847,867,866,866,872,872,871,871,870,870,869,869,868,868,867,874,873,873,952,952,951,951,950,950,949,949,948,948,947,947,946,946,945,945,962,962,944,944,943,943,942,942,941,941,940,940,939,939,938,938,937,937,936,936,935,935,934,934,933,933,957,957,932,932,931,931,930,930,967,967,961,961,929,929,928,928,927,927,956,956,964,964,955,955,926,926,925,925,924,924,960,960,923,923,922,922,921,921,954,954,966,966,953,953,920,920,919,919,918,918,917,917,916,916,915,915,914,914,913,913,912,912,911,911,910,910,909,909,908,908,907,907,906,906,905,905,904,904,903,903,902,902,901,901,959,959,958,958,900,900,899,899,898,898,897,897,896,896,895,895,894,894,893,893,892,892,891,891,890,890,889,889,888,888,887,887,886,886,885,885,884,884,883,883,882,882,881,881,404,404,405,405,406,406,407,407,408,408,409,409,410,410,411,411,472,472,412,412,413,413,414,414,468,468,415,415,416,416,417,417,418,418,419,419,420,420,421,421,422,422,880,880,879,879,878,878,877,877,876,876,875,875,874,398,399,399,975,975,974,974,973,973,972,972,398,135,136,136,137,137,138,138,139,139,140,140,141,141,242,242,142,142,143,143,144,144,243,243,260,260,261,261,145,145,146,146,147,147,244,244,148,148,149,149,150,150,245,245,270,270,262,262,151,151,152,152,153,153,154,154,155,155,156,156,157,157,158,158,159,159,160,160,161,161,162,162,271,271,163,163,164,164,165,165,246,246,166,166,167,167,168,168,247,247,263,263,279,279,264,264,169,169,170,170,171,171,172,172,173,173,272,272,174,174,175,175,176,176,177,177,178,178,179,179,180,180,248,248,181,181,182,182,183,183,184,184,185,185,265,265,273,273,280,280,186,186,187,187,1025,1025,1024,1024,1023,1023,1022,1022,1021,1021,1033,1033,1020,1020,1019,1019,1018,1018,439,439,440,440,441,441,442,442,473,473,470,470,443,443,444,444,445,445,446,446,447,447,471,471,448,448,449,449,450,450,451,451,452,452,476,476,474,474,453,453,454,454,455,455,456,456,457,457,458,458,459,459,460,460,461,461,462,462,463,463,464,464,465,465,466,466,467,467,404,404,881,881,882,882,883,883,884,884,885,885,886,886,887,887,888,888,889,889,890,890,891,891,892,892,893,893,894,894,895,895,896,896,897,897,1017,1017,1016,1016,1015,1015,1014,1014,1013,1013,1012,1012,1011,1011,1010,1010,1032,1032,1009,1009,1008,1008,1007,1007,1006,1006,1005,1005,1004,1004,1003,1003,1002,1002,1031,1031,1030,1030,1001,1001,1000,1000,999,999,998,998,997,997,996,996,995,995,994,994,1040,1040,1036,1036,1029,1029,993,993,992,992,991,991,990,990,989,989,988,988,1035,1035,1039,1039,1041,1041,1038,1038,1034,1034,987,987,986,986,985,985,984,984,983,983,1028,1028,982,982,981,981,980,980,1037,1037,1027,1027,979,979,978,978,977,977,1026,1026,976,976,135,1057,1063,1063,1062,1062,1061,1061,1060,1060,1059,1059,1058,1058,1057,1065,1064,1064,1070,1070,1069,1069,1068,1068,1067,1067,1066,1066,1065,1072,1071,1071,1737,1737,1736,1736,1735,1735,1734,1734,1733,1733,1732,1732,1731,1731,1730,1730,1729,1729,1728,1728,1789,1789,1727,1727,1726,1726,1725,1725,1724,1724,1723,1723,1722,1722,1721,1721,1720,1720,1719,1719,1718,1718,1717,1717,1716,1716,1715,1715,1714,1714,1713,1713,1712,1712,1711,1711,1710,1710,1709,1709,1708,1708,1707,1707,1706,1706,1705,1705,1704,1704,1703,1703,1702,1702,1701,1701,1700,1700,1699,1699,1698,1698,1697,1697,1788,1788,1696,1696,1695,1695,1694,1694,1693,1693,1692,1692,1691,1691,1690,1690,1689,1689,1688,1688,1687,1687,1831,1831,1878,1878,1787,1787,1686,1686,1685,1685,1684,1684,1786,1786,1683,1683,1682,1682,1681,1681,2014,2014,1984,1984,1785,1785,1680,1680,1679,1679,1678,1678,1784,1784,1677,1677,1676,1676,1675,1675,1674,1674,1673,1673,1783,1783,1672,1672,1671,1671,1670,1670,1830,1830,1829,1829,1782,1782,1669,1669,1668,1668,1667,1667,1781,1781,1666,1666,1665,1665,1664,1664,1663,1663,1662,1662,1661,1661,1780,1780,1660,1660,1659,1659,1658,1658,1828,1828,1657,1657,1656,1656,1655,1655,1779,1779,1856,1856,1778,1778,1654,1654,1653,1653,1652,1652,1877,1877,1651,1651,1650,1650,1649,1649,1648,1648,1647,1647,1777,1777,1646,1646,1645,1645,1644,1644,1643,1643,1642,1642,1641,1641,1640,1640,1639,1639,1638,1638,1637,1637,1827,1827,1776,1776,1636,1636,1635,1635,1634,1634,1775,1775,1633,1633,1632,1632,1631,1631,1774,1774,1630,1630,1629,1629,1628,1628,1826,1826,1773,1773,1627,1627,1626,1626,1625,1625,1624,1624,1623,1623,1622,1622,1621,1621,1825,1825,1855,1855,1620,1620,1619,1619,1618,1618,1617,1617,1616,1616,1615,1615,1614,1614,1613,1613,1612,1612,1611,1611,1610,1610,1609,1609,1608,1608,1909,1909,1607,1607,1606,1606,1605,1605,1604,1604,1603,1603,1602,1602,1601,1601,1600,1600,1599,1599,1824,1824,1598,1598,1597,1597,1596,1596,1876,1876,1854,1854,1772,1772,1595,1595,1594,1594,1593,1593,1592,1592,1591,1591,1590,1590,1823,1823,1589,1589,1588,1588,1587,1587,1586,1586,1585,1585,1584,1584,1583,1583,1582,1582,1581,1581,1580,1580,1579,1579,1578,1578,1853,1853,1890,1890,1875,1875,1577,1577,1576,1576,1575,1575,1574,1574,1573,1573,1572,1572,1571,1571,1570,1570,1569,1569,1771,1771,2160,2160,1956,1956,1822,1822,1568,1568,1567,1567,1566,1566,1565,1565,1564,1564,1852,1852,1908,1908,1563,1563,1562,1562,1561,1561,1560,1560,1559,1559,1558,1558,1557,1557,1556,1556,1555,1555,1554,1554,1821,1821,1874,1874,1889,1889,1553,1553,1552,1552,1551,1551,1820,1820,1770,1770,1550,1550,1549,1549,1548,1548,1769,1769,1547,1547,1546,1546,1545,1545,1544,1544,1543,1543,1542,1542,1541,1541,1768,1768,1540,1540,1539,1539,1538,1538,1819,1819,1537,1537,1536,1536,1535,1535,1534,1534,1533,1533,1532,1532,1531,1531,1530,1530,1529,1529,1528,1528,1527,1527,1767,1767,1526,1526,1525,1525,1524,1524,1766,1766,1523,1523,1522,1522,1521,1521,1520,1520,1519,1519,1518,1518,1517,1517,1873,1873,1907,1907,1952,1952,1905,1905,1872,1872,1851,1851,1516,1516,1515,1515,1514,1514,1513,1513,1512,1512,1818,1818,1511,1511,1510,1510,1509,1509,1508,1508,1507,1507,1506,1506,1505,1505,1504,1504,1503,1503,1502,1502,1501,1501,1500,1500,1850,1850,1871,1871,1499,1499,1498,1498,1497,1497,1496,1496,1495,1495,1817,1817,1849,1849,1887,1887,1494,1494,1493,1493,1492,1492,1491,1491,1490,1490,1489,1489,1488,1488,1487,1487,1486,1486,1816,1816,1848,1848,1847,1847,1485,1485,1484,1484,1483,1483,1482,1482,1481,1481,1480,1480,1479,1479,1478,1478,1477,1477,1476,1476,1475,1475,1474,1474,1473,1473,1472,1472,1471,1471,1846,1846,1470,1470,1469,1469,1468,1468,1467,1467,1466,1466,1465,1465,1464,1464,1765,1765,1463,1463,1462,1462,1461,1461,1460,1460,1459,1459,1458,1458,1457,1457,1764,1764,1845,1845,1815,1815,915,915,916,916,917,917,918,918,919,919,920,920,953,953,966,966,954,954,921,921,922,922,923,923,960,960,924,924,925,925,926,926,955,955,964,964,956,956,927,927,928,928,929,929,961,961,967,967,930,930,931,931,932,932,957,957,933,933,934,934,935,935,936,936,937,937,938,938,939,939,940,940,941,941,942,942,943,943,944,944,962,962,945,945,946,946,947,947,948,948,949,949,950,950,951,951,952,952,873,873,874,874,1456,1456,1455,1455,1454,1454,1453,1453,1452,1452,1451,1451,1450,1450,1449,1449,1448,1448,1763,1763,1447,1447,1446,1446,1445,1445,1924,1924,1870,1870,1844,1844,1762,1762,1444,1444,1443,1443,1442,1442,1441,1441,1440,1440,1439,1439,1438,1438,1437,1437,1843,1843,1436,1436,1435,1435,1434,1434,1433,1433,1432,1432,1814,1814,1431,1431,1430,1430,1429,1429,1428,1428,1427,1427,1426,1426,1425,1425,1424,1424,1423,1423,1422,1422,1421,1421,1420,1420,1419,1419,1418,1418,1417,1417,1416,1416,1415,1415,1414,1414,1413,1413,1412,1412,1411,1411,1410,1410,1409,1409,1408,1408,1407,1407,1406,1406,1405,1405,1404,1404,1403,1403,1402,1402,1401,1401,1400,1400,1399,1399,1398,1398,1761,1761,1812,1812,1397,1397,1396,1396,1395,1395,1394,1394,1393,1393,1392,1392,1391,1391,1390,1390,1811,1811,1389,1389,1388,1388,1387,1387,1386,1386,1385,1385,1384,1384,1383,1383,1382,1382,1381,1381,1380,1380,1379,1379,1378,1378,1377,1377,1376,1376,1375,1375,1374,1374,1810,1810,1867,1867,1883,1883,1866,1866,1809,1809,1373,1373,1372,1372,1371,1371,1370,1370,1369,1369,1841,1841,1368,1368,1367,1367,1366,1366,1365,1365,1364,1364,1363,1363,1362,1362,1361,1361,1840,1840,1360,1360,1359,1359,1358,1358,1357,1357,1356,1356,1355,1355,1354,1354,1760,1760,1353,1353,1352,1352,1351,1351,1808,1808,1839,1839,1838,1838,1759,1759,1350,1350,1349,1349,1348,1348,1347,1347,1346,1346,1345,1345,1344,1344,1343,1343,1342,1342,1341,1341,1340,1340,1807,1807,1837,1837,1865,1865,1836,1836,1339,1339,1338,1338,1337,1337,1336,1336,1335,1335,1334,1334,1835,1835,1333,1333,1332,1332,1331,1331,1330,1330,1329,1329,1806,1806,1328,1328,1327,1327,1326,1326,1325,1325,1324,1324,1323,1323,1322,1322,1321,1321,1320,1320,1319,1319,1318,1318,1317,1317,1316,1316,1758,1758,1757,1757,1315,1315,1314,1314,1313,1313,1805,1805,1312,1312,1311,1311,1310,1310,1309,1309,1308,1308,1307,1307,1306,1306,1305,1305,1304,1304,1303,1303,1302,1302,1301,1301,1300,1300,1299,1299,1298,1298,1297,1297,1296,1296,1756,1756,1295,1295,1294,1294,1293,1293,1292,1292,1291,1291,1290,1290,1289,1289,1288,1288,1287,1287,1286,1286,1285,1285,1284,1284,1283,1283,1282,1282,1281,1281,1280,1280,1755,1755,1279,1279,1278,1278,1277,1277,1276,1276,1275,1275,1274,1274,1273,1273,1272,1272,1271,1271,1804,1804,1754,1754,1270,1270,1269,1269,1268,1268,1753,1753,1267,1267,1266,1266,1265,1265,1803,1803,1864,1864,1264,1264,1263,1263,1262,1262,1261,1261,1260,1260,1259,1259,1802,1802,1834,1834,1881,1881,1863,1863,1258,1258,1257,1257,1256,1256,1255,1255,1254,1254,1253,1253,1252,1252,1251,1251,1752,1752,1801,1801,1250,1250,1249,1249,1248,1248,1751,1751,1800,1800,1247,1247,1246,1246,1245,1245,1244,1244,1243,1243,1862,1862,1242,1242,1241,1241,1240,1240,1239,1239,1238,1238,1237,1237,1236,1236,1235,1235,1234,1234,1750,1750,1233,1233,1232,1232,1231,1231,1749,1749,1230,1230,1229,1229,1228,1228,1227,1227,1226,1226,1225,1225,1224,1224,1223,1223,1222,1222,1221,1221,1220,1220,1219,1219,1799,1799,1218,1218,1217,1217,1216,1216,1748,1748,1215,1215,1214,1214,1213,1213,1212,1212,1211,1211,1210,1210,1897,1897,1861,1861,1209,1209,1208,1208,1207,1207,1206,1206,1205,1205,1204,1204,1203,1203,1202,1202,1201,1201,1200,1200,1199,1199,1198,1198,1197,1197,1798,1798,1196,1196,1195,1195,1194,1194,1193,1193,1192,1192,1191,1191,1190,1190,1189,1189,1797,1797,1860,1860,1747,1747,1188,1188,1187,1187,1186,1186,1796,1796,1859,1859,1185,1185,1184,1184,1183,1183,1182,1182,1181,1181,1180,1180,1179,1179,1178,1178,1177,1177,1176,1176,1175,1175,1174,1174,1173,1173,1172,1172,1171,1171,1170,1170,1169,1169,1168,1168,1167,1167,1166,1166,1165,1165,1164,1164,1163,1163,1162,1162,1161,1161,1160,1160,1159,1159,1158,1158,1157,1157,1156,1156,1155,1155,1154,1154,1153,1153,1152,1152,1746,1746,1151,1151,1150,1150,1149,1149,1148,1148,1147,1147,1146,1146,1145,1145,1144,1144,1745,1745,1744,1744,1143,1143,1142,1142,1141,1141,1913,1913,1833,1833,1795,1795,1140,1140,1139,1139,1138,1138,1137,1137,1136,1136,1135,1135,1134,1134,1133,1133,1132,1132,1131,1131,1130,1130,1743,1743,1129,1129,1128,1128,1127,1127,1126,1126,1125,1125,1124,1124,1123,1123,1122,1122,1121,1121,1120,1120,1119,1119,1118,1118,1117,1117,1116,1116,1115,1115,1114,1114,1113,1113,1112,1112,1111,1111,1110,1110,1109,1109,1794,1794,1832,1832,1793,1793,1108,1108,1107,1107,1106,1106,1742,1742,1105,1105,1104,1104,1103,1103,1792,1792,1858,1858,1102,1102,1101,1101,1100,1100,1099,1099,1098,1098,1097,1097,1096,1096,1095,1095,1094,1094,1093,1093,1092,1092,1091,1091,1090,1090,1741,1741,1740,1740,1089,1089,1088,1088,1087,1087,1739,1739,1086,1086,1085,1085,1084,1084,1791,1791,1738,1738,1083,1083,1082,1082,1081,1081,1080,1080,1079,1079,1078,1078,1790,1790,1077,1077,1076,1076,1075,1075,1074,1074,1073,1073,1072,2285,2284,2284,2292,2292,2291,2291,2290,2290,2289,2289,2288,2288,2287,2287,2286,2286,2285,2294,2293,2293,2300,2300,2299,2299,2298,2298,2297,2297,2296,2296,2295,2295,2294,2302,2301,2301,2306,2306,2305,2305,2304,2304,2303,2303,2302,2308,2307,2307,2314,2314,2313,2313,2312,2312,2311,2311,2310,2310,2309,2309,2308,2316,2315,2315,2327,2327,2326,2326,2325,2325,2324,2324,2323,2323,2322,2322,2321,2321,2320,2320,2319,2319,2318,2318,2317,2317,2316,2329,2328,2328,2335,2335,2334,2334,2333,2333,2332,2332,2331,2331,2330,2330,2329,2337,2336,2336,2345,2345,2344,2344,2343,2343,2342,2342,2341,2341,2340,2340,2339,2339,2338,2338,2337,2347,2346,2346,2354,2354,2353,2353,2352,2352,2351,2351,2350,2350,2349,2349,2348,2348,2347,2356,2355,2355,2361,2361,2360,2360,2359,2359,2358,2358,2357,2357,2356,2363,2362,2362,2368,2368,2367,2367,2366,2366,2365,2365,2364,2364,2363,2370,2369,2369,2375,2375,2374,2374,2373,2373,2372,2372,2371,2371,2370,2377,2376,2376,2382,2382,2381,2381,2380,2380,2379,2379,2378,2378,2377,2383,2391,2391,2390,2390,2389,2389,2388,2388,2387,2387,2386,2386,2385,2385,2384,2384,2383,2393,2392,2392,2396,2396,2395,2395,2394,2394,2393,2398,2397,2397,2410,2410,2409,2409,2408,2408,2407,2407,2406,2406,2405,2405,2404,2404,2403,2403,2411,2411,2402,2402,2401,2401,2400,2400,2399,2399,2398,2425,2424,2424,2423,2423,2422,2422,2421,2421,2420,2420,2419,2419,2418,2418,2417,2417,2416,2416,2415,2415,2414,2414,2413,2413,2412,2412,2425,2427,2426,2426,2441,2441,2440,2440,2439,2439,2438,2438,2437,2437,2436,2436,2435,2435,2434,2434,2433,2433,2432,2432,2431,2431,2430,2430,2429,2429,2428,2428,2427,2443,2442,2442,2449,2449,2448,2448,2447,2447,2446,2446,2445,2445,2444,2444,2443,2451,2450,2450,2455,2455,2454,2454,2453,2453,2452,2452,2451,2457,2456,2456,2463,2463,2462,2462,2461,2461,2460,2460,2459,2459,2458,2458,2457,2464,2469,2469,2468,2468,2467,2467,2466,2466,2465,2465,2464,2471,2470,2470,2476,2476,2475,2475,2474,2474,2473,2473,2472,2472,2471,2478,2477,2477,2482,2482,2481,2481,2480,2480,2479,2479,2478,2484,2483,2483,2489,2489,2488,2488,2487,2487,2486,2486,2485,2485,2484,2491,2490,2490,2501,2501,2500,2500,2499,2499,2498,2498,2497,2497,2496,2496,2495,2495,2502,2502,2494,2494,2493,2493,2492,2492,2491,2504,2503,2503,2513,2513,2512,2512,2511,2511,2510,2510,2509,2509,2508,2508,2507,2507,2506,2506,2505,2505,2504,2515,2514,2514,2518,2518,2517,2517,2516,2516,2515,2520,2519,2519,2525,2525,2524,2524,2523,2523,2522,2522,2521,2521,2520,2527,2526,2526,2569,2569,2568,2568,2567,2567,2566,2566,2565,2565,2564,2564,2563,2563,2562,2562,2561,2561,2560,2560,2559,2559,2558,2558,2576,2576,2572,2572,2557,2557,2556,2556,2555,2555,2554,2554,2553,2553,2552,2552,2551,2551,2550,2550,2549,2549,2548,2548,2547,2547,2571,2571,2580,2580,2579,2579,2546,2546,2545,2545,2544,2544,2543,2543,2542,2542,2575,2575,2581,2581,2574,2574,2570,2570,2541,2541,2540,2540,2539,2539,2578,2578,2582,2582,2585,2585,2584,2584,2583,2583,2577,2577,2573,2573,2538,2538,2537,2537,2536,2536,2535,2535,2534,2534,2533,2533,2532,2532,2531,2531,2530,2530,2529,2529,2528,2528,2527,2587,2586,2586,2623,2623,2622,2622,2621,2621,2620,2620,2619,2619,2618,2618,2617,2617,2616,2616,2615,2615,2614,2614,2613,2613,2612,2612,2611,2611,2610,2610,2624,2624,2609,2609,2608,2608,2607,2607,2606,2606,2605,2605,2604,2604,2603,2603,2602,2602,2601,2601,2600,2600,2599,2599,2598,2598,2597,2597,2596,2596,2595,2595,2594,2594,2593,2593,2592,2592,2591,2591,2590,2590,2589,2589,2588,2588,2587,2625,2727,2727,2733,2733,2726,2726,2725,2725,2724,2724,2723,2723,2722,2722,2721,2721,2720,2720,2739,2739,2719,2719,2718,2718,2717,2717,2716,2716,2715,2715,2714,2714,2713,2713,2712,2712,2711,2711,2738,2738,2743,2743,2737,2737,2732,2732,2710,2710,2709,2709,2708,2708,2707,2707,2706,2706,2705,2705,2704,2704,2703,2703,2702,2702,2701,2701,2736,2736,2731,2731,2700,2700,2699,2699,2698,2698,2697,2697,2696,2696,2695,2695,2694,2694,2693,2693,2692,2692,2691,2691,2690,2690,2689,2689,2688,2688,2687,2687,2686,2686,2685,2685,2684,2684,2683,2683,2682,2682,2681,2681,2680,2680,2741,2741,2746,2746,2748,2748,2747,2747,2745,2745,2742,2742,2679,2679,2678,2678,2677,2677,2676,2676,2675,2675,2674,2674,2673,2673,2672,2672,2671,2671,2670,2670,2669,2669,2668,2668,2667,2667,2666,2666,2665,2665,2664,2664,2663,2663,2662,2662,2661,2661,2660,2660,2659,2659,2658,2658,2657,2657,2656,2656,2655,2655,2730,2730,2744,2744,2729,2729,2654,2654,2653,2653,2652,2652,2651,2651,2650,2650,2649,2649,2648,2648,2647,2647,2646,2646,2645,2645,2644,2644,2643,2643,2642,2642,2641,2641,2640,2640,2639,2639,2638,2638,2735,2735,2740,2740,2637,2637,2636,2636,2635,2635,2634,2634,2633,2633,2734,2734,2632,2632,2631,2631,2630,2630,2728,2728,2629,2629,2628,2628,2627,2627,2626,2626,2625,2750,2749,2749,3991,3991,4171,4171,4223,4223,4265,4265,3990,3990,3989,3989,3988,3988,3987,3987,3986,3986,4170,4170,3985,3985,3984,3984,3983,3983,3982,3982,3981,3981,3980,3980,3979,3979,3978,3978,3977,3977,3976,3976,3975,3975,3974,3974,3973,3973,3972,3972,3971,3971,3970,3970,3969,3969,4169,4169,4222,4222,4168,4168,3968,3968,3967,3967,3966,3966,3965,3965,3964,3964,3963,3963,4306,4306,4264,4264,4088,4088,3962,3962,3961,3961,3960,3960,3959,3959,3958,3958,3957,3957,3956,3956,3955,3955,3954,3954,3953,3953,3952,3952,4087,4087,3951,3951,3950,3950,3949,3949,3948,3948,3947,3947,3946,3946,3945,3945,3944,3944,4086,4086,3943,3943,3942,3942,3941,3941,3940,3940,3939,3939,3938,3938,4085,4085,3937,3937,3936,3936,3935,3935,3934,3934,3933,3933,3932,3932,3931,3931,3930,3930,3929,3929,4167,4167,3928,3928,3927,3927,3926,3926,3925,3925,3924,3924,3923,3923,3922,3922,3921,3921,3920,3920,3919,3919,3918,3918,3917,3917,3916,3916,3915,3915,3914,3914,3913,3913,3912,3912,4221,4221,4290,4290,4263,4263,3911,3911,3910,3910,3909,3909,3908,3908,3907,3907,3906,3906,3905,3905,3904,3904,3903,3903,3902,3902,3901,3901,3900,3900,4166,4166,4289,4289,4220,4220,3899,3899,3898,3898,3897,3897,3896,3896,3895,3895,3894,3894,3893,3893,3892,3892,3891,3891,3890,3890,4084,4084,3889,3889,3888,3888,3887,3887,3886,3886,3885,3885,3884,3884,4083,4083,3883,3883,3882,3882,3881,3881,3880,3880,3879,3879,3878,3878,3877,3877,3876,3876,3875,3875,3874,3874,3873,3873,3872,3872,3871,3871,3870,3870,3869,3869,3868,3868,3867,3867,3866,3866,3865,3865,3864,3864,3863,3863,3862,3862,3861,3861,3860,3860,3859,3859,3858,3858,4082,4082,3857,3857,3856,3856,3855,3855,4081,4081,3854,3854,3853,3853,3852,3852,4165,4165,4262,4262,3851,3851,3850,3850,3849,3849,3848,3848,3847,3847,3846,3846,3845,3845,3844,3844,3843,3843,3842,3842,3841,3841,3840,3840,3839,3839,3838,3838,3837,3837,4164,4164,3836,3836,3835,3835,3834,3834,4080,4080,3833,3833,3832,3832,3831,3831,3830,3830,3829,3829,3828,3828,3827,3827,4079,4079,3826,3826,3825,3825,3824,3824,3823,3823,3822,3822,3821,3821,3820,3820,3819,3819,3818,3818,3817,3817,3816,3816,3815,3815,3814,3814,3813,3813,3812,3812,3811,3811,3810,3810,3809,3809,3808,3808,4163,4163,3807,3807,3806,3806,3805,3805,3804,3804,3803,3803,4219,4219,4261,4261,4218,4218,4078,4078,3802,3802,3801,3801,3800,3800,3799,3799,3798,3798,3797,3797,3796,3796,3795,3795,3794,3794,3793,3793,3792,3792,3791,3791,3790,3790,4162,4162,4217,4217,4077,4077,3789,3789,3788,3788,3787,3787,3786,3786,3785,3785,3784,3784,3783,3783,3782,3782,3781,3781,3780,3780,3779,3779,4161,4161,4260,4260,4216,4216,3778,3778,3777,3777,3776,3776,3775,3775,3774,3774,3773,3773,3772,3772,3771,3771,4360,4360,4215,4215,4160,4160,3770,3770,3769,3769,3768,3768,3767,3767,3766,3766,3765,3765,3764,3764,3763,3763,3762,3762,4159,4159,4214,4214,4259,4259,4288,4288,4258,4258,4076,4076,3761,3761,3760,3760,3759,3759,3758,3758,3757,3757,4075,4075,4213,4213,4257,4257,3756,3756,3755,3755,3754,3754,3753,3753,3752,3752,4158,4158,4212,4212,4074,4074,3751,3751,3750,3750,3749,3749,3748,3748,3747,3747,3746,3746,3745,3745,3744,3744,3743,3743,3742,3742,4319,4319,4256,4256,4211,4211,3741,3741,3740,3740,3739,3739,3738,3738,3737,3737,4157,4157,3736,3736,3735,3735,3734,3734,4073,4073,4156,4156,4072,4072,3733,3733,3732,3732,3731,3731,4155,4155,4210,4210,3730,3730,3729,3729,3728,3728,3727,3727,3726,3726,3725,3725,3724,3724,3723,3723,3722,3722,3721,3721,3720,3720,3719,3719,4318,4318,4255,4255,4154,4154,3718,3718,3717,3717,3716,3716,4071,4071,4209,4209,4208,4208,3715,3715,3714,3714,3713,3713,3712,3712,3711,3711,3710,3710,3709,3709,3708,3708,3707,3707,3706,3706,3705,3705,3704,3704,3703,3703,3702,3702,3701,3701,3700,3700,4207,4207,3699,3699,3698,3698,3697,3697,3696,3696,3695,3695,4153,4153,4419,4419,4408,4408,4152,4152,3694,3694,3693,3693,3692,3692,3691,3691,3690,3690,3689,3689,3688,3688,3687,3687,4070,4070,4305,4305,4069,4069,3686,3686,3685,3685,3684,3684,3683,3683,3682,3682,3681,3681,3680,3680,4151,4151,4254,4254,4287,4287,4068,4068,3679,3679,3678,3678,3677,3677,4067,4067,3676,3676,3675,3675,3674,3674,3673,3673,3672,3672,3671,3671,3670,3670,4150,4150,4253,4253,4286,4286,3669,3669,3668,3668,3667,3667,3666,3666,3665,3665,4066,4066,3664,3664,3663,3663,3662,3662,4065,4065,3661,3661,3660,3660,3659,3659,3658,3658,3657,3657,3656,3656,3655,3655,3654,3654,3653,3653,3652,3652,4064,4064,3651,3651,3650,3650,3649,3649,3648,3648,3647,3647,3646,3646,3645,3645,4149,4149,4206,4206,4063,4063,3644,3644,3643,3643,3642,3642,4148,4148,4252,4252,3641,3641,3640,3640,3639,3639,3638,3638,3637,3637,4062,4062,3636,3636,3635,3635,3634,3634,4147,4147,4061,4061,3633,3633,3632,3632,3631,3631,4060,4060,3630,3630,3629,3629,3628,3628,4146,4146,4145,4145,3627,3627,3626,3626,3625,3625,3624,3624,3623,3623,4059,4059,3622,3622,3621,3621,3620,3620,3619,3619,3618,3618,3617,3617,3616,3616,3615,3615,3614,3614,3613,3613,4144,4144,4251,4251,4285,4285,4304,4304,4317,4317,3612,3612,3611,3611,3610,3610,3609,3609,3608,3608,3607,3607,3606,3606,3605,3605,3604,3604,3603,3603,3602,3602,4205,4205,4143,4143,3601,3601,3600,3600,3599,3599,3598,3598,3597,3597,3596,3596,3595,3595,3594,3594,3593,3593,4058,4058,4142,4142,4057,4057,3592,3592,3591,3591,3590,3590,4284,4284,4283,4283,3589,3589,3588,3588,3587,3587,3586,3586,3585,3585,3584,3584,3583,3583,4141,4141,3582,3582,3581,3581,3580,3580,3579,3579,3578,3578,4553,4553,4303,4303,4282,4282,4204,4204,4056,4056,3577,3577,3576,3576,3575,3575,3574,3574,3573,3573,4055,4055,4250,4250,4203,4203,4054,4054,3572,3572,3571,3571,3570,3570,4140,4140,4281,4281,4249,4249,4053,4053,3569,3569,3568,3568,3567,3567,4139,4139,4202,4202,4248,4248,3566,3566,3565,3565,3564,3564,3563,3563,3562,3562,3561,3561,3560,3560,3559,3559,3558,3558,4201,4201,4138,4138,3557,3557,3556,3556,3555,3555,3554,3554,3553,3553,3552,3552,3551,3551,3550,3550,3549,3549,4137,4137,3548,3548,3547,3547,3546,3546,3545,3545,3544,3544,3543,3543,3542,3542,3541,3541,3540,3540,4136,4136,4200,4200,4280,4280,4199,4199,4052,4052,3539,3539,3538,3538,3537,3537,3536,3536,3535,3535,3534,3534,3533,3533,3532,3532,4051,4051,4334,4334,4050,4050,3531,3531,3530,3530,3529,3529,3528,3528,3527,3527,3526,3526,3525,3525,3524,3524,3523,3523,3522,3522,3521,3521,4135,4135,4134,4134,4049,4049,3520,3520,3519,3519,3518,3518,3517,3517,3516,3516,3515,3515,3514,3514,3513,3513,3512,3512,4048,4048,3511,3511,3510,3510,3509,3509,3508,3508,3507,3507,3506,3506,3505,3505,3504,3504,4047,4047,3503,3503,3502,3502,3501,3501,3500,3500,3499,3499,3498,3498,4046,4046,3497,3497,3496,3496,3495,3495,4133,4133,4327,4327,4302,4302,3494,3494,3493,3493,3492,3492,3491,3491,3490,3490,3489,3489,3488,3488,3487,3487,3486,3486,4045,4045,3485,3485,3484,3484,3483,3483,4198,4198,3482,3482,3481,3481,3480,3480,3479,3479,3478,3478,4132,4132,4247,4247,4197,4197,3477,3477,3476,3476,3475,3475,3474,3474,3473,3473,4131,4131,4279,4279,4246,4246,3472,3472,3471,3471,3470,3470,3469,3469,3468,3468,3467,3467,3466,3466,3465,3465,4278,4278,4345,4345,4277,4277,4044,4044,3464,3464,3463,3463,3462,3462,3461,3461,3460,3460,3459,3459,3458,3458,3457,3457,3456,3456,3455,3455,3454,3454,4130,4130,4196,4196,4043,4043,3453,3453,3452,3452,3451,3451,3450,3450,3449,3449,3448,3448,3447,3447,3446,3446,3445,3445,3444,3444,4129,4129,4245,4245,4301,4301,4042,4042,3443,3443,3442,3442,3441,3441,3440,3440,3439,3439,3438,3438,3437,3437,3436,3436,3435,3435,3434,3434,3433,3433,4041,4041,3432,3432,3431,3431,3430,3430,3429,3429,3428,3428,3427,3427,3426,3426,3425,3425,3424,3424,3423,3423,3422,3422,3421,3421,3420,3420,3419,3419,3418,3418,3417,3417,4244,4244,4276,4276,4300,4300,4326,4326,4344,4344,4333,4333,4195,4195,4128,4128,3416,3416,3415,3415,3414,3414,3413,3413,3412,3412,4040,4040,3411,3411,3410,3410,3409,3409,3408,3408,3407,3407,3406,3406,3405,3405,4127,4127,4243,4243,4275,4275,4242,4242,3404,3404,3403,3403,3402,3402,3401,3401,3400,3400,3399,3399,3398,3398,4126,4126,4039,4039,3397,3397,3396,3396,3395,3395,3394,3394,3393,3393,3392,3392,3391,3391,3390,3390,3389,3389,3388,3388,3387,3387,3386,3386,3385,3385,3384,3384,4125,4125,4124,4124,4038,4038,3383,3383,3382,3382,3381,3381,4037,4037,3380,3380,3379,3379,3378,3378,3377,3377,3376,3376,3375,3375,3374,3374,4123,4123,4122,4122,3373,3373,3372,3372,3371,3371,3370,3370,3369,3369,4194,4194,4241,4241,4372,4372,4274,4274,4240,4240,3368,3368,3367,3367,3366,3366,3365,3365,3364,3364,4121,4121,4193,4193,4299,4299,4239,4239,4036,4036,3363,3363,3362,3362,3361,3361,3360,3360,3359,3359,3358,3358,3357,3357,3356,3356,3355,3355,3354,3354,3353,3353,3352,3352,3351,3351,3350,3350,3349,3349,4035,4035,4192,4192,4238,4238,4298,4298,4120,4120,3348,3348,3347,3347,3346,3346,3345,3345,3344,3344,3343,3343,3342,3342,3341,3341,3340,3340,4034,4034,3339,3339,3338,3338,3337,3337,3336,3336,3335,3335,4033,4033,4191,4191,4237,4237,4032,4032,3334,3334,3333,3333,3332,3332,3331,3331,3330,3330,3329,3329,3328,3328,3327,3327,3326,3326,3325,3325,3324,3324,4031,4031,3323,3323,3322,3322,3321,3321,3320,3320,3319,3319,3318,3318,3317,3317,3316,3316,3315,3315,3314,3314,3313,3313,3312,3312,3311,3311,3310,3310,3309,3309,3308,3308,3307,3307,3306,3306,3305,3305,3304,3304,3303,3303,3302,3302,3301,3301,3300,3300,4119,4119,4236,4236,4273,4273,3299,3299,3298,3298,3297,3297,3296,3296,3295,3295,3294,3294,3293,3293,4030,4030,3292,3292,3291,3291,3290,3290,3289,3289,3288,3288,4118,4118,4190,4190,4117,4117,3287,3287,3286,3286,3285,3285,3284,3284,3283,3283,4116,4116,3282,3282,3281,3281,3280,3280,3279,3279,3278,3278,3277,3277,3276,3276,3275,3275,3274,3274,3273,3273,3272,3272,3271,3271,3270,3270,3269,3269,3268,3268,3267,3267,3266,3266,3265,3265,3264,3264,3263,3263,3262,3262,3261,3261,4029,4029,4115,4115,4189,4189,3260,3260,3259,3259,3258,3258,3257,3257,3256,3256,3255,3255,3254,3254,4343,4343,4384,4384,3253,3253,3252,3252,3251,3251,3250,3250,3249,3249,3248,3248,3247,3247,3246,3246,3245,3245,3244,3244,3243,3243,3242,3242,3241,3241,3240,3240,3239,3239,3238,3238,3237,3237,3236,3236,3235,3235,3234,3234,3233,3233,3232,3232,3231,3231,3230,3230,3229,3229,3228,3228,4028,4028,3227,3227,3226,3226,3225,3225,3224,3224,3223,3223,3222,3222,3221,3221,3220,3220,3219,3219,3218,3218,3217,3217,3216,3216,4027,4027,3215,3215,3214,3214,3213,3213,3212,3212,3211,3211,4026,4026,4315,4315,4235,4235,4188,4188,4025,4025,3210,3210,3209,3209,3208,3208,4114,4114,4341,4341,4024,4024,3207,3207,3206,3206,3205,3205,3204,3204,3203,3203,3202,3202,3201,3201,3200,3200,4113,4113,4023,4023,3199,3199,3198,3198,3197,3197,4112,4112,3196,3196,3195,3195,3194,3194,3193,3193,3192,3192,4297,4297,4272,4272,3191,3191,3190,3190,3189,3189,3188,3188,3187,3187,3186,3186,3185,3185,3184,3184,3183,3183,3182,3182,4187,4187,3181,3181,3180,3180,3179,3179,3178,3178,3177,3177,3176,3176,3175,3175,4111,4111,3174,3174,3173,3173,3172,3172,3171,3171,3170,3170,3169,3169,3168,3168,3167,3167,3166,3166,3165,3165,3164,3164,3163,3163,3162,3162,3161,3161,3160,3160,3159,3159,4110,4110,3158,3158,3157,3157,3156,3156,4022,4022,4186,4186,3155,3155,3154,3154,3153,3153,3152,3152,3151,3151,3150,3150,3149,3149,3148,3148,3147,3147,3146,3146,3145,3145,3144,3144,3143,3143,3142,3142,3141,3141,3140,3140,3139,3139,3138,3138,3137,3137,3136,3136,4109,4109,3135,3135,3134,3134,3133,3133,3132,3132,3131,3131,4108,4108,4314,4314,3130,3130,3129,3129,3128,3128,3127,3127,3126,3126,3125,3125,3124,3124,3123,3123,4107,4107,4234,4234,4271,4271,4357,4357,4371,4371,4383,4383,4021,4021,3122,3122,3121,3121,3120,3120,4185,4185,4106,4106,3119,3119,3118,3118,3117,3117,4020,4020,4233,4233,4296,4296,4313,4313,4429,4429,3116,3116,3115,3115,3114,3114,4355,4355,4019,4019,3113,3113,3112,3112,3111,3111,3110,3110,3109,3109,4184,4184,4018,4018,3108,3108,3107,3107,3106,3106,4105,4105,4232,4232,4017,4017,3105,3105,3104,3104,3103,3103,3102,3102,3101,3101,4016,4016,4183,4183,3100,3100,3099,3099,3098,3098,4015,4015,4231,4231,3097,3097,3096,3096,3095,3095,3094,3094,3093,3093,3092,3092,3091,3091,3090,3090,3089,3089,3088,3088,4104,4104,3087,3087,3086,3086,3085,3085,3084,3084,3083,3083,4103,4103,4014,4014,3082,3082,3081,3081,3080,3080,4312,4312,4331,4331,3079,3079,3078,3078,3077,3077,3076,3076,3075,3075,3074,3074,3073,3073,3072,3072,3071,3071,4013,4013,3070,3070,3069,3069,3068,3068,4230,4230,3067,3067,3066,3066,3065,3065,3064,3064,3063,3063,3062,3062,4012,4012,4182,4182,4295,4295,4181,4181,3061,3061,3060,3060,3059,3059,3058,3058,3057,3057,3056,3056,3055,3055,3054,3054,3053,3053,3052,3052,3051,3051,3050,3050,3049,3049,3048,3048,3047,3047,3046,3046,3045,3045,3044,3044,3043,3043,3042,3042,4011,4011,4102,4102,3041,3041,3040,3040,3039,3039,3038,3038,3037,3037,3036,3036,4180,4180,3035,3035,3034,3034,3033,3033,3032,3032,3031,3031,3030,3030,4354,4354,4101,4101,4010,4010,3029,3029,3028,3028,3027,3027,4229,4229,4100,4100,3026,3026,3025,3025,3024,3024,3023,3023,3022,3022,3021,3021,3020,3020,3019,3019,3018,3018,4270,4270,3017,3017,3016,3016,3015,3015,3014,3014,3013,3013,4339,4339,4369,4369,4413,4413,4404,4404,3012,3012,3011,3011,3010,3010,4009,4009,3009,3009,3008,3008,3007,3007,3006,3006,3005,3005,3004,3004,3003,3003,4099,4099,4008,4008,3002,3002,3001,3001,3000,3000,2999,2999,2998,2998,2997,2997,2996,2996,2995,2995,2994,2994,2993,2993,4098,4098,2992,2992,2991,2991,2990,2990,2989,2989,2988,2988,2987,2987,2986,2986,2985,2985,2984,2984,4097,4097,4228,4228,4269,4269,4179,4179,2983,2983,2982,2982,2981,2981,2980,2980,2979,2979,2978,2978,4227,4227,4311,4311,4096,4096,2977,2977,2976,2976,2975,2975,4007,4007,2974,2974,2973,2973,2972,2972,2971,2971,2970,2970,2969,2969,2968,2968,2967,2967,2966,2966,2965,2965,2964,2964,2963,2963,2962,2962,4178,4178,4268,4268,2961,2961,2960,2960,2959,2959,4226,4226,2958,2958,2957,2957,2956,2956,2955,2955,2954,2954,2953,2953,2952,2952,2951,2951,2950,2950,2949,2949,2948,2948,2947,2947,2946,2946,2945,2945,2944,2944,2943,2943,2942,2942,2941,2941,2940,2940,2939,2939,2938,2938,2937,2937,2936,2936,2935,2935,4006,4006,4177,4177,4005,4005,2934,2934,2933,2933,2932,2932,2931,2931,2930,2930,2929,2929,4324,4324,4310,4310,4294,4294,4004,4004,2928,2928,2927,2927,2926,2926,2925,2925,2924,2924,4003,4003,4176,4176,4095,4095,2923,2923,2922,2922,2921,2921,2920,2920,2919,2919,2918,2918,2917,2917,4323,4323,4293,4293,4225,4225,4002,4002,2916,2916,2915,2915,2914,2914,2913,2913,2912,2912,2911,2911,2910,2910,2909,2909,2908,2908,2907,2907,2906,2906,2905,2905,2904,2904,2903,2903,2902,2902,2901,2901,2900,2900,2899,2899,2898,2898,2897,2897,4094,4094,2896,2896,2895,2895,2894,2894,2893,2893,2892,2892,2891,2891,2890,2890,2889,2889,2888,2888,2887,2887,2886,2886,2885,2885,2884,2884,2883,2883,4093,4093,4001,4001,2882,2882,2881,2881,2880,2880,2879,2879,2878,2878,2877,2877,2876,2876,4175,4175,2875,2875,2874,2874,2873,2873,2872,2872,2871,2871,4092,4092,4000,4000,2870,2870,2869,2869,2868,2868,2867,2867,2866,2866,2865,2865,2864,2864,2863,2863,2862,2862,2861,2861,2860,2860,2859,2859,2858,2858,2857,2857,2856,2856,2855,2855,2854,2854,2853,2853,2852,2852,2851,2851,2850,2850,2849,2849,2848,2848,2847,2847,2846,2846,2845,2845,3999,3999,4091,4091,4174,4174,4224,4224,4267,4267,4292,4292,4308,4308,4321,4321,4330,4330,4337,4337,4349,4349,4363,4363,4377,4377,4389,4389,4401,4401,4412,4412,4424,4424,4437,4437,4452,4452,4467,4467,4494,4494,4507,4507,4523,4523,4540,4540,4550,4550,4561,4561,4571,4571,4581,4581,4586,4586,4596,4596,2844,2844,2843,2843,2842,2842,2841,2841,2840,2840,3998,3998,2839,2839,2838,2838,2837,2837,2836,2836,2835,2835,2834,2834,2833,2833,2832,2832,3997,3997,2831,2831,2830,2830,2829,2829,2828,2828,2827,2827,2826,2826,2825,2825,2824,2824,2823,2823,2822,2822,2821,2821,2820,2820,2819,2819,4489,4489,2818,2818,2817,2817,2816,2816,2815,2815,2814,2814,2813,2813,2812,2812,2811,2811,3996,3996,2810,2810,2809,2809,2808,2808,3995,3995,2807,2807,2806,2806,2805,2805,2804,2804,2803,2803,2802,2802,2801,2801,2800,2800,4173,4173,3994,3994,2799,2799,2798,2798,2797,2797,2796,2796,2795,2795,2794,2794,2793,2793,2792,2792,2791,2791,4172,4172,2790,2790,2789,2789,2788,2788,2787,2787,2786,2786,2785,2785,2784,2784,2783,2783,2782,2782,2781,2781,2780,2780,2779,2779,2778,2778,2777,2777,2776,2776,2775,2775,2774,2774,2773,2773,2772,2772,3993,3993,2771,2771,2770,2770,2769,2769,2768,2768,2767,2767,2766,2766,2765,2765,2764,2764,3992,3992,2763,2763,2762,2762,2761,2761,4090,4090,4089,4089,2760,2760,2759,2759,2758,2758,2757,2757,2756,2756,2755,2755,2754,2754,2753,2753,2752,2752,2751,2751,2750,4612,4611,4611,4645,4645,4644,4644,4642,4642,4641,4641,4640,4640,4639,4639,4638,4638,4637,4637,4636,4636,4635,4635,4646,4646,4643,4643,4634,4634,4633,4633,4632,4632,4631,4631,4630,4630,4629,4629,4628,4628,4627,4627,4626,4626,4625,4625,4624,4624,4623,4623,4622,4622,4621,4621,4620,4620,4619,4619,4618,4618,4617,4617,4616,4616,4615,4615,4614,4614,4613,4613,4612,4648,4647,4647,4660,4660,4659,4659,4658,4658,4657,4657,4656,4656,4655,4655,4654,4654,4653,4653,4652,4652,4651,4651,4650,4650,4661,4661,4649,4649,4648,4662,4677,4677,4676,4676,4675,4675,4674,4674,4673,4673,4672,4672,4671,4671,4679,4679,4678,4678,4670,4670,4669,4669,4668,4668,4667,4667,4666,4666,4665,4665,4664,4664,4663,4663,4662,4680,4700,4700,4699,4699,4701,4701,4698,4698,4697,4697,4696,4696,4695,4695,4694,4694,4693,4693,4692,4692,4691,4691,4690,4690,4689,4689,4688,4688,4687,4687,4686,4686,4685,4685,4684,4684,4683,4683,4682,4682,4681,4681,4680,4703,4702,4702,4728,4728,4727,4727,4726,4726,4725,4725,4724,4724,4723,4723,4722,4722,4721,4721,4729,4729,4720,4720,4719,4719,4718,4718,4717,4717,4716,4716,4715,4715,4714,4714,4713,4713,4712,4712,4711,4711,4710,4710,4709,4709,4708,4708,4707,4707,4706,4706,4705,4705,4704,4704,4703,4731,4730,4730,4768,4768,4767,4767,4766,4766,4765,4765,4764,4764,4763,4763,4762,4762,4761,4761,4760,4760,4759,4759,4758,4758,4757,4757,4756,4756,4755,4755,4771,4771,4772,4772,4754,4754,4753,4753,4752,4752,4751,4751,4750,4750,4749,4749,4748,4748,4747,4747,4746,4746,4745,4745,4744,4744,4743,4743,4742,4742,4741,4741,4740,4740,4739,4739,4738,4738,4737,4737,4770,4770,4769,4769,4736,4736,4735,4735,4734,4734,4733,4733,4732,4732,4731,4773,4801,4801,4800,4800,4799,4799,4798,4798,4797,4797,4796,4796,4795,4795,4794,4794,4793,4793,4792,4792,4791,4791,4790,4790,4789,4789,4788,4788,4787,4787,4786,4786,4785,4785,4784,4784,4783,4783,4782,4782,4781,4781,4780,4780,4779,4779,4778,4778,4777,4777,4776,4776,4775,4775,4774,4774,4773,4803,4802,4802,4818,4818,4817,4817,4816,4816,4815,4815,4814,4814,4813,4813,4812,4812,4811,4811,4810,4810,4809,4809,4808,4808,4807,4807,4806,4806,4805,4805,4804,4804,4803,4820,4819,4819,4840,4840,4839,4839,4838,4838,4837,4837,4836,4836,4835,4835,4844,4844,4834,4834,4833,4833,4832,4832,4831,4831,4830,4830,4829,4829,4828,4828,4843,4843,4827,4827,4826,4826,4825,4825,4842,4842,4824,4824,4823,4823,4822,4822,4841,4841,4821,4821,4820,4846,4845,4845,4866,4866,4865,4865,4864,4864,4863,4863,4862,4862,4861,4861,4860,4860,4859,4859,4858,4858,4857,4857,4856,4856,4855,4855,4854,4854,4853,4853,4852,4852,4851,4851,4850,4850,4867,4867,4849,4849,4848,4848,4847,4847,4846,4869,4868,4868,4876,4876,4875,4875,4874,4874,4873,4873,4872,4872,4871,4871,4870,4870,4869,4877,4888,4888,4887,4887,4886,4886,4885,4885,4884,4884,4883,4883,4882,4882,4881,4881,4880,4880,4879,4879,4878,4878,4877,4890,4889,4889,4899,4899,4898,4898,4897,4897,4896,4896,4895,4895,4894,4894,4893,4893,4892,4892,4891,4891,4890,4901,4900,4900,4909,4909,4908,4908,4907,4907,4906,4906,4905,4905,4904,4904,4903,4903,4902,4902,4901,4911,4910,4910,4918,4918,4917,4917,4916,4916,4915,4915,4914,4914,4913,4913,4912,4912,4911,4920,4919,4919,4929,4929,4928,4928,4927,4927,4926,4926,4925,4925,4924,4924,4923,4923,4922,4922,4921,4921,4920,4931,4930,4930,4939,4939,4938,4938,4937,4937,4936,4936,4935,4935,4934,4934,4933,4933,4932,4932,4931,4940,4961,4961,4960,4960,4959,4959,4958,4958,4957,4957,4956,4956,4955,4955,4954,4954,4953,4953,4952,4952,4951,4951,4950,4950,4949,4949,4948,4948,4947,4947,4946,4946,4945,4945,4944,4944,4943,4943,4942,4942,4941,4941,4940,4963,4962,4962,4971,4971,4970,4970,4969,4969,4968,4968,4967,4967,4966,4966,4965,4965,4964,4964,4963,4973,4972,4972,4978,4978,4977,4977,4976,4976,4975,4975,4974,4974,4973,4980,4979,4979,4997,4997,4996,4996,4999,4999,4995,4995,4994,4994,4993,4993,4998,4998,4992,4992,4991,4991,4990,4990,4989,4989,4988,4988,4987,4987,4986,4986,4985,4985,4984,4984,4983,4983,4982,4982,4981,4981,4980,5000,5015,5015,5014,5014,5013,5013,5012,5012,5011,5011,5010,5010,5009,5009,5008,5008,5007,5007,5006,5006,5005,5005,5004,5004,5003,5003,5002,5002,5001,5001,5000,5017,5016,5016,5027,5027,5026,5026,5025,5025,5024,5024,5023,5023,5022,5022,5021,5021,5020,5020,5019,5019,5018,5018,5017,5029,5028,5028,5035,5035,5034,5034,5033,5033,5032,5032,5031,5031,5030,5030,5029,5047,5046,5046,5045,5045,5044,5044,5043,5043,5042,5042,5041,5041,5040,5040,5039,5039,5038,5038,5037,5037,5036,5036,5047,5049,5048,5048,5053,5053,5052,5052,5051,5051,5050,5050,5049,5055,5054,5054,5063,5063,5062,5062,5061,5061,5060,5060,5059,5059,5058,5058,5057,5057,5056,5056,5055,5075,5074,5074,5073,5073,5072,5072,5071,5071,5070,5070,5069,5069,5068,5068,5067,5067,5066,5066,5065,5065,5064,5064,5075,5077,5076,5076,5083,5083,5082,5082,5081,5081,5080,5080,5079,5079,5078,5078,5077,5085,5084,5084,5091,5091,5090,5090,5089,5089,5088,5088,5087,5087,5086,5086,5085,5093,5092,5092,5097,5097,5096,5096,5095,5095,5094,5094,5093,5098,5107,5107,5106,5106,5105,5105,5104,5104,5103,5103,5102,5102,5101,5101,5100,5100,5099,5099,5098,5109,5108,5108,5124,5124,5123,5123,5125,5125,5122,5122,5121,5121,5120,5120,5119,5119,5118,5118,5126,5126,5117,5117,5116,5116,5115,5115,5114,5114,5113,5113,5112,5112,5111,5111,5110,5110,5109,5128,5127,5127,5133,5133,5132,5132,5131,5131,5130,5130,5129,5129,5128,5135,5134,5134,5143,5143,5142,5142,5141,5141,5140,5140,5139,5139,5138,5138,5137,5137,5144,5144,5136,5136,5135,5146,5145,5145,5153,5153,5152,5152,5151,5151,5150,5150,5149,5149,5148,5148,5147,5147,5146,5155,5154,5154,5207,5207,5206,5206,5205,5205,5204,5204,5203,5203,5202,5202,5201,5201,5200,5200,5199,5199,5198,5198,5197,5197,5196,5196,5195,5195,5194,5194,5193,5193,5192,5192,5191,5191,5190,5190,5189,5189,5188,5188,5187,5187,5209,5209,5212,5212,5186,5186,5185,5185,5184,5184,5183,5183,5182,5182,5181,5181,5180,5180,5179,5179,5178,5178,5177,5177,5176,5176,5175,5175,5208,5208,5174,5174,5173,5173,5172,5172,5213,5213,5171,5171,5170,5170,5169,5169,5168,5168,5167,5167,5166,5166,5165,5165,5164,5164,5163,5163,5162,5162,5210,5210,5211,5211,5161,5161,5160,5160,5159,5159,5158,5158,5157,5157,5156,5156,5155,5214,5261,5261,5256,5256,5255,5255,5254,5254,5253,5253,5252,5252,5251,5251,5250,5250,5249,5249,5248,5248,5247,5247,5246,5246,5245,5245,5244,5244,5243,5243,5262,5262,5263,5263,5265,5265,5266,5266,5264,5264,5260,5260,5242,5242,5241,5241,5240,5240,5239,5239,5238,5238,5237,5237,5236,5236,5235,5235,5234,5234,5233,5233,5232,5232,5231,5231,5230,5230,5229,5229,5228,5228,5227,5227,5226,5226,5258,5258,5225,5225,5224,5224,5223,5223,5222,5222,5221,5221,5259,5259,5257,5257,5220,5220,5219,5219,5218,5218,5217,5217,5216,5216,5215,5215,5214,5268,5267,5267,5308,5308,5307,5307,5306,5306,5317,5317,5318,5318,5311,5311,5305,5305,5304,5304,5303,5303,5302,5302,5301,5301,5300,5300,5299,5299,5298,5298,5297,5297,5296,5296,5295,5295,5314,5314,5294,5294,5293,5293,5292,5292,5291,5291,5290,5290,5289,5289,5288,5288,5313,5313,5316,5316,5315,5315,5312,5312,5287,5287,5286,5286,5285,5285,5284,5284,5283,5283,5310,5310,5282,5282,5281,5281,5280,5280,5279,5279,5278,5278,5277,5277,5276,5276,5275,5275,5309,5309,5274,5274,5273,5273,5272,5272,5271,5271,5270,5270,5269,5269,5268,5320,5319,5319,5407,5407,5406,5406,5405,5405,5404,5404,5403,5403,5402,5402,5401,5401,5418,5418,5400,5400,5399,5399,5398,5398,5397,5397,5396,5396,5417,5417,5395,5395,5394,5394,5393,5393,5392,5392,5391,5391,5413,5413,5390,5390,5389,5389,5388,5388,5387,5387,5386,5386,5385,5385,5384,5384,5383,5383,5382,5382,5381,5381,5380,5380,5416,5416,5412,5412,5379,5379,5378,5378,5377,5377,5376,5376,5375,5375,5374,5374,5373,5373,5372,5372,5371,5371,5370,5370,5369,5369,5368,5368,5367,5367,5366,5366,5365,5365,5364,5364,5363,5363,5362,5362,5361,5361,5360,5360,5359,5359,5358,5358,5357,5357,5415,5415,5356,5356,5355,5355,5354,5354,5353,5353,5352,5352,5351,5351,5350,5350,5349,5349,5348,5348,5347,5347,5411,5411,5346,5346,5345,5345,5344,5344,5343,5343,5342,5342,5341,5341,5340,5340,5339,5339,5410,5410,5338,5338,5337,5337,5336,5336,5335,5335,5334,5334,5333,5333,5332,5332,5414,5414,5331,5331,5330,5330,5329,5329,5420,5420,5419,5419,5409,5409,5328,5328,5327,5327,5326,5326,5325,5325,5324,5324,5408,5408,5323,5323,5322,5322,5321,5321,5320,5421,5449,5449,5448,5448,5447,5447,5446,5446,5445,5445,5444,5444,5451,5451,5452,5452,5443,5443,5442,5442,5441,5441,5440,5440,5439,5439,5438,5438,5437,5437,5450,5450,5436,5436,5435,5435,5434,5434,5433,5433,5432,5432,5431,5431,5430,5430,5429,5429,5428,5428,5427,5427,5426,5426,5425,5425,5424,5424,5423,5423,5422,5422,5421,5453,5498,5498,5495,5495,5494,5494,5493,5493,5492,5492,5491,5491,5490,5490,5489,5489,5488,5488,5487,5487,5486,5486,5485,5485,5484,5484,5483,5483,5482,5482,5481,5481,5500,5500,5499,5499,5480,5480,5479,5479,5478,5478,5477,5477,5476,5476,5475,5475,5474,5474,5473,5473,5501,5501,5472,5472,5471,5471,5470,5470,5469,5469,5468,5468,5467,5467,5466,5466,5465,5465,5464,5464,5463,5463,5462,5462,5461,5461,5460,5460,5497,5497,5496,5496,5459,5459,5458,5458,5457,5457,5456,5456,5455,5455,5454,5454,5453,5503,5502,5502,5537,5537,5535,5535,5534,5534,5533,5533,5532,5532,5531,5531,5530,5530,5529,5529,5528,5528,5527,5527,5526,5526,5525,5525,5524,5524,5523,5523,5522,5522,5521,5521,5520,5520,5519,5519,5518,5518,5517,5517,5516,5516,5538,5538,5536,5536,5515,5515,5514,5514,5513,5513,5512,5512,5511,5511,5510,5510,5509,5509,5508,5508,5507,5507,5506,5506,5505,5505,5504,5504,5503,5539,5596,5596,5599,5599,5595,5595,5591,5591,5590,5590,5589,5589,5588,5588,5587,5587,5586,5586,5598,5598,5602,5602,5585,5585,5584,5584,5583,5583,5582,5582,5581,5581,5580,5580,5579,5579,5578,5578,5577,5577,5576,5576,5597,5597,5594,5594,5575,5575,5574,5574,5573,5573,5593,5593,5572,5572,5571,5571,5570,5570,5569,5569,5568,5568,5567,5567,5566,5566,5565,5565,5564,5564,5563,5563,5562,5562,5561,5561,5560,5560,5559,5559,5558,5558,5557,5557,5556,5556,5555,5555,5592,5592,5554,5554,5553,5553,5552,5552,5603,5603,5601,5601,5600,5600,5551,5551,5550,5550,5549,5549,5548,5548,5547,5547,5546,5546,5545,5545,5544,5544,5543,5543,5542,5542,5541,5541,5540,5540,5539,5605,5604,5604,5622,5622,5621,5621,5620,5620,5619,5619,5618,5618,5617,5617,5616,5616,5615,5615,5614,5614,5613,5613,5612,5612,5611,5611,5610,5610,5609,5609,5608,5608,5607,5607,5606,5606,5605,5624,5623,5623,5644,5644,5643,5643,5642,5642,5641,5641,5640,5640,5639,5639,5638,5638,5645,5645,5637,5637,5636,5636,5635,5635,5634,5634,5633,5633,5632,5632,5631,5631,5630,5630,5629,5629,5628,5628,5627,5627,5626,5626,5625,5625,5624,5646,5665,5665,5664,5664,5663,5663,5662,5662,5661,5661,5660,5660,5659,5659,5658,5658,5657,5657,5656,5656,5655,5655,5654,5654,5653,5653,5652,5652,5651,5651,5650,5650,5649,5649,5648,5648,5647,5647,5646,5666,5683,5683,5682,5682,5681,5681,5680,5680,5679,5679,5684,5684,5685,5685,5678,5678,5677,5677,5676,5676,5675,5675,5674,5674,5673,5673,5672,5672,5671,5671,5670,5670,5669,5669,5668,5668,5667,5667,5666,5687,5686,5686,5692,5692,5691,5691,5690,5690,5689,5689,5688,5688,5687,5693,5704,5704,5703,5703,5702,5702,5701,5701,5700,5700,5705,5705,5699,5699,5698,5698,5697,5697,5696,5696,5695,5695,5694,5694,5693,5707,5706,5706,5721,5721,5720,5720,5719,5719,5718,5718,5717,5717,5716,5716,5715,5715,5714,5714,5713,5713,5712,5712,5711,5711,5710,5710,5709,5709,5708,5708,5707,5723,5722,5722,5746,5746,5745,5745,5744,5744,5743,5743,5747,5747,5742,5742,5741,5741,5740,5740,5739,5739,5738,5738,5737,5737,5736,5736,5735,5735,5734,5734,5733,5733,5732,5732,5731,5731,5730,5730,5729,5729,5728,5728,5727,5727,5726,5726,5725,5725,5724,5724,5723,5748,5760,5760,5759,5759,5758,5758,5757,5757,5756,5756,5755,5755,5754,5754,5753,5753,5752,5752,5751,5751,5750,5750,5749,5749,5748,5761,5783,5783,5782,5782,5781,5781,5780,5780,5779,5779,5778,5778,5777,5777,5776,5776,5775,5775,5774,5774,5773,5773,5772,5772,5771,5771,5770,5770,5769,5769,5768,5768,5767,5767,5766,5766,5765,5765,5764,5764,5763,5763,5762,5762,5761,5809,5807,5807,5806,5806,5805,5805,5804,5804,5803,5803,5802,5802,5801,5801,5800,5800,5799,5799,5798,5798,5797,5797,5808,5808,5796,5796,5795,5795,5794,5794,5793,5793,5792,5792,5791,5791,5790,5790,5789,5789,5788,5788,5787,5787,5786,5786,5785,5785,5784,5784,5810,5810,5809,5812,5811,5811,5824,5824,5823,5823,5822,5822,5821,5821,5820,5820,5819,5819,5818,5818,5817,5817,5816,5816,5815,5815,5814,5814,5813,5813,5812,5835,5834,5834,5833,5833,5832,5832,5831,5831,5830,5830,5829,5829,5828,5828,5827,5827,5826,5826,5825,5825,5835,5837,5836,5836,5844,5844,5843,5843,5842,5842,5841,5841,5840,5840,5839,5839,5838,5838,5837,5846,5845,5845,7276,7276,7275,7275,7274,7274,7273,7273,7272,7272,7271,7271,7583,7583,7491,7491,7270,7270,7269,7269,7268,7268,7267,7267,7266,7266,7265,7265,7264,7264,7263,7263,7403,7403,7490,7490,7262,7262,7261,7261,7260,7260,7259,7259,7258,7258,7552,7552,7257,7257,7256,7256,7255,7255,7254,7254,7253,7253,7252,7252,7251,7251,7250,7250,7402,7402,7249,7249,7248,7248,7247,7247,7246,7246,7245,7245,7244,7244,7243,7243,7242,7242,7241,7241,7240,7240,7401,7401,7489,7489,7239,7239,7238,7238,7237,7237,7236,7236,7235,7235,7234,7234,7233,7233,7400,7400,7551,7551,7581,7581,7616,7616,7232,7232,7231,7231,7230,7230,7399,7399,7229,7229,7228,7228,7227,7227,7226,7226,7225,7225,7224,7224,7223,7223,7222,7222,7398,7398,7221,7221,7220,7220,7219,7219,7218,7218,7217,7217,7216,7216,7215,7215,7397,7397,7396,7396,7214,7214,7213,7213,7212,7212,7488,7488,7649,7649,7704,7704,7395,7395,7211,7211,7210,7210,7209,7209,7615,7615,7208,7208,7207,7207,7206,7206,7205,7205,7204,7204,7203,7203,7202,7202,7550,7550,7201,7201,7200,7200,7199,7199,7198,7198,7197,7197,7487,7487,7196,7196,7195,7195,7194,7194,7676,7676,7193,7193,7192,7192,7191,7191,7190,7190,7189,7189,7188,7188,7187,7187,7186,7186,7185,7185,7184,7184,7394,7394,7183,7183,7182,7182,7181,7181,7180,7180,7179,7179,7178,7178,7177,7177,7176,7176,7175,7175,7174,7174,7173,7173,7172,7172,7171,7171,7170,7170,7169,7169,7168,7168,7167,7167,7166,7166,7165,7165,7549,7549,7580,7580,7486,7486,7164,7164,7163,7163,7162,7162,7161,7161,7160,7160,7159,7159,7158,7158,7157,7157,7156,7156,7155,7155,7154,7154,7393,7393,7153,7153,7152,7152,7151,7151,7392,7392,7150,7150,7149,7149,7148,7148,7485,7485,7147,7147,7146,7146,7145,7145,7144,7144,7143,7143,7142,7142,7141,7141,7140,7140,7139,7139,7484,7484,7138,7138,7137,7137,7136,7136,7391,7391,7135,7135,7134,7134,7133,7133,7390,7390,7389,7389,7132,7132,7131,7131,7130,7130,7483,7483,7129,7129,7128,7128,7127,7127,7126,7126,7125,7125,7124,7124,7123,7123,7122,7122,7121,7121,7579,7579,7896,7896,7120,7120,7119,7119,7118,7118,7117,7117,7116,7116,7115,7115,7114,7114,7113,7113,7112,7112,7111,7111,7110,7110,7109,7109,7548,7548,7388,7388,7108,7108,7107,7107,7106,7106,7105,7105,7104,7104,7103,7103,7102,7102,7101,7101,7100,7100,7099,7099,7098,7098,7097,7097,7096,7096,7095,7095,7094,7094,7093,7093,7092,7092,7091,7091,7859,7859,7737,7737,7703,7703,7675,7675,7090,7090,7089,7089,7088,7088,7482,7482,7087,7087,7086,7086,7085,7085,7084,7084,7083,7083,7082,7082,7081,7081,7080,7080,7079,7079,7078,7078,7077,7077,7387,7387,7076,7076,7075,7075,7074,7074,7073,7073,7072,7072,7481,7481,7071,7071,7070,7070,7069,7069,7068,7068,7067,7067,7066,7066,7065,7065,7386,7386,7064,7064,7063,7063,7062,7062,7480,7480,7061,7061,7060,7060,7059,7059,7058,7058,7057,7057,7056,7056,7055,7055,7054,7054,7053,7053,7052,7052,7051,7051,7050,7050,7049,7049,7048,7048,7047,7047,7385,7385,7384,7384,7046,7046,7045,7045,7044,7044,7043,7043,7042,7042,7041,7041,7040,7040,7479,7479,7578,7578,7614,7614,7383,7383,7039,7039,7038,7038,7037,7037,7036,7036,7035,7035,7034,7034,7033,7033,7478,7478,7547,7547,7613,7613,7674,7674,7546,7546,7032,7032,7031,7031,7030,7030,7029,7029,7028,7028,7027,7027,7026,7026,7025,7025,7024,7024,7023,7023,7477,7477,7022,7022,7021,7021,7020,7020,7019,7019,7018,7018,7017,7017,7016,7016,7015,7015,7014,7014,7013,7013,7476,7476,7012,7012,7011,7011,7010,7010,7009,7009,7008,7008,7007,7007,7006,7006,7382,7382,7475,7475,7005,7005,7004,7004,7003,7003,7002,7002,7001,7001,7000,7000,6999,6999,6998,6998,6997,6997,6996,6996,6995,6995,7545,7545,6994,6994,6993,6993,6992,6992,7381,7381,6991,6991,6990,6990,6989,6989,6988,6988,6987,6987,6986,6986,6985,6985,6984,6984,6983,6983,7474,7474,6982,6982,6981,6981,6980,6980,6979,6979,6978,6978,6977,6977,6976,6976,6975,6975,6974,6974,6973,6973,6972,6972,6971,6971,7473,7473,7544,7544,7380,7380,6970,6970,6969,6969,6968,6968,6967,6967,6966,6966,7379,7379,6965,6965,6964,6964,6963,6963,7472,7472,6962,6962,6961,6961,6960,6960,6959,6959,6958,6958,6957,6957,6956,6956,6955,6955,6954,6954,7471,7471,7378,7378,6953,6953,6952,6952,6951,6951,7470,7470,6950,6950,6949,6949,6948,6948,6947,6947,6946,6946,6945,6945,7377,7377,6944,6944,6943,6943,6942,6942,7376,7376,6941,6941,6940,6940,6939,6939,6938,6938,6937,6937,6936,6936,6935,6935,6934,6934,6933,6933,7375,7375,7374,7374,6932,6932,6931,6931,6930,6930,6929,6929,6928,6928,6927,6927,6926,6926,6925,6925,7469,7469,7543,7543,7468,7468,6924,6924,6923,6923,6922,6922,6921,6921,6920,6920,7542,7542,7373,7373,6919,6919,6918,6918,6917,6917,6916,6916,6915,6915,7372,7372,7371,7371,6914,6914,6913,6913,6912,6912,6911,6911,6910,6910,6909,6909,6908,6908,6907,6907,7370,7370,6906,6906,6905,6905,6904,6904,6903,6903,6902,6902,7369,7369,6901,6901,6900,6900,6899,6899,7368,7368,6898,6898,6897,6897,6896,6896,6895,6895,6894,6894,6893,6893,7541,7541,6892,6892,6891,6891,6890,6890,6889,6889,6888,6888,7367,7367,6887,6887,6886,6886,6885,6885,6884,6884,6883,6883,6882,6882,7366,7366,6881,6881,6880,6880,6879,6879,6878,6878,6877,6877,6876,6876,6875,6875,6874,6874,7365,7365,7673,7673,6873,6873,6872,6872,6871,6871,6870,6870,6869,6869,6868,6868,6867,6867,6866,6866,6865,6865,6864,6864,6863,6863,6862,6862,6861,6861,6860,6860,6859,6859,6858,6858,6857,6857,6856,6856,6855,6855,6854,6854,6853,6853,6852,6852,7540,7540,7467,7467,6851,6851,6850,6850,6849,6849,7364,7364,8014,8014,7648,7648,7466,7466,7363,7363,6848,6848,6847,6847,6846,6846,6845,6845,6844,6844,6843,6843,6842,6842,6841,6841,6840,6840,6839,6839,6838,6838,6837,6837,6836,6836,6835,6835,6834,6834,6833,6833,6832,6832,7539,7539,6831,6831,6830,6830,6829,6829,6828,6828,6827,6827,6826,6826,6825,6825,6824,6824,6823,6823,6822,6822,6821,6821,6820,6820,6819,6819,6818,6818,6817,6817,6816,6816,6815,6815,6814,6814,7647,7647,7672,7672,7612,7612,6813,6813,6812,6812,6811,6811,6810,6810,6809,6809,6808,6808,6807,6807,6806,6806,6805,6805,6804,6804,6803,6803,6802,6802,6801,6801,7646,7646,7577,7577,6800,6800,6799,6799,6798,6798,6797,6797,6796,6796,6795,6795,6794,6794,6793,6793,6792,6792,6791,6791,6790,6790,6789,6789,6788,6788,6787,6787,6786,6786,6785,6785,6784,6784,6783,6783,6782,6782,6781,6781,6780,6780,6779,6779,7538,7538,7611,7611,7645,7645,6778,6778,6777,6777,6776,6776,6775,6775,6774,6774,6773,6773,6772,6772,6771,6771,6770,6770,6769,6769,6768,6768,6767,6767,6766,6766,6765,6765,6764,6764,6763,6763,6762,6762,6761,6761,6760,6760,6759,6759,6758,6758,6757,6757,6756,6756,6755,6755,6754,6754,6753,6753,6752,6752,6751,6751,6750,6750,6749,6749,6748,6748,6747,6747,6746,6746,6745,6745,6744,6744,7362,7362,7576,7576,6743,6743,6742,6742,6741,6741,6740,6740,6739,6739,6738,6738,6737,6737,6736,6736,6735,6735,6734,6734,6733,6733,6732,6732,6731,6731,7361,7361,6730,6730,6729,6729,6728,6728,7465,7465,6727,6727,6726,6726,6725,6725,6724,6724,6723,6723,6722,6722,6721,6721,6720,6720,6719,6719,6718,6718,7360,7360,6717,6717,6716,6716,6715,6715,6714,6714,6713,6713,7610,7610,7537,7537,7359,7359,6712,6712,6711,6711,6710,6710,6709,6709,6708,6708,7358,7358,6707,6707,6706,6706,6705,6705,6704,6704,6703,6703,6702,6702,6701,6701,6700,6700,6699,6699,7357,7357,7464,7464,6698,6698,6697,6697,6696,6696,6695,6695,6694,6694,7536,7536,6693,6693,6692,6692,6691,6691,6690,6690,6689,6689,7356,7356,6688,6688,6687,6687,6686,6686,7463,7463,7575,7575,7535,7535,7462,7462,6685,6685,6684,6684,6683,6683,7355,7355,6682,6682,6681,6681,6680,6680,6679,6679,6678,6678,6677,6677,6676,6676,6675,6675,6674,6674,6673,6673,6672,6672,6671,6671,6670,6670,6669,6669,6668,6668,7461,7461,6667,6667,6666,6666,6665,6665,7354,7354,6664,6664,6663,6663,6662,6662,6661,6661,6660,6660,6659,6659,6658,6658,6657,6657,6656,6656,7353,7353,6655,6655,6654,6654,6653,6653,7609,7609,7534,7534,7460,7460,6652,6652,6651,6651,6650,6650,6649,6649,6648,6648,6647,6647,6646,6646,6645,6645,6644,6644,6643,6643,7459,7459,6642,6642,6641,6641,6640,6640,6639,6639,6638,6638,7458,7458,7352,7352,6637,6637,6636,6636,6635,6635,7533,7533,6634,6634,6633,6633,6632,6632,6631,6631,6630,6630,6629,6629,6628,6628,7457,7457,6627,6627,6626,6626,6625,6625,6624,6624,6623,6623,6622,6622,6621,6621,6620,6620,6619,6619,6618,6618,8345,8345,6617,6617,6616,6616,6615,6615,6614,6614,6613,6613,7855,7855,7701,7701,6612,6612,6611,6611,6610,6610,7351,7351,7532,7532,7456,7456,7350,7350,6609,6609,6608,6608,6607,6607,6606,6606,6605,6605,7531,7531,7455,7455,6604,6604,6603,6603,6602,6602,6601,6601,6600,6600,7349,7349,6599,6599,6598,6598,6597,6597,7735,7735,7766,7766,6596,6596,6595,6595,6594,6594,6593,6593,6592,6592,7348,7348,6591,6591,6590,6590,6589,6589,6588,6588,6587,6587,6586,6586,6585,6585,6584,6584,6583,6583,6582,6582,6581,6581,6580,6580,6579,6579,6578,6578,6577,6577,6576,6576,6575,6575,6574,6574,6573,6573,6572,6572,6571,6571,6570,6570,6569,6569,6568,6568,7530,7530,7454,7454,6567,6567,6566,6566,6565,6565,6564,6564,6563,6563,6562,6562,6561,6561,6560,6560,6559,6559,6558,6558,6557,6557,6556,6556,6555,6555,7529,7529,6554,6554,6553,6553,6552,6552,6551,6551,6550,6550,6549,6549,6548,6548,7528,7528,7347,7347,6547,6547,6546,6546,6545,6545,6544,6544,6543,6543,6542,6542,6541,6541,7346,7346,6540,6540,6539,6539,6538,6538,6537,6537,6536,6536,7607,7607,7644,7644,7345,7345,6535,6535,6534,6534,6533,6533,7643,7643,7527,7527,7344,7344,6532,6532,6531,6531,6530,6530,6529,6529,6528,6528,6527,6527,6526,6526,6525,6525,6524,6524,6523,6523,6522,6522,6521,6521,6520,6520,7734,7734,6519,6519,6518,6518,6517,6517,7807,7807,7765,7765,7526,7526,7453,7453,6516,6516,6515,6515,6514,6514,6513,6513,6512,6512,6511,6511,6510,6510,6509,6509,6508,6508,6507,6507,6506,6506,6505,6505,6504,6504,6503,6503,7343,7343,7525,7525,7573,7573,7524,7524,6502,6502,6501,6501,6500,6500,7342,7342,6499,6499,6498,6498,6497,6497,7452,7452,6496,6496,6495,6495,6494,6494,6493,6493,6492,6492,7341,7341,6491,6491,6490,6490,6489,6489,7523,7523,7572,7572,6488,6488,6487,6487,6486,6486,7340,7340,6485,6485,6484,6484,6483,6483,6482,6482,6481,6481,6480,6480,6479,6479,7451,7451,7450,7450,6478,6478,6477,6477,6476,6476,6475,6475,6474,6474,6473,6473,6472,6472,6471,6471,6470,6470,6469,6469,7449,7449,7571,7571,7339,7339,6468,6468,6467,6467,6466,6466,7448,7448,7522,7522,7338,7338,6465,6465,6464,6464,6463,6463,7447,7447,7642,7642,7570,7570,6462,6462,6461,6461,6460,6460,6459,6459,6458,6458,6457,6457,6456,6456,7337,7337,7446,7446,6455,6455,6454,6454,6453,6453,6452,6452,6451,6451,6450,6450,6449,6449,6448,6448,7445,7445,7521,7521,8011,8011,7943,7943,7888,7888,7641,7641,6447,6447,6446,6446,6445,6445,7336,7336,6444,6444,6443,6443,6442,6442,6441,6441,6440,6440,7444,7444,7606,7606,7640,7640,6439,6439,6438,6438,6437,6437,6436,6436,6435,6435,6434,6434,6433,6433,6432,6432,6431,6431,6430,6430,6429,6429,7335,7335,6428,6428,6427,6427,6426,6426,6425,6425,6424,6424,6423,6423,6422,6422,6421,6421,6420,6420,6419,6419,6418,6418,6417,6417,7334,7334,6416,6416,6415,6415,6414,6414,6413,6413,6412,6412,6411,6411,7333,7333,6410,6410,6409,6409,6408,6408,6407,6407,6406,6406,6405,6405,6404,6404,6403,6403,7443,7443,6402,6402,6401,6401,6400,6400,7332,7332,7520,7520,7639,7639,7605,7605,6399,6399,6398,6398,6397,6397,6396,6396,6395,6395,6394,6394,6393,6393,6392,6392,6391,6391,6390,6390,6389,6389,7442,7442,7441,7441,7331,7331,6388,6388,6387,6387,6386,6386,6385,6385,6384,6384,6383,6383,6382,6382,7330,7330,6381,6381,6380,6380,6379,6379,6378,6378,6377,6377,6376,6376,6375,6375,6374,6374,6373,6373,6372,6372,7638,7638,7604,7604,7329,7329,6371,6371,6370,6370,6369,6369,6368,6368,6367,6367,6366,6366,6365,6365,7440,7440,6364,6364,6363,6363,6362,6362,6361,6361,6360,6360,6359,6359,6358,6358,6357,6357,7328,7328,7519,7519,7569,7569,7637,7637,7439,7439,7327,7327,6356,6356,6355,6355,6354,6354,7326,7326,6353,6353,6352,6352,6351,6351,7325,7325,6350,6350,6349,6349,6348,6348,7438,7438,7324,7324,6347,6347,6346,6346,6345,6345,7437,7437,6344,6344,6343,6343,6342,6342,6341,6341,6340,6340,6339,6339,6338,6338,6337,6337,6336,6336,6335,6335,6334,6334,6333,6333,6332,6332,6331,6331,6330,6330,6329,6329,6328,6328,6327,6327,7436,7436,6326,6326,6325,6325,6324,6324,6323,6323,6322,6322,7568,7568,7518,7518,6321,6321,6320,6320,6319,6319,6318,6318,6317,6317,6316,6316,6315,6315,7435,7435,6314,6314,6313,6313,6312,6312,6311,6311,6310,6310,6309,6309,6308,6308,6307,6307,7323,7323,7567,7567,7517,7517,6306,6306,6305,6305,6304,6304,6303,6303,6302,6302,7434,7434,7322,7322,6301,6301,6300,6300,6299,6299,6298,6298,6297,6297,6296,6296,6295,6295,6294,6294,6293,6293,6292,6292,6291,6291,6290,6290,6289,6289,6288,6288,6287,6287,6286,6286,6285,6285,7763,7763,6284,6284,6283,6283,6282,6282,1624,1624,1625,1625,1626,1626,1627,1627,1773,1773,1826,1826,1628,1628,1629,1629,1630,1630,1774,1774,1631,1631,1632,1632,1633,1633,1775,1775,1634,1634,1635,1635,1636,1636,1776,1776,1827,1827,1637,1637,1638,1638,1639,1639,1640,1640,1641,1641,1642,1642,1643,1643,1644,1644,1645,1645,1646,1646,1777,1777,1647,1647,1648,1648,1649,1649,1650,1650,1651,1651,1877,1877,1652,1652,1653,1653,1654,1654,1778,1778,1856,1856,1779,1779,1655,1655,1656,1656,1657,1657,1828,1828,1658,1658,1659,1659,1660,1660,1780,1780,1661,1661,1662,1662,1663,1663,1664,1664,1665,1665,1666,1666,1781,1781,1667,1667,1668,1668,1669,1669,1782,1782,1829,1829,1830,1830,1670,1670,1671,1671,1672,1672,1783,1783,1673,1673,1674,1674,1675,1675,1676,1676,1677,1677,1784,1784,1678,1678,1679,1679,1680,1680,1785,1785,1984,1984,2014,2014,1681,1681,1682,1682,1683,1683,1786,1786,1684,1684,1685,1685,1686,1686,1787,1787,1878,1878,1831,1831,1687,1687,1688,1688,1689,1689,1690,1690,1691,1691,1692,1692,1693,1693,1694,1694,1695,1695,1696,1696,1788,1788,1697,1697,1698,1698,1699,1699,1700,1700,1701,1701,1702,1702,1703,1703,1704,1704,1705,1705,1706,1706,1707,1707,1708,1708,1709,1709,1710,1710,1711,1711,1712,1712,1713,1713,1714,1714,1715,1715,1716,1716,1717,1717,1718,1718,1719,1719,1720,1720,1721,1721,1722,1722,1723,1723,1724,1724,1725,1725,1726,1726,1727,1727,1789,1789,1728,1728,1729,1729,1730,1730,1731,1731,1732,1732,1733,1733,1734,1734,1735,1735,1736,1736,1737,1737,1071,1071,1072,1072,6281,6281,6280,6280,7321,7321,6279,6279,6278,6278,6277,6277,7432,7432,7563,7563,7599,7599,6276,6276,6275,6275,6274,6274,7515,7515,7320,7320,6273,6273,6272,6272,6271,6271,7431,7431,6270,6270,6269,6269,6268,6268,6267,6267,6266,6266,7430,7430,7319,7319,6265,6265,6264,6264,6263,6263,7318,7318,6262,6262,6261,6261,6260,6260,6259,6259,6258,6258,6257,6257,6256,6256,6255,6255,6254,6254,7514,7514,7317,7317,6253,6253,6252,6252,6251,6251,6250,6250,6249,6249,6248,6248,6247,6247,6246,6246,6245,6245,6244,6244,6243,6243,6242,6242,6241,6241,6240,6240,6239,6239,7316,7316,7513,7513,7598,7598,7315,7315,6238,6238,6237,6237,6236,6236,6235,6235,6234,6234,6233,6233,6232,6232,6231,6231,6230,6230,7314,7314,6229,6229,6228,6228,6227,6227,7597,7597,7313,7313,6226,6226,6225,6225,6224,6224,6223,6223,6222,6222,6221,6221,6220,6220,6219,6219,6218,6218,6217,6217,6216,6216,6215,6215,6214,6214,6213,6213,7312,7312,6212,6212,6211,6211,6210,6210,6209,6209,6208,6208,6207,6207,7311,7311,6206,6206,6205,6205,6204,6204,7429,7429,7512,7512,7310,7310,6203,6203,6202,6202,6201,6201,6200,6200,6199,6199,6198,6198,7428,7428,6197,6197,6196,6196,6195,6195,6194,6194,6193,6193,7309,7309,6192,6192,6191,6191,6190,6190,6189,6189,6188,6188,6187,6187,6186,6186,6185,6185,6184,6184,7308,7308,7511,7511,7427,7427,6183,6183,6182,6182,6181,6181,6180,6180,6179,6179,6178,6178,6177,6177,6176,6176,6175,6175,6174,6174,6173,6173,6172,6172,6171,6171,6170,6170,6169,6169,6168,6168,6167,6167,6166,6166,7510,7510,7426,7426,6165,6165,6164,6164,6163,6163,6162,6162,6161,6161,6160,6160,6159,6159,6158,6158,7307,7307,6157,6157,6156,6156,6155,6155,6154,6154,6153,6153,6152,6152,7425,7425,6151,6151,6150,6150,6149,6149,6148,6148,6147,6147,6146,6146,6145,6145,6144,6144,6143,6143,6142,6142,6141,6141,6140,6140,6139,6139,6138,6138,6137,6137,6136,6136,6135,6135,6134,6134,6133,6133,6132,6132,7306,7306,6131,6131,6130,6130,6129,6129,7424,7424,7423,7423,7305,7305,6128,6128,6127,6127,6126,6126,6125,6125,6124,6124,6123,6123,6122,6122,6121,6121,6120,6120,6119,6119,6118,6118,6117,6117,7304,7304,7509,7509,7422,7422,7303,7303,6116,6116,6115,6115,6114,6114,6113,6113,6112,6112,6111,6111,6110,6110,6109,6109,6108,6108,6107,6107,6106,6106,6105,6105,6104,6104,6103,6103,6102,6102,6101,6101,6100,6100,6099,6099,6098,6098,6097,6097,6096,6096,6095,6095,6094,6094,7508,7508,7421,7421,7302,7302,6093,6093,6092,6092,6091,6091,7507,7507,7506,7506,7301,7301,6090,6090,6089,6089,6088,6088,7420,7420,6087,6087,6086,6086,6085,6085,6084,6084,6083,6083,7419,7419,7562,7562,7596,7596,7663,7663,7688,7688,7754,7754,7720,7720,7595,7595,7300,7300,6082,6082,6081,6081,6080,6080,6079,6079,6078,6078,6077,6077,6076,6076,6075,6075,6074,6074,6073,6073,6072,6072,6071,6071,6070,6070,6069,6069,6068,6068,6067,6067,6066,6066,7299,7299,6065,6065,6064,6064,6063,6063,7298,7298,6062,6062,6061,6061,6060,6060,6059,6059,6058,6058,6057,6057,6056,6056,7297,7297,6055,6055,6054,6054,6053,6053,7418,7418,7594,7594,6052,6052,6051,6051,6050,6050,6049,6049,6048,6048,6047,6047,7878,7878,7505,7505,7296,7296,6046,6046,6045,6045,6044,6044,7417,7417,7627,7627,6043,6043,6042,6042,6041,6041,7295,7295,6040,6040,6039,6039,6038,6038,7416,7416,6037,6037,6036,6036,6035,6035,6034,6034,6033,6033,7294,7294,6032,6032,6031,6031,6030,6030,7504,7504,6029,6029,6028,6028,6027,6027,6026,6026,6025,6025,6024,6024,6023,6023,6022,6022,6021,6021,7626,7626,7593,7593,7561,7561,6020,6020,6019,6019,6018,6018,6017,6017,6016,6016,6015,6015,6014,6014,7293,7293,6013,6013,6012,6012,6011,6011,7719,7719,7415,7415,6010,6010,6009,6009,6008,6008,6007,6007,6006,6006,6005,6005,6004,6004,7292,7292,7414,7414,7503,7503,7560,7560,7592,7592,7625,7625,6003,6003,6002,6002,6001,6001,7291,7291,7413,7413,7502,7502,7559,7559,7591,7591,7624,7624,7662,7662,7687,7687,7718,7718,7753,7753,7788,7788,7828,7828,7876,7876,7917,7917,7976,7976,8045,8045,8122,8122,8218,8218,8302,8302,8258,8258,8174,8174,6000,6000,5999,5999,5998,5998,7290,7290,7412,7412,7501,7501,7558,7558,7590,7590,7623,7623,7660,7660,7685,7685,7716,7716,7751,7751,7786,7786,7826,7826,7874,7874,7915,7915,7972,7972,7868,7868,7820,7820,7780,7780,7657,7657,7621,7621,7588,7588,5997,5997,5996,5996,5995,5995,7289,7289,7411,7411,7500,7500,7410,7410,7288,7288,5994,5994,5993,5993,5992,5992,7287,7287,5991,5991,5990,5990,5989,5989,5988,5988,5987,5987,7286,7286,7285,7285,5986,5986,5985,5985,5984,5984,7587,7587,7409,7409,7284,7284,5983,5983,5982,5982,5981,5981,7499,7499,7408,7408,5980,5980,5979,5979,5978,5978,5977,5977,5976,5976,5975,5975,5974,5974,5973,5973,5972,5972,5971,5971,5970,5970,5969,5969,5968,5968,5967,5967,5966,5966,5965,5965,5964,5964,7407,7407,7498,7498,7497,7497,5963,5963,5962,5962,5961,5961,5960,5960,5959,5959,5958,5958,5957,5957,5956,5956,5955,5955,5954,5954,5953,5953,5952,5952,5951,5951,5950,5950,7283,7283,7681,7681,7655,7655,5949,5949,5948,5948,5947,5947,5946,5946,5945,5945,5944,5944,5943,5943,5942,5942,5941,5941,5940,5940,5939,5939,7496,7496,5938,5938,5937,5937,5936,5936,5935,5935,5934,5934,5933,5933,5932,5932,5931,5931,5930,5930,5929,5929,5928,5928,7282,7282,7495,7495,7555,7555,7654,7654,5927,5927,5926,5926,5925,5925,5924,5924,5923,5923,5922,5922,5921,5921,5920,5920,5919,5919,5918,5918,5917,5917,7554,7554,7585,7585,7494,7494,7281,7281,5916,5916,5915,5915,5914,5914,5913,5913,5912,5912,5911,5911,5910,5910,7406,7406,7280,7280,5909,5909,5908,5908,5907,5907,5906,5906,5905,5905,5904,5904,5903,5903,5902,5902,5901,5901,7279,7279,7405,7405,5900,5900,5899,5899,5898,5898,5897,5897,5896,5896,5895,5895,5894,5894,5893,5893,5892,5892,5891,5891,5890,5890,5889,5889,7278,7278,7584,7584,7653,7653,7680,7680,7779,7779,7968,7968,8038,8038,5888,5888,5887,5887,5886,5886,5885,5885,5884,5884,5883,5883,5882,5882,5881,5881,7404,7404,7897,7897,5880,5880,5879,5879,5878,5878,7770,7770,7738,7738,7678,7678,7651,7651,7618,7618,7277,7277,5877,5877,5876,5876,5875,5875,5874,5874,5873,5873,5872,5872,5871,5871,5870,5870,5869,5869,5868,5868,5867,5867,5866,5866,5865,5865,5864,5864,5863,5863,5862,5862,7493,7493,7492,7492,5861,5861,5860,5860,5859,5859,5858,5858,5857,5857,5856,5856,5855,5855,5854,5854,5853,5853,5852,5852,5851,5851,5850,5850,5849,5849,5848,5848,5847,5847,5846,8677,8723,8723,8728,8728,8727,8727,8719,8719,8718,8718,8717,8717,8716,8716,8715,8715,8714,8714,8713,8713,8712,8712,8711,8711,8710,8710,8709,8709,8708,8708,8707,8707,8706,8706,8705,8705,8704,8704,8703,8703,8702,8702,8701,8701,8722,8722,8726,8726,8725,8725,8700,8700,8699,8699,8698,8698,8697,8697,8696,8696,8695,8695,8694,8694,8693,8693,8692,8692,8691,8691,8690,8690,8689,8689,8688,8688,8721,8721,8687,8687,8686,8686,8685,8685,8720,8720,8684,8684,8683,8683,8682,8682,8724,8724,8681,8681,8680,8680,8679,8679,8678,8678,8677,8730,8729,8729,8740,8740,8739,8739,8738,8738,8737,8737,8736,8736,8735,8735,8734,8734,8733,8733,8732,8732,8731,8731,8730,8742,8741,8741,8748,8748,8747,8747,8746,8746,8745,8745,8744,8744,8743,8743,8742,8750,8749,8749,8755,8755,8754,8754,8753,8753,8752,8752,8751,8751,8750,8757,8756,8756,8763,8763,8762,8762,8761,8761,8760,8760,8759,8759,8758,8758,8757,8765,8764,8764,8770,8770,8769,8769,8771,8771,8768,8768,8767,8767,8766,8766,8765,8773,8772,8772,8776,8776,8775,8775,8774,8774,8773,8778,8777,8777,8787,8787,8786,8786,8788,8788,8785,8785,8784,8784,8783,8783,8782,8782,8781,8781,8780,8780,8779,8779,8778,8790,8789,8789,8792,8792,8791,8791,8790,8794,8793,8793,8798,8798,8797,8797,8796,8796,8795,8795,8794,8800,8799,8799,8805,8805,8804,8804,8803,8803,8802,8802,8801,8801,8800,8807,8806,8806,8810,8810,8809,8809,8808,8808,8807,8812,8811,8811,8819,8819,8818,8818,8817,8817,8816,8816,8820,8820,8815,8815,8814,8814,8813,8813,8812,8822,8821,8821,8830,8830,8829,8829,8828,8828,8827,8827,8826,8826,8825,8825,8824,8824,8823,8823,8822,8832,8831,8831,8838,8838,8837,8837,8836,8836,8835,8835,8834,8834,8833,8833,8832,8840,8839,8839,8848,8848,8847,8847,8846,8846,8845,8845,8844,8844,8843,8843,8842,8842,8841,8841,8840,8850,8849,8849,8855,8855,8854,8854,8853,8853,8852,8852,8851,8851,8850,8857,8856,8856,8861,8861,8860,8860,8859,8859,8858,8858,8857,8863,8862,8862,8869,8869,8868,8868,8867,8867,8866,8866,8865,8865,8864,8864,8863,8871,8870,8870,8875,8875,8874,8874,8873,8873,8872,8872,8871,8877,8876,8876,8882,8882,8881,8881,8880,8880,8879,8879,8878,8878,8877,8884,8883,8883,8890,8890,8889,8889,8888,8888,8887,8887,8886,8886,8885,8885,8884,8892,8891,8891,8897,8897,8896,8896,8895,8895,8894,8894,8893,8893,8892,8899,8898,8898,8906,8906,8905,8905,8904,8904,8903,8903,8902,8902,8901,8901,8900,8900,8899,8908,8907,8907,8917,8917,8916,8916,8915,8915,8914,8914,8918,8918,8913,8913,8912,8912,8911,8911,8910,8910,8909,8909,8908,8920,8919,8919,8930,8930,8929,8929,8928,8928,8931,8931,8927,8927,8926,8926,8925,8925,8924,8924,8923,8923,8922,8922,8921,8921,8920,8932,8940,8940,8939,8939,8938,8938,8937,8937,8936,8936,8935,8935,8934,8934,8933,8933,8932,8942,8941,8941,8970,8970,8969,8969,8968,8968,8967,8967,8966,8966,8965,8965,8964,8964,8963,8963,8962,8962,8961,8961,8960,8960,8959,8959,8958,8958,8957,8957,8956,8956,8955,8955,8954,8954,8953,8953,8952,8952,8951,8951,8950,8950,8949,8949,8948,8948,8947,8947,8946,8946,8945,8945,8944,8944,8943,8943,8942,8972,8971,8971,8976,8976,8975,8975,8974,8974,8973,8973,8972,8978,8977,8977,8980,8980,8979,8979,8978,8982,8981,8981,8987,8987,8986,8986,8985,8985,8984,8984,8983,8983,8982,8989,8988,8988,8993,8993,8992,8992,8991,8991,8990,8990,8989,8995,8994,8994,9001,9001,9000,9000,8999,8999,8998,8998,8997,8997,8996,8996,8995,9003,9002,9002,9007,9007,9006,9006,9005,9005,9004,9004,9003,9009,9008,9008,9011,9011,9010,9010,9009,9012,9017,9017,9016,9016,9015,9015,9014,9014,9013,9013,9012,9019,9018,9018,9022,9022,9021,9021,9020,9020,9019,9024,9023,9023,9028,9028,9027,9027,9026,9026,9025,9025,9024,9030,9029,9029,9035,9035,9034,9034,9033,9033,9032,9032,9031,9031,9030,9037,9036,9036,9041,9041,9040,9040,9039,9039,9038,9038,9037,9043,9042,9042,9046,9046,9045,9045,9044,9044,9043,9048,9047,9047,9052,9052,9051,9051,9050,9050,9049,9049,9048,9054,9053,9053,9058,9058,9057,9057,9056,9056,9055,9055,9054,9066,9065,9065,9064,9064,9063,9063,9062,9062,9067,9067,9061,9061,9060,9060,9059,9059,9066,9069,9068,9068,9073,9073,9072,9072,9071,9071,9070,9070,9069,9075,9074,9074,9081,9081,9080,9080,9079,9079,9078,9078,9077,9077,9076,9076,9075,9083,9082,9082,9088,9088,9087,9087,9086,9086,9085,9085,9084,9084,9083,9090,9089,9089,9098,9098,9097,9097,9096,9096,9099,9099,9095,9095,9094,9094,9093,9093,9092,9092,9091,9091,9090,9101,9100,9100,9108,9108,9107,9107,9106,9106,9105,9105,9104,9104,9103,9103,9102,9102,9101,9110,9109,9109,9118,9118,9117,9117,9116,9116,9115,9115,9114,9114,9113,9113,9112,9112,9111,9111,9110,9120,9119,9119,9125,9125,9124,9124,9123,9123,9122,9122,9121,9121,9120,9127,9126,9126,9170,9170,9169,9169,9168,9168,9167,9167,9166,9166,9165,9165,9164,9164,9163,9163,9162,9162,9177,9177,9179,9179,9181,9181,9182,9182,9180,9180,9161,9161,9160,9160,9159,9159,9173,9173,9158,9158,9157,9157,9156,9156,9176,9176,9155,9155,9154,9154,9153,9153,9152,9152,9151,9151,9175,9175,9172,9172,9150,9150,9149,9149,9148,9148,9147,9147,9146,9146,9145,9145,9144,9144,9143,9143,9142,9142,9141,9141,9140,9140,9174,9174,9178,9178,9171,9171,9139,9139,9138,9138,9137,9137,9136,9136,9135,9135,9134,9134,9133,9133,9132,9132,9131,9131,9130,9130,9129,9129,9128,9128,9127,9184,9183,9183,9226,9226,9225,9225,9224,9224,9223,9223,9231,9231,9228,9228,9222,9222,9221,9221,9220,9220,9219,9219,9218,9218,9217,9217,9216,9216,9215,9215,9214,9214,9213,9213,9212,9212,9211,9211,9210,9210,9209,9209,9227,9227,9208,9208,9207,9207,9206,9206,9205,9205,9204,9204,9203,9203,9202,9202,9201,9201,9200,9200,9199,9199,9198,9198,9197,9197,9196,9196,9195,9195,9194,9194,9193,9193,9232,9232,9192,9192,9191,9191,9190,9190,9189,9189,9188,9188,9230,9230,9229,9229,9187,9187,9186,9186,9185,9185,9184,9233,9369,9369,9368,9368,9367,9367,9366,9366,9365,9365,9364,9364,9363,9363,9362,9362,9386,9386,9378,9378,9361,9361,9360,9360,9359,9359,9385,9385,9394,9394,9384,9384,9377,9377,9358,9358,9357,9357,9356,9356,9355,9355,9354,9354,9353,9353,9352,9352,9351,9351,9390,9390,9350,9350,9349,9349,9348,9348,9347,9347,9346,9346,9345,9345,9344,9344,9343,9343,9342,9342,9376,9376,9341,9341,9340,9340,9339,9339,9338,9338,9337,9337,9336,9336,9335,9335,9334,9334,9333,9333,9332,9332,9331,9331,9330,9330,9329,9329,9383,9383,9389,9389,9396,9396,9397,9397,9328,9328,9327,9327,9326,9326,9325,9325,9324,9324,9323,9323,9322,9322,9321,9321,9320,9320,9319,9319,9318,9318,9317,9317,9316,9316,9315,9315,9382,9382,9375,9375,9314,9314,9313,9313,9312,9312,9311,9311,9310,9310,9309,9309,9308,9308,9307,9307,9374,9374,9306,9306,9305,9305,9304,9304,9303,9303,9302,9302,9301,9301,9373,9373,9300,9300,9299,9299,9298,9298,9297,9297,9296,9296,9295,9295,9294,9294,9293,9293,9292,9292,9291,9291,9290,9290,9289,9289,9372,9372,9288,9288,9287,9287,9286,9286,9285,9285,9284,9284,9283,9283,9282,9282,9281,9281,9280,9280,9279,9279,9278,9278,9277,9277,9276,9276,9275,9275,9274,9274,9273,9273,9272,9272,9271,9271,9270,9270,9381,9381,9393,9393,9395,9395,9392,9392,9388,9388,9269,9269,9268,9268,9267,9267,9266,9266,9265,9265,9380,9380,9387,9387,9264,9264,9263,9263,9262,9262,9261,9261,9260,9260,9379,9379,9259,9259,9258,9258,9257,9257,9256,9256,9255,9255,9254,9254,9253,9253,9252,9252,9251,9251,9371,9371,9250,9250,9249,9249,9248,9248,9391,9391,9370,9370,9247,9247,9246,9246,9245,9245,9244,9244,9243,9243,9242,9242,9241,9241,9240,9240,9239,9239,9238,9238,9237,9237,9236,9236,9235,9235,9234,9234,9233,2750,2751,2751,2752,2752,2753,2753,2754,2754,2755,2755,2756,2756,2757,2757,2758,2758,2759,2759,2760,2760,4089,4089,4090,4090,2761,2761,2762,2762,2763,2763,3992,3992,2764,2764,2765,2765,2766,2766,2767,2767,2768,2768,2769,2769,2770,2770,2771,2771,3993,3993,2772,2772,2773,2773,2774,2774,2775,2775,2776,2776,2777,2777,2778,2778,2779,2779,2780,2780,2781,2781,2782,2782,2783,2783,2784,2784,2785,2785,2786,2786,2787,2787,2788,2788,2789,2789,2790,2790,4172,4172,2791,2791,2792,2792,2793,2793,2794,2794,2795,2795,2796,2796,2797,2797,2798,2798,2799,2799,3994,3994,4173,4173,2800,2800,2801,2801,2802,2802,2803,2803,2804,2804,2805,2805,2806,2806,2807,2807,3995,3995,2808,2808,2809,2809,2810,2810,3996,3996,2811,2811,2812,2812,2813,2813,2814,2814,2815,2815,2816,2816,2817,2817,2818,2818,4489,4489,2819,2819,2820,2820,2821,2821,2822,2822,2823,2823,2824,2824,2825,2825,2826,2826,2827,2827,2828,2828,2829,2829,2830,2830,2831,2831,3997,3997,2832,2832,2833,2833,2834,2834,2835,2835,2836,2836,2837,2837,2838,2838,2839,2839,3998,3998,2840,2840,2841,2841,2842,2842,2843,2843,2844,2844,4596,4596,4586,4586,4581,4581,4571,4571,4561,4561,4550,4550,4540,4540,4523,4523,4507,4507,4494,4494,4467,4467,4452,4452,4437,4437,4424,4424,4412,4412,4401,4401,4389,4389,4377,4377,4363,4363,4349,4349,4337,4337,4330,4330,4321,4321,4308,4308,4292,4292,4267,4267,4224,4224,4174,4174,4091,4091,3999,3999,2845,2845,2846,2846,11728,11728,11877,11877,11727,11727,11726,11726,11725,11725,11724,11724,11723,11723,12108,12108,11722,11722,11721,11721,11720,11720,11719,11719,11718,11718,11717,11717,11716,11716,12278,12278,12337,12337,12308,12308,12159,12159,11715,11715,11714,11714,11713,11713,11712,11712,11711,11711,11710,11710,11709,11709,12026,12026,11708,11708,11707,11707,11706,11706,11705,11705,11704,11704,11703,11703,11702,11702,11701,11701,11700,11700,12025,12025,11699,11699,11698,11698,11697,11697,11696,11696,11695,11695,11694,11694,11693,11693,11692,11692,11691,11691,11690,11690,11689,11689,11688,11688,11687,11687,11686,11686,11685,11685,11684,11684,11683,11683,11682,11682,11681,11681,11876,11876,12107,12107,11875,11875,11680,11680,11679,11679,11678,11678,12024,12024,12106,12106,11874,11874,11677,11677,11676,11676,11675,11675,12023,12023,12158,12158,12157,12157,11674,11674,11673,11673,11672,11672,11671,11671,11670,11670,11669,11669,11668,11668,12022,12022,11667,11667,11666,11666,11665,11665,11664,11664,11663,11663,11873,11873,11662,11662,11661,11661,11660,11660,11659,11659,11658,11658,11657,11657,11656,11656,11655,11655,11654,11654,11653,11653,11872,11872,11652,11652,11651,11651,11650,11650,11649,11649,11648,11648,11647,11647,11646,11646,11645,11645,11644,11644,11643,11643,11642,11642,11641,11641,11640,11640,11639,11639,12203,12203,12021,12021,11638,11638,11637,11637,11636,11636,11635,11635,11634,11634,11871,11871,11633,11633,11632,11632,11631,11631,12020,12020,12437,12437,12472,12472,12505,12505,12556,12556,12019,12019,11630,11630,11629,11629,11628,11628,11627,11627,11626,11626,12307,12307,12277,12277,11625,11625,11624,11624,11623,11623,11622,11622,11621,11621,11620,11620,11619,11619,11618,11618,11617,11617,11616,11616,11615,11615,11614,11614,12156,12156,12105,12105,11870,11870,11613,11613,11612,11612,11611,11611,11610,11610,11609,11609,11608,11608,11607,11607,11869,11869,11606,11606,11605,11605,11604,11604,11603,11603,11602,11602,11601,11601,11600,11600,11599,11599,11598,11598,11597,11597,11596,11596,11595,11595,11594,11594,11593,11593,11592,11592,11591,11591,12018,12018,11590,11590,11589,11589,11588,11588,11587,11587,11586,11586,11585,11585,11584,11584,12155,12155,12240,12240,12276,12276,12306,12306,12336,12336,12471,12471,12104,12104,12017,12017,11868,11868,11583,11583,11582,11582,11581,11581,11580,11580,11579,11579,11578,11578,11577,11577,11576,11576,11575,11575,11574,11574,11573,11573,11572,11572,11571,11571,11570,11570,11569,11569,11568,11568,11567,11567,11566,11566,11565,11565,11564,11564,11563,11563,11562,11562,12016,12016,12239,12239,12275,12275,12368,12368,12407,12407,12436,12436,12504,12504,12406,12406,12238,12238,12015,12015,11867,11867,11561,11561,11560,11560,11559,11559,11558,11558,11557,11557,11556,11556,11866,11866,11865,11865,11555,11555,11554,11554,11553,11553,12154,12154,12103,12103,11552,11552,11551,11551,11550,11550,11549,11549,11548,11548,11547,11547,11546,11546,11545,11545,11544,11544,11543,11543,11542,11542,11541,11541,12014,12014,12153,12153,12013,12013,11540,11540,11539,11539,11538,11538,11864,11864,12102,12102,12274,12274,12335,12335,12367,12367,11537,11537,11536,11536,11535,11535,12404,12404,11534,11534,11533,11533,11532,11532,12305,12305,12101,12101,11531,11531,11530,11530,11529,11529,11528,11528,11527,11527,11526,11526,11525,11525,11524,11524,11523,11523,11522,11522,11521,11521,11520,11520,11519,11519,11518,11518,12100,12100,11863,11863,11517,11517,11516,11516,11515,11515,12012,12012,12099,12099,11514,11514,11513,11513,11512,11512,11511,11511,11510,11510,11509,11509,11508,11508,11507,11507,11506,11506,12334,12334,11505,11505,11504,11504,11503,11503,11502,11502,11501,11501,11500,11500,11499,11499,11498,11498,11497,11497,11496,11496,11495,11495,11494,11494,11493,11493,11492,11492,11491,11491,11490,11490,11862,11862,11489,11489,11488,11488,11487,11487,11486,11486,11485,11485,11484,11484,11483,11483,11482,11482,11481,11481,12011,12011,11861,11861,11480,11480,11479,11479,11478,11478,11477,11477,11476,11476,11475,11475,11860,11860,11474,11474,11473,11473,11472,11472,11859,11859,11471,11471,11470,11470,11469,11469,11468,11468,11467,11467,11466,11466,11858,11858,12273,12273,12010,12010,11465,11465,11464,11464,11463,11463,11462,11462,11461,11461,12009,12009,11460,11460,11459,11459,11458,11458,11857,11857,11856,11856,11457,11457,11456,11456,11455,11455,11454,11454,11453,11453,11452,11452,11451,11451,11855,11855,11450,11450,11449,11449,11448,11448,12152,12152,11447,11447,11446,11446,11445,11445,11444,11444,11443,11443,12008,12008,12098,12098,12202,12202,12097,12097,11442,11442,11441,11441,11440,11440,11439,11439,11438,11438,12007,12007,11437,11437,11436,11436,11435,11435,11434,11434,11433,11433,11432,11432,11431,11431,11430,11430,11429,11429,12006,12006,11428,11428,11427,11427,11426,11426,11854,11854,11425,11425,11424,11424,11423,11423,11422,11422,11421,11421,11853,11853,12365,12365,12403,12403,12237,12237,11420,11420,11419,11419,11418,11418,11417,11417,11416,11416,11415,11415,11414,11414,11413,11413,11412,11412,12005,12005,11852,11852,11411,11411,11410,11410,11409,11409,12004,12004,11851,11851,11408,11408,11407,11407,11406,11406,12096,12096,11405,11405,11404,11404,11403,11403,11402,11402,11401,11401,12003,12003,11400,11400,11399,11399,11398,11398,11397,11397,11396,11396,11395,11395,11394,11394,12002,12002,11393,11393,11392,11392,11391,11391,11390,11390,11389,11389,11850,11850,11388,11388,11387,11387,11386,11386,12001,12001,12095,12095,11385,11385,11384,11384,11383,11383,11382,11382,11381,11381,11380,11380,11379,11379,11378,11378,11377,11377,11376,11376,11849,11849,12094,12094,12151,12151,12332,12332,12433,12433,12363,12363,12331,12331,12304,12304,12272,12272,12201,12201,12000,12000,11375,11375,11374,11374,11373,11373,11848,11848,12093,12093,11999,11999,11372,11372,11371,11371,11370,11370,11847,11847,11998,11998,11369,11369,11368,11368,11367,11367,11366,11366,11365,11365,11364,11364,11363,11363,11362,11362,11361,11361,11360,11360,11359,11359,11358,11358,11357,11357,11356,11356,11355,11355,11354,11354,11353,11353,11352,11352,11351,11351,11350,11350,11349,11349,11348,11348,11347,11347,11346,11346,11345,11345,11344,11344,12092,12092,12236,12236,11997,11997,11343,11343,11342,11342,11341,11341,11340,11340,11339,11339,11338,11338,11337,11337,11336,11336,11335,11335,11334,11334,11996,11996,12200,12200,12235,12235,12199,12199,12091,12091,11333,11333,11332,11332,11331,11331,11330,11330,11329,11329,11328,11328,11327,11327,11326,11326,11846,11846,11325,11325,11324,11324,11323,11323,11322,11322,11321,11321,11320,11320,11319,11319,11318,11318,11317,11317,11845,11845,11316,11316,11315,11315,11314,11314,11313,11313,11312,11312,11844,11844,12198,12198,11843,11843,11311,11311,11310,11310,11309,11309,12271,12271,12197,12197,12150,12150,11308,11308,11307,11307,11306,11306,11305,11305,11304,11304,11303,11303,11302,11302,11301,11301,11300,11300,11299,11299,11298,11298,12234,12234,12362,12362,12604,12604,12553,12553,11297,11297,11296,11296,11295,11295,12361,12361,12303,12303,12270,12270,12149,12149,11842,11842,11294,11294,11293,11293,11292,11292,11291,11291,11290,11290,11289,11289,11288,11288,11995,11995,11287,11287,11286,11286,11285,11285,11284,11284,11283,11283,11282,11282,11281,11281,11280,11280,11279,11279,11278,11278,11277,11277,11276,11276,11275,11275,11274,11274,11273,11273,11841,11841,11272,11272,11271,11271,11270,11270,11269,11269,11268,11268,11267,11267,11266,11266,11994,11994,11265,11265,11264,11264,11263,11263,11262,11262,11261,11261,12090,12090,12196,12196,11993,11993,11840,11840,11260,11260,11259,11259,11258,11258,11257,11257,11256,11256,11839,11839,11255,11255,11254,11254,11253,11253,11838,11838,11252,11252,11251,11251,11250,11250,12233,12233,11249,11249,11248,11248,11247,11247,11246,11246,11245,11245,11837,11837,11244,11244,11243,11243,11242,11242,11241,11241,11240,11240,11239,11239,11238,11238,11237,11237,11236,11236,11235,11235,11234,11234,11233,11233,11232,11232,11231,11231,11836,11836,11230,11230,11229,11229,11228,11228,12195,12195,12269,12269,12432,12432,11835,11835,11227,11227,11226,11226,11225,11225,12268,12268,12194,12194,12089,12089,11224,11224,11223,11223,11222,11222,11221,11221,11220,11220,11992,11992,12148,12148,11219,11219,11218,11218,11217,11217,12267,12267,12232,12232,11216,11216,11215,11215,11214,11214,11213,11213,11212,11212,11211,11211,11210,11210,11209,11209,11208,11208,11834,11834,11207,11207,11206,11206,11205,11205,11833,11833,11204,11204,11203,11203,11202,11202,11991,11991,11201,11201,11200,11200,11199,11199,11198,11198,11197,11197,11832,11832,12088,12088,12147,12147,12401,12401,12360,12360,12330,12330,12266,12266,11196,11196,11195,11195,11194,11194,11193,11193,11192,11192,11191,11191,11190,11190,11189,11189,11188,11188,11187,11187,11186,11186,11990,11990,11831,11831,11185,11185,11184,11184,11183,11183,11182,11182,11181,11181,11180,11180,11179,11179,11178,11178,11177,11177,11176,11176,11989,11989,12146,12146,12231,12231,12302,12302,11830,11830,11175,11175,11174,11174,11173,11173,11988,11988,11987,11987,11829,11829,11172,11172,11171,11171,11170,11170,11169,11169,11168,11168,11167,11167,11166,11166,11986,11986,12145,12145,11985,11985,11165,11165,11164,11164,11163,11163,11162,11162,11161,11161,12087,12087,11160,11160,11159,11159,11158,11158,11157,11157,11156,11156,11984,11984,11155,11155,11154,11154,11153,11153,11152,11152,11151,11151,11150,11150,11149,11149,11148,11148,11147,11147,11146,11146,11145,11145,11144,11144,11143,11143,11142,11142,11141,11141,11140,11140,11139,11139,11138,11138,11137,11137,11136,11136,11828,11828,11135,11135,11134,11134,11133,11133,11132,11132,11131,11131,11130,11130,11129,11129,11128,11128,11127,11127,11126,11126,11125,11125,11124,11124,11983,11983,12144,12144,11123,11123,11122,11122,11121,11121,11120,11120,11119,11119,11118,11118,11117,11117,11116,11116,11115,11115,11114,11114,11113,11113,11112,11112,11111,11111,11110,11110,11109,11109,11108,11108,11107,11107,11106,11106,12086,12086,12085,12085,11105,11105,11104,11104,11103,11103,11102,11102,11101,11101,11982,11982,11100,11100,11099,11099,11098,11098,11097,11097,11096,11096,11095,11095,11094,11094,11093,11093,11092,11092,11091,11091,11090,11090,11089,11089,11088,11088,11087,11087,11086,11086,11085,11085,11084,11084,11083,11083,11082,11082,11081,11081,11080,11080,11079,11079,12193,12193,12084,12084,11981,11981,11078,11078,11077,11077,11076,11076,11075,11075,11074,11074,11073,11073,11072,11072,11071,11071,11070,11070,11069,11069,11068,11068,11067,11067,11066,11066,11065,11065,11064,11064,11063,11063,12083,12083,11827,11827,11062,11062,11061,11061,11060,11060,11059,11059,11058,11058,11057,11057,11056,11056,12192,12192,12143,12143,11055,11055,11054,11054,11053,11053,11052,11052,11051,11051,11980,11980,12082,12082,11050,11050,11049,11049,11048,11048,11047,11047,11046,11046,11045,11045,11044,11044,11826,11826,11043,11043,11042,11042,11041,11041,11040,11040,11039,11039,11038,11038,11037,11037,11036,11036,11035,11035,11034,11034,11979,11979,12081,12081,11978,11978,11033,11033,11032,11032,11031,11031,11030,11030,11029,11029,11028,11028,11027,11027,11026,11026,11025,11025,11024,11024,11023,11023,11022,11022,11021,11021,11020,11020,11825,11825,11019,11019,11018,11018,11017,11017,11016,11016,11015,11015,11014,11014,11013,11013,11012,11012,11977,11977,12501,12501,11824,11824,11011,11011,11010,11010,11009,11009,12230,12230,11823,11823,11008,11008,11007,11007,11006,11006,11976,11976,11005,11005,11004,11004,11003,11003,11002,11002,11001,11001,11000,11000,10999,10999,10998,10998,10997,10997,11822,11822,10996,10996,10995,10995,10994,10994,10993,10993,10992,10992,10991,10991,10990,10990,10989,10989,10988,10988,10987,10987,10986,10986,10985,10985,10984,10984,10983,10983,10982,10982,10981,10981,12080,12080,12191,12191,10980,10980,10979,10979,10978,10978,12329,12329,12079,12079,11821,11821,10977,10977,10976,10976,10975,10975,11975,11975,12468,12468,12716,12716,12078,12078,11974,11974,10974,10974,10973,10973,10972,10972,11820,11820,12142,12142,12141,12141,11973,11973,10971,10971,10970,10970,10969,10969,10968,10968,10967,10967,12077,12077,12229,12229,12190,12190,11972,11972,10966,10966,10965,10965,10964,10964,10963,10963,10962,10962,10961,10961,10960,10960,10959,10959,10958,10958,11971,11971,12140,12140,11970,11970,10957,10957,10956,10956,10955,10955,10954,10954,10953,10953,10952,10952,10951,10951,10950,10950,12139,12139,11819,11819,10949,10949,10948,10948,10947,10947,10946,10946,10945,10945,10944,10944,10943,10943,11818,11818,10942,10942,10941,10941,10940,10940,11817,11817,10939,10939,10938,10938,10937,10937,11969,11969,11968,11968,10936,10936,10935,10935,10934,10934,10933,10933,10932,10932,12076,12076,10931,10931,10930,10930,10929,10929,10928,10928,10927,10927,10926,10926,10925,10925,10924,10924,10923,10923,10922,10922,10921,10921,10920,10920,10919,10919,10918,10918,11816,11816,10917,10917,10916,10916,10915,10915,10914,10914,10913,10913,11967,11967,12138,12138,10912,10912,10911,10911,10910,10910,10909,10909,10908,10908,10907,10907,10906,10906,10905,10905,10904,10904,11815,11815,10903,10903,10902,10902,10901,10901,10900,10900,10899,10899,10898,10898,10897,10897,10896,10896,10895,10895,10894,10894,10893,10893,10892,10892,10891,10891,10890,10890,10889,10889,10888,10888,10887,10887,12189,12189,11966,11966,11814,11814,10886,10886,10885,10885,10884,10884,10883,10883,10882,10882,10881,10881,12188,12188,12075,12075,10880,10880,10879,10879,10878,10878,10877,10877,10876,10876,11965,11965,12137,12137,12265,12265,12359,12359,11964,11964,11813,11813,10875,10875,10874,10874,10873,10873,10872,10872,10871,10871,10870,10870,10869,10869,10868,10868,10867,10867,10866,10866,10865,10865,12074,12074,10864,10864,10863,10863,10862,10862,10861,10861,10860,10860,10859,10859,10858,10858,10857,10857,10856,10856,10855,10855,10854,10854,10853,10853,10852,10852,10851,10851,10850,10850,10849,10849,10848,10848,12136,12136,10847,10847,10846,10846,10845,10845,10844,10844,10843,10843,10842,10842,10841,10841,11812,11812,10840,10840,10839,10839,10838,10838,12264,12264,12301,12301,12400,12400,12358,12358,12328,12328,12187,12187,10837,10837,10836,10836,10835,10835,10834,10834,10833,10833,10832,10832,10831,10831,11811,11811,10830,10830,10829,10829,10828,10828,11810,11810,10827,10827,10826,10826,10825,10825,10824,10824,10823,10823,10822,10822,10821,10821,12073,12073,10820,10820,10819,10819,10818,10818,10817,10817,10816,10816,10815,10815,10814,10814,10813,10813,10812,10812,11809,11809,10811,10811,10810,10810,10809,10809,12300,12300,11808,11808,10808,10808,10807,10807,10806,10806,11963,11963,12072,12072,10805,10805,10804,10804,10803,10803,10802,10802,10801,10801,10800,10800,10799,10799,10798,10798,10797,10797,10796,10796,10795,10795,10794,10794,10793,10793,10792,10792,10791,10791,10790,10790,10789,10789,10788,10788,10787,10787,10786,10786,10785,10785,11807,11807,10784,10784,10783,10783,10782,10782,11962,11962,12186,12186,12135,12135,11961,11961,10781,10781,10780,10780,10779,10779,10778,10778,10777,10777,10776,10776,10775,10775,10774,10774,11960,11960,12327,12327,12357,12357,12399,12399,12356,12356,11959,11959,10773,10773,10772,10772,10771,10771,10770,10770,10769,10769,10768,10768,10767,10767,10766,10766,10765,10765,10764,10764,12071,12071,12185,12185,12070,12070,10763,10763,10762,10762,10761,10761,10760,10760,10759,10759,10758,10758,10757,10757,10756,10756,10755,10755,10754,10754,10753,10753,10752,10752,10751,10751,10750,10750,10749,10749,10748,10748,10747,10747,10746,10746,10745,10745,10744,10744,10743,10743,10742,10742,10741,10741,10740,10740,10739,10739,10738,10738,10737,10737,10736,10736,10735,10735,10734,10734,11958,11958,12228,12228,10733,10733,10732,10732,10731,10731,10730,10730,10729,10729,10728,10728,10727,10727,10726,10726,10725,10725,10724,10724,10723,10723,10722,10722,10721,10721,10720,10720,10719,10719,10718,10718,10717,10717,10716,10716,10715,10715,10714,10714,10713,10713,10712,10712,10711,10711,10710,10710,10709,10709,10708,10708,10707,10707,10706,10706,11957,11957,12069,12069,11806,11806,10705,10705,10704,10704,10703,10703,10702,10702,10701,10701,10700,10700,10699,10699,10698,10698,10697,10697,10696,10696,11956,11956,12227,12227,12184,12184,12068,12068,10695,10695,10694,10694,10693,10693,10692,10692,10691,10691,10690,10690,10689,10689,11805,11805,10688,10688,10687,10687,10686,10686,10685,10685,10684,10684,12067,12067,12263,12263,10683,10683,10682,10682,10681,10681,10680,10680,10679,10679,10678,10678,10677,10677,10676,10676,10675,10675,10674,10674,10673,10673,10672,10672,10671,10671,10670,10670,10669,10669,10668,10668,10667,10667,10666,10666,10665,10665,10664,10664,10663,10663,11804,11804,10662,10662,10661,10661,10660,10660,12226,12226,12326,12326,12262,12262,12225,12225,11803,11803,10659,10659,10658,10658,10657,10657,10656,10656,10655,10655,10654,10654,10653,10653,11802,11802,10652,10652,10651,10651,10650,10650,11801,11801,10649,10649,10648,10648,10647,10647,11955,11955,11800,11800,10646,10646,10645,10645,10644,10644,10643,10643,10642,10642,10641,10641,10640,10640,11954,11954,12134,12134,12183,12183,10639,10639,10638,10638,10637,10637,10636,10636,10635,10635,11953,11953,10634,10634,10633,10633,10632,10632,10631,10631,10630,10630,11952,11952,10629,10629,10628,10628,10627,10627,10626,10626,10625,10625,12182,12182,12133,12133,11951,11951,10624,10624,10623,10623,10622,10622,10621,10621,10620,10620,12066,12066,10619,10619,10618,10618,10617,10617,10616,10616,10615,10615,11950,11950,10614,10614,10613,10613,10612,10612,10611,10611,10610,10610,11799,11799,10609,10609,10608,10608,10607,10607,11949,11949,10606,10606,10605,10605,10604,10604,10603,10603,10602,10602,11948,11948,10601,10601,10600,10600,10599,10599,10598,10598,10597,10597,10596,10596,10595,10595,10594,10594,10593,10593,10592,10592,10591,10591,10590,10590,10589,10589,10588,10588,10587,10587,10586,10586,10585,10585,11947,11947,11798,11798,10584,10584,10583,10583,10582,10582,10581,10581,10580,10580,10579,10579,10578,10578,10577,10577,10576,10576,10575,10575,11797,11797,10574,10574,10573,10573,10572,10572,10571,10571,10570,10570,10569,10569,10568,10568,10567,10567,10566,10566,10565,10565,10564,10564,10563,10563,10562,10562,10561,10561,12224,12224,12181,12181,11946,11946,10560,10560,10559,10559,10558,10558,10557,10557,10556,10556,11796,11796,10555,10555,10554,10554,10553,10553,10552,10552,10551,10551,10550,10550,10549,10549,10548,10548,10547,10547,10546,10546,10545,10545,10544,10544,10543,10543,11795,11795,11794,11794,10542,10542,10541,10541,10540,10540,12180,12180,10539,10539,10538,10538,10537,10537,11793,11793,10536,10536,10535,10535,10534,10534,10533,10533,10532,10532,10531,10531,10530,10530,10529,10529,10528,10528,10527,10527,11945,11945,10526,10526,10525,10525,10524,10524,10523,10523,10522,10522,11792,11792,10521,10521,10520,10520,10519,10519,11791,11791,10518,10518,10517,10517,10516,10516,10515,10515,10514,10514,10513,10513,10512,10512,10511,10511,11790,11790,10510,10510,10509,10509,10508,10508,10507,10507,10506,10506,10505,10505,10504,10504,11944,11944,12065,12065,10503,10503,10502,10502,10501,10501,10500,10500,10499,10499,10498,10498,10497,10497,11943,11943,10496,10496,10495,10495,10494,10494,11789,11789,12064,12064,12179,12179,12132,12132,11788,11788,10493,10493,10492,10492,10491,10491,10490,10490,10489,10489,10488,10488,10487,10487,10486,10486,10485,10485,11942,11942,10484,10484,10483,10483,10482,10482,10481,10481,10480,10480,10479,10479,10478,10478,10477,10477,10476,10476,10475,10475,10474,10474,10473,10473,10472,10472,10471,10471,10470,10470,10469,10469,11941,11941,12131,12131,12063,12063,10468,10468,10467,10467,10466,10466,10465,10465,10464,10464,10463,10463,10462,10462,10461,10461,10460,10460,12130,12130,10459,10459,10458,10458,10457,10457,10456,10456,10455,10455,10454,10454,10453,10453,10452,10452,10451,10451,11940,11940,10450,10450,10449,10449,10448,10448,10447,10447,10446,10446,10445,10445,10444,10444,10443,10443,10442,10442,10441,10441,10440,10440,10439,10439,10438,10438,10437,10437,10436,10436,10435,10435,10434,10434,12178,12178,12129,12129,10433,10433,10432,10432,10431,10431,11787,11787,10430,10430,10429,10429,10428,10428,11786,11786,10427,10427,10426,10426,10425,10425,10424,10424,10423,10423,10422,10422,11939,11939,11938,11938,10421,10421,10420,10420,10419,10419,10418,10418,10417,10417,10416,10416,10415,10415,10414,10414,10413,10413,10412,10412,11785,11785,10411,10411,10410,10410,10409,10409,10408,10408,10407,10407,10406,10406,10405,10405,10404,10404,10403,10403,10402,10402,10401,10401,12062,12062,10400,10400,10399,10399,10398,10398,11784,11784,10397,10397,10396,10396,10395,10395,10394,10394,10393,10393,10392,10392,10391,10391,11937,11937,12061,12061,10390,10390,10389,10389,10388,10388,10387,10387,10386,10386,10385,10385,10384,10384,10383,10383,10382,10382,10381,10381,10380,10380,10379,10379,10378,10378,11783,11783,10377,10377,10376,10376,10375,10375,12602,12602,12654,12654,12984,12984,12917,12917,12837,12837,12772,12772,12706,12706,12598,12598,10374,10374,10373,10373,10372,10372,12323,12323,10371,10371,10370,10370,10369,10369,11782,11782,10368,10368,10367,10367,10366,10366,10365,10365,10364,10364,10363,10363,10362,10362,10361,10361,10360,10360,10359,10359,10358,10358,10357,10357,10356,10356,10355,10355,10354,10354,11936,11936,11781,11781,10353,10353,10352,10352,10351,10351,10350,10350,10349,10349,10348,10348,10347,10347,10346,10346,10345,10345,10344,10344,10343,10343,10342,10342,10341,10341,11780,11780,10340,10340,10339,10339,10338,10338,10337,10337,10336,10336,10335,10335,10334,10334,10333,10333,10332,10332,10331,10331,10330,10330,10329,10329,10328,10328,11779,11779,10327,10327,10326,10326,10325,10325,10324,10324,10323,10323,10322,10322,10321,10321,10320,10320,10319,10319,10318,10318,10317,10317,10316,10316,10315,10315,10314,10314,11935,11935,12060,12060,12059,12059,11934,11934,10313,10313,10312,10312,10311,10311,10310,10310,10309,10309,10308,10308,10307,10307,10306,10306,10305,10305,10304,10304,10303,10303,10302,10302,10301,10301,10300,10300,10299,10299,10298,10298,10297,10297,10296,10296,10295,10295,10294,10294,10293,10293,10292,10292,10291,10291,10290,10290,10289,10289,10288,10288,10287,10287,10286,10286,10285,10285,10284,10284,10283,10283,10282,10282,10281,10281,10280,10280,10279,10279,10278,10278,10277,10277,11933,11933,10276,10276,10275,10275,10274,10274,10273,10273,10272,10272,10271,10271,10270,10270,10269,10269,10268,10268,10267,10267,10266,10266,10265,10265,10264,10264,10263,10263,10262,10262,10261,10261,10260,10260,10259,10259,12128,12128,10258,10258,10257,10257,10256,10256,10255,10255,10254,10254,10253,10253,10252,10252,10251,10251,10250,10250,10249,10249,10248,10248,10247,10247,12177,12177,11932,11932,11778,11778,10246,10246,10245,10245,10244,10244,10243,10243,10242,10242,10241,10241,10240,10240,11931,11931,12058,12058,11777,11777,10239,10239,10238,10238,10237,10237,11930,11930,12257,12257,11929,11929,11776,11776,10236,10236,10235,10235,10234,10234,10233,10233,10232,10232,10231,10231,10230,10230,10229,10229,10228,10228,10227,10227,12057,12057,12220,12220,10226,10226,10225,10225,10224,10224,11775,11775,10223,10223,10222,10222,10221,10221,10220,10220,10219,10219,10218,10218,10217,10217,10216,10216,10215,10215,10214,10214,10213,10213,12056,12056,12127,12127,12176,12176,12219,12219,12175,12175,12126,12126,12055,12055,10212,10212,10211,10211,10210,10210,10209,10209,10208,10208,10207,10207,10206,10206,10205,10205,10204,10204,12054,12054,11928,11928,10203,10203,10202,10202,10201,10201,10200,10200,10199,10199,10198,10198,10197,10197,10196,10196,10195,10195,11927,11927,12053,12053,10194,10194,10193,10193,10192,10192,10191,10191,10190,10190,11774,11774,10189,10189,10188,10188,10187,10187,10186,10186,10185,10185,10184,10184,10183,10183,10182,10182,10181,10181,10180,10180,11926,11926,12052,12052,11925,11925,10179,10179,10178,10178,10177,10177,10176,10176,10175,10175,10174,10174,10173,10173,10172,10172,12125,12125,11924,11924,10171,10171,10170,10170,10169,10169,10168,10168,10167,10167,10166,10166,10165,10165,10164,10164,10163,10163,10162,10162,10161,10161,10160,10160,10159,10159,10158,10158,10157,10157,10156,10156,10155,10155,10154,10154,10153,10153,10152,10152,10151,10151,11923,11923,12124,12124,10150,10150,10149,10149,10148,10148,12123,12123,12051,12051,10147,10147,10146,10146,10145,10145,10144,10144,10143,10143,10142,10142,10141,10141,10140,10140,10139,10139,12122,12122,12050,12050,11773,11773,10138,10138,10137,10137,10136,10136,10135,10135,10134,10134,10133,10133,10132,10132,12121,12121,12049,12049,10131,10131,10130,10130,10129,10129,10128,10128,10127,10127,10126,10126,10125,10125,10124,10124,11772,11772,10123,10123,10122,10122,10121,10121,10120,10120,10119,10119,10118,10118,10117,10117,10116,10116,10115,10115,10114,10114,10113,10113,12218,12218,12256,12256,12217,12217,12174,12174,11922,11922,10112,10112,10111,10111,10110,10110,10109,10109,10108,10108,11921,11921,10107,10107,10106,10106,10105,10105,10104,10104,10103,10103,10102,10102,10101,10101,10100,10100,10099,10099,10098,10098,10097,10097,12216,12216,11771,11771,10096,10096,10095,10095,10094,10094,10093,10093,10092,10092,10091,10091,10090,10090,11770,11770,10089,10089,10088,10088,10087,10087,11920,11920,10086,10086,10085,10085,10084,10084,10083,10083,10082,10082,12173,12173,12172,12172,11919,11919,11769,11769,10081,10081,10080,10080,10079,10079,10078,10078,10077,10077,10076,10076,10075,10075,10074,10074,10073,10073,10072,10072,10071,10071,11918,11918,10070,10070,10069,10069,10068,10068,10067,10067,10066,10066,10065,10065,10064,10064,10063,10063,10062,10062,10061,10061,10060,10060,10059,10059,10058,10058,10057,10057,10056,10056,10055,10055,11768,11768,10054,10054,10053,10053,10052,10052,10051,10051,10050,10050,10049,10049,10048,10048,10047,10047,10046,10046,10045,10045,10044,10044,11917,11917,11767,11767,10043,10043,10042,10042,10041,10041,11766,11766,10040,10040,10039,10039,10038,10038,11765,11765,10037,10037,10036,10036,10035,10035,10034,10034,10033,10033,10032,10032,10031,10031,11916,11916,12255,12255,12215,12215,12120,12120,10030,10030,10029,10029,10028,10028,10027,10027,10026,10026,10025,10025,10024,10024,10023,10023,10022,10022,10021,10021,10020,10020,10019,10019,10018,10018,10017,10017,10016,10016,10015,10015,10014,10014,10013,10013,10012,10012,10011,10011,11915,11915,10010,10010,10009,10009,10008,10008,10007,10007,10006,10006,12048,12048,10005,10005,10004,10004,10003,10003,10002,10002,10001,10001,10000,10000,9999,9999,11764,11764,12047,12047,11914,11914,9998,9998,9997,9997,9996,9996,9995,9995,9994,9994,12046,12046,9993,9993,9992,9992,9991,9991,9990,9990,9989,9989,11913,11913,9988,9988,9987,9987,9986,9986,9985,9985,9984,9984,9983,9983,9982,9982,9981,9981,12214,12214,12171,12171,9980,9980,9979,9979,9978,9978,9977,9977,9976,9976,9975,9975,9974,9974,9973,9973,9972,9972,12119,12119,12045,12045,11912,11912,9971,9971,9970,9970,9969,9969,9968,9968,9967,9967,9966,9966,9965,9965,9964,9964,9963,9963,9962,9962,9961,9961,9960,9960,12044,12044,12170,12170,12169,12169,9959,9959,9958,9958,9957,9957,9956,9956,9955,9955,9954,9954,9953,9953,9952,9952,11911,11911,11910,11910,9951,9951,9950,9950,9949,9949,9948,9948,9947,9947,12043,12043,11909,11909,9946,9946,9945,9945,9944,9944,9943,9943,9942,9942,12042,12042,11763,11763,9941,9941,9940,9940,9939,9939,11908,11908,12041,12041,11762,11762,9938,9938,9937,9937,9936,9936,9935,9935,9934,9934,9933,9933,9932,9932,9931,9931,9930,9930,9929,9929,9928,9928,9927,9927,9926,9926,9925,9925,9924,9924,9923,9923,11761,11761,9922,9922,9921,9921,9920,9920,11760,11760,9919,9919,9918,9918,9917,9917,9916,9916,9915,9915,9914,9914,9913,9913,9912,9912,9911,9911,9910,9910,9909,9909,9908,9908,11907,11907,9907,9907,9906,9906,9905,9905,11759,11759,9904,9904,9903,9903,9902,9902,9901,9901,9900,9900,11758,11758,12040,12040,12213,12213,12254,12254,9899,9899,9898,9898,9897,9897,9896,9896,9895,9895,11906,11906,11905,11905,9894,9894,9893,9893,9892,9892,9891,9891,9890,9890,9889,9889,9888,9888,9887,9887,11757,11757,9886,9886,9885,9885,9884,9884,9883,9883,9882,9882,9881,9881,9880,9880,9879,9879,11904,11904,11756,11756,9878,9878,9877,9877,9876,9876,9875,9875,9874,9874,9873,9873,9872,9872,9871,9871,9870,9870,12039,12039,11903,11903,9869,9869,9868,9868,9867,9867,9866,9866,9865,9865,9864,9864,9863,9863,9862,9862,9861,9861,9860,9860,11755,11755,9859,9859,9858,9858,9857,9857,9856,9856,9855,9855,12038,12038,11754,11754,9854,9854,9853,9853,9852,9852,11902,11902,12037,12037,11901,11901,9851,9851,9850,9850,9849,9849,9848,9848,9847,9847,12118,12118,12036,12036,11900,11900,9846,9846,9845,9845,9844,9844,9843,9843,9842,9842,9841,9841,9840,9840,9839,9839,9838,9838,9837,9837,9836,9836,9835,9835,9834,9834,11899,11899,11753,11753,9833,9833,9832,9832,9831,9831,9830,9830,9829,9829,9828,9828,9827,9827,9826,9826,9825,9825,9824,9824,11752,11752,11751,11751,9823,9823,9822,9822,9821,9821,9820,9820,9819,9819,9818,9818,9817,9817,9816,9816,9815,9815,9814,9814,9813,9813,9812,9812,11750,11750,9811,9811,9810,9810,9809,9809,9808,9808,9807,9807,12035,12035,9806,9806,9805,9805,9804,9804,9803,9803,9802,9802,9801,9801,9800,9800,9799,9799,9798,9798,9797,9797,9796,9796,9795,9795,9794,9794,9793,9793,9792,9792,9791,9791,9790,9790,9789,9789,9788,9788,9787,9787,9786,9786,9785,9785,11898,11898,11897,11897,9784,9784,9783,9783,9782,9782,9781,9781,9780,9780,12034,12034,11749,11749,9779,9779,9778,9778,9777,9777,9776,9776,9775,9775,9774,9774,9773,9773,9772,9772,9771,9771,9770,9770,9769,9769,9768,9768,9767,9767,9766,9766,9765,9765,9764,9764,9763,9763,9762,9762,9761,9761,9760,9760,9759,9759,9758,9758,9757,9757,9756,9756,9755,9755,9754,9754,9753,9753,9752,9752,11748,11748,9751,9751,9750,9750,9749,9749,9748,9748,9747,9747,9746,9746,9745,9745,9744,9744,9743,9743,9742,9742,9741,9741,9740,9740,9739,9739,9738,9738,9737,9737,9736,9736,9735,9735,9734,9734,9733,9733,9732,9732,9731,9731,9730,9730,11896,11896,11747,11747,9729,9729,9728,9728,9727,9727,11895,11895,9726,9726,9725,9725,9724,9724,9723,9723,9722,9722,9721,9721,9720,9720,9719,9719,9718,9718,9717,9717,9716,9716,9715,9715,9714,9714,9713,9713,9712,9712,9711,9711,9710,9710,9709,9709,9708,9708,9707,9707,9706,9706,9705,9705,9704,9704,9703,9703,9702,9702,9701,9701,9700,9700,9699,9699,9698,9698,9697,9697,9696,9696,9695,9695,9694,9694,9693,9693,9692,9692,9691,9691,9690,9690,9689,9689,9688,9688,9687,9687,9686,9686,9685,9685,9684,9684,9683,9683,9682,9682,11746,11746,9681,9681,9680,9680,9679,9679,11894,11894,9678,9678,9677,9677,9676,9676,11745,11745,5846,5846,5847,5847,5848,5848,5849,5849,5850,5850,5851,5851,5852,5852,5853,5853,5854,5854,5855,5855,5856,5856,5857,5857,5858,5858,5859,5859,5860,5860,5861,5861,7492,7492,7493,7493,5862,5862,5863,5863,5864,5864,5865,5865,5866,5866,5867,5867,5868,5868,5869,5869,5870,5870,5871,5871,5872,5872,5873,5873,5874,5874,5875,5875,5876,5876,5877,5877,7277,7277,7618,7618,7651,7651,7678,7678,7738,7738,7770,7770,5878,5878,5879,5879,5880,5880,7897,7897,7404,7404,5881,5881,5882,5882,5883,5883,5884,5884,5885,5885,5886,5886,5887,5887,5888,5888,8038,8038,7968,7968,7779,7779,7680,7680,7653,7653,7584,7584,7278,7278,5889,5889,5890,5890,5891,5891,5892,5892,5893,5893,5894,5894,5895,5895,5896,5896,5897,5897,5898,5898,5899,5899,5900,5900,7405,7405,7279,7279,5901,5901,5902,5902,5903,5903,5904,5904,5905,5905,5906,5906,5907,5907,5908,5908,5909,5909,7280,7280,7406,7406,5910,5910,5911,5911,5912,5912,5913,5913,5914,5914,5915,5915,5916,5916,7281,7281,7494,7494,7585,7585,7554,7554,5917,5917,5918,5918,5919,5919,5920,5920,5921,5921,5922,5922,5923,5923,5924,5924,5925,5925,5926,5926,5927,5927,7654,7654,7555,7555,7495,7495,7282,7282,5928,5928,5929,5929,5930,5930,5931,5931,5932,5932,5933,5933,5934,5934,5935,5935,5936,5936,5937,5937,5938,5938,7496,7496,5939,5939,5940,5940,5941,5941,5942,5942,5943,5943,5944,5944,5945,5945,5946,5946,5947,5947,5948,5948,5949,5949,7655,7655,7681,7681,7283,7283,5950,5950,5951,5951,5952,5952,5953,5953,5954,5954,5955,5955,5956,5956,5957,5957,5958,5958,5959,5959,5960,5960,5961,5961,5962,5962,5963,5963,7497,7497,7498,7498,7407,7407,5964,5964,5965,5965,5966,5966,5967,5967,5968,5968,5969,5969,5970,5970,5971,5971,5972,5972,5973,5973,5974,5974,5975,5975,5976,5976,5977,5977,5978,5978,5979,5979,5980,5980,7408,7408,7499,7499,5981,5981,5982,5982,5983,5983,7284,7284,7409,7409,7587,7587,5984,5984,5985,5985,5986,5986,7285,7285,7286,7286,5987,5987,5988,5988,5989,5989,5990,5990,5991,5991,7287,7287,5992,5992,5993,5993,5994,5994,7288,7288,7410,7410,7500,7500,7411,7411,7289,7289,5995,5995,5996,5996,5997,5997,7588,7588,7621,7621,7657,7657,7780,7780,7820,7820,7868,7868,7972,7972,7915,7915,7874,7874,7826,7826,7786,7786,7751,7751,7716,7716,7685,7685,7660,7660,7623,7623,7590,7590,7558,7558,7501,7501,7412,7412,7290,7290,5998,5998,5999,5999,6000,6000,8174,8174,8258,8258,8302,8302,8218,8218,8122,8122,8045,8045,7976,7976,7917,7917,7876,7876,7828,7828,7788,7788,7753,7753,7718,7718,7687,7687,7662,7662,7624,7624,7591,7591,7559,7559,7502,7502,7413,7413,7291,7291,6001,6001,6002,6002,6003,6003,7625,7625,7592,7592,7560,7560,7503,7503,7414,7414,7292,7292,6004,6004,6005,6005,9675,9675,11744,11744,12244,12244,12206,12206,11743,11743,9674,9674,9673,9673,9672,9672,9671,9671,9670,9670,9669,9669,9668,9668,9667,9667,9666,9666,9665,9665,9664,9664,9663,9663,9662,9662,9661,9661,9660,9660,9659,9659,12033,12033,11742,11742,9658,9658,9657,9657,9656,9656,9655,9655,9654,9654,9653,9653,9652,9652,9651,9651,9650,9650,9649,9649,11741,11741,12281,12281,11893,11893,9648,9648,9647,9647,9646,9646,9645,9645,9644,9644,9643,9643,9642,9642,9641,9641,9640,9640,9639,9639,9638,9638,9637,9637,9636,9636,9635,9635,9634,9634,9633,9633,9632,9632,9631,9631,12032,12032,12164,12164,9630,9630,9629,9629,9628,9628,9627,9627,9626,9626,9625,9625,9624,9624,9623,9623,9622,9622,11892,11892,12117,12117,12312,12312,12280,12280,12243,12243,11740,11740,9621,9621,9620,9620,9619,9619,11739,11739,9618,9618,9617,9617,9616,9616,9615,9615,9614,9614,9613,9613,9612,9612,9611,9611,9610,9610,9609,9609,9608,9608,9607,9607,11891,11891,9606,9606,9605,9605,9604,9604,11738,11738,11737,11737,9603,9603,9602,9602,9601,9601,12116,12116,12031,12031,9600,9600,9599,9599,9598,9598,9597,9597,9596,9596,9595,9595,9594,9594,9593,9593,9592,9592,12115,12115,11890,11890,9591,9591,9590,9590,9589,9589,9588,9588,9587,9587,9586,9586,9585,9585,9584,9584,9583,9583,9582,9582,9581,9581,9580,9580,9579,9579,9578,9578,9577,9577,9576,9576,9575,9575,12114,12114,9574,9574,9573,9573,9572,9572,9571,9571,9570,9570,9569,9569,9568,9568,11889,11889,11736,11736,9567,9567,9566,9566,9565,9565,11735,11735,9564,9564,9563,9563,9562,9562,9561,9561,9560,9560,9559,9559,9558,9558,9557,9557,9556,9556,9555,9555,9554,9554,9553,9553,9552,9552,9551,9551,9550,9550,9549,9549,9548,9548,11888,11888,12030,12030,12242,12242,12163,12163,12113,12113,9547,9547,9546,9546,9545,9545,9544,9544,9543,9543,9542,9542,9541,9541,9540,9540,9539,9539,9538,9538,9537,9537,9536,9536,9535,9535,9534,9534,9533,9533,9532,9532,9531,9531,9530,9530,9529,9529,9528,9528,9527,9527,9526,9526,9525,9525,9524,9524,11887,11887,12029,12029,12162,12162,9523,9523,9522,9522,9521,9521,9520,9520,9519,9519,9518,9518,9517,9517,9516,9516,9515,9515,9514,9514,11886,11886,12112,12112,12373,12373,12412,12412,11885,11885,9513,9513,9512,9512,9511,9511,9510,9510,9509,9509,9508,9508,9507,9507,9506,9506,11884,11884,12111,12111,11883,11883,9505,9505,9504,9504,9503,9503,9502,9502,9501,9501,9500,9500,9499,9499,9498,9498,9497,9497,9496,9496,12110,12110,12028,12028,9495,9495,9494,9494,9493,9493,9492,9492,9491,9491,9490,9490,9489,9489,9488,9488,11734,11734,9487,9487,9486,9486,9485,9485,11882,11882,12161,12161,9484,9484,9483,9483,9482,9482,9481,9481,9480,9480,9479,9479,9478,9478,9477,9477,9476,9476,9475,9475,9474,9474,9473,9473,9472,9472,9471,9471,9470,9470,9469,9469,11733,11733,12205,12205,12160,12160,12109,12109,11732,11732,9468,9468,9467,9467,9466,9466,9465,9465,9464,9464,9463,9463,9462,9462,9461,9461,9460,9460,9459,9459,9458,9458,11881,11881,12311,12311,11731,11731,9457,9457,9456,9456,9455,9455,9454,9454,9453,9453,9452,9452,12027,12027,9451,9451,9450,9450,9449,9449,9448,9448,9447,9447,9446,9446,9445,9445,9444,9444,9443,9443,9442,9442,9441,9441,9440,9440,9439,9439,9438,9438,9437,9437,9436,9436,9435,9435,11880,11880,11879,11879,11730,11730,9434,9434,9433,9433,9432,9432,9431,9431,9430,9430,9429,9429,9428,9428,9427,9427,9426,9426,9425,9425,9424,9424,9423,9423,9422,9422,9421,9421,9420,9420,9419,9419,11878,11878,9418,9418,9417,9417,9416,9416,9415,9415,9414,9414,9413,9413,9412,9412,9411,9411,9410,9410,9409,9409,9408,9408,9407,9407,9406,9406,9405,9405,11729,11729,9404,9404,9403,9403,9402,9402,9401,9401,9400,9400,9399,9399,9398,9398,2750,13569,13568,13568,13609,13609,13608,13608,13607,13607,13606,13606,13605,13605,13604,13604,13603,13603,13602,13602,13601,13601,13600,13600,13599,13599,13598,13598,13597,13597,13596,13596,13595,13595,13594,13594,13611,13611,13610,13610,13593,13593,13592,13592,13591,13591,13590,13590,13589,13589,13588,13588,13587,13587,13586,13586,13585,13585,13584,13584,13583,13583,13582,13582,13581,13581,13580,13580,13579,13579,13578,13578,13577,13577,13576,13576,13575,13575,13574,13574,13573,13573,13572,13572,13571,13571,13570,13570,13569,13613,13612,13612,13658,13658,13657,13657,13656,13656,13655,13655,13654,13654,13653,13653,13661,13661,13662,13662,13660,13660,13652,13652,13651,13651,13650,13650,13649,13649,13648,13648,13647,13647,13646,13646,13645,13645,13644,13644,13643,13643,13642,13642,13641,13641,13640,13640,13639,13639,13638,13638,13637,13637,13636,13636,13635,13635,13634,13634,13633,13633,13632,13632,13631,13631,13630,13630,13629,13629,13628,13628,13627,13627,13626,13626,13625,13625,13624,13624,13623,13623,13622,13622,13621,13621,13620,13620,13619,13619,13618,13618,13659,13659,13617,13617,13616,13616,13615,13615,13614,13614,13613,13664,13663,13663,13789,13789,13788,13788,13787,13787,13786,13786,13819,13819,13799,13799,13785,13785,13784,13784,13783,13783,13782,13782,13781,13781,13798,13798,13810,13810,13780,13780,13779,13779,13778,13778,13777,13777,13776,13776,13775,13775,13774,13774,13773,13773,13772,13772,13771,13771,13770,13770,13769,13769,13768,13768,13767,13767,13766,13766,13765,13765,13764,13764,13763,13763,13762,13762,13761,13761,13760,13760,13759,13759,13758,13758,13757,13757,13756,13756,13755,13755,13809,13809,13818,13818,13754,13754,13753,13753,13752,13752,13815,13815,13808,13808,13751,13751,13750,13750,13749,13749,13748,13748,13747,13747,13803,13803,13807,13807,13746,13746,13745,13745,13744,13744,13743,13743,13742,13742,13741,13741,13740,13740,13739,13739,13738,13738,13737,13737,13736,13736,13735,13735,13734,13734,13733,13733,13806,13806,13821,13821,13802,13802,13797,13797,13732,13732,13731,13731,13730,13730,13805,13805,13729,13729,13728,13728,13727,13727,13726,13726,13725,13725,13724,13724,13723,13723,13722,13722,13721,13721,13720,13720,13719,13719,13718,13718,13717,13717,13716,13716,13715,13715,13714,13714,13814,13814,13820,13820,13817,13817,13804,13804,13713,13713,13712,13712,13711,13711,13710,13710,13709,13709,13801,13801,13813,13813,13708,13708,13707,13707,13706,13706,13705,13705,13704,13704,13703,13703,13702,13702,13796,13796,13795,13795,13701,13701,13700,13700,13699,13699,13800,13800,13812,13812,13794,13794,13698,13698,13697,13697,13696,13696,13695,13695,13694,13694,13693,13693,13692,13692,13691,13691,13690,13690,13689,13689,13688,13688,13687,13687,13793,13793,13686,13686,13685,13685,13684,13684,13683,13683,13682,13682,13681,13681,13680,13680,13679,13679,13678,13678,13677,13677,13792,13792,13676,13676,13675,13675,13674,13674,13791,13791,13816,13816,13811,13811,13790,13790,13673,13673,13672,13672,13671,13671,13670,13670,13669,13669,13668,13668,13667,13667,13666,13666,13665,13665,13664,14097,14043,14043,14042,14042,14041,14041,14040,14040,14039,14039,14038,14038,14037,14037,14036,14036,14035,14035,14085,14085,14096,14096,14084,14084,14034,14034,14033,14033,14032,14032,14031,14031,14030,14030,14029,14029,14028,14028,14027,14027,14026,14026,14054,14054,14025,14025,14024,14024,14023,14023,14095,14095,14022,14022,14021,14021,14020,14020,14019,14019,14018,14018,14017,14017,14016,14016,14015,14015,14014,14014,14013,14013,14012,14012,14011,14011,14010,14010,14009,14009,14008,14008,14007,14007,14006,14006,14005,14005,14004,14004,14003,14003,14002,14002,14001,14001,14000,14000,13999,13999,13998,13998,13997,13997,13996,13996,13995,13995,13994,13994,13993,13993,13992,13992,13991,13991,13990,13990,13989,13989,14053,14053,14083,14083,14072,14072,13988,13988,13987,13987,13986,13986,14052,14052,14094,14094,14082,14082,13985,13985,13984,13984,13983,13983,13982,13982,13981,13981,13980,13980,13979,13979,13978,13978,13977,13977,13976,13976,13975,13975,13974,13974,13973,13973,13972,13972,13971,13971,13970,13970,13969,13969,13968,13968,13967,13967,13966,13966,14071,14071,14093,14093,14103,14103,14109,14109,14111,14111,14112,14112,14108,14108,14051,14051,13965,13965,13964,13964,13963,13963,13962,13962,13961,13961,13960,13960,13959,13959,14070,14070,14069,14069,13958,13958,13957,13957,13956,13956,13955,13955,13954,13954,13953,13953,13952,13952,13951,13951,13950,13950,13949,13949,13948,13948,13947,13947,13946,13946,13945,13945,13944,13944,14081,14081,14050,14050,13943,13943,13942,13942,13941,13941,14068,14068,14080,14080,13940,13940,13939,13939,13938,13938,13937,13937,13936,13936,14067,14067,14066,14066,13935,13935,13934,13934,13933,13933,13932,13932,13931,13931,13930,13930,13929,13929,13928,13928,13927,13927,14065,14065,14092,14092,14102,14102,14091,14091,14079,14079,14064,14064,13926,13926,13925,13925,13924,13924,13923,13923,13922,13922,13921,13921,13920,13920,13919,13919,13918,13918,13917,13917,13916,13916,13915,13915,13914,13914,13913,13913,13912,13912,13911,13911,13910,13910,13909,13909,13908,13908,14078,14078,14101,14101,14105,14105,14107,14107,14106,14106,14049,14049,13907,13907,13906,13906,13905,13905,13904,13904,13903,13903,13902,13902,13901,13901,13900,13900,13899,13899,13898,13898,13897,13897,14077,14077,14100,14100,14048,14048,13896,13896,13895,13895,13894,13894,13893,13893,13892,13892,13891,13891,13890,13890,13889,13889,13888,13888,13887,13887,13886,13886,13885,13885,14063,14063,14076,14076,14110,14110,14047,14047,13884,13884,13883,13883,13882,13882,13881,13881,13880,13880,13879,13879,13878,13878,13877,13877,13876,13876,13875,13875,13874,13874,13873,13873,13872,13872,13871,13871,13870,13870,14062,14062,14090,14090,14099,14099,14061,14061,13869,13869,13868,13868,13867,13867,13866,13866,13865,13865,13864,13864,13863,13863,13862,13862,14060,14060,14089,14089,14075,14075,13861,13861,13860,13860,13859,13859,13858,13858,13857,13857,14059,14059,14088,14088,14058,14058,14046,14046,13856,13856,13855,13855,13854,13854,14117,14117,14116,14116,14115,14115,14114,14114,14113,14113,14045,14045,13853,13853,13852,13852,13851,13851,14057,14057,14074,14074,14087,14087,14098,14098,13850,13850,13849,13849,13848,13848,13847,13847,13846,13846,13845,13845,13844,13844,13843,13843,13842,13842,13841,13841,13840,13840,13839,13839,13838,13838,13837,13837,13836,13836,13835,13835,13834,13834,13833,13833,13832,13832,13831,13831,13830,13830,14056,14056,14044,14044,13829,13829,13828,13828,13827,13827,14086,14086,13826,13826,13825,13825,13824,13824,13823,13823,13822,13822,14055,14055,14073,14073,14104,14104,14097,14507,14497,14497,14464,14464,14463,14463,14462,14462,14461,14461,14460,14460,14535,14535,14529,14529,14459,14459,14458,14458,14457,14457,14456,14456,14455,14455,14454,14454,14453,14453,14452,14452,14451,14451,14450,14450,14449,14449,14448,14448,14447,14447,14446,14446,14445,14445,14444,14444,14443,14443,14442,14442,14441,14441,14479,14479,14440,14440,14439,14439,14438,14438,14437,14437,14436,14436,14478,14478,14506,14506,14516,14516,14523,14523,14496,14496,14435,14435,14434,14434,14433,14433,14432,14432,14431,14431,14430,14430,14429,14429,14428,14428,14427,14427,14426,14426,14425,14425,14424,14424,14423,14423,14422,14422,14421,14421,14420,14420,14419,14419,14418,14418,14417,14417,14416,14416,14415,14415,14414,14414,14477,14477,14413,14413,14412,14412,14411,14411,14410,14410,14409,14409,14408,14408,14407,14407,14406,14406,14405,14405,14515,14515,14404,14404,14403,14403,14402,14402,14550,14550,14476,14476,14401,14401,14400,14400,14399,14399,14398,14398,14397,14397,14396,14396,14395,14395,14394,14394,14393,14393,14392,14392,14391,14391,14390,14390,14389,14389,14475,14475,14388,14388,14387,14387,14386,14386,14385,14385,14384,14384,14383,14383,14382,14382,14381,14381,14380,14380,14379,14379,14474,14474,14378,14378,14377,14377,14376,14376,14375,14375,14374,14374,14373,14373,14372,14372,14473,14473,14371,14371,14370,14370,14369,14369,14368,14368,14367,14367,14366,14366,14365,14365,14364,14364,14363,14363,14362,14362,14361,14361,14495,14495,14360,14360,14359,14359,14358,14358,14357,14357,14356,14356,14522,14522,14505,14505,14472,14472,14355,14355,14354,14354,14353,14353,14352,14352,14351,14351,14350,14350,14349,14349,14348,14348,14494,14494,14504,14504,14521,14521,14347,14347,14346,14346,14345,14345,14344,14344,14343,14343,14342,14342,14341,14341,14340,14340,14534,14534,14528,14528,14514,14514,14339,14339,14338,14338,14337,14337,14336,14336,14335,14335,14334,14334,14333,14333,14332,14332,14493,14493,14331,14331,14330,14330,14329,14329,14328,14328,14327,14327,14326,14326,14325,14325,14324,14324,14323,14323,14322,14322,14321,14321,14320,14320,14319,14319,14318,14318,14317,14317,14316,14316,14315,14315,14314,14314,14313,14313,14312,14312,14492,14492,14311,14311,14310,14310,14309,14309,14308,14308,14307,14307,14306,14306,14305,14305,14491,14491,14527,14527,14520,14520,14513,14513,14304,14304,14303,14303,14302,14302,14301,14301,14300,14300,14299,14299,14298,14298,14297,14297,14296,14296,14295,14295,14294,14294,14490,14490,14539,14539,14526,14526,14293,14293,14292,14292,14291,14291,14503,14503,14290,14290,14289,14289,14288,14288,14287,14287,14286,14286,14489,14489,14488,14488,14285,14285,14284,14284,14283,14283,14282,14282,14281,14281,14280,14280,14279,14279,14278,14278,14277,14277,14487,14487,14502,14502,14512,14512,14519,14519,14276,14276,14275,14275,14274,14274,14273,14273,14272,14272,14271,14271,14270,14270,14269,14269,14268,14268,14267,14267,14266,14266,14265,14265,14264,14264,14263,14263,14262,14262,14261,14261,14260,14260,14259,14259,14511,14511,14258,14258,14257,14257,14256,14256,14255,14255,14254,14254,14486,14486,14253,14253,14252,14252,14251,14251,14471,14471,14250,14250,14249,14249,14248,14248,14247,14247,14246,14246,14245,14245,14244,14244,14485,14485,14510,14510,14525,14525,14545,14545,14518,14518,14243,14243,14242,14242,14241,14241,14240,14240,14239,14239,14238,14238,14237,14237,14470,14470,14236,14236,14235,14235,14234,14234,14233,14233,14232,14232,14231,14231,14230,14230,14469,14469,14229,14229,14228,14228,14227,14227,14226,14226,14225,14225,14224,14224,14223,14223,14222,14222,14221,14221,14220,14220,14219,14219,14218,14218,14484,14484,14501,14501,14517,14517,14533,14533,14483,14483,14217,14217,14216,14216,14215,14215,14214,14214,14213,14213,14212,14212,14211,14211,14210,14210,14209,14209,14468,14468,14208,14208,14207,14207,14206,14206,14205,14205,14204,14204,14203,14203,14202,14202,14201,14201,14200,14200,14199,14199,14198,14198,14197,14197,14196,14196,14195,14195,14194,14194,14193,14193,14467,14467,14192,14192,14191,14191,14190,14190,14531,14531,14537,14537,14542,14542,14544,14544,14543,14543,14540,14540,14536,14536,14189,14189,14188,14188,14187,14187,14186,14186,14185,14185,14184,14184,14183,14183,14182,14182,14181,14181,14482,14482,14180,14180,14179,14179,14178,14178,14177,14177,14176,14176,14175,14175,14174,14174,14173,14173,14172,14172,14466,14466,14171,14171,14170,14170,14169,14169,14509,14509,14500,14500,14168,14168,14167,14167,14166,14166,14165,14165,14164,14164,14481,14481,14530,14530,14541,14541,14163,14163,14162,14162,14161,14161,14160,14160,14159,14159,14158,14158,14157,14157,14156,14156,14155,14155,14154,14154,14499,14499,14480,14480,14153,14153,14152,14152,14151,14151,14150,14150,14149,14149,14148,14148,14147,14147,14146,14146,14145,14145,14144,14144,14143,14143,14465,14465,14508,14508,14498,14498,14142,14142,14141,14141,14140,14140,14139,14139,14138,14138,14137,14137,14136,14136,14135,14135,14134,14134,14133,14133,14132,14132,14131,14131,14130,14130,14129,14129,14128,14128,14127,14127,14126,14126,14125,14125,14124,14124,14123,14123,14122,14122,14121,14121,14120,14120,14119,14119,14118,14118,14507,14683,14682,14682,14674,14674,14673,14673,14672,14672,14671,14671,14670,14670,14669,14669,14668,14668,14690,14690,14692,14692,14681,14681,14667,14667,14666,14666,14665,14665,14664,14664,14663,14663,14662,14662,14661,14661,14660,14660,14659,14659,14658,14658,14657,14657,14656,14656,14655,14655,14654,14654,14653,14653,14652,14652,14651,14651,14650,14650,14649,14649,14648,14648,14647,14647,14646,14646,14645,14645,14644,14644,14643,14643,14642,14642,14689,14689,14641,14641,14640,14640,14639,14639,14638,14638,14637,14637,14636,14636,14635,14635,14634,14634,14680,14680,14633,14633,14632,14632,14631,14631,14630,14630,14629,14629,14628,14628,14627,14627,14626,14626,14625,14625,14688,14688,14624,14624,14623,14623,14622,14622,14621,14621,14620,14620,14619,14619,14618,14618,14617,14617,14616,14616,14615,14615,14614,14614,14613,14613,14612,14612,14611,14611,14679,14679,14610,14610,14609,14609,14608,14608,14607,14607,14606,14606,14605,14605,14604,14604,14603,14603,14678,14678,14677,14677,14602,14602,14601,14601,14600,14600,14599,14599,14598,14598,14597,14597,14596,14596,14595,14595,14687,14687,14594,14594,14593,14593,14592,14592,14591,14591,14590,14590,14686,14686,14676,14676,14589,14589,14588,14588,14587,14587,14586,14586,14585,14585,14584,14584,14583,14583,14582,14582,14696,14696,14695,14695,14694,14694,14693,14693,14691,14691,14581,14581,14580,14580,14579,14579,14578,14578,14577,14577,14576,14576,14575,14575,14574,14574,14573,14573,14572,14572,14685,14685,14571,14571,14570,14570,14569,14569,14568,14568,14567,14567,14566,14566,14565,14565,14564,14564,14563,14563,14562,14562,14561,14561,14560,14560,14559,14559,14558,14558,14557,14557,14556,14556,14684,14684,14555,14555,14554,14554,14553,14553,14675,14675,14683,15340,15313,15313,15312,15312,15311,15311,15310,15310,15309,15309,15308,15308,15307,15307,15306,15306,15305,15305,15304,15304,15303,15303,15302,15302,15401,15401,15448,15448,15428,15428,15301,15301,15300,15300,15299,15299,15298,15298,15297,15297,15296,15296,15295,15295,15294,15294,15371,15371,15293,15293,15292,15292,15291,15291,15290,15290,15289,15289,15288,15288,15287,15287,15339,15339,15286,15286,15285,15285,15284,15284,15283,15283,15282,15282,15281,15281,15280,15280,15338,15338,15400,15400,15279,15279,15278,15278,15277,15277,15276,15276,15275,15275,15370,15370,15274,15274,15273,15273,15272,15272,15271,15271,15270,15270,15269,15269,15268,15268,15267,15267,15266,15266,15265,15265,15264,15264,15263,15263,15262,15262,15261,15261,15260,15260,15259,15259,15258,15258,15257,15257,15256,15256,15255,15255,15254,15254,15253,15253,15252,15252,15251,15251,15250,15250,15249,15249,15447,15447,15415,15415,15248,15248,15247,15247,15246,15246,15245,15245,15244,15244,15243,15243,15242,15242,15241,15241,15240,15240,15399,15399,15337,15337,15239,15239,15238,15238,15237,15237,15236,15236,15235,15235,15234,15234,15233,15233,15369,15369,15336,15336,15232,15232,15231,15231,15230,15230,15229,15229,15228,15228,15227,15227,15368,15368,15414,15414,15440,15440,15398,15398,15226,15226,15225,15225,15224,15224,15223,15223,15222,15222,15221,15221,15220,15220,15219,15219,15218,15218,15217,15217,15216,15216,15215,15215,15214,15214,15213,15213,15212,15212,15211,15211,15210,15210,15209,15209,15427,15427,15446,15446,15439,15439,15208,15208,15207,15207,15206,15206,15205,15205,15204,15204,15203,15203,15202,15202,15201,15201,15200,15200,15199,15199,15198,15198,15335,15335,15197,15197,15196,15196,15195,15195,15194,15194,15193,15193,15192,15192,15191,15191,15367,15367,15397,15397,15334,15334,15190,15190,15189,15189,15188,15188,15187,15187,15186,15186,15185,15185,15184,15184,15183,15183,15182,15182,15181,15181,15180,15180,15179,15179,15178,15178,15177,15177,15176,15176,15175,15175,15174,15174,15173,15173,15172,15172,15171,15171,15170,15170,15169,15169,15366,15366,15438,15438,15333,15333,15168,15168,15167,15167,15166,15166,15396,15396,15332,15332,15165,15165,15164,15164,15163,15163,15162,15162,15161,15161,15160,15160,15159,15159,15158,15158,15157,15157,15156,15156,15155,15155,15154,15154,15153,15153,15152,15152,15151,15151,15150,15150,15149,15149,15365,15365,15413,15413,15148,15148,15147,15147,15146,15146,15145,15145,15144,15144,15143,15143,15142,15142,15141,15141,15140,15140,15139,15139,15138,15138,15137,15137,15364,15364,15395,15395,15363,15363,15136,15136,15135,15135,15134,15134,15133,15133,15132,15132,15131,15131,15130,15130,15129,15129,15128,15128,15127,15127,15126,15126,15125,15125,15124,15124,15123,15123,15362,15362,15412,15412,15411,15411,15394,15394,15361,15361,15122,15122,15121,15121,15120,15120,15119,15119,15118,15118,15472,15472,15471,15471,15466,15466,15437,15437,15360,15360,15117,15117,15116,15116,15115,15115,15114,15114,15113,15113,15112,15112,15111,15111,15110,15110,15109,15109,15108,15108,15107,15107,15106,15106,15393,15393,15426,15426,15436,15436,15410,15410,15105,15105,15104,15104,15103,15103,15102,15102,15101,15101,15100,15100,15099,15099,15098,15098,15097,15097,15096,15096,15095,15095,15094,15094,15093,15093,15092,15092,15091,15091,15090,15090,15089,15089,15088,15088,15087,15087,15086,15086,15085,15085,15392,15392,15409,15409,15425,15425,15391,15391,15359,15359,15084,15084,15083,15083,15082,15082,15081,15081,15080,15080,15331,15331,15079,15079,15078,15078,15077,15077,15358,15358,15076,15076,15075,15075,15074,15074,15073,15073,15072,15072,15071,15071,15070,15070,15069,15069,15068,15068,15067,15067,15066,15066,15065,15065,15064,15064,15063,15063,15062,15062,15061,15061,15330,15330,15357,15357,15060,15060,15059,15059,15058,15058,15057,15057,15056,15056,15055,15055,15054,15054,15053,15053,15052,15052,15051,15051,15329,15329,15050,15050,15049,15049,15048,15048,15047,15047,15046,15046,15045,15045,15044,15044,15043,15043,15042,15042,15041,15041,15040,15040,15039,15039,15038,15038,15037,15037,15036,15036,15035,15035,15034,15034,15033,15033,15032,15032,15390,15390,15031,15031,15030,15030,15029,15029,15028,15028,15027,15027,15026,15026,15025,15025,15024,15024,15023,15023,15022,15022,15021,15021,15020,15020,15019,15019,15018,15018,15017,15017,15016,15016,15015,15015,15389,15389,15424,15424,15435,15435,15452,15452,15457,15457,15462,15462,15328,15328,15014,15014,15013,15013,15012,15012,15469,15469,15467,15467,15463,15463,15461,15461,15434,15434,15011,15011,15010,15010,15009,15009,15008,15008,15007,15007,15006,15006,15005,15005,15004,15004,15003,15003,15002,15002,15001,15001,15000,15000,14999,14999,14998,14998,14997,14997,14996,14996,14995,14995,14994,14994,14993,14993,14992,14992,14991,14991,14990,14990,14989,14989,14988,14988,14987,14987,14986,14986,14985,14985,15327,15327,14984,14984,14983,14983,14982,14982,14981,14981,14980,14980,14979,14979,14978,14978,14977,14977,14976,14976,14975,14975,15326,15326,14974,14974,14973,14973,14972,14972,14971,14971,14970,14970,14969,14969,14968,14968,14967,14967,14966,14966,15356,15356,14965,14965,14964,14964,14963,14963,15325,15325,15445,15445,15451,15451,15456,15456,15444,15444,15388,15388,14962,14962,14961,14961,14960,14960,14959,14959,14958,14958,14957,14957,14956,14956,14955,14955,14954,14954,14953,14953,14952,14952,14951,14951,14950,14950,14949,14949,14948,14948,14947,14947,15387,15387,14946,14946,14945,14945,14944,14944,14943,14943,14942,14942,14941,14941,14940,14940,15386,15386,14939,14939,14938,14938,14937,14937,14936,14936,14935,14935,14934,14934,14933,14933,14932,14932,14931,14931,14930,14930,14929,14929,14928,14928,14927,14927,14926,14926,14925,14925,14924,14924,14923,14923,15355,15355,15408,15408,15433,15433,15443,15443,15450,15450,15455,15455,15459,15459,15407,15407,15385,15385,14922,14922,14921,14921,14920,14920,14919,14919,14918,14918,15324,15324,14917,14917,14916,14916,14915,14915,14914,14914,14913,14913,14912,14912,14911,14911,15384,15384,14910,14910,14909,14909,14908,14908,14907,14907,14906,14906,15354,15354,15432,15432,15423,15423,15406,15406,14905,14905,14904,14904,14903,14903,14902,14902,14901,14901,14900,14900,14899,14899,14898,14898,14897,14897,15383,15383,15382,15382,15323,15323,14896,14896,14895,14895,14894,14894,15353,15353,15352,15352,14893,14893,14892,14892,14891,14891,14890,14890,14889,14889,14888,14888,14887,14887,14886,14886,14885,14885,14884,14884,14883,14883,14882,14882,14881,14881,14880,14880,15351,15351,14879,14879,14878,14878,14877,14877,15322,15322,14876,14876,14875,14875,14874,14874,14873,14873,14872,14872,14871,14871,14870,14870,14869,14869,14868,14868,14867,14867,14866,14866,14865,14865,14864,14864,14863,14863,14862,14862,14861,14861,14860,14860,14859,14859,15422,15422,15454,15454,15449,15449,15442,15442,14858,14858,14857,14857,14856,14856,14855,14855,14854,14854,14853,14853,14852,14852,14851,14851,14850,14850,14849,14849,14848,14848,14847,14847,14846,14846,14845,14845,14844,14844,15321,15321,15381,15381,15421,15421,15431,15431,15441,15441,15430,15430,15380,15380,15320,15320,14843,14843,14842,14842,14841,14841,14840,14840,14839,14839,14838,14838,14837,14837,14836,14836,14835,14835,14834,14834,15319,15319,14833,14833,14832,14832,14831,14831,14830,14830,14829,14829,14828,14828,14827,14827,15420,15420,15419,15419,15405,15405,15350,15350,14826,14826,14825,14825,14824,14824,14823,14823,14822,14822,15318,15318,14821,14821,14820,14820,14819,14819,15317,15317,14818,14818,14817,14817,14816,14816,14815,14815,14814,14814,14813,14813,14812,14812,14811,14811,14810,14810,14809,14809,14808,14808,15379,15379,14807,14807,14806,14806,14805,14805,14804,14804,14803,14803,14802,14802,14801,14801,14800,14800,14799,14799,14798,14798,14797,14797,14796,14796,14795,14795,14794,14794,15349,15349,14793,14793,14792,14792,14791,14791,15404,15404,15378,15378,15348,15348,14790,14790,14789,14789,14788,14788,14787,14787,14786,14786,14785,14785,14784,14784,14783,14783,14782,14782,14781,14781,15347,15347,14780,14780,14779,14779,14778,14778,15316,15316,15377,15377,15418,15418,15417,15417,15315,15315,14777,14777,14776,14776,14775,14775,14774,14774,14773,14773,14772,14772,14771,14771,15314,15314,14770,14770,14769,14769,14768,14768,15346,15346,15453,15453,15416,15416,14767,14767,14766,14766,14765,14765,14764,14764,14763,14763,14762,14762,14761,14761,14760,14760,14759,14759,14758,14758,14757,14757,14756,14756,14755,14755,14754,14754,14753,14753,14752,14752,15345,15345,14751,14751,14750,14750,14749,14749,14748,14748,14747,14747,14746,14746,14745,14745,15376,15376,15403,15403,14744,14744,14743,14743,14742,14742,14741,14741,14740,14740,14739,14739,14738,14738,14737,14737,14736,14736,14735,14735,14734,14734,14733,14733,14732,14732,14731,14731,14730,14730,14729,14729,14728,14728,14727,14727,15402,15402,15429,15429,15375,15375,14726,14726,14725,14725,14724,14724,14723,14723,14722,14722,14721,14721,14720,14720,14719,14719,14718,14718,14717,14717,14716,14716,14715,14715,15344,15344,15374,15374,15373,15373,15343,15343,14714,14714,14713,14713,14712,14712,14711,14711,14710,14710,14709,14709,14708,14708,14707,14707,14706,14706,15342,15342,15372,15372,15341,15341,14705,14705,14704,14704,14703,14703,14702,14702,14701,14701,14700,14700,14699,14699,14698,14698,14697,14697,15340,15476,15475,15475,15498,15498,15497,15497,15496,15496,15495,15495,15494,15494,15493,15493,15492,15492,15491,15491,15490,15490,15489,15489,15488,15488,15487,15487,15486,15486,15485,15485,15484,15484,15483,15483,15482,15482,15481,15481,15480,15480,15479,15479,15478,15478,15477,15477,15476,15545,15544,15544,15543,15543,15542,15542,15541,15541,15540,15540,15539,15539,15550,15550,15538,15538,15537,15537,15536,15536,15535,15535,15534,15534,15533,15533,15532,15532,15531,15531,15530,15530,15529,15529,15528,15528,15527,15527,15526,15526,15525,15525,15524,15524,15523,15523,15522,15522,15521,15521,15549,15549,15520,15520,15519,15519,15518,15518,15517,15517,15516,15516,15515,15515,15514,15514,15547,15547,15548,15548,15513,15513,15512,15512,15511,15511,15510,15510,15509,15509,15508,15508,15507,15507,15506,15506,15505,15505,15504,15504,15503,15503,15502,15502,15501,15501,15500,15500,15499,15499,15546,15546,15545,15552,15551,15551,15727,15727,15726,15726,15725,15725,15724,15724,15723,15723,15722,15722,15721,15721,15720,15720,15719,15719,15718,15718,15717,15717,15716,15716,15715,15715,15714,15714,15713,15713,15712,15712,15711,15711,15710,15710,15709,15709,15708,15708,15707,15707,15754,15754,15761,15761,15753,15753,15732,15732,15706,15706,15705,15705,15704,15704,15703,15703,15702,15702,15701,15701,15700,15700,15699,15699,15698,15698,15758,15758,15767,15767,15769,15769,15757,15757,15697,15697,15696,15696,15695,15695,15694,15694,15693,15693,15692,15692,15691,15691,15690,15690,15689,15689,15688,15688,15687,15687,15686,15686,15685,15685,15684,15684,15683,15683,15682,15682,15741,15741,15752,15752,15681,15681,15680,15680,15679,15679,15678,15678,15677,15677,15676,15676,15675,15675,15674,15674,15673,15673,15672,15672,15671,15671,15670,15670,15669,15669,15668,15668,15667,15667,15666,15666,15665,15665,15664,15664,15663,15663,15662,15662,15661,15661,15660,15660,15659,15659,15658,15658,15657,15657,15656,15656,15655,15655,15654,15654,15653,15653,15652,15652,15651,15651,15650,15650,15649,15649,15648,15648,15647,15647,15646,15646,15740,15740,15751,15751,15764,15764,15745,15745,15739,15739,15645,15645,15644,15644,15643,15643,15642,15642,15641,15641,15640,15640,15639,15639,15638,15638,15637,15637,15636,15636,15635,15635,15634,15634,15633,15633,15632,15632,15631,15631,15630,15630,15629,15629,15628,15628,15627,15627,15744,15744,15731,15731,15626,15626,15625,15625,15624,15624,15738,15738,15743,15743,15623,15623,15622,15622,15621,15621,15620,15620,15619,15619,15618,15618,15617,15617,15616,15616,15615,15615,15614,15614,15613,15613,15612,15612,15611,15611,15610,15610,15609,15609,15608,15608,15607,15607,15606,15606,15605,15605,15604,15604,15603,15603,15602,15602,15601,15601,15600,15600,15599,15599,15598,15598,15597,15597,15750,15750,15760,15760,15763,15763,15766,15766,15749,15749,15730,15730,15596,15596,15595,15595,15594,15594,15737,15737,15742,15742,15768,15768,15765,15765,15762,15762,15759,15759,15756,15756,15736,15736,15593,15593,15592,15592,15591,15591,15590,15590,15589,15589,15588,15588,15587,15587,15586,15586,15585,15585,15735,15735,15584,15584,15583,15583,15582,15582,15581,15581,15580,15580,15579,15579,15578,15578,15577,15577,15576,15576,15575,15575,15574,15574,15573,15573,15572,15572,15571,15571,15570,15570,15569,15569,15568,15568,15567,15567,15734,15734,15748,15748,15755,15755,15747,15747,15729,15729,15566,15566,15565,15565,15564,15564,15563,15563,15562,15562,15561,15561,15560,15560,15559,15559,15558,15558,15728,15728,15746,15746,15733,15733,15557,15557,15556,15556,15555,15555,15554,15554,15553,15553,15552,15770,15898,15898,15897,15897,15881,15881,15880,15880,15879,15879,15878,15878,15877,15877,15876,15876,15875,15875,15891,15891,15874,15874,15873,15873,15872,15872,15871,15871,15870,15870,15869,15869,15868,15868,15867,15867,15866,15866,15865,15865,15864,15864,15863,15863,15862,15862,15861,15861,15860,15860,15859,15859,15858,15858,15857,15857,15856,15856,15890,15890,15855,15855,15854,15854,15853,15853,15884,15884,15883,15883,15852,15852,15851,15851,15850,15850,15849,15849,15848,15848,15847,15847,15846,15846,15845,15845,15844,15844,15843,15843,15842,15842,15841,15841,15840,15840,15839,15839,15838,15838,15837,15837,15836,15836,15889,15889,15882,15882,15835,15835,15834,15834,15833,15833,15832,15832,15831,15831,15830,15830,15829,15829,15828,15828,15888,15888,15900,15900,15901,15901,15902,15902,15896,15896,15827,15827,15826,15826,15825,15825,15824,15824,15823,15823,15822,15822,15821,15821,15887,15887,15820,15820,15819,15819,15818,15818,15817,15817,15816,15816,15815,15815,15814,15814,15813,15813,15812,15812,15811,15811,15810,15810,15892,15892,15895,15895,15809,15809,15808,15808,15807,15807,15806,15806,15805,15805,15804,15804,15803,15803,15802,15802,15801,15801,15800,15800,15799,15799,15798,15798,15797,15797,15796,15796,15795,15795,15886,15886,15894,15894,15899,15899,15893,15893,15794,15794,15793,15793,15792,15792,15791,15791,15790,15790,15789,15789,15788,15788,15787,15787,15786,15786,15785,15785,15784,15784,15783,15783,15782,15782,15781,15781,15780,15780,15779,15779,15778,15778,15777,15777,15776,15776,15775,15775,15774,15774,15773,15773,15885,15885,15772,15772,15771,15771,15770,15904,15903,15903,16040,16040,16039,16039,16054,16054,16057,16057,16038,16038,16037,16037,16036,16036,16035,16035,16034,16034,16053,16053,16033,16033,16032,16032,16031,16031,16030,16030,16029,16029,16047,16047,16028,16028,16027,16027,16026,16026,16025,16025,16024,16024,16023,16023,16052,16052,16063,16063,16046,16046,16022,16022,16021,16021,16020,16020,16019,16019,16018,16018,16017,16017,16016,16016,16056,16056,16066,16066,16062,16062,16015,16015,16014,16014,16013,16013,16012,16012,16011,16011,16010,16010,16009,16009,16008,16008,16045,16045,16007,16007,16006,16006,16005,16005,16004,16004,16003,16003,16002,16002,16001,16001,16000,16000,15999,15999,15998,15998,15997,15997,15996,15996,16055,16055,16051,16051,15995,15995,15994,15994,15993,15993,15992,15992,15991,15991,15990,15990,15989,15989,15988,15988,15987,15987,15986,15986,16068,16068,16044,16044,15985,15985,15984,15984,15983,15983,15982,15982,15981,15981,15980,15980,15979,15979,15978,15978,15977,15977,16050,16050,15976,15976,15975,15975,15974,15974,15973,15973,15972,15972,16049,16049,16065,16065,16061,16061,16043,16043,15971,15971,15970,15970,15969,15969,15968,15968,15967,15967,15966,15966,15965,15965,15964,15964,15963,15963,15962,15962,15961,15961,15960,15960,15959,15959,16060,16060,15958,15958,15957,15957,15956,15956,15955,15955,15954,15954,15953,15953,15952,15952,15951,15951,15950,15950,15949,15949,15948,15948,15947,15947,15946,15946,16042,16042,15945,15945,15944,15944,15943,15943,16067,16067,16069,16069,16070,16070,16059,16059,15942,15942,15941,15941,15940,15940,15939,15939,15938,15938,15937,15937,15936,15936,15935,15935,15934,15934,15933,15933,15932,15932,15931,15931,15930,15930,15929,15929,15928,15928,16048,16048,16058,16058,16064,16064,15927,15927,15926,15926,15925,15925,15924,15924,15923,15923,15922,15922,15921,15921,15920,15920,15919,15919,15918,15918,15917,15917,15916,15916,15915,15915,16041,16041,15914,15914,15913,15913,15912,15912,15911,15911,15910,15910,15909,15909,15908,15908,15907,15907,15906,15906,15905,15905,15904,16071,16175,16175,16174,16174,16173,16173,16172,16172,16171,16171,16170,16170,16169,16169,16168,16168,16167,16167,16166,16166,16165,16165,16187,16187,16191,16191,16181,16181,16164,16164,16163,16163,16162,16162,16161,16161,16160,16160,16159,16159,16158,16158,16157,16157,16156,16156,16155,16155,16154,16154,16153,16153,16186,16186,16195,16195,16180,16180,16152,16152,16151,16151,16150,16150,16149,16149,16148,16148,16147,16147,16146,16146,16145,16145,16179,16179,16144,16144,16143,16143,16142,16142,16141,16141,16140,16140,16139,16139,16138,16138,16137,16137,16136,16136,16135,16135,16134,16134,16133,16133,16132,16132,16131,16131,16130,16130,16129,16129,16128,16128,16127,16127,16126,16126,16125,16125,16124,16124,16123,16123,16122,16122,16121,16121,16120,16120,16119,16119,16190,16190,16118,16118,16117,16117,16116,16116,16115,16115,16114,16114,16113,16113,16112,16112,16178,16178,16111,16111,16110,16110,16109,16109,16108,16108,16107,16107,16106,16106,16105,16105,16104,16104,16103,16103,16102,16102,16101,16101,16185,16185,16194,16194,16189,16189,16177,16177,16100,16100,16099,16099,16098,16098,16184,16184,16193,16193,16183,16183,16097,16097,16096,16096,16095,16095,16094,16094,16093,16093,16092,16092,16091,16091,16090,16090,16192,16192,16089,16089,16088,16088,16087,16087,16086,16086,16085,16085,16084,16084,16083,16083,16176,16176,16188,16188,16182,16182,16082,16082,16081,16081,16080,16080,16079,16079,16078,16078,16077,16077,16076,16076,16075,16075,16074,16074,16073,16073,16072,16072,16071,16197,16196,16196,16455,16455,16438,16438,16437,16437,16436,16436,16435,16435,16434,16434,16433,16433,16432,16432,16431,16431,16430,16430,16429,16429,16428,16428,16427,16427,16426,16426,16425,16425,16424,16424,16423,16423,16422,16422,16454,16454,16421,16421,16420,16420,16419,16419,16481,16481,16494,16494,16501,16501,16418,16418,16417,16417,16416,16416,16497,16497,16487,16487,16415,16415,16414,16414,16413,16413,16412,16412,16411,16411,16410,16410,16409,16409,16408,16408,16407,16407,16406,16406,16405,16405,16404,16404,16403,16403,16402,16402,16401,16401,16466,16466,16400,16400,16399,16399,16398,16398,16397,16397,16396,16396,16395,16395,16394,16394,16393,16393,16392,16392,16453,16453,16472,16472,16452,16452,16391,16391,16390,16390,16389,16389,16388,16388,16387,16387,16386,16386,16385,16385,16465,16465,16384,16384,16383,16383,16382,16382,16381,16381,16380,16380,16379,16379,16378,16378,16377,16377,16376,16376,16375,16375,16374,16374,16451,16451,16373,16373,16372,16372,16371,16371,16450,16450,16370,16370,16369,16369,16368,16368,16367,16367,16366,16366,16365,16365,16364,16364,16363,16363,16362,16362,16361,16361,16360,16360,16359,16359,16480,16480,16493,16493,16500,16500,16499,16499,16498,16498,16449,16449,16358,16358,16357,16357,16356,16356,16479,16479,16355,16355,16354,16354,16353,16353,16352,16352,16351,16351,16350,16350,16349,16349,16348,16348,16347,16347,16471,16471,16464,16464,16448,16448,16346,16346,16345,16345,16344,16344,16343,16343,16342,16342,16341,16341,16340,16340,16339,16339,16338,16338,16337,16337,16336,16336,16470,16470,16486,16486,16496,16496,16447,16447,16335,16335,16334,16334,16333,16333,16332,16332,16331,16331,16330,16330,16329,16329,16328,16328,16327,16327,16326,16326,16469,16469,16485,16485,16492,16492,16484,16484,16325,16325,16324,16324,16323,16323,16322,16322,16321,16321,16320,16320,16319,16319,16318,16318,16317,16317,16316,16316,16315,16315,16314,16314,16313,16313,16312,16312,16311,16311,16310,16310,16309,16309,16478,16478,16463,16463,16308,16308,16307,16307,16306,16306,16305,16305,16304,16304,16303,16303,16302,16302,16301,16301,16300,16300,16462,16462,16477,16477,16299,16299,16298,16298,16297,16297,16296,16296,16295,16295,16294,16294,16293,16293,16292,16292,16291,16291,16290,16290,16289,16289,16288,16288,16446,16446,16445,16445,16287,16287,16286,16286,16285,16285,16461,16461,16491,16491,16284,16284,16283,16283,16282,16282,16281,16281,16280,16280,16279,16279,16278,16278,16277,16277,16276,16276,16468,16468,16476,16476,16483,16483,16490,16490,16444,16444,16275,16275,16274,16274,16273,16273,16272,16272,16271,16271,16270,16270,16269,16269,16268,16268,16460,16460,16475,16475,16482,16482,16443,16443,16267,16267,16266,16266,16265,16265,16264,16264,16263,16263,16262,16262,16261,16261,16260,16260,16259,16259,16258,16258,16257,16257,16256,16256,16442,16442,16459,16459,16467,16467,16255,16255,16254,16254,16253,16253,16252,16252,16251,16251,16458,16458,16441,16441,16250,16250,16249,16249,16248,16248,16247,16247,16246,16246,16245,16245,16244,16244,16243,16243,16242,16242,16241,16241,16240,16240,16239,16239,16238,16238,16237,16237,16457,16457,16236,16236,16235,16235,16234,16234,16233,16233,16232,16232,16231,16231,16230,16230,16229,16229,16228,16228,16227,16227,16226,16226,16225,16225,16474,16474,16440,16440,16224,16224,16223,16223,16222,16222,16456,16456,16221,16221,16220,16220,16219,16219,16218,16218,16217,16217,16216,16216,16215,16215,16214,16214,16439,16439,16489,16489,16495,16495,16488,16488,16473,16473,16213,16213,16212,16212,16211,16211,16210,16210,16209,16209,16208,16208,16207,16207,16206,16206,16205,16205,16204,16204,16203,16203,16202,16202,16201,16201,16200,16200,16199,16199,16198,16198,16197,16502,16773,16773,16772,16772,16771,16771,16770,16770,16769,16769,16768,16768,16767,16767,16766,16766,16765,16765,16764,16764,16763,16763,16762,16762,16761,16761,16760,16760,16790,16790,16815,16815,16759,16759,16758,16758,16757,16757,16756,16756,16755,16755,16754,16754,16753,16753,16752,16752,16751,16751,16750,16750,16749,16749,16748,16748,16747,16747,16746,16746,16745,16745,16744,16744,16814,16814,16821,16821,16823,16823,16820,16820,16743,16743,16742,16742,16741,16741,16740,16740,16739,16739,16738,16738,16737,16737,16736,16736,16735,16735,16813,16813,16789,16789,16734,16734,16733,16733,16732,16732,16731,16731,16730,16730,16729,16729,16728,16728,16727,16727,16726,16726,16788,16788,16725,16725,16724,16724,16723,16723,16722,16722,16721,16721,16720,16720,16719,16719,16787,16787,16718,16718,16717,16717,16716,16716,16831,16831,16828,16828,16812,16812,16786,16786,16715,16715,16714,16714,16713,16713,16712,16712,16711,16711,16710,16710,16709,16709,16708,16708,16707,16707,16706,16706,16785,16785,16705,16705,16704,16704,16703,16703,16702,16702,16701,16701,16784,16784,16811,16811,16700,16700,16699,16699,16698,16698,16697,16697,16696,16696,16695,16695,16694,16694,16693,16693,16692,16692,16691,16691,16690,16690,16689,16689,16688,16688,16783,16783,16687,16687,16686,16686,16685,16685,16684,16684,16683,16683,16682,16682,16681,16681,16802,16802,16810,16810,16680,16680,16679,16679,16678,16678,16677,16677,16676,16676,16675,16675,16674,16674,16809,16809,16673,16673,16672,16672,16671,16671,16670,16670,16669,16669,16668,16668,16667,16667,16666,16666,16665,16665,16808,16808,16827,16827,16822,16822,16664,16664,16663,16663,16662,16662,16661,16661,16660,16660,16659,16659,16658,16658,16657,16657,16656,16656,16782,16782,16807,16807,16801,16801,16655,16655,16654,16654,16653,16653,16781,16781,16652,16652,16651,16651,16650,16650,16649,16649,16648,16648,16800,16800,16647,16647,16646,16646,16645,16645,16644,16644,16643,16643,16642,16642,16641,16641,16640,16640,16639,16639,16638,16638,16637,16637,16636,16636,16635,16635,16780,16780,16634,16634,16633,16633,16632,16632,16826,16826,16825,16825,16806,16806,16779,16779,16631,16631,16630,16630,16629,16629,16628,16628,16627,16627,16626,16626,16625,16625,16624,16624,16623,16623,16622,16622,16621,16621,16620,16620,16619,16619,16799,16799,16618,16618,16617,16617,16616,16616,16615,16615,16614,16614,16613,16613,16612,16612,16611,16611,16610,16610,16609,16609,16608,16608,16607,16607,16606,16606,16605,16605,16604,16604,16603,16603,16602,16602,16601,16601,16600,16600,16599,16599,16598,16598,16597,16597,16596,16596,16595,16595,16594,16594,16593,16593,16592,16592,16591,16591,16590,16590,16589,16589,16588,16588,16587,16587,16819,16819,16586,16586,16585,16585,16584,16584,16583,16583,16582,16582,16798,16798,16797,16797,16778,16778,16581,16581,16580,16580,16579,16579,16777,16777,16578,16578,16577,16577,16576,16576,16575,16575,16574,16574,16573,16573,16572,16572,16571,16571,16570,16570,16569,16569,16568,16568,16567,16567,16566,16566,16565,16565,16796,16796,16805,16805,16776,16776,16564,16564,16563,16563,16562,16562,16561,16561,16560,16560,16559,16559,16558,16558,16557,16557,16556,16556,16555,16555,16554,16554,16553,16553,16795,16795,16552,16552,16551,16551,16550,16550,16549,16549,16548,16548,16547,16547,16546,16546,16545,16545,16544,16544,16794,16794,16818,16818,16824,16824,16829,16829,16830,16830,16543,16543,16542,16542,16541,16541,16540,16540,16539,16539,16817,16817,16804,16804,16793,16793,16538,16538,16537,16537,16536,16536,16535,16535,16534,16534,16775,16775,16533,16533,16532,16532,16531,16531,16530,16530,16529,16529,16528,16528,16527,16527,16526,16526,16792,16792,16774,16774,16525,16525,16524,16524,16523,16523,16522,16522,16521,16521,16520,16520,16519,16519,16518,16518,16517,16517,16791,16791,16803,16803,16816,16816,16516,16516,16515,16515,16514,16514,16513,16513,16512,16512,16511,16511,16510,16510,16509,16509,16508,16508,16507,16507,16506,16506,16505,16505,16504,16504,16503,16503,16502,16895,16890,16890,16889,16889,16888,16888,16887,16887,16886,16886,16885,16885,16884,16884,16883,16883,16882,16882,16894,16894,16881,16881,16880,16880,16879,16879,16878,16878,16877,16877,16876,16876,16875,16875,16893,16893,16874,16874,16873,16873,16872,16872,16871,16871,16870,16870,16869,16869,16868,16868,16867,16867,16866,16866,16865,16865,16892,16892,16864,16864,16863,16863,16862,16862,16861,16861,16860,16860,16891,16891,16897,16897,16859,16859,16858,16858,16857,16857,16856,16856,16855,16855,16854,16854,16853,16853,16852,16852,16851,16851,16850,16850,16849,16849,16848,16848,16847,16847,16846,16846,16896,16896,16845,16845,16844,16844,16843,16843,16842,16842,16841,16841,16840,16840,16839,16839,16838,16838,16837,16837,16836,16836,16835,16835,16834,16834,16833,16833,16832,16832,16895,16899,16898,16898,16976,16976,16975,16975,16974,16974,16979,16979,16973,16973,16972,16972,16971,16971,16970,16970,16969,16969,16968,16968,16967,16967,16966,16966,16965,16965,16964,16964,16963,16963,16984,16984,16962,16962,16961,16961,16960,16960,16959,16959,16958,16958,16957,16957,16956,16956,16955,16955,16954,16954,16953,16953,16952,16952,16951,16951,16950,16950,16949,16949,16948,16948,16983,16983,16985,16985,16947,16947,16946,16946,16945,16945,16944,16944,16943,16943,16942,16942,16941,16941,16940,16940,16939,16939,16978,16978,16938,16938,16937,16937,16936,16936,16982,16982,16935,16935,16934,16934,16933,16933,16977,16977,16932,16932,16931,16931,16930,16930,16929,16929,16928,16928,16927,16927,16926,16926,16981,16981,16925,16925,16924,16924,16923,16923,16922,16922,16921,16921,16920,16920,16919,16919,16918,16918,16917,16917,16980,16980,16986,16986,16916,16916,16915,16915,16914,16914,16913,16913,16912,16912,16911,16911,16910,16910,16909,16909,16908,16908,16907,16907,16906,16906,16905,16905,16904,16904,16903,16903,16902,16902,16901,16901,16900,16900,16899,17083,17088,17088,17082,17082,17067,17067,17066,17066,17065,17065,17064,17064,17063,17063,17062,17062,17061,17061,17060,17060,17059,17059,17058,17058,17071,17071,17081,17081,17087,17087,17057,17057,17056,17056,17055,17055,17054,17054,17053,17053,17052,17052,17051,17051,17050,17050,17049,17049,17070,17070,17048,17048,17047,17047,17046,17046,17045,17045,17044,17044,17043,17043,17042,17042,17041,17041,17040,17040,17039,17039,17038,17038,17037,17037,17036,17036,17035,17035,17034,17034,17077,17077,17080,17080,17069,17069,17033,17033,17032,17032,17031,17031,17030,17030,17029,17029,17028,17028,17027,17027,17076,17076,17086,17086,17085,17085,17079,17079,17075,17075,17026,17026,17025,17025,17024,17024,17023,17023,17022,17022,17021,17021,17020,17020,17019,17019,17018,17018,17017,17017,17016,17016,17068,17068,17078,17078,17084,17084,17089,17089,17074,17074,17015,17015,17014,17014,17013,17013,17012,17012,17011,17011,17010,17010,17009,17009,17008,17008,17007,17007,17006,17006,17005,17005,17004,17004,17073,17073,17003,17003,17002,17002,17001,17001,17000,17000,16999,16999,16998,16998,16997,16997,16996,16996,16995,16995,16994,16994,16993,16993,16992,16992,16991,16991,16990,16990,16989,16989,16988,16988,16987,16987,17072,17072,17083,17165,17155,17155,17154,17154,17153,17153,17152,17152,17151,17151,17162,17162,17150,17150,17149,17149,17148,17148,17164,17164,17161,17161,17147,17147,17146,17146,17145,17145,17168,17168,17167,17167,17166,17166,17160,17160,17144,17144,17143,17143,17142,17142,17141,17141,17140,17140,17139,17139,17138,17138,17137,17137,17136,17136,17135,17135,17134,17134,17133,17133,17132,17132,17131,17131,17130,17130,17129,17129,17128,17128,17127,17127,17126,17126,17125,17125,17163,17163,17124,17124,17123,17123,17122,17122,17121,17121,17120,17120,17119,17119,17118,17118,17117,17117,17116,17116,17115,17115,17114,17114,17113,17113,17112,17112,17111,17111,17110,17110,17109,17109,17108,17108,17159,17159,17158,17158,17107,17107,17106,17106,17105,17105,17104,17104,17103,17103,17102,17102,17101,17101,17100,17100,17099,17099,17098,17098,17097,17097,17096,17096,17095,17095,17157,17157,17094,17094,17093,17093,17092,17092,17091,17091,17090,17090,17156,17156,17165,7188,7189,7189,7190,7190,7191,7191,7192,7192,7193,7193,7676,7676,7194,7194,7195,7195,7196,7196,7487,7487,7197,7197,7198,7198,7199,7199,7200,7200,7201,7201,7550,7550,7202,7202,7203,7203,7204,7204,7205,7205,7206,7206,7207,7207,7208,7208,7615,7615,7209,7209,7210,7210,7211,7211,7395,7395,7704,7704,7649,7649,7488,7488,7212,7212,7213,7213,7214,7214,7396,7396,7397,7397,7215,7215,7216,7216,7217,7217,7218,7218,7219,7219,7220,7220,7221,7221,7398,7398,7222,7222,7223,7223,7224,7224,7225,7225,7226,7226,7227,7227,7228,7228,7229,7229,7399,7399,7230,7230,7231,7231,7232,7232,7616,7616,7581,7581,7551,7551,7400,7400,7233,7233,7234,7234,7235,7235,7236,7236,7237,7237,7238,7238,7239,7239,7489,7489,7401,7401,7240,7240,7241,7241,7242,7242,7243,7243,7244,7244,7245,7245,7246,7246,7247,7247,7248,7248,7249,7249,7402,7402,7250,7250,7251,7251,7252,7252,7253,7253,7254,7254,7255,7255,7256,7256,7257,7257,7552,7552,7258,7258,7259,7259,7260,7260,7261,7261,7262,7262,7490,7490,7403,7403,7263,7263,7264,7264,7265,7265,7266,7266,7267,7267,7268,7268,7269,7269,7270,7270,7491,7491,7583,7583,7271,7271,7272,7272,7273,7273,7274,7274,7275,7275,7276,7276,5845,5845,5846,5846,17432,17432,17431,17431,17430,17430,17429,17429,17428,17428,17427,17427,17426,17426,17425,17425,17424,17424,17423,17423,17422,17422,17421,17421,17420,17420,17419,17419,17418,17418,17417,17417,17416,17416,17415,17415,17414,17414,17413,17413,17412,17412,17411,17411,17410,17410,17409,17409,17464,17464,17408,17408,17407,17407,17406,17406,17405,17405,17404,17404,17403,17403,17402,17402,17401,17401,17400,17400,17399,17399,17398,17398,17447,17447,17397,17397,17396,17396,17395,17395,17394,17394,17393,17393,17392,17392,17391,17391,17390,17390,17389,17389,17388,17388,17387,17387,17386,17386,17385,17385,17384,17384,17383,17383,17382,17382,17446,17446,17381,17381,17380,17380,17379,17379,17378,17378,17377,17377,17445,17445,17376,17376,17375,17375,17374,17374,17373,17373,17372,17372,17371,17371,17370,17370,17369,17369,17368,17368,17367,17367,17366,17366,17365,17365,17364,17364,17363,17363,17461,17461,17444,17444,17362,17362,17361,17361,17360,17360,17359,17359,17358,17358,17357,17357,17458,17458,17356,17356,17355,17355,17354,17354,17353,17353,17352,17352,17351,17351,17350,17350,17349,17349,17443,17443,17348,17348,17347,17347,17346,17346,17463,17463,17460,17460,17345,17345,17344,17344,17343,17343,17342,17342,17341,17341,17454,17454,17340,17340,17339,17339,17338,17338,17337,17337,17336,17336,17335,17335,17334,17334,17333,17333,17332,17332,17331,17331,17330,17330,17329,17329,17328,17328,17327,17327,17326,17326,17325,17325,17324,17324,17323,17323,17322,17322,17321,17321,17453,17453,17320,17320,17319,17319,17318,17318,17317,17317,17316,17316,17315,17315,17314,17314,17313,17313,17312,17312,17311,17311,17310,17310,17309,17309,17308,17308,17442,17442,17457,17457,17307,17307,17306,17306,17305,17305,17304,17304,17303,17303,17302,17302,17301,17301,17300,17300,17299,17299,17298,17298,17297,17297,17296,17296,17295,17295,17294,17294,17441,17441,17293,17293,17292,17292,17291,17291,17290,17290,17289,17289,17288,17288,17287,17287,17286,17286,17285,17285,17284,17284,17283,17283,17282,17282,17281,17281,17280,17280,17279,17279,17278,17278,17277,17277,17276,17276,17275,17275,17274,17274,17273,17273,17272,17272,17271,17271,17270,17270,17269,17269,17268,17268,17452,17452,17440,17440,17267,17267,17266,17266,17265,17265,17456,17456,17264,17264,17263,17263,17262,17262,17261,17261,17260,17260,17259,17259,17258,17258,17257,17257,17256,17256,17255,17255,17254,17254,17253,17253,17439,17439,17252,17252,17251,17251,17250,17250,17438,17438,17249,17249,17248,17248,17247,17247,17246,17246,17245,17245,17244,17244,17437,17437,17436,17436,17243,17243,17242,17242,17241,17241,17240,17240,17239,17239,17238,17238,17237,17237,17451,17451,17236,17236,17235,17235,17234,17234,17233,17233,17232,17232,17231,17231,17230,17230,17459,17459,17455,17455,17435,17435,17229,17229,17228,17228,17227,17227,17226,17226,17225,17225,17224,17224,17223,17223,17222,17222,17221,17221,17220,17220,17219,17219,17218,17218,17450,17450,17217,17217,17216,17216,17215,17215,17214,17214,17213,17213,17212,17212,17211,17211,17466,17466,17210,17210,17209,17209,17208,17208,17207,17207,17206,17206,17205,17205,17204,17204,17203,17203,17202,17202,17201,17201,17200,17200,17199,17199,17198,17198,17197,17197,17449,17449,17196,17196,17195,17195,17194,17194,17434,17434,17448,17448,17193,17193,17192,17192,17191,17191,17190,17190,17189,17189,17188,17188,17187,17187,17186,17186,17185,17185,17184,17184,17433,17433,17183,17183,17182,17182,17181,17181,17180,17180,17179,17179,17178,17178,17177,17177,17176,17176,17175,17175,17174,17174,17173,17173,17172,17172,17171,17171,17170,17170,17169,17169,7188,17475,17474,17474,17847,17847,17846,17846,17845,17845,17844,17844,17889,17889,17912,17912,17917,17917,17920,17920,17843,17843,17842,17842,17841,17841,17840,17840,17839,17839,17838,17838,17837,17837,17836,17836,17835,17835,17834,17834,17833,17833,17888,17888,17832,17832,17831,17831,17830,17830,17829,17829,17828,17828,17827,17827,17826,17826,17825,17825,17824,17824,17887,17887,17823,17823,17822,17822,17821,17821,17820,17820,17819,17819,17886,17886,17868,17868,17818,17818,17817,17817,17816,17816,17867,17867,17815,17815,17814,17814,17813,17813,17866,17866,17812,17812,17811,17811,17810,17810,17809,17809,17808,17808,17807,17807,17806,17806,17805,17805,17804,17804,17803,17803,17802,17802,17801,17801,17800,17800,17799,17799,17798,17798,17797,17797,17796,17796,17795,17795,17794,17794,17900,17900,17865,17865,17793,17793,17792,17792,17791,17791,17790,17790,17789,17789,17788,17788,17787,17787,17786,17786,17785,17785,17784,17784,17783,17783,17782,17782,17781,17781,17780,17780,17779,17779,17885,17885,17899,17899,17778,17778,17777,17777,17776,17776,17775,17775,17774,17774,17773,17773,17772,17772,17771,17771,17770,17770,17769,17769,17768,17768,17923,17923,17911,17911,17864,17864,17767,17767,17766,17766,17765,17765,17764,17764,17763,17763,17762,17762,17761,17761,17863,17863,17760,17760,17759,17759,17758,17758,17862,17862,17757,17757,17756,17756,17755,17755,17754,17754,17753,17753,17752,17752,17751,17751,17750,17750,17749,17749,17748,17748,17747,17747,17746,17746,17745,17745,17744,17744,17743,17743,17742,17742,17741,17741,17740,17740,17739,17739,17738,17738,17737,17737,17736,17736,17735,17735,17734,17734,17733,17733,17732,17732,17898,17898,17731,17731,17730,17730,17729,17729,17728,17728,17727,17727,17884,17884,17905,17905,17726,17726,17725,17725,17724,17724,17723,17723,17722,17722,17721,17721,17720,17720,17719,17719,17897,17897,17861,17861,17718,17718,17717,17717,17716,17716,17715,17715,17714,17714,17713,17713,17712,17712,17711,17711,17710,17710,17860,17860,17709,17709,17708,17708,17707,17707,17706,17706,17705,17705,17704,17704,17703,17703,17702,17702,17701,17701,17700,17700,17699,17699,17859,17859,17698,17698,17697,17697,17696,17696,17695,17695,17694,17694,17693,17693,17692,17692,17691,17691,17690,17690,17689,17689,17883,17883,17688,17688,17687,17687,17686,17686,17685,17685,17684,17684,17904,17904,17929,17929,17930,17930,17928,17928,17927,17927,17882,17882,17683,17683,17682,17682,17681,17681,17680,17680,17679,17679,17678,17678,17677,17677,17676,17676,17881,17881,17896,17896,17910,17910,17916,17916,17919,17919,17922,17922,17915,17915,17909,17909,17903,17903,17858,17858,17675,17675,17674,17674,17673,17673,17672,17672,17671,17671,17670,17670,17669,17669,17668,17668,17667,17667,17666,17666,17665,17665,17664,17664,17663,17663,17662,17662,17661,17661,17660,17660,17659,17659,17658,17658,17657,17657,17656,17656,17880,17880,17902,17902,17655,17655,17654,17654,17653,17653,17652,17652,17651,17651,17650,17650,17649,17649,17648,17648,17647,17647,17857,17857,17914,17914,17879,17879,17646,17646,17645,17645,17644,17644,17643,17643,17642,17642,17641,17641,17640,17640,17639,17639,17638,17638,17637,17637,17636,17636,17635,17635,17634,17634,17856,17856,17633,17633,17632,17632,17631,17631,17913,17913,17931,17931,17925,17925,17630,17630,17629,17629,17628,17628,17627,17627,17626,17626,17625,17625,17624,17624,17623,17623,17622,17622,17621,17621,17620,17620,17619,17619,17618,17618,17617,17617,17878,17878,17616,17616,17615,17615,17614,17614,17613,17613,17612,17612,17611,17611,17610,17610,17855,17855,17609,17609,17608,17608,17607,17607,17606,17606,17605,17605,17604,17604,17603,17603,17602,17602,17601,17601,17600,17600,17599,17599,17877,17877,17876,17876,17598,17598,17597,17597,17596,17596,17854,17854,17908,17908,17595,17595,17594,17594,17593,17593,17592,17592,17591,17591,17590,17590,17589,17589,17907,17907,17588,17588,17587,17587,17586,17586,17585,17585,17584,17584,17583,17583,17582,17582,17581,17581,17580,17580,17579,17579,17578,17578,17577,17577,17875,17875,17576,17576,17575,17575,17574,17574,17573,17573,17572,17572,17874,17874,17571,17571,17570,17570,17569,17569,17568,17568,17567,17567,17566,17566,17565,17565,17564,17564,17563,17563,17562,17562,17561,17561,17560,17560,17559,17559,17558,17558,17853,17853,17557,17557,17556,17556,17555,17555,17554,17554,17553,17553,17552,17552,17551,17551,17550,17550,17549,17549,17548,17548,17547,17547,17546,17546,17545,17545,17544,17544,17543,17543,17542,17542,17852,17852,17541,17541,17540,17540,17539,17539,17851,17851,17538,17538,17537,17537,17536,17536,17535,17535,17534,17534,17533,17533,17532,17532,17873,17873,17895,17895,17901,17901,17906,17906,17531,17531,17530,17530,17529,17529,17528,17528,17527,17527,17526,17526,17525,17525,17524,17524,17523,17523,17894,17894,17893,17893,17522,17522,17521,17521,17520,17520,17519,17519,17518,17518,17872,17872,17517,17517,17516,17516,17515,17515,17514,17514,17513,17513,17512,17512,17511,17511,17510,17510,17509,17509,17892,17892,17508,17508,17507,17507,17506,17506,17505,17505,17504,17504,17850,17850,17503,17503,17502,17502,17501,17501,17500,17500,17499,17499,17498,17498,17497,17497,17496,17496,17495,17495,17494,17494,17493,17493,17492,17492,17891,17891,17890,17890,17849,17849,17491,17491,17490,17490,17489,17489,17871,17871,17870,17870,17488,17488,17487,17487,17486,17486,17485,17485,17484,17484,17483,17483,17482,17482,17481,17481,17869,17869,17848,17848,17480,17480,17479,17479,17478,17478,17477,17477,17476,17476,17475,19254,19359,19359,19345,19345,19057,19057,19056,19056,19055,19055,19054,19054,19053,19053,19052,19052,19051,19051,19200,19200,19253,19253,19296,19296,19376,19376,19050,19050,19049,19049,19048,19048,19358,19358,19344,19344,19295,19295,19047,19047,19046,19046,19045,19045,19044,19044,19043,19043,19042,19042,19041,19041,19199,19199,19118,19118,19040,19040,19039,19039,19038,19038,19198,19198,19037,19037,19036,19036,19035,19035,19034,19034,19033,19033,19252,19252,19294,19294,19251,19251,19032,19032,19031,19031,19030,19030,19029,19029,19028,19028,19197,19197,19323,19323,19027,19027,19026,19026,19025,19025,19024,19024,19023,19023,19022,19022,19021,19021,19020,19020,19019,19019,19018,19018,19017,19017,19016,19016,19015,19015,19014,19014,19013,19013,19012,19012,19011,19011,19010,19010,19250,19250,19009,19009,19008,19008,19007,19007,19006,19006,19005,19005,19004,19004,19003,19003,19002,19002,19196,19196,19001,19001,19000,19000,18999,18999,18998,18998,18997,18997,18996,18996,18995,18995,18994,18994,18993,18993,18992,18992,18991,18991,18990,18990,18989,18989,18988,18988,18987,18987,19249,19249,18986,18986,18985,18985,18984,18984,18983,18983,18982,18982,19195,19195,19293,19293,18981,18981,18980,18980,18979,18979,18978,18978,18977,18977,18976,18976,18975,18975,19248,19248,18974,18974,18973,18973,18972,18972,18971,18971,18970,18970,18969,18969,18968,18968,19117,19117,18967,18967,18966,18966,18965,18965,19194,19194,19247,19247,19193,19193,19116,19116,18964,18964,18963,18963,18962,18962,19367,19367,19292,19292,19246,19246,18961,18961,18960,18960,18959,18959,18958,18958,18957,18957,19192,19192,18956,18956,18955,18955,18954,18954,18953,18953,18952,18952,18951,18951,18950,18950,18949,18949,18948,18948,19115,19115,18947,18947,18946,18946,18945,18945,18944,18944,18943,18943,19114,19114,19191,19191,19291,19291,19343,19343,19342,19342,19322,19322,19113,19113,18942,18942,18941,18941,18940,18940,18939,18939,18938,18938,18937,18937,18936,18936,18935,18935,18934,18934,18933,18933,19245,19245,18932,18932,18931,18931,18930,18930,18929,18929,18928,18928,18927,18927,18926,18926,18925,18925,18924,18924,18923,18923,18922,18922,18921,18921,18920,18920,18919,18919,18918,18918,18917,18917,18916,18916,19112,19112,19244,19244,18915,18915,18914,18914,18913,18913,18912,18912,18911,18911,18910,18910,18909,18909,18908,18908,18907,18907,18906,18906,18905,18905,18904,18904,18903,18903,18902,18902,19321,19321,19341,19341,19111,19111,18901,18901,18900,18900,18899,18899,18898,18898,18897,18897,18896,18896,18895,18895,18894,18894,18893,18893,18892,18892,18891,18891,18890,18890,18889,18889,18888,18888,18887,18887,18886,18886,18885,18885,18884,18884,19190,19190,19110,19110,18883,18883,18882,18882,18881,18881,18880,18880,18879,18879,18878,18878,18877,18877,18876,18876,19290,19290,19189,19189,18875,18875,18874,18874,18873,18873,18872,18872,18871,18871,18870,18870,18869,18869,18868,18868,18867,18867,18866,18866,18865,18865,18864,18864,18863,18863,18862,18862,18861,18861,18860,18860,18859,18859,18858,18858,18857,18857,18856,18856,18855,18855,19109,19109,18854,18854,18853,18853,18852,18852,18851,18851,18850,18850,18849,18849,18848,18848,18847,18847,18846,18846,18845,18845,18844,18844,18843,18843,18842,18842,18841,18841,18840,18840,18839,18839,18838,18838,18837,18837,18836,18836,18835,18835,18834,18834,19188,19188,19108,19108,18833,18833,18832,18832,18831,18831,19340,19340,19243,19243,18830,18830,18829,18829,18828,18828,18827,18827,18826,18826,18825,18825,18824,18824,18823,18823,18822,18822,18821,18821,18820,18820,18819,18819,18818,18818,18817,18817,18816,18816,18815,18815,18814,18814,18813,18813,19187,19187,19107,19107,18812,18812,18811,18811,18810,18810,19289,19289,19242,19242,18809,18809,18808,18808,18807,18807,18806,18806,18805,18805,18804,18804,18803,18803,18802,18802,18801,18801,19288,19288,19186,19186,18800,18800,18799,18799,18798,18798,18797,18797,18796,18796,18795,18795,18794,18794,18793,18793,18792,18792,18791,18791,18790,18790,18789,18789,18788,18788,18787,18787,18786,18786,18785,18785,18784,18784,18783,18783,18782,18782,18781,18781,18780,18780,18779,18779,18778,18778,18777,18777,18776,18776,18775,18775,18774,18774,18773,18773,19241,19241,19320,19320,19339,19339,19366,19366,19319,19319,18772,18772,18771,18771,18770,18770,18769,18769,18768,18768,18767,18767,18766,18766,18765,18765,18764,18764,18763,18763,18762,18762,19185,19185,19287,19287,19371,19371,19184,19184,18761,18761,18760,18760,18759,18759,19106,19106,19240,19240,19239,19239,18758,18758,18757,18757,18756,18756,18755,18755,18754,18754,18753,18753,18752,18752,18751,18751,18750,18750,18749,18749,18748,18748,18747,18747,18746,18746,18745,18745,18744,18744,18743,18743,18742,18742,19238,19238,19286,19286,19237,19237,19105,19105,18741,18741,18740,18740,18739,18739,19183,19183,19318,19318,19357,19357,19236,19236,19104,19104,18738,18738,18737,18737,18736,18736,18735,18735,18734,18734,18733,18733,18732,18732,18731,18731,18730,18730,18729,18729,18728,18728,18727,18727,18726,18726,18725,18725,18724,18724,18723,18723,18722,18722,18721,18721,18720,18720,18719,18719,18718,18718,18717,18717,18716,18716,18715,18715,19317,19317,19338,19338,18714,18714,18713,18713,18712,18712,18711,18711,18710,18710,18709,18709,18708,18708,18707,18707,18706,18706,18705,18705,18704,18704,19182,19182,19103,19103,18703,18703,18702,18702,18701,18701,19285,19285,19337,19337,19316,19316,19235,19235,18700,18700,18699,18699,18698,18698,18697,18697,18696,18696,19181,19181,19234,19234,18695,18695,18694,18694,18693,18693,18692,18692,18691,18691,18690,18690,18689,18689,19180,19180,18688,18688,18687,18687,18686,18686,18685,18685,18684,18684,18683,18683,18682,18682,18681,18681,18680,18680,18679,18679,19179,19179,19102,19102,18678,18678,18677,18677,18676,18676,19233,19233,18675,18675,18674,18674,18673,18673,18672,18672,18671,18671,18670,18670,18669,18669,18668,18668,19284,19284,19356,19356,19283,19283,19232,19232,18667,18667,18666,18666,18665,18665,18664,18664,18663,18663,19178,19178,19231,19231,18662,18662,18661,18661,18660,18660,18659,18659,18658,18658,19177,19177,19315,19315,18657,18657,18656,18656,18655,18655,18654,18654,18653,18653,18652,18652,18651,18651,18650,18650,18649,18649,18648,18648,18647,18647,19176,19176,19230,19230,19314,19314,19282,19282,18646,18646,18645,18645,18644,18644,19101,19101,18643,18643,18642,18642,18641,18641,18640,18640,18639,18639,18638,18638,18637,18637,19175,19175,18636,18636,18635,18635,18634,18634,18633,18633,18632,18632,18631,18631,18630,18630,18629,18629,18628,18628,18627,18627,18626,18626,18625,18625,18624,18624,18623,18623,18622,18622,18621,18621,18620,18620,18619,18619,18618,18618,18617,18617,18616,18616,18615,18615,18614,18614,18613,18613,18612,18612,18611,18611,19100,19100,18610,18610,18609,18609,18608,18608,18607,18607,18606,18606,18605,18605,18604,18604,18603,18603,18602,18602,18601,18601,19174,19174,19281,19281,19313,19313,19099,19099,18600,18600,18599,18599,18598,18598,18597,18597,18596,18596,18595,18595,18594,18594,19173,19173,19280,19280,19098,19098,18593,18593,18592,18592,18591,18591,19097,19097,18590,18590,18589,18589,18588,18588,18587,18587,18586,18586,18585,18585,18584,18584,18583,18583,18582,18582,18581,18581,18580,18580,18579,18579,18578,18578,18577,18577,19096,19096,18576,18576,18575,18575,18574,18574,18573,18573,18572,18572,18571,18571,18570,18570,19095,19095,18569,18569,18568,18568,18567,18567,19094,19094,18566,18566,18565,18565,18564,18564,18563,18563,18562,18562,18561,18561,18560,18560,18559,18559,18558,18558,19093,19093,19229,19229,19228,19228,19172,19172,18557,18557,18556,18556,18555,18555,18554,18554,18553,18553,19279,19279,19171,19171,18552,18552,18551,18551,18550,18550,18549,18549,18548,18548,18547,18547,18546,18546,18545,18545,18544,18544,18543,18543,19092,19092,18542,18542,18541,18541,18540,18540,18539,18539,18538,18538,18537,18537,18536,18536,19091,19091,18535,18535,18534,18534,18533,18533,19365,19365,19355,19355,19278,19278,18532,18532,18531,18531,18530,18530,18529,18529,18528,18528,18527,18527,18526,18526,18525,18525,18524,18524,19090,19090,18523,18523,18522,18522,18521,18521,18520,18520,18519,18519,19089,19089,18518,18518,18517,18517,18516,18516,18515,18515,18514,18514,19277,19277,19227,19227,19170,19170,18513,18513,18512,18512,18511,18511,18510,18510,18509,18509,18508,18508,18507,18507,18506,18506,18505,18505,18504,18504,18503,18503,18502,18502,19169,19169,19226,19226,19354,19354,19336,19336,19276,19276,19168,19168,18501,18501,18500,18500,18499,18499,18498,18498,18497,18497,18496,18496,18495,18495,18494,18494,18493,18493,19167,19167,19312,19312,19335,19335,19275,19275,18492,18492,18491,18491,18490,18490,18489,18489,18488,18488,19166,19166,19225,19225,19224,19224,19088,19088,18487,18487,18486,18486,18485,18485,19165,19165,19311,19311,19087,19087,18484,18484,18483,18483,18482,18482,18481,18481,18480,18480,18479,18479,18478,18478,19086,19086,18477,18477,18476,18476,18475,18475,18474,18474,18473,18473,18472,18472,18471,18471,18470,18470,18469,18469,18468,18468,19164,19164,19163,19163,18467,18467,18466,18466,18465,18465,18464,18464,18463,18463,19223,19223,19085,19085,18462,18462,18461,18461,18460,18460,18459,18459,18458,18458,18457,18457,18456,18456,19162,19162,19274,19274,18455,18455,18454,18454,18453,18453,18452,18452,18451,18451,18450,18450,18449,18449,18448,18448,18447,18447,18446,18446,18445,18445,18444,18444,18443,18443,18442,18442,18441,18441,18440,18440,18439,18439,18438,18438,18437,18437,19084,19084,19161,19161,18436,18436,18435,18435,18434,18434,18433,18433,18432,18432,18431,18431,18430,18430,19222,19222,18429,18429,18428,18428,18427,18427,18426,18426,18425,18425,18424,18424,18423,18423,19083,19083,18422,18422,18421,18421,18420,18420,18419,18419,18418,18418,18417,18417,19082,19082,18416,18416,18415,18415,18414,18414,18413,18413,18412,18412,18411,18411,18410,18410,19160,19160,19273,19273,19272,19272,18409,18409,18408,18408,18407,18407,18406,18406,18405,18405,18404,18404,18403,18403,19159,19159,19081,19081,18402,18402,18401,18401,18400,18400,18399,18399,18398,18398,18397,18397,18396,18396,18395,18395,18394,18394,18393,18393,19271,19271,18392,18392,18391,18391,18390,18390,18389,18389,18388,18388,19158,19158,19221,19221,19270,19270,18387,18387,18386,18386,18385,18385,18384,18384,18383,18383,19157,19157,19220,19220,19080,19080,18382,18382,18381,18381,18380,18380,18379,18379,18378,18378,18377,18377,18376,18376,19156,19156,18375,18375,18374,18374,18373,18373,18372,18372,18371,18371,18370,18370,18369,18369,19079,19079,18368,18368,18367,18367,18366,18366,18365,18365,18364,18364,18363,18363,18362,18362,18361,18361,19155,19155,18360,18360,18359,18359,18358,18358,18357,18357,18356,18356,18355,18355,18354,18354,19154,19154,19269,19269,19310,19310,19386,19386,19385,19385,19078,19078,18353,18353,18352,18352,18351,18351,19268,19268,19219,19219,19077,19077,18350,18350,18349,18349,18348,18348,19153,19153,18347,18347,18346,18346,18345,18345,18344,18344,18343,18343,19152,19152,18342,18342,18341,18341,18340,18340,18339,18339,18338,18338,19218,19218,19151,19151,18337,18337,18336,18336,18335,18335,18334,18334,18333,18333,18332,18332,18331,18331,18330,18330,18329,18329,18328,18328,18327,18327,18326,18326,18325,18325,18324,18324,18323,18323,18322,18322,18321,18321,18320,18320,18319,18319,18318,18318,18317,18317,18316,18316,18315,18315,18314,18314,18313,18313,18312,18312,19217,19217,19150,19150,18311,18311,18310,18310,18309,18309,18308,18308,18307,18307,18306,18306,18305,18305,18304,18304,18303,18303,18302,18302,19149,19149,18301,18301,18300,18300,18299,18299,18298,18298,18297,18297,18296,18296,18295,18295,18294,18294,18293,18293,19148,19148,19267,19267,19308,19308,19076,19076,18292,18292,18291,18291,18290,18290,19147,19147,19216,19216,19215,19215,18289,18289,18288,18288,18287,18287,18286,18286,18285,18285,19146,19146,19307,19307,18284,18284,18283,18283,18282,18282,18281,18281,18280,18280,19075,19075,18279,18279,18278,18278,18277,18277,19145,19145,19074,19074,18276,18276,18275,18275,18274,18274,18273,18273,18272,18272,18271,18271,18270,18270,18269,18269,18268,18268,18267,18267,18266,18266,18265,18265,18264,18264,18263,18263,18262,18262,18261,18261,19073,19073,19214,19214,18260,18260,18259,18259,18258,18258,18257,18257,18256,18256,19144,19144,19378,19378,19072,19072,18255,18255,18254,18254,18253,18253,19266,19266,18252,18252,18251,18251,18250,18250,18249,18249,18248,18248,18247,18247,18246,18246,18245,18245,18244,18244,19071,19071,18243,18243,18242,18242,18241,18241,19070,19070,18240,18240,18239,18239,18238,18238,19143,19143,18237,18237,18236,18236,18235,18235,19069,19069,18234,18234,18233,18233,18232,18232,19142,19142,18231,18231,18230,18230,18229,18229,18228,18228,18227,18227,18226,18226,18225,18225,18224,18224,18223,18223,18222,18222,18221,18221,18220,18220,18219,18219,18218,18218,19213,19213,19068,19068,18217,18217,18216,18216,18215,18215,18214,18214,18213,18213,18212,18212,18211,18211,19141,19141,18210,18210,18209,18209,18208,18208,18207,18207,18206,18206,18205,18205,18204,18204,18203,18203,18202,18202,19140,19140,19265,19265,19334,19334,19067,19067,18201,18201,18200,18200,18199,18199,19306,19306,19264,19264,19212,19212,18198,18198,18197,18197,18196,18196,18195,18195,18194,18194,19139,19139,18193,18193,18192,18192,18191,18191,18190,18190,18189,18189,19138,19138,19263,19263,19137,19137,18188,18188,18187,18187,18186,18186,18185,18185,18184,18184,19211,19211,19364,19364,19353,19353,19136,19136,19066,19066,18183,18183,18182,18182,18181,18181,18180,18180,18179,18179,18178,18178,18177,18177,19135,19135,18176,18176,18175,18175,18174,18174,18173,18173,18172,18172,19210,19210,18171,18171,18170,18170,18169,18169,18168,18168,18167,18167,19134,19134,19333,19333,19065,19065,18166,18166,18165,18165,18164,18164,18163,18163,18162,18162,18161,18161,18160,18160,18159,18159,18158,18158,19064,19064,18157,18157,18156,18156,18155,18155,18154,18154,18153,18153,18152,18152,18151,18151,19133,19133,19209,19209,19305,19305,19332,19332,19352,19352,19331,19331,19262,19262,19132,19132,18150,18150,18149,18149,18148,18148,18147,18147,18146,18146,18145,18145,18144,18144,18143,18143,18142,18142,19131,19131,18141,18141,18140,18140,18139,18139,18138,18138,18137,18137,19130,19130,18136,18136,18135,18135,18134,18134,18133,18133,18132,18132,19129,19129,19384,19384,19208,19208,19128,19128,18131,18131,18130,18130,18129,18129,19063,19063,18128,18128,18127,18127,18126,18126,18125,18125,18124,18124,18123,18123,18122,18122,18121,18121,18120,18120,18119,18119,19127,19127,18118,18118,18117,18117,18116,18116,18115,18115,18114,18114,19126,19126,19304,19304,19330,19330,19351,19351,19363,19363,19329,19329,19303,19303,19207,19207,18113,18113,18112,18112,18111,18111,18110,18110,18109,18109,18108,18108,18107,18107,18106,18106,18105,18105,19261,19261,19362,19362,19328,19328,19062,19062,18104,18104,18103,18103,18102,18102,18101,18101,18100,18100,18099,18099,18098,18098,18097,18097,19125,19125,19260,19260,19302,19302,19301,19301,19206,19206,18096,18096,18095,18095,18094,18094,18093,18093,18092,18092,19124,19124,19259,19259,18091,18091,18090,18090,18089,18089,18088,18088,18087,18087,18086,18086,18085,18085,18084,18084,18083,18083,18082,18082,18081,18081,19398,19398,19382,19382,19373,19373,19368,19368,19350,19350,19327,19327,19205,19205,18080,18080,18079,18079,18078,18078,18077,18077,18076,18076,18075,18075,18074,18074,18073,18073,18072,18072,18071,18071,18070,18070,18069,18069,18068,18068,18067,18067,18066,18066,18065,18065,18064,18064,18063,18063,19300,19300,19299,19299,19204,19204,18062,18062,18061,18061,18060,18060,18059,18059,18058,18058,18057,18057,18056,18056,18055,18055,18054,18054,18053,18053,18052,18052,18051,18051,18050,18050,18049,18049,19061,19061,19203,19203,18048,18048,18047,18047,18046,18046,18045,18045,18044,18044,18043,18043,18042,18042,18041,18041,18040,18040,18039,18039,18038,18038,18037,18037,18036,18036,18035,18035,18034,18034,18033,18033,18032,18032,18031,18031,18030,18030,18029,18029,18028,18028,19202,19202,18027,18027,18026,18026,18025,18025,18024,18024,18023,18023,19123,19123,18022,18022,18021,18021,18020,18020,18019,18019,18018,18018,18017,18017,18016,18016,18015,18015,18014,18014,18013,18013,18012,18012,18011,18011,19060,19060,18010,18010,18009,18009,18008,18008,18007,18007,18006,18006,18005,18005,19122,19122,19258,19258,19326,19326,19349,19349,19059,19059,18004,18004,18003,18003,18002,18002,19257,19257,18001,18001,18000,18000,17999,17999,17998,17998,17997,17997,17996,17996,17995,17995,17994,17994,17993,17993,17992,17992,17991,17991,17990,17990,17989,17989,17988,17988,17987,17987,17986,17986,17985,17985,17984,17984,17983,17983,17982,17982,17981,17981,17980,17980,17979,17979,17978,17978,17977,17977,19058,19058,17976,17976,17975,17975,17974,17974,17973,17973,17972,17972,17971,17971,17970,17970,19121,19121,17969,17969,17968,17968,17967,17967,17966,17966,17965,17965,17964,17964,17963,17963,17962,17962,17961,17961,17960,17960,17959,17959,17958,17958,17957,17957,17956,17956,17955,17955,17954,17954,17953,17953,19120,19120,19256,19256,17952,17952,17951,17951,17950,17950,19347,19347,19360,19360,19298,19298,17949,17949,17948,17948,17947,17947,17946,17946,17945,17945,19119,19119,19201,19201,19255,19255,19346,19346,19324,19324,19297,19297,17944,17944,17943,17943,17942,17942,17941,17941,17940,17940,17939,17939,17938,17938,17937,17937,17936,17936,17935,17935,19254,19415,19414,19414,19438,19438,19437,19437,19436,19436,19435,19435,19434,19434,19433,19433,19439,19439,19432,19432,19431,19431,19430,19430,19429,19429,19428,19428,19427,19427,19426,19426,19425,19425,19424,19424,19423,19423,19422,19422,19421,19421,19420,19420,19419,19419,19418,19418,19417,19417,19416,19416,19415,19440,19506,19506,19510,19510,19505,19505,19504,19504,19503,19503,19502,19502,19501,19501,19500,19500,19513,19513,19514,19514,19515,19515,19499,19499,19498,19498,19497,19497,19496,19496,19495,19495,19494,19494,19493,19493,19492,19492,19491,19491,19490,19490,19489,19489,19488,19488,19487,19487,19486,19486,19485,19485,19484,19484,19483,19483,19482,19482,19481,19481,19480,19480,19479,19479,19478,19478,19477,19477,19476,19476,19475,19475,19474,19474,19473,19473,19511,19511,19472,19472,19471,19471,19470,19470,19469,19469,19468,19468,19467,19467,19466,19466,19465,19465,19464,19464,19463,19463,19462,19462,19461,19461,19509,19509,19512,19512,19508,19508,19460,19460,19459,19459,19458,19458,19507,19507,19457,19457,19456,19456,19455,19455,19454,19454,19453,19453,19452,19452,19451,19451,19450,19450,19449,19449,19448,19448,19447,19447,19446,19446,19445,19445,19444,19444,19443,19443,19442,19442,19441,19441,19440,19517,19516,19516,19546,19546,19545,19545,19544,19544,19543,19543,19542,19542,19541,19541,19540,19540,19539,19539,19538,19538,19537,19537,19536,19536,19535,19535,19548,19548,19534,19534,19533,19533,19532,19532,19549,19549,19531,19531,19530,19530,19529,19529,19528,19528,19527,19527,19526,19526,19525,19525,19524,19524,19547,19547,19523,19523,19522,19522,19521,19521,19520,19520,19519,19519,19518,19518,19517,19551,19550,19550,19579,19579,19578,19578,19577,19577,19576,19576,19575,19575,19574,19574,19573,19573,19581,19581,19572,19572,19571,19571,19570,19570,19569,19569,19568,19568,19567,19567,19566,19566,19565,19565,19564,19564,19563,19563,19562,19562,19561,19561,19560,19560,19559,19559,19558,19558,19557,19557,19556,19556,19555,19555,19554,19554,19553,19553,19580,19580,19552,19552,19551,19583,19582,19582,19618,19618,19617,19617,19616,19616,19615,19615,19614,19614,19613,19613,19619,19619,19612,19612,19611,19611,19610,19610,19609,19609,19608,19608,19607,19607,19606,19606,19605,19605,19604,19604,19603,19603,19602,19602,19601,19601,19600,19600,19599,19599,19598,19598,19597,19597,19596,19596,19595,19595,19594,19594,19593,19593,19592,19592,19591,19591,19590,19590,19589,19589,19588,19588,19587,19587,19586,19586,19585,19585,19584,19584,19583,19620,19670,19670,19669,19669,19668,19668,19667,19667,19666,19666,19665,19665,19664,19664,19663,19663,19662,19662,19661,19661,19660,19660,19659,19659,19671,19671,19658,19658,19657,19657,19656,19656,19655,19655,19654,19654,19653,19653,19652,19652,19651,19651,19650,19650,19649,19649,19674,19674,19673,19673,19648,19648,19647,19647,19646,19646,19645,19645,19644,19644,19643,19643,19642,19642,19641,19641,19640,19640,19672,19672,19639,19639,19638,19638,19637,19637,19636,19636,19635,19635,19634,19634,19633,19633,19632,19632,19631,19631,19630,19630,19629,19629,19628,19628,19627,19627,19626,19626,19625,19625,19624,19624,19623,19623,19622,19622,19621,19621,19620,19676,19675,19675,19691,19691,19690,19690,19689,19689,19688,19688,19687,19687,19686,19686,19685,19685,19684,19684,19683,19683,19682,19682,19681,19681,19680,19680,19679,19679,19678,19678,19677,19677,19676,19693,19692,19692,19705,19705,19704,19704,19703,19703,19706,19706,19702,19702,19701,19701,19700,19700,19699,19699,19698,19698,19697,19697,19696,19696,19695,19695,19694,19694,19693,19708,19707,19707,19748,19748,19747,19747,19746,19746,19745,19745,19744,19744,19756,19756,19758,19758,19761,19761,19753,19753,19743,19743,19742,19742,19741,19741,19740,19740,19739,19739,19738,19738,19737,19737,19755,19755,19757,19757,19752,19752,19736,19736,19735,19735,19734,19734,19733,19733,19732,19732,19731,19731,19730,19730,19760,19760,19754,19754,19729,19729,19728,19728,19727,19727,19726,19726,19725,19725,19724,19724,19723,19723,19722,19722,19721,19721,19764,19764,19763,19763,19762,19762,19759,19759,19751,19751,19720,19720,19719,19719,19718,19718,19750,19750,19717,19717,19716,19716,19715,19715,19714,19714,19713,19713,19712,19712,19711,19711,19710,19710,19749,19749,19709,19709,19708,19766,19765,19765,19778,19778,19777,19777,19776,19776,19775,19775,19774,19774,19773,19773,19772,19772,19771,19771,19770,19770,19769,19769,19768,19768,19767,19767,19766,19780,19779,19779,19799,19799,19798,19798,19797,19797,19796,19796,19795,19795,19794,19794,19793,19793,19792,19792,19791,19791,19790,19790,19789,19789,19788,19788,19787,19787,19786,19786,19785,19785,19784,19784,19783,19783,19782,19782,19781,19781,19780,19801,19800,19800,19825,19825,19824,19824,19823,19823,19822,19822,19821,19821,19820,19820,19819,19819,19818,19818,19817,19817,19816,19816,19815,19815,19814,19814,19813,19813,19812,19812,19811,19811,19810,19810,19809,19809,19808,19808,19807,19807,19806,19806,19805,19805,19804,19804,19803,19803,19802,19802,19801,19827,19826,19826,19849,19849,19848,19848,19847,19847,19846,19846,19845,19845,19844,19844,19843,19843,19851,19851,19850,19850,19842,19842,19841,19841,19840,19840,19839,19839,19838,19838,19837,19837,19836,19836,19835,19835,19834,19834,19833,19833,19832,19832,19831,19831,19830,19830,19829,19829,19828,19828,19827,19853,19852,19852,19881,19881,19880,19880,19879,19879,19878,19878,19877,19877,19883,19883,19882,19882,19876,19876,19875,19875,19874,19874,19873,19873,19872,19872,19871,19871,19870,19870,19869,19869,19868,19868,19867,19867,19866,19866,19865,19865,19864,19864,19863,19863,19862,19862,19861,19861,19860,19860,19859,19859,19858,19858,19857,19857,19856,19856,19855,19855,19854,19854,19853,19884,19909,19909,19908,19908,19907,19907,19906,19906,19905,19905,19904,19904,19903,19903,19902,19902,19901,19901,19900,19900,19899,19899,19910,19910,19898,19898,19897,19897,19896,19896,19911,19911,19895,19895,19894,19894,19893,19893,19892,19892,19891,19891,19890,19890,19889,19889,19888,19888,19887,19887,19886,19886,19885,19885,19884,19912,19937,19937,19936,19936,19935,19935,19934,19934,19933,19933,19932,19932,19931,19931,19930,19930,19929,19929,19928,19928,19927,19927,19926,19926,19925,19925,19924,19924,19923,19923,19922,19922,19921,19921,19920,19920,19919,19919,19918,19918,19917,19917,19916,19916,19915,19915,19914,19914,19913,19913,19912,19939,19938,19938,19959,19959,19958,19958,19957,19957,19956,19956,19955,19955,19954,19954,19953,19953,19952,19952,19951,19951,19950,19950,19949,19949,19948,19948,19947,19947,19946,19946,19945,19945,19944,19944,19943,19943,19942,19942,19941,19941,19940,19940,19939,19961,19960,19960,19980,19980,19979,19979,19978,19978,19977,19977,19976,19976,19982,19982,19975,19975,19974,19974,19973,19973,19972,19972,19971,19971,19981,19981,19970,19970,19969,19969,19968,19968,19967,19967,19966,19966,19965,19965,19964,19964,19963,19963,19962,19962,19961,19984,19983,19983,19993,19993,19992,19992,19991,19991,19990,19990,19989,19989,19988,19988,19987,19987,19986,19986,19985,19985,19984,19995,19994,19994,20001,20001,20000,20000,19999,19999,19998,19998,19997,19997,19996,19996,19995,20003,20002,20002,20021,20021,20020,20020,20019,20019,20018,20018,20017,20017,20023,20023,20025,20025,20024,20024,20022,20022,20016,20016,20015,20015,20014,20014,20013,20013,20012,20012,20011,20011,20010,20010,20009,20009,20008,20008,20007,20007,20006,20006,20005,20005,20004,20004,20003,20027,20026,20026,20039,20039,20038,20038,20037,20037,20036,20036,20035,20035,20034,20034,20033,20033,20032,20032,20031,20031,20030,20030,20029,20029,20028,20028,20027,3982,3983,3983,3984,3984,3985,3985,20042,20042,20041,20041,20040,20040,3982,20044,20043,20043,20069,20069,20068,20068,20067,20067,20066,20066,20065,20065,20064,20064,20063,20063,20062,20062,20061,20061,20070,20070,20060,20060,20059,20059,20058,20058,20057,20057,20056,20056,20055,20055,20054,20054,20053,20053,20052,20052,20051,20051,20050,20050,20049,20049,20048,20048,20047,20047,20046,20046,20045,20045,20044,20072,20071,20071,20077,20077,20076,20076,20075,20075,20074,20074,20073,20073,20072,20079,20078,20078,20089,20089,20088,20088,20087,20087,20086,20086,20085,20085,20084,20084,20083,20083,20082,20082,20081,20081,20080,20080,20079,20091,20090,20090,20104,20104,20103,20103,20102,20102,20101,20101,20100,20100,20099,20099,20105,20105,20098,20098,20097,20097,20096,20096,20095,20095,20094,20094,20093,20093,20092,20092,20091,20106,20118,20118,20117,20117,20116,20116,20115,20115,20114,20114,20113,20113,20112,20112,20111,20111,20110,20110,20109,20109,20108,20108,20107,20107,20106,20120,20119,20119,20130,20130,20129,20129,20128,20128,20127,20127,20126,20126,20125,20125,20124,20124,20123,20123,20122,20122,20121,20121,20120,20132,20131,20131,20144,20144,20143,20143,20142,20142,20141,20141,20140,20140,20139,20139,20138,20138,20137,20137,20136,20136,20135,20135,20134,20134,20133,20133,20132,20146,20145,20145,20156,20156,20157,20157,20155,20155,20154,20154,20153,20153,20152,20152,20151,20151,20150,20150,20149,20149,20148,20148,20147,20147,20146,20159,20158,20158,20168,20168,20167,20167,20166,20166,20165,20165,20164,20164,20163,20163,20162,20162,20161,20161,20160,20160,20159,20170,20169,20169,20180,20180,20179,20179,20178,20178,20177,20177,20176,20176,20175,20175,20174,20174,20173,20173,20172,20172,20171,20171,20170,20181,20190,20190,20189,20189,20188,20188,20187,20187,20186,20186,20185,20185,20184,20184,20183,20183,20182,20182,20181,20192,20191,20191,20197,20197,20196,20196,20195,20195,20194,20194,20198,20198,20193,20193,20192,20200,20199,20199,20206,20206,20205,20205,20204,20204,20203,20203,20202,20202,20201,20201,20200,20224,20223,20223,20222,20222,20221,20221,20220,20220,20219,20219,20218,20218,20217,20217,20216,20216,20215,20215,20214,20214,20213,20213,20212,20212,20211,20211,20210,20210,20209,20209,20208,20208,20207,20207,20225,20225,20224,20227,20226,20226,20234,20234,20233,20233,20232,20232,20231,20231,20230,20230,20229,20229,20228,20228,20227,20236,20235,20235,20240,20240,20239,20239,20238,20238,20237,20237,20236,20242,20241,20241,20245,20245,20244,20244,20243,20243,20242,20247,20246,20246,20251,20251,20250,20250,20249,20249,20248,20248,20247,20253,20252,20252,20262,20262,20261,20261,20260,20260,20259,20259,20258,20258,20257,20257,20256,20256,20255,20255,20254,20254,20253,20264,20263,20263,20267,20267,20266,20266,20265,20265,20264,20269,20268,20268,20274,20274,20273,20273,20272,20272,20271,20271,20270,20270,20269,20276,20275,20275,20284,20284,20283,20283,20282,20282,20281,20281,20280,20280,20279,20279,20278,20278,20277,20277,20276,20286,20285,20285,20297,20297,20296,20296,20295,20295,20294,20294,20293,20293,20292,20292,20291,20291,20290,20290,20299,20299,20298,20298,20289,20289,20288,20288,20287,20287,20286,20301,20300,20300,20306,20306,20305,20305,20304,20304,20303,20303,20302,20302,20301,20308,20307,20307,20317,20317,20316,20316,20315,20315,20314,20314,20313,20313,20312,20312,20311,20311,20310,20310,20309,20309,20308,20319,20318,20318,20327,20327,20326,20326,20325,20325,20328,20328,20324,20324,20323,20323,20322,20322,20321,20321,20320,20320,20319,20330,20329,20329,20344,20344,20343,20343,20342,20342,20341,20341,20340,20340,20339,20339,20338,20338,20337,20337,20336,20336,20335,20335,20334,20334,20333,20333,20332,20332,20331,20331,20330,20346,20345,20345,20359,20359,20358,20358,20357,20357,20356,20356,20355,20355,20354,20354,20353,20353,20352,20352,20351,20351,20350,20350,20349,20349,20348,20348,20347,20347,20346,20361,20360,20360,20378,20378,20377,20377,20376,20376,20375,20375,20374,20374,20373,20373,20372,20372,20371,20371,20370,20370,20369,20369,20368,20368,20367,20367,20366,20366,20365,20365,20364,20364,20363,20363,20362,20362,20361,20380,20379,20379,20397,20397,20396,20396,20395,20395,20394,20394,20393,20393,20392,20392,20391,20391,20390,20390,20389,20389,20388,20388,20387,20387,20386,20386,20385,20385,20384,20384,20383,20383,20382,20382,20381,20381,20380,20398,20414,20414,20413,20413,20412,20412,20411,20411,20415,20415,20410,20410,20409,20409,20408,20408,20407,20407,20406,20406,20405,20405,20404,20404,20403,20403,20402,20402,20401,20401,20400,20400,20399,20399,20398,20417,20416,20416,20427,20427,20426,20426,20425,20425,20424,20424,20423,20423,20422,20422,20421,20421,20420,20420,20419,20419,20428,20428,20418,20418,20417,20430,20429,20429,20439,20439,20438,20438,20437,20437,20436,20436,20435,20435,20434,20434,20433,20433,20432,20432,20431,20431,20430,20440,20450,20450,20449,20449,20448,20448,20447,20447,20446,20446,20445,20445,20444,20444,20443,20443,20442,20442,20441,20441,20440,20452,20451,20451,20461,20461,20460,20460,20459,20459,20458,20458,20457,20457,20456,20456,20455,20455,20454,20454,20453,20453,20452,20463,20462,20462,20471,20471,20470,20470,20469,20469,20468,20468,20467,20467,20466,20466,20465,20465,20464,20464,20463,20473,20472,20472,20482,20482,20481,20481,20480,20480,20479,20479,20478,20478,20477,20477,20476,20476,20475,20475,20474,20474,20473,20497,20496,20496,20495,20495,20494,20494,20493,20493,20492,20492,20491,20491,20490,20490,20489,20489,20488,20488,20487,20487,20486,20486,20485,20485,20484,20484,20483,20483,20497,20499,20498,20498,20505,20505,20504,20504,20503,20503,20502,20502,20501,20501,20500,20500,20499,20507,20506,20506,20518,20518,20517,20517,20516,20516,20515,20515,20514,20514,20513,20513,20512,20512,20511,20511,20510,20510,20509,20509,20508,20508,20507,20520,20519,20519,20531,20531,20530,20530,20529,20529,20528,20528,20527,20527,20526,20526,20525,20525,20524,20524,20523,20523,20522,20522,20521,20521,20520,20533,20532,20532,20539,20539,20538,20538,20537,20537,20536,20536,20535,20535,20534,20534,20533,20541,20540,20540,20550,20550,20549,20549,20548,20548,20547,20547,20546,20546,20545,20545,20544,20544,20543,20543,20542,20542,20541,20552,20551,20551,20557,20557,20556,20556,20555,20555,20554,20554,20553,20553,20552,20559,20558,20558,20566,20566,20565,20565,20567,20567,20564,20564,20563,20563,20562,20562,20561,20561,20560,20560,20559,20569,20568,20568,20587,20587,20586,20586,20585,20585,20584,20584,20583,20583,20582,20582,20581,20581,20580,20580,20579,20579,20578,20578,20577,20577,20576,20576,20575,20575,20574,20574,20573,20573,20572,20572,20571,20571,20570,20570,20569,20589,20588,20588,20606,20606,20605,20605,20604,20604,20603,20603,20602,20602,20601,20601,20600,20600,20599,20599,20598,20598,20597,20597,20596,20596,20595,20595,20594,20594,20593,20593,20592,20592,20591,20591,20590,20590,20589,20608,20607,20607,20626,20626,20625,20625,20624,20624,20623,20623,20627,20627,20622,20622,20621,20621,20620,20620,20619,20619,20618,20618,20617,20617,20616,20616,20615,20615,20614,20614,20613,20613,20612,20612,20611,20611,20610,20610,20609,20609,20608,20629,20628,20628,20636,20636,20635,20635,20634,20634,20633,20633,20632,20632,20631,20631,20630,20630,20629,20638,20637,20637,20644,20644,20643,20643,20642,20642,20641,20641,20640,20640,20639,20639,20638,20646,20645,20645,20661,20661,20660,20660,20659,20659,20658,20658,20657,20657,20656,20656,20655,20655,20654,20654,20653,20653,20652,20652,20651,20651,20650,20650,20649,20649,20648,20648,20647,20647,20646,20663,20662,20662,20670,20670,20669,20669,20668,20668,20667,20667,20666,20666,20665,20665,20664,20664,20663,20672,20671,20671,20696,20696,20695,20695,20694,20694,20693,20693,20692,20692,20691,20691,20690,20690,20689,20689,20688,20688,20687,20687,20686,20686,20685,20685,20684,20684,20683,20683,20682,20682,20681,20681,20680,20680,20679,20679,20678,20678,20677,20677,20676,20676,20675,20675,20674,20674,20673,20673,20672,20698,20697,20697,20709,20709,20708,20708,20707,20707,20706,20706,20705,20705,20704,20704,20703,20703,20702,20702,20701,20701,20700,20700,20699,20699,20698,20711,20710,20710,20722,20722,20721,20721,20720,20720,20719,20719,20718,20718,20717,20717,20716,20716,20715,20715,20714,20714,20713,20713,20712,20712,20711,20724,20723,20723,20734,20734,20733,20733,20732,20732,20731,20731,20730,20730,20729,20729,20728,20728,20727,20727,20726,20726,20725,20725,20724,20736,20735,20735,20753,20753,20752,20752,20751,20751,20750,20750,20749,20749,20748,20748,20747,20747,20746,20746,20745,20745,20744,20744,20743,20743,20742,20742,20741,20741,20740,20740,20754,20754,20739,20739,20738,20738,20737,20737,20736,20756,20755,20755,20762,20762,20761,20761,20760,20760,20759,20759,20758,20758,20757,20757,20756,20764,20763,20763,20770,20770,20769,20769,20768,20768,20767,20767,20766,20766,20765,20765,20764,20772,20771,20771,20778,20778,20777,20777,20776,20776,20775,20775,20774,20774,20773,20773,20772,20780,20779,20779,20813,20813,20812,20812,20811,20811,20810,20810,20809,20809,20808,20808,20807,20807,20806,20806,20805,20805,20804,20804,20803,20803,20802,20802,20815,20815,20801,20801,20800,20800,20799,20799,20798,20798,20797,20797,20796,20796,20795,20795,20794,20794,20793,20793,20792,20792,20814,20814,20791,20791,20790,20790,20789,20789,20788,20788,20787,20787,20786,20786,20785,20785,20784,20784,20783,20783,20782,20782,20781,20781,20780,20817,20816,20816,20833,20833,20832,20832,20831,20831,20830,20830,20829,20829,20828,20828,20827,20827,20826,20826,20825,20825,20824,20824,20823,20823,20822,20822,20821,20821,20834,20834,20820,20820,20819,20819,20818,20818,20817,20835,20844,20844,20843,20843,20842,20842,20841,20841,20840,20840,20839,20839,20838,20838,20837,20837,20836,20836,20835,20845,20855,20855,20854,20854,20853,20853,20852,20852,20851,20851,20850,20850,20849,20849,20848,20848,20847,20847,20846,20846,20845,20857,20856,20856,20887,20887,20886,20886,20885,20885,20884,20884,20883,20883,20890,20890,20882,20882,20881,20881,20880,20880,20889,20889,20879,20879,20878,20878,20877,20877,20876,20876,20875,20875,20874,20874,20873,20873,20872,20872,20871,20871,20870,20870,20869,20869,20868,20868,20867,20867,20866,20866,20865,20865,20864,20864,20891,20891,20888,20888,20863,20863,20862,20862,20861,20861,20860,20860,20859,20859,20858,20858,20857,20893,20892,20892,20911,20911,20910,20910,20909,20909,20908,20908,20907,20907,20906,20906,20905,20905,20904,20904,20903,20903,20902,20902,20901,20901,20900,20900,20899,20899,20898,20898,20897,20897,20896,20896,20895,20895,20912,20912,20894,20894,20893,20913,20930,20930,20929,20929,20928,20928,20927,20927,20926,20926,20925,20925,20924,20924,20923,20923,20922,20922,20921,20921,20920,20920,20919,20919,20918,20918,20917,20917,20916,20916,20915,20915,20914,20914,20913,20969,20973,20973,20972,20972,20968,20968,20967,20967,20966,20966,20965,20965,20964,20964,20963,20963,20962,20962,20961,20961,20960,20960,20971,20971,20970,20970,20959,20959,20958,20958,20957,20957,20956,20956,20955,20955,20954,20954,20953,20953,20952,20952,20951,20951,20950,20950,20949,20949,20948,20948,20947,20947,20946,20946,20945,20945,20944,20944,20943,20943,20942,20942,20941,20941,20940,20940,20939,20939,20938,20938,20937,20937,20936,20936,20935,20935,20934,20934,20933,20933,20932,20932,20931,20931,20969,20975,20974,20974,21000,21000,20999,20999,20998,20998,20997,20997,20996,20996,20995,20995,20994,20994,20993,20993,20992,20992,20991,20991,20990,20990,20989,20989,20988,20988,20987,20987,20986,20986,20985,20985,20984,20984,20983,20983,20982,20982,20981,20981,20980,20980,20979,20979,20978,20978,20977,20977,20976,20976,20975,21002,21001,21001,21023,21023,21022,21022,21021,21021,21020,21020,21019,21019,21018,21018,21017,21017,21016,21016,21015,21015,21014,21014,21013,21013,21012,21012,21011,21011,21010,21010,21009,21009,21008,21008,21007,21007,21006,21006,21005,21005,21004,21004,21003,21003,21002,21025,21024,21024,21030,21030,21029,21029,21028,21028,21027,21027,21026,21026,21025,21032,21031,21031,21042,21042,21041,21041,21040,21040,21039,21039,21038,21038,21037,21037,21036,21036,21035,21035,21034,21034,21033,21033,21032,21044,21043,21043,21053,21053,21052,21052,21051,21051,21050,21050,21049,21049,21048,21048,21047,21047,21046,21046,21045,21045,21044,21055,21054,21054,21072,21072,21071,21071,21070,21070,21069,21069,21068,21068,21067,21067,21066,21066,21065,21065,21064,21064,21063,21063,21062,21062,21061,21061,21060,21060,21059,21059,21058,21058,21057,21057,21056,21056,21055,21074,21073,21073,21093,21093,21092,21092,21091,21091,21090,21090,21089,21089,21088,21088,21087,21087,21086,21086,21085,21085,21084,21084,21083,21083,21082,21082,21081,21081,21080,21080,21079,21079,21078,21078,21077,21077,21076,21076,21095,21095,21097,21097,21096,21096,21094,21094,21075,21075,21074,21098,21118,21118,21117,21117,21116,21116,21120,21120,21119,21119,21115,21115,21114,21114,21113,21113,21112,21112,21111,21111,21110,21110,21109,21109,21108,21108,21107,21107,21106,21106,21105,21105,21104,21104,21103,21103,21102,21102,21101,21101,21100,21100,21099,21099,21098,21122,21121,21121,21133,21133,21132,21132,21131,21131,21130,21130,21129,21129,21128,21128,21127,21127,21126,21126,21125,21125,21124,21124,21123,21123,21122,21135,21134,21134,21147,21147,21146,21146,21145,21145,21149,21149,21148,21148,21144,21144,21143,21143,21142,21142,21141,21141,21140,21140,21139,21139,21138,21138,21137,21137,21136,21136,21135,21151,21150,21150,21161,21161,21160,21160,21159,21159,21158,21158,21157,21157,21156,21156,21155,21155,21154,21154,21153,21153,21152,21152,21151,21163,21162,21162,21185,21185,21184,21184,21183,21183,21182,21182,21181,21181,21180,21180,21179,21179,21178,21178,21177,21177,21176,21176,21175,21175,21174,21174,21173,21173,21172,21172,21171,21171,21170,21170,21169,21169,21168,21168,21167,21167,21166,21166,21165,21165,21164,21164,21163,21187,21186,21186,21208,21208,21207,21207,21206,21206,21205,21205,21204,21204,21210,21210,21203,21203,21202,21202,21201,21201,21200,21200,21199,21199,21198,21198,21197,21197,21209,21209,21196,21196,21195,21195,21194,21194,21193,21193,21192,21192,21191,21191,21190,21190,21189,21189,21188,21188,21187,21212,21211,21211,21222,21222,21221,21221,21220,21220,21219,21219,21218,21218,21217,21217,21216,21216,21215,21215,21214,21214,21213,21213,21212,21224,21223,21223,21235,21235,21234,21234,21233,21233,21232,21232,21231,21231,21230,21230,21229,21229,21228,21228,21227,21227,21226,21226,21236,21236,21225,21225,21224,21238,21237,21237,21261,21261,21260,21260,21259,21259,21258,21258,21257,21257,21256,21256,21255,21255,21254,21254,21253,21253,21263,21263,21264,21264,21266,21266,21267,21267,21265,21265,21262,21262,21252,21252,21251,21251,21250,21250,21249,21249,21248,21248,21247,21247,21246,21246,21245,21245,21244,21244,21243,21243,21242,21242,21241,21241,21240,21240,21239,21239,21238,21269,21268,21268,21284,21284,21283,21283,21282,21282,21281,21281,21280,21280,21287,21287,21286,21286,21279,21279,21278,21278,21277,21277,21276,21276,21275,21275,21274,21274,21273,21273,21272,21272,21271,21271,21285,21285,21270,21270,21269,21289,21288,21288,21301,21301,21300,21300,21299,21299,21298,21298,21297,21297,21302,21302,21296,21296,21295,21295,21294,21294,21293,21293,21292,21292,21291,21291,21290,21290,21289,21304,21303,21303,21317,21317,21316,21316,21315,21315,21314,21314,21313,21313,21312,21312,21311,21311,21310,21310,21309,21309,21308,21308,21307,21307,21306,21306,21305,21305,21304,21319,21318,21318,21333,21333,21332,21332,21331,21331,21330,21330,21329,21329,21328,21328,21327,21327,21326,21326,21325,21325,21324,21324,21323,21323,21322,21322,21321,21321,21320,21320,21319,21335,21334,21334,21343,21343,21342,21342,21341,21341,21340,21340,21339,21339,21338,21338,21337,21337,21336,21336,21335,21345,21344,21344,21351,21351,21350,21350,21349,21349,21348,21348,21347,21347,21346,21346,21345,21353,21352,21352,21357,21357,21356,21356,21355,21355,21354,21354,21353,21358,21365,21365,21364,21364,21363,21363,21362,21362,21361,21361,21360,21360,21359,21359,21358,915,1815,1815,1845,1845,1764,1764,1457,1457,1458,1458,1459,1459,1460,1460,1461,1461,1462,1462,1463,1463,1765,1765,1464,1464,1465,1465,21382,21382,21386,21386,21381,21381,21380,21380,21379,21379,21378,21378,21377,21377,21376,21376,21375,21375,21374,21374,21373,21373,21384,21384,21372,21372,21371,21371,21370,21370,21369,21369,21368,21368,21367,21367,21366,21366,21385,21385,21383,21383,904,904,905,905,906,906,907,907,908,908,909,909,910,910,911,911,912,912,913,913,914,914,915,21387,21393,21393,21392,21392,21391,21391,21390,21390,21389,21389,21388,21388,21387,21394,21402,21402,21401,21401,21400,21400,21399,21399,21398,21398,21397,21397,21396,21396,21395,21395,21394,21404,21403,21403,21546,21546,21545,21545,21544,21544,21543,21543,21555,21555,21542,21542,21541,21541,21540,21540,21539,21539,21538,21538,21562,21562,21567,21567,21537,21537,21536,21536,21535,21535,21534,21534,21533,21533,21561,21561,21566,21566,21568,21568,21565,21565,21554,21554,21532,21532,21531,21531,21530,21530,21529,21529,21528,21528,21527,21527,21526,21526,21525,21525,21524,21524,21523,21523,21560,21560,21522,21522,21521,21521,21520,21520,21519,21519,21518,21518,21517,21517,21516,21516,21515,21515,21559,21559,21553,21553,21514,21514,21513,21513,21512,21512,21511,21511,21510,21510,21509,21509,21508,21508,21507,21507,21506,21506,21505,21505,21552,21552,21504,21504,21503,21503,21502,21502,21501,21501,21500,21500,21499,21499,21498,21498,21551,21551,21497,21497,21496,21496,21495,21495,21494,21494,21493,21493,21576,21576,21578,21578,21579,21579,21550,21550,21492,21492,21491,21491,21490,21490,21489,21489,21488,21488,21487,21487,21486,21486,21485,21485,21484,21484,21483,21483,21564,21564,21574,21574,21573,21573,21549,21549,21482,21482,21481,21481,21480,21480,21479,21479,21478,21478,21477,21477,21476,21476,21475,21475,21474,21474,21473,21473,21472,21472,21471,21471,21470,21470,21469,21469,21468,21468,21467,21467,21466,21466,21465,21465,21464,21464,21463,21463,21462,21462,21461,21461,21460,21460,21459,21459,21458,21458,21457,21457,21456,21456,21455,21455,21454,21454,21453,21453,21452,21452,21548,21548,21451,21451,21450,21450,21449,21449,21448,21448,21447,21447,21446,21446,21572,21572,21558,21558,21445,21445,81,81,82,82,83,83,84,84,110,110,115,115,85,85,86,86,87,87,88,88,89,89,120,120,116,116,90,90,91,91,92,92,93,93,94,94,95,95,96,96,130,130,126,126,97,97,98,98,99,99,111,111,100,100,101,101,102,102,103,103,104,104,0,0,1,1,21444,21444,21443,21443,21442,21442,21441,21441,21557,21557,21440,21440,21439,21439,21438,21438,21437,21437,21436,21436,21435,21435,21434,21434,21433,21433,21432,21432,21431,21431,21563,21563,21430,21430,21429,21429,21428,21428,21427,21427,21426,21426,21425,21425,21424,21424,21571,21571,21577,21577,21570,21570,21547,21547,21423,21423,21422,21422,21421,21421,21420,21420,21419,21419,21418,21418,21417,21417,21416,21416,21415,21415,21414,21414,21413,21413,21412,21412,21411,21411,21410,21410,21556,21556,21409,21409,21408,21408,21407,21407,21406,21406,21405,21405,21404,21580,21589,21589,21588,21588,21587,21587,21586,21586,21585,21585,21584,21584,21583,21583,21582,21582,21581,21581,21580,21591,21590,21590,21601,21601,21600,21600,21599,21599,21598,21598,21597,21597,21596,21596,21595,21595,21594,21594,21593,21593,21602,21602,21592,21592,21591,21604,21603,21603,21607,21607,21606,21606,21605,21605,21604,21609,21608,21608,21612,21612,21611,21611,21610,21610,21609,21614,21613,21613,23178,23178,23177,23177,23176,23176,23175,23175,23174,23174,23173,23173,23172,23172,23171,23171,23170,23170,23169,23169,23168,23168,23167,23167,23499,23499,23403,23403,23166,23166,23165,23165,23164,23164,23163,23163,23162,23162,23161,23161,23160,23160,23159,23159,23158,23158,23157,23157,23272,23272,23156,23156,23155,23155,23154,23154,23153,23153,23152,23152,23151,23151,23150,23150,23149,23149,23148,23148,23147,23147,23146,23146,23145,23145,23144,23144,23143,23143,23142,23142,23141,23141,23470,23470,23517,23517,23534,23534,23140,23140,23139,23139,23138,23138,23137,23137,23136,23136,23135,23135,23134,23134,23548,23548,23533,23533,23516,23516,23133,23133,23132,23132,23131,23131,23130,23130,23129,23129,23128,23128,23127,23127,23126,23126,23125,23125,23124,23124,23123,23123,23122,23122,23121,23121,23120,23120,23119,23119,23118,23118,23117,23117,23116,23116,23115,23115,23402,23402,23469,23469,23498,23498,23401,23401,23271,23271,23114,23114,23113,23113,23112,23112,23111,23111,23110,23110,23109,23109,23270,23270,23108,23108,23107,23107,23106,23106,23105,23105,23104,23104,23269,23269,23103,23103,23102,23102,23101,23101,23100,23100,23099,23099,23400,23400,23098,23098,23097,23097,23096,23096,23095,23095,23094,23094,23093,23093,23092,23092,23091,23091,23090,23090,23089,23089,23088,23088,23087,23087,23086,23086,23085,23085,23084,23084,23083,23083,23082,23082,23081,23081,23080,23080,23079,23079,23078,23078,23077,23077,23076,23076,23075,23075,23074,23074,23073,23073,23348,23348,23072,23072,23071,23071,23070,23070,23069,23069,23068,23068,23067,23067,23066,23066,23065,23065,23064,23064,23063,23063,23399,23399,23347,23347,23268,23268,23062,23062,23061,23061,23060,23060,23059,23059,23058,23058,23057,23057,23056,23056,23055,23055,23054,23054,23053,23053,23052,23052,23051,23051,23267,23267,23438,23438,23532,23532,23547,23547,23557,23557,23576,23576,23564,23564,23556,23556,23546,23546,23531,23531,23497,23497,23050,23050,23049,23049,23048,23048,23047,23047,23046,23046,23045,23045,23044,23044,23346,23346,23398,23398,23468,23468,23437,23437,23043,23043,23042,23042,23041,23041,23040,23040,23039,23039,23038,23038,23037,23037,23036,23036,23035,23035,23397,23397,23034,23034,23033,23033,23032,23032,23031,23031,23030,23030,23029,23029,23028,23028,23345,23345,23467,23467,23266,23266,23027,23027,23026,23026,23025,23025,23344,23344,23024,23024,23023,23023,23022,23022,23265,23265,23396,23396,23589,23589,23545,23545,23515,23515,23021,23021,23020,23020,23019,23019,23018,23018,23017,23017,23016,23016,23015,23015,23014,23014,23013,23013,23012,23012,23011,23011,23010,23010,23009,23009,23343,23343,23436,23436,23466,23466,23496,23496,23264,23264,23008,23008,23007,23007,23006,23006,23342,23342,23395,23395,23005,23005,23004,23004,23003,23003,23002,23002,23001,23001,23000,23000,22999,22999,22998,22998,22997,22997,22996,22996,22995,22995,22994,22994,22993,22993,22992,22992,22991,22991,22990,22990,23465,23465,23435,23435,22989,22989,22988,22988,22987,22987,22986,22986,22985,22985,23263,23263,23394,23394,23563,23563,23575,23575,23464,23464,23434,23434,23393,23393,23262,23262,22984,22984,22983,22983,22982,22982,23341,23341,23463,23463,23392,23392,22981,22981,22980,22980,22979,22979,23261,23261,22978,22978,22977,22977,22976,22976,22975,22975,22974,22974,22973,22973,22972,22972,22971,22971,22970,22970,22969,22969,23260,23260,22968,22968,22967,22967,22966,22966,22965,22965,22964,22964,22963,22963,22962,22962,22961,22961,22960,22960,23259,23259,23340,23340,22959,22959,22958,22958,22957,22957,22956,22956,22955,22955,22954,22954,22953,22953,22952,22952,23588,23588,23574,23574,23514,23514,23495,23495,23462,23462,22951,22951,22950,22950,22949,22949,22948,22948,22947,22947,22946,22946,22945,22945,22944,22944,22943,22943,22942,22942,22941,22941,23391,23391,23390,23390,22940,22940,22939,22939,22938,22938,22937,22937,22936,22936,22935,22935,22934,22934,22933,22933,22932,22932,22931,22931,22930,22930,22929,22929,22928,22928,22927,22927,22926,22926,22925,22925,22924,22924,22923,22923,22922,22922,22921,22921,22920,22920,22919,22919,22918,22918,22917,22917,23258,23258,23389,23389,22916,22916,22915,22915,22914,22914,22913,22913,22912,22912,23388,23388,22911,22911,22910,22910,22909,22909,22908,22908,22907,22907,23339,23339,23433,23433,23494,23494,23387,23387,23338,23338,22906,22906,22905,22905,22904,22904,22903,22903,22902,22902,22901,22901,22900,22900,22899,22899,23257,23257,22898,22898,22897,22897,22896,22896,22895,22895,22894,22894,22893,22893,22892,22892,22891,22891,22890,22890,22889,22889,22888,22888,22887,22887,22886,22886,22885,22885,23337,23337,23432,23432,23493,23493,22884,22884,22883,22883,22882,22882,22881,22881,22880,22880,22879,22879,23256,23256,23386,23386,22878,22878,22877,22877,22876,22876,22875,22875,22874,22874,22873,22873,22872,22872,22871,22871,22870,22870,22869,22869,22868,22868,22867,22867,22866,22866,22865,22865,22864,22864,23336,23336,23385,23385,23461,23461,23653,23653,23562,23562,23555,23555,23255,23255,22863,22863,22862,22862,22861,22861,22860,22860,22859,22859,22858,22858,22857,22857,22856,22856,22855,22855,22854,22854,22853,22853,22852,22852,22851,22851,22850,22850,22849,22849,22848,22848,22847,22847,23254,23254,22846,22846,22845,22845,22844,22844,22843,22843,22842,22842,22841,22841,22840,22840,22839,22839,22838,22838,22837,22837,22836,22836,22835,22835,22834,22834,22833,22833,22832,22832,22831,22831,22830,22830,23460,23460,23384,23384,22829,22829,22828,22828,22827,22827,22826,22826,22825,22825,23335,23335,23513,23513,23492,23492,23253,23253,22824,22824,22823,22823,22822,22822,22821,22821,22820,22820,22819,22819,22818,22818,22817,22817,22816,22816,22815,22815,22814,22814,22813,22813,23334,23334,23459,23459,23252,23252,22812,22812,22811,22811,22810,22810,22809,22809,22808,22808,22807,22807,22806,22806,22805,22805,22804,22804,22803,22803,22802,22802,22801,22801,22800,22800,22799,22799,22798,22798,22797,22797,22796,22796,22795,22795,22794,22794,22793,22793,22792,22792,22791,22791,22790,22790,22789,22789,22788,22788,22787,22787,22786,22786,22785,22785,22784,22784,22783,22783,22782,22782,22781,22781,22780,22780,22779,22779,22778,22778,22777,22777,22776,22776,22775,22775,22774,22774,22773,22773,22772,22772,22771,22771,22770,22770,22769,22769,22768,22768,22767,22767,22766,22766,22765,22765,22764,22764,22763,22763,22762,22762,22761,22761,22760,22760,22759,22759,22758,22758,22757,22757,22756,22756,23383,23383,23458,23458,23251,23251,22755,22755,22754,22754,22753,22753,23333,23333,23544,23544,22752,22752,22751,22751,22750,22750,23573,23573,23543,23543,23530,23530,23512,23512,23491,23491,22749,22749,22748,22748,22747,22747,22746,22746,22745,22745,22744,22744,22743,22743,22742,22742,22741,22741,22740,22740,22739,22739,22738,22738,22737,22737,23332,23332,23431,23431,23457,23457,23430,23430,22736,22736,22735,22735,22734,22734,22733,22733,22732,22732,22731,22731,22730,22730,22729,22729,22728,22728,23331,23331,23250,23250,22727,22727,22726,22726,22725,22725,22724,22724,22723,22723,22722,22722,22721,22721,22720,22720,22719,22719,22718,22718,22717,22717,22716,22716,23330,23330,23429,23429,23456,23456,23490,23490,23529,23529,22715,22715,22714,22714,22713,22713,22712,22712,22711,22711,22710,22710,22709,22709,22708,22708,22707,22707,22706,22706,23329,23329,23249,23249,22705,22705,22704,22704,22703,22703,22702,22702,22701,22701,22700,22700,22699,22699,22698,22698,22697,22697,23248,23248,22696,22696,22695,22695,22694,22694,22693,22693,22692,22692,23247,23247,22691,22691,22690,22690,22689,22689,22688,22688,22687,22687,22686,22686,22685,22685,23382,23382,22684,22684,22683,22683,22682,22682,22681,22681,22680,22680,22679,22679,22678,22678,22677,22677,22676,22676,22675,22675,22674,22674,22673,22673,22672,22672,23328,23328,22671,22671,22670,22670,22669,22669,22668,22668,22667,22667,23246,23246,22666,22666,22665,22665,22664,22664,22663,22663,22662,22662,22661,22661,22660,22660,22659,22659,22658,22658,22657,22657,22656,22656,22655,22655,22654,22654,22653,22653,23327,23327,23326,23326,23245,23245,22652,22652,22651,22651,22650,22650,22649,22649,22648,22648,22647,22647,22646,22646,22645,22645,22644,22644,22643,22643,22642,22642,22641,22641,23381,23381,23428,23428,23325,23325,22640,22640,22639,22639,22638,22638,22637,22637,22636,22636,22635,22635,22634,22634,22633,22633,22632,22632,22631,22631,22630,22630,22629,22629,22628,22628,22627,22627,23380,23380,22626,22626,22625,22625,22624,22624,22623,22623,22622,22622,22621,22621,22620,22620,22619,22619,22618,22618,22617,22617,22616,22616,22615,22615,22614,22614,22613,22613,23244,23244,22612,22612,22611,22611,22610,22610,22609,22609,22608,22608,22607,22607,22606,22606,22605,22605,22604,22604,22603,22603,23243,23243,22602,22602,22601,22601,22600,22600,22599,22599,22598,22598,22597,22597,22596,22596,22595,22595,22594,22594,22593,22593,22592,22592,22591,22591,23324,23324,22590,22590,22589,22589,22588,22588,22587,22587,22586,22586,22585,22585,22584,22584,22583,22583,22582,22582,22581,22581,22580,22580,22579,22579,22578,22578,22577,22577,22576,22576,22575,22575,22574,22574,22573,22573,22572,22572,22571,22571,22570,22570,22569,22569,22568,22568,22567,22567,22566,22566,22565,22565,22564,22564,23528,23528,23323,23323,22563,22563,22562,22562,22561,22561,23242,23242,22560,22560,22559,22559,22558,22558,23241,23241,23379,23379,22557,22557,22556,22556,22555,22555,22554,22554,22553,22553,22552,22552,22551,22551,22550,22550,22549,22549,22548,22548,22547,22547,22546,22546,22545,22545,22544,22544,22543,22543,22542,22542,22541,22541,22540,22540,22539,22539,22538,22538,22537,22537,22536,22536,23240,23240,22535,22535,22534,22534,22533,22533,22532,22532,22531,22531,22530,22530,22529,22529,22528,22528,22527,22527,22526,22526,22525,22525,22524,22524,22523,22523,23239,23239,22522,22522,22521,22521,22520,22520,22519,22519,22518,22518,22517,22517,22516,22516,22515,22515,22514,22514,22513,22513,22512,22512,22511,22511,22510,22510,22509,22509,22508,22508,22507,22507,22506,22506,22505,22505,22504,22504,22503,22503,22502,22502,22501,22501,22500,22500,22499,22499,23238,23238,23378,23378,23488,23488,23455,23455,23322,23322,22498,22498,22497,22497,22496,22496,22495,22495,22494,22494,22493,22493,22492,22492,22491,22491,22490,22490,22489,22489,23427,23427,23426,23426,23377,23377,23237,23237,22488,22488,22487,22487,22486,22486,22485,22485,22484,22484,22483,22483,22482,22482,22481,22481,22480,22480,22479,22479,22478,22478,22477,22477,22476,22476,23236,23236,23235,23235,22475,22475,22474,22474,22473,22473,22472,22472,22471,22471,22470,22470,22469,22469,22468,22468,22467,22467,22466,22466,22465,22465,23376,23376,23425,23425,23424,23424,22464,22464,22463,22463,22462,22462,22461,22461,22460,22460,22459,22459,22458,22458,22457,22457,22456,22456,22455,22455,22454,22454,22453,22453,22452,22452,23234,23234,22451,22451,22450,22450,22449,22449,22448,22448,22447,22447,22446,22446,22445,22445,22444,22444,22443,22443,22442,22442,22441,22441,22440,22440,22439,22439,22438,22438,22437,22437,22436,22436,22435,22435,23321,23321,23487,23487,23486,23486,23320,23320,22434,22434,22433,22433,22432,22432,22431,22431,22430,22430,22429,22429,22428,22428,23233,23233,23319,23319,23423,23423,23454,23454,22427,22427,22426,22426,22425,22425,22424,22424,22423,22423,23232,23232,22422,22422,22421,22421,22420,22420,22419,22419,22418,22418,22417,22417,22416,22416,23318,23318,23375,23375,23485,23485,23317,23317,22415,22415,22414,22414,22413,22413,22412,22412,22411,22411,23422,23422,22410,22410,22409,22409,22408,22408,23231,23231,22407,22407,22406,22406,22405,22405,22404,22404,22403,22403,22402,22402,22401,22401,22400,22400,22399,22399,22398,22398,22397,22397,22396,22396,22395,22395,22394,22394,22393,22393,23230,23230,22392,22392,22391,22391,22390,22390,22389,22389,22388,22388,22387,22387,22386,22386,22385,22385,22384,22384,22383,22383,22382,22382,22381,22381,22380,22380,23316,23316,22379,22379,22378,22378,22377,22377,23229,23229,22376,22376,22375,22375,22374,22374,22373,22373,22372,22372,22371,22371,22370,22370,22369,22369,22368,22368,22367,22367,23484,23484,23374,23374,23228,23228,22366,22366,22365,22365,22364,22364,22363,22363,22362,22362,22361,22361,22360,22360,23421,23421,22359,22359,22358,22358,22357,22357,22356,22356,22355,22355,22354,22354,22353,22353,23227,23227,22352,22352,22351,22351,22350,22350,22349,22349,22348,22348,23315,23315,22347,22347,22346,22346,22345,22345,22344,22344,22343,22343,22342,22342,22341,22341,22340,22340,22339,22339,22338,22338,22337,22337,22336,22336,22335,22335,22334,22334,22333,22333,22332,22332,22331,22331,22330,22330,22329,22329,22328,22328,22327,22327,22326,22326,22325,22325,22324,22324,22323,22323,23314,23314,22322,22322,22321,22321,22320,22320,22319,22319,22318,22318,22317,22317,22316,22316,22315,22315,22314,22314,22313,22313,22312,22312,22311,22311,22310,22310,22309,22309,22308,22308,22307,22307,22306,22306,22305,22305,22304,22304,22303,22303,22302,22302,22301,22301,22300,22300,23373,23373,22299,22299,22298,22298,22297,22297,23372,23372,22296,22296,22295,22295,22294,22294,22293,22293,22292,22292,22291,22291,22290,22290,23226,23226,23483,23483,22289,22289,22288,22288,22287,22287,22286,22286,22285,22285,22284,22284,22283,22283,22282,22282,22281,22281,23225,23225,23420,23420,23224,23224,22280,22280,22279,22279,22278,22278,22277,22277,22276,22276,22275,22275,22274,22274,22273,22273,22272,22272,22271,22271,22270,22270,22269,22269,22268,22268,22267,22267,22266,22266,22265,22265,22264,22264,22263,22263,22262,22262,22261,22261,22260,22260,22259,22259,22258,22258,22257,22257,22256,22256,22255,22255,23526,23526,23482,23482,23453,23453,23419,23419,23313,23313,22254,22254,22253,22253,22252,22252,22251,22251,22250,22250,22249,22249,22248,22248,22247,22247,22246,22246,22245,22245,22244,22244,22243,22243,22242,22242,22241,22241,22240,22240,22239,22239,22238,22238,22237,22237,22236,22236,23371,23371,23223,23223,22235,22235,22234,22234,22233,22233,23312,23312,23481,23481,23525,23525,23552,23552,22232,22232,22231,22231,22230,22230,22229,22229,22228,22228,22227,22227,22226,22226,22225,22225,22224,22224,22223,22223,22222,22222,22221,22221,22220,22220,22219,22219,22218,22218,22217,22217,22216,22216,23222,23222,22215,22215,22214,22214,22213,22213,22212,22212,22211,22211,22210,22210,23370,23370,23452,23452,23509,23509,23221,23221,22209,22209,22208,22208,22207,22207,22206,22206,22205,22205,22204,22204,22203,22203,22202,22202,22201,22201,22200,22200,22199,22199,23311,23311,22198,22198,22197,22197,22196,22196,22195,22195,22194,22194,23220,23220,22193,22193,22192,22192,22191,22191,23451,23451,23310,23310,22190,22190,22189,22189,22188,22188,23219,23219,23369,23369,23309,23309,22187,22187,22186,22186,22185,22185,22184,22184,22183,22183,22182,22182,22181,22181,22180,22180,22179,22179,22178,22178,22177,22177,22176,22176,22175,22175,23218,23218,22174,22174,22173,22173,22172,22172,23308,23308,22171,22171,22170,22170,22169,22169,22168,22168,22167,22167,23368,23368,23480,23480,23551,23551,23367,23367,23217,23217,22166,22166,22165,22165,22164,22164,23307,23307,23581,23581,23567,23567,23539,23539,23418,23418,22163,22163,22162,22162,22161,22161,22160,22160,22159,22159,22158,22158,22157,22157,22156,22156,22155,22155,22154,22154,22153,22153,22152,22152,22151,22151,22150,22150,22149,22149,22148,22148,22147,22147,22146,22146,22145,22145,23306,23306,23417,23417,23479,23479,23508,23508,23524,23524,23450,23450,22144,22144,22143,22143,22142,22142,22141,22141,22140,22140,22139,22139,22138,22138,22137,22137,23216,23216,23366,23366,22136,22136,22135,22135,22134,22134,22133,22133,22132,22132,22131,22131,22130,22130,22129,22129,22128,22128,22127,22127,22126,22126,22125,22125,22124,22124,23215,23215,23214,23214,22123,22123,22122,22122,22121,22121,23305,23305,23566,23566,23304,23304,22120,22120,22119,22119,22118,22118,23213,23213,23212,23212,22117,22117,22116,22116,22115,22115,22114,22114,22113,22113,22112,22112,23303,23303,23365,23365,22111,22111,22110,22110,22109,22109,22108,22108,22107,22107,22106,22106,22105,22105,22104,22104,22103,22103,22102,22102,22101,22101,22100,22100,22099,22099,23302,23302,22098,22098,22097,22097,22096,22096,22095,22095,22094,22094,22093,22093,22092,22092,22091,22091,23507,23507,23523,23523,23416,23416,22090,22090,22089,22089,22088,22088,22087,22087,22086,22086,22085,22085,22084,22084,23301,23301,22083,22083,22082,22082,22081,22081,22080,22080,22079,22079,22078,22078,22077,22077,23300,23300,23415,23415,22076,22076,22075,22075,22074,22074,23211,23211,22073,22073,22072,22072,22071,22071,22070,22070,22069,22069,22068,22068,22067,22067,22066,22066,22065,22065,22064,22064,23210,23210,22063,22063,22062,22062,22061,22061,23414,23414,23299,23299,23209,23209,22060,22060,22059,22059,22058,22058,23449,23449,22057,22057,22056,22056,22055,22055,22054,22054,22053,22053,22052,22052,22051,22051,23208,23208,23364,23364,23207,23207,22050,22050,22049,22049,22048,22048,23298,23298,23363,23363,23362,23362,22047,22047,22046,22046,22045,22045,22044,22044,22043,22043,23297,23297,23610,23610,23206,23206,22042,22042,22041,22041,22040,22040,23296,23296,22039,22039,22038,22038,22037,22037,22036,22036,22035,22035,22034,22034,22033,22033,23295,23295,22032,22032,22031,22031,22030,22030,23205,23205,22029,22029,22028,22028,22027,22027,22026,22026,22025,22025,22024,22024,22023,22023,22022,22022,22021,22021,22020,22020,22019,22019,22018,22018,22017,22017,22016,22016,22015,22015,22014,22014,22013,22013,22012,22012,22011,22011,23204,23204,23413,23413,23478,23478,22010,22010,22009,22009,22008,22008,22007,22007,22006,22006,22005,22005,22004,22004,23294,23294,22003,22003,22002,22002,22001,22001,22000,22000,21999,21999,21998,21998,21997,21997,23412,23412,23477,23477,23203,23203,21996,21996,21995,21995,21994,21994,23522,23522,23506,23506,21993,21993,21992,21992,21991,21991,21990,21990,21989,21989,21988,21988,21987,21987,21986,21986,21985,21985,21984,21984,21983,21983,21982,21982,21981,21981,23293,23293,23411,23411,23448,23448,23476,23476,23361,23361,21980,21980,21979,21979,21978,21978,23202,23202,23292,23292,21977,21977,21976,21976,21975,21975,21974,21974,21973,21973,21972,21972,21971,21971,23201,23201,23447,23447,21970,21970,21969,21969,21968,21968,23200,23200,21967,21967,21966,21966,21965,21965,23475,23475,23446,23446,23199,23199,21964,21964,21963,21963,21962,21962,21961,21961,21960,21960,21959,21959,21958,21958,21957,21957,21956,21956,21955,21955,21954,21954,21953,21953,21952,21952,21951,21951,23360,23360,21950,21950,21949,21949,21948,21948,21947,21947,21946,21946,23291,23291,23359,23359,23290,23290,21945,21945,21944,21944,21943,21943,23198,23198,23197,23197,21942,21942,21941,21941,21940,21940,23289,23289,23445,23445,23505,23505,23196,23196,21939,21939,21938,21938,21937,21937,21936,21936,21935,21935,21934,21934,21933,21933,21932,21932,21931,21931,21930,21930,21929,21929,23195,23195,21928,21928,21927,21927,21926,21926,23288,23288,23358,23358,21925,21925,21924,21924,21923,21923,21922,21922,21921,21921,23287,23287,23286,23286,21920,21920,21919,21919,21918,21918,21917,21917,21916,21916,21915,21915,21914,21914,21913,21913,21912,21912,21911,21911,23285,23285,23357,23357,23284,23284,21910,21910,21909,21909,21908,21908,21907,21907,21906,21906,23538,23538,23474,23474,23356,23356,23194,23194,21905,21905,21904,21904,21903,21903,21902,21902,21901,21901,21900,21900,21899,21899,21898,21898,21897,21897,21896,21896,21895,21895,21894,21894,21893,21893,21892,21892,23355,23355,23444,23444,21891,21891,21890,21890,21889,21889,21888,21888,21887,21887,21886,21886,21885,21885,21884,21884,21883,21883,23193,23193,21882,21882,21881,21881,21880,21880,21879,21879,21878,21878,21877,21877,21876,21876,21875,21875,21874,21874,21873,21873,21872,21872,21871,21871,21870,21870,21869,21869,21868,21868,21867,21867,21866,21866,21865,21865,21864,21864,21863,21863,21862,21862,21861,21861,21860,21860,21859,21859,21858,21858,23283,23283,21857,21857,21856,21856,21855,21855,23192,23192,23579,23579,23605,23605,23504,23504,23410,23410,23191,23191,21854,21854,21853,21853,21852,21852,21851,21851,21850,21850,21849,21849,21848,21848,23282,23282,21847,21847,21846,21846,21845,21845,21844,21844,21843,21843,21842,21842,21841,21841,21840,21840,21839,21839,21838,21838,21837,21837,21836,21836,21835,21835,21834,21834,23409,23409,21833,21833,21832,21832,21831,21831,21830,21830,21829,21829,21828,21828,21827,21827,23190,23190,21826,21826,21825,21825,21824,21824,21823,21823,21822,21822,21821,21821,21820,21820,21819,21819,21818,21818,21817,21817,21816,21816,21815,21815,21814,21814,21813,21813,21812,21812,21811,21811,21810,21810,21809,21809,21808,21808,21807,21807,21806,21806,21805,21805,21804,21804,23443,23443,21803,21803,21802,21802,21801,21801,21800,21800,21799,21799,21798,21798,21797,21797,21796,21796,21795,21795,21794,21794,21793,21793,21792,21792,23281,23281,23521,23521,23537,23537,23558,23558,23442,23442,23408,23408,23354,23354,21791,21791,21790,21790,21789,21789,21788,21788,21787,21787,21786,21786,21785,21785,23550,23550,23536,23536,23441,23441,23189,23189,21784,21784,21783,21783,21782,21782,21781,21781,21780,21780,21779,21779,21778,21778,21777,21777,23280,23280,21776,21776,21775,21775,21774,21774,21773,21773,21772,21772,21771,21771,21770,21770,21769,21769,21768,21768,21767,21767,21766,21766,21765,21765,21764,21764,21763,21763,21762,21762,21761,21761,21760,21760,21759,21759,21758,21758,21757,21757,21756,21756,21755,21755,21754,21754,23279,23279,21753,21753,21752,21752,21751,21751,21750,21750,21749,21749,21748,21748,21747,21747,21746,21746,21745,21745,23278,23278,23407,23407,23520,23520,23535,23535,23519,23519,23473,23473,23353,23353,21744,21744,21743,21743,21742,21742,21741,21741,21740,21740,21739,21739,21738,21738,21737,21737,21736,21736,21735,21735,21734,21734,21733,21733,23188,23188,21732,21732,21731,21731,21730,21730,23277,23277,23440,23440,23503,23503,23472,23472,23352,23352,23187,23187,21729,21729,21728,21728,21727,21727,21726,21726,21725,21725,21724,21724,21723,21723,21722,21722,21721,21721,21720,21720,21719,21719,21718,21718,21717,21717,21716,21716,21715,21715,21714,21714,21713,21713,21712,21712,21711,21711,21710,21710,21709,21709,23186,23186,23406,23406,21708,21708,21707,21707,21706,21706,23405,23405,23351,23351,23185,23185,21705,21705,21704,21704,21703,21703,21702,21702,21701,21701,21700,21700,21699,21699,21698,21698,21697,21697,23502,23502,23471,23471,21696,21696,21695,21695,21694,21694,21693,21693,21692,21692,21691,21691,21690,21690,21689,21689,21688,21688,21687,21687,21686,21686,23350,23350,23439,23439,23501,23501,23349,23349,23184,23184,21685,21685,21684,21684,21683,21683,21682,21682,21681,21681,23183,23183,23276,23276,21680,21680,21679,21679,21678,21678,21677,21677,21676,21676,21675,21675,21674,21674,21673,21673,21672,21672,23275,23275,23404,23404,23518,23518,21671,21671,21670,21670,21669,21669,23182,23182,21668,21668,21667,21667,21666,21666,21665,21665,21664,21664,21663,21663,21662,21662,21661,21661,21660,21660,21659,21659,21658,21658,21657,21657,21656,21656,21655,21655,21654,21654,21653,21653,21652,21652,21651,21651,21650,21650,23181,23181,21649,21649,21648,21648,21647,21647,21646,21646,21645,21645,21644,21644,21643,21643,23500,23500,23549,23549,21642,21642,21641,21641,21640,21640,23180,23180,21639,21639,21638,21638,21637,21637,21636,21636,21635,21635,21634,21634,21633,21633,23274,23274,21632,21632,21631,21631,21630,21630,21629,21629,21628,21628,23273,23273,21627,21627,21626,21626,21625,21625,21624,21624,21623,21623,21622,21622,21621,21621,21620,21620,21619,21619,21618,21618,23179,23179,21617,21617,21616,21616,21615,21615,21614,23739,23791,23791,23790,23790,23789,23789,23788,23788,23787,23787,23786,23786,23785,23785,23784,23784,23783,23783,23782,23782,23781,23781,23780,23780,23779,23779,23778,23778,23777,23777,23776,23776,23775,23775,23774,23774,23773,23773,23772,23772,23771,23771,23770,23770,23769,23769,23768,23768,23793,23793,23767,23767,23766,23766,23765,23765,23764,23764,23763,23763,23792,23792,23762,23762,23761,23761,23760,23760,23759,23759,23758,23758,23757,23757,23756,23756,23755,23755,23754,23754,23753,23753,23752,23752,23751,23751,23750,23750,23749,23749,23748,23748,23747,23747,23746,23746,23745,23745,23744,23744,23743,23743,23742,23742,23741,23741,23740,23740,23739,23795,23794,23794,23809,23809,23808,23808,23807,23807,23806,23806,23805,23805,23804,23804,23803,23803,23802,23802,23801,23801,23800,23800,23799,23799,23798,23798,23797,23797,23811,23811,23810,23810,23796,23796,23795,23813,23812,23812,23826,23826,23825,23825,23824,23824,23823,23823,23822,23822,23821,23821,23820,23820,23819,23819,23818,23818,23817,23817,23816,23816,23815,23815,23814,23814,23813,23828,23827,23827,23847,23847,23846,23846,23845,23845,23844,23844,23843,23843,23842,23842,23841,23841,23840,23840,23850,23850,23839,23839,23838,23838,23837,23837,23836,23836,23835,23835,23834,23834,23833,23833,23832,23832,23849,23849,23848,23848,23831,23831,23830,23830,23829,23829,23828,23852,23851,23851,23863,23863,23862,23862,23861,23861,23860,23860,23859,23859,23858,23858,23857,23857,23856,23856,23855,23855,23854,23854,23853,23853,23852,23865,23864,23864,23876,23876,23877,23877,23875,23875,23874,23874,23873,23873,23872,23872,23871,23871,23870,23870,23869,23869,23868,23868,23867,23867,23866,23866,23865,23879,23878,23878,23909,23909,23908,23908,23907,23907,23906,23906,23905,23905,23904,23904,23903,23903,23902,23902,23901,23901,23900,23900,23899,23899,23898,23898,23897,23897,23896,23896,23913,23913,23917,23917,23911,23911,23895,23895,23894,23894,23893,23893,23892,23892,23891,23891,23890,23890,23889,23889,23888,23888,23887,23887,23886,23886,23885,23885,23884,23884,23912,23912,23914,23914,23916,23916,23915,23915,23883,23883,23882,23882,23881,23881,23910,23910,23880,23880,23879,23919,23918,23918,23927,23927,23926,23926,23925,23925,23924,23924,23923,23923,23922,23922,23921,23921,23920,23920,23919,23929,23928,23928,23937,23937,23936,23936,23935,23935,23934,23934,23933,23933,23932,23932,23931,23931,23930,23930,23929,23939,23938,23938,23947,23947,23946,23946,23945,23945,23944,23944,23943,23943,23942,23942,23941,23941,23948,23948,23940,23940,23939,23950,23949,23949,23956,23956,23955,23955,23954,23954,23953,23953,23952,23952,23951,23951,23950,23958,23957,23957,23971,23971,23970,23970,23969,23969,23968,23968,23967,23967,23966,23966,23965,23965,23964,23964,23963,23963,23962,23962,23961,23961,23960,23960,23959,23959,23958,23973,23972,23972,23980,23980,23979,23979,23978,23978,23977,23977,23976,23976,23975,23975,23974,23974,23973,23982,23981,23981,23987,23987,23986,23986,23985,23985,23984,23984,23983,23983,23982,23989,23988,23988,23998,23998,23997,23997,23996,23996,23995,23995,23994,23994,23993,23993,23992,23992,23991,23991,23990,23990,23989,24000,23999,23999,24008,24008,24007,24007,24006,24006,24005,24005,24004,24004,24003,24003,24002,24002,24001,24001,24000,24010,24009,24009,24017,24017,24016,24016,24015,24015,24014,24014,24013,24013,24012,24012,24011,24011,24010,24019,24018,24018,24026,24026,24025,24025,24024,24024,24023,24023,24022,24022,24021,24021,24020,24020,24019,24027,24034,24034,24033,24033,24032,24032,24031,24031,24030,24030,24029,24029,24028,24028,24027,24036,24035,24035,24043,24043,24042,24042,24041,24041,24040,24040,24039,24039,24038,24038,24037,24037,24036,24045,24044,24044,24052,24052,24051,24051,24050,24050,24049,24049,24048,24048,24047,24047,24046,24046,24045,24054,24053,24053,24074,24074,24073,24073,24072,24072,24071,24071,24070,24070,24069,24069,24075,24075,24068,24068,24067,24067,24066,24066,24065,24065,24064,24064,24063,24063,24062,24062,24061,24061,24060,24060,24059,24059,24058,24058,24057,24057,24056,24056,24055,24055,24054,24077,24076,24076,24105,24105,24104,24104,24103,24103,24102,24102,24101,24101,24100,24100,24099,24099,24098,24098,24097,24097,24096,24096,24095,24095,24094,24094,24093,24093,24092,24092,24091,24091,24090,24090,24089,24089,24088,24088,24087,24087,24086,24086,24085,24085,24084,24084,24083,24083,24082,24082,24081,24081,24080,24080,24079,24079,24078,24078,24077,24107,24106,24106,24122,24122,24121,24121,24120,24120,24119,24119,24118,24118,24117,24117,24116,24116,24115,24115,24114,24114,24113,24113,24112,24112,24111,24111,24123,24123,24110,24110,24109,24109,24108,24108,24107,24125,24124,24124,24150,24150,24149,24149,24148,24148,24147,24147,24146,24146,24145,24145,24144,24144,24143,24143,24142,24142,24141,24141,24140,24140,24139,24139,24138,24138,24137,24137,24136,24136,24153,24153,24151,24151,24135,24135,24134,24134,24133,24133,24152,24152,24132,24132,24131,24131,24130,24130,24129,24129,24128,24128,24127,24127,24126,24126,24125,24154,24171,24171,24170,24170,24169,24169,24168,24168,24167,24167,24166,24166,24165,24165,24164,24164,24163,24163,24162,24162,24161,24161,24160,24160,24159,24159,24158,24158,24157,24157,24173,24173,24174,24174,24172,24172,24156,24156,24155,24155,24154,24176,24175,24175,24183,24183,24182,24182,24181,24181,24180,24180,24179,24179,24178,24178,24177,24177,24176,24185,24184,24184,24193,24193,24192,24192,24191,24191,24190,24190,24189,24189,24188,24188,24187,24187,24186,24186,24185,24195,24194,24194,24199,24199,24198,24198,24197,24197,24196,24196,24195,24201,24200,24200,24215,24215,24214,24214,24213,24213,24212,24212,24211,24211,24210,24210,24217,24217,24216,24216,24209,24209,24208,24208,24207,24207,24206,24206,24205,24205,24204,24204,24203,24203,24202,24202,24201,24218,24243,24243,24242,24242,24241,24241,24240,24240,24239,24239,24238,24238,24237,24237,24236,24236,24235,24235,24234,24234,24233,24233,24232,24232,24231,24231,24230,24230,24229,24229,24228,24228,24227,24227,24226,24226,24225,24225,24224,24224,24223,24223,24222,24222,24221,24221,24220,24220,24219,24219,24218,24245,24244,24244,24252,24252,24251,24251,24250,24250,24249,24249,24248,24248,24247,24247,24246,24246,24245,24254,24253,24253,24270,24270,24269,24269,24268,24268,24267,24267,24266,24266,24271,24271,24265,24265,24264,24264,24263,24263,24262,24262,24261,24261,24260,24260,24259,24259,24258,24258,24257,24257,24256,24256,24255,24255,24254,24273,24272,24272,24289,24289,24288,24288,24287,24287,24286,24286,24285,24285,24284,24284,24283,24283,24282,24282,24281,24281,24280,24280,24279,24279,24278,24278,24277,24277,24276,24276,24275,24275,24274,24274,24273,24290,24301,24301,24300,24300,24299,24299,24298,24298,24297,24297,24296,24296,24295,24295,24294,24294,24293,24293,24292,24292,24291,24291,24290,24303,24302,24302,24305,24305,24304,24304,24303,24307,24306,24306,24313,24313,24312,24312,24311,24311,24310,24310,24309,24309,24308,24308,24307,24315,24314,24314,24326,24326,24325,24325,24324,24324,24323,24323,24322,24322,24321,24321,24320,24320,24319,24319,24318,24318,24317,24317,24327,24327,24316,24316,24315,24329,24328,24328,24334,24334,24333,24333,24332,24332,24331,24331,24330,24330,24329,24336,24335,24335,24359,24359,24358,24358,24357,24357,24356,24356,24355,24355,24354,24354,24360,24360,24362,24362,24363,24363,24361,24361,24353,24353,24352,24352,24351,24351,24350,24350,24349,24349,24348,24348,24347,24347,24346,24346,24345,24345,24344,24344,24343,24343,24342,24342,24341,24341,24340,24340,24339,24339,24338,24338,24337,24337,24336,24365,24364,24364,24371,24371,24370,24370,24369,24369,24368,24368,24367,24367,24366,24366,24365,24373,24372,24372,24380,24380,24379,24379,24378,24378,24377,24377,24376,24376,24375,24375,24374,24374,24373,24382,24381,24381,24399,24399,24398,24398,24397,24397,24402,24402,24400,24400,24396,24396,24395,24395,24394,24394,24401,24401,24393,24393,24392,24392,24391,24391,24390,24390,24389,24389,24388,24388,24387,24387,24386,24386,24385,24385,24384,24384,24383,24383,24382,24404,24403,24403,24417,24417,24416,24416,24415,24415,24414,24414,24413,24413,24412,24412,24411,24411,24410,24410,24409,24409,24408,24408,24407,24407,24406,24406,24405,24405,24404,24419,24418,24418,24425,24425,24424,24424,24423,24423,24422,24422,24421,24421,24420,24420,24419,24427,24426,24426,24434,24434,24433,24433,24432,24432,24431,24431,24430,24430,24429,24429,24428,24428,24427,24436,24435,24435,24443,24443,24442,24442,24441,24441,24440,24440,24439,24439,24438,24438,24437,24437,24436,24444,24454,24454,24453,24453,24452,24452,24451,24451,24450,24450,24449,24449,24448,24448,24447,24447,24446,24446,24445,24445,24444,24456,24455,24455,24463,24463,24462,24462,24461,24461,24460,24460,24459,24459,24458,24458,24457,24457,24456,24465,24464,24464,24469,24469,24468,24468,24467,24467,24466,24466,24465,24471,24470,24470,24475,24475,24474,24474,24473,24473,24472,24472,24471,24477,24476,24476,24487,24487,24486,24486,24485,24485,24484,24484,24483,24483,24482,24482,24481,24481,24480,24480,24479,24479,24478,24478,24477,24489,24488,24488,24492,24492,24491,24491,24490,24490,24489,24494,24493,24493,24497,24497,24496,24496,24495,24495,24494,24499,24498,24498,24503,24503,24502,24502,24501,24501,24500,24500,24499,24505,24504,24504,24513,24513,24512,24512,24511,24511,24510,24510,24509,24509,24508,24508,24507,24507,24506,24506,24505,24515,24514,24514,24518,24518,24517,24517,24516,24516,24515,24519,24556,24556,24555,24555,24554,24554,24553,24553,24552,24552,24551,24551,24550,24550,24549,24549,24548,24548,24547,24547,24546,24546,24545,24545,24544,24544,24543,24543,24542,24542,24541,24541,24540,24540,24539,24539,24538,24538,24537,24537,24536,24536,24535,24535,24534,24534,24533,24533,24532,24532,24531,24531,24530,24530,24557,24557,24558,24558,24529,24529,24528,24528,24527,24527,24526,24526,24525,24525,24524,24524,24523,24523,24522,24522,24521,24521,24520,24520,24519,24560,24559,24559,24566,24566,24565,24565,24564,24564,24563,24563,24562,24562,24561,24561,24560,24568,24567,24567,24583,24583,24582,24582,24581,24581,24580,24580,24579,24579,24578,24578,24577,24577,24576,24576,24575,24575,24574,24574,24573,24573,24572,24572,24571,24571,24570,24570,24584,24584,24569,24569,24568,24586,24585,24585,24590,24590,24589,24589,24588,24588,24587,24587,24586,24592,24591,24591,24596,24596,24595,24595,24594,24594,24593,24593,24592,24598,24597,24597,24604,24604,24603,24603,24602,24602,24601,24601,24600,24600,24599,24599,24598,24606,24605,24605,24648,24648,24645,24645,24644,24644,24643,24643,24642,24642,24641,24641,24640,24640,24639,24639,24638,24638,24637,24637,24636,24636,24635,24635,24634,24634,24633,24633,24632,24632,24651,24651,24631,24631,24630,24630,24629,24629,24628,24628,24627,24627,24650,24650,24626,24626,24625,24625,24624,24624,24647,24647,24649,24649,24623,24623,24622,24622,24621,24621,24620,24620,24619,24619,24618,24618,24617,24617,24616,24616,24615,24615,24614,24614,24613,24613,24612,24612,24611,24611,24646,24646,24610,24610,24609,24609,24608,24608,24607,24607,24606,24652,24663,24663,24662,24662,24661,24661,24660,24660,24659,24659,24658,24658,24657,24657,24656,24656,24655,24655,24654,24654,24653,24653,24652,24664,24675,24675,24674,24674,24673,24673,24672,24672,24671,24671,24670,24670,24669,24669,24668,24668,24667,24667,24666,24666,24665,24665,24664,24677,24676,24676,24684,24684,24683,24683,24682,24682,24681,24681,24680,24680,24679,24679,24678,24678,24677,24686,24685,24685,24691,24691,24690,24690,24689,24689,24688,24688,24687,24687,24686,24693,24692,24692,24697,24697,24696,24696,24695,24695,24694,24694,24693,24699,24698,24698,24709,24709,24708,24708,24707,24707,24706,24706,24705,24705,24704,24704,24703,24703,24702,24702,24701,24701,24700,24700,24699,24711,24710,24710,25628,25628,25627,25627,25737,25737,25798,25798,25797,25797,25736,25736,25626,25626,25625,25625,25624,25624,25623,25623,25622,25622,25621,25621,25620,25620,25619,25619,25618,25618,25617,25617,25735,25735,25616,25616,25615,25615,25614,25614,25690,25690,25613,25613,25612,25612,25611,25611,25610,25610,25609,25609,25608,25608,25607,25607,25606,25606,25605,25605,25834,25834,25604,25604,25603,25603,25602,25602,25689,25689,25601,25601,25600,25600,25599,25599,25598,25598,25597,25597,25688,25688,25734,25734,25774,25774,25596,25596,25595,25595,25594,25594,25593,25593,25592,25592,25733,25733,25591,25591,25590,25590,25589,25589,25588,25588,25587,25587,25586,25586,25773,25773,25816,25816,25585,25585,25584,25584,25583,25583,25582,25582,25581,25581,25732,25732,25772,25772,25687,25687,25580,25580,25579,25579,25578,25578,25577,25577,25576,25576,25575,25575,25574,25574,25573,25573,25572,25572,25571,25571,25570,25570,25569,25569,25568,25568,25567,25567,25566,25566,25565,25565,25731,25731,25564,25564,25563,25563,25562,25562,25771,25771,25686,25686,25561,25561,25560,25560,25559,25559,25558,25558,25557,25557,25556,25556,25555,25555,25554,25554,25553,25553,25685,25685,25730,25730,25552,25552,25551,25551,25550,25550,25549,25549,25548,25548,25547,25547,25847,25847,25832,25832,25546,25546,25545,25545,25544,25544,25543,25543,25542,25542,25541,25541,25540,25540,25539,25539,25770,25770,25796,25796,25684,25684,25538,25538,25537,25537,25536,25536,25535,25535,25534,25534,25683,25683,25769,25769,25861,25861,25831,25831,25533,25533,25532,25532,25531,25531,25530,25530,25529,25529,25528,25528,25527,25527,25526,25526,25525,25525,25524,25524,25768,25768,25682,25682,25523,25523,25522,25522,25521,25521,25520,25520,25519,25519,25518,25518,25517,25517,25516,25516,25681,25681,25515,25515,25514,25514,25513,25513,25512,25512,25511,25511,25510,25510,25509,25509,25508,25508,25507,25507,25506,25506,25505,25505,25680,25680,25729,25729,25504,25504,25503,25503,25502,25502,25501,25501,25500,25500,25679,25679,25499,25499,25498,25498,25497,25497,25496,25496,25495,25495,25494,25494,25493,25493,25492,25492,25491,25491,25490,25490,25489,25489,25488,25488,25487,25487,25678,25678,25486,25486,25485,25485,25484,25484,25483,25483,25482,25482,25481,25481,25480,25480,25479,25479,25478,25478,25477,25477,25476,25476,25475,25475,25474,25474,25767,25767,25473,25473,25472,25472,25471,25471,25470,25470,25469,25469,25728,25728,25815,25815,25468,25468,25467,25467,25466,25466,25465,25465,25464,25464,25727,25727,25677,25677,25463,25463,25462,25462,25461,25461,25766,25766,25830,25830,25814,25814,25676,25676,25460,25460,25459,25459,25458,25458,25457,25457,25456,25456,25675,25675,25765,25765,25455,25455,25454,25454,25453,25453,25452,25452,25451,25451,25450,25450,25449,25449,25448,25448,25447,25447,25446,25446,25445,25445,25444,25444,25443,25443,25442,25442,25441,25441,25440,25440,25439,25439,25438,25438,25437,25437,25436,25436,25726,25726,25674,25674,25435,25435,25434,25434,25433,25433,25432,25432,25431,25431,25430,25430,25429,25429,25428,25428,25427,25427,25426,25426,25425,25425,25424,25424,25423,25423,25422,25422,25421,25421,25420,25420,25419,25419,25418,25418,25417,25417,25416,25416,25415,25415,25414,25414,25413,25413,25673,25673,25725,25725,25412,25412,25411,25411,25410,25410,25409,25409,25408,25408,25672,25672,25407,25407,25406,25406,25405,25405,25724,25724,25404,25404,25403,25403,25402,25402,25671,25671,25401,25401,25400,25400,25399,25399,25398,25398,25397,25397,25396,25396,25395,25395,25394,25394,25393,25393,25764,25764,25813,25813,25723,25723,25392,25392,25391,25391,25390,25390,25389,25389,25388,25388,25387,25387,25386,25386,25385,25385,25384,25384,25722,25722,25383,25383,25382,25382,25381,25381,25380,25380,25379,25379,25378,25378,25377,25377,25376,25376,25721,25721,25795,25795,25375,25375,25374,25374,25373,25373,25372,25372,25371,25371,25670,25670,25370,25370,25369,25369,25368,25368,25367,25367,25366,25366,25365,25365,25364,25364,25363,25363,25362,25362,25361,25361,25669,25669,25360,25360,25359,25359,25358,25358,25357,25357,25356,25356,25355,25355,25354,25354,25353,25353,25352,25352,25351,25351,25720,25720,25350,25350,25349,25349,25348,25348,25668,25668,25347,25347,25346,25346,25345,25345,25812,25812,25763,25763,25719,25719,25344,25344,25343,25343,25342,25342,25341,25341,25340,25340,25718,25718,25339,25339,25338,25338,25337,25337,25336,25336,25335,25335,25334,25334,25333,25333,25332,25332,25331,25331,25330,25330,25329,25329,25328,25328,25811,25811,25794,25794,25327,25327,25326,25326,25325,25325,25324,25324,25323,25323,25322,25322,25321,25321,25320,25320,25319,25319,25318,25318,25317,25317,25316,25316,25315,25315,25829,25829,25793,25793,25314,25314,25313,25313,25312,25312,25667,25667,25311,25311,25310,25310,25309,25309,25308,25308,25307,25307,25717,25717,25762,25762,25306,25306,25305,25305,25304,25304,25303,25303,25302,25302,25716,25716,25301,25301,25300,25300,25299,25299,25298,25298,25297,25297,25296,25296,25295,25295,25294,25294,25293,25293,25792,25792,25791,25791,25715,25715,25292,25292,25291,25291,25290,25290,25289,25289,25288,25288,25287,25287,25286,25286,25285,25285,25284,25284,25666,25666,25714,25714,25665,25665,25283,25283,25282,25282,25281,25281,25280,25280,25279,25279,25664,25664,25663,25663,25278,25278,25277,25277,25276,25276,25275,25275,25274,25274,25273,25273,25272,25272,25713,25713,25662,25662,25271,25271,25270,25270,25269,25269,25268,25268,25267,25267,25661,25661,25266,25266,25265,25265,25264,25264,25263,25263,25262,25262,25261,25261,25260,25260,25259,25259,25258,25258,25257,25257,25256,25256,25255,25255,25254,25254,25253,25253,25252,25252,25251,25251,25250,25250,25249,25249,25248,25248,25247,25247,25246,25246,25245,25245,25244,25244,25243,25243,25242,25242,25712,25712,25241,25241,25240,25240,25239,25239,25238,25238,25237,25237,25828,25828,25236,25236,25235,25235,25234,25234,25233,25233,25232,25232,25231,25231,25230,25230,25229,25229,25228,25228,25227,25227,25226,25226,25225,25225,25224,25224,25223,25223,25222,25222,25660,25660,25221,25221,25220,25220,25219,25219,25218,25218,25217,25217,25790,25790,25216,25216,25215,25215,25214,25214,25213,25213,25212,25212,25211,25211,25210,25210,25761,25761,25827,25827,25209,25209,25208,25208,25207,25207,25760,25760,25659,25659,25206,25206,25205,25205,25204,25204,25203,25203,25202,25202,25201,25201,25200,25200,25199,25199,25198,25198,25197,25197,25196,25196,25195,25195,25194,25194,25193,25193,25192,25192,25191,25191,25190,25190,25189,25189,25188,25188,25187,25187,25759,25759,25186,25186,25185,25185,25184,25184,25658,25658,25845,25845,25872,25872,25886,25886,25885,25885,25183,25183,25182,25182,25181,25181,25789,25789,25758,25758,25657,25657,25180,25180,25179,25179,25178,25178,25177,25177,25176,25176,25175,25175,25174,25174,25173,25173,25172,25172,25171,25171,25170,25170,25169,25169,25168,25168,25167,25167,25656,25656,25166,25166,25165,25165,25164,25164,25711,25711,25826,25826,25871,25871,25942,25942,25985,25985,25757,25757,25655,25655,25163,25163,25162,25162,25161,25161,25710,25710,25844,25844,25654,25654,25160,25160,25159,25159,25158,25158,25653,25653,25157,25157,25156,25156,25155,25155,25154,25154,25153,25153,25152,25152,25151,25151,25150,25150,25149,25149,25148,25148,25147,25147,25146,25146,25825,25825,25652,25652,25145,25145,25144,25144,25143,25143,25142,25142,25141,25141,25140,25140,25139,25139,25138,25138,25137,25137,25709,25709,25136,25136,25135,25135,25134,25134,25651,25651,25133,25133,25132,25132,25131,25131,25130,25130,25129,25129,25128,25128,25127,25127,25788,25788,25708,25708,25650,25650,25126,25126,25125,25125,25124,25124,25123,25123,25122,25122,25824,25824,25810,25810,25787,25787,25121,25121,25120,25120,25119,25119,25118,25118,25117,25117,25116,25116,25115,25115,25114,25114,25113,25113,25112,25112,25707,25707,25823,25823,25884,25884,25904,25904,25929,25929,25984,25984,25756,25756,25111,25111,25110,25110,25109,25109,25108,25108,25107,25107,25706,25706,26028,26028,26035,26035,26036,26036,25927,25927,25856,25856,25843,25843,25649,25649,25106,25106,25105,25105,25104,25104,25103,25103,25102,25102,25101,25101,25100,25100,25099,25099,25098,25098,25097,25097,25096,25096,25095,25095,25648,25648,25094,25094,25093,25093,25092,25092,25091,25091,25090,25090,25089,25089,25088,25088,25087,25087,25755,25755,25809,25809,25647,25647,25086,25086,25085,25085,25084,25084,25083,25083,25082,25082,25081,25081,25080,25080,25079,25079,25078,25078,25077,25077,25076,25076,25646,25646,25754,25754,25075,25075,25074,25074,25073,25073,25072,25072,25071,25071,25070,25070,25069,25069,25068,25068,25067,25067,25066,25066,25808,25808,25065,25065,25064,25064,25063,25063,25062,25062,25061,25061,25060,25060,25059,25059,25058,25058,25807,25807,25057,25057,25056,25056,25055,25055,25054,25054,25053,25053,25052,25052,25051,25051,25050,25050,25049,25049,25048,25048,25047,25047,25046,25046,25045,25045,25044,25044,25043,25043,25042,25042,25041,25041,25705,25705,25786,25786,25040,25040,25039,25039,25038,25038,25037,25037,25036,25036,25035,25035,25034,25034,25033,25033,25032,25032,25753,25753,25031,25031,25030,25030,25029,25029,25028,25028,25027,25027,25645,25645,25644,25644,25026,25026,25025,25025,25024,25024,25785,25785,25643,25643,25023,25023,25022,25022,25021,25021,25020,25020,25019,25019,25018,25018,25017,25017,25016,25016,25015,25015,25014,25014,25013,25013,25012,25012,25011,25011,25010,25010,25009,25009,25008,25008,25642,25642,25752,25752,25704,25704,25641,25641,25007,25007,25006,25006,25005,25005,25004,25004,25003,25003,25002,25002,25001,25001,25000,25000,24999,24999,24998,24998,25751,25751,24997,24997,24996,24996,24995,24995,24994,24994,24993,24993,24992,24992,25703,25703,24991,24991,24990,24990,24989,24989,24988,24988,24987,24987,24986,24986,24985,24985,24984,24984,24983,24983,24982,24982,24981,24981,24980,24980,24979,24979,24978,24978,24977,24977,24976,24976,24975,24975,24974,24974,25750,25750,25784,25784,25749,25749,24973,24973,24972,24972,24971,24971,24970,24970,24969,24969,24968,24968,24967,24967,24966,24966,24965,24965,25883,25883,25822,25822,25806,25806,25783,25783,25748,25748,24964,24964,24963,24963,24962,24962,24961,24961,24960,24960,24959,24959,24958,24958,24957,24957,24956,24956,25640,25640,24955,24955,24954,24954,24953,24953,25782,25782,25747,25747,24952,24952,24951,24951,24950,24950,24949,24949,24948,24948,24947,24947,24946,24946,24945,24945,24944,24944,24943,24943,24942,24942,24941,24941,24940,24940,24939,24939,24938,24938,24937,24937,24936,24936,24935,24935,24934,24934,24933,24933,24932,24932,24931,24931,24930,24930,25781,25781,25805,25805,25780,25780,25746,25746,24929,24929,24928,24928,24927,24927,24926,24926,24925,24925,24924,24924,24923,24923,24922,24922,24921,24921,24920,24920,24919,24919,24918,24918,24917,24917,24916,24916,24915,24915,24914,24914,25855,25855,25842,25842,25804,25804,25779,25779,25702,25702,24913,24913,24912,24912,24911,24911,24910,24910,24909,24909,24908,24908,24907,24907,24906,24906,25701,25701,25821,25821,25941,25941,25841,25841,25820,25820,24905,24905,24904,24904,24903,24903,24902,24902,24901,24901,25700,25700,24900,24900,24899,24899,24898,24898,24897,24897,24896,24896,24895,24895,24894,24894,24893,24893,24892,24892,25699,25699,25803,25803,24891,24891,24890,24890,24889,24889,24888,24888,24887,24887,24886,24886,24885,24885,25639,25639,25698,25698,25778,25778,24884,24884,24883,24883,24882,24882,24881,24881,24880,24880,24879,24879,24878,24878,24877,24877,25638,25638,24876,24876,24875,24875,24874,24874,24873,24873,24872,24872,24871,24871,25777,25777,24870,24870,24869,24869,24868,24868,24867,24867,24866,24866,25637,25637,24865,24865,24864,24864,24863,24863,24862,24862,24861,24861,24860,24860,24859,24859,24858,24858,24857,24857,24856,24856,24855,24855,24854,24854,24853,24853,24852,24852,24851,24851,24850,24850,24849,24849,24848,24848,25745,25745,25802,25802,25744,25744,24847,24847,24846,24846,24845,24845,24844,24844,24843,24843,25697,25697,25696,25696,24842,24842,24841,24841,24840,24840,24839,24839,24838,24838,24837,24837,24836,24836,24835,24835,24834,24834,24833,24833,24832,24832,24831,24831,24830,24830,24829,24829,24828,24828,24827,24827,24826,24826,24825,24825,24824,24824,24823,24823,24822,24822,24821,24821,25636,25636,25776,25776,24820,24820,24819,24819,24818,24818,24817,24817,24816,24816,25695,25695,25635,25635,24815,24815,24814,24814,24813,24813,24812,24812,24811,24811,24810,24810,24809,24809,25694,25694,25743,25743,24808,24808,24807,24807,24806,24806,24805,24805,24804,24804,24803,24803,24802,24802,24801,24801,24800,24800,25634,25634,24799,24799,24798,24798,24797,24797,24796,24796,24795,24795,24794,24794,24793,24793,24792,24792,24791,24791,24790,24790,24789,24789,24788,24788,24787,24787,24786,24786,24785,24785,24784,24784,24783,24783,24782,24782,24781,24781,24780,24780,25633,25633,24779,24779,24778,24778,24777,24777,24776,24776,24775,24775,24774,24774,24773,24773,24772,24772,24771,24771,24770,24770,24769,24769,24768,24768,25742,25742,25775,25775,25799,25799,24767,24767,24766,24766,24765,24765,24764,24764,24763,24763,24762,24762,24761,24761,24760,24760,24759,24759,24758,24758,24757,24757,24756,24756,25693,25693,25692,25692,24755,24755,24754,24754,24753,24753,24752,24752,24751,24751,24750,24750,24749,24749,24748,24748,24747,24747,24746,24746,24745,24745,24744,24744,24743,24743,25632,25632,25741,25741,24742,24742,24741,24741,24740,24740,24739,24739,24738,24738,24737,24737,24736,24736,24735,24735,24734,24734,25740,25740,24733,24733,24732,24732,24731,24731,24730,24730,24729,24729,24728,24728,24727,24727,25631,25631,25739,25739,25630,25630,24726,24726,24725,24725,24724,24724,24723,24723,24722,24722,25738,25738,25629,25629,24721,24721,24720,24720,24719,24719,25691,25691,24718,24718,24717,24717,24716,24716,24715,24715,24714,24714,24713,24713,24712,24712,24711,26038,26037,26037,26148,26148,26147,26147,26146,26146,26145,26145,26144,26144,26143,26143,26142,26142,26141,26141,26140,26140,26139,26139,26138,26138,26137,26137,26136,26136,26135,26135,26134,26134,26133,26133,26132,26132,26131,26131,26130,26130,26129,26129,26128,26128,26127,26127,26126,26126,26125,26125,26124,26124,26123,26123,26122,26122,26121,26121,26120,26120,26119,26119,26118,26118,26117,26117,26116,26116,26115,26115,26114,26114,26113,26113,26112,26112,26111,26111,26159,26159,26165,26165,26110,26110,26109,26109,26108,26108,26107,26107,26106,26106,26105,26105,26104,26104,26103,26103,26102,26102,26101,26101,26100,26100,26099,26099,26098,26098,26158,26158,26097,26097,26096,26096,26095,26095,26094,26094,26093,26093,26092,26092,26091,26091,26090,26090,26089,26089,26088,26088,26087,26087,26086,26086,26153,26153,26085,26085,26084,26084,26083,26083,26172,26172,26169,26169,26164,26164,26082,26082,26081,26081,26080,26080,26079,26079,26078,26078,26077,26077,26076,26076,26152,26152,26151,26151,26075,26075,26074,26074,26073,26073,26157,26157,26156,26156,26150,26150,26072,26072,26071,26071,26070,26070,26069,26069,26068,26068,26067,26067,26066,26066,26155,26155,26168,26168,26171,26171,26175,26175,26174,26174,26173,26173,26163,26163,26065,26065,26064,26064,26063,26063,26062,26062,26061,26061,26060,26060,26059,26059,26058,26058,26057,26057,26056,26056,26055,26055,26154,26154,26162,26162,26170,26170,26167,26167,26054,26054,26053,26053,26052,26052,26051,26051,26050,26050,26049,26049,26048,26048,26047,26047,26161,26161,26166,26166,26160,26160,26046,26046,26045,26045,26044,26044,26043,26043,26042,26042,26149,26149,26041,26041,26040,26040,26039,26039,26038,26177,26176,26176,26197,26197,26196,26196,26195,26195,26194,26194,26193,26193,26192,26192,26199,26199,26201,26201,26200,26200,26198,26198,26191,26191,26190,26190,26189,26189,26188,26188,26187,26187,26186,26186,26185,26185,26184,26184,26183,26183,26182,26182,26181,26181,26180,26180,26179,26179,26178,26178,26177,26203,26202,26202,26244,26244,26243,26243,26242,26242,26241,26241,26240,26240,26239,26239,26238,26238,26237,26237,26249,26249,26248,26248,26236,26236,26235,26235,26234,26234,26247,26247,26233,26233,26232,26232,26231,26231,26230,26230,26229,26229,26228,26228,26246,26246,26227,26227,26226,26226,26225,26225,26224,26224,26223,26223,26222,26222,26221,26221,26220,26220,26219,26219,26218,26218,26245,26245,26217,26217,26216,26216,26215,26215,26214,26214,26213,26213,26251,26251,26250,26250,26212,26212,26211,26211,26210,26210,26209,26209,26208,26208,26207,26207,26206,26206,26205,26205,26204,26204,26203,26253,26252,26252,26305,26305,26304,26304,26310,26310,26303,26303,26302,26302,26301,26301,26300,26300,26299,26299,26298,26298,26297,26297,26296,26296,26295,26295,26294,26294,26293,26293,26292,26292,26291,26291,26290,26290,26289,26289,26288,26288,26287,26287,26286,26286,26285,26285,26311,26311,26312,26312,26314,26314,26315,26315,26313,26313,26284,26284,26283,26283,26282,26282,26281,26281,26280,26280,26279,26279,26278,26278,26277,26277,26276,26276,26275,26275,26274,26274,26307,26307,26273,26273,26272,26272,26271,26271,26270,26270,26269,26269,26268,26268,26267,26267,26309,26309,26308,26308,26266,26266,26265,26265,26264,26264,26306,26306,26263,26263,26262,26262,26261,26261,26260,26260,26259,26259,26258,26258,26257,26257,26256,26256,26255,26255,26254,26254,26253,26317,26316,26316,26330,26330,26329,26329,26328,26328,26327,26327,26326,26326,26325,26325,26324,26324,26323,26323,26322,26322,26321,26321,26320,26320,26319,26319,26318,26318,26317,26331,26363,26363,26362,26362,26361,26361,26360,26360,26359,26359,26358,26358,26357,26357,26356,26356,26364,26364,26355,26355,26354,26354,26353,26353,26352,26352,26351,26351,26350,26350,26349,26349,26348,26348,26347,26347,26346,26346,26345,26345,26365,26365,26366,26366,26367,26367,26344,26344,26343,26343,26342,26342,26341,26341,26340,26340,26339,26339,26338,26338,26337,26337,26336,26336,26335,26335,26334,26334,26333,26333,26332,26332,26331,26369,26368,26368,26392,26392,26391,26391,26390,26390,26389,26389,26388,26388,26387,26387,26386,26386,26385,26385,26384,26384,26383,26383,26382,26382,26381,26381,26380,26380,26379,26379,26378,26378,26393,26393,26377,26377,26376,26376,26375,26375,26374,26374,26373,26373,26372,26372,26371,26371,26370,26370,26369,26395,26394,26394,26447,26447,26439,26439,26438,26438,26437,26437,26436,26436,26435,26435,26434,26434,26433,26433,26432,26432,26443,26443,26431,26431,26430,26430,26429,26429,26428,26428,26427,26427,26426,26426,26425,26425,26424,26424,26423,26423,26422,26422,26421,26421,26420,26420,26446,26446,26451,26451,26442,26442,26419,26419,26418,26418,26417,26417,26445,26445,26441,26441,26416,26416,26415,26415,26414,26414,26413,26413,26412,26412,26411,26411,26410,26410,26444,26444,26449,26449,26450,26450,26448,26448,26409,26409,26408,26408,26407,26407,26406,26406,26405,26405,26404,26404,26403,26403,26440,26440,26402,26402,26401,26401,26400,26400,26399,26399,26398,26398,26397,26397,26396,26396,26395,26453,26452,26452,26467,26467,26466,26466,26465,26465,26464,26464,26463,26463,26462,26462,26461,26461,26460,26460,26459,26459,26458,26458,26457,26457,26456,26456,26455,26455,26454,26454,26453,26468,26517,26517,26516,26516,26515,26515,26514,26514,26513,26513,26524,26524,26512,26512,26511,26511,26510,26510,26509,26509,26508,26508,26521,26521,26526,26526,26507,26507,26506,26506,26505,26505,26504,26504,26503,26503,26502,26502,26501,26501,26500,26500,26499,26499,26498,26498,26497,26497,26496,26496,26495,26495,26494,26494,26493,26493,26492,26492,26491,26491,26490,26490,26489,26489,26523,26523,26520,26520,26488,26488,26487,26487,26486,26486,26522,26522,26529,26529,26528,26528,26527,26527,26525,26525,26485,26485,26484,26484,26483,26483,26482,26482,26481,26481,26480,26480,26479,26479,26478,26478,26477,26477,26519,26519,26476,26476,26475,26475,26474,26474,26518,26518,26473,26473,26472,26472,26471,26471,26470,26470,26469,26469,26468,26530,26551,26551,26550,26550,26549,26549,26548,26548,26547,26547,26546,26546,26545,26545,26544,26544,26543,26543,26542,26542,26541,26541,26540,26540,26553,26553,26539,26539,26538,26538,26537,26537,26552,26552,26536,26536,26535,26535,26534,26534,26533,26533,26532,26532,26531,26531,26530,26555,26554,26554,26592,26592,26595,26595,26597,26597,26594,26594,26591,26591,26590,26590,26589,26589,26588,26588,26587,26587,26586,26586,26585,26585,26584,26584,26583,26583,26582,26582,26581,26581,26580,26580,26579,26579,26578,26578,26577,26577,26576,26576,26575,26575,26574,26574,26573,26573,26572,26572,26571,26571,26570,26570,26569,26569,26568,26568,26567,26567,26566,26566,26565,26565,26564,26564,26596,26596,26593,26593,26563,26563,26562,26562,26561,26561,26560,26560,26559,26559,26558,26558,26557,26557,26556,26556,26555,26599,26598,26598,26615,26615,26614,26614,26613,26613,26612,26612,26611,26611,26610,26610,26616,26616,26609,26609,26608,26608,26607,26607,26606,26606,26605,26605,26604,26604,26603,26603,26602,26602,26601,26601,26600,26600,26599,26618,26617,26617,26625,26625,26624,26624,26623,26623,26622,26622,26621,26621,26620,26620,26619,26619,26618,26627,26626,26626,26639,26639,26638,26638,26637,26637,26636,26636,26635,26635,26640,26640,26634,26634,26633,26633,26632,26632,26631,26631,26630,26630,26629,26629,26628,26628,26627,26642,26641,26641,26659,26659,26658,26658,26657,26657,26656,26656,26655,26655,26654,26654,26653,26653,26660,26660,26652,26652,26651,26651,26650,26650,26649,26649,26648,26648,26647,26647,26646,26646,26645,26645,26644,26644,26643,26643,26642,26662,26661,26661,26671,26671,26670,26670,26669,26669,26668,26668,26667,26667,26666,26666,26665,26665,26664,26664,26663,26663,26662,26673,26672,26672,26680,26680,26679,26679,26678,26678,26677,26677,26676,26676,26675,26675,26674,26674,26673,26682,26681,26681,26694,26694,26693,26693,26692,26692,26691,26691,26690,26690,26689,26689,26688,26688,26687,26687,26686,26686,26685,26685,26684,26684,26683,26683,26682,26696,26695,26695,26715,26715,26714,26714,26713,26713,26712,26712,26711,26711,26710,26710,26709,26709,26708,26708,26707,26707,26706,26706,26705,26705,26704,26704,26703,26703,26702,26702,26701,26701,26700,26700,26716,26716,26699,26699,26698,26698,26697,26697,26696,26718,26717,26717,26731,26731,26730,26730,26729,26729,26728,26728,26727,26727,26726,26726,26725,26725,26724,26724,26723,26723,26722,26722,26721,26721,26720,26720,26719,26719,26718,26733,26732,26732,26743,26743,26742,26742,26741,26741,26740,26740,26739,26739,26738,26738,26737,26737,26736,26736,26735,26735,26734,26734,26733,26745,26744,26744,26757,26757,26756,26756,26755,26755,26754,26754,26753,26753,26752,26752,26751,26751,26750,26750,26749,26749,26748,26748,26747,26747,26746,26746,26745,26758,26775,26775,26774,26774,26773,26773,26772,26772,26771,26771,26770,26770,26769,26769,26768,26768,26767,26767,26766,26766,26765,26765,26764,26764,26763,26763,26762,26762,26761,26761,26760,26760,26759,26759,26758,26777,26776,26776,26787,26787,26786,26786,26785,26785,26784,26784,26783,26783,26782,26782,26781,26781,26780,26780,26779,26779,26778,26778,26777,26789,26788,26788,26797,26797,26796,26796,26795,26795,26794,26794,26793,26793,26792,26792,26791,26791,26790,26790,26789,26799,26798,26798,26829,26829,26828,26828,26827,26827,26826,26826,26825,26825,26824,26824,26823,26823,26822,26822,26821,26821,26820,26820,26819,26819,26818,26818,26831,26831,26833,26833,26830,26830,26817,26817,26816,26816,26815,26815,26814,26814,26813,26813,26812,26812,26811,26811,26810,26810,26809,26809,26834,26834,26832,26832,26808,26808,26807,26807,26806,26806,26805,26805,26804,26804,26803,26803,26802,26802,26801,26801,26800,26800,26799,26836,26835,26835,26848,26848,26849,26849,26847,26847,26846,26846,26845,26845,26844,26844,26843,26843,26842,26842,26841,26841,26840,26840,26839,26839,26838,26838,26837,26837,26836,25620,26850,26850,27124,27124,27158,27158,27157,27157,27123,27123,27122,27122,27121,27121,27120,27120,27119,27119,27118,27118,27117,27117,27144,27144,27116,27116,27115,27115,27114,27114,27156,27156,27113,27113,27112,27112,27111,27111,27110,27110,27109,27109,27172,27172,27186,27186,27179,27179,27171,27171,27108,27108,27107,27107,27106,27106,27105,27105,27104,27104,27103,27103,27102,27102,27101,27101,27100,27100,27185,27185,27099,27099,27098,27098,27097,27097,27096,27096,27095,27095,27094,27094,27093,27093,27092,27092,27091,27091,27090,27090,27089,27089,27143,27143,27088,27088,27087,27087,27086,27086,27190,27190,27142,27142,27085,27085,27084,27084,27083,27083,27082,27082,27081,27081,27080,27080,27155,27155,27170,27170,27079,27079,27078,27078,27077,27077,27076,27076,27075,27075,27074,27074,27073,27073,27072,27072,27071,27071,27070,27070,27069,27069,27068,27068,27067,27067,27066,27066,27065,27065,27064,27064,27063,27063,27062,27062,27061,27061,27060,27060,27059,27059,27058,27058,27057,27057,27056,27056,27055,27055,27054,27054,27053,27053,27052,27052,27178,27178,27169,27169,27051,27051,27050,27050,27049,27049,27048,27048,27047,27047,27046,27046,27045,27045,27044,27044,27043,27043,27042,27042,27041,27041,27040,27040,27168,27168,27039,27039,27038,27038,27037,27037,27036,27036,27035,27035,27034,27034,27033,27033,27032,27032,27031,27031,27030,27030,27029,27029,27028,27028,27027,27027,27026,27026,27025,27025,27024,27024,27023,27023,27022,27022,27021,27021,27020,27020,27167,27167,27166,27166,27154,27154,27019,27019,27018,27018,27017,27017,27141,27141,27153,27153,27140,27140,27016,27016,27015,27015,27014,27014,27152,27152,27013,27013,27012,27012,27011,27011,27139,27139,27138,27138,27010,27010,27009,27009,27008,27008,27007,27007,27006,27006,27005,27005,27004,27004,27137,27137,27003,27003,27002,27002,27001,27001,27000,27000,26999,26999,26998,26998,27136,27136,26997,26997,26996,26996,26995,26995,26994,26994,26993,26993,26992,26992,26991,26991,26990,26990,27151,27151,26989,26989,26988,26988,26987,26987,26986,26986,26985,26985,26984,26984,26983,26983,26982,26982,26981,26981,26980,26980,26979,26979,27135,27135,27134,27134,26978,26978,26977,26977,26976,26976,27150,27150,27165,27165,26975,26975,26974,26974,26973,26973,26972,26972,26971,26971,26970,26970,26969,26969,26968,26968,26967,26967,26966,26966,26965,26965,26964,26964,26963,26963,26962,26962,26961,26961,27149,27149,27133,27133,26960,26960,26959,26959,26958,26958,26957,26957,26956,26956,26955,26955,26954,26954,26953,26953,26952,26952,26951,26951,26950,26950,26949,26949,27132,27132,27164,27164,26948,26948,26947,26947,26946,26946,27183,27183,27177,27177,26945,26945,26944,26944,26943,26943,26942,26942,26941,26941,26940,26940,26939,26939,27163,27163,26938,26938,26937,26937,26936,26936,26935,26935,26934,26934,26933,26933,27131,27131,26932,26932,26931,26931,26930,26930,26929,26929,26928,26928,27130,27130,26927,26927,26926,26926,26925,26925,27148,27148,27162,27162,27176,27176,26924,26924,26923,26923,26922,26922,26921,26921,26920,26920,27129,27129,26919,26919,26918,26918,26917,26917,27182,27182,26916,26916,26915,26915,26914,26914,26913,26913,26912,26912,27147,27147,26911,26911,26910,26910,26909,26909,27128,27128,27175,27175,27181,27181,27188,27188,26908,26908,26907,26907,26906,26906,26905,26905,26904,26904,26903,26903,26902,26902,26901,26901,26900,26900,26899,26899,26898,26898,26897,26897,27127,27127,26896,26896,26895,26895,26894,26894,26893,26893,26892,26892,26891,26891,26890,26890,26889,26889,26888,26888,26887,26887,26886,26886,27161,27161,27146,27146,27126,27126,26885,26885,26884,26884,26883,26883,27187,27187,27196,27196,26882,26882,26881,26881,26880,26880,27160,27160,26879,26879,26878,26878,26877,26877,26876,26876,26875,26875,27145,27145,27174,27174,26874,26874,26873,26873,26872,26872,27180,27180,26871,26871,26870,26870,26869,26869,26868,26868,26867,26867,26866,26866,26865,26865,26864,26864,27173,27173,27159,27159,26863,26863,26862,26862,26861,26861,26860,26860,26859,26859,26858,26858,26857,26857,27125,27125,26856,26856,26855,26855,26854,26854,26853,26853,26852,26852,26851,26851,25560,25560,25561,25561,25686,25686,25771,25771,25562,25562,25563,25563,25564,25564,25731,25731,25565,25565,25566,25566,25567,25567,25568,25568,25569,25569,25570,25570,25571,25571,25572,25572,25573,25573,25574,25574,25575,25575,25576,25576,25577,25577,25578,25578,25579,25579,25580,25580,25687,25687,25772,25772,25732,25732,25581,25581,25582,25582,25583,25583,25584,25584,25585,25585,25816,25816,25773,25773,25586,25586,25587,25587,25588,25588,25589,25589,25590,25590,25591,25591,25733,25733,25592,25592,25593,25593,25594,25594,25595,25595,25596,25596,25774,25774,25734,25734,25688,25688,25597,25597,25598,25598,25599,25599,25600,25600,25601,25601,25689,25689,25602,25602,25603,25603,25604,25604,25834,25834,25605,25605,25606,25606,25607,25607,25608,25608,25609,25609,25610,25610,25611,25611,25612,25612,25613,25613,25690,25690,25614,25614,25615,25615,25616,25616,25735,25735,25617,25617,25618,25618,25619,25619,25620,27257,27256,27256,27664,27664,27663,27663,27662,27662,27661,27661,27660,27660,27659,27659,27658,27658,27694,27694,27657,27657,27656,27656,27655,27655,27713,27713,27654,27654,27653,27653,27652,27652,27651,27651,27650,27650,27649,27649,27648,27648,27647,27647,27646,27646,27645,27645,27797,27797,27693,27693,27644,27644,27643,27643,27642,27642,27641,27641,27640,27640,27639,27639,27638,27638,27712,27712,27637,27637,27636,27636,27635,27635,27634,27634,27633,27633,27632,27632,27631,27631,27630,27630,27711,27711,27629,27629,27628,27628,27627,27627,27626,27626,27625,27625,27624,27624,27623,27623,27622,27622,27621,27621,27710,27710,27738,27738,27751,27751,27764,27764,27750,27750,27692,27692,27620,27620,27619,27619,27618,27618,27617,27617,27616,27616,27615,27615,27614,27614,27613,27613,27709,27709,27612,27612,27611,27611,27610,27610,27609,27609,27608,27608,27691,27691,27607,27607,27606,27606,27605,27605,27604,27604,27603,27603,27602,27602,27601,27601,27600,27600,27708,27708,27599,27599,27598,27598,27597,27597,27596,27596,27595,27595,27594,27594,27593,27593,27592,27592,27591,27591,27590,27590,27589,27589,27588,27588,27587,27587,27586,27586,27690,27690,27585,27585,27584,27584,27583,27583,27582,27582,27581,27581,27580,27580,27579,27579,27578,27578,27577,27577,27576,27576,27575,27575,27574,27574,27573,27573,27572,27572,27571,27571,27570,27570,27569,27569,27568,27568,27689,27689,27567,27567,27566,27566,27565,27565,27796,27796,27564,27564,27563,27563,27562,27562,27561,27561,27560,27560,27559,27559,27558,27558,27557,27557,27556,27556,27555,27555,27554,27554,27553,27553,27688,27688,27687,27687,27552,27552,27551,27551,27550,27550,27549,27549,27548,27548,27547,27547,27546,27546,27545,27545,27686,27686,27544,27544,27543,27543,27542,27542,27685,27685,27839,27839,27749,27749,27737,27737,27727,27727,27541,27541,27540,27540,27539,27539,27063,27063,27064,27064,27065,27065,27066,27066,27067,27067,27068,27068,27069,27069,27070,27070,27071,27071,27072,27072,27073,27073,27074,27074,27075,27075,27076,27076,27077,27077,27078,27078,27079,27079,27170,27170,27155,27155,27080,27080,27081,27081,27082,27082,27083,27083,27084,27084,27085,27085,27142,27142,27190,27190,27086,27086,27087,27087,27088,27088,27143,27143,27089,27089,27090,27090,27091,27091,27092,27092,27093,27093,27094,27094,27095,27095,27096,27096,27097,27097,27098,27098,27099,27099,27185,27185,27100,27100,27101,27101,27102,27102,27103,27103,27104,27104,27105,27105,27106,27106,27107,27107,27108,27108,27171,27171,27179,27179,27186,27186,27172,27172,27109,27109,27110,27110,27111,27111,27112,27112,27113,27113,27156,27156,27114,27114,27115,27115,27116,27116,27144,27144,27117,27117,27118,27118,27119,27119,27120,27120,27121,27121,27122,27122,27123,27123,27157,27157,27158,27158,27124,27124,26850,26850,25620,25620,25621,25621,25622,25622,25623,25623,25624,25624,25625,25625,25626,25626,25736,25736,25797,25797,25798,25798,25737,25737,25627,25627,25628,25628,24710,24710,24711,24711,27538,27538,27537,27537,27536,27536,27535,27535,27534,27534,27533,27533,27532,27532,27707,27707,27684,27684,27531,27531,27530,27530,27529,27529,27528,27528,27527,27527,27526,27526,27525,27525,27524,27524,27523,27523,27522,27522,27521,27521,27520,27520,27519,27519,27518,27518,27517,27517,27516,27516,27515,27515,27514,27514,27513,27513,27512,27512,27511,27511,27510,27510,27509,27509,27508,27508,27507,27507,27506,27506,27505,27505,27504,27504,27503,27503,27502,27502,27501,27501,27706,27706,27683,27683,27500,27500,27499,27499,27498,27498,27497,27497,27496,27496,27495,27495,27494,27494,27493,27493,27492,27492,27491,27491,27490,27490,27682,27682,27489,27489,27488,27488,27487,27487,27681,27681,27705,27705,27486,27486,27485,27485,27484,27484,27483,27483,27482,27482,27481,27481,27480,27480,27479,27479,27478,27478,27477,27477,27476,27476,27475,27475,27474,27474,27473,27473,27472,27472,27471,27471,27470,27470,27469,27469,27468,27468,27680,27680,27467,27467,27466,27466,27465,27465,27464,27464,27463,27463,27462,27462,27461,27461,27704,27704,27734,27734,27703,27703,27679,27679,27460,27460,27459,27459,27458,27458,27678,27678,27457,27457,27456,27456,27455,27455,27454,27454,27453,27453,27452,27452,27451,27451,27450,27450,27449,27449,27448,27448,27447,27447,27446,27446,27445,27445,27444,27444,27443,27443,27442,27442,27441,27441,27440,27440,27439,27439,27725,27725,27438,27438,27437,27437,27436,27436,27677,27677,27435,27435,27434,27434,27433,27433,27733,27733,27432,27432,27431,27431,27430,27430,27676,27676,27429,27429,27428,27428,27427,27427,27802,27802,27781,27781,27732,27732,27724,27724,27426,27426,27425,27425,27424,27424,27423,27423,27422,27422,27421,27421,27420,27420,27419,27419,27418,27418,27417,27417,27416,27416,27415,27415,27702,27702,27723,27723,27731,27731,27414,27414,27413,27413,27412,27412,27675,27675,27411,27411,27410,27410,27409,27409,27701,27701,27408,27408,27407,27407,27406,27406,27405,27405,27404,27404,27403,27403,27402,27402,27401,27401,27400,27400,27399,27399,27398,27398,27397,27397,27396,27396,27395,27395,27394,27394,27393,27393,27392,27392,27391,27391,27390,27390,27389,27389,27388,27388,27387,27387,27386,27386,27385,27385,27384,27384,27383,27383,27382,27382,27700,27700,27742,27742,27722,27722,27381,27381,27380,27380,27379,27379,27378,27378,27377,27377,27376,27376,27375,27375,27374,27374,27373,27373,27372,27372,27371,27371,27699,27699,27721,27721,27730,27730,27801,27801,27824,27824,27847,27847,27698,27698,27674,27674,27370,27370,27369,27369,27368,27368,27367,27367,27366,27366,27365,27365,27364,27364,27363,27363,27362,27362,27697,27697,27720,27720,27673,27673,27361,27361,27360,27360,27359,27359,27358,27358,27357,27357,27356,27356,27355,27355,27354,27354,27353,27353,27352,27352,27351,27351,27350,27350,27349,27349,27348,27348,27347,27347,27346,27346,27345,27345,27344,27344,27343,27343,27342,27342,27672,27672,27719,27719,27696,27696,27671,27671,27341,27341,27340,27340,27339,27339,27338,27338,27337,27337,27336,27336,27335,27335,27334,27334,27333,27333,27332,27332,27331,27331,27330,27330,27329,27329,27729,27729,27695,27695,27328,27328,27327,27327,27326,27326,27325,27325,27324,27324,27323,27323,27322,27322,27321,27321,27320,27320,27319,27319,27318,27318,27317,27317,27316,27316,27718,27718,27741,27741,27717,27717,27315,27315,27314,27314,27313,27313,27312,27312,27311,27311,27310,27310,27309,27309,27670,27670,27669,27669,27308,27308,27307,27307,27306,27306,27740,27740,27728,27728,27716,27716,27305,27305,27304,27304,27303,27303,27668,27668,27302,27302,27301,27301,27300,27300,27299,27299,27298,27298,27297,27297,27715,27715,27667,27667,27296,27296,27295,27295,27294,27294,27293,27293,27292,27292,27291,27291,27290,27290,27739,27739,27289,27289,27288,27288,27287,27287,27286,27286,27285,27285,27284,27284,27283,27283,27282,27282,27281,27281,27280,27280,27279,27279,27278,27278,27277,27277,27666,27666,27276,27276,27275,27275,27274,27274,27273,27273,27272,27272,27271,27271,27270,27270,27269,27269,27268,27268,27267,27267,27266,27266,27714,27714,27665,27665,27265,27265,27264,27264,27263,27263,27262,27262,27261,27261,27260,27260,27259,27259,27258,27258,27257,27931,27930,27930,28295,28295,28294,28294,28293,28293,28292,28292,28291,28291,28290,28290,28289,28289,28288,28288,28365,28365,28287,28287,28286,28286,28285,28285,28284,28284,28283,28283,28337,28337,28282,28282,28281,28281,28280,28280,28279,28279,28278,28278,28277,28277,28276,28276,28336,28336,28275,28275,28274,28274,28273,28273,28335,28335,28272,28272,28271,28271,28270,28270,28364,28364,28269,28269,28268,28268,28267,28267,28266,28266,28265,28265,28264,28264,28263,28263,28262,28262,28261,28261,28260,28260,28259,28259,28258,28258,28257,28257,28256,28256,28255,28255,28334,28334,28449,28449,28425,28425,28254,28254,28253,28253,28252,28252,28251,28251,28250,28250,28249,28249,28248,28248,28363,28363,28390,28390,28389,28389,28379,28379,28247,28247,28246,28246,28245,28245,28244,28244,28243,28243,28242,28242,28241,28241,28240,28240,28239,28239,28362,28362,28238,28238,28237,28237,28236,28236,28235,28235,28234,28234,28233,28233,28232,28232,28231,28231,28230,28230,28229,28229,28228,28228,28227,28227,28226,28226,28378,28378,28225,28225,28224,28224,28223,28223,28222,28222,28221,28221,28220,28220,28219,28219,28218,28218,28217,28217,28216,28216,28215,28215,28214,28214,28213,28213,28333,28333,28361,28361,28377,28377,28360,28360,28212,28212,28211,28211,28210,28210,28209,28209,28208,28208,28207,28207,28206,28206,28205,28205,28204,28204,28203,28203,28332,28332,28202,28202,28201,28201,28200,28200,28331,28331,28387,28387,28406,28406,28448,28448,28597,28597,28667,28667,28359,28359,28330,28330,28199,28199,28198,28198,28197,28197,28386,28386,28196,28196,28195,28195,28194,28194,28193,28193,28192,28192,28191,28191,28190,28190,28358,28358,28509,28509,28478,28478,28394,28394,28385,28385,28357,28357,28189,28189,28188,28188,28187,28187,28186,28186,28185,28185,28184,28184,28183,28183,28182,28182,28181,28181,28180,28180,28179,28179,28178,28178,28177,28177,28176,28176,28175,28175,28174,28174,28173,28173,28356,28356,28423,28423,28172,28172,28171,28171,28170,28170,28422,28422,28384,28384,28376,28376,28169,28169,28168,28168,28167,28167,28166,28166,28165,28165,28355,28355,28164,28164,28163,28163,28162,28162,28375,28375,28161,28161,28160,28160,28159,28159,28158,28158,28157,28157,28156,28156,28155,28155,28354,28354,28154,28154,28153,28153,28152,28152,28151,28151,28150,28150,28353,28353,28329,28329,28149,28149,28148,28148,28147,28147,28405,28405,28146,28146,28145,28145,28144,28144,28560,28560,28529,28529,28506,28506,28475,28475,28404,28404,28393,28393,28383,28383,28374,28374,28143,28143,28142,28142,28141,28141,28140,28140,28139,28139,28138,28138,28137,28137,28136,28136,28135,28135,28328,28328,28134,28134,28133,28133,28132,28132,28131,28131,28130,28130,28129,28129,28128,28128,28127,28127,28126,28126,28125,28125,28124,28124,28123,28123,28122,28122,28121,28121,28352,28352,28327,28327,28120,28120,28119,28119,28118,28118,28117,28117,28116,28116,28115,28115,28114,28114,28113,28113,28112,28112,28326,28326,28325,28325,28111,28111,28110,28110,28109,28109,28351,28351,28108,28108,28107,28107,28106,28106,28105,28105,28104,28104,28103,28103,28102,28102,28324,28324,28373,28373,28372,28372,28350,28350,28323,28323,28101,28101,28100,28100,28099,28099,28349,28349,28098,28098,28097,28097,28096,28096,28095,28095,28094,28094,28093,28093,28092,28092,28091,28091,28090,28090,28348,28348,28089,28089,28088,28088,28087,28087,28086,28086,28085,28085,28084,28084,28083,28083,28082,28082,28081,28081,25219,25219,25220,25220,25221,25221,25660,25660,25222,25222,25223,25223,25224,25224,25225,25225,25226,25226,25227,25227,25228,25228,25229,25229,25230,25230,25231,25231,25232,25232,25233,25233,25234,25234,25235,25235,25236,25236,25828,25828,25237,25237,25238,25238,25239,25239,25240,25240,25241,25241,25712,25712,25242,25242,25243,25243,25244,25244,25245,25245,25246,25246,25247,25247,25248,25248,25249,25249,25250,25250,25251,25251,25252,25252,25253,25253,25254,25254,25255,25255,25256,25256,25257,25257,25258,25258,25259,25259,25260,25260,25261,25261,25262,25262,25263,25263,25264,25264,25265,25265,25266,25266,25661,25661,25267,25267,25268,25268,25269,25269,25270,25270,25271,25271,25662,25662,25713,25713,25272,25272,25273,25273,25274,25274,25275,25275,25276,25276,25277,25277,25278,25278,25663,25663,25664,25664,25279,25279,25280,25280,25281,25281,25282,25282,25283,25283,25665,25665,25714,25714,25666,25666,25284,25284,25285,25285,25286,25286,25287,25287,25288,25288,25289,25289,25290,25290,25291,25291,25292,25292,25715,25715,25791,25791,25792,25792,25293,25293,25294,25294,25295,25295,25296,25296,25297,25297,25298,25298,25299,25299,25300,25300,25301,25301,25716,25716,25302,25302,25303,25303,25304,25304,25305,25305,25306,25306,25762,25762,25717,25717,25307,25307,25308,25308,25309,25309,25310,25310,25311,25311,25667,25667,25312,25312,25313,25313,25314,25314,25793,25793,25829,25829,25315,25315,25316,25316,25317,25317,25318,25318,25319,25319,25320,25320,25321,25321,25322,25322,25323,25323,25324,25324,25325,25325,25326,25326,25327,25327,25794,25794,25811,25811,25328,25328,25329,25329,25330,25330,25331,25331,25332,25332,25333,25333,25334,25334,25335,25335,25336,25336,25337,25337,25338,25338,25339,25339,25718,25718,25340,25340,25341,25341,25342,25342,25343,25343,25344,25344,25719,25719,25763,25763,25812,25812,25345,25345,25346,25346,25347,25347,25668,25668,25348,25348,25349,25349,25350,25350,25720,25720,25351,25351,25352,25352,25353,25353,25354,25354,25355,25355,25356,25356,25357,25357,25358,25358,25359,25359,25360,25360,25669,25669,25361,25361,25362,25362,25363,25363,25364,25364,25365,25365,25366,25366,25367,25367,25368,25368,25369,25369,25370,25370,25670,25670,25371,25371,25372,25372,25373,25373,25374,25374,25375,25375,25795,25795,25721,25721,25376,25376,25377,25377,25378,25378,25379,25379,25380,25380,25381,25381,25382,25382,25383,25383,25722,25722,25384,25384,25385,25385,25386,25386,25387,25387,25388,25388,25389,25389,25390,25390,25391,25391,25392,25392,25723,25723,25813,25813,25764,25764,25393,25393,25394,25394,25395,25395,25396,25396,25397,25397,25398,25398,25399,25399,25400,25400,25401,25401,25671,25671,25402,25402,25403,25403,25404,25404,25724,25724,25405,25405,25406,25406,25407,25407,25672,25672,25408,25408,25409,25409,25410,25410,25411,25411,25412,25412,25725,25725,25673,25673,25413,25413,25414,25414,25415,25415,25416,25416,25417,25417,25418,25418,25419,25419,25420,25420,25421,25421,25422,25422,25423,25423,25424,25424,25425,25425,25426,25426,25427,25427,25428,25428,25429,25429,25430,25430,25431,25431,25432,25432,25433,25433,25434,25434,25435,25435,25674,25674,25726,25726,25436,25436,25437,25437,25438,25438,25439,25439,25440,25440,25441,25441,25442,25442,25443,25443,25444,25444,25445,25445,25446,25446,25447,25447,25448,25448,25449,25449,25450,25450,25451,25451,25452,25452,25453,25453,25454,25454,25455,25455,25765,25765,25675,25675,25456,25456,25457,25457,25458,25458,25459,25459,25460,25460,25676,25676,25814,25814,25830,25830,25766,25766,25461,25461,25462,25462,25463,25463,25677,25677,25727,25727,25464,25464,25465,25465,25466,25466,25467,25467,25468,25468,25815,25815,25728,25728,25469,25469,25470,25470,25471,25471,25472,25472,25473,25473,25767,25767,25474,25474,25475,25475,25476,25476,25477,25477,25478,25478,25479,25479,25480,25480,25481,25481,25482,25482,25483,25483,25484,25484,25485,25485,25486,25486,25678,25678,25487,25487,25488,25488,25489,25489,25490,25490,25491,25491,25492,25492,25493,25493,25494,25494,25495,25495,25496,25496,25497,25497,25498,25498,25499,25499,25679,25679,25500,25500,25501,25501,25502,25502,25503,25503,25504,25504,25729,25729,25680,25680,25505,25505,25506,25506,25507,25507,25508,25508,25509,25509,25510,25510,25511,25511,25512,25512,25513,25513,25514,25514,25515,25515,25681,25681,25516,25516,25517,25517,25518,25518,25519,25519,25520,25520,25521,25521,25522,25522,25523,25523,25682,25682,25768,25768,25524,25524,25525,25525,25526,25526,25527,25527,25528,25528,25529,25529,25530,25530,25531,25531,25532,25532,25533,25533,25831,25831,25861,25861,25769,25769,25683,25683,25534,25534,25535,25535,25536,25536,25537,25537,25538,25538,25684,25684,25796,25796,25770,25770,25539,25539,25540,25540,25541,25541,25542,25542,25543,25543,25544,25544,25545,25545,25546,25546,25832,25832,25847,25847,25547,25547,25548,25548,25549,25549,25550,25550,25551,25551,25552,25552,25730,25730,25685,25685,25553,25553,25554,25554,25555,25555,25556,25556,25557,25557,25558,25558,25559,25559,25560,25560,26851,26851,26852,26852,26853,26853,26854,26854,26855,26855,26856,26856,27125,27125,26857,26857,26858,26858,26859,26859,26860,26860,26861,26861,26862,26862,26863,26863,27159,27159,27173,27173,26864,26864,26865,26865,26866,26866,26867,26867,26868,26868,26869,26869,26870,26870,26871,26871,27180,27180,26872,26872,26873,26873,26874,26874,27174,27174,27145,27145,26875,26875,26876,26876,26877,26877,26878,26878,26879,26879,27160,27160,26880,26880,26881,26881,26882,26882,27196,27196,27187,27187,26883,26883,26884,26884,26885,26885,27126,27126,27146,27146,27161,27161,26886,26886,26887,26887,26888,26888,26889,26889,26890,26890,28080,28080,28079,28079,28322,28322,28078,28078,28077,28077,28076,28076,28347,28347,28382,28382,28321,28321,28075,28075,28074,28074,28073,28073,28320,28320,28072,28072,28071,28071,28070,28070,28412,28412,28381,28381,28346,28346,28069,28069,28068,28068,28067,28067,28066,28066,28065,28065,28371,28371,28319,28319,28064,28064,28063,28063,28062,28062,28061,28061,28060,28060,28059,28059,28058,28058,28057,28057,28056,28056,28055,28055,28054,28054,28053,28053,28052,28052,28051,28051,28318,28318,28050,28050,28049,28049,28048,28048,28317,28317,28047,28047,28046,28046,28045,28045,28316,28316,28044,28044,28043,28043,28042,28042,28345,28345,28399,28399,28370,28370,28041,28041,28040,28040,28039,28039,28315,28315,28038,28038,28037,28037,28036,28036,28314,28314,28035,28035,28034,28034,28033,28033,28313,28313,28032,28032,28031,28031,28030,28030,28458,28458,28312,28312,28029,28029,28028,28028,28027,28027,28311,28311,28026,28026,28025,28025,28024,28024,28310,28310,28023,28023,28022,28022,28021,28021,28309,28309,28020,28020,28019,28019,28018,28018,28017,28017,28016,28016,28015,28015,28014,28014,28369,28369,28380,28380,28308,28308,28013,28013,28012,28012,28011,28011,28307,28307,28010,28010,28009,28009,28008,28008,28306,28306,28007,28007,28006,28006,28005,28005,28305,28305,28004,28004,28003,28003,28002,28002,28391,28391,28368,28368,28344,28344,28001,28001,28000,28000,27999,27999,28304,28304,27998,27998,27997,27997,27996,27996,27995,27995,27994,27994,27993,27993,27992,27992,27991,27991,27990,27990,27989,27989,27988,27988,27987,27987,27986,27986,27985,27985,27984,27984,27983,27983,27982,27982,27981,27981,27980,27980,27979,27979,27978,27978,27977,27977,27976,27976,27975,27975,27974,27974,27973,27973,27972,27972,27971,27971,28343,28343,27970,27970,27969,27969,27968,27968,27967,27967,27966,27966,28303,28303,27965,27965,27964,27964,27963,27963,28367,28367,28342,28342,28302,28302,27962,27962,27961,27961,27960,27960,28301,28301,27959,27959,27958,27958,27957,27957,28300,28300,27956,27956,27955,27955,27954,27954,28341,28341,28366,28366,27953,27953,27952,27952,27951,27951,27950,27950,27949,27949,28340,28340,28339,28339,28299,28299,27948,27948,27947,27947,27946,27946,28298,28298,27945,27945,27944,27944,27943,27943,28297,28297,27942,27942,27941,27941,27940,27940,28338,28338,27939,27939,27938,27938,27937,27937,27936,27936,27935,27935,28296,28296,27934,27934,27933,27933,27932,27932,27931,26142,26143,26143,26144,26144,26145,26145,26146,26146,26147,26147,26148,26148,26037,26037,26038,26038,28751,28751,28750,28750,28749,28749,28748,28748,28747,28747,28757,28757,28760,28760,28762,28762,28763,28763,28759,28759,28756,28756,28746,28746,28745,28745,28744,28744,28755,28755,28743,28743,28742,28742,28741,28741,28758,28758,28754,28754,28740,28740,28739,28739,28738,28738,28765,28765,28764,28764,28761,28761,28737,28737,28736,28736,28735,28735,28734,28734,28733,28733,28732,28732,28731,28731,28730,28730,28729,28729,28753,28753,28728,28728,28727,28727,28726,28726,28725,28725,28724,28724,28723,28723,28722,28722,28752,28752,28721,28721,28720,28720,28719,28719,28718,28718,28717,28717,28716,28716,26142,28767,28766,28766,28785,28785,28784,28784,28783,28783,28782,28782,28781,28781,28780,28780,28779,28779,28778,28778,28777,28777,28776,28776,28775,28775,28774,28774,28773,28773,28772,28772,28771,28771,28770,28770,28769,28769,28768,28768,28767,28787,28786,28786,28793,28793,28792,28792,28791,28791,28790,28790,28789,28789,28788,28788,28787,28795,28794,28794,28949,28949,28948,28948,28947,28947,28946,28946,28969,28969,28963,28963,28945,28945,28944,28944,28943,28943,28962,28962,28942,28942,28941,28941,28940,28940,28939,28939,28938,28938,28937,28937,28968,28968,28936,28936,28935,28935,28934,28934,28961,28961,28933,28933,28932,28932,28931,28931,28930,28930,28929,28929,28928,28928,28927,28927,28926,28926,28925,28925,28924,28924,28923,28923,28922,28922,28921,28921,28920,28920,28919,28919,28918,28918,28917,28917,28916,28916,28915,28915,28914,28914,28960,28960,28967,28967,28913,28913,28912,28912,28911,28911,28910,28910,28909,28909,28959,28959,28908,28908,28907,28907,28906,28906,28905,28905,28904,28904,28903,28903,28902,28902,28901,28901,28900,28900,28899,28899,28898,28898,28972,28972,28976,28976,28958,28958,28897,28897,28896,28896,28895,28895,28966,28966,28894,28894,28893,28893,28892,28892,28891,28891,28890,28890,28889,28889,28888,28888,28887,28887,28886,28886,28885,28885,28884,28884,28883,28883,28882,28882,28881,28881,28957,28957,28880,28880,28879,28879,28878,28878,28877,28877,28876,28876,28875,28875,28874,28874,28873,28873,28956,28956,28872,28872,28871,28871,28870,28870,28869,28869,28868,28868,28867,28867,28866,28866,28865,28865,28864,28864,28863,28863,28862,28862,28861,28861,28860,28860,28859,28859,28858,28858,28955,28955,28857,28857,28856,28856,28855,28855,28973,28973,28954,28954,28854,28854,28853,28853,28852,28852,28851,28851,28850,28850,28849,28849,28848,28848,28847,28847,28846,28846,28845,28845,28844,28844,28843,28843,28842,28842,28841,28841,28840,28840,28953,28953,28839,28839,28838,28838,28837,28837,28965,28965,28952,28952,28836,28836,28835,28835,28834,28834,28833,28833,28832,28832,28831,28831,28830,28830,28829,28829,28828,28828,28827,28827,28971,28971,28951,28951,28826,28826,28825,28825,28824,28824,28964,28964,28975,28975,28974,28974,28970,28970,28823,28823,28822,28822,28821,28821,28950,28950,28820,28820,28819,28819,28818,28818,28817,28817,28816,28816,28815,28815,28814,28814,28813,28813,28812,28812,28811,28811,28810,28810,28809,28809,28808,28808,28807,28807,28806,28806,28805,28805,28804,28804,28803,28803,28802,28802,28801,28801,28800,28800,28799,28799,28798,28798,28797,28797,28796,28796,28795,28982,28981,28981,29156,29156,29155,29155,29154,29154,29153,29153,29152,29152,29151,29151,29150,29150,29149,29149,29148,29148,29147,29147,29146,29146,29145,29145,29144,29144,29143,29143,29142,29142,29141,29141,29140,29140,29139,29139,29138,29138,29137,29137,29136,29136,29135,29135,29134,29134,29184,29184,29187,29187,29189,29189,29183,29183,29182,29182,29179,29179,29133,29133,29132,29132,29131,29131,29130,29130,29129,29129,29176,29176,29128,29128,29127,29127,29126,29126,29169,29169,29125,29125,29124,29124,29123,29123,29168,29168,29122,29122,29121,29121,29120,29120,29119,29119,29118,29118,29117,29117,29181,29181,29167,29167,29116,29116,29115,29115,29114,29114,29175,29175,29113,29113,29112,29112,29111,29111,29110,29110,29109,29109,29108,29108,29107,29107,29106,29106,29105,29105,29104,29104,29103,29103,29102,29102,29101,29101,29100,29100,29099,29099,29174,29174,29098,29098,29097,29097,29096,29096,29095,29095,29094,29094,29093,29093,29092,29092,29091,29091,29090,29090,29089,29089,29088,29088,29087,29087,29086,29086,29085,29085,29084,29084,28819,28819,28820,28820,28950,28950,28821,28821,28822,28822,28823,28823,28970,28970,28974,28974,28975,28975,28964,28964,28824,28824,28825,28825,28826,28826,28951,28951,28971,28971,28827,28827,28828,28828,28829,28829,28830,28830,28831,28831,28832,28832,28833,28833,28834,28834,28835,28835,28836,28836,28952,28952,28965,28965,28837,28837,28838,28838,28839,28839,28953,28953,28840,28840,28841,28841,28842,28842,28843,28843,28844,28844,28845,28845,28846,28846,28847,28847,28848,28848,28849,28849,28850,28850,28851,28851,28852,28852,28853,28853,28854,28854,28954,28954,28973,28973,28855,28855,28856,28856,28857,28857,28955,28955,28858,28858,28859,28859,28860,28860,28861,28861,28862,28862,28863,28863,28864,28864,28865,28865,28866,28866,28867,28867,28868,28868,28869,28869,28870,28870,28871,28871,28872,28872,28956,28956,28873,28873,28874,28874,28875,28875,28876,28876,28877,28877,28878,28878,28879,28879,28880,28880,28957,28957,28881,28881,28882,28882,29083,29083,29082,29082,29081,29081,29166,29166,29080,29080,29079,29079,29078,29078,29077,29077,29076,29076,29075,29075,29165,29165,29074,29074,29073,29073,29072,29072,29180,29180,29071,29071,29070,29070,29069,29069,29068,29068,29067,29067,29164,29164,29066,29066,29065,29065,29064,29064,29063,29063,29062,29062,29061,29061,29060,29060,29059,29059,29058,29058,29057,29057,29056,29056,29055,29055,29173,29173,29163,29163,29054,29054,29053,29053,29052,29052,29172,29172,29051,29051,29050,29050,29049,29049,29048,29048,29047,29047,29046,29046,29045,29045,29044,29044,29043,29043,29042,29042,29041,29041,29162,29162,29040,29040,29039,29039,29038,29038,29037,29037,29036,29036,29035,29035,29034,29034,29033,29033,29032,29032,29161,29161,29171,29171,29031,29031,29030,29030,29029,29029,29160,29160,29178,29178,29028,29028,29027,29027,29026,29026,29025,29025,29024,29024,29023,29023,29022,29022,29021,29021,29020,29020,29170,29170,29159,29159,29019,29019,29018,29018,29017,29017,29016,29016,29015,29015,29014,29014,29013,29013,29158,29158,29012,29012,29011,29011,29010,29010,29009,29009,29008,29008,29007,29007,29006,29006,29177,29177,29185,29185,29005,29005,29004,29004,29003,29003,29002,29002,29001,29001,29000,29000,28999,28999,28998,28998,28997,28997,29157,29157,28996,28996,28995,28995,28994,28994,28993,28993,28992,28992,28991,28991,28990,28990,28989,28989,28988,28988,28987,28987,28986,28986,28985,28985,28984,28984,28983,28983,28982,29199,29198,29198,30062,30062,30124,30124,30260,30260,30238,30238,30214,30214,30061,30061,30060,30060,30059,30059,30058,30058,30057,30057,30056,30056,30055,30055,30054,30054,30053,30053,30168,30168,30167,30167,30052,30052,30051,30051,30050,30050,30123,30123,30049,30049,30048,30048,30047,30047,30046,30046,30045,30045,30194,30194,30166,30166,30044,30044,30043,30043,30042,30042,30122,30122,30259,30259,30213,30213,30165,30165,30041,30041,30040,30040,30039,30039,30038,30038,30037,30037,30036,30036,30035,30035,30034,30034,30237,30237,30511,30511,30395,30395,30258,30258,30033,30033,30032,30032,30031,30031,30030,30030,30029,30029,30028,30028,30027,30027,30164,30164,30163,30163,30026,30026,30025,30025,30024,30024,30023,30023,30022,30022,30121,30121,30021,30021,30020,30020,30019,30019,30018,30018,30017,30017,30016,30016,30015,30015,30014,30014,30013,30013,30012,30012,30011,30011,30010,30010,30009,30009,30008,30008,30007,30007,30006,30006,30005,30005,30004,30004,30003,30003,30002,30002,30001,30001,30000,30000,29999,29999,29998,29998,29997,29997,29996,29996,29995,29995,30291,30291,29994,29994,29993,29993,29992,29992,29991,29991,29990,29990,30120,30120,29989,29989,29988,29988,29987,29987,29986,29986,29985,29985,29984,29984,29983,29983,29982,29982,29981,29981,29980,29980,30119,30119,30162,30162,30193,30193,30118,30118,29979,29979,29978,29978,29977,29977,30161,30161,30355,30355,30323,30323,30290,30290,30257,30257,30192,30192,30117,30117,28982,28982,28983,28983,28984,28984,28985,28985,28986,28986,28987,28987,28988,28988,28989,28989,28990,28990,28991,28991,28992,28992,28993,28993,28994,28994,28995,28995,28996,28996,29157,29157,28997,28997,28998,28998,28999,28999,29000,29000,29001,29001,29002,29002,29003,29003,29004,29004,29005,29005,29185,29185,29177,29177,29006,29006,29007,29007,29008,29008,29009,29009,29010,29010,29011,29011,29012,29012,29158,29158,29013,29013,29014,29014,29015,29015,29016,29016,29017,29017,29018,29018,29019,29019,29159,29159,29170,29170,29020,29020,29021,29021,29022,29022,29023,29023,29024,29024,29025,29025,29026,29026,29027,29027,29028,29028,29178,29178,29160,29160,29029,29029,29030,29030,29031,29031,29171,29171,29161,29161,29032,29032,29033,29033,29034,29034,29035,29035,29036,29036,29037,29037,29038,29038,29039,29039,29040,29040,29162,29162,29041,29041,29042,29042,29043,29043,29044,29044,29045,29045,29046,29046,29047,29047,29048,29048,29049,29049,29050,29050,29051,29051,29172,29172,29052,29052,29053,29053,29054,29054,29163,29163,29173,29173,29055,29055,29056,29056,29057,29057,29058,29058,29059,29059,29060,29060,29061,29061,29062,29062,29063,29063,29064,29064,29065,29065,29066,29066,29164,29164,29067,29067,29068,29068,29069,29069,29070,29070,29071,29071,29180,29180,29072,29072,29073,29073,29074,29074,29165,29165,29075,29075,29076,29076,29077,29077,29078,29078,29079,29079,29080,29080,29166,29166,29081,29081,29082,29082,29083,29083,28882,28882,28883,28883,28884,28884,28885,28885,28886,28886,28887,28887,28888,28888,28889,28889,28890,28890,28891,28891,28892,28892,28893,28893,28894,28894,28966,28966,28895,28895,28896,28896,28897,28897,28958,28958,28976,28976,28972,28972,28898,28898,28899,28899,28900,28900,28901,28901,28902,28902,28903,28903,28904,28904,28905,28905,28906,28906,28907,28907,28908,28908,28959,28959,28909,28909,28910,28910,28911,28911,28912,28912,28913,28913,28967,28967,28960,28960,28914,28914,28915,28915,28916,28916,28917,28917,29976,29976,29975,29975,29974,29974,30289,30289,30116,30116,29973,29973,29972,29972,29971,29971,29970,29970,29969,29969,30212,30212,29968,29968,29967,29967,29966,29966,29965,29965,29964,29964,30160,30160,30191,30191,30190,30190,29963,29963,29962,29962,29961,29961,29960,29960,29959,29959,30115,30115,29958,29958,29957,29957,29956,29956,30353,30353,30114,30114,29955,29955,29954,29954,29953,29953,30393,30393,30351,30351,30113,30113,29952,29952,29951,29951,29950,29950,29949,29949,29948,29948,29947,29947,29946,29946,29945,29945,29944,29944,29943,29943,29942,29942,29941,29941,29940,29940,29939,29939,29938,29938,29937,29937,29936,29936,29935,29935,29934,29934,29933,29933,30112,30112,29932,29932,29931,29931,29930,29930,29929,29929,29928,29928,29927,29927,29926,29926,29925,29925,29924,29924,29923,29923,29922,29922,29921,29921,29920,29920,29919,29919,29918,29918,29917,29917,29916,29916,29915,29915,30111,30111,30188,30188,30159,30159,29914,29914,29913,29913,29912,29912,29911,29911,29910,29910,29909,29909,29908,29908,29907,29907,29906,29906,29905,29905,29904,29904,29903,29903,29902,29902,29901,29901,29900,29900,29899,29899,29898,29898,29897,29897,29896,29896,29895,29895,29894,29894,29893,29893,29892,29892,30158,30158,30110,30110,29891,29891,29890,29890,29889,29889,29888,29888,29887,29887,29886,29886,29885,29885,29884,29884,29883,29883,29882,29882,29881,29881,29880,29880,29879,29879,29878,29878,29877,29877,29876,29876,29875,29875,29874,29874,29873,29873,29872,29872,29871,29871,29870,29870,30109,30109,29869,29869,29868,29868,29867,29867,30108,30108,29866,29866,29865,29865,29864,29864,29863,29863,29862,29862,29861,29861,29860,29860,29859,29859,29858,29858,29857,29857,29856,29856,30107,30107,29855,29855,29854,29854,29853,29853,29852,29852,29851,29851,29850,29850,29849,29849,30106,30106,30436,30436,30211,30211,29848,29848,29847,29847,29846,29846,29845,29845,29844,29844,29843,29843,29842,29842,29841,29841,29840,29840,29839,29839,29838,29838,29837,29837,29836,29836,29835,29835,29834,29834,29833,29833,29832,29832,29831,29831,29830,29830,29829,29829,29828,29828,29827,29827,29826,29826,29825,29825,29824,29824,29823,29823,29822,29822,29821,29821,29820,29820,30157,30157,29819,29819,29818,29818,29817,29817,30105,30105,29816,29816,29815,29815,29814,29814,29813,29813,29812,29812,29811,29811,29810,29810,29809,29809,29808,29808,29807,29807,29806,29806,29805,29805,29804,29804,29803,29803,29802,29802,29801,29801,29800,29800,29799,29799,29798,29798,29797,29797,29796,29796,29795,29795,29794,29794,29793,29793,29792,29792,29791,29791,29790,29790,29789,29789,30235,30235,30187,30187,29788,29788,29787,29787,29786,29786,29785,29785,29784,29784,29783,29783,29782,29782,29781,29781,29780,29780,29779,29779,29778,29778,29777,29777,29776,29776,29775,29775,29774,29774,29773,29773,29772,29772,29771,29771,29770,29770,29769,29769,29768,29768,29767,29767,29766,29766,29765,29765,29764,29764,29763,29763,29762,29762,29761,29761,29760,29760,29759,29759,29758,29758,30210,30210,30285,30285,30234,30234,29757,29757,29756,29756,29755,29755,29754,29754,29753,29753,29752,29752,29751,29751,29750,29750,29749,29749,30156,30156,30155,30155,29748,29748,29747,29747,29746,29746,29745,29745,29744,29744,29743,29743,29742,29742,29741,29741,29740,29740,29739,29739,29738,29738,29737,29737,30186,30186,30104,30104,29736,29736,29735,29735,29734,29734,30154,30154,29733,29733,29732,29732,29731,29731,29730,29730,29729,29729,29728,29728,29727,29727,29726,29726,29725,29725,29724,29724,29723,29723,29722,29722,29721,29721,29720,29720,29719,29719,29718,29718,29717,29717,29716,29716,29715,29715,29714,29714,29713,29713,29712,29712,29711,29711,29710,29710,29709,29709,29708,29708,29707,29707,29706,29706,29705,29705,29704,29704,29703,29703,29702,29702,29701,29701,29700,29700,29699,29699,29698,29698,29697,29697,29696,29696,29695,29695,29694,29694,29693,29693,29692,29692,29691,29691,29690,29690,29689,29689,30103,30103,29688,29688,29687,29687,29686,29686,29685,29685,29684,29684,29683,29683,29682,29682,29681,29681,29680,29680,29679,29679,29678,29678,29677,29677,29676,29676,29675,29675,29674,29674,29673,29673,30102,30102,30153,30153,30101,30101,29672,29672,29671,29671,29670,29670,29669,29669,29668,29668,29667,29667,29666,29666,29665,29665,30152,30152,30184,30184,30226,30226,29664,29664,29663,29663,29662,29662,29661,29661,29660,29660,29659,29659,29658,29658,29657,29657,29656,29656,29655,29655,29654,29654,30151,30151,30100,30100,29653,29653,29652,29652,29651,29651,29650,29650,29649,29649,29648,29648,29647,29647,29646,29646,30099,30099,30183,30183,30150,30150,29645,29645,29644,29644,29643,29643,29642,29642,29641,29641,29640,29640,29639,29639,30098,30098,29638,29638,29637,29637,29636,29636,29635,29635,29634,29634,29633,29633,29632,29632,29631,29631,29630,29630,29629,29629,29628,29628,29627,29627,29626,29626,30182,30182,30097,30097,29625,29625,29624,29624,29623,29623,30149,30149,30207,30207,30223,30223,30148,30148,29622,29622,29621,29621,29620,29620,29619,29619,29618,29618,29617,29617,29616,29616,29615,29615,29614,29614,29613,29613,29612,29612,29611,29611,29610,29610,29609,29609,29608,29608,29607,29607,29606,29606,29605,29605,29604,29604,29603,29603,29602,29602,29601,29601,30147,30147,30181,30181,30096,30096,29600,29600,29599,29599,29598,29598,29597,29597,29596,29596,29595,29595,29594,29594,29593,29593,29592,29592,29591,29591,29590,29590,29589,29589,30146,30146,30222,30222,30273,30273,30245,30245,29588,29588,29587,29587,29586,29586,29585,29585,29584,29584,29583,29583,29582,29582,29581,29581,29580,29580,29579,29579,29578,29578,30145,30145,30205,30205,30144,30144,29577,29577,29576,29576,29575,29575,30095,30095,30204,30204,30143,30143,29574,29574,29573,29573,29572,29572,29571,29571,29570,29570,29569,29569,29568,29568,29567,29567,29566,29566,29565,29565,29564,29564,29563,29563,30142,30142,30203,30203,30244,30244,29562,29562,29561,29561,29560,29560,29559,29559,29558,29558,29557,29557,30094,30094,30093,30093,29556,29556,29555,29555,29554,29554,29553,29553,29552,29552,29551,29551,29550,29550,29549,29549,30141,30141,29548,29548,29547,29547,29546,29546,29545,29545,29544,29544,30140,30140,29543,29543,29542,29542,29541,29541,29540,29540,29539,29539,30180,30180,29538,29538,29537,29537,29536,29536,29535,29535,29534,29534,30139,30139,30092,30092,29533,29533,29532,29532,29531,29531,29530,29530,29529,29529,29528,29528,29527,29527,29526,29526,29525,29525,29524,29524,29523,29523,29522,29522,29521,29521,29520,29520,29519,29519,29518,29518,29517,29517,29516,29516,30091,30091,30138,30138,30202,30202,30090,30090,29515,29515,29514,29514,29513,29513,29512,29512,29511,29511,29510,29510,29509,29509,30089,30089,29508,29508,29507,29507,29506,29506,29505,29505,29504,29504,29503,29503,29502,29502,29501,29501,29500,29500,29499,29499,29498,29498,29497,29497,30137,30137,30088,30088,29496,29496,29495,29495,29494,29494,30087,30087,29493,29493,29492,29492,29491,29491,30086,30086,29490,29490,29489,29489,29488,29488,30136,30136,30369,30369,30201,30201,30085,30085,29487,29487,29486,29486,29485,29485,29484,29484,29483,29483,29482,29482,30179,30179,30200,30200,30084,30084,29481,29481,29480,29480,29479,29479,29478,29478,29477,29477,29476,29476,29475,29475,29474,29474,29473,29473,29472,29472,29471,29471,29470,29470,29469,29469,29468,29468,30083,30083,29467,29467,29466,29466,29465,29465,30199,30199,30178,30178,29464,29464,29463,29463,29462,29462,30082,30082,30081,30081,29461,29461,29460,29460,29459,29459,29458,29458,29457,29457,29456,29456,29455,29455,29454,29454,29453,29453,29452,29452,29451,29451,29450,29450,29449,29449,29448,29448,29447,29447,29446,29446,29445,29445,29444,29444,30198,30198,30177,30177,29443,29443,29442,29442,29441,29441,29440,29440,29439,29439,29438,29438,29437,29437,29436,29436,29435,29435,29434,29434,30176,30176,29433,29433,29432,29432,29431,29431,29430,29430,29429,29429,29428,29428,29427,29427,29426,29426,29425,29425,29424,29424,29423,29423,29422,29422,29421,29421,29420,29420,29419,29419,30175,30175,30197,30197,30302,30302,30135,30135,29418,29418,29417,29417,29416,29416,30080,30080,29415,29415,29414,29414,29413,29413,29412,29412,29411,29411,29410,29410,29409,29409,29408,29408,29407,29407,29406,29406,29405,29405,29404,29404,30269,30269,30366,30366,30301,30301,30079,30079,29403,29403,29402,29402,29401,29401,29400,29400,27931,27931,27932,27932,27933,27933,27934,27934,28296,28296,27935,27935,27936,27936,27937,27937,27938,27938,27939,27939,28338,28338,27940,27940,27941,27941,27942,27942,28297,28297,27943,27943,27944,27944,27945,27945,28298,28298,27946,27946,27947,27947,27948,27948,28299,28299,28339,28339,28340,28340,27949,27949,27950,27950,27951,27951,27952,27952,27953,27953,28366,28366,28341,28341,27954,27954,27955,27955,27956,27956,28300,28300,27957,27957,27958,27958,27959,27959,28301,28301,27960,27960,27961,27961,27962,27962,28302,28302,28342,28342,28367,28367,27963,27963,27964,27964,27965,27965,28303,28303,27966,27966,27967,27967,27968,27968,27969,27969,27970,27970,28343,28343,27971,27971,27972,27972,27973,27973,27974,27974,27975,27975,27976,27976,27977,27977,27978,27978,27979,27979,27980,27980,27981,27981,27982,27982,27983,27983,27984,27984,27985,27985,27986,27986,27987,27987,27988,27988,27989,27989,27990,27990,27991,27991,27992,27992,27993,27993,27994,27994,27995,27995,27996,27996,27997,27997,27998,27998,28304,28304,27999,27999,28000,28000,28001,28001,29399,29399,29398,29398,30078,30078,29397,29397,29396,29396,29395,29395,29394,29394,29393,29393,29392,29392,29391,29391,29390,29390,29389,29389,29388,29388,30300,30300,30268,30268,29387,29387,29386,29386,29385,29385,29384,29384,29383,29383,29382,29382,29381,29381,29380,29380,29379,29379,29378,29378,29377,29377,29376,29376,30077,30077,29375,29375,29374,29374,29373,29373,29372,29372,29371,29371,29370,29370,29369,29369,29368,29368,30076,30076,29367,29367,29366,29366,29365,29365,29364,29364,29363,29363,29362,29362,30134,30134,30075,30075,29361,29361,29360,29360,29359,29359,30334,30334,29358,29358,29357,29357,29356,29356,29355,29355,29354,29354,29353,29353,29352,29352,29351,29351,29350,29350,30220,30220,30174,30174,30133,30133,29349,29349,29348,29348,29347,29347,29346,29346,29345,29345,29344,29344,29343,29343,30074,30074,29342,29342,29341,29341,29340,29340,29339,29339,29338,29338,29337,29337,30073,30073,30072,30072,29336,29336,29335,29335,29334,29334,29333,29333,29332,29332,29331,29331,29330,29330,29329,29329,29328,29328,29327,29327,29326,29326,29325,29325,29324,29324,30071,30071,29323,29323,29322,29322,29321,29321,29320,29320,29319,29319,29318,29318,29317,29317,30173,30173,30070,30070,29316,29316,29315,29315,29314,29314,29313,29313,29312,29312,29311,29311,30132,30132,29310,29310,29309,29309,29308,29308,29307,29307,29306,29306,29305,29305,29304,29304,29303,29303,29302,29302,29301,29301,26910,26910,26911,26911,27147,27147,26912,26912,26913,26913,26914,26914,26915,26915,26916,26916,27182,27182,26917,26917,26918,26918,26919,26919,27129,27129,26920,26920,26921,26921,26922,26922,26923,26923,26924,26924,27176,27176,27162,27162,27148,27148,26925,26925,26926,26926,26927,26927,27130,27130,26928,26928,26929,26929,26930,26930,26931,26931,26932,26932,27131,27131,26933,26933,26934,26934,26935,26935,26936,26936,26937,26937,26938,26938,27163,27163,26939,26939,26940,26940,26941,26941,26942,26942,26943,26943,26944,26944,26945,26945,27177,27177,27183,27183,26946,26946,26947,26947,26948,26948,27164,27164,27132,27132,26949,26949,26950,26950,26951,26951,26952,26952,26953,26953,26954,26954,26955,26955,26956,26956,26957,26957,26958,26958,26959,26959,26960,26960,27133,27133,27149,27149,26961,26961,26962,26962,26963,26963,26964,26964,26965,26965,26966,26966,26967,26967,26968,26968,26969,26969,26970,26970,26971,26971,26972,26972,26973,26973,26974,26974,26975,26975,27165,27165,27150,27150,26976,26976,26977,26977,26978,26978,27134,27134,27135,27135,26979,26979,26980,26980,26981,26981,26982,26982,26983,26983,26984,26984,26985,26985,26986,26986,26987,26987,26988,26988,26989,26989,27151,27151,26990,26990,26991,26991,26992,26992,26993,26993,26994,26994,26995,26995,26996,26996,26997,26997,27136,27136,26998,26998,26999,26999,27000,27000,27001,27001,27002,27002,27003,27003,27137,27137,27004,27004,27005,27005,27006,27006,27007,27007,27008,27008,27009,27009,27010,27010,27138,27138,27139,27139,27011,27011,27012,27012,27013,27013,27152,27152,27014,27014,27015,27015,27016,27016,27140,27140,27153,27153,27141,27141,27017,27017,27018,27018,27019,27019,27154,27154,27166,27166,27167,27167,27020,27020,27021,27021,27022,27022,27023,27023,27024,27024,27025,27025,27026,27026,27027,27027,27028,27028,27029,27029,27030,27030,27031,27031,27032,27032,27033,27033,27034,27034,27035,27035,27036,27036,27037,27037,27038,27038,27039,27039,27168,27168,27040,27040,27041,27041,27042,27042,27043,27043,27044,27044,27045,27045,27046,27046,27047,27047,27048,27048,27049,27049,27050,27050,27051,27051,27169,27169,27178,27178,27052,27052,27053,27053,27054,27054,27055,27055,27056,27056,27057,27057,27058,27058,27059,27059,27060,27060,27061,27061,27062,27062,27063,27063,27539,27539,27540,27540,27541,27541,27727,27727,27737,27737,27749,27749,27839,27839,27685,27685,27542,27542,27543,27543,27544,27544,27686,27686,27545,27545,27546,27546,27547,27547,27548,27548,27549,27549,27550,27550,27551,27551,27552,27552,27687,27687,27688,27688,27553,27553,27554,27554,27555,27555,27556,27556,27557,27557,27558,27558,27559,27559,27560,27560,27561,27561,27562,27562,27563,27563,27564,27564,27796,27796,27565,27565,27566,27566,27567,27567,27689,27689,27568,27568,27569,27569,27570,27570,27571,27571,27572,27572,27573,27573,27574,27574,27575,27575,27576,27576,27577,27577,27578,27578,27579,27579,27580,27580,27581,27581,27582,27582,27583,27583,27584,27584,27585,27585,27690,27690,27586,27586,27587,27587,27588,27588,27589,27589,27590,27590,27591,27591,27592,27592,27593,27593,27594,27594,27595,27595,27596,27596,27597,27597,27598,27598,27599,27599,27708,27708,27600,27600,27601,27601,27602,27602,27603,27603,27604,27604,27605,27605,27606,27606,27607,27607,27691,27691,27608,27608,27609,27609,27610,27610,27611,27611,27612,27612,27709,27709,27613,27613,27614,27614,27615,27615,27616,27616,27617,27617,27618,27618,27619,27619,27620,27620,27692,27692,27750,27750,27764,27764,27751,27751,27738,27738,27710,27710,27621,27621,27622,27622,27623,27623,27624,27624,27625,27625,27626,27626,27627,27627,27628,27628,27629,27629,27711,27711,27630,27630,27631,27631,27632,27632,27633,27633,27634,27634,27635,27635,27636,27636,27637,27637,27712,27712,27638,27638,27639,27639,27640,27640,27641,27641,27642,27642,27643,27643,27644,27644,27693,27693,27797,27797,27645,27645,27646,27646,27647,27647,27648,27648,27649,27649,27650,27650,27651,27651,27652,27652,27653,27653,27654,27654,27713,27713,27655,27655,27656,27656,27657,27657,27694,27694,27658,27658,27659,27659,27660,27660,27661,27661,27662,27662,27663,27663,27664,27664,27256,27256,27257,27257,29300,29300,29299,29299,29298,29298,29297,29297,29296,29296,29295,29295,29294,29294,29293,29293,29292,29292,29291,29291,29290,29290,29289,29289,29288,29288,30069,30069,29287,29287,29286,29286,29285,29285,30131,30131,30130,30130,29284,29284,29283,29283,29282,29282,29281,29281,29280,29280,29279,29279,29278,29278,29277,29277,30068,30068,30195,30195,30217,30217,30171,30171,29276,29276,29275,29275,29274,29274,29273,29273,29272,29272,29271,29271,29270,29270,29269,29269,29268,29268,29267,29267,29266,29266,29265,29265,30129,30129,30128,30128,30067,30067,29264,29264,29263,29263,29262,29262,29261,29261,29260,29260,29259,29259,29258,29258,29257,29257,29256,29256,30066,30066,29255,29255,29254,29254,29253,29253,30239,30239,30262,30262,30293,30293,30325,30325,30127,30127,29252,29252,29251,29251,29250,29250,29249,29249,29248,29248,29247,29247,29246,29246,30445,30445,30397,30397,30065,30065,29245,29245,29244,29244,29243,29243,29242,29242,29241,29241,29240,29240,29239,29239,29238,29238,30064,30064,29237,29237,29236,29236,29235,29235,29234,29234,29233,29233,29232,29232,29231,29231,29230,29230,29229,29229,29228,29228,29227,29227,30126,30126,30125,30125,29226,29226,29225,29225,29224,29224,29223,29223,29222,29222,29221,29221,29220,29220,29219,29219,29218,29218,29217,29217,29216,29216,29215,29215,30063,30063,30170,30170,30216,30216,30215,30215,29214,29214,29213,29213,29212,29212,29211,29211,29210,29210,29209,29209,29208,29208,29207,29207,29206,29206,29205,29205,29204,29204,29203,29203,29202,29202,29201,29201,30169,30169,29200,29200,29199,31004,31074,31074,31071,31071,31070,31070,31069,31069,31068,31068,31067,31067,31066,31066,31065,31065,31064,31064,31063,31063,31062,31062,31061,31061,31073,31073,31060,31060,31059,31059,31058,31058,31057,31057,31056,31056,31055,31055,31054,31054,31053,31053,31052,31052,31051,31051,31076,31076,31072,31072,31050,31050,31049,31049,31048,31048,31047,31047,31046,31046,31045,31045,31044,31044,31043,31043,31042,31042,31041,31041,31040,31040,31039,31039,31038,31038,31037,31037,31036,31036,31035,31035,31034,31034,31033,31033,31032,31032,31031,31031,31030,31030,31029,31029,31028,31028,31027,31027,31026,31026,31025,31025,31024,31024,31023,31023,31022,31022,31021,31021,31020,31020,31019,31019,31018,31018,31075,31075,31077,31077,31017,31017,31016,31016,31015,31015,31014,31014,31013,31013,31012,31012,31011,31011,31010,31010,31009,31009,31008,31008,31007,31007,31006,31006,31005,31005,31004,31079,31078,31078,31087,31087,31086,31086,31085,31085,31084,31084,31083,31083,31082,31082,31081,31081,31080,31080,31079,31089,31088,31088,31094,31094,31093,31093,31092,31092,31091,31091,31090,31090,31089,31104,31103,31103,31102,31102,31101,31101,31100,31100,31099,31099,31098,31098,31097,31097,31096,31096,31095,31095,31104,31106,31105,31105,31113,31113,31112,31112,31111,31111,31110,31110,31109,31109,31108,31108,31107,31107,31106,31115,31114,31114,31121,31121,31120,31120,31119,31119,31118,31118,31117,31117,31116,31116,31115,31123,31122,31122,31129,31129,31128,31128,31127,31127,31126,31126,31125,31125,31124,31124,31123,31131,31130,31130,31137,31137,31136,31136,31135,31135,31134,31134,31133,31133,31132,31132,31131,31139,31138,31138,31149,31149,31148,31148,31147,31147,31146,31146,31145,31145,31144,31144,31143,31143,31142,31142,31141,31141,31140,31140,31139,31151,31150,31150,31158,31158,31157,31157,31156,31156,31155,31155,31154,31154,31153,31153,31152,31152,31151,31160,31159,31159,31169,31169,31168,31168,31167,31167,31166,31166,31165,31165,31164,31164,31163,31163,31162,31162,31161,31161,31160,31171,31170,31170,31179,31179,31178,31178,31177,31177,31176,31176,31175,31175,31174,31174,31173,31173,31172,31172,31171,31180,31190,31190,31189,31189,31188,31188,31187,31187,31192,31192,31191,31191,31186,31186,31185,31185,31184,31184,31183,31183,31182,31182,31181,31181,31180,31194,31193,31193,31202,31202,31201,31201,31200,31200,31199,31199,31198,31198,31197,31197,31196,31196,31195,31195,31194,31204,31203,31203,31215,31215,31214,31214,31213,31213,31212,31212,31211,31211,31210,31210,31209,31209,31208,31208,31207,31207,31206,31206,31205,31205,31204,31217,31216,31216,31224,31224,31223,31223,31222,31222,31221,31221,31220,31220,31219,31219,31218,31218,31217,29457,31225,31225,31258,31258,31257,31257,31256,31256,31255,31255,31254,31254,31253,31253,31252,31252,31251,31251,31250,31250,31249,31249,31248,31248,31247,31247,31262,31262,31263,31263,31246,31246,31245,31245,31244,31244,31243,31243,31242,31242,31241,31241,31240,31240,31261,31261,31239,31239,31238,31238,31237,31237,31259,31259,31236,31236,31235,31235,31234,31234,31233,31233,31232,31232,31231,31231,31230,31230,31229,31229,31260,31260,31264,31264,31228,31228,31227,31227,31226,31226,28270,28270,28271,28271,28272,28272,28335,28335,28273,28273,28274,28274,28275,28275,28336,28336,28276,28276,28277,28277,28278,28278,28279,28279,28280,28280,28281,28281,28282,28282,28337,28337,28283,28283,28284,28284,28285,28285,28286,28286,28287,28287,28365,28365,28288,28288,28289,28289,28290,28290,28291,28291,28292,28292,28293,28293,28294,28294,28295,28295,27930,27930,27931,27931,29400,29400,29401,29401,29402,29402,29403,29403,30079,30079,30301,30301,30366,30366,30269,30269,29404,29404,29405,29405,29406,29406,29407,29407,29408,29408,29409,29409,29410,29410,29411,29411,29412,29412,29413,29413,29414,29414,29415,29415,30080,30080,29416,29416,29417,29417,29418,29418,30135,30135,30302,30302,30197,30197,30175,30175,29419,29419,29420,29420,29421,29421,29422,29422,29423,29423,29424,29424,29425,29425,29426,29426,29427,29427,29428,29428,29429,29429,29430,29430,29431,29431,29432,29432,29433,29433,30176,30176,29434,29434,29435,29435,29436,29436,29437,29437,29438,29438,29439,29439,29440,29440,29441,29441,29442,29442,29443,29443,30177,30177,30198,30198,29444,29444,29445,29445,29446,29446,29447,29447,29448,29448,29449,29449,29450,29450,29451,29451,29452,29452,29453,29453,29454,29454,29455,29455,29456,29456,29457,27346,27347,27347,27348,27348,27349,27349,27350,27350,27351,27351,27352,27352,27353,27353,27354,27354,27355,27355,27356,27356,27357,27357,27358,27358,27359,27359,27360,27360,27361,27361,27673,27673,27720,27720,27697,27697,27362,27362,27363,27363,27364,27364,27365,27365,27366,27366,27367,27367,27368,27368,27369,27369,27370,27370,27674,27674,27698,27698,27847,27847,27824,27824,27801,27801,27730,27730,27721,27721,27699,27699,27371,27371,27372,27372,27373,27373,27374,27374,27375,27375,27376,27376,27377,27377,27378,27378,27379,27379,27380,27380,27381,27381,27722,27722,27742,27742,27700,27700,27382,27382,27383,27383,27384,27384,27385,27385,27386,27386,27387,27387,27388,27388,27389,27389,27390,27390,27391,27391,27392,27392,27393,27393,27394,27394,27395,27395,27396,27396,27397,27397,27398,27398,27399,27399,27400,27400,27401,27401,27402,27402,27403,27403,27404,27404,27405,27405,27406,27406,27407,27407,27408,27408,27701,27701,27409,27409,27410,27410,27411,27411,27675,27675,27412,27412,27413,27413,27414,27414,27731,27731,27723,27723,27702,27702,27415,27415,27416,27416,27417,27417,27418,27418,27419,27419,27420,27420,27421,27421,27422,27422,27423,27423,27424,27424,27425,27425,27426,27426,27724,27724,27732,27732,27781,27781,27802,27802,27427,27427,27428,27428,27429,27429,27676,27676,27430,27430,27431,27431,27432,27432,27733,27733,27433,27433,27434,27434,27435,27435,27677,27677,27436,27436,27437,27437,27438,27438,27725,27725,27439,27439,27440,27440,27441,27441,27442,27442,27443,27443,27444,27444,27445,27445,27446,27446,27447,27447,27448,27448,27449,27449,31352,31352,31351,31351,31350,31350,31349,31349,31382,31382,31348,31348,31347,31347,31346,31346,31363,31363,31345,31345,31344,31344,31343,31343,31372,31372,31371,31371,31342,31342,31341,31341,31340,31340,31339,31339,31338,31338,31337,31337,31336,31336,31335,31335,31334,31334,31333,31333,31332,31332,31331,31331,31330,31330,31329,31329,31328,31328,31327,31327,31326,31326,31325,31325,31362,31362,31375,31375,31324,31324,31323,31323,31322,31322,31361,31361,31321,31321,31320,31320,31319,31319,31370,31370,31318,31318,31317,31317,31316,31316,31360,31360,31315,31315,31314,31314,31313,31313,31312,31312,31311,31311,31359,31359,31369,31369,31310,31310,31309,31309,31308,31308,31307,31307,31306,31306,31305,31305,31304,31304,31303,31303,31302,31302,31301,31301,31358,31358,31300,31300,31299,31299,31298,31298,31297,31297,31296,31296,31295,31295,31294,31294,31293,31293,31374,31374,31380,31380,31357,31357,31292,31292,31291,31291,31290,31290,31368,31368,31356,31356,31289,31289,31288,31288,31287,31287,31377,31377,31367,31367,31286,31286,31285,31285,31284,31284,31355,31355,31393,31393,31366,31366,31354,31354,31283,31283,31282,31282,31281,31281,31373,31373,31365,31365,31353,31353,31280,31280,31279,31279,31278,31278,31277,31277,31276,31276,31275,31275,31274,31274,31364,31364,31273,31273,31272,31272,31271,31271,27346,31403,31402,31402,31415,31415,31414,31414,31413,31413,31412,31412,31411,31411,31410,31410,31409,31409,31408,31408,31407,31407,31406,31406,31405,31405,31404,31404,31403,31417,31416,31416,31420,31420,31419,31419,31418,31418,31417,31422,31421,31421,31430,31430,31429,31429,31428,31428,31427,31427,31426,31426,31425,31425,31424,31424,31423,31423,31422,31432,31431,31431,31444,31444,31443,31443,31442,31442,31441,31441,31440,31440,31439,31439,31438,31438,31437,31437,31436,31436,31435,31435,31434,31434,31433,31433,31432,31446,31445,31445,31453,31453,31452,31452,31451,31451,31450,31450,31449,31449,31448,31448,31447,31447,31446,31455,31454,31454,31460,31460,31459,31459,31458,31458,31457,31457,31456,31456,31455,31461,31490,31490,31489,31489,31488,31488,31487,31487,31486,31486,31491,31491,31485,31485,31484,31484,31483,31483,31482,31482,31481,31481,31480,31480,31479,31479,31478,31478,31477,31477,31476,31476,31475,31475,31474,31474,31473,31473,31472,31472,31471,31471,31470,31470,31469,31469,31468,31468,31467,31467,31466,31466,31465,31465,31464,31464,31463,31463,31462,31462,31461,31493,31492,31492,31499,31499,31498,31498,31497,31497,31496,31496,31495,31495,31494,31494,31493,31501,31500,31500,31742,31742,31741,31741,31740,31740,31739,31739,31738,31738,31737,31737,31736,31736,31735,31735,31734,31734,31733,31733,31732,31732,31731,31731,31785,31785,31730,31730,31729,31729,31728,31728,31727,31727,31726,31726,31725,31725,31724,31724,31812,31812,31778,31778,31723,31723,31722,31722,31721,31721,31720,31720,31719,31719,31777,31777,31718,31718,31717,31717,31716,31716,31764,31764,31763,31763,31715,31715,31714,31714,31713,31713,31712,31712,31711,31711,31710,31710,31709,31709,31708,31708,31791,31791,31800,31800,31784,31784,31776,31776,31707,31707,31706,31706,31705,31705,31762,31762,31850,31850,31704,31704,31703,31703,31702,31702,31701,31701,31700,31700,31790,31790,31761,31761,31699,31699,31698,31698,31697,31697,31696,31696,31695,31695,31760,31760,31783,31783,31694,31694,31693,31693,31692,31692,31691,31691,31690,31690,31775,31775,31782,31782,31759,31759,31689,31689,31688,31688,31687,31687,31758,31758,31686,31686,31685,31685,31684,31684,31774,31774,31810,31810,31803,31803,31683,31683,31682,31682,31681,31681,31680,31680,31679,31679,31678,31678,31677,31677,31676,31676,31757,31757,31675,31675,31674,31674,31673,31673,31756,31756,31672,31672,31671,31671,31670,31670,31755,31755,31669,31669,31668,31668,31667,31667,31666,31666,31665,31665,31664,31664,31754,31754,31663,31663,31662,31662,31661,31661,31660,31660,31659,31659,31658,31658,31657,31657,31656,31656,31773,31773,31789,31789,31655,31655,31654,31654,31653,31653,31652,31652,31651,31651,31650,31650,31649,31649,31648,31648,31647,31647,31646,31646,31645,31645,31644,31644,31643,31643,31642,31642,31753,31753,31641,31641,31640,31640,31639,31639,31638,31638,31637,31637,31636,31636,31635,31635,31634,31634,31633,31633,31632,31632,31631,31631,29199,29199,29200,29200,30169,30169,29201,29201,29202,29202,29203,29203,29204,29204,29205,29205,29206,29206,29207,29207,29208,29208,29209,29209,29210,29210,29211,29211,29212,29212,29213,29213,29214,29214,30215,30215,30216,30216,30170,30170,30063,30063,29215,29215,29216,29216,29217,29217,29218,29218,29219,29219,29220,29220,29221,29221,29222,29222,29223,29223,29224,29224,29225,29225,29226,29226,30125,30125,30126,30126,29227,29227,29228,29228,29229,29229,29230,29230,29231,29231,29232,29232,29233,29233,29234,29234,29235,29235,29236,29236,29237,29237,30064,30064,29238,29238,29239,29239,29240,29240,29241,29241,29242,29242,29243,29243,29244,29244,29245,29245,30065,30065,30397,30397,30445,30445,29246,29246,29247,29247,29248,29248,29249,29249,29250,29250,29251,29251,29252,29252,30127,30127,30325,30325,30293,30293,30262,30262,30239,30239,29253,29253,29254,29254,29255,29255,30066,30066,29256,29256,29257,29257,29258,29258,29259,29259,29260,29260,29261,29261,29262,29262,29263,29263,29264,29264,30067,30067,30128,30128,30129,30129,29265,29265,29266,29266,29267,29267,29268,29268,29269,29269,29270,29270,29271,29271,29272,29272,29273,29273,29274,29274,29275,29275,29276,29276,30171,30171,30217,30217,30195,30195,30068,30068,29277,29277,29278,29278,29279,29279,29280,29280,29281,29281,29282,29282,29283,29283,29284,29284,30130,30130,30131,30131,29285,29285,29286,29286,29287,29287,30069,30069,29288,29288,29289,29289,29290,29290,29291,29291,29292,29292,29293,29293,29294,29294,29295,29295,29296,29296,29297,29297,29298,29298,29299,29299,29300,29300,27257,27257,27258,27258,27259,27259,27260,27260,27261,27261,27262,27262,27263,27263,27264,27264,27265,27265,27665,27665,27714,27714,27266,27266,27267,27267,27268,27268,27269,27269,27270,27270,27271,27271,27272,27272,27273,27273,27274,27274,27275,27275,27276,27276,27666,27666,27277,27277,27278,27278,27279,27279,27280,27280,27281,27281,27282,27282,27283,27283,27284,27284,27285,27285,27286,27286,27287,27287,27288,27288,27289,27289,27739,27739,27290,27290,27291,27291,27292,27292,27293,27293,27294,27294,27295,27295,27296,27296,27667,27667,27715,27715,27297,27297,27298,27298,27299,27299,27300,27300,27301,27301,27302,27302,27668,27668,27303,27303,27304,27304,27305,27305,27716,27716,27728,27728,27740,27740,27306,27306,27307,27307,27308,27308,27669,27669,27670,27670,27309,27309,27310,27310,27311,27311,27312,27312,27313,27313,27314,27314,27315,27315,27717,27717,27741,27741,27718,27718,27316,27316,27317,27317,27318,27318,27319,27319,27320,27320,27321,27321,27322,27322,27323,27323,27324,27324,27325,27325,27326,27326,27327,27327,27328,27328,27695,27695,27729,27729,27329,27329,27330,27330,27331,27331,27332,27332,27333,27333,27334,27334,27335,27335,27336,27336,27337,27337,27338,27338,27339,27339,27340,27340,27341,27341,27671,27671,27696,27696,27719,27719,27672,27672,27342,27342,27343,27343,27344,27344,27345,27345,27346,27346,31271,31271,31272,31272,31273,31273,31364,31364,31274,31274,31275,31275,31276,31276,31277,31277,31278,31278,31279,31279,31280,31280,31353,31353,31365,31365,31373,31373,31281,31281,31282,31282,31283,31283,31354,31354,31366,31366,31393,31393,31355,31355,31284,31284,31285,31285,31286,31286,31367,31367,31377,31377,31287,31287,31288,31288,31289,31289,31356,31356,31368,31368,31290,31290,31291,31291,31292,31292,31357,31357,31380,31380,31374,31374,31293,31293,31294,31294,31295,31295,31296,31296,31297,31297,31298,31298,31299,31299,31630,31630,31629,31629,31628,31628,31627,31627,31626,31626,31752,31752,31625,31625,31624,31624,31623,31623,31622,31622,31621,31621,31620,31620,31619,31619,31618,31618,31617,31617,31616,31616,31615,31615,31614,31614,31751,31751,31613,31613,31612,31612,31611,31611,31610,31610,31609,31609,31608,31608,31772,31772,31607,31607,31606,31606,31605,31605,31604,31604,31603,31603,31602,31602,31601,31601,31600,31600,31599,31599,31598,31598,31750,31750,31597,31597,31596,31596,31595,31595,31594,31594,31593,31593,31592,31592,31591,31591,31590,31590,31589,31589,31588,31588,31771,31771,31587,31587,31586,31586,31585,31585,31584,31584,31583,31583,31582,31582,31581,31581,31580,31580,31749,31749,31579,31579,31578,31578,31577,31577,31770,31770,31576,31576,31575,31575,31574,31574,31748,31748,31769,31769,31573,31573,31572,31572,31571,31571,31747,31747,31780,31780,31794,31794,31570,31570,31569,31569,31568,31568,31567,31567,31566,31566,31746,31746,21529,21529,21530,21530,21531,21531,21532,21532,21554,21554,21565,21565,21568,21568,21566,21566,21561,21561,21533,21533,21534,21534,21535,21535,21536,21536,21537,21537,21567,21567,21562,21562,21538,21538,21539,21539,21540,21540,21541,21541,21542,21542,21555,21555,21543,21543,21544,21544,21545,21545,21546,21546,21403,21403,21404,21404,31565,31565,31564,31564,31563,31563,31562,31562,31561,31561,31560,31560,31559,31559,31558,31558,31557,31557,31768,31768,31787,31787,31798,31798,31801,31801,31797,31797,31793,31793,31556,31556,31555,31555,31554,31554,31553,31553,31552,31552,31745,31745,31551,31551,31550,31550,31549,31549,31548,31548,31547,31547,31767,31767,31779,31779,31546,31546,31545,31545,31544,31544,31543,31543,31542,31542,31541,31541,31540,31540,31539,31539,31538,31538,31537,31537,31536,31536,31535,31535,31534,31534,31533,31533,31532,31532,31531,31531,31530,31530,31529,31529,31528,31528,31527,31527,31526,31526,31525,31525,31766,31766,31786,31786,31792,31792,31796,31796,31524,31524,31523,31523,31522,31522,31521,31521,31520,31520,31519,31519,31518,31518,31517,31517,31765,31765,31516,31516,31515,31515,31514,31514,31744,31744,31743,31743,31513,31513,31512,31512,31511,31511,31510,31510,31509,31509,31508,31508,31507,31507,31506,31506,31505,31505,31504,31504,31503,31503,31502,31502,31501,31949,31948,31948,31954,31954,31953,31953,31952,31952,31951,31951,31950,31950,31949,26910,29301,29301,29302,29302,29303,29303,29304,29304,29305,29305,29306,29306,29307,29307,29308,29308,29309,29309,29310,29310,30132,30132,29311,29311,29312,29312,29313,29313,29314,29314,29315,29315,29316,29316,30070,30070,30173,30173,29317,29317,29318,29318,29319,29319,29320,29320,29321,29321,29322,29322,29323,29323,30071,30071,29324,29324,29325,29325,29326,29326,29327,29327,29328,29328,29329,29329,29330,29330,29331,29331,29332,29332,29333,29333,29334,29334,29335,29335,29336,29336,30072,30072,30073,30073,29337,29337,29338,29338,29339,29339,29340,29340,29341,29341,29342,29342,30074,30074,29343,29343,29344,29344,29345,29345,29346,29346,29347,29347,29348,29348,29349,29349,30133,30133,30174,30174,30220,30220,29350,29350,29351,29351,29352,29352,29353,29353,29354,29354,29355,29355,29356,29356,29357,29357,29358,29358,30334,30334,29359,29359,29360,29360,29361,29361,30075,30075,30134,30134,29362,29362,29363,29363,29364,29364,29365,29365,29366,29366,29367,29367,30076,30076,29368,29368,29369,29369,29370,29370,29371,29371,29372,29372,29373,29373,29374,29374,29375,29375,30077,30077,29376,29376,29377,29377,29378,29378,29379,29379,29380,29380,29381,29381,29382,29382,29383,29383,29384,29384,29385,29385,29386,29386,29387,29387,30268,30268,30300,30300,29388,29388,29389,29389,29390,29390,29391,29391,29392,29392,29393,29393,29394,29394,29395,29395,29396,29396,29397,29397,30078,30078,29398,29398,29399,29399,28001,28001,28344,28344,28368,28368,28391,28391,28002,28002,28003,28003,28004,28004,28305,28305,28005,28005,28006,28006,28007,28007,28306,28306,28008,28008,28009,28009,28010,28010,28307,28307,28011,28011,28012,28012,28013,28013,28308,28308,28380,28380,28369,28369,28014,28014,28015,28015,28016,28016,28017,28017,28018,28018,28019,28019,28020,28020,28309,28309,28021,28021,28022,28022,28023,28023,28310,28310,28024,28024,28025,28025,28026,28026,28311,28311,28027,28027,28028,28028,28029,28029,28312,28312,28458,28458,28030,28030,28031,28031,28032,28032,28313,28313,28033,28033,28034,28034,28035,28035,28314,28314,28036,28036,28037,28037,28038,28038,28315,28315,28039,28039,28040,28040,28041,28041,28370,28370,28399,28399,28345,28345,28042,28042,28043,28043,28044,28044,28316,28316,28045,28045,28046,28046,28047,28047,28317,28317,28048,28048,28049,28049,28050,28050,28318,28318,28051,28051,28052,28052,28053,28053,28054,28054,28055,28055,28056,28056,28057,28057,28058,28058,28059,28059,28060,28060,28061,28061,28062,28062,28063,28063,28064,28064,28319,28319,28371,28371,28065,28065,28066,28066,28067,28067,28068,28068,28069,28069,28346,28346,28381,28381,28412,28412,28070,28070,28071,28071,28072,28072,28320,28320,28073,28073,28074,28074,28075,28075,28321,28321,28382,28382,28347,28347,28076,28076,28077,28077,28078,28078,28322,28322,28079,28079,28080,28080,26890,26890,26891,26891,26892,26892,26893,26893,26894,26894,26895,26895,26896,26896,27127,27127,26897,26897,26898,26898,26899,26899,26900,26900,26901,26901,26902,26902,26903,26903,26904,26904,26905,26905,26906,26906,26907,26907,26908,26908,27188,27188,27181,27181,27175,27175,27128,27128,26909,26909,26910,31983,31982,31982,31991,31991,31990,31990,31989,31989,31988,31988,31987,31987,31986,31986,31985,31985,31984,31984,31983,31993,31992,31992,32009,32009,32008,32008,32007,32007,32006,32006,32005,32005,32004,32004,32003,32003,32002,32002,32001,32001,32000,32000,31999,31999,31998,31998,31997,31997,32010,32010,31996,31996,31995,31995,31994,31994,31993,32012,32011,32011,32017,32017,32016,32016,32015,32015,32014,32014,32013,32013,32012,32019,32018,32018,32028,32028,32027,32027,32026,32026,32025,32025,32024,32024,32023,32023,32022,32022,32021,32021,32020,32020,32019,29116,29167,29167,29181,29181,29117,29117,29118,29118,29119,29119,29120,29120,29121,29121,29122,29122,29168,29168,29123,29123,29124,29124,29125,29125,29169,29169,29126,29126,29127,29127,29128,29128,29176,29176,29129,29129,29130,29130,29131,29131,29132,29132,29133,29133,29179,29179,29182,29182,29183,29183,29189,29189,29187,29187,29184,29184,29134,29134,29135,29135,29136,29136,29137,29137,29138,29138,29139,29139,29140,29140,29141,29141,29142,29142,29143,29143,29144,29144,29145,29145,29146,29146,29147,29147,29148,29148,29149,29149,29150,29150,29151,29151,29152,29152,29153,29153,29154,29154,29155,29155,29156,29156,28981,28981,28982,28982,30117,30117,30192,30192,30257,30257,30290,30290,30323,30323,30355,30355,30161,30161,29977,29977,29978,29978,29979,29979,30118,30118,30193,30193,30162,30162,30119,30119,29980,29980,29981,29981,29982,29982,29983,29983,29984,29984,29985,29985,29986,29986,29987,29987,29988,29988,29989,29989,30120,30120,29990,29990,29991,29991,29992,29992,29993,29993,29994,29994,30291,30291,29995,29995,29996,29996,29997,29997,29998,29998,29999,29999,30000,30000,30001,30001,30002,30002,30003,30003,30004,30004,30005,30005,30006,30006,30007,30007,30008,30008,30009,30009,30010,30010,30011,30011,30012,30012,30013,30013,30014,30014,30015,30015,30016,30016,30017,30017,30018,30018,30019,30019,30020,30020,30021,30021,30121,30121,30022,30022,30023,30023,30024,30024,30025,30025,30026,30026,30163,30163,30164,30164,30027,30027,30028,30028,30029,30029,30030,30030,30031,30031,30032,30032,30033,30033,30258,30258,30395,30395,30511,30511,30237,30237,30034,30034,30035,30035,30036,30036,30037,30037,30038,30038,30039,30039,30040,30040,30041,30041,30165,30165,30213,30213,30259,30259,30122,30122,30042,30042,30043,30043,30044,30044,30166,30166,30194,30194,30045,30045,30046,30046,30047,30047,30048,30048,30049,30049,30123,30123,30050,30050,30051,30051,30052,30052,30167,30167,30168,30168,30053,30053,30054,30054,30055,30055,30056,30056,30057,30057,30058,30058,30059,30059,30060,30060,30061,30061,30214,30214,30238,30238,30260,30260,30124,30124,30062,30062,29198,29198,29199,29199,31631,31631,31632,31632,31633,31633,31634,31634,31635,31635,31636,31636,31637,31637,31638,31638,31639,31639,31640,31640,31641,31641,31753,31753,31642,31642,31643,31643,31644,31644,31645,31645,31646,31646,31647,31647,31648,31648,31649,31649,31650,31650,31651,31651,31652,31652,31653,31653,31654,31654,31655,31655,31789,31789,31773,31773,31656,31656,31657,31657,31658,31658,31659,31659,31660,31660,31661,31661,31662,31662,31663,31663,31754,31754,31664,31664,31665,31665,31666,31666,31667,31667,31668,31668,31669,31669,31755,31755,31670,31670,31671,31671,31672,31672,31756,31756,31673,31673,31674,31674,31675,31675,31757,31757,31676,31676,31677,31677,31678,31678,31679,31679,31680,31680,31681,31681,31682,31682,31683,31683,31803,31803,31810,31810,31774,31774,31684,31684,31685,31685,31686,31686,31758,31758,31687,31687,31688,31688,31689,31689,31759,31759,31782,31782,31775,31775,31690,31690,31691,31691,31692,31692,31693,31693,31694,31694,31783,31783,31760,31760,31695,31695,31696,31696,31697,31697,31698,31698,31699,31699,31761,31761,31790,31790,31700,31700,31701,31701,31702,31702,31703,31703,31704,31704,31850,31850,31762,31762,31705,31705,31706,31706,31707,31707,31776,31776,31784,31784,31800,31800,31791,31791,31708,31708,31709,31709,31710,31710,31711,31711,31712,31712,31713,31713,31714,31714,31715,31715,31763,31763,31764,31764,31716,31716,31717,31717,31718,31718,31777,31777,31719,31719,31720,31720,31721,31721,31722,31722,31723,31723,31778,31778,31812,31812,31724,31724,31725,31725,31726,31726,31727,31727,31728,31728,31729,31729,31730,31730,31785,31785,31731,31731,31732,31732,31733,31733,31734,31734,31735,31735,31736,31736,31737,31737,31738,31738,31739,31739,31740,31740,31741,31741,31742,31742,31500,31500,31501,31501,32186,32186,32185,32185,32184,32184,32183,32183,32216,32216,32222,32222,32221,32221,32215,32215,32208,32208,32195,32195,32182,32182,32181,32181,32180,32180,32179,32179,32178,32178,32177,32177,32176,32176,32175,32175,32174,32174,32173,32173,32172,32172,32171,32171,32170,32170,32194,32194,32169,32169,32168,32168,32167,32167,32201,32201,32259,32259,32276,32276,32296,32296,32286,32286,32166,32166,32165,32165,32164,32164,32163,32163,32162,32162,32161,32161,32160,32160,32159,32159,32158,32158,32157,32157,32156,32156,32155,32155,32154,32154,32153,32153,32152,32152,32151,32151,32150,32150,32149,32149,32193,32193,32192,32192,32148,32148,32147,32147,32146,32146,32212,32212,32220,32220,32200,32200,32191,32191,32145,32145,32144,32144,32143,32143,32142,32142,32141,32141,32140,32140,32139,32139,32138,32138,32137,32137,32136,32136,32135,32135,32134,32134,32199,32199,32207,32207,32198,32198,32190,32190,32133,32133,32132,32132,32131,32131,32130,32130,32129,32129,32128,32128,32127,32127,32126,32126,32125,32125,32124,32124,32206,32206,32211,32211,32219,32219,32123,32123,32122,32122,32121,32121,32120,32120,32119,32119,32118,32118,32117,32117,32116,32116,32115,32115,32114,32114,32113,32113,32112,32112,32111,32111,32110,32110,32109,32109,32108,32108,32107,32107,32106,32106,32227,32227,32210,32210,32205,32205,32189,32189,32105,32105,32104,32104,32103,32103,32102,32102,32101,32101,32100,32100,32099,32099,32098,32098,32097,32097,32096,32096,32095,32095,32094,32094,32093,32093,32092,32092,32091,32091,32090,32090,32089,32089,32088,32088,32087,32087,32086,32086,32085,32085,32084,32084,32083,32083,32082,32082,32081,32081,32080,32080,32209,32209,32204,32204,32079,32079,32078,32078,32077,32077,32076,32076,32075,32075,32197,32197,32213,32213,32203,32203,32074,32074,32073,32073,32072,32072,32188,32188,32071,32071,32070,32070,32069,32069,32068,32068,32067,32067,32066,32066,32065,32065,32064,32064,32063,32063,32062,32062,32061,32061,32060,32060,32059,32059,32187,32187,32058,32058,32057,32057,32056,32056,32055,32055,32054,32054,32053,32053,32202,32202,32052,32052,32051,32051,32050,32050,32049,32049,32048,32048,32196,32196,32047,32047,32046,32046,32045,32045,32044,32044,32043,32043,32042,32042,32041,32041,32040,32040,32039,32039,32038,32038,32037,32037,32036,32036,32035,32035,32034,32034,32033,32033,32032,32032,32031,32031,32030,32030,32029,32029,29116,32321,32320,32320,32365,32365,32364,32364,32363,32363,32362,32362,32361,32361,32370,32370,32372,32372,32374,32374,32375,32375,32373,32373,32360,32360,32359,32359,32358,32358,32357,32357,32356,32356,32355,32355,32354,32354,32353,32353,32352,32352,32369,32369,32351,32351,32350,32350,32349,32349,32348,32348,32347,32347,32346,32346,32345,32345,32344,32344,32343,32343,32342,32342,32341,32341,32340,32340,32339,32339,32368,32368,32338,32338,32337,32337,32336,32336,32367,32367,32335,32335,32334,32334,32333,32333,32332,32332,32331,32331,32330,32330,32329,32329,32328,32328,32327,32327,32326,32326,32371,32371,32366,32366,32325,32325,32324,32324,32323,32323,32322,32322,32321,32427,32426,32426,32425,32425,32424,32424,32423,32423,32422,32422,32421,32421,32420,32420,32419,32419,32418,32418,32417,32417,32416,32416,32415,32415,32414,32414,32413,32413,32412,32412,32411,32411,32410,32410,32409,32409,32408,32408,32407,32407,32406,32406,32405,32405,32404,32404,32403,32403,32402,32402,32401,32401,32400,32400,32399,32399,32398,32398,32397,32397,32396,32396,32395,32395,32394,32394,32393,32393,32392,32392,32391,32391,32390,32390,32389,32389,32432,32432,32431,32431,32430,32430,32388,32388,32387,32387,32386,32386,32385,32385,32384,32384,32428,32428,32429,32429,32383,32383,32382,32382,32381,32381,32380,32380,32379,32379,32378,32378,32377,32377,32376,32376,32427,32434,32433,32433,32441,32441,32440,32440,32439,32439,32438,32438,32437,32437,32436,32436,32435,32435,32434,32443,32442,32442,32447,32447,32446,32446,32445,32445,32444,32444,32443,32449,32448,32448,32454,32454,32453,32453,32452,32452,32451,32451,32450,32450,32449,32456,32455,32455,32462,32462,32461,32461,32460,32460,32459,32459,32458,32458,32457,32457,32456,32464,32463,32463,32481,32481,32480,32480,32479,32479,32478,32478,32477,32477,32476,32476,32475,32475,32474,32474,32482,32482,32473,32473,32472,32472,32471,32471,32470,32470,32469,32469,32468,32468,32467,32467,32466,32466,32465,32465,32464,32484,32483,32483,32501,32501,32500,32500,32499,32499,32498,32498,32497,32497,32496,32496,32495,32495,32494,32494,32493,32493,32492,32492,32491,32491,32490,32490,32489,32489,32488,32488,32487,32487,32486,32486,32485,32485,32484,32503,32502,32502,32522,32522,32521,32521,32520,32520,32519,32519,32518,32518,32517,32517,32516,32516,32515,32515,32514,32514,32513,32513,32524,32524,32523,32523,32512,32512,32511,32511,32510,32510,32509,32509,32508,32508,32507,32507,32506,32506,32505,32505,32504,32504,32503,32526,32525,32525,32550,32550,32549,32549,32548,32548,32547,32547,32546,32546,32555,32555,32545,32545,32544,32544,32543,32543,32542,32542,32541,32541,32540,32540,32539,32539,32552,32552,32554,32554,32556,32556,32559,32559,32558,32558,32557,32557,32538,32538,32537,32537,32536,32536,32535,32535,32534,32534,32533,32533,32532,32532,32531,32531,32530,32530,32553,32553,32551,32551,32529,32529,32528,32528,32527,32527,32526,32560,32611,32611,32607,32607,32606,32606,32605,32605,32604,32604,32603,32603,32602,32602,32610,32610,32614,32614,32615,32615,32601,32601,32600,32600,32599,32599,32598,32598,32597,32597,32596,32596,32595,32595,32594,32594,32593,32593,32592,32592,32591,32591,32590,32590,32589,32589,32588,32588,32587,32587,32609,32609,32586,32586,32585,32585,32584,32584,32583,32583,32582,32582,32581,32581,32580,32580,32579,32579,32578,32578,32577,32577,32576,32576,32575,32575,32574,32574,32613,32613,32608,32608,32573,32573,32572,32572,32571,32571,32570,32570,32569,32569,32568,32568,32567,32567,32612,32612,32566,32566,32565,32565,32564,32564,32563,32563,32562,32562,32561,32561,32560,32617,32616,32616,32657,32657,32656,32656,32659,32659,32655,32655,32654,32654,32653,32653,32652,32652,32651,32651,32650,32650,32662,32662,32649,32649,32648,32648,32647,32647,32646,32646,32645,32645,32644,32644,32643,32643,32642,32642,32641,32641,32661,32661,32660,32660,32640,32640,32639,32639,32638,32638,32637,32637,32636,32636,32635,32635,32634,32634,32633,32633,32632,32632,32631,32631,32630,32630,32629,32629,32628,32628,32627,32627,32626,32626,32625,32625,32624,32624,32623,32623,32658,32658,32622,32622,32621,32621,32620,32620,32619,32619,32618,32618,32617,32664,32663,32663,32681,32681,32680,32680,32679,32679,32678,32678,32677,32677,32676,32676,32675,32675,32674,32674,32673,32673,32682,32682,32672,32672,32671,32671,32670,32670,32669,32669,32668,32668,32667,32667,32666,32666,32665,32665,32664,32684,32683,32683,32697,32697,32696,32696,32695,32695,32699,32699,32698,32698,32694,32694,32693,32693,32692,32692,32691,32691,32690,32690,32689,32689,32688,32688,32687,32687,32686,32686,32685,32685,32684,32700,32724,32724,32723,32723,32722,32722,32721,32721,32720,32720,32719,32719,32725,32725,32726,32726,32718,32718,32717,32717,32716,32716,32715,32715,32714,32714,32713,32713,32712,32712,32711,32711,32710,32710,32709,32709,32708,32708,32707,32707,32706,32706,32705,32705,32704,32704,32703,32703,32702,32702,32701,32701,32700,32728,32727,32727,32748,32748,32747,32747,32746,32746,32745,32745,32744,32744,32743,32743,32750,32750,32742,32742,32741,32741,32740,32740,32739,32739,32738,32738,32737,32737,32736,32736,32735,32735,32734,32734,32733,32733,32732,32732,32749,32749,32731,32731,32730,32730,32729,32729,32728,32752,32751,32751,32768,32768,32767,32767,32766,32766,32765,32765,32764,32764,32763,32763,32762,32762,32761,32761,32760,32760,32759,32759,32758,32758,32757,32757,32756,32756,32755,32755,32754,32754,32753,32753,32752,32770,32769,32769,32806,32806,32805,32805,32804,32804,32803,32803,32802,32802,32801,32801,32800,32800,32799,32799,32808,32808,32798,32798,32797,32797,32796,32796,32795,32795,32794,32794,32809,32809,32793,32793,32792,32792,32791,32791,32790,32790,32789,32789,32788,32788,32787,32787,32786,32786,32785,32785,32784,32784,32807,32807,32783,32783,32782,32782,32781,32781,32780,32780,32779,32779,32778,32778,32777,32777,32776,32776,32775,32775,32774,32774,32773,32773,32772,32772,32771,32771,32770,32811,32810,32810,32820,32820,32819,32819,32818,32818,32817,32817,32816,32816,32815,32815,32814,32814,32813,32813,32812,32812,32811,32822,32821,32821,32836,32836,32835,32835,32834,32834,32833,32833,32832,32832,32831,32831,32830,32830,32829,32829,32828,32828,32827,32827,32826,32826,32825,32825,32824,32824,32823,32823,32822,32838,32837,32837,32848,32848,32847,32847,32846,32846,32845,32845,32844,32844,32843,32843,32842,32842,32841,32841,32840,32840,32839,32839,32838,32850,32849,32849,32860,32860,32859,32859,32858,32858,32857,32857,32856,32856,32855,32855,32854,32854,32853,32853,32852,32852,32851,32851,32850,32862,32861,32861,32882,32882,32881,32881,32880,32880,32879,32879,32878,32878,32877,32877,32876,32876,32875,32875,32874,32874,32873,32873,32872,32872,32871,32871,32870,32870,32869,32869,32868,32868,32867,32867,32866,32866,32865,32865,32864,32864,32863,32863,32862,32884,32883,32883,32912,32912,32911,32911,32910,32910,32909,32909,32908,32908,32907,32907,32906,32906,32905,32905,32904,32904,32903,32903,32902,32902,32901,32901,32900,32900,32899,32899,32898,32898,32897,32897,32896,32896,32895,32895,32894,32894,32893,32893,32892,32892,32891,32891,32890,32890,32889,32889,32888,32888,32887,32887,32886,32886,32913,32913,32885,32885,32884,32915,32914,32914,32932,32932,32931,32931,32936,32936,32930,32930,32929,32929,32928,32928,32927,32927,32926,32926,32935,32935,32925,32925,32924,32924,32923,32923,32922,32922,32921,32921,32920,32920,32919,32919,32933,32933,32934,32934,32918,32918,32917,32917,32916,32916,32915,32938,32937,32937,32952,32952,32951,32951,32950,32950,32949,32949,32948,32948,32947,32947,32946,32946,32945,32945,32944,32944,32943,32943,32942,32942,32941,32941,32940,32940,32939,32939,32938,32954,32953,32953,32966,32966,32965,32965,32964,32964,32963,32963,32962,32962,32961,32961,32960,32960,32959,32959,32958,32958,32957,32957,32956,32956,32955,32955,32954,33220,33188,33188,33161,33161,33160,33160,33159,33159,33176,33176,33158,33158,33157,33157,33156,33156,33155,33155,33154,33154,33153,33153,33152,33152,33151,33151,33175,33175,33150,33150,33149,33149,33148,33148,33147,33147,33146,33146,33145,33145,33144,33144,33143,33143,33174,33174,33142,33142,33141,33141,33140,33140,33139,33139,33138,33138,33137,33137,33136,33136,33173,33173,33135,33135,33134,33134,33133,33133,33187,33187,33172,33172,33132,33132,33131,33131,33130,33130,33237,33237,33129,33129,33128,33128,33127,33127,33126,33126,33125,33125,33124,33124,33123,33123,33122,33122,33121,33121,33120,33120,33119,33119,33200,33200,33171,33171,33118,33118,33117,33117,33116,33116,33115,33115,33114,33114,33113,33113,33112,33112,33199,33199,33212,33212,33198,33198,33170,33170,33111,33111,33110,33110,33109,33109,33108,33108,33107,33107,33106,33106,33105,33105,33265,33265,33249,33249,33169,33169,33104,33104,33103,33103,33102,33102,33101,33101,33100,33100,33099,33099,33098,33098,33097,33097,33096,33096,33095,33095,33094,33094,33186,33186,33093,33093,33092,33092,33091,33091,33090,33090,33089,33089,33088,33088,33236,33236,33258,33258,33264,33264,33257,33257,33235,33235,33218,33218,33211,33211,33197,33197,33087,33087,33086,33086,33085,33085,33084,33084,33083,33083,33082,33082,33081,33081,33168,33168,33080,33080,33079,33079,33078,33078,33077,33077,33076,33076,33075,33075,33074,33074,33196,33196,33210,33210,33247,33247,33195,33195,33073,33073,33072,33072,33071,33071,33070,33070,33069,33069,33068,33068,33067,33067,33066,33066,33065,33065,33064,33064,33063,33063,33062,33062,33061,33061,33060,33060,33059,33059,33194,33194,33209,33209,33058,33058,33057,33057,33056,33056,33055,33055,33054,33054,33167,33167,33053,33053,33052,33052,33051,33051,33050,33050,33049,33049,33048,33048,33047,33047,33046,33046,33045,33045,33044,33044,33043,33043,33185,33185,33193,33193,33184,33184,33042,33042,33041,33041,33040,33040,33039,33039,33038,33038,33208,33208,33166,33166,33037,33037,33036,33036,33035,33035,33034,33034,33033,33033,33032,33032,33031,33031,33030,33030,33029,33029,33028,33028,33165,33165,33027,33027,33026,33026,33025,33025,33024,33024,33023,33023,33022,33022,33021,33021,33020,33020,33183,33183,33019,33019,33018,33018,33017,33017,33016,33016,33015,33015,33014,33014,33013,33013,33012,33012,33011,33011,33010,33010,33009,33009,33008,33008,33007,33007,33006,33006,33005,33005,33205,33205,33192,33192,33164,33164,33004,33004,33003,33003,33002,33002,33182,33182,33191,33191,33001,33001,33000,33000,32999,32999,32998,32998,32997,32997,32996,32996,32995,32995,33204,33204,33246,33246,33221,33221,33214,33214,33203,33203,32994,32994,32993,32993,32992,32992,32991,32991,32990,32990,33181,33181,33163,33163,32989,32989,32988,32988,32987,32987,33180,33180,33190,33190,33189,33189,33179,33179,32986,32986,32985,32985,32984,32984,33162,33162,32983,32983,32982,32982,32981,32981,32980,32980,32979,32979,32978,32978,32977,32977,32976,32976,33178,33178,32975,32975,32974,32974,32973,32973,32972,32972,32971,32971,32970,32970,32969,32969,32968,32968,32967,32967,33177,33177,33201,33201,33220,33275,33274,33274,33345,33345,33344,33344,33343,33343,33342,33342,33341,33341,33340,33340,33339,33339,33338,33338,33337,33337,33336,33336,33349,33349,33355,33355,33335,33335,33334,33334,33333,33333,33332,33332,33331,33331,33330,33330,33329,33329,33328,33328,33327,33327,33326,33326,33325,33325,33324,33324,33323,33323,33322,33322,33321,33321,33320,33320,33319,33319,33318,33318,33317,33317,33316,33316,33315,33315,33314,33314,33348,33348,33313,33313,33312,33312,33311,33311,33310,33310,33309,33309,33308,33308,33307,33307,33306,33306,33347,33347,33305,33305,33304,33304,33303,33303,33302,33302,33301,33301,33354,33354,33357,33357,33352,33352,33300,33300,33299,33299,33298,33298,33346,33346,33297,33297,33296,33296,33295,33295,33294,33294,33293,33293,33358,33358,33356,33356,33353,33353,33292,33292,33291,33291,33290,33290,33289,33289,33288,33288,33351,33351,33350,33350,33287,33287,33286,33286,33285,33285,33284,33284,33283,33283,33282,33282,33281,33281,33280,33280,33279,33279,33278,33278,33277,33277,33276,33276,33275,33359,33401,33401,33399,33399,33398,33398,33397,33397,33403,33403,33402,33402,33396,33396,33395,33395,33394,33394,33393,33393,33392,33392,33391,33391,33390,33390,33389,33389,33388,33388,33387,33387,33386,33386,33385,33385,33384,33384,33383,33383,33382,33382,33381,33381,33380,33380,33379,33379,33378,33378,33377,33377,33376,33376,33375,33375,33374,33374,33373,33373,33372,33372,33371,33371,33370,33370,33369,33369,33368,33368,33367,33367,33366,33366,33365,33365,33364,33364,33363,33363,33362,33362,33400,33400,33361,33361,33360,33360,33359,33490,33492,33492,33484,33484,33483,33483,33482,33482,33481,33481,33480,33480,33479,33479,33478,33478,33489,33489,33477,33477,33476,33476,33475,33475,33474,33474,33473,33473,33472,33472,33471,33471,33488,33488,33470,33470,33469,33469,33468,33468,33467,33467,33466,33466,33465,33465,33464,33464,33491,33491,33495,33495,33496,33496,33494,33494,33463,33463,33462,33462,33461,33461,33460,33460,33459,33459,33458,33458,33457,33457,33456,33456,33455,33455,33454,33454,33453,33453,33452,33452,33451,33451,33450,33450,33449,33449,33448,33448,33447,33447,33446,33446,33445,33445,33444,33444,33443,33443,33442,33442,33441,33441,33440,33440,33439,33439,33438,33438,33437,33437,33436,33436,33435,33435,33434,33434,33433,33433,33432,33432,33431,33431,33430,33430,33429,33429,33428,33428,33487,33487,33427,33427,33426,33426,33425,33425,33486,33486,33424,33424,33423,33423,33422,33422,33421,33421,33420,33420,33419,33419,33418,33418,33417,33417,33416,33416,33415,33415,33498,33498,33497,33497,33493,33493,33485,33485,33414,33414,33413,33413,33412,33412,33411,33411,33410,33410,33409,33409,33408,33408,33407,33407,33406,33406,33405,33405,33404,33404,33490,33500,33499,33499,33768,33768,33747,33747,33746,33746,33745,33745,33744,33744,33743,33743,33742,33742,33741,33741,33740,33740,33739,33739,33738,33738,33737,33737,33736,33736,33735,33735,33788,33788,33734,33734,33733,33733,33732,33732,33767,33767,33731,33731,33730,33730,33729,33729,33787,33787,33766,33766,33728,33728,33727,33727,33726,33726,33786,33786,33831,33831,33835,33835,33838,33838,33842,33842,33844,33844,33845,33845,33846,33846,33848,33848,33850,33850,33851,33851,33849,33849,33847,33847,33799,33799,33785,33785,33725,33725,33724,33724,33723,33723,33765,33765,33764,33764,33722,33722,33721,33721,33720,33720,33819,33819,33719,33719,33718,33718,33717,33717,33716,33716,33715,33715,33714,33714,33713,33713,33763,33763,33798,33798,33809,33809,33797,33797,33712,33712,33711,33711,33710,33710,33709,33709,33708,33708,33784,33784,33707,33707,33706,33706,33705,33705,33704,33704,33703,33703,33702,33702,33701,33701,33700,33700,33699,33699,33698,33698,33697,33697,33696,33696,33695,33695,33694,33694,33693,33693,33783,33783,33818,33818,33812,33812,33796,33796,33692,33692,33691,33691,33690,33690,33689,33689,33688,33688,33687,33687,33686,33686,33782,33782,33685,33685,33684,33684,33683,33683,33682,33682,33681,33681,33829,33829,33762,33762,33680,33680,33679,33679,33678,33678,33781,33781,33677,33677,33676,33676,33675,33675,33674,33674,33673,33673,33761,33761,33672,33672,33671,33671,33670,33670,33760,33760,33669,33669,33668,33668,33667,33667,33666,33666,33665,33665,33759,33759,33808,33808,33807,33807,33758,33758,33664,33664,33663,33663,33662,33662,33661,33661,33660,33660,33659,33659,33658,33658,33657,33657,33806,33806,33795,33795,33656,33656,33655,33655,33654,33654,33653,33653,33652,33652,33651,33651,33650,33650,33649,33649,33648,33648,33780,33780,33647,33647,33646,33646,33645,33645,33757,33757,33805,33805,33817,33817,33811,33811,33756,33756,33644,33644,33643,33643,33642,33642,33641,33641,33640,33640,33639,33639,33638,33638,33637,33637,33636,33636,33635,33635,33634,33634,33779,33779,33804,33804,33755,33755,33633,33633,33632,33632,33631,33631,33630,33630,33629,33629,33628,33628,33627,33627,33778,33778,33803,33803,33810,33810,33816,33816,33828,33828,33841,33841,33843,33843,33839,33839,33836,33836,33832,33832,33826,33826,33815,33815,33794,33794,33626,33626,33625,33625,33624,33624,33623,33623,33622,33622,33777,33777,33754,33754,33621,33621,33620,33620,33619,33619,33776,33776,33618,33618,33617,33617,33616,33616,33615,33615,33614,33614,33753,33753,33613,33613,33612,33612,33611,33611,33610,33610,33609,33609,33608,33608,33607,33607,33606,33606,33605,33605,33604,33604,33603,33603,33602,33602,33601,33601,33600,33600,33599,33599,33598,33598,33597,33597,33802,33802,33793,33793,33596,33596,33595,33595,33594,33594,33593,33593,33592,33592,33775,33775,33823,33823,33814,33814,33801,33801,33752,33752,33591,33591,33590,33590,33589,33589,33588,33588,33587,33587,33586,33586,33585,33585,33792,33792,33584,33584,33583,33583,33582,33582,33581,33581,33580,33580,33774,33774,33791,33791,33579,33579,33578,33578,33577,33577,33576,33576,33575,33575,33574,33574,33573,33573,33572,33572,33571,33571,33570,33570,33569,33569,33568,33568,33567,33567,33566,33566,33565,33565,33564,33564,33800,33800,33563,33563,33562,33562,33561,33561,33560,33560,33559,33559,33773,33773,33558,33558,33557,33557,33556,33556,33555,33555,33554,33554,33751,33751,33553,33553,33552,33552,33551,33551,33550,33550,33549,33549,33548,33548,33547,33547,33546,33546,33772,33772,33790,33790,33750,33750,33545,33545,33544,33544,33543,33543,33749,33749,33542,33542,33541,33541,33540,33540,33539,33539,33538,33538,33537,33537,33536,33536,33535,33535,33534,33534,33533,33533,33532,33532,33531,33531,33771,33771,33789,33789,33530,33530,33529,33529,33528,33528,33527,33527,33526,33526,33525,33525,33524,33524,33770,33770,33769,33769,33523,33523,33522,33522,33521,33521,33520,33520,33519,33519,33820,33820,33518,33518,33517,33517,33516,33516,33748,33748,33515,33515,33514,33514,33513,33513,33512,33512,33511,33511,33510,33510,33509,33509,33508,33508,33507,33507,33506,33506,33505,33505,33504,33504,33503,33503,33502,33502,33501,33501,33500,33853,33852,33852,33987,33987,33986,33986,33975,33975,33974,33974,33973,33973,34006,34006,33972,33972,33971,33971,33970,33970,33969,33969,33968,33968,33967,33967,33966,33966,33965,33965,34018,34018,33985,33985,33964,33964,33963,33963,33962,33962,33961,33961,33960,33960,33959,33959,33984,33984,33958,33958,33957,33957,33956,33956,33955,33955,33954,33954,34001,34001,34038,34038,34033,34033,34000,34000,33953,33953,33952,33952,33951,33951,33950,33950,33949,33949,33948,33948,33947,33947,33946,33946,33945,33945,33999,33999,34013,34013,33944,33944,33943,33943,33942,33942,33941,33941,33940,33940,33939,33939,33938,33938,33937,33937,34012,34012,33936,33936,33935,33935,33934,33934,33933,33933,33932,33932,33998,33998,33931,33931,33930,33930,33929,33929,33983,33983,34029,34029,34041,34041,34027,34027,33997,33997,33982,33982,33928,33928,33927,33927,33926,33926,33925,33925,33924,33924,33923,33923,33922,33922,33996,33996,34011,34011,34017,34017,33921,33921,33920,33920,33919,33919,33918,33918,33917,33917,33916,33916,33915,33915,33914,33914,33913,33913,33912,33912,33911,33911,33910,33910,34021,34021,34005,34005,33909,33909,33908,33908,33907,33907,33906,33906,33905,33905,33904,33904,33903,33903,33902,33902,33901,33901,33900,33900,33899,33899,33898,33898,33995,33995,34016,34016,33897,33897,33896,33896,33895,33895,34009,34009,33994,33994,33981,33981,33894,33894,33893,33893,33892,33892,33891,33891,33890,33890,33889,33889,33888,33888,33993,33993,33992,33992,33980,33980,33887,33887,33886,33886,33885,33885,33884,33884,33883,33883,33882,33882,33881,33881,33991,33991,34020,34020,34024,34024,33990,33990,33979,33979,33880,33880,33879,33879,33878,33878,33978,33978,33877,33877,33876,33876,33875,33875,33874,33874,33873,33873,33872,33872,33871,33871,33989,33989,34003,34003,34008,34008,34002,34002,33870,33870,33869,33869,33868,33868,33977,33977,33988,33988,33867,33867,33866,33866,33865,33865,33864,33864,33863,33863,33862,33862,33861,33861,33860,33860,33859,33859,33858,33858,34007,34007,33976,33976,33857,33857,33856,33856,33855,33855,33854,33854,33853,34051,34050,34050,34372,34372,34371,34371,34370,34370,34369,34369,34419,34419,34396,34396,34368,34368,34367,34367,34366,34366,34365,34365,34364,34364,34363,34363,34362,34362,34361,34361,34430,34430,34360,34360,34359,34359,34358,34358,34357,34357,34356,34356,34355,34355,34395,34395,34354,34354,34353,34353,34352,34352,34351,34351,34350,34350,34349,34349,34411,34411,34348,34348,34347,34347,34346,34346,34345,34345,34344,34344,34343,34343,34342,34342,34341,34341,34340,34340,34339,34339,34338,34338,34337,34337,34394,34394,34336,34336,34335,34335,34334,34334,34418,34418,34333,34333,34332,34332,34331,34331,34330,34330,34329,34329,34328,34328,34327,34327,34326,34326,34325,34325,34324,34324,34323,34323,34410,34410,34322,34322,34321,34321,34320,34320,34319,34319,34318,34318,34317,34317,34393,34393,34316,34316,34315,34315,34314,34314,34313,34313,34312,34312,34311,34311,34310,34310,34309,34309,34423,34423,34417,34417,34308,34308,34307,34307,34306,34306,34305,34305,34304,34304,34303,34303,34302,34302,34301,34301,34300,34300,34299,34299,34298,34298,34409,34409,34416,34416,34408,34408,34297,34297,34296,34296,34295,34295,34294,34294,34293,34293,34292,34292,34291,34291,34290,34290,34289,34289,34288,34288,34287,34287,34286,34286,34285,34285,34284,34284,34283,34283,34282,34282,34281,34281,34280,34280,34279,34279,34278,34278,34277,34277,34392,34392,34276,34276,34275,34275,34274,34274,34273,34273,34272,34272,34271,34271,34270,34270,34269,34269,34268,34268,34391,34391,34267,34267,34266,34266,34265,34265,34264,34264,34263,34263,34262,34262,34261,34261,34260,34260,34259,34259,34258,34258,34257,34257,34256,34256,34255,34255,34254,34254,34253,34253,34252,34252,34251,34251,34250,34250,34390,34390,34407,34407,34249,34249,34248,34248,34247,34247,34246,34246,34245,34245,34244,34244,34243,34243,34242,34242,34241,34241,34240,34240,34239,34239,34238,34238,34237,34237,34236,34236,34235,34235,34234,34234,34389,34389,34388,34388,34233,34233,34232,34232,34231,34231,34406,34406,34230,34230,34229,34229,34228,34228,34227,34227,34226,34226,34225,34225,34224,34224,34223,34223,34222,34222,34221,34221,34220,34220,34434,34434,34387,34387,34219,34219,34218,34218,34217,34217,34216,34216,34215,34215,34214,34214,34213,34213,34212,34212,34211,34211,34210,34210,34209,34209,34208,34208,34207,34207,34206,34206,34205,34205,34204,34204,34203,34203,34202,34202,34201,34201,34405,34405,34422,34422,34433,34433,34429,34429,34200,34200,34199,34199,34198,34198,34197,34197,34196,34196,34195,34195,34194,34194,34404,34404,34386,34386,34193,34193,34192,34192,34191,34191,34190,34190,34189,34189,34188,34188,34187,34187,34428,34428,34421,34421,34186,34186,34185,34185,34184,34184,34183,34183,34182,34182,34181,34181,34180,34180,34179,34179,34178,34178,34177,34177,34403,34403,34385,34385,34176,34176,34175,34175,34174,34174,34173,34173,34172,34172,34171,34171,34170,34170,34169,34169,34168,34168,34167,34167,34166,34166,34165,34165,34164,34164,34163,34163,34384,34384,34415,34415,34383,34383,34162,34162,34161,34161,34160,34160,34159,34159,34158,34158,34157,34157,34156,34156,34427,34427,34155,34155,34154,34154,34153,34153,34152,34152,34151,34151,34150,34150,34382,34382,34149,34149,34148,34148,34147,34147,34146,34146,34145,34145,34144,34144,34143,34143,34142,34142,34141,34141,34140,34140,34139,34139,34138,34138,34137,34137,34136,34136,34135,34135,34134,34134,34133,34133,34132,34132,34131,34131,34130,34130,34381,34381,34129,34129,34128,34128,34127,34127,34126,34126,34125,34125,34380,34380,34414,34414,34402,34402,34124,34124,34123,34123,34122,34122,34121,34121,34120,34120,34119,34119,34118,34118,34117,34117,34116,34116,34115,34115,34379,34379,34114,34114,34113,34113,34112,34112,34111,34111,34110,34110,34378,34378,34401,34401,34420,34420,34426,34426,34400,34400,34377,34377,34109,34109,34108,34108,34107,34107,34106,34106,34105,34105,34104,34104,34103,34103,34102,34102,34101,34101,34100,34100,34399,34399,34376,34376,34099,34099,34098,34098,34097,34097,34413,34413,34096,34096,34095,34095,34094,34094,34093,34093,34092,34092,34091,34091,34090,34090,34375,34375,34089,34089,34088,34088,34087,34087,34398,34398,34425,34425,34436,34436,34449,34449,34440,34440,34431,34431,34424,34424,34086,34086,34085,34085,34084,34084,34083,34083,34082,34082,34081,34081,34080,34080,34412,34412,34079,34079,34078,34078,34077,34077,34076,34076,34075,34075,34074,34074,34073,34073,34072,34072,34071,34071,34374,34374,34070,34070,34069,34069,34068,34068,34373,34373,34067,34067,34066,34066,34065,34065,34064,34064,34063,34063,34062,34062,34061,34061,34397,34397,34060,34060,34059,34059,34058,34058,34057,34057,34056,34056,34055,34055,34054,34054,34053,34053,34052,34052,34051,34583,34584,34584,34575,34575,34565,34565,34564,34564,34563,34563,34562,34562,34561,34561,34560,34560,34559,34559,34558,34558,34557,34557,34556,34556,34555,34555,34554,34554,34553,34553,34552,34552,34551,34551,34550,34550,34549,34549,34548,34548,34547,34547,34572,34572,34576,34576,34571,34571,34546,34546,34545,34545,34544,34544,34543,34543,34542,34542,34570,34570,34541,34541,34540,34540,34539,34539,34538,34538,34537,34537,34536,34536,34535,34535,34534,34534,34579,34579,34580,34580,34582,34582,34567,34567,34533,34533,34532,34532,34531,34531,34577,34577,34574,34574,34569,34569,34566,34566,34530,34530,34529,34529,34528,34528,34527,34527,34526,34526,34525,34525,34524,34524,34523,34523,34522,34522,34521,34521,34520,34520,34519,34519,34518,34518,34517,34517,34516,34516,34515,34515,34514,34514,34513,34513,34512,34512,34511,34511,34510,34510,34509,34509,34508,34508,34507,34507,34506,34506,34505,34505,34504,34504,34503,34503,34502,34502,34501,34501,34500,34500,34499,34499,34498,34498,34497,34497,34496,34496,34495,34495,34494,34494,34568,34568,34493,34493,34492,34492,34491,34491,34490,34490,34489,34489,34488,34488,34487,34487,34486,34486,34485,34485,34573,34573,34578,34578,34581,34581,34583,34586,34585,34585,34645,34645,34640,34640,34639,34639,34638,34638,34637,34637,34636,34636,34644,34644,34635,34635,34634,34634,34633,34633,34632,34632,34631,34631,34630,34630,34629,34629,34643,34643,34628,34628,34627,34627,34626,34626,34650,34650,34656,34656,34655,34655,34625,34625,34624,34624,34623,34623,34622,34622,34621,34621,34620,34620,34619,34619,34618,34618,34617,34617,34616,34616,34648,34648,34652,34652,34658,34658,34657,34657,34615,34615,34614,34614,34613,34613,34612,34612,34611,34611,34610,34610,34609,34609,34647,34647,34649,34649,34654,34654,34653,34653,34608,34608,34607,34607,34606,34606,34605,34605,34604,34604,34603,34603,34602,34602,34601,34601,34600,34600,34599,34599,34598,34598,34597,34597,34596,34596,34595,34595,34646,34646,34594,34594,34593,34593,34592,34592,34642,34642,34651,34651,34641,34641,34591,34591,34590,34590,34589,34589,34588,34588,34587,34587,34586,34660,34659,34659,34686,34686,34685,34685,34688,34688,34684,34684,34683,34683,34682,34682,34681,34681,34680,34680,34687,34687,34679,34679,34678,34678,34677,34677,34676,34676,34675,34675,34674,34674,34673,34673,34672,34672,34671,34671,34670,34670,34669,34669,34668,34668,34667,34667,34666,34666,34665,34665,34664,34664,34663,34663,34662,34662,34661,34661,34660,34690,34689,34689,34742,34742,34739,34739,34738,34738,34737,34737,34736,34736,34735,34735,34734,34734,34733,34733,34743,34743,34744,34744,34732,34732,34731,34731,34730,34730,34729,34729,34728,34728,34727,34727,34726,34726,34725,34725,34724,34724,34723,34723,34722,34722,34721,34721,34720,34720,34719,34719,34718,34718,34717,34717,34716,34716,34715,34715,34714,34714,34713,34713,34712,34712,34741,34741,34711,34711,34710,34710,34709,34709,34708,34708,34707,34707,34706,34706,34705,34705,34704,34704,34703,34703,34740,34740,34702,34702,34701,34701,34700,34700,34699,34699,34698,34698,34697,34697,34696,34696,34695,34695,34694,34694,34693,34693,34692,34692,34691,34691,34690,34746,34745,34745,34781,34781,34780,34780,34779,34779,34778,34778,34777,34777,34776,34776,34775,34775,34774,34774,34773,34773,34772,34772,34771,34771,34770,34770,34769,34769,34768,34768,34767,34767,34766,34766,34765,34765,34764,34764,34763,34763,34762,34762,34761,34761,34760,34760,34759,34759,34758,34758,34757,34757,34756,34756,34755,34755,34754,34754,34753,34753,34752,34752,34751,34751,34750,34750,34749,34749,34748,34748,34747,34747,34746,34783,34782,34782,34800,34800,34799,34799,34798,34798,34797,34797,34796,34796,34795,34795,34794,34794,34793,34793,34792,34792,34801,34801,34791,34791,34790,34790,34789,34789,34788,34788,34787,34787,34786,34786,34785,34785,34784,34784,34783,34803,34802,34802,34821,34821,34822,34822,34820,34820,34819,34819,34818,34818,34817,34817,34816,34816,34815,34815,34814,34814,34813,34813,34812,34812,34811,34811,34810,34810,34809,34809,34808,34808,34807,34807,34806,34806,34805,34805,34804,34804,34803,34824,34823,34823,35126,35126,35125,35125,35124,35124,35123,35123,35122,35122,35121,35121,35120,35120,35119,35119,35118,35118,35117,35117,35116,35116,35115,35115,35114,35114,35113,35113,35112,35112,35111,35111,35110,35110,35109,35109,35108,35108,35107,35107,35106,35106,35105,35105,35176,35176,35104,35104,35103,35103,35102,35102,35101,35101,35100,35100,35099,35099,35098,35098,35097,35097,35096,35096,35095,35095,35094,35094,35093,35093,35092,35092,35091,35091,35090,35090,35089,35089,35088,35088,35087,35087,35164,35164,35086,35086,35085,35085,35084,35084,35083,35083,35082,35082,35163,35163,35081,35081,35080,35080,35079,35079,35078,35078,35077,35077,35076,35076,35075,35075,35074,35074,35073,35073,35072,35072,35071,35071,35070,35070,35069,35069,35068,35068,35067,35067,35066,35066,35065,35065,35064,35064,35063,35063,35062,35062,35061,35061,35060,35060,35175,35175,35146,35146,35059,35059,35058,35058,35057,35057,35056,35056,35055,35055,35054,35054,35053,35053,35052,35052,35051,35051,35050,35050,35162,35162,35049,35049,35048,35048,35047,35047,35046,35046,35045,35045,35044,35044,35043,35043,35042,35042,35041,35041,35040,35040,35039,35039,35038,35038,35145,35145,35037,35037,35036,35036,35035,35035,35034,35034,35033,35033,35032,35032,35031,35031,35030,35030,35029,35029,35028,35028,35027,35027,35026,35026,35025,35025,35024,35024,35023,35023,35022,35022,35021,35021,35020,35020,35019,35019,35018,35018,35144,35144,35017,35017,35016,35016,35015,35015,35014,35014,35013,35013,35012,35012,35011,35011,35010,35010,35009,35009,35008,35008,35007,35007,35143,35143,35006,35006,35005,35005,35004,35004,35003,35003,35002,35002,35142,35142,35174,35174,35170,35170,35141,35141,35001,35001,35000,35000,34999,34999,34998,34998,34997,34997,34996,34996,34995,34995,35161,35161,34994,34994,34993,34993,34992,34992,34991,34991,34990,34990,34989,34989,34988,34988,34987,34987,35160,35160,34986,34986,34985,34985,34984,34984,34983,34983,34982,34982,34981,34981,34980,34980,34979,34979,34978,34978,34977,34977,34976,34976,34975,34975,35140,35140,35207,35207,35205,35205,35159,35159,35139,35139,34974,34974,34973,34973,34972,34972,34971,34971,34970,34970,34969,34969,35158,35158,34968,34968,34967,34967,34966,34966,34965,34965,34964,34964,34963,34963,34962,34962,34961,34961,34960,34960,34959,34959,34958,34958,34957,34957,35169,35169,35182,35182,35173,35173,35157,35157,35138,35138,34956,34956,34955,34955,34954,34954,34953,34953,34952,34952,34951,34951,34950,34950,34949,34949,34948,34948,35137,35137,35156,35156,34947,34947,34946,34946,34945,34945,34944,34944,34943,34943,34942,34942,34941,34941,34940,34940,34939,34939,34938,34938,34937,34937,34936,34936,34935,34935,35155,35155,35136,35136,34934,34934,34933,34933,34932,34932,35154,35154,35168,35168,34931,34931,34930,34930,34929,34929,34928,34928,34927,34927,34926,34926,34925,34925,34924,34924,34923,34923,34922,34922,34921,34921,34920,34920,34919,34919,34918,34918,34917,34917,34916,34916,34915,34915,34914,34914,34913,34913,34912,34912,34911,34911,34910,34910,34909,34909,34908,34908,34907,34907,34906,34906,34905,34905,34904,34904,34903,34903,35167,35167,35166,35166,35153,35153,34902,34902,34901,34901,34900,34900,34899,34899,34898,34898,34897,34897,34896,34896,34895,34895,34894,34894,34893,34893,34892,34892,34891,34891,34890,34890,34889,34889,34888,34888,34887,34887,35152,35152,35135,35135,34886,34886,34885,34885,34884,34884,34883,34883,34882,34882,35134,35134,34881,34881,34880,34880,34879,34879,34878,34878,34877,34877,34876,34876,34875,34875,35133,35133,34874,34874,34873,34873,34872,34872,35185,35185,34871,34871,34870,34870,34869,34869,34868,34868,34867,34867,34866,34866,34865,34865,34864,34864,34863,34863,34862,34862,35151,35151,35132,35132,34861,34861,34860,34860,34859,34859,35150,35150,35180,35180,35215,35215,35216,35216,35213,35213,35211,35211,35131,35131,34858,34858,34857,34857,34856,34856,35130,35130,34855,34855,34854,34854,34853,34853,35165,35165,34852,34852,34851,34851,34850,34850,34849,34849,34848,34848,35149,35149,35191,35191,34847,34847,34846,34846,34845,34845,34844,34844,34843,34843,34842,34842,34841,34841,34840,34840,34839,34839,35129,35129,34838,34838,34837,34837,34836,34836,35128,35128,34835,34835,34834,34834,34833,34833,35148,35148,35147,35147,35127,35127,34832,34832,34831,34831,34830,34830,34829,34829,34828,34828,34827,34827,34826,34826,34825,34825,34824,35219,35218,35218,35227,35227,35226,35226,35225,35225,35224,35224,35223,35223,35222,35222,35221,35221,35220,35220,35219,35229,35228,35228,35240,35240,35239,35239,35238,35238,35237,35237,35236,35236,35235,35235,35234,35234,35233,35233,35232,35232,35231,35231,35230,35230,35229,35242,35241,35241,35254,35254,35253,35253,35252,35252,35251,35251,35250,35250,35249,35249,35248,35248,35247,35247,35246,35246,35245,35245,35244,35244,35243,35243,35242,35256,35255,35255,35265,35265,35264,35264,35266,35266,35263,35263,35262,35262,35261,35261,35260,35260,35259,35259,35258,35258,35257,35257,35256,35268,35267,35267,35282,35282,35281,35281,35280,35280,35279,35279,35278,35278,35277,35277,35276,35276,35275,35275,35274,35274,35273,35273,35272,35272,35283,35283,35271,35271,35270,35270,35269,35269,35268,35285,35284,35284,35295,35295,35294,35294,35293,35293,35296,35296,35292,35292,35291,35291,35290,35290,35289,35289,35288,35288,35287,35287,35286,35286,35285,35298,35297,35297,35303,35303,35302,35302,35301,35301,35300,35300,35299,35299,35298,35305,35304,35304,35311,35311,35310,35310,35309,35309,35308,35308,35307,35307,35306,35306,35305,35313,35312,35312,35323,35323,35322,35322,35321,35321,35320,35320,35319,35319,35318,35318,35317,35317,35316,35316,35315,35315,35314,35314,35313,35325,35324,35324,35343,35343,35342,35342,35341,35341,35340,35340,35339,35339,35338,35338,35337,35337,35336,35336,35335,35335,35334,35334,35333,35333,35344,35344,35332,35332,35331,35331,35330,35330,35329,35329,35328,35328,35327,35327,35326,35326,35325,35345,35363,35363,35362,35362,35361,35361,35360,35360,35359,35359,35358,35358,35357,35357,35356,35356,35355,35355,35354,35354,35353,35353,35352,35352,35351,35351,35350,35350,35349,35349,35348,35348,35347,35347,35346,35346,35345,35365,35364,35364,35377,35377,35376,35376,35375,35375,35374,35374,35373,35373,35372,35372,35371,35371,35370,35370,35369,35369,35368,35368,35367,35367,35366,35366,35365,35379,35378,35378,35385,35385,35384,35384,35383,35383,35382,35382,35381,35381,35380,35380,35379,35387,35386,35386,35396,35396,35395,35395,35394,35394,35393,35393,35392,35392,35391,35391,35390,35390,35389,35389,35388,35388,35387,35398,35397,35397,35414,35414,35413,35413,35412,35412,35411,35411,35410,35410,35415,35415,35409,35409,35408,35408,35407,35407,35406,35406,35405,35405,35404,35404,35403,35403,35402,35402,35401,35401,35400,35400,35399,35399,35398,35417,35416,35416,35424,35424,35423,35423,35422,35422,35421,35421,35420,35420,35419,35419,35418,35418,35417,35426,35425,35425,35433,35433,35432,35432,35431,35431,35430,35430,35429,35429,35428,35428,35427,35427,35426,35435,35434,35434,35459,35459,35458,35458,35457,35457,35456,35456,35455,35455,35454,35454,35453,35453,35452,35452,35451,35451,35450,35450,35449,35449,35448,35448,35447,35447,35446,35446,35445,35445,35444,35444,35443,35443,35442,35442,35441,35441,35440,35440,35439,35439,35438,35438,35437,35437,35436,35436,35435,35461,35460,35460,35469,35469,35468,35468,35467,35467,35466,35466,35465,35465,35464,35464,35463,35463,35462,35462,35461,35471,35470,35470,35480,35480,35479,35479,35478,35478,35477,35477,35476,35476,35475,35475,35474,35474,35473,35473,35472,35472,35471,35482,35481,35481,35497,35497,35496,35496,35495,35495,35499,35499,35498,35498,35494,35494,35493,35493,35492,35492,35491,35491,35490,35490,35489,35489,35488,35488,35487,35487,35486,35486,35485,35485,35484,35484,35483,35483,35482,35501,35500,35500,35513,35513,35512,35512,35511,35511,35514,35514,35510,35510,35509,35509,35508,35508,35507,35507,35506,35506,35505,35505,35504,35504,35503,35503,35502,35502,35501,35516,35515,35515,35524,35524,35523,35523,35525,35525,35522,35522,35521,35521,35520,35520,35519,35519,35518,35518,35517,35517,35516,35527,35526,35526,35533,35533,35532,35532,35531,35531,35530,35530,35529,35529,35528,35528,35527,35535,35534,35534,35542,35542,35541,35541,35540,35540,35539,35539,35538,35538,35537,35537,35536,35536,35535,35544,35543,35543,35549,35549,35548,35548,35547,35547,35546,35546,35545,35545,35544,35551,35550,35550,35567,35567,35566,35566,35565,35565,35568,35568,35564,35564,35563,35563,35562,35562,35569,35569,35561,35561,35560,35560,35559,35559,35558,35558,35557,35557,35556,35556,35555,35555,35554,35554,35553,35553,35552,35552,35551,35571,35570,35570,35577,35577,35576,35576,35575,35575,35574,35574,35573,35573,35572,35572,35571,35591,35589,35589,35588,35588,35587,35587,35590,35590,35586,35586,35585,35585,35584,35584,35583,35583,35582,35582,35581,35581,35580,35580,35579,35579,35578,35578,35591,35593,35592,35592,35601,35601,35600,35600,35599,35599,35598,35598,35597,35597,35596,35596,35595,35595,35594,35594,35593,35603,35602,35602,35613,35613,35612,35612,35611,35611,35610,35610,35609,35609,35608,35608,35607,35607,35606,35606,35605,35605,35604,35604,35603,35615,35614,35614,35626,35626,35625,35625,35624,35624,35623,35623,35622,35622,35621,35621,35620,35620,35619,35619,35618,35618,35617,35617,35616,35616,35615,35628,35627,35627,35646,35646,35645,35645,35644,35644,35643,35643,35642,35642,35641,35641,35640,35640,35639,35639,35638,35638,35637,35637,35636,35636,35635,35635,35634,35634,35633,35633,35632,35632,35631,35631,35630,35630,35629,35629,35628,35648,35647,35647,35659,35659,35658,35658,35657,35657,35656,35656,35655,35655,35654,35654,35653,35653,35652,35652,35651,35651,35650,35650,35649,35649,35648,35661,35660,35660,35686,35686,35689,35689,35685,35685,35684,35684,35683,35683,35682,35682,35681,35681,35680,35680,35679,35679,35678,35678,35677,35677,35676,35676,35675,35675,35674,35674,35673,35673,35672,35672,35671,35671,35670,35670,35688,35688,35687,35687,35669,35669,35668,35668,35667,35667,35666,35666,35665,35665,35664,35664,35663,35663,35662,35662,35661,35691,35690,35690,35698,35698,35697,35697,35700,35700,35699,35699,35696,35696,35695,35695,35694,35694,35693,35693,35692,35692,35691,35702,35701,35701,35710,35710,35709,35709,35708,35708,35707,35707,35706,35706,35705,35705,35704,35704,35703,35703,35702,35712,35711,35711,35721,35721,35720,35720,35719,35719,35718,35718,35717,35717,35716,35716,35715,35715,35714,35714,35713,35713,35712,35723,35722,35722,35738,35738,35737,35737,35736,35736,35735,35735,35734,35734,35733,35733,35732,35732,35731,35731,35730,35730,35729,35729,35728,35728,35727,35727,35726,35726,35725,35725,35724,35724,35723,35740,35739,35739,35755,35755,35754,35754,35753,35753,35752,35752,35751,35751,35750,35750,35749,35749,35748,35748,35747,35747,35746,35746,35745,35745,35744,35744,35743,35743,35742,35742,35741,35741,35740,35757,35756,35756,35771,35771,35770,35770,35769,35769,35768,35768,35767,35767,35766,35766,35765,35765,35764,35764,35763,35763,35762,35762,35761,35761,35760,35760,35759,35759,35758,35758,35757,35773,35772,35772,35797,35797,35796,35796,35799,35799,35795,35795,35794,35794,35793,35793,35792,35792,35791,35791,35790,35790,35789,35789,35788,35788,35787,35787,35786,35786,35785,35785,35784,35784,35783,35783,35782,35782,35781,35781,35780,35780,35779,35779,35778,35778,35777,35777,35798,35798,35776,35776,35775,35775,35774,35774,35773,35801,35800,35800,35807,35807,35806,35806,35805,35805,35804,35804,35803,35803,35802,35802,35801,35809,35808,35808,35812,35812,35811,35811,35810,35810,35809,35814,35813,35813,35819,35819,35818,35818,35817,35817,35816,35816,35815,35815,35814,35821,35820,35820,35825,35825,35824,35824,35823,35823,35822,35822,35821,35827,35826,35826,35833,35833,35832,35832,35831,35831,35830,35830,35829,35829,35828,35828,35827,35835,35834,35834,35841,35841,35840,35840,35839,35839,35838,35838,35837,35837,35836,35836,35835,35843,35842,35842,35847,35847,35846,35846,35845,35845,35844,35844,35843,35849,35848,35848,35859,35859,35858,35858,35857,35857,35856,35856,35855,35855,35854,35854,35853,35853,35860,35860,35852,35852,35851,35851,35850,35850,35849,35862,35861,35861,35865,35865,35864,35864,35863,35863,35862,35867,35866,35866,35870,35870,35869,35869,35868,35868,35867,35872,35871,35871,35877,35877,35876,35876,35875,35875,35874,35874,35873,35873,35872,35879,35878,35878,35885,35885,35884,35884,35883,35883,35882,35882,35881,35881,35880,35880,35879,35887,35886,35886,35892,35892,35891,35891,35890,35890,35889,35889,35888,35888,35887,35894,35893,35893,35899,35899,35898,35898,35897,35897,35896,35896,35895,35895,35894,35901,35900,35900,35907,35907,35906,35906,35905,35905,35904,35904,35903,35903,35902,35902,35901,35909,35908,35908,35915,35915,35914,35914,35913,35913,35912,35912,35911,35911,35910,35910,35909,35917,35916,35916,35923,35923,35922,35922,35921,35921,35920,35920,35919,35919,35918,35918,35917,35925,35924,35924,35931,35931,35930,35930,35929,35929,35928,35928,35927,35927,35932,35932,35926,35926,35925,35934,35933,35933,35941,35941,35940,35940,35939,35939,35938,35938,35937,35937,35936,35936,35935,35935,35934,35943,35942,35942,35946,35946,35945,35945,35944,35944,35943,35948,35947,35947,35952,35952,35951,35951,35950,35950,35949,35949,35948,35954,35953,35953,35968,35968,35967,35967,35966,35966,35965,35965,35964,35964,35963,35963,35962,35962,35961,35961,35969,35969,35960,35960,35959,35959,35958,35958,35957,35957,35956,35956,35955,35955,35954,35971,35970,35970,35978,35978,35977,35977,35976,35976,35975,35975,35974,35974,35973,35973,35972,35972,35971,35980,35979,35979,35985,35985,35984,35984,35983,35983,35982,35982,35981,35981,35980,35987,35986,35986,35992,35992,35991,35991,35990,35990,35989,35989,35988,35988,35987,35994,35993,35993,35999,35999,35998,35998,35997,35997,35996,35996,35995,35995,35994,36001,36000,36000,36005,36005,36004,36004,36003,36003,36002,36002,36001,36007,36006,36006,36012,36012,36011,36011,36010,36010,36009,36009,36008,36008,36007,36014,36013,36013,36018,36018,36017,36017,36016,36016,36015,36015,36014,36020,36019,36019,36027,36027,36026,36026,36025,36025,36024,36024,36023,36023,36022,36022,36021,36021,36020,36029,36028,36028,36032,36032,36031,36031,36030,36030,36029,36034,36033,36033,36039,36039,36038,36038,36037,36037,36036,36036,36035,36035,36034,36041,36040,36040,36046,36046,36045,36045,36044,36044,36043,36043,36042,36042,36041,36048,36047,36047,36052,36052,36051,36051,36050,36050,36049,36049,36048,36054,36053,36053,36066,36066,36065,36065,36064,36064,36063,36063,36062,36062,36061,36061,36060,36060,36059,36059,36058,36058,36057,36057,36056,36056,36067,36067,36055,36055,36054,36069,36068,36068,36076,36076,36075,36075,36074,36074,36073,36073,36072,36072,36071,36071,36070,36070,36069,36078,36077,36077,36082,36082,36081,36081,36080,36080,36079,36079,36078,36084,36083,36083,36089,36089,36088,36088,36087,36087,36086,36086,36085,36085,36084,36091,36090,36090,36097,36097,36096,36096,36095,36095,36094,36094,36093,36093,36092,36092,36091,36099,36098,36098,36104,36104,36103,36103,36102,36102,36101,36101,36100,36100,36099,36106,36105,36105,36113,36113,36112,36112,36111,36111,36110,36110,36109,36109,36108,36108,36107,36107,36106,36115,36114,36114,36118,36118,36117,36117,36116,36116,36115,36119,36124,36124,36123,36123,36122,36122,36121,36121,36120,36120,36119,36126,36125,36125,36132,36132,36131,36131,36130,36130,36129,36129,36128,36128,36127,36127,36126,36134,36133,36133,36139,36139,36138,36138,36137,36137,36136,36136,36135,36135,36134,36141,36140,36140,36147,36147,36146,36146,36145,36145,36144,36144,36143,36143,36142,36142,36141,36149,36148,36148,36156,36156,36155,36155,36154,36154,36153,36153,36152,36152,36151,36151,36150,36150,36149,36158,36157,36157,36163,36163,36162,36162,36161,36161,36160,36160,36159,36159,36158,36165,36164,36164,36171,36171,36170,36170,36169,36169,36168,36168,36167,36167,36166,36166,36165,36173,36172,36172,36180,36180,36179,36179,36178,36178,36177,36177,36176,36176,36175,36175,36174,36174,36173,36182,36181,36181,36186,36186,36185,36185,36184,36184,36183,36183,36182,36188,36187,36187,36194,36194,36193,36193,36192,36192,36191,36191,36190,36190,36189,36189,36188,36196,36195,36195,36199,36199,36198,36198,36197,36197,36196,36201,36200,36200,36205,36205,36204,36204,36203,36203,36202,36202,36201,36215,36214,36214,36213,36213,36212,36212,36211,36211,36210,36210,36209,36209,36208,36208,36207,36207,36206,36206,36215,36217,36216,36216,36317,36317,36316,36316,36315,36315,36314,36314,36313,36313,36330,36330,36312,36312,36311,36311,36310,36310,36309,36309,36308,36308,36307,36307,36306,36306,36305,36305,36304,36304,36303,36303,36302,36302,36301,36301,36300,36300,36329,36329,36299,36299,36298,36298,36297,36297,36340,36340,36321,36321,36296,36296,36295,36295,36294,36294,36293,36293,36292,36292,36291,36291,36290,36290,36326,36326,36334,36334,36337,36337,36320,36320,36289,36289,36288,36288,36287,36287,36286,36286,36285,36285,36284,36284,36283,36283,36282,36282,36325,36325,36281,36281,36280,36280,36279,36279,36278,36278,36277,36277,36276,36276,36275,36275,36274,36274,36273,36273,36272,36272,36271,36271,36270,36270,36269,36269,36268,36268,36327,36327,36267,36267,36266,36266,36265,36265,36264,36264,36263,36263,36262,36262,36261,36261,36260,36260,36259,36259,36258,36258,36257,36257,36256,36256,36255,36255,36254,36254,36253,36253,36252,36252,36251,36251,36250,36250,36249,36249,36248,36248,36247,36247,36246,36246,36245,36245,36244,36244,36319,36319,36243,36243,36242,36242,36241,36241,36240,36240,36239,36239,36238,36238,36237,36237,36236,36236,36235,36235,36234,36234,36233,36233,36324,36324,36232,36232,36231,36231,36230,36230,36229,36229,36228,36228,36227,36227,36226,36226,36225,36225,36318,36318,36224,36224,36223,36223,36222,36222,36221,36221,36220,36220,36219,36219,36323,36323,36322,36322,36218,36218,36217,34267,34391,34391,34268,34268,34269,34269,34270,34270,34271,34271,34272,34272,34273,34273,34274,34274,34275,34275,34276,34276,34392,34392,34277,34277,34278,34278,34279,34279,34280,34280,34281,34281,34282,34282,34283,34283,34284,34284,34285,34285,34286,34286,34287,34287,34288,34288,34289,34289,34290,34290,34291,34291,34292,34292,34293,34293,34294,34294,34295,34295,34296,34296,34297,34297,34408,34408,34416,34416,34409,34409,34298,34298,34299,34299,34300,34300,34301,34301,34302,34302,34303,34303,34304,34304,34305,34305,34306,34306,34307,34307,34308,34308,34417,34417,34423,34423,34309,34309,34310,34310,34311,34311,34312,34312,34313,34313,34314,34314,34315,34315,34316,34316,34393,34393,34317,34317,34318,34318,34319,34319,34320,34320,34321,34321,34322,34322,34410,34410,34323,34323,34324,34324,34325,34325,34326,34326,34327,34327,34328,34328,34329,34329,34330,34330,34331,34331,34332,34332,34333,34333,34418,34418,34334,34334,34335,34335,34336,34336,34394,34394,34337,34337,34338,34338,34339,34339,34340,34340,34341,34341,34342,34342,34343,34343,34344,34344,34345,34345,34346,34346,34347,34347,34348,34348,34411,34411,34349,34349,34350,34350,34351,34351,34352,34352,34353,34353,34354,34354,34395,34395,34355,34355,34356,34356,34357,34357,34358,34358,34359,34359,34360,34360,34430,34430,34361,34361,34362,34362,34363,34363,34364,34364,34365,34365,34366,34366,34367,34367,34368,34368,34396,34396,34419,34419,34369,34369,34370,34370,34371,34371,34372,34372,34050,34050,34051,34051,36482,36482,36498,36498,36511,36511,36529,36529,36528,36528,36510,36510,36497,36497,36481,36481,36480,36480,36479,36479,36496,36496,36478,36478,36477,36477,36476,36476,36538,36538,36495,36495,36475,36475,36474,36474,36473,36473,36472,36472,36471,36471,36494,36494,36470,36470,36469,36469,36468,36468,36493,36493,36467,36467,36466,36466,36465,36465,36464,36464,36463,36463,36492,36492,36520,36520,36527,36527,36462,36462,36461,36461,36460,36460,36459,36459,36458,36458,36457,36457,36456,36456,36509,36509,36519,36519,36534,36534,36455,36455,36454,36454,36453,36453,36452,36452,36451,36451,36508,36508,36544,36544,36537,36537,36507,36507,36450,36450,36449,36449,36448,36448,36447,36447,36446,36446,36445,36445,36444,36444,36443,36443,36442,36442,36441,36441,36440,36440,36439,36439,36438,36438,36491,36491,36506,36506,36539,36539,36557,36557,36554,36554,36548,36548,36437,36437,36436,36436,36435,36435,36490,36490,36434,36434,36433,36433,36432,36432,36489,36489,36431,36431,36430,36430,36429,36429,36428,36428,36427,36427,36426,36426,36425,36425,36505,36505,36518,36518,36533,36533,36536,36536,36543,36543,36552,36552,36424,36424,36423,36423,36422,36422,36488,36488,36421,36421,36420,36420,36419,36419,36504,36504,36517,36517,36532,36532,36418,36418,36417,36417,36416,36416,36415,36415,36414,36414,36413,36413,36412,36412,36503,36503,36516,36516,36526,36526,36411,36411,36410,36410,36409,36409,36408,36408,36407,36407,36406,36406,36405,36405,36404,36404,36403,36403,36402,36402,36401,36401,36400,36400,36399,36399,36502,36502,36525,36525,36535,36535,36524,36524,36398,36398,36397,36397,36396,36396,36395,36395,36394,36394,36501,36501,36515,36515,36487,36487,36393,36393,36392,36392,36391,36391,36390,36390,36389,36389,36388,36388,36387,36387,36386,36386,36385,36385,36384,36384,36383,36383,36523,36523,36514,36514,36382,36382,36381,36381,36380,36380,36379,36379,36378,36378,36500,36500,36531,36531,36522,36522,36486,36486,36377,36377,36376,36376,36375,36375,36374,36374,36373,36373,36372,36372,36371,36371,36370,36370,36369,36369,36530,36530,36368,36368,36367,36367,36366,36366,36365,36365,36364,36364,36363,36363,36362,36362,36361,36361,36360,36360,36359,36359,36358,36358,36357,36357,36356,36356,36499,36499,36521,36521,36513,36513,36485,36485,36355,36355,36354,36354,36353,36353,36352,36352,36351,36351,36350,36350,36349,36349,36484,36484,36348,36348,36347,36347,36346,36346,36512,36512,36483,36483,36345,36345,34267,36562,36561,36561,36567,36567,36566,36566,36565,36565,36564,36564,36563,36563,36562,36569,36568,36568,36574,36574,36573,36573,36572,36572,36571,36571,36570,36570,36569,36576,36575,36575,36587,36587,36586,36586,36585,36585,36584,36584,36583,36583,36582,36582,36581,36581,36580,36580,36579,36579,36578,36578,36577,36577,36576,36588,36596,36596,36595,36595,36594,36594,36593,36593,36592,36592,36591,36591,36590,36590,36589,36589,36588,36598,36597,36597,36602,36602,36601,36601,36600,36600,36599,36599,36598,36604,36603,36603,36611,36611,36610,36610,36609,36609,36608,36608,36607,36607,36606,36606,36605,36605,36604,35992,35986,35986,35987,35987,36615,36615,36614,36614,36613,36613,36612,36612,35992,36617,36616,36616,36667,36667,36669,36669,36664,36664,36663,36663,36662,36662,36661,36661,36660,36660,36659,36659,36658,36658,36657,36657,36656,36656,36655,36655,36654,36654,36653,36653,36652,36652,36651,36651,36650,36650,36649,36649,36666,36666,36665,36665,36648,36648,36647,36647,36646,36646,36645,36645,36644,36644,36643,36643,36642,36642,36641,36641,36640,36640,36668,36668,36639,36639,36638,36638,36637,36637,36636,36636,36635,36635,36670,36670,36634,36634,36633,36633,36632,36632,36631,36631,36630,36630,36629,36629,36628,36628,36627,36627,36626,36626,36625,36625,36624,36624,36623,36623,36622,36622,36621,36621,36620,36620,36619,36619,36618,36618,36617,36672,36671,36671,37706,37706,37705,37705,37704,37704,37703,37703,37702,37702,37701,37701,37700,37700,37699,37699,37698,37698,37697,37697,37696,37696,37695,37695,37694,37694,37693,37693,37692,37692,37691,37691,37690,37690,37689,37689,37688,37688,37687,37687,37686,37686,37979,37979,38003,38003,37786,37786,37685,37685,37684,37684,37683,37683,37682,37682,37681,37681,37680,37680,37679,37679,37854,37854,37904,37904,37978,37978,38065,38065,37785,37785,37678,37678,37677,37677,37676,37676,38158,38158,37784,37784,37675,37675,37674,37674,37673,37673,37672,37672,37671,37671,37670,37670,37669,37669,37668,37668,37667,37667,37666,37666,37783,37783,37665,37665,37664,37664,37663,37663,37853,37853,38002,38002,37662,37662,37661,37661,37660,37660,37659,37659,37658,37658,37657,37657,37656,37656,37655,37655,37654,37654,37852,37852,37903,37903,37977,37977,38126,38126,37976,37976,37653,37653,37652,37652,37651,37651,37650,37650,37649,37649,37648,37648,37647,37647,37646,37646,37645,37645,37644,37644,37643,37643,37642,37642,37851,37851,37850,37850,37641,37641,37640,37640,37639,37639,37638,37638,37637,37637,37636,37636,37635,37635,37634,37634,37633,37633,37849,37849,37942,37942,37975,37975,37782,37782,37632,37632,37631,37631,37630,37630,38064,38064,37781,37781,37629,37629,37628,37628,37627,37627,37848,37848,37626,37626,37625,37625,37624,37624,37623,37623,37622,37622,38001,38001,37974,37974,37902,37902,37621,37621,37620,37620,37619,37619,37618,37618,37617,37617,37847,37847,37941,37941,37940,37940,37616,37616,37615,37615,37614,37614,37613,37613,37612,37612,37611,37611,37610,37610,37609,37609,37780,37780,37846,37846,37845,37845,37608,37608,37607,37607,37606,37606,37605,37605,37604,37604,37901,37901,37603,37603,37602,37602,37601,37601,37600,37600,37599,37599,37598,37598,37597,37597,37779,37779,38000,38000,38281,38281,38223,38223,37939,37939,37900,37900,37844,37844,37596,37596,37595,37595,37594,37594,37593,37593,37592,37592,37591,37591,37590,37590,37589,37589,37588,37588,37587,37587,37586,37586,37778,37778,37899,37899,37999,37999,37585,37585,37584,37584,37583,37583,37582,37582,37581,37581,37580,37580,37579,37579,37777,37777,37898,37898,37938,37938,37776,37776,37578,37578,37577,37577,37576,37576,37575,37575,37574,37574,37573,37573,37572,37572,37897,37897,37973,37973,37571,37571,37570,37570,37569,37569,37568,37568,37567,37567,37566,37566,37565,37565,37775,37775,37896,37896,37843,37843,37564,37564,37563,37563,37562,37562,37561,37561,37560,37560,37559,37559,37558,37558,37557,37557,37556,37556,37555,37555,37554,37554,37553,37553,37552,37552,37551,37551,37550,37550,37549,37549,37774,37774,37895,37895,37894,37894,37773,37773,37548,37548,37547,37547,37546,37546,37545,37545,37544,37544,37772,37772,37893,37893,37771,37771,37543,37543,37542,37542,37541,37541,37842,37842,37540,37540,37539,37539,37538,37538,37537,37537,37536,37536,37841,37841,37535,37535,37534,37534,37533,37533,37770,37770,37840,37840,37892,37892,37532,37532,37531,37531,37530,37530,37529,37529,37528,37528,37527,37527,37526,37526,37525,37525,37524,37524,37523,37523,37769,37769,37522,37522,37521,37521,37520,37520,37519,37519,37518,37518,37517,37517,37516,37516,37515,37515,37514,37514,37513,37513,37891,37891,37839,37839,37512,37512,37511,37511,37510,37510,37768,37768,37509,37509,37508,37508,37507,37507,37838,37838,37506,37506,37505,37505,37504,37504,37503,37503,37502,37502,37501,37501,37500,37500,37499,37499,37498,37498,37497,37497,37496,37496,37495,37495,37494,37494,37493,37493,37492,37492,37491,37491,37767,37767,37490,37490,37489,37489,37488,37488,37487,37487,37486,37486,37485,37485,37484,37484,37483,37483,37482,37482,37481,37481,37766,37766,37998,37998,37765,37765,37480,37480,37479,37479,37478,37478,37477,37477,37476,37476,37475,37475,37474,37474,37473,37473,37472,37472,37471,37471,37837,37837,37470,37470,37469,37469,37468,37468,37467,37467,37466,37466,37465,37465,38091,38091,38061,38061,37764,37764,37464,37464,37463,37463,37462,37462,37461,37461,37460,37460,37459,37459,37458,37458,37763,37763,37890,37890,37937,37937,37972,37972,37936,37936,37457,37457,37456,37456,37455,37455,37454,37454,37453,37453,37452,37452,37451,37451,37450,37450,37449,37449,37448,37448,37447,37447,37762,37762,37446,37446,37445,37445,37444,37444,37443,37443,37442,37442,37441,37441,37836,37836,37440,37440,37439,37439,37438,37438,37761,37761,37835,37835,37437,37437,37436,37436,37435,37435,37997,37997,38020,38020,38060,38060,37434,37434,37433,37433,37432,37432,37431,37431,37430,37430,37834,37834,38155,38155,38222,38222,38332,38332,37429,37429,37428,37428,37427,37427,37996,37996,37426,37426,37425,37425,37424,37424,37423,37423,37422,37422,37833,37833,37889,37889,37760,37760,37421,37421,37420,37420,37419,37419,37832,37832,37418,37418,37417,37417,37416,37416,37935,37935,37831,37831,37415,37415,37414,37414,37413,37413,37412,37412,37411,37411,37410,37410,37409,37409,37408,37408,37407,37407,37406,37406,37759,37759,37405,37405,37404,37404,37403,37403,37402,37402,37401,37401,37400,37400,37399,37399,37398,37398,37397,37397,37396,37396,37395,37395,37394,37394,37393,37393,37392,37392,37391,37391,37390,37390,37389,37389,37388,37388,37387,37387,37386,37386,37385,37385,37758,37758,37384,37384,37383,37383,37382,37382,37888,37888,37934,37934,37757,37757,37381,37381,37380,37380,37379,37379,37378,37378,37377,37377,37756,37756,37887,37887,37376,37376,37375,37375,37374,37374,37373,37373,37372,37372,37371,37371,37370,37370,37830,37830,37755,37755,37369,37369,37368,37368,37367,37367,37829,37829,37366,37366,37365,37365,37364,37364,37754,37754,37363,37363,37362,37362,37361,37361,38413,38413,38399,38399,38220,38220,37971,37971,37933,37933,37753,37753,37360,37360,37359,37359,37358,37358,37357,37357,37356,37356,37752,37752,37886,37886,37932,37932,37355,37355,37354,37354,37353,37353,37352,37352,37351,37351,37828,37828,37885,37885,37970,37970,37350,37350,37349,37349,37348,37348,37347,37347,37346,37346,37345,37345,37344,37344,37343,37343,37884,37884,37751,37751,37342,37342,37341,37341,37340,37340,37827,37827,37750,37750,37339,37339,37338,37338,37337,37337,37336,37336,37335,37335,37334,37334,37333,37333,37332,37332,37331,37331,37330,37330,37329,37329,37328,37328,37327,37327,37326,37326,37325,37325,37324,37324,37969,37969,37323,37323,37322,37322,37321,37321,37320,37320,37319,37319,37318,37318,37826,37826,37749,37749,37317,37317,37316,37316,37315,37315,37314,37314,37313,37313,37312,37312,37825,37825,37311,37311,37310,37310,37309,37309,37308,37308,37307,37307,38327,38327,37931,37931,37883,37883,37824,37824,37306,37306,37305,37305,37304,37304,37303,37303,37302,37302,38153,38153,38059,38059,37748,37748,37301,37301,37300,37300,37299,37299,37298,37298,37297,37297,37296,37296,37295,37295,37294,37294,37293,37293,37292,37292,37291,37291,37290,37290,37289,37289,37288,37288,37287,37287,37286,37286,37285,37285,37747,37747,37882,37882,37968,37968,38018,38018,37967,37967,37930,37930,37881,37881,37284,37284,37283,37283,37282,37282,37281,37281,37280,37280,37823,37823,37822,37822,37279,37279,37278,37278,37277,37277,37276,37276,37275,37275,37880,37880,37879,37879,37746,37746,37274,37274,37273,37273,37272,37272,37271,37271,37270,37270,37269,37269,37268,37268,37267,37267,37266,37266,37265,37265,37264,37264,37745,37745,37263,37263,37262,37262,37261,37261,37966,37966,37995,37995,37744,37744,37260,37260,37259,37259,37258,37258,37257,37257,37256,37256,37255,37255,37254,37254,37253,37253,37252,37252,37251,37251,37821,37821,37250,37250,37249,37249,37248,37248,37247,37247,37246,37246,37245,37245,37244,37244,37243,37243,37242,37242,37241,37241,37240,37240,37239,37239,37238,37238,37237,37237,37236,37236,37235,37235,37743,37743,37234,37234,37233,37233,37232,37232,37965,37965,38037,38037,37878,37878,37231,37231,37230,37230,37229,37229,37228,37228,37227,37227,37226,37226,37225,37225,37224,37224,37223,37223,37222,37222,37221,37221,37220,37220,37742,37742,37219,37219,37218,37218,37217,37217,37216,37216,37215,37215,37214,37214,37213,37213,37212,37212,37877,37877,37964,37964,38016,38016,37211,37211,37210,37210,37209,37209,37208,37208,37207,37207,37206,37206,37205,37205,37876,37876,37929,37929,37963,37963,37994,37994,37928,37928,37204,37204,37203,37203,37202,37202,37741,37741,37201,37201,37200,37200,37199,37199,37198,37198,37197,37197,37196,37196,37962,37962,37875,37875,37195,37195,37194,37194,37193,37193,37192,37192,37191,37191,37820,37820,37190,37190,37189,37189,37188,37188,37187,37187,37186,37186,37874,37874,37993,37993,38036,38036,38015,38015,37927,37927,37740,37740,37185,37185,37184,37184,37183,37183,37182,37182,37181,37181,37180,37180,37179,37179,37178,37178,37177,37177,37176,37176,37175,37175,37174,37174,37173,37173,37172,37172,37171,37171,37170,37170,37169,37169,37168,37168,37167,37167,37166,37166,37165,37165,37164,37164,37992,37992,37819,37819,37163,37163,37162,37162,37161,37161,37160,37160,37159,37159,37158,37158,37157,37157,37156,37156,37155,37155,37818,37818,37154,37154,37153,37153,37152,37152,37739,37739,37926,37926,37873,37873,37151,37151,37150,37150,37149,37149,37148,37148,37147,37147,37817,37817,37146,37146,37145,37145,37144,37144,37143,37143,37142,37142,37816,37816,37925,37925,37872,37872,37141,37141,37140,37140,37139,37139,37138,37138,37137,37137,37136,37136,37135,37135,37134,37134,37133,37133,37132,37132,37131,37131,37130,37130,37129,37129,37128,37128,37127,37127,37126,37126,37125,37125,37124,37124,37123,37123,37122,37122,37121,37121,37738,37738,37737,37737,37120,37120,37119,37119,37118,37118,37815,37815,37736,37736,37117,37117,37116,37116,37115,37115,37114,37114,37113,37113,37112,37112,37111,37111,37814,37814,37924,37924,37923,37923,37813,37813,37110,37110,37109,37109,37108,37108,37107,37107,37106,37106,37105,37105,37104,37104,37103,37103,37102,37102,37101,37101,37100,37100,37099,37099,37098,37098,37097,37097,37812,37812,37096,37096,37095,37095,37094,37094,37093,37093,37092,37092,37871,37871,37091,37091,37090,37090,37089,37089,37088,37088,37087,37087,37811,37811,37086,37086,37085,37085,37084,37084,37870,37870,37735,37735,37083,37083,37082,37082,37081,37081,37810,37810,37961,37961,38152,38152,38187,38187,38277,38277,38056,38056,37809,37809,37734,37734,37080,37080,37079,37079,37078,37078,37077,37077,37076,37076,37075,37075,37074,37074,37073,37073,37072,37072,37071,37071,37070,37070,37808,37808,37069,37069,37068,37068,37067,37067,37066,37066,37065,37065,37064,37064,37063,37063,37960,37960,37991,37991,37959,37959,37807,37807,37062,37062,37061,37061,37060,37060,37059,37059,37058,37058,37057,37057,37056,37056,37055,37055,37054,37054,37806,37806,37922,37922,38014,38014,37990,37990,37733,37733,37053,37053,37052,37052,37051,37051,37050,37050,37049,37049,37048,37048,37047,37047,37046,37046,37045,37045,37044,37044,37805,37805,37921,37921,37958,37958,37957,37957,37920,37920,37732,37732,37043,37043,37042,37042,37041,37041,37040,37040,37039,37039,37038,37038,37037,37037,37036,37036,37035,37035,37034,37034,38151,38151,37804,37804,37731,37731,37033,37033,37032,37032,37031,37031,37869,37869,37730,37730,37030,37030,37029,37029,37028,37028,37803,37803,37027,37027,37026,37026,37025,37025,37024,37024,37023,37023,37022,37022,37021,37021,37729,37729,37020,37020,37019,37019,37018,37018,37017,37017,37016,37016,37802,37802,38034,38034,38088,38088,38121,38121,38137,38137,37801,37801,37728,37728,37015,37015,37014,37014,37013,37013,37012,37012,37011,37011,37010,37010,37009,37009,37008,37008,37007,37007,37006,37006,37005,37005,37800,37800,37868,37868,37799,37799,37727,37727,37004,37004,37003,37003,37002,37002,37919,37919,37726,37726,37001,37001,37000,37000,36999,36999,36998,36998,36997,36997,36996,36996,36995,36995,36994,36994,36993,36993,36992,36992,36991,36991,36990,36990,36989,36989,36988,36988,36987,36987,36986,36986,36985,36985,36984,36984,36983,36983,36982,36982,36981,36981,36980,36980,36979,36979,36978,36978,36977,36977,36976,36976,37725,37725,36975,36975,36974,36974,36973,36973,37798,37798,36972,36972,36971,36971,36970,36970,36969,36969,36968,36968,36967,36967,36966,36966,36965,36965,36964,36964,36963,36963,37724,37724,37723,37723,36962,36962,36961,36961,36960,36960,37797,37797,36959,36959,36958,36958,36957,36957,36956,36956,36955,36955,36954,36954,36953,36953,36952,36952,36951,36951,37796,37796,37956,37956,37955,37955,36950,36950,36949,36949,36948,36948,36947,36947,36946,36946,36945,36945,37722,37722,36944,36944,36943,36943,36942,36942,36941,36941,36940,36940,36939,36939,37721,37721,36938,36938,36937,36937,36936,36936,36935,36935,36934,36934,36933,36933,36932,36932,36931,36931,36930,36930,37795,37795,37867,37867,37954,37954,37988,37988,37918,37918,37866,37866,36929,36929,36928,36928,36927,36927,36926,36926,36925,36925,37720,37720,36924,36924,36923,36923,36922,36922,36921,36921,36920,36920,36919,36919,36918,36918,36917,36917,36916,36916,36915,36915,36914,36914,36913,36913,37917,37917,37987,37987,37952,37952,37915,37915,36912,36912,36911,36911,36910,36910,36909,36909,36908,36908,36907,36907,36906,36906,36905,36905,36904,36904,37864,37864,36903,36903,36902,36902,36901,36901,37794,37794,36900,36900,36899,36899,36898,36898,36897,36897,36896,36896,37863,37863,37951,37951,38013,38013,38120,38120,38166,38166,37862,37862,36895,36895,36894,36894,36893,36893,36892,36892,36891,36891,37719,37719,37718,37718,36890,36890,36889,36889,36888,36888,36887,36887,36886,36886,36885,36885,37793,37793,37914,37914,36884,36884,36883,36883,36882,36882,36881,36881,36880,36880,36879,36879,36878,36878,37792,37792,37791,37791,37717,37717,36877,36877,36876,36876,36875,36875,36874,36874,36873,36873,36872,36872,36871,36871,36870,36870,36869,36869,36868,36868,36867,36867,36866,36866,37861,37861,37913,37913,36865,36865,36864,36864,36863,36863,38011,38011,37985,37985,37949,37949,37912,37912,36862,36862,36861,36861,36860,36860,36859,36859,36858,36858,37716,37716,37860,37860,37948,37948,37859,37859,36857,36857,36856,36856,36855,36855,36854,36854,36853,36853,36852,36852,36851,36851,36850,36850,36849,36849,36848,36848,36847,36847,36846,36846,36845,36845,36844,36844,36843,36843,36842,36842,36841,36841,36840,36840,36839,36839,36838,36838,36837,36837,36836,36836,36835,36835,37858,37858,37911,37911,37790,37790,36834,36834,36833,36833,36832,36832,36831,36831,36830,36830,36829,36829,36828,36828,36827,36827,36826,36826,36825,36825,36824,36824,36823,36823,36822,36822,36821,36821,36820,36820,36819,36819,36818,36818,36817,36817,36816,36816,36815,36815,36814,36814,36813,36813,37715,37715,37714,37714,36812,36812,36811,36811,36810,36810,36809,36809,36808,36808,37909,37909,36807,36807,36806,36806,36805,36805,36804,36804,36803,36803,36802,36802,36801,36801,36800,36800,36799,36799,36798,36798,36797,36797,36796,36796,36795,36795,36794,36794,36793,36793,36792,36792,36791,36791,36790,36790,36789,36789,36788,36788,36787,36787,36786,36786,36785,36785,36784,36784,36783,36783,36782,36782,36781,36781,36780,36780,36779,36779,36778,36778,37789,37789,36777,36777,36776,36776,36775,36775,36774,36774,36773,36773,36772,36772,36771,36771,36770,36770,36769,36769,36768,36768,36767,36767,36766,36766,36765,36765,36764,36764,36763,36763,36762,36762,36761,36761,36760,36760,37857,37857,36759,36759,36758,36758,36757,36757,37788,37788,36756,36756,36755,36755,36754,36754,36753,36753,36752,36752,36751,36751,36750,36750,36749,36749,36748,36748,36747,36747,36746,36746,36745,36745,36744,36744,36743,36743,36742,36742,36741,36741,36740,36740,36739,36739,36738,36738,36737,36737,36736,36736,36735,36735,37713,37713,38127,38127,36734,36734,36733,36733,36732,36732,37712,37712,36731,36731,36730,36730,36729,36729,36728,36728,36727,36727,36726,36726,36725,36725,36724,36724,37711,37711,36723,36723,36722,36722,36721,36721,36720,36720,36719,36719,36718,36718,36717,36717,36716,36716,36715,36715,36714,36714,36713,36713,36712,36712,36711,36711,36710,36710,36709,36709,36708,36708,36707,36707,36706,36706,36705,36705,36704,36704,36703,36703,36702,36702,36701,36701,36700,36700,37710,37710,36699,36699,36698,36698,36697,36697,36696,36696,36695,36695,36694,36694,36693,36693,37709,37709,36692,36692,36691,36691,36690,36690,38021,38021,37980,37980,37906,37906,37708,37708,36689,36689,36688,36688,36687,36687,37787,37787,37855,37855,36686,36686,36685,36685,36684,36684,36683,36683,36682,36682,36681,36681,36680,36680,36679,36679,36678,36678,36677,36677,36676,36676,37943,37943,37905,37905,37707,37707,36675,36675,36674,36674,36673,36673,36672,38447,38446,38446,38454,38454,38453,38453,38452,38452,38451,38451,38450,38450,38449,38449,38448,38448,38447,38456,38455,38455,38460,38460,38459,38459,38458,38458,38457,38457,38456,38461,38466,38466,38465,38465,38464,38464,38463,38463,38462,38462,38461,38468,38467,38467,38474,38474,38473,38473,38472,38472,38471,38471,38470,38470,38469,38469,38468,38476,38475,38475,38484,38484,38483,38483,38482,38482,38481,38481,38480,38480,38479,38479,38478,38478,38477,38477,38476,38486,38485,38485,38492,38492,38491,38491,38490,38490,38489,38489,38488,38488,38487,38487,38486,38494,38493,38493,38502,38502,38501,38501,38500,38500,38499,38499,38498,38498,38497,38497,38496,38496,38495,38495,38494,38504,38503,38503,38509,38509,38508,38508,38507,38507,38506,38506,38505,38505,38504,38511,38510,38510,38560,38560,38559,38559,38558,38558,38557,38557,38556,38556,38555,38555,38554,38554,38553,38553,38552,38552,38551,38551,38550,38550,38562,38562,38563,38563,38549,38549,38548,38548,38547,38547,38546,38546,38545,38545,38544,38544,38543,38543,38542,38542,38541,38541,38540,38540,38539,38539,38538,38538,38537,38537,38536,38536,38535,38535,38534,38534,38533,38533,38532,38532,38531,38531,38530,38530,38529,38529,38528,38528,38527,38527,38526,38526,38525,38525,38524,38524,38523,38523,38522,38522,38521,38521,38520,38520,38519,38519,38518,38518,38517,38517,38516,38516,38561,38561,38515,38515,38514,38514,38513,38513,38512,38512,38511,38565,38564,38564,38568,38568,38567,38567,38566,38566,38565,38570,38569,38569,38574,38574,38573,38573,38572,38572,38571,38571,38570,38576,38575,38575,38582,38582,38581,38581,38580,38580,38579,38579,38578,38578,38577,38577,38576,38584,38583,38583,38592,38592,38591,38591,38590,38590,38589,38589,38588,38588,38594,38594,38593,38593,38587,38587,38586,38586,38585,38585,38584,38596,38595,38595,38602,38602,38601,38601,38600,38600,38599,38599,38598,38598,38597,38597,38596,38604,38603,38603,38615,38615,38614,38614,38613,38613,38612,38612,38611,38611,38610,38610,38609,38609,38608,38608,38607,38607,38606,38606,38605,38605,38604,38617,38616,38616,38624,38624,38623,38623,38622,38622,38621,38621,38620,38620,38619,38619,38618,38618,38617,38626,38625,38625,38631,38631,38630,38630,38629,38629,38628,38628,38627,38627,38626,38633,38632,38632,38637,38637,38636,38636,38635,38635,38634,38634,38633,38639,38638,38638,38651,38651,38650,38650,38649,38649,38648,38648,38647,38647,38646,38646,38645,38645,38644,38644,38643,38643,38642,38642,38641,38641,38640,38640,38639,38653,38652,38652,38662,38662,38661,38661,38660,38660,38659,38659,38658,38658,38657,38657,38656,38656,38655,38655,38654,38654,38653,38664,38663,38663,38669,38669,38668,38668,38667,38667,38666,38666,38665,38665,38664,38671,38670,38670,38677,38677,38676,38676,38675,38675,38674,38674,38673,38673,38672,38672,38671,38679,38678,38678,38688,38688,38687,38687,38686,38686,38685,38685,38684,38684,38683,38683,38682,38682,38681,38681,38680,38680,38679,38690,38689,38689,38693,38693,38692,38692,38691,38691,38690,38695,38694,38694,40484,40484,40749,40749,40483,40483,40482,40482,40481,40481,40480,40480,40479,40479,40478,40478,40477,40477,40476,40476,40475,40475,40474,40474,40473,40473,40472,40472,40648,40648,40471,40471,40470,40470,40469,40469,40468,40468,40467,40467,40748,40748,40839,40839,40647,40647,40466,40466,40465,40465,40464,40464,40463,40463,40462,40462,40461,40461,40460,40460,40459,40459,40940,40940,40806,40806,40458,40458,40457,40457,40456,40456,40455,40455,40454,40454,40747,40747,40870,40870,40453,40453,40452,40452,40451,40451,40450,40450,40449,40449,40448,40448,40447,40447,40446,40446,40646,40646,40746,40746,40838,40838,40745,40745,40645,40645,40445,40445,40444,40444,40443,40443,40869,40869,40442,40442,40441,40441,40440,40440,40439,40439,40438,40438,40437,40437,40436,40436,40435,40435,40434,40434,40433,40433,40432,40432,40431,40431,40837,40837,40836,40836,40805,40805,40430,40430,40429,40429,40428,40428,40427,40427,40426,40426,40744,40744,40425,40425,40424,40424,40423,40423,40422,40422,40421,40421,40743,40743,40644,40644,40420,40420,40419,40419,40418,40418,40417,40417,40416,40416,40415,40415,40414,40414,40413,40413,40412,40412,40411,40411,40410,40410,40409,40409,40408,40408,40897,40897,40868,40868,40407,40407,40406,40406,40405,40405,40404,40404,40403,40403,40402,40402,40401,40401,40643,40643,40400,40400,40399,40399,40398,40398,40742,40742,40835,40835,40741,40741,40642,40642,40397,40397,40396,40396,40395,40395,40394,40394,40393,40393,40392,40392,40641,40641,40391,40391,40390,40390,40389,40389,40388,40388,40387,40387,40386,40386,40385,40385,40384,40384,40383,40383,40382,40382,40381,40381,40380,40380,40379,40379,40378,40378,40377,40377,40376,40376,40375,40375,40374,40374,40804,40804,40373,40373,40372,40372,40371,40371,40370,40370,40369,40369,40368,40368,40367,40367,40366,40366,40365,40365,40364,40364,40363,40363,40362,40362,40896,40896,40914,40914,40895,40895,40361,40361,40360,40360,40359,40359,40358,40358,40357,40357,40640,40640,40356,40356,40355,40355,40354,40354,40353,40353,40352,40352,40639,40639,40351,40351,40350,40350,40349,40349,40348,40348,40347,40347,40638,40638,40867,40867,40866,40866,40834,40834,40346,40346,40345,40345,40344,40344,40343,40343,40342,40342,40341,40341,40340,40340,40339,40339,40338,40338,40337,40337,40336,40336,40335,40335,40334,40334,40333,40333,40894,40894,40893,40893,40833,40833,40332,40332,40331,40331,40330,40330,40329,40329,40328,40328,40637,40637,40636,40636,40327,40327,40326,40326,40325,40325,40740,40740,40324,40324,40323,40323,40322,40322,40321,40321,40320,40320,40319,40319,40318,40318,40317,40317,40316,40316,40315,40315,40635,40635,40739,40739,40969,40969,40892,40892,40314,40314,40313,40313,40312,40312,40311,40311,40310,40310,40309,40309,40308,40308,40307,40307,40306,40306,40305,40305,40304,40304,40303,40303,40302,40302,40301,40301,40300,40300,40299,40299,40298,40298,40803,40803,40297,40297,40296,40296,40295,40295,40294,40294,40293,40293,40738,40738,40802,40802,40801,40801,40634,40634,40292,40292,40291,40291,40290,40290,40737,40737,40633,40633,40289,40289,40288,40288,40287,40287,40832,40832,40286,40286,40285,40285,40284,40284,40283,40283,40282,40282,40281,40281,40280,40280,40279,40279,40632,40632,41137,41137,40278,40278,40277,40277,40276,40276,40275,40275,40274,40274,40631,40631,40939,40939,40891,40891,40865,40865,40831,40831,40273,40273,40272,40272,40271,40271,40270,40270,40269,40269,40268,40268,40267,40267,40266,40266,40630,40630,40265,40265,40264,40264,40263,40263,40800,40800,40262,40262,40261,40261,40260,40260,40259,40259,40258,40258,40736,40736,41046,41046,40257,40257,40256,40256,40255,40255,40254,40254,40253,40253,37221,37221,37222,37222,37223,37223,37224,37224,37225,37225,37226,37226,37227,37227,37228,37228,37229,37229,37230,37230,37231,37231,37878,37878,38037,38037,37965,37965,37232,37232,37233,37233,37234,37234,37743,37743,37235,37235,37236,37236,37237,37237,37238,37238,37239,37239,37240,37240,37241,37241,37242,37242,37243,37243,37244,37244,37245,37245,37246,37246,37247,37247,37248,37248,37249,37249,37250,37250,37821,37821,37251,37251,37252,37252,37253,37253,37254,37254,37255,37255,37256,37256,37257,37257,37258,37258,37259,37259,37260,37260,37744,37744,37995,37995,37966,37966,37261,37261,37262,37262,37263,37263,37745,37745,37264,37264,37265,37265,37266,37266,37267,37267,37268,37268,37269,37269,37270,37270,37271,37271,37272,37272,37273,37273,37274,37274,37746,37746,37879,37879,37880,37880,37275,37275,37276,37276,37277,37277,37278,37278,37279,37279,37822,37822,37823,37823,37280,37280,37281,37281,37282,37282,37283,37283,37284,37284,37881,37881,37930,37930,37967,37967,38018,38018,37968,37968,37882,37882,37747,37747,37285,37285,37286,37286,37287,37287,37288,37288,37289,37289,37290,37290,37291,37291,37292,37292,37293,37293,37294,37294,40252,40252,40251,40251,40629,40629,40250,40250,40249,40249,40248,40248,40735,40735,40799,40799,40247,40247,40246,40246,40245,40245,40244,40244,40243,40243,40734,40734,40830,40830,40242,40242,40241,40241,40240,40240,40239,40239,40238,40238,40733,40733,40798,40798,40890,40890,40913,40913,41002,41002,41130,41130,40237,40237,40236,40236,40235,40235,40628,40628,40234,40234,40233,40233,40232,40232,40627,40627,40231,40231,40230,40230,40229,40229,37342,37342,37751,37751,37884,37884,37343,37343,37344,37344,37345,37345,37346,37346,37347,37347,37348,37348,37349,37349,37350,37350,37970,37970,37885,37885,37828,37828,37351,37351,37352,37352,37353,37353,37354,37354,37355,37355,40228,40228,40626,40626,40732,40732,40227,40227,40226,40226,40225,40225,40625,40625,40224,40224,40223,40223,40222,40222,40624,40624,40221,40221,40220,40220,40219,40219,40623,40623,40829,40829,40218,40218,40217,40217,40216,40216,40215,40215,40214,40214,40213,40213,40212,40212,40731,40731,40622,40622,40211,40211,40210,40210,40209,40209,40208,40208,40207,40207,40621,40621,40797,40797,40206,40206,40205,40205,40204,40204,40203,40203,40202,40202,40201,40201,40200,40200,40730,40730,40864,40864,40620,40620,40199,40199,40198,40198,40197,40197,40196,40196,40195,40195,40194,40194,40193,40193,40192,40192,40619,40619,40191,40191,40190,40190,40189,40189,40729,40729,40889,40889,40863,40863,40188,40188,40187,40187,40186,40186,40185,40185,40184,40184,40728,40728,40183,40183,40182,40182,40181,40181,40180,40180,40179,40179,40178,40178,40177,40177,40176,40176,40175,40175,40727,40727,40963,40963,40828,40828,40174,40174,40173,40173,40172,40172,40171,40171,40170,40170,37439,37439,37440,37440,37836,37836,37441,37441,37442,37442,37443,37443,37444,37444,37445,37445,37446,37446,37762,37762,37447,37447,37448,37448,37449,37449,37450,37450,37451,37451,37452,37452,37453,37453,37454,37454,37455,37455,37456,37456,37457,37457,37936,37936,37972,37972,37937,37937,37890,37890,37763,37763,37458,37458,37459,37459,37460,37460,37461,37461,37462,37462,37463,37463,37464,37464,37764,37764,38061,38061,38091,38091,37465,37465,37466,37466,37467,37467,37468,37468,37469,37469,37470,37470,37837,37837,37471,37471,37472,37472,37473,37473,37474,37474,37475,37475,37476,37476,37477,37477,37478,37478,37479,37479,37480,37480,37765,37765,37998,37998,37766,37766,37481,37481,37482,37482,37483,37483,37484,37484,37485,37485,37486,37486,37487,37487,37488,37488,37489,37489,37490,37490,37767,37767,37491,37491,37492,37492,37493,37493,37494,37494,37495,37495,37496,37496,37497,37497,37498,37498,37499,37499,37500,37500,37501,37501,37502,37502,37503,37503,37504,37504,37505,37505,37506,37506,37838,37838,37507,37507,37508,37508,37509,37509,37768,37768,37510,37510,37511,37511,37512,37512,37839,37839,37891,37891,37513,37513,37514,37514,37515,37515,37516,37516,37517,37517,37518,37518,37519,37519,37520,37520,37521,37521,37522,37522,37769,37769,37523,37523,37524,37524,37525,37525,37526,37526,37527,37527,37528,37528,37529,37529,37530,37530,37531,37531,37532,37532,37892,37892,37840,37840,37770,37770,37533,37533,37534,37534,40169,40169,40168,40168,40167,40167,40166,40166,40165,40165,40164,40164,40163,40163,40162,40162,40161,40161,40160,40160,40159,40159,40158,40158,40796,40796,40157,40157,40156,40156,40155,40155,40154,40154,40153,40153,40152,40152,40151,40151,40150,40150,40149,40149,40148,40148,40147,40147,40146,40146,40145,40145,40144,40144,40143,40143,40888,40888,40936,40936,40827,40827,40795,40795,40618,40618,40142,40142,40141,40141,40140,40140,40726,40726,40996,40996,40794,40794,40139,40139,40138,40138,40137,40137,40617,40617,40725,40725,40616,40616,40136,40136,40135,40135,40134,40134,40133,40133,40132,40132,40131,40131,40130,40130,40129,40129,40128,40128,40127,40127,40724,40724,40126,40126,40125,40125,40124,40124,40911,40911,40862,40862,40723,40723,40123,40123,40122,40122,40121,40121,40120,40120,40119,40119,40118,40118,40117,40117,40116,40116,40115,40115,40114,40114,40113,40113,40112,40112,40111,40111,41186,41186,41183,41183,41077,41077,40110,40110,40109,40109,40108,40108,40107,40107,40106,40106,40105,40105,40104,40104,40103,40103,40102,40102,40101,40101,40100,40100,40099,40099,40098,40098,40097,40097,40793,40793,40096,40096,40095,40095,40094,40094,40093,40093,40092,40092,40091,40091,40090,40090,40089,40089,40615,40615,40792,40792,40826,40826,40887,40887,40861,40861,40088,40088,40087,40087,40086,40086,40614,40614,40085,40085,40084,40084,40083,40083,40082,40082,40081,40081,40080,40080,40079,40079,40078,40078,40077,40077,40076,40076,40791,40791,40075,40075,40074,40074,40073,40073,40072,40072,40071,40071,40722,40722,40721,40721,40070,40070,40069,40069,40068,40068,40067,40067,40066,40066,40790,40790,40613,40613,40065,40065,40064,40064,40063,40063,40062,40062,40061,40061,40060,40060,40886,40886,40059,40059,40058,40058,40057,40057,40612,40612,40056,40056,40055,40055,40054,40054,40053,40053,40052,40052,40051,40051,40050,40050,40049,40049,40048,40048,40047,40047,40046,40046,40045,40045,40720,40720,40044,40044,40043,40043,40042,40042,40041,40041,40040,40040,40039,40039,40038,40038,40037,40037,40036,40036,40611,40611,40610,40610,40035,40035,40034,40034,40033,40033,41128,41128,40719,40719,40032,40032,40031,40031,40030,40030,40609,40609,40029,40029,40028,40028,40027,40027,40026,40026,40025,40025,40024,40024,40023,40023,40022,40022,40021,40021,40020,40020,40019,40019,40018,40018,40017,40017,40016,40016,40015,40015,40014,40014,40013,40013,40012,40012,40789,40789,40011,40011,40010,40010,40009,40009,40008,40008,40007,40007,40006,40006,40005,40005,40004,40004,40003,40003,40002,40002,40001,40001,40000,40000,39999,39999,39998,39998,40608,40608,39997,39997,39996,39996,39995,39995,39994,39994,39993,39993,39992,39992,40788,40788,39991,39991,39990,39990,39989,39989,40718,40718,39988,39988,39987,39987,39986,39986,39985,39985,39984,39984,39983,39983,39982,39982,39981,39981,39980,39980,39979,39979,39978,39978,39977,39977,39976,39976,39975,39975,39974,39974,39973,39973,39972,39972,39971,39971,40717,40717,40787,40787,39970,39970,39969,39969,39968,39968,39967,39967,39966,39966,40607,40607,40910,40910,41036,41036,41033,41033,40992,40992,40960,40960,40860,40860,39965,39965,39964,39964,39963,39963,39962,39962,39961,39961,39960,39960,39959,39959,39958,39958,39957,39957,39956,39956,39955,39955,39954,39954,39953,39953,39952,39952,39951,39951,39950,39950,39949,39949,39948,39948,39947,39947,40716,40716,40825,40825,40715,40715,40606,40606,39946,39946,39945,39945,39944,39944,39943,39943,39942,39942,39941,39941,39940,39940,40714,40714,40786,40786,40713,40713,39939,39939,39938,39938,39937,39937,40605,40605,39936,39936,39935,39935,39934,39934,40785,40785,39933,39933,39932,39932,39931,39931,39930,39930,39929,39929,39928,39928,39927,39927,39926,39926,39925,39925,39924,39924,39923,39923,39922,39922,39921,39921,39920,39920,39919,39919,40859,40859,40885,40885,40858,40858,39918,39918,39917,39917,39916,39916,39915,39915,39914,39914,39913,39913,39912,39912,39911,39911,39910,39910,40604,40604,40603,40603,39909,39909,39908,39908,39907,39907,39906,39906,39905,39905,39904,39904,39903,39903,40712,40712,39902,39902,39901,39901,39900,39900,40602,40602,39899,39899,39898,39898,39897,39897,39896,39896,39895,39895,39894,39894,39893,39893,39892,39892,40601,40601,40784,40784,39891,39891,39890,39890,39889,39889,39888,39888,39887,39887,39886,39886,39885,39885,39884,39884,40711,40711,39883,39883,39882,39882,39881,39881,40600,40600,40824,40824,39880,39880,39879,39879,39878,39878,39877,39877,39876,39876,39875,39875,39874,39874,40783,40783,40884,40884,39873,39873,39872,39872,39871,39871,39870,39870,39869,39869,40710,40710,40599,40599,39868,39868,39867,39867,39866,39866,40598,40598,39865,39865,39864,39864,39863,39863,40597,40597,39862,39862,39861,39861,39860,39860,39859,39859,39858,39858,39857,39857,39856,39856,39855,39855,39854,39854,39853,39853,39852,39852,39851,39851,39850,39850,40596,40596,39849,39849,39848,39848,39847,39847,39846,39846,39845,39845,39844,39844,39843,39843,40782,40782,40857,40857,40909,40909,39842,39842,39841,39841,39840,39840,39839,39839,39838,39838,39837,39837,39836,39836,39835,39835,39834,39834,39833,39833,39832,39832,39831,39831,39830,39830,40595,40595,40594,40594,39829,39829,39828,39828,39827,39827,40709,40709,39826,39826,39825,39825,39824,39824,39823,39823,39822,39822,39821,39821,39820,39820,39819,39819,39818,39818,39817,39817,39816,39816,39815,39815,39814,39814,40856,40856,40708,40708,39813,39813,39812,39812,39811,39811,40593,40593,40781,40781,40592,40592,39810,39810,39809,39809,39808,39808,39807,39807,39806,39806,39805,39805,39804,39804,39803,39803,39802,39802,39801,39801,39800,39800,39799,39799,39798,39798,39797,39797,39796,39796,39795,39795,39794,39794,39793,39793,39792,39792,39791,39791,40707,40707,40780,40780,40779,40779,39790,39790,39789,39789,39788,39788,40591,40591,40706,40706,40778,40778,39787,39787,39786,39786,39785,39785,39784,39784,39783,39783,40705,40705,39782,39782,39781,39781,39780,39780,39779,39779,39778,39778,39777,39777,39776,39776,40590,40590,39775,39775,39774,39774,39773,39773,39772,39772,39771,39771,39770,39770,40589,40589,39769,39769,39768,39768,39767,39767,39766,39766,39765,39765,39764,39764,39763,39763,39762,39762,39761,39761,40588,40588,39760,39760,39759,39759,39758,39758,39757,39757,39756,39756,39755,39755,39754,39754,39753,39753,39752,39752,39751,39751,39750,39750,39749,39749,39748,39748,39747,39747,40704,40704,40587,40587,39746,39746,39745,39745,39744,39744,39743,39743,39742,39742,39741,39741,39740,39740,39739,39739,39738,39738,39737,39737,39736,39736,39735,39735,39734,39734,39733,39733,39732,39732,39731,39731,39730,39730,39729,39729,39728,39728,39727,39727,40586,40586,39726,39726,39725,39725,39724,39724,40881,40881,40957,40957,39723,39723,39722,39722,39721,39721,39720,39720,39719,39719,39718,39718,39717,39717,39716,39716,39715,39715,39714,39714,39713,39713,40585,40585,39712,39712,39711,39711,39710,39710,39709,39709,39708,39708,39707,39707,39706,39706,39705,39705,39704,39704,39703,39703,39702,39702,40703,40703,40702,40702,39701,39701,39700,39700,39699,39699,39698,39698,39697,39697,40701,40701,39696,39696,39695,39695,39694,39694,40584,40584,39693,39693,39692,39692,39691,39691,40583,40583,40854,40854,40700,40700,39690,39690,39689,39689,39688,39688,39687,39687,39686,39686,39685,39685,39684,39684,39683,39683,39682,39682,39681,39681,39680,39680,39679,39679,39678,39678,39677,39677,40955,40955,40928,40928,40777,40777,39676,39676,39675,39675,39674,39674,39673,39673,39672,39672,39671,39671,39670,39670,39669,39669,39668,39668,39667,39667,39666,39666,40699,40699,40776,40776,40853,40853,40582,40582,39665,39665,39664,39664,39663,39663,39662,39662,39661,39661,39660,39660,39659,39659,40775,40775,40581,40581,39658,39658,39657,39657,39656,39656,39655,39655,39654,39654,39653,39653,39652,39652,39651,39651,39650,39650,39649,39649,39648,39648,39647,39647,40580,40580,39646,39646,39645,39645,39644,39644,39643,39643,39642,39642,39641,39641,39640,39640,39639,39639,39638,39638,40579,40579,39637,39637,39636,39636,39635,39635,40578,40578,39634,39634,39633,39633,39632,39632,39631,39631,39630,39630,39629,39629,39628,39628,39627,39627,39626,39626,39625,39625,39624,39624,39623,39623,39622,39622,39621,39621,39620,39620,39619,39619,39618,39618,39617,39617,39616,39616,39615,39615,39614,39614,39613,39613,39612,39612,40577,40577,39611,39611,39610,39610,39609,39609,39608,39608,39607,39607,39606,39606,39605,39605,39604,39604,39603,39603,39602,39602,40698,40698,40576,40576,39601,39601,39600,39600,39599,39599,40774,40774,40880,40880,39598,39598,39597,39597,39596,39596,39595,39595,39594,39594,39593,39593,39592,39592,39591,39591,39590,39590,40697,40697,39589,39589,39588,39588,39587,39587,39586,39586,39585,39585,39584,39584,39583,39583,39582,39582,39581,39581,39580,39580,39579,39579,39578,39578,40575,40575,39577,39577,39576,39576,39575,39575,40821,40821,40773,40773,40696,40696,39574,39574,39573,39573,39572,39572,40574,40574,40954,40954,40879,40879,40820,40820,40772,40772,39571,39571,39570,39570,39569,39569,40573,40573,39568,39568,39567,39567,39566,39566,40572,40572,39565,39565,39564,39564,39563,39563,40571,40571,39562,39562,39561,39561,39560,39560,39559,39559,39558,39558,39557,39557,40695,40695,41227,41227,40570,40570,39556,39556,39555,39555,39554,39554,40925,40925,40904,40904,40569,40569,39553,39553,39552,39552,39551,39551,39550,39550,39549,39549,40568,40568,39548,39548,39547,39547,39546,39546,40567,40567,39545,39545,39544,39544,39543,39543,40566,40566,40771,40771,40565,40565,39542,39542,39541,39541,39540,39540,39539,39539,39538,39538,40564,40564,39537,39537,39536,39536,39535,39535,40563,40563,39534,39534,39533,39533,39532,39532,39531,39531,39530,39530,39529,39529,40852,40852,39528,39528,39527,39527,39526,39526,39525,39525,39524,39524,40694,40694,39523,39523,39522,39522,39521,39521,39520,39520,39519,39519,40819,40819,39518,39518,39517,39517,39516,39516,39515,39515,39514,39514,39513,39513,39512,39512,39511,39511,39510,39510,40770,40770,40562,40562,39509,39509,39508,39508,39507,39507,40561,40561,39506,39506,39505,39505,39504,39504,40560,40560,39503,39503,39502,39502,39501,39501,39500,39500,39499,39499,40559,40559,39498,39498,39497,39497,39496,39496,40558,40558,39495,39495,39494,39494,39493,39493,39492,39492,39491,39491,39490,39490,40557,40557,39489,39489,39488,39488,39487,39487,40769,40769,39486,39486,39485,39485,39484,39484,39483,39483,39482,39482,40556,40556,39481,39481,39480,39480,39479,39479,39478,39478,39477,39477,39476,39476,40555,40555,40693,40693,40554,40554,39475,39475,39474,39474,39473,39473,40949,40949,40851,40851,40768,40768,39472,39472,39471,39471,39470,39470,39469,39469,39468,39468,40553,40553,39467,39467,39466,39466,39465,39465,40552,40552,39464,39464,39463,39463,39462,39462,39461,39461,39460,39460,39459,39459,39458,39458,39457,39457,40551,40551,39456,39456,39455,39455,39454,39454,40767,40767,40692,40692,39453,39453,39452,39452,39451,39451,39450,39450,39449,39449,39448,39448,39447,39447,39446,39446,39445,39445,39444,39444,39443,39443,40550,40550,39442,39442,39441,39441,39440,39440,40691,40691,40690,40690,40549,40549,39439,39439,39438,39438,39437,39437,40548,40548,39436,39436,39435,39435,39434,39434,40547,40547,39433,39433,39432,39432,39431,39431,40689,40689,39430,39430,39429,39429,39428,39428,40546,40546,39427,39427,39426,39426,39425,39425,39424,39424,39423,39423,39422,39422,39421,39421,39420,39420,39419,39419,39418,39418,39417,39417,39416,39416,39415,39415,40688,40688,40687,40687,40545,40545,39414,39414,39413,39413,39412,39412,39411,39411,39410,39410,39409,39409,39408,39408,39407,39407,40544,40544,39406,39406,39405,39405,39404,39404,40543,40543,40766,40766,39403,39403,39402,39402,39401,39401,40542,40542,40686,40686,40685,40685,40541,40541,39400,39400,39399,39399,39398,39398,39397,39397,39396,39396,39395,39395,39394,39394,39393,39393,39392,39392,39391,39391,40540,40540,39390,39390,39389,39389,39388,39388,39387,39387,39386,39386,40539,40539,39385,39385,39384,39384,39383,39383,39382,39382,39381,39381,39380,39380,39379,39379,39378,39378,40765,40765,40538,40538,39377,39377,39376,39376,39375,39375,39374,39374,39373,39373,40537,40537,39372,39372,39371,39371,39370,39370,39369,39369,39368,39368,39367,39367,39366,39366,39365,39365,39364,39364,39363,39363,39362,39362,39361,39361,39360,39360,39359,39359,39358,39358,39357,39357,39356,39356,39355,39355,39354,39354,40764,40764,41022,41022,39353,39353,39352,39352,39351,39351,39350,39350,39349,39349,39348,39348,39347,39347,39346,39346,39345,39345,39344,39344,40536,40536,39343,39343,39342,39342,39341,39341,39340,39340,39339,39339,39338,39338,39337,39337,39336,39336,39335,39335,39334,39334,39333,39333,39332,39332,39331,39331,39330,39330,39329,39329,39328,39328,39327,39327,39326,39326,40818,40818,40877,40877,40850,40850,40763,40763,40535,40535,39325,39325,39324,39324,39323,39323,39322,39322,39321,39321,39320,39320,39319,39319,39318,39318,39317,39317,39316,39316,39315,39315,39314,39314,39313,39313,40534,40534,39312,39312,39311,39311,39310,39310,40947,40947,39309,39309,39308,39308,39307,39307,39306,39306,39305,39305,39304,39304,39303,39303,39302,39302,40684,40684,39301,39301,39300,39300,39299,39299,40533,40533,40762,40762,40849,40849,40901,40901,40876,40876,40683,40683,39298,39298,39297,39297,39296,39296,40532,40532,39295,39295,39294,39294,39293,39293,39292,39292,39291,39291,39290,39290,40817,40817,40848,40848,40921,40921,40847,40847,39289,39289,39288,39288,39287,39287,40531,40531,39286,39286,39285,39285,39284,39284,39283,39283,39282,39282,39281,39281,39280,39280,39279,39279,39278,39278,40530,40530,39277,39277,39276,39276,39275,39275,39274,39274,39273,39273,39272,39272,39271,39271,39270,39270,39269,39269,39268,39268,40761,40761,40846,40846,40529,40529,39267,39267,39266,39266,39265,39265,39264,39264,39263,39263,39262,39262,40875,40875,40528,40528,39261,39261,39260,39260,39259,39259,40527,40527,39258,39258,39257,39257,39256,39256,40682,40682,39255,39255,39254,39254,39253,39253,39252,39252,39251,39251,40526,40526,39250,39250,39249,39249,39248,39248,39247,39247,39246,39246,39245,39245,39244,39244,39243,39243,39242,39242,39241,39241,39240,39240,39239,39239,39238,39238,39237,39237,39236,39236,39235,39235,39234,39234,39233,39233,39232,39232,39231,39231,39230,39230,39229,39229,39228,39228,40525,40525,39227,39227,39226,39226,39225,39225,39224,39224,39223,39223,39222,39222,39221,39221,39220,39220,40681,40681,39219,39219,39218,39218,39217,39217,39216,39216,39215,39215,39214,39214,39213,39213,39212,39212,40680,40680,39211,39211,39210,39210,39209,39209,39208,39208,39207,39207,39206,39206,39205,39205,39204,39204,39203,39203,39202,39202,39201,39201,39200,39200,39199,39199,39198,39198,39197,39197,39196,39196,39195,39195,39194,39194,39193,39193,39192,39192,39191,39191,39190,39190,39189,39189,39188,39188,39187,39187,39186,39186,39185,39185,40524,40524,39184,39184,39183,39183,39182,39182,39181,39181,39180,39180,39179,39179,39178,39178,39177,39177,39176,39176,39175,39175,39174,39174,39173,39173,39172,39172,39171,39171,39170,39170,39169,39169,39168,39168,39167,39167,40679,40679,40523,40523,39166,39166,39165,39165,39164,39164,39163,39163,39162,39162,39161,39161,39160,39160,39159,39159,40874,40874,40845,40845,40522,40522,39158,39158,39157,39157,39156,39156,39155,39155,39154,39154,39153,39153,39152,39152,39151,39151,39150,39150,39149,39149,40521,40521,40816,40816,41727,41727,41785,41785,41632,41632,41584,41584,41497,41497,40918,40918,40873,40873,40520,40520,39148,39148,39147,39147,39146,39146,39145,39145,39144,39144,39143,39143,39142,39142,39141,39141,39140,39140,39139,39139,40760,40760,40815,40815,40900,40900,41280,41280,41213,41213,41104,41104,40844,40844,40519,40519,39138,39138,39137,39137,39136,39136,40678,40678,40518,40518,39135,39135,39134,39134,39133,39133,39132,39132,39131,39131,39130,39130,39129,39129,39128,39128,39127,39127,39126,39126,39125,39125,39124,39124,39123,39123,39122,39122,39121,39121,40677,40677,40517,40517,39120,39120,39119,39119,39118,39118,39117,39117,39116,39116,40516,40516,40676,40676,39115,39115,39114,39114,39113,39113,39112,39112,39111,39111,39110,39110,39109,39109,39108,39108,40675,40675,40814,40814,40515,40515,39107,39107,39106,39106,39105,39105,39104,39104,39103,39103,39102,39102,40674,40674,40759,40759,39101,39101,39100,39100,39099,39099,39098,39098,39097,39097,40673,40673,40514,40514,39096,39096,39095,39095,39094,39094,39093,39093,39092,39092,39091,39091,39090,39090,40672,40672,40813,40813,40843,40843,40842,40842,40671,40671,39089,39089,39088,39088,39087,39087,39086,39086,39085,39085,39084,39084,39083,39083,39082,39082,39081,39081,39080,39080,39079,39079,39078,39078,39077,39077,39076,39076,39075,39075,39074,39074,41015,41015,40513,40513,39073,39073,39072,39072,39071,39071,40512,40512,39070,39070,39069,39069,39068,39068,39067,39067,39066,39066,39065,39065,39064,39064,39063,39063,39062,39062,39061,39061,39060,39060,39059,39059,40670,40670,39058,39058,39057,39057,39056,39056,39055,39055,39054,39054,40669,40669,39053,39053,39052,39052,39051,39051,39050,39050,39049,39049,39048,39048,39047,39047,39046,39046,39045,39045,40511,40511,39044,39044,39043,39043,39042,39042,40668,40668,39041,39041,39040,39040,39039,39039,39038,39038,39037,39037,40667,40667,39036,39036,39035,39035,39034,39034,39033,39033,39032,39032,40510,40510,39031,39031,39030,39030,39029,39029,39028,39028,39027,39027,39026,39026,39025,39025,39024,39024,39023,39023,40509,40509,39022,39022,39021,39021,39020,39020,40508,40508,39019,39019,39018,39018,39017,39017,40666,40666,40872,40872,40665,40665,39016,39016,39015,39015,39014,39014,39013,39013,39012,39012,40664,40664,39011,39011,39010,39010,39009,39009,39008,39008,39007,39007,39006,39006,39005,39005,39004,39004,39003,39003,39002,39002,39001,39001,39000,39000,40663,40663,40507,40507,38999,38999,38998,38998,38997,38997,38996,38996,38995,38995,38994,38994,38993,38993,38992,38992,38991,38991,38990,38990,40841,40841,40662,40662,38989,38989,38988,38988,38987,38987,38986,38986,38985,38985,38984,38984,38983,38983,38982,38982,38981,38981,38980,38980,38979,38979,38978,38978,38977,38977,38976,38976,38975,38975,38974,38974,38973,38973,40758,40758,38972,38972,38971,38971,38970,38970,38969,38969,38968,38968,40506,40506,40505,40505,38967,38967,38966,38966,38965,38965,38964,38964,38963,38963,38962,38962,38961,38961,38960,38960,38959,38959,38958,38958,38957,38957,38956,38956,40757,40757,40756,40756,38955,38955,38954,38954,38953,38953,38952,38952,38951,38951,38950,38950,38949,38949,38948,38948,38947,38947,38946,38946,38945,38945,38944,38944,38943,38943,38942,38942,38941,38941,38940,38940,38939,38939,38938,38938,38937,38937,38936,38936,38935,38935,38934,38934,38933,38933,38932,38932,40504,40504,38931,38931,38930,38930,38929,38929,38928,38928,38927,38927,40661,40661,40916,40916,40811,40811,40755,40755,38926,38926,38925,38925,38924,38924,38923,38923,38922,38922,40660,40660,38921,38921,38920,38920,38919,38919,38918,38918,38917,38917,38916,38916,38915,38915,40810,40810,40754,40754,38914,38914,38913,38913,38912,38912,38911,38911,38910,38910,40659,40659,40658,40658,38909,38909,38908,38908,38907,38907,38906,38906,38905,38905,40503,40503,38904,38904,38903,38903,38902,38902,38901,38901,38900,38900,38899,38899,38898,38898,40657,40657,40502,40502,38897,38897,38896,38896,38895,38895,40656,40656,40809,40809,38894,38894,38893,38893,38892,38892,38891,38891,38890,38890,38889,38889,38888,38888,38887,38887,38886,38886,38885,38885,40501,40501,38884,38884,38883,38883,38882,38882,38881,38881,38880,38880,38879,38879,38878,38878,38877,38877,38876,38876,38875,38875,38874,38874,38873,38873,38872,38872,38871,38871,38870,38870,38869,38869,38868,38868,38867,38867,38866,38866,38865,38865,38864,38864,38863,38863,38862,38862,38861,38861,38860,38860,38859,38859,40500,40500,38858,38858,38857,38857,38856,38856,38855,38855,38854,38854,38853,38853,38852,38852,38851,38851,38850,38850,38849,38849,38848,38848,40499,40499,38847,38847,38846,38846,38845,38845,38844,38844,38843,38843,38842,38842,38841,38841,40655,40655,38840,38840,38839,38839,38838,38838,38837,38837,38836,38836,38835,38835,38834,38834,38833,38833,38832,38832,40498,40498,38831,38831,38830,38830,38829,38829,38828,38828,38827,38827,38826,38826,38825,38825,38824,38824,38823,38823,38822,38822,38821,38821,38820,38820,38819,38819,38818,38818,40943,40943,40497,40497,38817,38817,38816,38816,38815,38815,38814,38814,38813,38813,38812,38812,38811,38811,38810,38810,38809,38809,38808,38808,38807,38807,38806,38806,38805,38805,38804,38804,38803,38803,40654,40654,38802,38802,38801,38801,38800,38800,40496,40496,40653,40653,40495,40495,38799,38799,38798,38798,38797,38797,38796,38796,38795,38795,38794,38794,38793,38793,38792,38792,40652,40652,40494,40494,38791,38791,38790,38790,38789,38789,38788,38788,38787,38787,40493,40493,40753,40753,38786,38786,38785,38785,38784,38784,38783,38783,38782,38782,38781,38781,38780,38780,40492,40492,38779,38779,38778,38778,38777,38777,38776,38776,38775,38775,40808,40808,38774,38774,38773,38773,38772,38772,38771,38771,38770,38770,38769,38769,38768,38768,38767,38767,40491,40491,38766,38766,38765,38765,38764,38764,38763,38763,38762,38762,38761,38761,38760,38760,38759,38759,38758,38758,38757,38757,38756,38756,38755,38755,38754,38754,40840,40840,38753,38753,38752,38752,38751,38751,38750,38750,38749,38749,40651,40651,38748,38748,38747,38747,38746,38746,38745,38745,38744,38744,38743,38743,38742,38742,38741,38741,38740,38740,38739,38739,40490,40490,40752,40752,40489,40489,38738,38738,38737,38737,38736,38736,40650,40650,40488,40488,38735,38735,38734,38734,38733,38733,38732,38732,38731,38731,38730,38730,38729,38729,38728,38728,38727,38727,38726,38726,38725,38725,38724,38724,38723,38723,40751,40751,38722,38722,38721,38721,38720,38720,38719,38719,38718,38718,38717,38717,38716,38716,38715,38715,38714,38714,40649,40649,38713,38713,38712,38712,38711,38711,38710,38710,38709,38709,38708,38708,38707,38707,38706,38706,38705,38705,40750,40750,40807,40807,40487,40487,38704,38704,38703,38703,38702,38702,38701,38701,38700,38700,40486,40486,40485,40485,38699,38699,38698,38698,38697,38697,38696,38696,38695,41930,41929,41929,41997,41997,41996,41996,41995,41995,41994,41994,41993,41993,41992,41992,41991,41991,41990,41990,41989,41989,41988,41988,41987,41987,41986,41986,41985,41985,41984,41984,41983,41983,41982,41982,41981,41981,41980,41980,41979,41979,41978,41978,41977,41977,41976,41976,41975,41975,42001,42001,42000,42000,41974,41974,41973,41973,41972,41972,41971,41971,41970,41970,41999,41999,41969,41969,41968,41968,41967,41967,41966,41966,41965,41965,41964,41964,41963,41963,41962,41962,41961,41961,41960,41960,41959,41959,41958,41958,41957,41957,41956,41956,41955,41955,41954,41954,41953,41953,41952,41952,41951,41951,41950,41950,41949,41949,41998,41998,41948,41948,41947,41947,41946,41946,41945,41945,41944,41944,41943,41943,41942,41942,41941,41941,41940,41940,41939,41939,41938,41938,41937,41937,41936,41936,41935,41935,41934,41934,41933,41933,41932,41932,41931,41931,41930,42003,42002,42002,42087,42087,42086,42086,42085,42085,42084,42084,42083,42083,42082,42082,42081,42081,42080,42080,42079,42079,42078,42078,42077,42077,42076,42076,42075,42075,42074,42074,42073,42073,42096,42096,42101,42101,42103,42103,42072,42072,42071,42071,42070,42070,42069,42069,42068,42068,42067,42067,42066,42066,42065,42065,42106,42106,42064,42064,42063,42063,42062,42062,42061,42061,42060,42060,42059,42059,42058,42058,42057,42057,42104,42104,42095,42095,42056,42056,42055,42055,42054,42054,42053,42053,42052,42052,42094,42094,42051,42051,42050,42050,42049,42049,42105,42105,42102,42102,42100,42100,42098,42098,42048,42048,42047,42047,42046,42046,42045,42045,42044,42044,42043,42043,42042,42042,42041,42041,42040,42040,42039,42039,42038,42038,42099,42099,42037,42037,42036,42036,42035,42035,42034,42034,42033,42033,42032,42032,42031,42031,42030,42030,42029,42029,42028,42028,42027,42027,42093,42093,42026,42026,42025,42025,42024,42024,42092,42092,42097,42097,42023,42023,42022,42022,42021,42021,42020,42020,42019,42019,42018,42018,42017,42017,42016,42016,42091,42091,42090,42090,42015,42015,42014,42014,42013,42013,42012,42012,42011,42011,42010,42010,42089,42089,42088,42088,42009,42009,42008,42008,42007,42007,42006,42006,42005,42005,42004,42004,42003,42017,42018,42018,42019,42019,42020,42020,42021,42021,42022,42022,42109,42109,42108,42108,42107,42107,42017,42071,42110,42110,42115,42115,42114,42114,42113,42113,42112,42112,42111,42111,42047,42047,42048,42048,42098,42098,42100,42100,42102,42102,42105,42105,42049,42049,42050,42050,42051,42051,42094,42094,42052,42052,42053,42053,42054,42054,42055,42055,42056,42056,42095,42095,42104,42104,42057,42057,42058,42058,42059,42059,42060,42060,42061,42061,42062,42062,42063,42063,42064,42064,42106,42106,42065,42065,42066,42066,42067,42067,42068,42068,42069,42069,42070,42070,42071,42117,42116,42116,42152,42152,42151,42151,42150,42150,42149,42149,42148,42148,42147,42147,42159,42159,42146,42146,42145,42145,42144,42144,42143,42143,42142,42142,42141,42141,42140,42140,42155,42155,42158,42158,42161,42161,42139,42139,42138,42138,42137,42137,42136,42136,42135,42135,42154,42154,42157,42157,42160,42160,42164,42164,42163,42163,42162,42162,42156,42156,42134,42134,42133,42133,42132,42132,42131,42131,42130,42130,42153,42153,42129,42129,42128,42128,42003,42003,42004,42004,42005,42005,42006,42006,42007,42007,42008,42008,42009,42009,42088,42088,42089,42089,42010,42010,42011,42011,42012,42012,42127,42127,42126,42126,42125,42125,42124,42124,42123,42123,42122,42122,42121,42121,42120,42120,42119,42119,42118,42118,42117,42166,42165,42165,42261,42261,42270,42270,42260,42260,42259,42259,42258,42258,42257,42257,42256,42256,42255,42255,42254,42254,42269,42269,42253,42253,42252,42252,42251,42251,42250,42250,42249,42249,42248,42248,42247,42247,42246,42246,42245,42245,42244,42244,42243,42243,42242,42242,42268,42268,42241,42241,42240,42240,42239,42239,42238,42238,42237,42237,42236,42236,42235,42235,42234,42234,42233,42233,42232,42232,42231,42231,42230,42230,42229,42229,42282,42282,42285,42285,42281,42281,42267,42267,42228,42228,42227,42227,42226,42226,42225,42225,42224,42224,42266,42266,42273,42273,42276,42276,42279,42279,42278,42278,42265,42265,42223,42223,42222,42222,42221,42221,42220,42220,42219,42219,42218,42218,42217,42217,42216,42216,42215,42215,42214,42214,42213,42213,42212,42212,42211,42211,42210,42210,42275,42275,42284,42284,42296,42296,42291,42291,42264,42264,42209,42209,42208,42208,42207,42207,42206,42206,42205,42205,42263,42263,42272,42272,42204,42204,42203,42203,42202,42202,42201,42201,42200,42200,42199,42199,42198,42198,42262,42262,42197,42197,42196,42196,42195,42195,42194,42194,42193,42193,42192,42192,42191,42191,42190,42190,42189,42189,42188,42188,42187,42187,42186,42186,42185,42185,42184,42184,42183,42183,42182,42182,42181,42181,42180,42180,42179,42179,42178,42178,42177,42177,42074,42074,42075,42075,42076,42076,42077,42077,42078,42078,42079,42079,42080,42080,42081,42081,42082,42082,42083,42083,42084,42084,42085,42085,42086,42086,42087,42087,42002,42002,42176,42176,42128,42128,42129,42129,42153,42153,42130,42130,42131,42131,42132,42132,42133,42133,42134,42134,42156,42156,42162,42162,42163,42163,42164,42164,42160,42160,42157,42157,42154,42154,42135,42135,42136,42136,42137,42137,42138,42138,42139,42139,42161,42161,42158,42158,42155,42155,42140,42140,42141,42141,42142,42142,42143,42143,42144,42144,42145,42145,42146,42146,42159,42159,42147,42147,42148,42148,42149,42149,42150,42150,42151,42151,42152,42152,42116,42116,42117,42117,42175,42175,42174,42174,42173,42173,42172,42172,42171,42171,42170,42170,42169,42169,42168,42168,42167,42167,42166,42305,42304,42304,42442,42442,42441,42441,42440,42440,42439,42439,42438,42438,42437,42437,42436,42436,42435,42435,42434,42434,42433,42433,42432,42432,42431,42431,42430,42430,42449,42449,42468,42468,42472,42472,42465,42465,42429,42429,42428,42428,42427,42427,42426,42426,42425,42425,42424,42424,42423,42423,42422,42422,42421,42421,42420,42420,42419,42419,42418,42418,42417,42417,42416,42416,42415,42415,42414,42414,42413,42413,42412,42412,42458,42458,42448,42448,42411,42411,42410,42410,42409,42409,42408,42408,42407,42407,42406,42406,42405,42405,42404,42404,42403,42403,42402,42402,42401,42401,42464,42464,42463,42463,42400,42400,42399,42399,42398,42398,42397,42397,42396,42396,42395,42395,42394,42394,42393,42393,42392,42392,42391,42391,42390,42390,42470,42470,42466,42466,42457,42457,42389,42389,42388,42388,42387,42387,42386,42386,42385,42385,42462,42462,42469,42469,42456,42456,42384,42384,42383,42383,42382,42382,42381,42381,42380,42380,42379,42379,42378,42378,42377,42377,42455,42455,42461,42461,42447,42447,42376,42376,42375,42375,42374,42374,42454,42454,42373,42373,42372,42372,42371,42371,42370,42370,42369,42369,42368,42368,42367,42367,42366,42366,42365,42365,42364,42364,42446,42446,42363,42363,42362,42362,42361,42361,42445,42445,42444,42444,42360,42360,42359,42359,42358,42358,42357,42357,42356,42356,42355,42355,42354,42354,42353,42353,42352,42352,42351,42351,42453,42453,42452,42452,42350,42350,42349,42349,42348,42348,42347,42347,42346,42346,42451,42451,42443,42443,42345,42345,42344,42344,42343,42343,42460,42460,42342,42342,42341,42341,42340,42340,42339,42339,42338,42338,42337,42337,42336,42336,42335,42335,42334,42334,42333,42333,42332,42332,42331,42331,42330,42330,42329,42329,42328,42328,42327,42327,42326,42326,42325,42325,42324,42324,42323,42323,42322,42322,42321,42321,42320,42320,42319,42319,42459,42459,42450,42450,42318,42318,42317,42317,42316,42316,42315,42315,42314,42314,42313,42313,42312,42312,42311,42311,42310,42310,42309,42309,42308,42308,42307,42307,42306,42306,42305,42475,42474,42474,42480,42480,42479,42479,42478,42478,42477,42477,42476,42476,42475,42482,42481,42481,42491,42491,42490,42490,42489,42489,42488,42488,42487,42487,42486,42486,42485,42485,42484,42484,42483,42483,42482,42493,42492,42492,42501,42501,42500,42500,42499,42499,42498,42498,42497,42497,42496,42496,42495,42495,42494,42494,42493,42503,42502,42502,42509,42509,42508,42508,42507,42507,42506,42506,42505,42505,42504,42504,42503,42511,42510,42510,42515,42515,42514,42514,42513,42513,42512,42512,42511,42517,42516,42516,42519,42519,42518,42518,42517,42521,42520,42520,42524,42524,42523,42523,42522,42522,42521,42526,42525,42525,42532,42532,42531,42531,42530,42530,42529,42529,42528,42528,42527,42527,42526,42534,42533,42533,42539,42539,42538,42538,42537,42537,42536,42536,42535,42535,42534,42540,42555,42555,42554,42554,42553,42553,42552,42552,42551,42551,42550,42550,42549,42549,42548,42548,42547,42547,42546,42546,42545,42545,42544,42544,42543,42543,42542,42542,42541,42541,42540,42426,42427,42427,42428,42428,42429,42429,42465,42465,42472,42472,42468,42468,42449,42449,42430,42430,42431,42431,42432,42432,42433,42433,42434,42434,42435,42435,42436,42436,42437,42437,42438,42438,42439,42439,42440,42440,42441,42441,42442,42442,42304,42304,42305,42305,42657,42657,42656,42656,42655,42655,42662,42662,42654,42654,42653,42653,42652,42652,42651,42651,42650,42650,42649,42649,42648,42648,42647,42647,42646,42646,42645,42645,42644,42644,42643,42643,42642,42642,42641,42641,42640,42640,42639,42639,42638,42638,42637,42637,42667,42667,42636,42636,42635,42635,42634,42634,42633,42633,42632,42632,42631,42631,42630,42630,42629,42629,42628,42628,42627,42627,42626,42626,42625,42625,42624,42624,42664,42664,42666,42666,42623,42623,42622,42622,42621,42621,42620,42620,42619,42619,42618,42618,42617,42617,42616,42616,42661,42661,42615,42615,42614,42614,42613,42613,42612,42612,42611,42611,42610,42610,42609,42609,42608,42608,42660,42660,42607,42607,42606,42606,42605,42605,39233,39233,39234,39234,39235,39235,39236,39236,39237,39237,39238,39238,39239,39239,39240,39240,39241,39241,39242,39242,39243,39243,39244,39244,39245,39245,39246,39246,39247,39247,39248,39248,39249,39249,39250,39250,40526,40526,39251,39251,39252,39252,39253,39253,39254,39254,39255,39255,40682,40682,39256,39256,39257,39257,39258,39258,40527,40527,39259,39259,39260,39260,39261,39261,40528,40528,40875,40875,39262,39262,39263,39263,39264,39264,39265,39265,39266,39266,39267,39267,40529,40529,40846,40846,40761,40761,39268,39268,39269,39269,39270,39270,39271,39271,39272,39272,39273,39273,39274,39274,39275,39275,39276,39276,39277,39277,40530,40530,39278,39278,39279,39279,39280,39280,39281,39281,39282,39282,39283,39283,39284,39284,39285,39285,39286,39286,40531,40531,39287,39287,39288,39288,39289,39289,40847,40847,40921,40921,40848,40848,40817,40817,39290,39290,39291,39291,39292,39292,39293,39293,39294,39294,39295,39295,40532,40532,39296,39296,39297,39297,39298,39298,40683,40683,40876,40876,40901,40901,40849,40849,40762,40762,40533,40533,39299,39299,39300,39300,39301,39301,40684,40684,39302,39302,39303,39303,39304,39304,39305,39305,39306,39306,39307,39307,39308,39308,39309,39309,40947,40947,39310,39310,39311,39311,39312,39312,40534,40534,39313,39313,39314,39314,39315,39315,39316,39316,39317,39317,39318,39318,39319,39319,39320,39320,39321,39321,39322,39322,42604,42604,42603,42603,42602,42602,42601,42601,42600,42600,42599,42599,42598,42598,42597,42597,42596,42596,42595,42595,42594,42594,42593,42593,42659,42659,42592,42592,42591,42591,42590,42590,42669,42669,42658,42658,42589,42589,42588,42588,42587,42587,42586,42586,42585,42585,42584,42584,42583,42583,42582,42582,42581,42581,42580,42580,42579,42579,42578,42578,42577,42577,42576,42576,42575,42575,42574,42574,42573,42573,42572,42572,42571,42571,42570,42570,42569,42569,42568,42568,42567,42567,42566,42566,42663,42663,42665,42665,42565,42565,42564,42564,42563,42563,42562,42562,42561,42561,42560,42560,42559,42559,42558,42558,42557,42557,42556,42556,42426,42674,42673,42673,42677,42677,42676,42676,42675,42675,42674,37294,37295,37295,37296,37296,37297,37297,37298,37298,37299,37299,37300,37300,37301,37301,37748,37748,38059,38059,38153,38153,37302,37302,37303,37303,37304,37304,37305,37305,37306,37306,37824,37824,37883,37883,37931,37931,38327,38327,37307,37307,37308,37308,37309,37309,37310,37310,37311,37311,37825,37825,37312,37312,37313,37313,37314,37314,37315,37315,37316,37316,37317,37317,37749,37749,37826,37826,37318,37318,37319,37319,37320,37320,37321,37321,37322,37322,37323,37323,37969,37969,37324,37324,37325,37325,37326,37326,37327,37327,37328,37328,37329,37329,37330,37330,37331,37331,37332,37332,37333,37333,37334,37334,37335,37335,37336,37336,37337,37337,37338,37338,37339,37339,37750,37750,37827,37827,37340,37340,37341,37341,37342,37342,40229,40229,40230,40230,40231,40231,40627,40627,40232,40232,40233,40233,40234,40234,40628,40628,40235,40235,40236,40236,40237,40237,41130,41130,41002,41002,40913,40913,40890,40890,40798,40798,40733,40733,40238,40238,40239,40239,40240,40240,40241,40241,40242,40242,40830,40830,40734,40734,40243,40243,40244,40244,40245,40245,40246,40246,40247,40247,40799,40799,40735,40735,40248,40248,40249,40249,40250,40250,40629,40629,40251,40251,40252,40252,37294,42680,42679,42679,42687,42687,42686,42686,42685,42685,42684,42684,42683,42683,42682,42682,42681,42681,42680,42689,42688,42688,42855,42855,42854,42854,42853,42853,42852,42852,42851,42851,42850,42850,42849,42849,42848,42848,42847,42847,42846,42846,42845,42845,42844,42844,42863,42863,42843,42843,42842,42842,42841,42841,42840,42840,42839,42839,42838,42838,42862,42862,42837,42837,42836,42836,42835,42835,42834,42834,42833,42833,42832,42832,42831,42831,42830,42830,42829,42829,42828,42828,42827,42827,42826,42826,42825,42825,42824,42824,42823,42823,42822,42822,42821,42821,42886,42886,42891,42891,42820,42820,42819,42819,42818,42818,42817,42817,42816,42816,42861,42861,42815,42815,42814,42814,42813,42813,42812,42812,42811,42811,42810,42810,42809,42809,42870,42870,42808,42808,42807,42807,42806,42806,42805,42805,42804,42804,42803,42803,42802,42802,42801,42801,42800,42800,42799,42799,42798,42798,42797,42797,42796,42796,42795,42795,42794,42794,42793,42793,42792,42792,42791,42791,42790,42790,42879,42879,42878,42878,42789,42789,42788,42788,42787,42787,42786,42786,42785,42785,42869,42869,42874,42874,42784,42784,42783,42783,42782,42782,42781,42781,42780,42780,42779,42779,42778,42778,42777,42777,42776,42776,42775,42775,42774,42774,42773,42773,42772,42772,42771,42771,42770,42770,42769,42769,42768,42768,42767,42767,42766,42766,42765,42765,42764,42764,42763,42763,42868,42868,42877,42877,42884,42884,42860,42860,42762,42762,42761,42761,42760,42760,42759,42759,42758,42758,42757,42757,42756,42756,42755,42755,42754,42754,42753,42753,42883,42883,42895,42895,42859,42859,42752,42752,42751,42751,42750,42750,42749,42749,42748,42748,42747,42747,42746,42746,42745,42745,42744,42744,42743,42743,42742,42742,42741,42741,42740,42740,42876,42876,42739,42739,42738,42738,42737,42737,42736,42736,42735,42735,42734,42734,42733,42733,42732,42732,42731,42731,42730,42730,42729,42729,42728,42728,42867,42867,42727,42727,42726,42726,42725,42725,42724,42724,42723,42723,42722,42722,42721,42721,42858,42858,42873,42873,42720,42720,42719,42719,42718,42718,42717,42717,42716,42716,42715,42715,42899,42899,42714,42714,42713,42713,42712,42712,42711,42711,42710,42710,42709,42709,42708,42708,42707,42707,42866,42866,42872,42872,42875,42875,42706,42706,42705,42705,42704,42704,42703,42703,42702,42702,42857,42857,42871,42871,42887,42887,42865,42865,42701,42701,42700,42700,42699,42699,42698,42698,42697,42697,42696,42696,42695,42695,42856,42856,42864,42864,42694,42694,42693,42693,42692,42692,42691,42691,42690,42690,42689,42913,42912,42912,42933,42933,42932,42932,42931,42931,42930,42930,42929,42929,42928,42928,42935,42935,42927,42927,42926,42926,42925,42925,42924,42924,42923,42923,42934,42934,42922,42922,42921,42921,42920,42920,42919,42919,42918,42918,42917,42917,42916,42916,42915,42915,42914,42914,42913,42937,42936,42936,42942,42942,42941,42941,42940,42940,42939,42939,42938,42938,42937,43403,43368,43368,43367,43367,43366,43366,43365,43365,43364,43364,43363,43363,43362,43362,43361,43361,43360,43360,43359,43359,43358,43358,43357,43357,43402,43402,43356,43356,43355,43355,43354,43354,43491,43491,43401,43401,43353,43353,43352,43352,43351,43351,43350,43350,43349,43349,43348,43348,43347,43347,43400,43400,43346,43346,43345,43345,43344,43344,43343,43343,43342,43342,43341,43341,43340,43340,43339,43339,43338,43338,43399,43399,43432,43432,43462,43462,43337,43337,43336,43336,43335,43335,43334,43334,43333,43333,43332,43332,43331,43331,43330,43330,43329,43329,43328,43328,43327,43327,43326,43326,43325,43325,43324,43324,43323,43323,43322,43322,43321,43321,43320,43320,43431,43431,43430,43430,43319,43319,43318,43318,43317,43317,43316,43316,43315,43315,43314,43314,43313,43313,43312,43312,43429,43429,43311,43311,43310,43310,43309,43309,43308,43308,43307,43307,43306,43306,43305,43305,43304,43304,43303,43303,43302,43302,43484,43484,43472,43472,43301,43301,43300,43300,43299,43299,43298,43298,43297,43297,43296,43296,43295,43295,43452,43452,43451,43451,43428,43428,43398,43398,43294,43294,43293,43293,43292,43292,43291,43291,43290,43290,43289,43289,43288,43288,43427,43427,43287,43287,43286,43286,43285,43285,43397,43397,43461,43461,43483,43483,43284,43284,43283,43283,43282,43282,43281,43281,43280,43280,43279,43279,43278,43278,43277,43277,43276,43276,43275,43275,43274,43274,43273,43273,43272,43272,43271,43271,43270,43270,43269,43269,43268,43268,43267,43267,43396,43396,43266,43266,43265,43265,43264,43264,43426,43426,43425,43425,43261,43261,43260,43260,43259,43259,43258,43258,43257,43257,43256,43256,43255,43255,43254,43254,43253,43253,43252,43252,43251,43251,43250,43250,43424,43424,43490,43490,43393,43393,43249,43249,43248,43248,43247,43247,43246,43246,43245,43245,43244,43244,43243,43243,43242,43242,43241,43241,43392,43392,43449,43449,43481,43481,43497,43497,43471,43471,43391,43391,43240,43240,43239,43239,43238,43238,43237,43237,43236,43236,43390,43390,43448,43448,43460,43460,43447,43447,43235,43235,43234,43234,43233,43233,43232,43232,43231,43231,43423,43423,43389,43389,43230,43230,43229,43229,43228,43228,43388,43388,43227,43227,43226,43226,43225,43225,43224,43224,43223,43223,43222,43222,43221,43221,43220,43220,43219,43219,43387,43387,43480,43480,43218,43218,43217,43217,43216,43216,43523,43523,43446,43446,43215,43215,43214,43214,43213,43213,43212,43212,43211,43211,43422,43422,43386,43386,43210,43210,43209,43209,43208,43208,43207,43207,43206,43206,43205,43205,43204,43204,43445,43445,43459,43459,43421,43421,43385,43385,43203,43203,43202,43202,43201,43201,43200,43200,43199,43199,43198,43198,43197,43197,43196,43196,43195,43195,43194,43194,43458,43458,43193,43193,43192,43192,43191,43191,43384,43384,43190,43190,43189,43189,43188,43188,43383,43383,43187,43187,43186,43186,43185,43185,43420,43420,43184,43184,43183,43183,43182,43182,43181,43181,43180,43180,43444,43444,43479,43479,43419,43419,43179,43179,43178,43178,43177,43177,43382,43382,43443,43443,43495,43495,43488,43488,43418,43418,43176,43176,43175,43175,43174,43174,43173,43173,43172,43172,43171,43171,43170,43170,43169,43169,43168,43168,43167,43167,43166,43166,43165,43165,43164,43164,43163,43163,43162,43162,43161,43161,43160,43160,43159,43159,43158,43158,43157,43157,43156,43156,43155,43155,43154,43154,43417,43417,43153,43153,43152,43152,43151,43151,43381,43381,43478,43478,43518,43518,43514,43514,43507,43507,43469,43469,43442,43442,43150,43150,43149,43149,43148,43148,43147,43147,43146,43146,43145,43145,43144,43144,43441,43441,43143,43143,43142,43142,43141,43141,43140,43140,43139,43139,43138,43138,43137,43137,43136,43136,43135,43135,43134,43134,43133,43133,43132,43132,43131,43131,43416,43416,43130,43130,43129,43129,43128,43128,43127,43127,43126,43126,43125,43125,43124,43124,43123,43123,43122,43122,43121,43121,43415,43415,43120,43120,43119,43119,43118,43118,43117,43117,43116,43116,43115,43115,43114,43114,43113,43113,43414,43414,43112,43112,43111,43111,43110,43110,43109,43109,43108,43108,43107,43107,43106,43106,43105,43105,43104,43104,43103,43103,43519,43519,43506,43506,43501,43501,43380,43380,43102,43102,43101,43101,43100,43100,43099,43099,43098,43098,43097,43097,43096,43096,43095,43095,43094,43094,43093,43093,43413,43413,43456,43456,43092,43092,43091,43091,43090,43090,43468,43468,43455,43455,43412,43412,43089,43089,43088,43088,43087,43087,43086,43086,43085,43085,43440,43440,43084,43084,43083,43083,43082,43082,43379,43379,43467,43467,43411,43411,43081,43081,43080,43080,43079,43079,43078,43078,43077,43077,43076,43076,43075,43075,43074,43074,43073,43073,43410,43410,43072,43072,43071,43071,43070,43070,43069,43069,43068,43068,43067,43067,43066,43066,43065,43065,43064,43064,43063,43063,43062,43062,43061,43061,43060,43060,43059,43059,43438,43438,43378,43378,43058,43058,43057,43057,43056,43056,43055,43055,43054,43054,43053,43053,43052,43052,43051,43051,43050,43050,43049,43049,43048,43048,43047,43047,43046,43046,43045,43045,43377,43377,43044,43044,43043,43043,43042,43042,43041,43041,43040,43040,43039,43039,43038,43038,43037,43037,43036,43036,43035,43035,43034,43034,43033,43033,43032,43032,43376,43376,43031,43031,43030,43030,43029,43029,43028,43028,43027,43027,43026,43026,43025,43025,43024,43024,43375,43375,43023,43023,43022,43022,43021,43021,43020,43020,43019,43019,43018,43018,43437,43437,43504,43504,43476,43476,43464,43464,43017,43017,43016,43016,43015,43015,43014,43014,43013,43013,43012,43012,43011,43011,43010,43010,43009,43009,43008,43008,43007,43007,43374,43374,43006,43006,43005,43005,43004,43004,43003,43003,43002,43002,43001,43001,43000,43000,43409,43409,42999,42999,42998,42998,42997,42997,42996,42996,42995,42995,43408,43408,43373,43373,42994,42994,42993,42993,42992,42992,42991,42991,42990,42990,42989,42989,42988,42988,42987,42987,42986,42986,42985,42985,42984,42984,42983,42983,42982,42982,42981,42981,42980,42980,43407,43407,43436,43436,43453,43453,43463,43463,43475,43475,43498,43498,42979,42979,42978,42978,42977,42977,42976,42976,42975,42975,42974,42974,42973,42973,42972,42972,42971,42971,42970,42970,43372,43372,43371,43371,42969,42969,42968,42968,42967,42967,43406,43406,43474,43474,43485,43485,43492,43492,43559,43559,43561,43561,43473,43473,43435,43435,43370,43370,42966,42966,42965,42965,42964,42964,42963,42963,42962,42962,42961,42961,42960,42960,42959,42959,42958,42958,42957,42957,42956,42956,42955,42955,42954,42954,42953,42953,42952,42952,42951,42951,43405,43405,43434,43434,42950,42950,42949,42949,42948,42948,42947,42947,42946,42946,43404,43404,43433,43433,43369,43369,42945,42945,42944,42944,42943,42943,43403,43450,43482,43482,43503,43503,43394,43394,43262,43262,43263,43263,43395,43395,43450,43563,43562,43562,43577,43577,43576,43576,43575,43575,43579,43579,43578,43578,43574,43574,43573,43573,43572,43572,43571,43571,43570,43570,43569,43569,43568,43568,43567,43567,43566,43566,43565,43565,43564,43564,43563,43581,43580,43580,43587,43587,43586,43586,43585,43585,43584,43584,43583,43583,43582,43582,43581,43589,43588,43588,43597,43597,43596,43596,43595,43595,43594,43594,43593,43593,43592,43592,43591,43591,43598,43598,43590,43590,43589,43600,43599,43599,43604,43604,43603,43603,43602,43602,43601,43601,43600,43606,43605,43605,43611,43611,43610,43610,43609,43609,43608,43608,43607,43607,43606,43403,42943,42943,42944,42944,42945,42945,43369,43369,43433,43433,43404,43404,42946,42946,42947,42947,42948,42948,42949,42949,42950,42950,43434,43434,43405,43405,42951,42951,42952,42952,42953,42953,42954,42954,42955,42955,42956,42956,42957,42957,42958,42958,42959,42959,42960,42960,42961,42961,42962,42962,42963,42963,42964,42964,42965,42965,42966,42966,43370,43370,43435,43435,43473,43473,43561,43561,43559,43559,43492,43492,43485,43485,43474,43474,43406,43406,42967,42967,42968,42968,42969,42969,43371,43371,43372,43372,42970,42970,42971,42971,42972,42972,42973,42973,42974,42974,42975,42975,42976,42976,42977,42977,42978,42978,42979,42979,43498,43498,43475,43475,43463,43463,43453,43453,43436,43436,43407,43407,42980,42980,42981,42981,42982,42982,42983,42983,42984,42984,42985,42985,42986,42986,42987,42987,42988,42988,42989,42989,42990,42990,42991,42991,42992,42992,42993,42993,42994,42994,43373,43373,43408,43408,42995,42995,42996,42996,42997,42997,42998,42998,42999,42999,43409,43409,43000,43000,43001,43001,43002,43002,43003,43003,43004,43004,43005,43005,43006,43006,43374,43374,43007,43007,43008,43008,43009,43009,43010,43010,43011,43011,43012,43012,43013,43013,43014,43014,43015,43015,43016,43016,43017,43017,43464,43464,43476,43476,43504,43504,43437,43437,43018,43018,43019,43019,43020,43020,43021,43021,43022,43022,43023,43023,43375,43375,43024,43024,43025,43025,43026,43026,43027,43027,43028,43028,43029,43029,43030,43030,43031,43031,43376,43376,43032,43032,43033,43033,43034,43034,43035,43035,43036,43036,43037,43037,43038,43038,43039,43039,43040,43040,43041,43041,43042,43042,43043,43043,43044,43044,43377,43377,43045,43045,43046,43046,43047,43047,43048,43048,43049,43049,43050,43050,43051,43051,43052,43052,43053,43053,43054,43054,43055,43055,43056,43056,43057,43057,43058,43058,43378,43378,43438,43438,43059,43059,43060,43060,43061,43061,43062,43062,43063,43063,43064,43064,43065,43065,43066,43066,43067,43067,43068,43068,43069,43069,43070,43070,43071,43071,44218,44218,44277,44277,44217,44217,44216,44216,44215,44215,44214,44214,44213,44213,44276,44276,44212,44212,44211,44211,44210,44210,44209,44209,44208,44208,44275,44275,44353,44353,44382,44382,44395,44395,44411,44411,44425,44425,44438,44438,44474,44474,44471,44471,44207,44207,44206,44206,44205,44205,44381,44381,44308,44308,44274,44274,44204,44204,44203,44203,44202,44202,44201,44201,44200,44200,44199,44199,44198,44198,44307,44307,44352,44352,44369,44369,44394,44394,44306,44306,44273,44273,44197,44197,44196,44196,44195,44195,44194,44194,44193,44193,44192,44192,44191,44191,44190,44190,44189,44189,44188,44188,44305,44305,44351,44351,44187,44187,44186,44186,44185,44185,44184,44184,44183,44183,44304,44304,44329,44329,44303,44303,44182,44182,44181,44181,44180,44180,44179,44179,44178,44178,44328,44328,44302,44302,44177,44177,44176,44176,44175,44175,44174,44174,44173,44173,44172,44172,44171,44171,44170,44170,44169,44169,44168,44168,44167,44167,44272,44272,44271,44271,44166,44166,44165,44165,44164,44164,44350,44350,44270,44270,44163,44163,44162,44162,44161,44161,44160,44160,44159,44159,44158,44158,44157,44157,44156,44156,44155,44155,44154,44154,44153,44153,44152,44152,44151,44151,44150,44150,44149,44149,44148,44148,44147,44147,44146,44146,44301,44301,44349,44349,44327,44327,44145,44145,44144,44144,44143,44143,44142,44142,44141,44141,44300,44300,44299,44299,44140,44140,44139,44139,44138,44138,44269,44269,44552,44552,44597,44597,44640,44640,44137,44137,44136,44136,44135,44135,44134,44134,44133,44133,44132,44132,44131,44131,44130,44130,44129,44129,44128,44128,44127,44127,44126,44126,44125,44125,44298,44298,44348,44348,44380,44380,44124,44124,44123,44123,44122,44122,44121,44121,44120,44120,44119,44119,44118,44118,44117,44117,44116,44116,44115,44115,44114,44114,44113,44113,44112,44112,44111,44111,44110,44110,44326,44326,44109,44109,44108,44108,44107,44107,44268,44268,44106,44106,44105,44105,44104,44104,44103,44103,44102,44102,44101,44101,44100,44100,44099,44099,44098,44098,44097,44097,44096,44096,44095,44095,44094,44094,44093,44093,44297,44297,44347,44347,44368,44368,44379,44379,44092,44092,44091,44091,44090,44090,44267,44267,44089,44089,44088,44088,44087,44087,44266,44266,44086,44086,44085,44085,44084,44084,44083,44083,44082,44082,44081,44081,44080,44080,44079,44079,44078,44078,44265,44265,44325,44325,44077,44077,44076,44076,44075,44075,44074,44074,44073,44073,44072,44072,44071,44071,44296,44296,44346,44346,44345,44345,44264,44264,44070,44070,44069,44069,44068,44068,44067,44067,44066,44066,44065,44065,44064,44064,44263,44263,44063,44063,44062,44062,44061,44061,44060,44060,44059,44059,44058,44058,44057,44057,44056,44056,44055,44055,44054,44054,44053,44053,44295,44295,44344,44344,44367,44367,44393,44393,44409,44409,44434,44434,44366,44366,44052,44052,44051,44051,44050,44050,44049,44049,44048,44048,44047,44047,44046,44046,44045,44045,44262,44262,44044,44044,44043,44043,44042,44042,44294,44294,44041,44041,44040,44040,44039,44039,44261,44261,44038,44038,44037,44037,44036,44036,44260,44260,44035,44035,44034,44034,44033,44033,44259,44259,44032,44032,44031,44031,44030,44030,44029,44029,44028,44028,44027,44027,44026,44026,44324,44324,44025,44025,44024,44024,44023,44023,44323,44323,44022,44022,44021,44021,44020,44020,44019,44019,44018,44018,44017,44017,44016,44016,44015,44015,44014,44014,44013,44013,44012,44012,44011,44011,44322,44322,44293,44293,44010,44010,44009,44009,44008,44008,44007,44007,44006,44006,44005,44005,44004,44004,44003,44003,44002,44002,44001,44001,44000,44000,43999,43999,43998,43998,44258,44258,44343,44343,44422,44422,44420,44420,44407,44407,44378,44378,44365,44365,43997,43997,43996,43996,43995,43995,43994,43994,43993,43993,43992,43992,43991,43991,43990,43990,43989,43989,44321,44321,44342,44342,44391,44391,44405,44405,44377,44377,44364,44364,44292,44292,43988,43988,43987,43987,43986,43986,43985,43985,43984,43984,43983,43983,43982,43982,43981,43981,43980,43980,43979,43979,44257,44257,44341,44341,44291,44291,43978,43978,43977,43977,43976,43976,43975,43975,43974,43974,43973,43973,43972,43972,43971,43971,43970,43970,43969,43969,44256,44256,44320,44320,43968,43968,43967,43967,43966,43966,43965,43965,43964,43964,43963,43963,43962,43962,44290,44290,44389,44389,44376,44376,44255,44255,43961,43961,43960,43960,43959,43959,43958,43958,43957,43957,44254,44254,44319,44319,44340,44340,44363,44363,44404,44404,44550,44550,44657,44657,43956,43956,43955,43955,43954,43954,44432,44432,44418,44418,43953,43953,43952,43952,43951,43951,44253,44253,44252,44252,43950,43950,43949,43949,43948,43948,43947,43947,43946,43946,43945,43945,43944,43944,43943,43943,43942,43942,43941,43941,43940,43940,43939,43939,43938,43938,44362,44362,44339,44339,43937,43937,43936,43936,43935,43935,43934,43934,43933,43933,43932,43932,43931,43931,43930,43930,43929,43929,43928,43928,43927,43927,43926,43926,43925,43925,44361,44361,44403,44403,44402,44402,43924,43924,43923,43923,43922,43922,43921,43921,43920,43920,43919,43919,43918,43918,43917,43917,43916,43916,43915,43915,43914,43914,43913,43913,44289,44289,44338,44338,44360,44360,44388,44388,44416,44416,43912,43912,43911,43911,43910,43910,43909,43909,43908,43908,43907,43907,43906,43906,44288,44288,44251,44251,43905,43905,43904,43904,43903,43903,43902,43902,43901,43901,44250,44250,44249,44249,43900,43900,43899,43899,43898,43898,43897,43897,43896,43896,43895,43895,43894,43894,43893,43893,43892,43892,43891,43891,43890,43890,43889,43889,43888,43888,43887,43887,44337,44337,43886,43886,43885,43885,43884,43884,43883,43883,43882,43882,44248,44248,43881,43881,43880,43880,43879,43879,44247,44247,43878,43878,43877,43877,43876,43876,43875,43875,43874,43874,43873,43873,43872,43872,43871,43871,43870,43870,43869,43869,43868,43868,43867,43867,43866,43866,44246,44246,43865,43865,43864,43864,43863,43863,43862,43862,43861,43861,43860,43860,44287,44287,44336,44336,44318,44318,44286,44286,43859,43859,43858,43858,43857,43857,44245,44245,43856,43856,43855,43855,43854,43854,43853,43853,43852,43852,43851,43851,43850,43850,44244,44244,44317,44317,44335,44335,44334,44334,43849,43849,43848,43848,43847,43847,43846,43846,43845,43845,43844,43844,43843,43843,43842,43842,43841,43841,43840,43840,43839,43839,43838,43838,43837,43837,44375,44375,44374,44374,43836,43836,43835,43835,43834,43834,43833,43833,43832,43832,43831,43831,43830,43830,43829,43829,43828,43828,43827,43827,44243,44243,43826,43826,43825,43825,43824,43824,44242,44242,43823,43823,43822,43822,43821,43821,43820,43820,43819,43819,43818,43818,43817,43817,44316,44316,44373,44373,44359,44359,44333,44333,44241,44241,43816,43816,43815,43815,43814,43814,43813,43813,43812,43812,43811,43811,43810,43810,44315,44315,44240,44240,43809,43809,43808,43808,43807,43807,44314,44314,43806,43806,43805,43805,43804,43804,43803,43803,43802,43802,43801,43801,43800,43800,44239,44239,44358,44358,43799,43799,43798,43798,43797,43797,43796,43796,43795,43795,43794,43794,43793,43793,44285,44285,44332,44332,44429,44429,44238,44238,43792,43792,43791,43791,43790,43790,44284,44284,44237,44237,43789,43789,43788,43788,43787,43787,44236,44236,43786,43786,43785,43785,43784,43784,43783,43783,43782,43782,43781,43781,43780,43780,44357,44357,44372,44372,44386,44386,44355,44355,43779,43779,43778,43778,43777,43777,43776,43776,43775,43775,43774,43774,43773,43773,43772,43772,43771,43771,43770,43770,43769,43769,43768,43768,43767,43767,43766,43766,43765,43765,43764,43764,43763,43763,43762,43762,44235,44235,43761,43761,43760,43760,43759,43759,43758,43758,43757,43757,43756,43756,44312,44312,44371,44371,44283,44283,43755,43755,43754,43754,43753,43753,43752,43752,43751,43751,43750,43750,43749,43749,43748,43748,43747,43747,43746,43746,43745,43745,43744,43744,43743,43743,43742,43742,43741,43741,43740,43740,44282,44282,44234,44234,43739,43739,43738,43738,43737,43737,43736,43736,43735,43735,43734,43734,44281,44281,44233,44233,43733,43733,43732,43732,43731,43731,43730,43730,43729,43729,43728,43728,44311,44311,44280,44280,43727,43727,43726,43726,43725,43725,44232,44232,43724,43724,43723,43723,43722,43722,43721,43721,43720,43720,43719,43719,43718,43718,43717,43717,43716,43716,43715,43715,43714,43714,43713,43713,44231,44231,43712,43712,43711,43711,43710,43710,43709,43709,43708,43708,43707,43707,43706,43706,43705,43705,43704,43704,43703,43703,43702,43702,43701,43701,43700,43700,43699,43699,43698,43698,43697,43697,43696,43696,43695,43695,43694,43694,43693,43693,43692,43692,43691,43691,43690,43690,43689,43689,43688,43688,43687,43687,44230,44230,43686,43686,43685,43685,43684,43684,43683,43683,43682,43682,44229,44229,44228,44228,43681,43681,43680,43680,43679,43679,44279,44279,44227,44227,43678,43678,43677,43677,43676,43676,39910,39910,39911,39911,39912,39912,39913,39913,39914,39914,39915,39915,39916,39916,39917,39917,39918,39918,40858,40858,40885,40885,40859,40859,39919,39919,39920,39920,39921,39921,39922,39922,39923,39923,39924,39924,39925,39925,39926,39926,39927,39927,39928,39928,39929,39929,39930,39930,39931,39931,39932,39932,39933,39933,40785,40785,39934,39934,39935,39935,39936,39936,40605,40605,39937,39937,39938,39938,39939,39939,40713,40713,40786,40786,40714,40714,39940,39940,39941,39941,39942,39942,39943,39943,39944,39944,39945,39945,39946,39946,40606,40606,40715,40715,40825,40825,40716,40716,39947,39947,39948,39948,39949,39949,39950,39950,39951,39951,39952,39952,39953,39953,39954,39954,39955,39955,39956,39956,39957,39957,39958,39958,39959,39959,39960,39960,39961,39961,39962,39962,39963,39963,39964,39964,39965,39965,40860,40860,40960,40960,40992,40992,41033,41033,41036,41036,40910,40910,40607,40607,39966,39966,39967,39967,39968,39968,39969,39969,39970,39970,40787,40787,40717,40717,39971,39971,39972,39972,39973,39973,39974,39974,39975,39975,39976,39976,39977,39977,39978,39978,39979,39979,39980,39980,39981,39981,39982,39982,39983,39983,39984,39984,39985,39985,39986,39986,39987,39987,39988,39988,40718,40718,39989,39989,39990,39990,39991,39991,40788,40788,39992,39992,39993,39993,39994,39994,39995,39995,39996,39996,39997,39997,40608,40608,39998,39998,39999,39999,40000,40000,40001,40001,40002,40002,40003,40003,40004,40004,40005,40005,40006,40006,40007,40007,40008,40008,40009,40009,40010,40010,40011,40011,40789,40789,40012,40012,40013,40013,40014,40014,40015,40015,40016,40016,40017,40017,40018,40018,40019,40019,40020,40020,40021,40021,40022,40022,40023,40023,40024,40024,40025,40025,40026,40026,40027,40027,40028,40028,40029,40029,40609,40609,40030,40030,40031,40031,43675,43675,44226,44226,44310,44310,44225,44225,43674,43674,43673,43673,43672,43672,43671,43671,43670,43670,43669,43669,43668,43668,43667,43667,43666,43666,43665,43665,43664,43664,43663,43663,43662,43662,44224,44224,43661,43661,43660,43660,43659,43659,43658,43658,43657,43657,43656,43656,43655,43655,43654,43654,43653,43653,44309,44309,44278,44278,43652,43652,43651,43651,43650,43650,43649,43649,43648,43648,44223,44223,43647,43647,43646,43646,43645,43645,43644,43644,43643,43643,43642,43642,43641,43641,43640,43640,43639,43639,43638,43638,43637,43637,43636,43636,43635,43635,43634,43634,44222,44222,44384,44384,44354,44354,43633,43633,43632,43632,43631,43631,43630,43630,43629,43629,44221,44221,43628,43628,43627,43627,43626,43626,43625,43625,43624,43624,43623,43623,43622,43622,43621,43621,44399,44399,44220,44220,43620,43620,43619,43619,43618,43618,44398,44398,43617,43617,43616,43616,43615,43615,43614,43614,43613,43613,44219,44219,43612,43612,43403,43192,43193,43193,43458,43458,43194,43194,43195,43195,43196,43196,43197,43197,43198,43198,43199,43199,43200,43200,43201,43201,43202,43202,43203,43203,43385,43385,43421,43421,43459,43459,43445,43445,43204,43204,43205,43205,43206,43206,43207,43207,43208,43208,43209,43209,43210,43210,43386,43386,43422,43422,43211,43211,43212,43212,43213,43213,43214,43214,43215,43215,43446,43446,43523,43523,43216,43216,43217,43217,43218,43218,43480,43480,43387,43387,43219,43219,43220,43220,43221,43221,43222,43222,43223,43223,43224,43224,43225,43225,43226,43226,43227,43227,43388,43388,43228,43228,43229,43229,43230,43230,43389,43389,43423,43423,43231,43231,43232,43232,43233,43233,43234,43234,43235,43235,43447,43447,43460,43460,43448,43448,43390,43390,43236,43236,43237,43237,43238,43238,43239,43239,43240,43240,43391,43391,43471,43471,43497,43497,43481,43481,43449,43449,43392,43392,43241,43241,43242,43242,43243,43243,43244,43244,43245,43245,43246,43246,43247,43247,43248,43248,43249,43249,43393,43393,43490,43490,43424,43424,43250,43250,43251,43251,43252,43252,43253,43253,43254,43254,43255,43255,43256,43256,43257,43257,43258,43258,43259,43259,43260,43260,43261,43261,43425,43425,43426,43426,43264,43264,43265,43265,43266,43266,43396,43396,43267,43267,43268,43268,43269,43269,43270,43270,43271,43271,43272,43272,43273,43273,43274,43274,43275,43275,43276,43276,43277,43277,43278,43278,43279,43279,43280,43280,43281,43281,43282,43282,43283,43283,44885,44885,44884,44884,44883,44883,44911,44911,44882,44882,44881,44881,44880,44880,44879,44879,44878,44878,44877,44877,44876,44876,44875,44875,44927,44927,44934,44934,44926,44926,44918,44918,44902,44902,44874,44874,44873,44873,44872,44872,44871,44871,44870,44870,44901,44901,44943,44943,44944,44944,44869,44869,44868,44868,44867,44867,44866,44866,44865,44865,44864,44864,44863,44863,44862,44862,44861,44861,44860,44860,44859,44859,44858,44858,44857,44857,44856,44856,44855,44855,44854,44854,44853,44853,44852,44852,44851,44851,44900,44900,44917,44917,44899,44899,44850,44850,44849,44849,44848,44848,44847,44847,44846,44846,44845,44845,44844,44844,44843,44843,44842,44842,44841,44841,44898,44898,44840,44840,44839,44839,44838,44838,44837,44837,44836,44836,44925,44925,44916,44916,44835,44835,44834,44834,44833,44833,44897,44897,44910,44910,44896,44896,44832,44832,44831,44831,44830,44830,44829,44829,44828,44828,44827,44827,44909,44909,44924,44924,44923,44923,44895,44895,44826,44826,44825,44825,44824,44824,40090,40090,40091,40091,40092,40092,40093,40093,40094,40094,40095,40095,40096,40096,40793,40793,40097,40097,40098,40098,40099,40099,40100,40100,40101,40101,40102,40102,40103,40103,40104,40104,40105,40105,40106,40106,40107,40107,40108,40108,40109,40109,40110,40110,41077,41077,41183,41183,41186,41186,40111,40111,40112,40112,40113,40113,40114,40114,40115,40115,40116,40116,40117,40117,40118,40118,40119,40119,40120,40120,40121,40121,40122,40122,40123,40123,40723,40723,40862,40862,40911,40911,40124,40124,40125,40125,40126,40126,44823,44823,44822,44822,44908,44908,44894,44894,44821,44821,44820,44820,44819,44819,44932,44932,44818,44818,44817,44817,44816,44816,44893,44893,44815,44815,44814,44814,44813,44813,44812,44812,44811,44811,44907,44907,44892,44892,44810,44810,44809,44809,44808,44808,44931,44931,44936,44936,44930,44930,44906,44906,44807,44807,44806,44806,44805,44805,44891,44891,44804,44804,44803,44803,44802,44802,44801,44801,44800,44800,44799,44799,44798,44798,44797,44797,44796,44796,44795,44795,44794,44794,44793,44793,44792,44792,44915,44915,44922,44922,44905,44905,44791,44791,44790,44790,44789,44789,44788,44788,44787,44787,44914,44914,44933,44933,44941,44941,44935,44935,44786,44786,44785,44785,44784,44784,44783,44783,44782,44782,44890,44890,44889,44889,44781,44781,44780,44780,44779,44779,44778,44778,44777,44777,44776,44776,44775,44775,44904,44904,44921,44921,44929,44929,44928,44928,44888,44888,44774,44774,44773,44773,44772,44772,44771,44771,44770,44770,44769,44769,44768,44768,44903,44903,44920,44920,44919,44919,44913,44913,44887,44887,44767,44767,44766,44766,44765,44765,44886,44886,44764,44764,44763,44763,44762,44762,44912,44912,44761,44761,44760,44760,44759,44759,44758,44758,44757,44757,44756,44756,44755,44755,43192,43450,43395,43395,43263,43263,43262,43262,43394,43394,43503,43503,43482,43482,43450,44946,44945,44945,44954,44954,44953,44953,44952,44952,44951,44951,44950,44950,44949,44949,44948,44948,44947,44947,44946,44956,44955,44955,44961,44961,44960,44960,44959,44959,44958,44958,44957,44957,44956,44963,44962,44962,44965,44965,44964,44964,44963,44967,44966,44966,45127,45127,45126,45126,45125,45125,45124,45124,45123,45123,45167,45167,45122,45122,45121,45121,45120,45120,45119,45119,45118,45118,45117,45117,45116,45116,45115,45115,45114,45114,45113,45113,45112,45112,45111,45111,45110,45110,45109,45109,45108,45108,45107,45107,45106,45106,45156,45156,45162,45162,45147,45147,45105,45105,45104,45104,45103,45103,45102,45102,45101,45101,45100,45100,45099,45099,45098,45098,45097,45097,45096,45096,45095,45095,45094,45094,45093,45093,45092,45092,45155,45155,45091,45091,45090,45090,45089,45089,45146,45146,45184,45184,45145,45145,45088,45088,45087,45087,45086,45086,45175,45175,45144,45144,45085,45085,45084,45084,45083,45083,45082,45082,45081,45081,45080,45080,45079,45079,45078,45078,45077,45077,45076,45076,45143,45143,45142,45142,45075,45075,45074,45074,45073,45073,45072,45072,45071,45071,45070,45070,45141,45141,45154,45154,45161,45161,45153,45153,45069,45069,45068,45068,45067,45067,45140,45140,45066,45066,45065,45065,45064,45064,45063,45063,45062,45062,45061,45061,45060,45060,45059,45059,45058,45058,45057,45057,45139,45139,45056,45056,45055,45055,45054,45054,45053,45053,45052,45052,45051,45051,45050,45050,45160,45160,45166,45166,45174,45174,45172,45172,45049,45049,45048,45048,45047,45047,45046,45046,45045,45045,45044,45044,45043,45043,45042,45042,45041,45041,45040,45040,45039,45039,45138,45138,45038,45038,45037,45037,45036,45036,45035,45035,45034,45034,45033,45033,45032,45032,45152,45152,45031,45031,45030,45030,45029,45029,45028,45028,45027,45027,45026,45026,45025,45025,45024,45024,45023,45023,45022,45022,45137,45137,45021,45021,45020,45020,45019,45019,45018,45018,45017,45017,45016,45016,45015,45015,45014,45014,45013,45013,45012,45012,45136,45136,45011,45011,45010,45010,45009,45009,45008,45008,45007,45007,45006,45006,45005,45005,45004,45004,45003,45003,45002,45002,45001,45001,45000,45000,44999,44999,44998,44998,45135,45135,45159,45159,45170,45170,45151,45151,44997,44997,44996,44996,44995,44995,45134,45134,45158,45158,45165,45165,45164,45164,45157,45157,44994,44994,44993,44993,44992,44992,45133,45133,45150,45150,45163,45163,45149,45149,44991,44991,44990,44990,44989,44989,44988,44988,44987,44987,44986,44986,44985,44985,44984,44984,45132,45132,45131,45131,44983,44983,44982,44982,44981,44981,45130,45130,44980,44980,44979,44979,44978,44978,44977,44977,44976,44976,44975,44975,44974,44974,44973,44973,44972,44972,45129,45129,45128,45128,44971,44971,44970,44970,44969,44969,45148,45148,44968,44968,44967,45187,45186,45186,45197,45197,45196,45196,45195,45195,45194,45194,45193,45193,45192,45192,45191,45191,45190,45190,45189,45189,45188,45188,45187,38695,45198,45198,45494,45494,45493,45493,45492,45492,45491,45491,45528,45528,45537,45537,45490,45490,45489,45489,45488,45488,45487,45487,45486,45486,45485,45485,45484,45484,45483,45483,45482,45482,45481,45481,45480,45480,45527,45527,45526,45526,45514,45514,45479,45479,45478,45478,45477,45477,45476,45476,45475,45475,45474,45474,45473,45473,45472,45472,45513,45513,45471,45471,45470,45470,45469,45469,45468,45468,45467,45467,45466,45466,45465,45465,45464,45464,45463,45463,45462,45462,45461,45461,45536,45536,45512,45512,45460,45460,45459,45459,45458,45458,45457,45457,45456,45456,45455,45455,45454,45454,45453,45453,45452,45452,45451,45451,45450,45450,45449,45449,45448,45448,45447,45447,45446,45446,45445,45445,45511,45511,45444,45444,45443,45443,45442,45442,45441,45441,45440,45440,45439,45439,45438,45438,45437,45437,45436,45436,45435,45435,45434,45434,45433,45433,45432,45432,45431,45431,45430,45430,45429,45429,45546,45546,45525,45525,45510,45510,45428,45428,45427,45427,45426,45426,45425,45425,45424,45424,45423,45423,45422,45422,45421,45421,45420,45420,45419,45419,45418,45418,45417,45417,45416,45416,45415,45415,45414,45414,45413,45413,45412,45412,45411,45411,45410,45410,45409,45409,45408,45408,45407,45407,45406,45406,45405,45405,45535,45535,45404,45404,45403,45403,45402,45402,45524,45524,45401,45401,45400,45400,45399,45399,45398,45398,45397,45397,45396,45396,45395,45395,45394,45394,45523,45523,45393,45393,45392,45392,45391,45391,45390,45390,45389,45389,45388,45388,45387,45387,45386,45386,45385,45385,45384,45384,45383,45383,45382,45382,45381,45381,45380,45380,45379,45379,45378,45378,45377,45377,45376,45376,45375,45375,45374,45374,45373,45373,45372,45372,45371,45371,45370,45370,45369,45369,45509,45509,45522,45522,45368,45368,45367,45367,45366,45366,45365,45365,45364,45364,45521,45521,45508,45508,45363,45363,45362,45362,45361,45361,45360,45360,45359,45359,45358,45358,45357,45357,45520,45520,45356,45356,45355,45355,45354,45354,45353,45353,45352,45352,45351,45351,45350,45350,45349,45349,45348,45348,45347,45347,45346,45346,45345,45345,45344,45344,45343,45343,45342,45342,45341,45341,45340,45340,45339,45339,45338,45338,45337,45337,45336,45336,45335,45335,45334,45334,45333,45333,45332,45332,45331,45331,45330,45330,45329,45329,45328,45328,45327,45327,45326,45326,45325,45325,45324,45324,45323,45323,45322,45322,45321,45321,45320,45320,45319,45319,45318,45318,45317,45317,45316,45316,45545,45545,45549,45549,45507,45507,45315,45315,45314,45314,45313,45313,45506,45506,45312,45312,45311,45311,45310,45310,45309,45309,45060,45060,45061,45061,45062,45062,45063,45063,45064,45064,45065,45065,45066,45066,45140,45140,45067,45067,45068,45068,45069,45069,45153,45153,45161,45161,45154,45154,45141,45141,45070,45070,45071,45071,45072,45072,45073,45073,45074,45074,45075,45075,45142,45142,45143,45143,45076,45076,45077,45077,45078,45078,45079,45079,45080,45080,45081,45081,45082,45082,45083,45083,45084,45084,45085,45085,45144,45144,45175,45175,45086,45086,45087,45087,45088,45088,45145,45145,45184,45184,45146,45146,45089,45089,45090,45090,45091,45091,45155,45155,45092,45092,45093,45093,45094,45094,45095,45095,45096,45096,45097,45097,45098,45098,45099,45099,45100,45100,45101,45101,45102,45102,45103,45103,45104,45104,45105,45105,45147,45147,45162,45162,45156,45156,45106,45106,45107,45107,45108,45108,45109,45109,45110,45110,45111,45111,45112,45112,45113,45113,45114,45114,45115,45115,45116,45116,45117,45117,45118,45118,45119,45119,45120,45120,45121,45121,45122,45122,45167,45167,45123,45123,45124,45124,45125,45125,45126,45126,45127,45127,44966,44966,44967,44967,45308,45308,45307,45307,45306,45306,45305,45305,45304,45304,45303,45303,45302,45302,45301,45301,45544,45544,45548,45548,45300,45300,45299,45299,45298,45298,45297,45297,45296,45296,45295,45295,45294,45294,45293,45293,45292,45292,45519,45519,45543,45543,45534,45534,45505,45505,45291,45291,45290,45290,45289,45289,45288,45288,45287,45287,45286,45286,45285,45285,45504,45504,45284,45284,45283,45283,45282,45282,45281,45281,45280,45280,45279,45279,45278,45278,45277,45277,45503,45503,45502,45502,45276,45276,45275,45275,45274,45274,45501,45501,45273,45273,45272,45272,45271,45271,45270,45270,45269,45269,45268,45268,45267,45267,45266,45266,45542,45542,45541,45541,45265,45265,45264,45264,45263,45263,45262,45262,45261,45261,45260,45260,45259,45259,45258,45258,45257,45257,45533,45533,45567,45567,45518,45518,45256,45256,45255,45255,45254,45254,45500,45500,45253,45253,45252,45252,45251,45251,45250,45250,45249,45249,45248,45248,45247,45247,45532,45532,45246,45246,45245,45245,45244,45244,45243,45243,45242,45242,45241,45241,45240,45240,45540,45540,45551,45551,45499,45499,45239,45239,45238,45238,45237,45237,45563,45563,45554,45554,45531,45531,45236,45236,45235,45235,45234,45234,45233,45233,45232,45232,45517,45517,45516,45516,45231,45231,45230,45230,45229,45229,45228,45228,45227,45227,45530,45530,45547,45547,45226,45226,45225,45225,45224,45224,45569,45569,45562,45562,45558,45558,45539,45539,45515,45515,45223,45223,45222,45222,45221,45221,45498,45498,45220,45220,45219,45219,45218,45218,45217,45217,45216,45216,45215,45215,45214,45214,45213,45213,45529,45529,45538,45538,45497,45497,45212,45212,45211,45211,45210,45210,45209,45209,45208,45208,45207,45207,45206,45206,45205,45205,45204,45204,45203,45203,45496,45496,45202,45202,45201,45201,45200,45200,45495,45495,45199,45199,40402,40402,40403,40403,40404,40404,40405,40405,40406,40406,40407,40407,40868,40868,40897,40897,40408,40408,40409,40409,40410,40410,40411,40411,40412,40412,40413,40413,40414,40414,40415,40415,40416,40416,40417,40417,40418,40418,40419,40419,40420,40420,40644,40644,40743,40743,40421,40421,40422,40422,40423,40423,40424,40424,40425,40425,40744,40744,40426,40426,40427,40427,40428,40428,40429,40429,40430,40430,40805,40805,40836,40836,40837,40837,40431,40431,40432,40432,40433,40433,40434,40434,40435,40435,40436,40436,40437,40437,40438,40438,40439,40439,40440,40440,40441,40441,40442,40442,40869,40869,40443,40443,40444,40444,40445,40445,40645,40645,40745,40745,40838,40838,40746,40746,40646,40646,40446,40446,40447,40447,40448,40448,40449,40449,40450,40450,40451,40451,40452,40452,40453,40453,40870,40870,40747,40747,40454,40454,40455,40455,40456,40456,40457,40457,40458,40458,40806,40806,40940,40940,40459,40459,40460,40460,40461,40461,40462,40462,40463,40463,40464,40464,40465,40465,40466,40466,40647,40647,40839,40839,40748,40748,40467,40467,40468,40468,40469,40469,40470,40470,40471,40471,40648,40648,40472,40472,40473,40473,40474,40474,40475,40475,40476,40476,40477,40477,40478,40478,40479,40479,40480,40480,40481,40481,40482,40482,40483,40483,40749,40749,40484,40484,38694,38694,38695,45577,45576,45576,45581,45581,45580,45580,45579,45579,45578,45578,45577,45583,45582,45582,45587,45587,45586,45586,45585,45585,45584,45584,45583,45589,45588,45588,45593,45593,45592,45592,45591,45591,45590,45590,45589,45595,45594,45594,45599,45599,45598,45598,45597,45597,45596,45596,45595,45601,45600,45600,45606,45606,45605,45605,45604,45604,45603,45603,45602,45602,45601,45608,45607,45607,45614,45614,45613,45613,45612,45612,45611,45611,45610,45610,45609,45609,45608,39905,45615,45615,45903,45903,45902,45902,45901,45901,45900,45900,45934,45934,45899,45899,45898,45898,45897,45897,45896,45896,45895,45895,45894,45894,45893,45893,45892,45892,45919,45919,45946,45946,45891,45891,45890,45890,45889,45889,45888,45888,45887,45887,45933,45933,45945,45945,45932,45932,45886,45886,45885,45885,45884,45884,45918,45918,45883,45883,45882,45882,45881,45881,45880,45880,45879,45879,45878,45878,45877,45877,45876,45876,45875,45875,45874,45874,45873,45873,45872,45872,45871,45871,45870,45870,45869,45869,45868,45868,45867,45867,45866,45866,45865,45865,45864,45864,45863,45863,45862,45862,45861,45861,45860,45860,45859,45859,45858,45858,45857,45857,45856,45856,45855,45855,45854,45854,45853,45853,45852,45852,45851,45851,45850,45850,45849,45849,45931,45931,45848,45848,45847,45847,45846,45846,45845,45845,45844,45844,45843,45843,45842,45842,45841,45841,45955,45955,45950,45950,45840,45840,45839,45839,45838,45838,45837,45837,45836,45836,45930,45930,45944,45944,45929,45929,45835,45835,45834,45834,45833,45833,45917,45917,45949,45949,45916,45916,45832,45832,45831,45831,45830,45830,45829,45829,45828,45828,45827,45827,45826,45826,45825,45825,45824,45824,45823,45823,45822,45822,45821,45821,45943,45943,45820,45820,45819,45819,45818,45818,45817,45817,45816,45816,45815,45815,45814,45814,45813,45813,45812,45812,45811,45811,45810,45810,45809,45809,45808,45808,45807,45807,45806,45806,45805,45805,45804,45804,45928,45928,45803,45803,45802,45802,45801,45801,45800,45800,45799,45799,45927,45927,45798,45798,45797,45797,45796,45796,45795,45795,45794,45794,45793,45793,45792,45792,45791,45791,45790,45790,45789,45789,45926,45926,45948,45948,45942,45942,45788,45788,45787,45787,45786,45786,45785,45785,45784,45784,45783,45783,45782,45782,45781,45781,45780,45780,45779,45779,45778,45778,45777,45777,45776,45776,45775,45775,45774,45774,45941,45941,45773,45773,45772,45772,45771,45771,45770,45770,45769,45769,45768,45768,45767,45767,45915,45915,45766,45766,45765,45765,45764,45764,45763,45763,45762,45762,45761,45761,45760,45760,45759,45759,45758,45758,45757,45757,45756,45756,45755,45755,45754,45754,45753,45753,45752,45752,45751,45751,45750,45750,45749,45749,45748,45748,45940,45940,45747,45747,45746,45746,45745,45745,45744,45744,45743,45743,45742,45742,45741,45741,45914,45914,45925,45925,45740,45740,45739,45739,45738,45738,45913,45913,45954,45954,45939,45939,45737,45737,45736,45736,45735,45735,45912,45912,45734,45734,45733,45733,45732,45732,45731,45731,45730,45730,45729,45729,45728,45728,45727,45727,45726,45726,45725,45725,45724,45724,45723,45723,45722,45722,45721,45721,45720,45720,45719,45719,45718,45718,45717,45717,45716,45716,45715,45715,45714,45714,45713,45713,45924,45924,45923,45923,45712,45712,45711,45711,45710,45710,45709,45709,45708,45708,45707,45707,45911,45911,45706,45706,45705,45705,45704,45704,45703,45703,45702,45702,45910,45910,45909,45909,45701,45701,45700,45700,45699,45699,45922,45922,45938,45938,45908,45908,45698,45698,45697,45697,45696,45696,45695,45695,45694,45694,45693,45693,45692,45692,45691,45691,45690,45690,45689,45689,45907,45907,45688,45688,45687,45687,45686,45686,45685,45685,45684,45684,45683,45683,45682,45682,45681,45681,45680,45680,45679,45679,45937,45937,45947,45947,45678,45678,45677,45677,45676,45676,45675,45675,45674,45674,45673,45673,45672,45672,45671,45671,45670,45670,45669,45669,45668,45668,45667,45667,45666,45666,45665,45665,45971,45971,45664,45664,45663,45663,45662,45662,45661,45661,45660,45660,45659,45659,45658,45658,45657,45657,45656,45656,45655,45655,45654,45654,45653,45653,45652,45652,45959,45959,45906,45906,45651,45651,45650,45650,45649,45649,45921,45921,45648,45648,45647,45647,45646,45646,45645,45645,45644,45644,45643,45643,45642,45642,45641,45641,45640,45640,45639,45639,45638,45638,45637,45637,45636,45636,45635,45635,45634,45634,45633,45633,45632,45632,45631,45631,45630,45630,45629,45629,45628,45628,45627,45627,45905,45905,45626,45626,45625,45625,45624,45624,45623,45623,45622,45622,45904,45904,45936,45936,45953,45953,45958,45958,45935,45935,45920,45920,45621,45621,45620,45620,45619,45619,45618,45618,45617,45617,45616,45616,39579,39579,39580,39580,39581,39581,39582,39582,39583,39583,39584,39584,39585,39585,39586,39586,39587,39587,39588,39588,39589,39589,40697,40697,39590,39590,39591,39591,39592,39592,39593,39593,39594,39594,39595,39595,39596,39596,39597,39597,39598,39598,40880,40880,40774,40774,39599,39599,39600,39600,39601,39601,40576,40576,40698,40698,39602,39602,39603,39603,39604,39604,39605,39605,39606,39606,39607,39607,39608,39608,39609,39609,39610,39610,39611,39611,40577,40577,39612,39612,39613,39613,39614,39614,39615,39615,39616,39616,39617,39617,39618,39618,39619,39619,39620,39620,39621,39621,39622,39622,39623,39623,39624,39624,39625,39625,39626,39626,39627,39627,39628,39628,39629,39629,39630,39630,39631,39631,39632,39632,39633,39633,39634,39634,40578,40578,39635,39635,39636,39636,39637,39637,40579,40579,39638,39638,39639,39639,39640,39640,39641,39641,39642,39642,39643,39643,39644,39644,39645,39645,39646,39646,40580,40580,39647,39647,39648,39648,39649,39649,39650,39650,39651,39651,39652,39652,39653,39653,39654,39654,39655,39655,39656,39656,39657,39657,39658,39658,40581,40581,40775,40775,39659,39659,39660,39660,39661,39661,39662,39662,39663,39663,39664,39664,39665,39665,40582,40582,40853,40853,40776,40776,40699,40699,39666,39666,39667,39667,39668,39668,39669,39669,39670,39670,39671,39671,39672,39672,39673,39673,39674,39674,39675,39675,39676,39676,40777,40777,40928,40928,40955,40955,39677,39677,39678,39678,39679,39679,39680,39680,39681,39681,39682,39682,39683,39683,39684,39684,39685,39685,39686,39686,39687,39687,39688,39688,39689,39689,39690,39690,40700,40700,40854,40854,40583,40583,39691,39691,39692,39692,39693,39693,40584,40584,39694,39694,39695,39695,39696,39696,40701,40701,39697,39697,39698,39698,39699,39699,39700,39700,39701,39701,40702,40702,40703,40703,39702,39702,39703,39703,39704,39704,39705,39705,39706,39706,39707,39707,39708,39708,39709,39709,39710,39710,39711,39711,39712,39712,40585,40585,39713,39713,39714,39714,39715,39715,39716,39716,39717,39717,39718,39718,39719,39719,39720,39720,39721,39721,39722,39722,39723,39723,40957,40957,40881,40881,39724,39724,39725,39725,39726,39726,40586,40586,39727,39727,39728,39728,39729,39729,39730,39730,39731,39731,39732,39732,39733,39733,39734,39734,39735,39735,39736,39736,39737,39737,39738,39738,39739,39739,39740,39740,39741,39741,39742,39742,39743,39743,39744,39744,39745,39745,39746,39746,40587,40587,40704,40704,39747,39747,39748,39748,39749,39749,39750,39750,39751,39751,39752,39752,39753,39753,39754,39754,39755,39755,39756,39756,39757,39757,39758,39758,39759,39759,39760,39760,40588,40588,39761,39761,39762,39762,39763,39763,39764,39764,39765,39765,39766,39766,39767,39767,39768,39768,39769,39769,40589,40589,39770,39770,39771,39771,39772,39772,39773,39773,39774,39774,39775,39775,40590,40590,39776,39776,39777,39777,39778,39778,39779,39779,39780,39780,39781,39781,39782,39782,40705,40705,39783,39783,39784,39784,39785,39785,39786,39786,39787,39787,40778,40778,40706,40706,40591,40591,39788,39788,39789,39789,39790,39790,40779,40779,40780,40780,40707,40707,39791,39791,39792,39792,39793,39793,39794,39794,39795,39795,39796,39796,39797,39797,39798,39798,39799,39799,39800,39800,39801,39801,39802,39802,39803,39803,39804,39804,39805,39805,39806,39806,39807,39807,39808,39808,39809,39809,39810,39810,40592,40592,40781,40781,40593,40593,39811,39811,39812,39812,39813,39813,40708,40708,40856,40856,39814,39814,39815,39815,39816,39816,39817,39817,39818,39818,39819,39819,39820,39820,39821,39821,39822,39822,39823,39823,39824,39824,39825,39825,39826,39826,40709,40709,39827,39827,39828,39828,39829,39829,40594,40594,40595,40595,39830,39830,39831,39831,39832,39832,39833,39833,39834,39834,39835,39835,39836,39836,39837,39837,39838,39838,39839,39839,39840,39840,39841,39841,39842,39842,40909,40909,40857,40857,40782,40782,39843,39843,39844,39844,39845,39845,39846,39846,39847,39847,39848,39848,39849,39849,40596,40596,39850,39850,39851,39851,39852,39852,39853,39853,39854,39854,39855,39855,39856,39856,39857,39857,39858,39858,39859,39859,39860,39860,39861,39861,39862,39862,40597,40597,39863,39863,39864,39864,39865,39865,40598,40598,39866,39866,39867,39867,39868,39868,40599,40599,40710,40710,39869,39869,39870,39870,39871,39871,39872,39872,39873,39873,40884,40884,40783,40783,39874,39874,39875,39875,39876,39876,39877,39877,39878,39878,39879,39879,39880,39880,40824,40824,40600,40600,39881,39881,39882,39882,39883,39883,40711,40711,39884,39884,39885,39885,39886,39886,39887,39887,39888,39888,39889,39889,39890,39890,39891,39891,40784,40784,40601,40601,39892,39892,39893,39893,39894,39894,39895,39895,39896,39896,39897,39897,39898,39898,39899,39899,40602,40602,39900,39900,39901,39901,39902,39902,40712,40712,39903,39903,39904,39904,39905,42913,46236,46236,46235,46235,42757,42757,42758,42758,42759,42759,42760,42760,42761,42761,42762,42762,42860,42860,42884,42884,42877,42877,42868,42868,42763,42763,42764,42764,42765,42765,42766,42766,42767,42767,42768,42768,42769,42769,42770,42770,42771,42771,42772,42772,42773,42773,42774,42774,42775,42775,42776,42776,42777,42777,42778,42778,42779,42779,42780,42780,42781,42781,42782,42782,42783,42783,42784,42784,42874,42874,42869,42869,42785,42785,42786,42786,42787,42787,42788,42788,42789,42789,42878,42878,42879,42879,42790,42790,42791,42791,42792,42792,42793,42793,42794,42794,42795,42795,42796,42796,42797,42797,42798,42798,46234,46234,46233,46233,46232,46232,46231,46231,46230,46230,46229,46229,46228,46228,46227,46227,46226,46226,46225,46225,46224,46224,46223,46223,46222,46222,46221,46221,46220,46220,46219,46219,46218,46218,46217,46217,46216,46216,46215,46215,46214,46214,46213,46213,46212,46212,46211,46211,46210,46210,46209,46209,46208,46208,46207,46207,46206,46206,46205,46205,46204,46204,46203,46203,46202,46202,46201,46201,46200,46200,46239,46239,46199,46199,46198,46198,46197,46197,46196,46196,46195,46195,46194,46194,46193,46193,46238,46238,46192,46192,46191,46191,46190,46190,46243,46243,46245,46245,46242,46242,46189,46189,46188,46188,46187,46187,46186,46186,46185,46185,46241,46241,46248,46248,46184,46184,46183,46183,46182,46182,46237,46237,46181,46181,46180,46180,46179,46179,46240,46240,46178,46178,46177,46177,46176,46176,46175,46175,46174,46174,46173,46173,46172,46172,46171,46171,46170,46170,46169,46169,42926,42926,42927,42927,42935,42935,42928,42928,42929,42929,42930,42930,42931,42931,42932,42932,42933,42933,42912,42912,42913,42937,42938,42938,42939,42939,42940,42940,42941,42941,42942,42942,42936,42936,42937,46250,46249,46249,46257,46257,46256,46256,46255,46255,46254,46254,46253,46253,46252,46252,46251,46251,46250,46259,46258,46258,46263,46263,46262,46262,46261,46261,46260,46260,46259,46265,46264,46264,46272,46272,46271,46271,46270,46270,46269,46269,46268,46268,46267,46267,46266,46266,46265,46274,46273,46273,46280,46280,46279,46279,46278,46278,46277,46277,46276,46276,46275,46275,46274,46282,46281,46281,46411,46411,46432,46432,46431,46431,46410,46410,46409,46409,46408,46408,46407,46407,46406,46406,46405,46405,46404,46404,46403,46403,46402,46402,46401,46401,46440,46440,46443,46443,46445,46445,46439,46439,46400,46400,46399,46399,46398,46398,46397,46397,46396,46396,46430,46430,46434,46434,46422,46422,46395,46395,46394,46394,46393,46393,46392,46392,46391,46391,46390,46390,46429,46429,46436,46436,46421,46421,46389,46389,46388,46388,46387,46387,46386,46386,46385,46385,46384,46384,46420,46420,46383,46383,46382,46382,46381,46381,46380,46380,46379,46379,46378,46378,46377,46377,46376,46376,46375,46375,46374,46374,46373,46373,46372,46372,46371,46371,46370,46370,46369,46369,46419,46419,46428,46428,46368,46368,46367,46367,46366,46366,46365,46365,46364,46364,46363,46363,46362,46362,46361,46361,46360,46360,46359,46359,46427,46427,46358,46358,46357,46357,46356,46356,46355,46355,46354,46354,46353,46353,46352,46352,46426,46426,46435,46435,46441,46441,46351,46351,46350,46350,46349,46349,46348,46348,46347,46347,46346,46346,46345,46345,46344,46344,46343,46343,46342,46342,46341,46341,46340,46340,46339,46339,46418,46418,46338,46338,46337,46337,46336,46336,46335,46335,46334,46334,46333,46333,46332,46332,46331,46331,46330,46330,46425,46425,46417,46417,46329,46329,46328,46328,46327,46327,46416,46416,46326,46326,46325,46325,46324,46324,46323,46323,46322,46322,46321,46321,46320,46320,46319,46319,46318,46318,46415,46415,46433,46433,46438,46438,46414,46414,46317,46317,46316,46316,46315,46315,46314,46314,46313,46313,46312,46312,46311,46311,46310,46310,46309,46309,46308,46308,46307,46307,46306,46306,46305,46305,46304,46304,46413,46413,46303,46303,46302,46302,46301,46301,46300,46300,46299,46299,46298,46298,46297,46297,46437,46437,46424,46424,46412,46412,46296,46296,46295,46295,46294,46294,46423,46423,46293,46293,46292,46292,46291,46291,46290,46290,46289,46289,46288,46288,46287,46287,46286,46286,46285,46285,46284,46284,46283,46283,46282,46486,46480,46480,46479,46479,46478,46478,46477,46477,46476,46476,46475,46475,46474,46474,46473,46473,46472,46472,46471,46471,46470,46470,46484,46484,46483,46483,46469,46469,46468,46468,46467,46467,46466,46466,46465,46465,46464,46464,46463,46463,46482,46482,46462,46462,46461,46461,46460,46460,46459,46459,46458,46458,46457,46457,46456,46456,46455,46455,46454,46454,46453,46453,46481,46481,46485,46485,46452,46452,46451,46451,46450,46450,46449,46449,46448,46448,46447,46447,46486,46610,46609,46609,46608,46608,46607,46607,46606,46606,46605,46605,46604,46604,46603,46603,46602,46602,46601,46601,46600,46600,46599,46599,46598,46598,46597,46597,46596,46596,46595,46595,46594,46594,46641,46641,46648,46648,46647,46647,46593,46593,46592,46592,46591,46591,46590,46590,46589,46589,46588,46588,46587,46587,46634,46634,46657,46657,46661,46661,46663,46663,46665,46665,46586,46586,46585,46585,46584,46584,46654,46654,46623,46623,46583,46583,46582,46582,46581,46581,46580,46580,46579,46579,46578,46578,46577,46577,46576,46576,46575,46575,46574,46574,46573,46573,46572,46572,46571,46571,46622,46622,46640,46640,46639,46639,46633,46633,46570,46570,46569,46569,46568,46568,46567,46567,46566,46566,46646,46646,46638,46638,46621,46621,46565,46565,46564,46564,46563,46563,46562,46562,46561,46561,46560,46560,46632,46632,46559,46559,46558,46558,46557,46557,46556,46556,46555,46555,46554,46554,46553,46553,46552,46552,46656,46656,46620,46620,46551,46551,46550,46550,46549,46549,46548,46548,46546,46546,46545,46545,46544,46544,46651,46651,46617,46617,46543,46543,46542,46542,46541,46541,46540,46540,46539,46539,46538,46538,46537,46537,46536,46536,46535,46535,46534,46534,46636,46636,46533,46533,46532,46532,46531,46531,46296,46296,46412,46412,46424,46424,46437,46437,46297,46297,46298,46298,46299,46299,46300,46300,46301,46301,46302,46302,46303,46303,46413,46413,46304,46304,46305,46305,46306,46306,46307,46307,46308,46308,46309,46309,46310,46310,46311,46311,46312,46312,46313,46313,46314,46314,46315,46315,46316,46316,46317,46317,46414,46414,46438,46438,46433,46433,46415,46415,46318,46318,46319,46319,46320,46320,46321,46321,46322,46322,46530,46530,46529,46529,46630,46630,46616,46616,46528,46528,46527,46527,46526,46526,46525,46525,46524,46524,46523,46523,46615,46615,46522,46522,46521,46521,46520,46520,46653,46653,46659,46659,46660,46660,46658,46658,46635,46635,46519,46519,46518,46518,46517,46517,46614,46614,46629,46629,46516,46516,46515,46515,46514,46514,46513,46513,46512,46512,46511,46511,46510,46510,46509,46509,46508,46508,46628,46628,46643,46643,46650,46650,46655,46655,46652,46652,46627,46627,46507,46507,46506,46506,46505,46505,46504,46504,46503,46503,46502,46502,46501,46501,46613,46613,46626,46626,46642,46642,46649,46649,46500,46500,46499,46499,46498,46498,46625,46625,46497,46497,46496,46496,46495,46495,46612,46612,46494,46494,46493,46493,46492,46492,46491,46491,46490,46490,46624,46624,46489,46489,46488,46488,46487,46487,46611,46611,46610,46631,46645,46645,46644,46644,46637,46637,46618,46618,46547,46547,46619,46619,46631,46667,46666,46666,46673,46673,46672,46672,46671,46671,46670,46670,46669,46669,46668,46668,46667,46675,46674,46674,46680,46680,46679,46679,46678,46678,46677,46677,46676,46676,46675,46391,46392,46392,46393,46393,46394,46394,46395,46395,46422,46422,46434,46434,46430,46430,46396,46396,46397,46397,46398,46398,46399,46399,46400,46400,46439,46439,46445,46445,46443,46443,46440,46440,46401,46401,46402,46402,46403,46403,46404,46404,46405,46405,46406,46406,46407,46407,46408,46408,46409,46409,46410,46410,46431,46431,46432,46432,46411,46411,46281,46281,46282,46282,47016,47016,46995,46995,46974,46974,46973,46973,46972,46972,46971,46971,46970,46970,46969,46969,46968,46968,46967,46967,46966,46966,46965,46965,46964,46964,46963,46963,46962,46962,46994,46994,47062,47062,47015,47015,46961,46961,46960,46960,46959,46959,46958,46958,46957,46957,46956,46956,46479,46479,46480,46480,46486,46486,46955,46955,46954,46954,46953,46953,47033,47033,46952,46952,46951,46951,46950,46950,46949,46949,46948,46948,47014,47014,47013,47013,46993,46993,46947,46947,46946,46946,46945,46945,47012,47012,46944,46944,46943,46943,46942,46942,46941,46941,46940,46940,46992,46992,46939,46939,46938,46938,46937,46937,46936,46936,46935,46935,46934,46934,47032,47032,47011,47011,46933,46933,46932,46932,46931,46931,46930,46930,46929,46929,46928,46928,46927,46927,46926,46926,46925,46925,47010,47010,47041,47041,46924,46924,46923,46923,46922,46922,46921,46921,46920,46920,46919,46919,47009,47009,46918,46918,46917,46917,46916,46916,46991,46991,46915,46915,46914,46914,46913,46913,46912,46912,46911,46911,46910,46910,46909,46909,46908,46908,47008,47008,47031,47031,46907,46907,46906,46906,46905,46905,47007,47007,46904,46904,46903,46903,46902,46902,46901,46901,46900,46900,47030,47030,47047,47047,47061,47061,47046,47046,46899,46899,46898,46898,46897,46897,46896,46896,46895,46895,46894,46894,46893,46893,46892,46892,46891,46891,46990,46990,46890,46890,46889,46889,46888,46888,46887,46887,46886,46886,46885,46885,42218,42218,42219,42219,42220,42220,42221,42221,42222,42222,42223,42223,42265,42265,42278,42278,42279,42279,42276,42276,42273,42273,42266,42266,42224,42224,42225,42225,42226,42226,42227,42227,42228,42228,42267,42267,42281,42281,42285,42285,42282,42282,42229,42229,42230,42230,42231,42231,42232,42232,42233,42233,42234,42234,42235,42235,42236,42236,42237,42237,42238,42238,42239,42239,42240,42240,42241,42241,42268,42268,42242,42242,42243,42243,42244,42244,42245,42245,42246,42246,42247,42247,42248,42248,42249,42249,42250,42250,42251,42251,42252,42252,42253,42253,42269,42269,42254,42254,42255,42255,42256,42256,42257,42257,42258,42258,42259,42259,42260,42260,42270,42270,42261,42261,42165,42165,42166,42166,46884,46884,47006,47006,46883,46883,46882,46882,46881,46881,46989,46989,47045,47045,47060,47060,47068,47068,47051,47051,46880,46880,46879,46879,46878,46878,46877,46877,46876,46876,46875,46875,46874,46874,46873,46873,46872,46872,46871,46871,47029,47029,47028,47028,46988,46988,46870,46870,46869,46869,46868,46868,46867,46867,46866,46866,46865,46865,46864,46864,46863,46863,46862,46862,46861,46861,46860,46860,46859,46859,46858,46858,46857,46857,46856,46856,47050,47050,47059,47059,47057,47057,46855,46855,46854,46854,46853,46853,46852,46852,46851,46851,46850,46850,46849,46849,46987,46987,46848,46848,46847,46847,46846,46846,46845,46845,46844,46844,46843,46843,46842,46842,46841,46841,46840,46840,46986,46986,46839,46839,46838,46838,46837,46837,46836,46836,46835,46835,47005,47005,46834,46834,46833,46833,46832,46832,46831,46831,46830,46830,46985,46985,46829,46829,46828,46828,46827,46827,46826,46826,46825,46825,46824,46824,46823,46823,46822,46822,46821,46821,46820,46820,47043,47043,46819,46819,46818,46818,46817,46817,46816,46816,46815,46815,46814,46814,46813,46813,46812,46812,46984,46984,46811,46811,46810,46810,46809,46809,46808,46808,46807,46807,46806,46806,46983,46983,46805,46805,46804,46804,46803,46803,47027,47027,46802,46802,46801,46801,46800,46800,46799,46799,46798,46798,47004,47004,46982,46982,46797,46797,46796,46796,46795,46795,46794,46794,46793,46793,46792,46792,46791,46791,46981,46981,46790,46790,46789,46789,46788,46788,46787,46787,46786,46786,46785,46785,46784,46784,47026,47026,46980,46980,46783,46783,46782,46782,46781,46781,47003,47003,47025,47025,47040,47040,46780,46780,46779,46779,46778,46778,46777,46777,46776,46776,46775,46775,46774,46774,46773,46773,47024,47024,47023,47023,46772,46772,46771,46771,46770,46770,46769,46769,46768,46768,47002,47002,46979,46979,46767,46767,46766,46766,46765,46765,47001,47001,47074,47074,47022,47022,47000,47000,46764,46764,46763,46763,46762,46762,46761,46761,46760,46760,46759,46759,46758,46758,46757,46757,46756,46756,46755,46755,46754,46754,46753,46753,46752,46752,46751,46751,46750,46750,46999,46999,47039,47039,47038,47038,46749,46749,46748,46748,46747,46747,46746,46746,46745,46745,46744,46744,46743,46743,46978,46978,46742,46742,46741,46741,46740,46740,46739,46739,46738,46738,47021,47021,46977,46977,46737,46737,46736,46736,46735,46735,46734,46734,46733,46733,46732,46732,46731,46731,46976,46976,46730,46730,46729,46729,46728,46728,46727,46727,46726,46726,46725,46725,46724,46724,46723,46723,46722,46722,46721,46721,46720,46720,46719,46719,46718,46718,47036,47036,46717,46717,46716,46716,46715,46715,46714,46714,46713,46713,46712,46712,46711,46711,46710,46710,46709,46709,46708,46708,46707,46707,46706,46706,46705,46705,46704,46704,46998,46998,47019,47019,47035,47035,46703,46703,46702,46702,46701,46701,46700,46700,46699,46699,46997,46997,47018,47018,46996,46996,46698,46698,46697,46697,46696,46696,46695,46695,46694,46694,46693,46693,46692,46692,46691,46691,47034,47034,47017,47017,46690,46690,46689,46689,46688,46688,46687,46687,46686,46686,46685,46685,47052,47052,46684,46684,46683,46683,46682,46682,46975,46975,46681,46681,46391,47129,47128,47128,47197,47197,47209,47209,47204,47204,47196,47196,47195,47195,47194,47194,47193,47193,47192,47192,47191,47191,47190,47190,47203,47203,47189,47189,47188,47188,47187,47187,47186,47186,47185,47185,47184,47184,47183,47183,47182,47182,47208,47208,47181,47181,47180,47180,47179,47179,47178,47178,47177,47177,47176,47176,47175,47175,47174,47174,47173,47173,47172,47172,47207,47207,47171,47171,47170,47170,47169,47169,47168,47168,47167,47167,47166,47166,47165,47165,47164,47164,47163,47163,47162,47162,47161,47161,47210,47210,47160,47160,47159,47159,47158,47158,47157,47157,47156,47156,47155,47155,47154,47154,47211,47211,47212,47212,47202,47202,47153,47153,47152,47152,47151,47151,47206,47206,47150,47150,47149,47149,47148,47148,47147,47147,47146,47146,47145,47145,47144,47144,47143,47143,47142,47142,47141,47141,47201,47201,47200,47200,47140,47140,47139,47139,47138,47138,47137,47137,47136,47136,47135,47135,47199,47199,47205,47205,47198,47198,47134,47134,47133,47133,47132,47132,47131,47131,47130,47130,47129,40402,45199,45199,45495,45495,45200,45200,45201,45201,45202,45202,45496,45496,45203,45203,45204,45204,45205,45205,45206,45206,45207,45207,45208,45208,45209,45209,45210,45210,45211,45211,45212,45212,45497,45497,45538,45538,45529,45529,45213,45213,45214,45214,45215,45215,45216,45216,45217,45217,45218,45218,45219,45219,45220,45220,45498,45498,45221,45221,45222,45222,45223,45223,45515,45515,45539,45539,45558,45558,45562,45562,45569,45569,45224,45224,45225,45225,45226,45226,45547,45547,45530,45530,45227,45227,45228,45228,45229,45229,45230,45230,45231,45231,45516,45516,45517,45517,45232,45232,45233,45233,45234,45234,45235,45235,45236,45236,45531,45531,45554,45554,45563,45563,45237,45237,45238,45238,45239,45239,45499,45499,45551,45551,45540,45540,45240,45240,45241,45241,45242,45242,45243,45243,45244,45244,45245,45245,45246,45246,45532,45532,45247,45247,45248,45248,45249,45249,45250,45250,45251,45251,45252,45252,45253,45253,45500,45500,45254,45254,45255,45255,45256,45256,45518,45518,45567,45567,45533,45533,45257,45257,45258,45258,45259,45259,45260,45260,45261,45261,45262,45262,45263,45263,45264,45264,45265,45265,45541,45541,45542,45542,45266,45266,45267,45267,45268,45268,45269,45269,45270,45270,45271,45271,45272,45272,45273,45273,45501,45501,45274,45274,45275,45275,45276,45276,45502,45502,45503,45503,45277,45277,45278,45278,45279,45279,45280,45280,45281,45281,45282,45282,45283,45283,45284,45284,45504,45504,45285,45285,45286,45286,45287,45287,45288,45288,45289,45289,45290,45290,45291,45291,45505,45505,45534,45534,45543,45543,45519,45519,45292,45292,45293,45293,45294,45294,45295,45295,45296,45296,45297,45297,45298,45298,45299,45299,45300,45300,45548,45548,45544,45544,45301,45301,45302,45302,45303,45303,45304,45304,45305,45305,45306,45306,45307,45307,45308,45308,44967,44967,44968,44968,45148,45148,44969,44969,44970,44970,44971,44971,45128,45128,45129,45129,44972,44972,44973,44973,44974,44974,44975,44975,44976,44976,44977,44977,44978,44978,44979,44979,44980,44980,45130,45130,44981,44981,44982,44982,44983,44983,45131,45131,45132,45132,44984,44984,44985,44985,44986,44986,44987,44987,44988,44988,44989,44989,44990,44990,44991,44991,45149,45149,45163,45163,45150,45150,45133,45133,44992,44992,44993,44993,44994,44994,45157,45157,45164,45164,45165,45165,45158,45158,45134,45134,44995,44995,44996,44996,47311,47311,47326,47326,47351,47351,47356,47356,47325,47325,47310,47310,47309,47309,47308,47308,47350,47350,47307,47307,47306,47306,47305,47305,47304,47304,47303,47303,47343,47343,47355,47355,47365,47365,47349,47349,47342,47342,47302,47302,47301,47301,47300,47300,47299,47299,47298,47298,47341,47341,47297,47297,47296,47296,47295,47295,47324,47324,47294,47294,47293,47293,47292,47292,47291,47291,47290,47290,47348,47348,47340,47340,47289,47289,47288,47288,47287,47287,47286,47286,47285,47285,47323,47323,47284,47284,47283,47283,47282,47282,47339,47339,47364,47364,47361,47361,47347,47347,47322,47322,47281,47281,47280,47280,47279,47279,47338,47338,47321,47321,47278,47278,47277,47277,47276,47276,47337,47337,47346,47346,47336,47336,47275,47275,47274,47274,47273,47273,47272,47272,47271,47271,47320,47320,47270,47270,47269,47269,47268,47268,47335,47335,47334,47334,47319,47319,47267,47267,47266,47266,47265,47265,47333,47333,47264,47264,47263,47263,47262,47262,47261,47261,47260,47260,47318,47318,47259,47259,47258,47258,47257,47257,47256,47256,47255,47255,47254,47254,47253,47253,47332,47332,47354,47354,47317,47317,47252,47252,47251,47251,47250,47250,47249,47249,47248,47248,47247,47247,47246,47246,47245,47245,47316,47316,47244,47244,47243,47243,47242,47242,47331,47331,47363,47363,47359,47359,47358,47358,47330,47330,47241,47241,47240,47240,47239,47239,47238,47238,47237,47237,47236,47236,47235,47235,47315,47315,47329,47329,47353,47353,47314,47314,47234,47234,47233,47233,47232,47232,47357,47357,47345,47345,47231,47231,47230,47230,47229,47229,47228,47228,47227,47227,47226,47226,47225,47225,47224,47224,47223,47223,47222,47222,47221,47221,47328,47328,47344,47344,47352,47352,47220,47220,47219,47219,47218,47218,47217,47217,47216,47216,47327,47327,47215,47215,47214,47214,47213,47213,47313,47313,47312,47312,40365,40365,40366,40366,40367,40367,40368,40368,40369,40369,40370,40370,40371,40371,40372,40372,40373,40373,40804,40804,40374,40374,40375,40375,40376,40376,40377,40377,40378,40378,40379,40379,40380,40380,40381,40381,40382,40382,40383,40383,40384,40384,40385,40385,40386,40386,40387,40387,40388,40388,40389,40389,40390,40390,40391,40391,40641,40641,40392,40392,40393,40393,40394,40394,40395,40395,40396,40396,40397,40397,40642,40642,40741,40741,40835,40835,40742,40742,40398,40398,40399,40399,40400,40400,40643,40643,40401,40401,40402,43283,43284,43284,43483,43483,43461,43461,43397,43397,43285,43285,43286,43286,43287,43287,43427,43427,43288,43288,43289,43289,43290,43290,43291,43291,43292,43292,43293,43293,43294,43294,43398,43398,43428,43428,43451,43451,43452,43452,43295,43295,43296,43296,43297,43297,43298,43298,43299,43299,43300,43300,43301,43301,43472,43472,43484,43484,43302,43302,43303,43303,43304,43304,43305,43305,43306,43306,43307,43307,43308,43308,43309,43309,43310,43310,43311,43311,43429,43429,43312,43312,43313,43313,43314,43314,43315,43315,43316,43316,43317,43317,43318,43318,43319,43319,43430,43430,43431,43431,43320,43320,43321,43321,43322,43322,43323,43323,43324,43324,43325,43325,43326,43326,43327,43327,43328,43328,43329,43329,43330,43330,43331,43331,43332,43332,43333,43333,43334,43334,43335,43335,43336,43336,43337,43337,43462,43462,43432,43432,43399,43399,43338,43338,43339,43339,43340,43340,43341,43341,43342,43342,43343,43343,43344,43344,43345,43345,43346,43346,43400,43400,43347,43347,43348,43348,43349,43349,43350,43350,43351,43351,43352,43352,43353,43353,43401,43401,43491,43491,43354,43354,43355,43355,43356,43356,43402,43402,43357,43357,43358,43358,43359,43359,43360,43360,43361,43361,43362,43362,43363,43363,43364,43364,43365,43365,43366,43366,43367,43367,43368,43368,43403,43403,43612,43612,44219,44219,43613,43613,43614,43614,43615,43615,43616,43616,43617,43617,44398,44398,43618,43618,43619,43619,43620,43620,44220,44220,44399,44399,43621,43621,43622,43622,43623,43623,43624,43624,43625,43625,43626,43626,43627,43627,43628,43628,44221,44221,43629,43629,43630,43630,43631,43631,43632,43632,43633,43633,44354,44354,44384,44384,44222,44222,43634,43634,43635,43635,43636,43636,43637,43637,43638,43638,43639,43639,43640,43640,43641,43641,43642,43642,43643,43643,43644,43644,43645,43645,43646,43646,43647,43647,44223,44223,43648,43648,43649,43649,43650,43650,43651,43651,43652,43652,44278,44278,44309,44309,43653,43653,43654,43654,43655,43655,43656,43656,43657,43657,43658,43658,43659,43659,43660,43660,43661,43661,44224,44224,43662,43662,43663,43663,43664,43664,43665,43665,43666,43666,43667,43667,43668,43668,43669,43669,43670,43670,43671,43671,43672,43672,43673,43673,43674,43674,44225,44225,44310,44310,44226,44226,43675,43675,40031,40031,40032,40032,40719,40719,41128,41128,40033,40033,40034,40034,40035,40035,40610,40610,40611,40611,40036,40036,40037,40037,40038,40038,40039,40039,40040,40040,40041,40041,40042,40042,40043,40043,40044,40044,40720,40720,40045,40045,40046,40046,40047,40047,40048,40048,40049,40049,40050,40050,40051,40051,40052,40052,40053,40053,40054,40054,40055,40055,40056,40056,40612,40612,40057,40057,40058,40058,40059,40059,40886,40886,40060,40060,40061,40061,40062,40062,40063,40063,40064,40064,40065,40065,40613,40613,40790,40790,40066,40066,40067,40067,40068,40068,40069,40069,40070,40070,40721,40721,40722,40722,40071,40071,40072,40072,40073,40073,40074,40074,40075,40075,40791,40791,40076,40076,40077,40077,40078,40078,40079,40079,40080,40080,40081,40081,40082,40082,40083,40083,40084,40084,40085,40085,40614,40614,40086,40086,40087,40087,40088,40088,40861,40861,40887,40887,40826,40826,40792,40792,40615,40615,40089,40089,40090,40090,44824,44824,44825,44825,44826,44826,44895,44895,44923,44923,44924,44924,44909,44909,44827,44827,44828,44828,44829,44829,44830,44830,44831,44831,44832,44832,44896,44896,44910,44910,44897,44897,44833,44833,44834,44834,44835,44835,44916,44916,44925,44925,44836,44836,44837,44837,44838,44838,44839,44839,44840,44840,44898,44898,44841,44841,44842,44842,44843,44843,44844,44844,44845,44845,44846,44846,44847,44847,44848,44848,44849,44849,44850,44850,44899,44899,44917,44917,44900,44900,44851,44851,44852,44852,44853,44853,44854,44854,44855,44855,44856,44856,44857,44857,44858,44858,44859,44859,44860,44860,44861,44861,44862,44862,44863,44863,44864,44864,44865,44865,44866,44866,44867,44867,44868,44868,44869,44869,44944,44944,44943,44943,44901,44901,44870,44870,44871,44871,44872,44872,44873,44873,44874,44874,44902,44902,44918,44918,44926,44926,44934,44934,44927,44927,44875,44875,44876,44876,44877,44877,44878,44878,44879,44879,44880,44880,44881,44881,44882,44882,44911,44911,44883,44883,44884,44884,44885,44885,43283,43563,43564,43564,43565,43565,43566,43566,43567,43567,43568,43568,43569,43569,43570,43570,43571,43571,43572,43572,43573,43573,43574,43574,43578,43578,43579,43579,43575,43575,43576,43576,43577,43577,43562,43562,43563,43581,43582,43582,43583,43583,43584,43584,43585,43585,43586,43586,43587,43587,43580,43580,43581,44946,44947,44947,44948,44948,44949,44949,44950,44950,44951,44951,44952,44952,44953,44953,44954,44954,44945,44945,44946,46479,46956,46956,46957,46957,46958,46958,46959,46959,46960,46960,46961,46961,47015,47015,47062,47062,46994,46994,46962,46962,46963,46963,46964,46964,46965,46965,46966,46966,46967,46967,46968,46968,46969,46969,46970,46970,46971,46971,46972,46972,46973,46973,46974,46974,46995,46995,47016,47016,46282,46282,46283,46283,46284,46284,46285,46285,46286,46286,46287,46287,46288,46288,46289,46289,46290,46290,46291,46291,46292,46292,46293,46293,46423,46423,46294,46294,46295,46295,46296,46296,46531,46531,46532,46532,46533,46533,46636,46636,46534,46534,46535,46535,46536,46536,46537,46537,46538,46538,46539,46539,46540,46540,46541,46541,46542,46542,46543,46543,46617,46617,46651,46651,46544,46544,46545,46545,46546,46546,46548,46548,46549,46549,46550,46550,46551,46551,46620,46620,46656,46656,46552,46552,46553,46553,46554,46554,46555,46555,46556,46556,46557,46557,46558,46558,46559,46559,46632,46632,46560,46560,46561,46561,46562,46562,46563,46563,46564,46564,46565,46565,46621,46621,46638,46638,46646,46646,46566,46566,46567,46567,46568,46568,46569,46569,46570,46570,46633,46633,46639,46639,46640,46640,46622,46622,46571,46571,46572,46572,46573,46573,46574,46574,46575,46575,46576,46576,46577,46577,46578,46578,47398,47398,47397,47397,46457,46457,46458,46458,46459,46459,46460,46460,46461,46461,46462,46462,46482,46482,46463,46463,46464,46464,46465,46465,46466,46466,46467,46467,46468,46468,46469,46469,46483,46483,46484,46484,46470,46470,46471,46471,46472,46472,46473,46473,46474,46474,46475,46475,46476,46476,46477,46477,46478,46478,46479,46667,46668,46668,46669,46669,46670,46670,46671,46671,46672,46672,46673,46673,46666,46666,46667,46631,46619,46619,46547,46547,46618,46618,46637,46637,46644,46644,46645,46645,46631,42218,46885,46885,46886,46886,46887,46887,46888,46888,46889,46889,46890,46890,46990,46990,46891,46891,46892,46892,46893,46893,46894,46894,46895,46895,46896,46896,46897,46897,46898,46898,46899,46899,47046,47046,47061,47061,47047,47047,47030,47030,46900,46900,46901,46901,46902,46902,46903,46903,46904,46904,47007,47007,46905,46905,46906,46906,46907,46907,47031,47031,47008,47008,46908,46908,46909,46909,47524,47524,47523,47523,47522,47522,47521,47521,47520,47520,47519,47519,47518,47518,47517,47517,47534,47534,47554,47554,47553,47553,47547,47547,47516,47516,47515,47515,47514,47514,47513,47513,47512,47512,47511,47511,47510,47510,47509,47509,47508,47508,47507,47507,47506,47506,47505,47505,47504,47504,47503,47503,47502,47502,47501,47501,47500,47500,47552,47552,47559,47559,47546,47546,47499,47499,47498,47498,47497,47497,47496,47496,47495,47495,47494,47494,47493,47493,47492,47492,47545,47545,47491,47491,47490,47490,47489,47489,47488,47488,47487,47487,47486,47486,47485,47485,47484,47484,47483,47483,47482,47482,47481,47481,47480,47480,47533,47533,47532,47532,47479,47479,47478,47478,47477,47477,47476,47476,47475,47475,47474,47474,47473,47473,47472,47472,47471,47471,47470,47470,47469,47469,47468,47468,47467,47467,47466,47466,47544,47544,47558,47558,47531,47531,47465,47465,47464,47464,47463,47463,47462,47462,47461,47461,47530,47530,47460,47460,47459,47459,47458,47458,47457,47457,47456,47456,47455,47455,47454,47454,47453,47453,47452,47452,47529,47529,47551,47551,47543,47543,47451,47451,47450,47450,47449,47449,47448,47448,47447,47447,47446,47446,47445,47445,47444,47444,47542,47542,47443,47443,47442,47442,47441,47441,47440,47440,47439,47439,47541,47541,47540,47540,47438,47438,47437,47437,47436,47436,47435,47435,47434,47434,47528,47528,47433,47433,47432,47432,47431,47431,47539,47539,47565,47565,47572,47572,47586,47586,47593,47593,47607,47607,47603,47603,47550,47550,47430,47430,47429,47429,47428,47428,47427,47427,47426,47426,47425,47425,47424,47424,47423,47423,47422,47422,47421,47421,47420,47420,47419,47419,47418,47418,47417,47417,47416,47416,47415,47415,47414,47414,47413,47413,47412,47412,47411,47411,47537,47537,47564,47564,47536,47536,47527,47527,47410,47410,47409,47409,47408,47408,47556,47556,47548,47548,47535,47535,47407,47407,47406,47406,47405,47405,47526,47526,47525,47525,47404,47404,47403,47403,47402,47402,47401,47401,47400,47400,47399,47399,42192,42192,42193,42193,42194,42194,42195,42195,42196,42196,42197,42197,42262,42262,42198,42198,42199,42199,42200,42200,42201,42201,42202,42202,42203,42203,42204,42204,42272,42272,42263,42263,42205,42205,42206,42206,42207,42207,42208,42208,42209,42209,42264,42264,42291,42291,42296,42296,42284,42284,42275,42275,42210,42210,42211,42211,42212,42212,42213,42213,42214,42214,42215,42215,42216,42216,42217,42217,42218,47616,47615,47615,47646,47646,47645,47645,47644,47644,47643,47643,47642,47642,47641,47641,47640,47640,47639,47639,47638,47638,47637,47637,47636,47636,47635,47635,47647,47647,47634,47634,47633,47633,47632,47632,47631,47631,47630,47630,47629,47629,47628,47628,47627,47627,47626,47626,47625,47625,47624,47624,47623,47623,47622,47622,47621,47621,47620,47620,47619,47619,47618,47618,47617,47617,47616,47649,47648,47648,47660,47660,47659,47659,47658,47658,47657,47657,47656,47656,47655,47655,47654,47654,47653,47653,47652,47652,47651,47651,47650,47650,47649,47685,47684,47684,47681,47681,47680,47680,47679,47679,47678,47678,47677,47677,47676,47676,47675,47675,47674,47674,47673,47673,47683,47683,47672,47672,47671,47671,47670,47670,47669,47669,47668,47668,47682,47682,47667,47667,47666,47666,47665,47665,47664,47664,47663,47663,47662,47662,47661,47661,47685,42836,47686,47686,47893,47893,47914,47914,47927,47927,47892,47892,47891,47891,47890,47890,47889,47889,47888,47888,47887,47887,47886,47886,47885,47885,47884,47884,47883,47883,47882,47882,47913,47913,47881,47881,47880,47880,47879,47879,47926,47926,47912,47912,47878,47878,47877,47877,47876,47876,47875,47875,47874,47874,47873,47873,47872,47872,47925,47925,47924,47924,47911,47911,47871,47871,47870,47870,47869,47869,47868,47868,47867,47867,47866,47866,47910,47910,47977,47977,47995,47995,47865,47865,47864,47864,47863,47863,47862,47862,47861,47861,47860,47860,47859,47859,47858,47858,47857,47857,47856,47856,47855,47855,47854,47854,47909,47909,47937,47937,47962,47962,48065,48065,48134,48134,48174,48174,47923,47923,47908,47908,47853,47853,47852,47852,47851,47851,48011,48011,47992,47992,47961,47961,47850,47850,47849,47849,47848,47848,47847,47847,47846,47846,47845,47845,47844,47844,47843,47843,47842,47842,47841,47841,47840,47840,47839,47839,47907,47907,47838,47838,47837,47837,47836,47836,47906,47906,47835,47835,47834,47834,47833,47833,47832,47832,47831,47831,47830,47830,47829,47829,47828,47828,47827,47827,47826,47826,47825,47825,47824,47824,47823,47823,47905,47905,47822,47822,47821,47821,47820,47820,47819,47819,47818,47818,47817,47817,47816,47816,47815,47815,47814,47814,47813,47813,47812,47812,47811,47811,47810,47810,47809,47809,47904,47904,47903,47903,47808,47808,47807,47807,47806,47806,47805,47805,47804,47804,47902,47902,47803,47803,47802,47802,47801,47801,47800,47800,47799,47799,47798,47798,47797,47797,47796,47796,47795,47795,47794,47794,47793,47793,47792,47792,48008,48008,47791,47791,47790,47790,47789,47789,47788,47788,47787,47787,47786,47786,47785,47785,47784,47784,47783,47783,47782,47782,47781,47781,47901,47901,47922,47922,47946,47946,47936,47936,47921,47921,47900,47900,47780,47780,47779,47779,47778,47778,47777,47777,47776,47776,47775,47775,47774,47774,47773,47773,47772,47772,47771,47771,47770,47770,47958,47958,47769,47769,47768,47768,47767,47767,47766,47766,47765,47765,47764,47764,47763,47763,47762,47762,47761,47761,47760,47760,47759,47759,47758,47758,47757,47757,47756,47756,47935,47935,47945,47945,47934,47934,47755,47755,47754,47754,47753,47753,47752,47752,47751,47751,47920,47920,47899,47899,47750,47750,47749,47749,47748,47748,47747,47747,47746,47746,47745,47745,47744,47744,47743,47743,47986,47986,47898,47898,47742,47742,47741,47741,47740,47740,47739,47739,47738,47738,47737,47737,47736,47736,47933,47933,47897,47897,47735,47735,47406,47406,47407,47407,47535,47535,47548,47548,47556,47556,47408,47408,47409,47409,47410,47410,47527,47527,47536,47536,47564,47564,47537,47537,47411,47411,47412,47412,47413,47413,47414,47414,47415,47415,47416,47416,47417,47417,47418,47418,47419,47419,47420,47420,47421,47421,47422,47422,47423,47423,47424,47424,47425,47425,47734,47734,47733,47733,47732,47732,47731,47731,47730,47730,47729,47729,47728,47728,47919,47919,47941,47941,47727,47727,47726,47726,47725,47725,47724,47724,47723,47723,47722,47722,47721,47721,47720,47720,47719,47719,47718,47718,47896,47896,47918,47918,47895,47895,47717,47717,47716,47716,47715,47715,47930,47930,47714,47714,47713,47713,47712,47712,47711,47711,47710,47710,47709,47709,47708,47708,47707,47707,47917,47917,47929,47929,47953,47953,47940,47940,47706,47706,47705,47705,47704,47704,47703,47703,47702,47702,47916,47916,47928,47928,47982,47982,47701,47701,47700,47700,47699,47699,47894,47894,47698,47698,47697,47697,47696,47696,47695,47695,47694,47694,47641,47641,47642,47642,47643,47643,47644,47644,47645,47645,47646,47646,47615,47615,47616,47616,47693,47693,47692,47692,47691,47691,47690,47690,47915,47915,47689,47689,47688,47688,47687,47687,46195,46195,46196,46196,46197,46197,46198,46198,46199,46199,46239,46239,46200,46200,46201,46201,46202,46202,46203,46203,46204,46204,46205,46205,46206,46206,46207,46207,46208,46208,46209,46209,46210,46210,46211,46211,46212,46212,46213,46213,46214,46214,46215,46215,46216,46216,46217,46217,46218,46218,46219,46219,46220,46220,46221,46221,46222,46222,46223,46223,46224,46224,46225,46225,46226,46226,46227,46227,46228,46228,46229,46229,46230,46230,46231,46231,46232,46232,46233,46233,46234,46234,42798,42798,42799,42799,42800,42800,42801,42801,42802,42802,42803,42803,42804,42804,42805,42805,42806,42806,42807,42807,42808,42808,42870,42870,42809,42809,42810,42810,42811,42811,42812,42812,42813,42813,42814,42814,42815,42815,42861,42861,42816,42816,42817,42817,42818,42818,42819,42819,42820,42820,42891,42891,42886,42886,42821,42821,42822,42822,42823,42823,42824,42824,42825,42825,42826,42826,42827,42827,42828,42828,42829,42829,42830,42830,42831,42831,42832,42832,42833,42833,42834,42834,42835,42835,42836,48226,48225,48225,48231,48231,48230,48230,48229,48229,48228,48228,48227,48227,48226,48232,48251,48251,48250,48250,48249,48249,48248,48248,48247,48247,48246,48246,48245,48245,48244,48244,48243,48243,48242,48242,48241,48241,48240,48240,48239,48239,48254,48254,48253,48253,48252,48252,48238,48238,48237,48237,48236,48236,48235,48235,48234,48234,48233,48233,48232,48256,48255,48255,48540,48540,48539,48539,48538,48538,48537,48537,48575,48575,48536,48536,48535,48535,48534,48534,48533,48533,48532,48532,48531,48531,48530,48530,48529,48529,48528,48528,48527,48527,48526,48526,48574,48574,48525,48525,48524,48524,48523,48523,48522,48522,48521,48521,48520,48520,48519,48519,48518,48518,48517,48517,48516,48516,48515,48515,48514,48514,48513,48513,48512,48512,48511,48511,48573,48573,48572,48572,48564,48564,48510,48510,48509,48509,48508,48508,48507,48507,48506,48506,48616,48616,48552,48552,48505,48505,48504,48504,48503,48503,48551,48551,48502,48502,48501,48501,48500,48500,48499,48499,48498,48498,48497,48497,48496,48496,48495,48495,48589,48589,48571,48571,48494,48494,48493,48493,48492,48492,48491,48491,48490,48490,48489,48489,48488,48488,48487,48487,48486,48486,48485,48485,48550,48550,48484,48484,48483,48483,48482,48482,48549,48549,48481,48481,48480,48480,48479,48479,48478,48478,48477,48477,48476,48476,48475,48475,48474,48474,48473,48473,48472,48472,48471,48471,48470,48470,48469,48469,48468,48468,48467,48467,48563,48563,48466,48466,48465,48465,48464,48464,48463,48463,48462,48462,48461,48461,48460,48460,48459,48459,48458,48458,48457,48457,48456,48456,48455,48455,48454,48454,48453,48453,48588,48588,48452,48452,48451,48451,48450,48450,48449,48449,48448,48448,48562,48562,48447,48447,48446,48446,48445,48445,48599,48599,48587,48587,48444,48444,48443,48443,48442,48442,48441,48441,48440,48440,48439,48439,48438,48438,48570,48570,48598,48598,48586,48586,48437,48437,48436,48436,48435,48435,48434,48434,48433,48433,48432,48432,48431,48431,48430,48430,48597,48597,48585,48585,48561,48561,48429,48429,48428,48428,48427,48427,48426,48426,48425,48425,48424,48424,48423,48423,48422,48422,48421,48421,48560,48560,48420,48420,48419,48419,48418,48418,48417,48417,48416,48416,48415,48415,48414,48414,48413,48413,48412,48412,48411,48411,48410,48410,48409,48409,48408,48408,48407,48407,48406,48406,48405,48405,48404,48404,48403,48403,48402,48402,48401,48401,48400,48400,48399,48399,48398,48398,48397,48397,48396,48396,48395,48395,48596,48596,48584,48584,48394,48394,48393,48393,48392,48392,48391,48391,48390,48390,48389,48389,48388,48388,48548,48548,48387,48387,48386,48386,48385,48385,48384,48384,48383,48383,48382,48382,48381,48381,48380,48380,48379,48379,48378,48378,48583,48583,48559,48559,48547,48547,48377,48377,48376,48376,48375,48375,48374,48374,48373,48373,48606,48606,48372,48372,48371,48371,48370,48370,48369,48369,48368,48368,48367,48367,48366,48366,48365,48365,48364,48364,48363,48363,48362,48362,48361,48361,48360,48360,48359,48359,48358,48358,48357,48357,48356,48356,48355,48355,48354,48354,48353,48353,48352,48352,48351,48351,48350,48350,48349,48349,48348,48348,48347,48347,48346,48346,48345,48345,48344,48344,48343,48343,48342,48342,48341,48341,48340,48340,48339,48339,48338,48338,48337,48337,48336,48336,48335,48335,48334,48334,48333,48333,48332,48332,48569,48569,48581,48581,48605,48605,48613,48613,48642,48642,48652,48652,48633,48633,48331,48331,48330,48330,48329,48329,48546,48546,48328,48328,48327,48327,48326,48326,48325,48325,48324,48324,48323,48323,48322,48322,48321,48321,48545,48545,48320,48320,48319,48319,48318,48318,48317,48317,48316,48316,48315,48315,48314,48314,48313,48313,48312,48312,48311,48311,48310,48310,48309,48309,48308,48308,48568,48568,48307,48307,48306,48306,48305,48305,48304,48304,48303,48303,48302,48302,48301,48301,48300,48300,48544,48544,48299,48299,48298,48298,48297,48297,48558,48558,48543,48543,48296,48296,48295,48295,48294,48294,48557,48557,48293,48293,48292,48292,48291,48291,48290,48290,48289,48289,48542,48542,48288,48288,48287,48287,48286,48286,48285,48285,48284,48284,48283,48283,48282,48282,48281,48281,48280,48280,48567,48567,48579,48579,48593,48593,48279,48279,48278,48278,48277,48277,48556,48556,48276,48276,48275,48275,48274,48274,48273,48273,48272,48272,48271,48271,47437,47437,47438,47438,47540,47540,47541,47541,47439,47439,47440,47440,47441,47441,47442,47442,47443,47443,47542,47542,47444,47444,47445,47445,47446,47446,47447,47447,47448,47448,47449,47449,47450,47450,47451,47451,47543,47543,47551,47551,47529,47529,47452,47452,47453,47453,47454,47454,47455,47455,47456,47456,47457,47457,47458,47458,47459,47459,47460,47460,47530,47530,47461,47461,47462,47462,47463,47463,47464,47464,47465,47465,47531,47531,47558,47558,47544,47544,47466,47466,47467,47467,47468,47468,47469,47469,47470,47470,47471,47471,47472,47472,47473,47473,47474,47474,47475,47475,47476,47476,47477,47477,47478,47478,47479,47479,47532,47532,47533,47533,47480,47480,47481,47481,47482,47482,47483,47483,47484,47484,47485,47485,47486,47486,47487,47487,47488,47488,47489,47489,47490,47490,47491,47491,47545,47545,47492,47492,47493,47493,47494,47494,47495,47495,47496,47496,47497,47497,47498,47498,47499,47499,47546,47546,47559,47559,47552,47552,47500,47500,47501,47501,47502,47502,47503,47503,47504,47504,47505,47505,47506,47506,47507,47507,47508,47508,47509,47509,47510,47510,47511,47511,47512,47512,47513,47513,47514,47514,47515,47515,47516,47516,47547,47547,47553,47553,47554,47554,47534,47534,47517,47517,47518,47518,47519,47519,47520,47520,47521,47521,47522,47522,47523,47523,47524,47524,46909,46909,46910,46910,46911,46911,46912,46912,46913,46913,46914,46914,46915,46915,46991,46991,46916,46916,46917,46917,46918,46918,47009,47009,46919,46919,46920,46920,46921,46921,46922,46922,46923,46923,46924,46924,47041,47041,47010,47010,46925,46925,46926,46926,46927,46927,46928,46928,46929,46929,46930,46930,46931,46931,46932,46932,46933,46933,47011,47011,47032,47032,46934,46934,46935,46935,46936,46936,46937,46937,46938,46938,46939,46939,46992,46992,46940,46940,46941,46941,46942,46942,46943,46943,46944,46944,47012,47012,46945,46945,46946,46946,46947,46947,46993,46993,47013,47013,47014,47014,46948,46948,46949,46949,46950,46950,46951,46951,46952,46952,47033,47033,46953,46953,46954,46954,46955,46955,46486,46486,46447,46447,46448,46448,46449,46449,46450,46450,46451,46451,46452,46452,46485,46485,46481,46481,46453,46453,46454,46454,46455,46455,46456,46456,46457,46457,47397,47397,47398,47398,46578,46578,46579,46579,46580,46580,46581,46581,46582,46582,46583,46583,46623,46623,46654,46654,46584,46584,46585,46585,46586,46586,46665,46665,46663,46663,46661,46661,46657,46657,46634,46634,46587,46587,46588,46588,46589,46589,46590,46590,46591,46591,46592,46592,46593,46593,46647,46647,46648,46648,46641,46641,46594,46594,46595,46595,46596,46596,46597,46597,46598,46598,46599,46599,46600,46600,46601,46601,46602,46602,46603,46603,46604,46604,46605,46605,46606,46606,46607,46607,46608,46608,46609,46609,46610,46610,48270,48270,48541,48541,48555,48555,48578,48578,48592,48592,48601,48601,48600,48600,48591,48591,48269,48269,48268,48268,48267,48267,48266,48266,48265,48265,48264,48264,48263,48263,48566,48566,48577,48577,48739,48739,48746,48746,48565,48565,48262,48262,48261,48261,48260,48260,48259,48259,48258,48258,48554,48554,48576,48576,48590,48590,48617,48617,48608,48608,48553,48553,48257,48257,48256,40162,48747,48747,48918,48918,48937,48937,48917,48917,48916,48916,37539,37539,37540,37540,37842,37842,37541,37541,37542,37542,37543,37543,37771,37771,37893,37893,37772,37772,37544,37544,37545,37545,37546,37546,37547,37547,37548,37548,37773,37773,37894,37894,37895,37895,37774,37774,37549,37549,37550,37550,37551,37551,37552,37552,37553,37553,37554,37554,37555,37555,37556,37556,37557,37557,37558,37558,37559,37559,37560,37560,37561,37561,37562,37562,37563,37563,37564,37564,37843,37843,37896,37896,37775,37775,37565,37565,37566,37566,37567,37567,37568,37568,37569,37569,37570,37570,37571,37571,37973,37973,37897,37897,37572,37572,37573,37573,37574,37574,37575,37575,37576,37576,37577,37577,37578,37578,37776,37776,37938,37938,37898,37898,37777,37777,37579,37579,37580,37580,37581,37581,37582,37582,37583,37583,37584,37584,37585,37585,37999,37999,37899,37899,37778,37778,37586,37586,37587,37587,37588,37588,37589,37589,37590,37590,37591,37591,37592,37592,37593,37593,37594,37594,37595,37595,37596,37596,37844,37844,37900,37900,37939,37939,38223,38223,38281,38281,38000,38000,37779,37779,37597,37597,37598,37598,37599,37599,37600,37600,37601,37601,37602,37602,37603,37603,37901,37901,37604,37604,37605,37605,37606,37606,37607,37607,37608,37608,37845,37845,37846,37846,37780,37780,37609,37609,37610,37610,37611,37611,37612,37612,37613,37613,37614,37614,37615,37615,37616,37616,37940,37940,37941,37941,37847,37847,37617,37617,37618,37618,37619,37619,37620,37620,37621,37621,37902,37902,37974,37974,38001,38001,37622,37622,37623,37623,37624,37624,37625,37625,37626,37626,37848,37848,37627,37627,37628,37628,37629,37629,37781,37781,38064,38064,37630,37630,37631,37631,37632,37632,37782,37782,37975,37975,37942,37942,37849,37849,37633,37633,37634,37634,37635,37635,37636,37636,37637,37637,37638,37638,37639,37639,37640,37640,37641,37641,37850,37850,37851,37851,37642,37642,37643,37643,37644,37644,37645,37645,37646,37646,37647,37647,37648,37648,37649,37649,37650,37650,37651,37651,37652,37652,37653,37653,37976,37976,38126,38126,37977,37977,37903,37903,37852,37852,37654,37654,37655,37655,37656,37656,37657,37657,37658,37658,37659,37659,37660,37660,37661,37661,37662,37662,38002,38002,37853,37853,37663,37663,37664,37664,37665,37665,37783,37783,37666,37666,37667,37667,37668,37668,37669,37669,37670,37670,37671,37671,37672,37672,37673,37673,37674,37674,37675,37675,37784,37784,38158,38158,37676,37676,37677,37677,37678,37678,37785,37785,38065,38065,37978,37978,37904,37904,37854,37854,37679,37679,37680,37680,37681,37681,37682,37682,37683,37683,37684,37684,37685,37685,37786,37786,38003,38003,37979,37979,37686,37686,37687,37687,37688,37688,37689,37689,37690,37690,37691,37691,37692,37692,37693,37693,37694,37694,37695,37695,37696,37696,37697,37697,37698,37698,37699,37699,37700,37700,37701,37701,37702,37702,37703,37703,37704,37704,37705,37705,37706,37706,36671,36671,36672,36672,48915,48915,48914,48914,48913,48913,48936,48936,48912,48912,48911,48911,48910,48910,48909,48909,48908,48908,48907,48907,48906,48906,48905,48905,48904,48904,48903,48903,48902,48902,48901,48901,48900,48900,48899,48899,48898,48898,48935,48935,48956,48956,48934,48934,48897,48897,48896,48896,48895,48895,48894,48894,48893,48893,48892,48892,48979,48979,48976,48976,48968,48968,48963,48963,48955,48955,48891,48891,48890,48890,48889,48889,48888,48888,48887,48887,48933,48933,48886,48886,48885,48885,48884,48884,48883,48883,48882,48882,48881,48881,48880,48880,48879,48879,48878,48878,48877,48877,48932,48932,48876,48876,48875,48875,48874,48874,48954,48954,48931,48931,48873,48873,48872,48872,48871,48871,48870,48870,48869,48869,48953,48953,48946,48946,48868,48868,48867,48867,48866,48866,48930,48930,48929,48929,48865,48865,48864,48864,48863,48863,48862,48862,48363,48363,48364,48364,48365,48365,48366,48366,48367,48367,48368,48368,48369,48369,48370,48370,48371,48371,48372,48372,48606,48606,48373,48373,48374,48374,48375,48375,48376,48376,48377,48377,48547,48547,48559,48559,48583,48583,48378,48378,48379,48379,48380,48380,48381,48381,48382,48382,48383,48383,48384,48384,48385,48385,48386,48386,48387,48387,48548,48548,48388,48388,48389,48389,48390,48390,48391,48391,48392,48392,48393,48393,48394,48394,48584,48584,48596,48596,48395,48395,48396,48396,48397,48397,48398,48398,48399,48399,48400,48400,48401,48401,48402,48402,48403,48403,48404,48404,48405,48405,48406,48406,48407,48407,48408,48408,48409,48409,48410,48410,48411,48411,48412,48412,48413,48413,48414,48414,48415,48415,48416,48416,48417,48417,48418,48418,48419,48419,48420,48420,48560,48560,48861,48861,48860,48860,48859,48859,48945,48945,48928,48928,48858,48858,48857,48857,48856,48856,48855,48855,48854,48854,48853,48853,48852,48852,48851,48851,48850,48850,48849,48849,48848,48848,48952,48952,48975,48975,48986,48986,48994,48994,49004,49004,49014,49014,49022,49022,49001,49001,48927,48927,48847,48847,48846,48846,48845,48845,48944,48944,48959,48959,48844,48844,48843,48843,48842,48842,48841,48841,48840,48840,48943,48943,48951,48951,48839,48839,48838,48838,48837,48837,48836,48836,48835,48835,48942,48942,48958,48958,48834,48834,48833,48833,48832,48832,48950,48950,48831,48831,48830,48830,48829,48829,48828,48828,48827,48827,48941,48941,48926,48926,48826,48826,48825,48825,48824,48824,48823,48823,48822,48822,48821,48821,48820,48820,48819,48819,48925,48925,48962,48962,48984,48984,49012,49012,49067,49067,48949,48949,48924,48924,48818,48818,48817,48817,48816,48816,48815,48815,48814,48814,48813,48813,48812,48812,48811,48811,48810,48810,48809,48809,48940,48940,48948,48948,48808,48808,48807,48807,48806,48806,48805,48805,48804,48804,48803,48803,48802,48802,48801,48801,48923,48923,48939,48939,48957,48957,48961,48961,48965,48965,48800,48800,48799,48799,48798,48798,48797,48797,48796,48796,48795,48795,48794,48794,48793,48793,48792,48792,48791,48791,48790,48790,48789,48789,48788,48788,48787,48787,48786,48786,48785,48785,48784,48784,48947,48947,48938,48938,48783,48783,48782,48782,48781,48781,48780,48780,48779,48779,48778,48778,48777,48777,48776,48776,48775,48775,48922,48922,48960,48960,48774,48774,48773,48773,48772,48772,48771,48771,48770,48770,48921,48921,48769,48769,48768,48768,48767,48767,48766,48766,48765,48765,48764,48764,48920,48920,48763,48763,48762,48762,48761,48761,48919,48919,48760,48760,48759,48759,48758,48758,48757,48757,48756,48756,48755,48755,48754,48754,48753,48753,48752,48752,48751,48751,48750,48750,48749,48749,48748,48748,40136,40136,40616,40616,40725,40725,40617,40617,40137,40137,40138,40138,40139,40139,40794,40794,40996,40996,40726,40726,40140,40140,40141,40141,40142,40142,40618,40618,40795,40795,40827,40827,40936,40936,40888,40888,40143,40143,40144,40144,40145,40145,40146,40146,40147,40147,40148,40148,40149,40149,40150,40150,40151,40151,40152,40152,40153,40153,40154,40154,40155,40155,40156,40156,40157,40157,40796,40796,40158,40158,40159,40159,40160,40160,40161,40161,40162,49085,49084,49084,49088,49088,49087,49087,49086,49086,49085,49090,49089,49089,49098,49098,49097,49097,49096,49096,49095,49095,49094,49094,49093,49093,49092,49092,49091,49091,49090,49100,49099,49099,49109,49109,49108,49108,49107,49107,49106,49106,49105,49105,49104,49104,49103,49103,49102,49102,49101,49101,49100,47227,47228,47228,47229,47229,47230,47230,47231,47231,47345,47345,47357,47357,47232,47232,47233,47233,47234,47234,47314,47314,47353,47353,47329,47329,47315,47315,47235,47235,47236,47236,47237,47237,47238,47238,47239,47239,47240,47240,47241,47241,47330,47330,47358,47358,47359,47359,47363,47363,47331,47331,47242,47242,47243,47243,47244,47244,47316,47316,47245,47245,47246,47246,47247,47247,47248,47248,47249,47249,47250,47250,47251,47251,47252,47252,47317,47317,47354,47354,47332,47332,47253,47253,47254,47254,47255,47255,47256,47256,47257,47257,47258,47258,47259,47259,47318,47318,47260,47260,47261,47261,47262,47262,47263,47263,47264,47264,47333,47333,47265,47265,47266,47266,47267,47267,47319,47319,47334,47334,47335,47335,47268,47268,47269,47269,47270,47270,47320,47320,47271,47271,47272,47272,47273,47273,47274,47274,47275,47275,47336,47336,47346,47346,47337,47337,47276,47276,47277,47277,47278,47278,47321,47321,47338,47338,47279,47279,47280,47280,47281,47281,47322,47322,47347,47347,47361,47361,47364,47364,47339,47339,47282,47282,47283,47283,47284,47284,47323,47323,47285,47285,47286,47286,47287,47287,47288,47288,47289,47289,47340,47340,47348,47348,47290,47290,47291,47291,47292,47292,47293,47293,47294,47294,47324,47324,47295,47295,47296,47296,47297,47297,47341,47341,47298,47298,47299,47299,47300,47300,47301,47301,47302,47302,47342,47342,47349,47349,47365,47365,47355,47355,47343,47343,47303,47303,47304,47304,47305,47305,47306,47306,47307,47307,47350,47350,47308,47308,47309,47309,47310,47310,47325,47325,47356,47356,47351,47351,47326,47326,47311,47311,44996,44996,44997,44997,45151,45151,45170,45170,45159,45159,45135,45135,44998,44998,44999,44999,45000,45000,45001,45001,45002,45002,45003,45003,45004,45004,45005,45005,45006,45006,45007,45007,45008,45008,45009,45009,45010,45010,45011,45011,45136,45136,45012,45012,45013,45013,45014,45014,45015,45015,45016,45016,45017,45017,45018,45018,45019,45019,45020,45020,45021,45021,45137,45137,45022,45022,45023,45023,45024,45024,45025,45025,45026,45026,45027,45027,45028,45028,45029,45029,45030,45030,45031,45031,45152,45152,45032,45032,45033,45033,45034,45034,45035,45035,45036,45036,45037,45037,49324,49324,49323,49323,49322,49322,49321,49321,49375,49375,49360,49360,49320,49320,49319,49319,49318,49318,49317,49317,49316,49316,49315,49315,49314,49314,49313,49313,49344,49344,49312,49312,49311,49311,49310,49310,49309,49309,49308,49308,49307,49307,49306,49306,49305,49305,49304,49304,49303,49303,49302,49302,49301,49301,49300,49300,49299,49299,49343,49343,49298,49298,49297,49297,49296,49296,49295,49295,49294,49294,49440,49440,49445,49445,49359,49359,49293,49293,49292,49292,49291,49291,49290,49290,49289,49289,49288,49288,49287,49287,49286,49286,49285,49285,49284,49284,49283,49283,49282,49282,49281,49281,49280,49280,49279,49279,49278,49278,49277,49277,49276,49276,49275,49275,49274,49274,49358,49358,49273,49273,49272,49272,49271,49271,49342,49342,49387,49387,49368,49368,49270,49270,49269,49269,49268,49268,49267,49267,49266,49266,49357,49357,49374,49374,49381,49381,49356,49356,49265,49265,49264,49264,49263,49263,49262,49262,49261,49261,49260,49260,49259,49259,49258,49258,49257,49257,49341,49341,49340,49340,49256,49256,49255,49255,49254,49254,49355,49355,49380,49380,49386,49386,49398,49398,49253,49253,49252,49252,49251,49251,49339,49339,49250,49250,49249,49249,49248,49248,49354,49354,49353,49353,49247,49247,49246,49246,49245,49245,49244,49244,49243,49243,36285,36285,36286,36286,36287,36287,36288,36288,36289,36289,36320,36320,36337,36337,36334,36334,36326,36326,36290,36290,36291,36291,36292,36292,36293,36293,36294,36294,36295,36295,36296,36296,36321,36321,36340,36340,36297,36297,36298,36298,36299,36299,36329,36329,36300,36300,36301,36301,36302,36302,36303,36303,36304,36304,36305,36305,36306,36306,36307,36307,36308,36308,36309,36309,36310,36310,36311,36311,36312,36312,36330,36330,36313,36313,36314,36314,36315,36315,36316,36316,36317,36317,36216,36216,36217,36217,49242,49242,49241,49241,49240,49240,49338,49338,49239,49239,49238,49238,49237,49237,49236,49236,49235,49235,49234,49234,49233,49233,49352,49352,49337,49337,49232,49232,49231,49231,49230,49230,49336,49336,49229,49229,49228,49228,49227,49227,49414,49414,49417,49417,49226,49226,49225,49225,49224,49224,49223,49223,49222,49222,49221,49221,49220,49220,49219,49219,49218,49218,49217,49217,49216,49216,49215,49215,49214,49214,49213,49213,49212,49212,49211,49211,49373,49373,49210,49210,49209,49209,49208,49208,49207,49207,49206,49206,49335,49335,49367,49367,49351,49351,49205,49205,49204,49204,49203,49203,49334,49334,49393,49393,49366,49366,49350,49350,49202,49202,49201,49201,49200,49200,49199,49199,49198,49198,49197,49197,49196,49196,49195,49195,49194,49194,49193,49193,49192,49192,49191,49191,49190,49190,49189,49189,49188,49188,49187,49187,49186,49186,49395,49395,49379,49379,49333,49333,49185,49185,49184,49184,49183,49183,49182,49182,49181,49181,49180,49180,49179,49179,49178,49178,49177,49177,49176,49176,49175,49175,49174,49174,49173,49173,49172,49172,49365,49365,49364,49364,49171,49171,49170,49170,49169,49169,49168,49168,49167,49167,49349,49349,49372,49372,49391,49391,49378,49378,49332,49332,49166,49166,49165,49165,49164,49164,49331,49331,49163,49163,49162,49162,49161,49161,49330,49330,49160,49160,49159,49159,49158,49158,49157,49157,49156,49156,49155,49155,49154,49154,49153,49153,49152,49152,49329,49329,49151,49151,49150,49150,49149,49149,49148,49148,49147,49147,49146,49146,49145,49145,49144,49144,49143,49143,49142,49142,49328,49328,49141,49141,49140,49140,49139,49139,49377,49377,49327,49327,49138,49138,49137,49137,49136,49136,49135,49135,49134,49134,49133,49133,49132,49132,49131,49131,49130,49130,49129,49129,49128,49128,49348,49348,49363,49363,49362,49362,49326,49326,49127,49127,49126,49126,49125,49125,49347,49347,49383,49383,49124,49124,49123,49123,49122,49122,49121,49121,49120,49120,49119,49119,49118,49118,49346,49346,49371,49371,49376,49376,49382,49382,49370,49370,49345,49345,49117,49117,49116,49116,49115,49115,49325,49325,49361,49361,49114,49114,49113,49113,49112,49112,49111,49111,49110,49110,47227,49463,49462,49462,49468,49468,49467,49467,49466,49466,49465,49465,49464,49464,49463,49470,49469,49469,49476,49476,49475,49475,49474,49474,49473,49473,49472,49472,49471,49471,49470,49478,49477,49477,49481,49481,49480,49480,49479,49479,49478,49483,49482,49482,49485,49485,49484,49484,49483,49487,49486,49486,49491,49491,49490,49490,49489,49489,49488,49488,49487,49493,49492,49492,49497,49497,49496,49496,49495,49495,49494,49494,49493,49499,49498,49498,49512,49512,49511,49511,49510,49510,49509,49509,49508,49508,49507,49507,49506,49506,49505,49505,49504,49504,49503,49503,49502,49502,49501,49501,49500,49500,49499,47725,47726,47726,47727,47727,47941,47941,47919,47919,47728,47728,47729,47729,47730,47730,47731,47731,47732,47732,47733,47733,47734,47734,47425,47425,47426,47426,47427,47427,47428,47428,47429,47429,47430,47430,47550,47550,47603,47603,47607,47607,47593,47593,47586,47586,47572,47572,47565,47565,47539,47539,47431,47431,47432,47432,49531,49531,49532,49532,49530,49530,49529,49529,49528,49528,49527,49527,49526,49526,49525,49525,49524,49524,49523,49523,49534,49534,49533,49533,49522,49522,49521,49521,49520,49520,49519,49519,49518,49518,49517,49517,49516,49516,49515,49515,49514,49514,49513,49513,47725,49536,49535,49535,49539,49539,49538,49538,49537,49537,49536,34729,34730,34730,34731,34731,34732,34732,34744,34744,34743,34743,34733,34733,34734,34734,34735,34735,34736,34736,34737,34737,34738,34738,34739,34739,34742,34742,34689,34689,34690,34690,49564,49564,49563,49563,49562,49562,49561,49561,49560,49560,49559,49559,49558,49558,49557,49557,49570,49570,49573,49573,49571,49571,49567,49567,49556,49556,49555,49555,49554,49554,49553,49553,49552,49552,49551,49551,49550,49550,49549,49549,49548,49548,49547,49547,49569,49569,49546,49546,49545,49545,49544,49544,49566,49566,49565,49565,49543,49543,49542,49542,49541,49541,49568,49568,49572,49572,49540,49540,34729,34704,49574,49574,34695,34695,34696,34696,34697,34697,34698,34698,34699,34699,34700,34700,34701,34701,34702,34702,34740,34740,34703,34703,34704,36420,36421,36421,36488,36488,36422,36422,36423,36423,36424,36424,36552,36552,36543,36543,36536,36536,36533,36533,36518,36518,36505,36505,36425,36425,36426,36426,36427,36427,36420,36427,36428,36428,36429,36429,36430,36430,36431,36431,36489,36489,36432,36432,36433,36433,36434,36434,36490,36490,36435,36435,36436,36436,36437,36437,36548,36548,36554,36554,36557,36557,36539,36539,36506,36506,36491,36491,36438,36438,36439,36439,36440,36440,36441,36441,36442,36442,36443,36443,36444,36444,36445,36445,36446,36446,36447,36447,49580,49580,49582,49582,49584,49584,49583,49583,49581,49581,49579,49579,49578,49578,49577,49577,49576,49576,49575,49575,36427,47227,49110,49110,49111,49111,49112,49112,49113,49113,49114,49114,49361,49361,49325,49325,49115,49115,49116,49116,49117,49117,49345,49345,49370,49370,49382,49382,49376,49376,49371,49371,49346,49346,49118,49118,49119,49119,49120,49120,49121,49121,49122,49122,49123,49123,49124,49124,49383,49383,49347,49347,49125,49125,49126,49126,49127,49127,49326,49326,49362,49362,49363,49363,49348,49348,49128,49128,49129,49129,49130,49130,49131,49131,49132,49132,49133,49133,49134,49134,49135,49135,49136,49136,49137,49137,49138,49138,49327,49327,49377,49377,49139,49139,49140,49140,49141,49141,49328,49328,49142,49142,49143,49143,49144,49144,49145,49145,49146,49146,49147,49147,49148,49148,49149,49149,49150,49150,49151,49151,49329,49329,49152,49152,49153,49153,49154,49154,49155,49155,49156,49156,49157,49157,49158,49158,49159,49159,49160,49160,49330,49330,49161,49161,49162,49162,49163,49163,49331,49331,49164,49164,49165,49165,49166,49166,49332,49332,49378,49378,49391,49391,49372,49372,49349,49349,49167,49167,49168,49168,49169,49169,49170,49170,49171,49171,49364,49364,49365,49365,49172,49172,49173,49173,49174,49174,49175,49175,49176,49176,49177,49177,49178,49178,49179,49179,49180,49180,49181,49181,49182,49182,49183,49183,49184,49184,49185,49185,49333,49333,49379,49379,49395,49395,49186,49186,49187,49187,49188,49188,49189,49189,49190,49190,49191,49191,49192,49192,49193,49193,49194,49194,49195,49195,49196,49196,49197,49197,49198,49198,49199,49199,49200,49200,49201,49201,49202,49202,49350,49350,49366,49366,49393,49393,49334,49334,49203,49203,49204,49204,49205,49205,49351,49351,49367,49367,49335,49335,49206,49206,49207,49207,49208,49208,49209,49209,49210,49210,49373,49373,49211,49211,49212,49212,49213,49213,49804,49804,49803,49803,49802,49802,49801,49801,49800,49800,49799,49799,49798,49798,49797,49797,49796,49796,49795,49795,49794,49794,49793,49793,49792,49792,49791,49791,49790,49790,49789,49789,49788,49788,49787,49787,49786,49786,49785,49785,49784,49784,49783,49783,49782,49782,49781,49781,49780,49780,49779,49779,49778,49778,49777,49777,49776,49776,49775,49775,49774,49774,49773,49773,49772,49772,49771,49771,49770,49770,49769,49769,49768,49768,49767,49767,49766,49766,49765,49765,49764,49764,49763,49763,49762,49762,49761,49761,49815,49815,49819,49819,49760,49760,49759,49759,49758,49758,49757,49757,49756,49756,49755,49755,49754,49754,49753,49753,49752,49752,49751,49751,49818,49818,49750,49750,49749,49749,49748,49748,49747,49747,49746,49746,49814,49814,49745,49745,49744,49744,49743,49743,49742,49742,49741,49741,49740,49740,49739,49739,49738,49738,49737,49737,49736,49736,49735,49735,49734,49734,49733,49733,49732,49732,49731,49731,49730,49730,49729,49729,49813,49813,49812,49812,49728,49728,49727,49727,49726,49726,49725,49725,49724,49724,49723,49723,49722,49722,49721,49721,49720,49720,49719,49719,49718,49718,49717,49717,49716,49716,49715,49715,49823,49823,49714,49714,49713,49713,49712,49712,49711,49711,49710,49710,49709,49709,49708,49708,49811,49811,49707,49707,49706,49706,49705,49705,49810,49810,49704,49704,49703,49703,49702,49702,49701,49701,49700,49700,49699,49699,49698,49698,49697,49697,49696,49696,49695,49695,49694,49694,49693,49693,49692,49692,49691,49691,49690,49690,49689,49689,49688,49688,49809,49809,49687,49687,49686,49686,49685,49685,49684,49684,49683,49683,49682,49682,49681,49681,49680,49680,49679,49679,49822,49822,49821,49821,49808,49808,49678,49678,49677,49677,49676,49676,49675,49675,49674,49674,49673,49673,49672,49672,49671,49671,49670,49670,49669,49669,49668,49668,49667,49667,49666,49666,49665,49665,49664,49664,49807,49807,49828,49828,49663,49663,49662,49662,49661,49661,49660,49660,49659,49659,49658,49658,49657,49657,49656,49656,49655,49655,49654,49654,49653,49653,49652,49652,49651,49651,49650,49650,49649,49649,49648,49648,49647,49647,49646,49646,49645,49645,49644,49644,49643,49643,49642,49642,49641,49641,49640,49640,49817,49817,49827,49827,49830,49830,49826,49826,49639,49639,49638,49638,49637,49637,49636,49636,49635,49635,49634,49634,49633,49633,49632,49632,49631,49631,49630,49630,49629,49629,49628,49628,49627,49627,49829,49829,49825,49825,49626,49626,49625,49625,49624,49624,49623,49623,49622,49622,49621,49621,49620,49620,49619,49619,49618,49618,49617,49617,49806,49806,49616,49616,49615,49615,49614,49614,49613,49613,49612,49612,49611,49611,49610,49610,49816,49816,49609,49609,49608,49608,49607,49607,49805,49805,49606,49606,49605,49605,49604,49604,49603,49603,49602,49602,49601,49601,49600,49600,49599,49599,49598,49598,49597,49597,49596,49596,49595,49595,49594,49594,49593,49593,49592,49592,49591,49591,49590,49590,49589,49589,49588,49588,49824,49824,49832,49832,49820,49820,49587,49587,49586,49586,49585,49585,37139,37139,37140,37140,37141,37141,37872,37872,37925,37925,37816,37816,37142,37142,37143,37143,37144,37144,37145,37145,37146,37146,37817,37817,37147,37147,37148,37148,37149,37149,37150,37150,37151,37151,37873,37873,37926,37926,37739,37739,37152,37152,37153,37153,37154,37154,37818,37818,37155,37155,37156,37156,37157,37157,37158,37158,37159,37159,37160,37160,37161,37161,37162,37162,37163,37163,37819,37819,37992,37992,37164,37164,37165,37165,37166,37166,37167,37167,37168,37168,37169,37169,37170,37170,37171,37171,37172,37172,37173,37173,37174,37174,37175,37175,37176,37176,37177,37177,37178,37178,37179,37179,37180,37180,37181,37181,37182,37182,37183,37183,37184,37184,37185,37185,37740,37740,37927,37927,38015,38015,38036,38036,37993,37993,37874,37874,37186,37186,37187,37187,37188,37188,37189,37189,37190,37190,37820,37820,37191,37191,37192,37192,37193,37193,37194,37194,37195,37195,37875,37875,37962,37962,37196,37196,37197,37197,37198,37198,37199,37199,37200,37200,37201,37201,37741,37741,37202,37202,37203,37203,37204,37204,37928,37928,37994,37994,37963,37963,37929,37929,37876,37876,37205,37205,37206,37206,37207,37207,37208,37208,37209,37209,37210,37210,37211,37211,38016,38016,37964,37964,37877,37877,37212,37212,37213,37213,37214,37214,37215,37215,37216,37216,37217,37217,37218,37218,37219,37219,37742,37742,37220,37220,37221,37221,40253,40253,40254,40254,40255,40255,40256,40256,40257,40257,41046,41046,40736,40736,40258,40258,40259,40259,40260,40260,40261,40261,40262,40262,40800,40800,40263,40263,40264,40264,40265,40265,40630,40630,40266,40266,40267,40267,40268,40268,40269,40269,40270,40270,40271,40271,40272,40272,40273,40273,40831,40831,40865,40865,40891,40891,40939,40939,40631,40631,40274,40274,40275,40275,40276,40276,40277,40277,40278,40278,41137,41137,40632,40632,40279,40279,40280,40280,40281,40281,40282,40282,40283,40283,40284,40284,40285,40285,40286,40286,40832,40832,40287,40287,40288,40288,40289,40289,40633,40633,40737,40737,40290,40290,40291,40291,40292,40292,40634,40634,40801,40801,40802,40802,40738,40738,40293,40293,40294,40294,40295,40295,40296,40296,40297,40297,40803,40803,40298,40298,40299,40299,40300,40300,40301,40301,40302,40302,40303,40303,40304,40304,40305,40305,40306,40306,40307,40307,40308,40308,40309,40309,40310,40310,40311,40311,40312,40312,40313,40313,40314,40314,40892,40892,40969,40969,40739,40739,40635,40635,40315,40315,40316,40316,40317,40317,40318,40318,40319,40319,40320,40320,40321,40321,40322,40322,40323,40323,40324,40324,40740,40740,40325,40325,40326,40326,40327,40327,40636,40636,40637,40637,40328,40328,40329,40329,40330,40330,40331,40331,40332,40332,40833,40833,40893,40893,40894,40894,40333,40333,40334,40334,40335,40335,40336,40336,40337,40337,40338,40338,40339,40339,40340,40340,40341,40341,40342,40342,40343,40343,40344,40344,40345,40345,40346,40346,40834,40834,40866,40866,40867,40867,40638,40638,40347,40347,40348,40348,40349,40349,40350,40350,40351,40351,40639,40639,40352,40352,40353,40353,40354,40354,40355,40355,40356,40356,40640,40640,40357,40357,40358,40358,40359,40359,40360,40360,40361,40361,40895,40895,40914,40914,40896,40896,40362,40362,40363,40363,40364,40364,40365,40365,47312,47312,47313,47313,47213,47213,47214,47214,47215,47215,47327,47327,47216,47216,47217,47217,47218,47218,47219,47219,47220,47220,47352,47352,47344,47344,47328,47328,47221,47221,47222,47222,47223,47223,47224,47224,47225,47225,47226,47226,47227,49894,49893,49893,49901,49901,49900,49900,49899,49899,49898,49898,49902,49902,49897,49897,49896,49896,49895,49895,49894,49903,49910,49910,49909,49909,49908,49908,49907,49907,49906,49906,49905,49905,49904,49904,49903,49911,49921,49921,49920,49920,49919,49919,49918,49918,49917,49917,49916,49916,49915,49915,49914,49914,49913,49913,49912,49912,49911,49923,49922,49922,49928,49928,49927,49927,49926,49926,49925,49925,49924,49924,49923,49930,49929,49929,49936,49936,49935,49935,49934,49934,49933,49933,49932,49932,49931,49931,49930,49937,49947,49947,49946,49946,49945,49945,49944,49944,49943,49943,49942,49942,49941,49941,49940,49940,49939,49939,49938,49938,49937,49949,49948,49948,49959,49959,49958,49958,49957,49957,49956,49956,49955,49955,49954,49954,49953,49953,49952,49952,49951,49951,49950,49950,49949,49960,49967,49967,49966,49966,49965,49965,49964,49964,49963,49963,49962,49962,49961,49961,49960,49969,49968,49968,49977,49977,49976,49976,49975,49975,49974,49974,49973,49973,49972,49972,49971,49971,49970,49970,49969,49979,49978,49978,49985,49985,49984,49984,49983,49983,49982,49982,49981,49981,49980,49980,49979,49987,49986,49986,49990,49990,49989,49989,49988,49988,49987,49992,49991,49991,50003,50003,50002,50002,50001,50001,50000,50000,49999,49999,49998,49998,49997,49997,49996,49996,49995,49995,49994,49994,49993,49993,49992,50005,50004,50004,50008,50008,50007,50007,50006,50006,50005,50009,50014,50014,50013,50013,50012,50012,50011,50011,50010,50010,50009,50016,50015,50015,50022,50022,50021,50021,50020,50020,50019,50019,50018,50018,50017,50017,50016,50024,50023,50023,50030,50030,50029,50029,50028,50028,50027,50027,50026,50026,50025,50025,50024,50032,50031,50031,50036,50036,50035,50035,50034,50034,50033,50033,50032,50038,50037,50037,50042,50042,50041,50041,50040,50040,50039,50039,50038,36990,36991,36991,36992,36992,36993,36993,36994,36994,36995,36995,36996,36996,36997,36997,36998,36998,36999,36999,37000,37000,37001,37001,37726,37726,37919,37919,37002,37002,37003,37003,37004,37004,37727,37727,37799,37799,37868,37868,37800,37800,37005,37005,37006,37006,37007,37007,37008,37008,37009,37009,37010,37010,37011,37011,37012,37012,37013,37013,37014,37014,37015,37015,37728,37728,37801,37801,38137,38137,38121,38121,38088,38088,38034,38034,37802,37802,37016,37016,37017,37017,37018,37018,37019,37019,37020,37020,37729,37729,37021,37021,37022,37022,37023,37023,37024,37024,37025,37025,37026,37026,37027,37027,37803,37803,37028,37028,37029,37029,37030,37030,37730,37730,37869,37869,37031,37031,37032,37032,37033,37033,37731,37731,37804,37804,38151,38151,37034,37034,37035,37035,37036,37036,37037,37037,37038,37038,37039,37039,37040,37040,37041,37041,37042,37042,37043,37043,37732,37732,37920,37920,37957,37957,37958,37958,37921,37921,37805,37805,37044,37044,37045,37045,37046,37046,37047,37047,37048,37048,37049,37049,37050,37050,37051,37051,37052,37052,37053,37053,37733,37733,37990,37990,38014,38014,37922,37922,37806,37806,37054,37054,37055,37055,37056,37056,37057,37057,37058,37058,37059,37059,37060,37060,37061,37061,37062,37062,37807,37807,37959,37959,37991,37991,37960,37960,37063,37063,37064,37064,37065,37065,37066,37066,37067,37067,37068,37068,37069,37069,37808,37808,37070,37070,37071,37071,37072,37072,37073,37073,37074,37074,37075,37075,37076,37076,37077,37077,37078,37078,37079,37079,37080,37080,37734,37734,37809,37809,38056,38056,38277,38277,38187,38187,38152,38152,37961,37961,37810,37810,37081,37081,37082,37082,37083,37083,37735,37735,37870,37870,37084,37084,37085,37085,37086,37086,37811,37811,37087,37087,37088,37088,37089,37089,37090,37090,37091,37091,37871,37871,37092,37092,37093,37093,37094,37094,37095,37095,37096,37096,37812,37812,37097,37097,37098,37098,37099,37099,37100,37100,37101,37101,37102,37102,37103,37103,37104,37104,37105,37105,37106,37106,37107,37107,37108,37108,37109,37109,37110,37110,37813,37813,37923,37923,37924,37924,37814,37814,37111,37111,37112,37112,37113,37113,37114,37114,37115,37115,37116,37116,37117,37117,37736,37736,37815,37815,37118,37118,37119,37119,37120,37120,37737,37737,37738,37738,37121,37121,37122,37122,37123,37123,37124,37124,37125,37125,37126,37126,37127,37127,37128,37128,37129,37129,37130,37130,37131,37131,37132,37132,37133,37133,37134,37134,37135,37135,37136,37136,37137,37137,37138,37138,37139,37139,49585,49585,49586,49586,49587,49587,49820,49820,49832,49832,49824,49824,49588,49588,49589,49589,49590,49590,49591,49591,49592,49592,49593,49593,49594,49594,49595,49595,49596,49596,49597,49597,49598,49598,49599,49599,49600,49600,49601,49601,49602,49602,50124,50124,50123,50123,50122,50122,50121,50121,50120,50120,50119,50119,50118,50118,50117,50117,50116,50116,50115,50115,50129,50129,50128,50128,50114,50114,50113,50113,50112,50112,50111,50111,50110,50110,50109,50109,50108,50108,50107,50107,50106,50106,50105,50105,50104,50104,50103,50103,50102,50102,50101,50101,50100,50100,50099,50099,50098,50098,50137,50137,50134,50134,50097,50097,50096,50096,50095,50095,50094,50094,50093,50093,50092,50092,50091,50091,50090,50090,50089,50089,50088,50088,50087,50087,50086,50086,50085,50085,50084,50084,50083,50083,50127,50127,50126,50126,50082,50082,50081,50081,50080,50080,50079,50079,50078,50078,50077,50077,50076,50076,50075,50075,50074,50074,50073,50073,50072,50072,50071,50071,50070,50070,50069,50069,50068,50068,50067,50067,50066,50066,50065,50065,50136,50136,50133,50133,50064,50064,50063,50063,50062,50062,50061,50061,50060,50060,50135,50135,50132,50132,50059,50059,50058,50058,50057,50057,50056,50056,50055,50055,50054,50054,50053,50053,50052,50052,50125,50125,50131,50131,50130,50130,50051,50051,50050,50050,50049,50049,50048,50048,50047,50047,50046,50046,50045,50045,50044,50044,50043,50043,36990,50144,50143,50143,50147,50147,50146,50146,50145,50145,50144,50149,50148,50148,50156,50156,50155,50155,50154,50154,50153,50153,50152,50152,50151,50151,50150,50150,50149,50158,50157,50157,50172,50172,50171,50171,50174,50174,50170,50170,50169,50169,50168,50168,50167,50167,50166,50166,50165,50165,50164,50164,50163,50163,50162,50162,50173,50173,50161,50161,50160,50160,50159,50159,50158,50176,50175,50175,50181,50181,50180,50180,50179,50179,50178,50178,50177,50177,50176,50183,50182,50182,50190,50190,50189,50189,50188,50188,50187,50187,50186,50186,50185,50185,50184,50184,50183,50192,50191,50191,50196,50196,50195,50195,50194,50194,50193,50193,50192,43184,43420,43420,43185,43185,43186,43186,43187,43187,43383,43383,43188,43188,43189,43189,43190,43190,43384,43384,43191,43191,43192,43192,44755,44755,44756,44756,44757,44757,44758,44758,44759,44759,44760,44760,44761,44761,44912,44912,44762,44762,44763,44763,44764,44764,44886,44886,44765,44765,44766,44766,44767,44767,44887,44887,44913,44913,44919,44919,44920,44920,44903,44903,44768,44768,44769,44769,44770,44770,44771,44771,44772,44772,44773,44773,44774,44774,44888,44888,44928,44928,44929,44929,44921,44921,44904,44904,44775,44775,44776,44776,44777,44777,44778,44778,44779,44779,44780,44780,44781,44781,44889,44889,44890,44890,44782,44782,44783,44783,44784,44784,44785,44785,44786,44786,44935,44935,44941,44941,44933,44933,44914,44914,44787,44787,44788,44788,44789,44789,44790,44790,44791,44791,44905,44905,44922,44922,44915,44915,44792,44792,44793,44793,44794,44794,44795,44795,44796,44796,44797,44797,44798,44798,44799,44799,44800,44800,44801,44801,44802,44802,44803,44803,44804,44804,44891,44891,44805,44805,44806,44806,44807,44807,44906,44906,44930,44930,44936,44936,44931,44931,44808,44808,44809,44809,44810,44810,44892,44892,44907,44907,44811,44811,44812,44812,44813,44813,44814,44814,44815,44815,44893,44893,44816,44816,44817,44817,44818,44818,44932,44932,44819,44819,44820,44820,44821,44821,44894,44894,44908,44908,44822,44822,44823,44823,40126,40126,40724,40724,40127,40127,40128,40128,40129,40129,40130,40130,40131,40131,40132,40132,40133,40133,40134,40134,40135,40135,40136,40136,48748,48748,48749,48749,48750,48750,48751,48751,48752,48752,48753,48753,48754,48754,48755,48755,48756,48756,48757,48757,48758,48758,48759,48759,48760,48760,48919,48919,48761,48761,48762,48762,48763,48763,48920,48920,48764,48764,48765,48765,48766,48766,48767,48767,48768,48768,48769,48769,48921,48921,48770,48770,48771,48771,48772,48772,48773,48773,48774,48774,48960,48960,48922,48922,48775,48775,48776,48776,48777,48777,48778,48778,48779,48779,48780,48780,48781,48781,48782,48782,48783,48783,48938,48938,48947,48947,48784,48784,48785,48785,48786,48786,48787,48787,48788,48788,48789,48789,48790,48790,48791,48791,48792,48792,48793,48793,48794,48794,48795,48795,48796,48796,48797,48797,48798,48798,48799,48799,48800,48800,48965,48965,48961,48961,48957,48957,48939,48939,48923,48923,48801,48801,48802,48802,48803,48803,48804,48804,48805,48805,48806,48806,48807,48807,48808,48808,48948,48948,48940,48940,48809,48809,48810,48810,48811,48811,48812,48812,48813,48813,48814,48814,48815,48815,48816,48816,48817,48817,48818,48818,48924,48924,48949,48949,49067,49067,49012,49012,48984,48984,48962,48962,48925,48925,48819,48819,48820,48820,48821,48821,48822,48822,48823,48823,48824,48824,48825,48825,48826,48826,48926,48926,48941,48941,48827,48827,48828,48828,48829,48829,48830,48830,48831,48831,48950,48950,48832,48832,48833,48833,48834,48834,48958,48958,48942,48942,48835,48835,48836,48836,48837,48837,48838,48838,48839,48839,48951,48951,48943,48943,48840,48840,48841,48841,48842,48842,48843,48843,48844,48844,48959,48959,48944,48944,48845,48845,48846,48846,48847,48847,48927,48927,49001,49001,49022,49022,49014,49014,49004,49004,48994,48994,48986,48986,48975,48975,48952,48952,48848,48848,48849,48849,48850,48850,48851,48851,48852,48852,48853,48853,48854,48854,48855,48855,48856,48856,48857,48857,48858,48858,48928,48928,48945,48945,48859,48859,48860,48860,48861,48861,48560,48560,48421,48421,48422,48422,48423,48423,48424,48424,48425,48425,48426,48426,48427,48427,48428,48428,48429,48429,48561,48561,48585,48585,48597,48597,48430,48430,48431,48431,48432,48432,48433,48433,48434,48434,48435,48435,48436,48436,48437,48437,48586,48586,48598,48598,48570,48570,48438,48438,48439,48439,48440,48440,48441,48441,48442,48442,48443,48443,48444,48444,48587,48587,48599,48599,48445,48445,48446,48446,48447,48447,48562,48562,48448,48448,48449,48449,48450,48450,48451,48451,48452,48452,48588,48588,48453,48453,48454,48454,48455,48455,48456,48456,48457,48457,48458,48458,48459,48459,48460,48460,48461,48461,48462,48462,48463,48463,48464,48464,48465,48465,48466,48466,48563,48563,48467,48467,48468,48468,48469,48469,48470,48470,48471,48471,48472,48472,48473,48473,48474,48474,48475,48475,50244,50244,50243,50243,50250,50250,50254,50254,50257,50257,50249,50249,50242,50242,50241,50241,50240,50240,50239,50239,50238,50238,50237,50237,50236,50236,50253,50253,50235,50235,50234,50234,50233,50233,50248,50248,50272,50272,50247,50247,50232,50232,50231,50231,50230,50230,50229,50229,50228,50228,50227,50227,50252,50252,50226,50226,50225,50225,50224,50224,50223,50223,50222,50222,50221,50221,50220,50220,50219,50219,50218,50218,50217,50217,50251,50251,50216,50216,50215,50215,50214,50214,50246,50246,50256,50256,50255,50255,50213,50213,50212,50212,50211,50211,50210,50210,50209,50209,50208,50208,50207,50207,50206,50206,50205,50205,50245,50245,50204,50204,50203,50203,50202,50202,50201,50201,50200,50200,50199,50199,50198,50198,50197,50197,43184,50313,50312,50312,50318,50318,50317,50317,50316,50316,50315,50315,50314,50314,50313,43071,43072,43072,43410,43410,43073,43073,43074,43074,43075,43075,43076,43076,43077,43077,43078,43078,43079,43079,43080,43080,43081,43081,43411,43411,43467,43467,43379,43379,43082,43082,43083,43083,43084,43084,43440,43440,43085,43085,43086,43086,43087,43087,43088,43088,43089,43089,43412,43412,43455,43455,43468,43468,43090,43090,43091,43091,43092,43092,43456,43456,43413,43413,43093,43093,43094,43094,43095,43095,43096,43096,43097,43097,43098,43098,43099,43099,43100,43100,43101,43101,43102,43102,43380,43380,43501,43501,43506,43506,43519,43519,43103,43103,43104,43104,43105,43105,43106,43106,43107,43107,43108,43108,43109,43109,43110,43110,43111,43111,43112,43112,43414,43414,43113,43113,43114,43114,43115,43115,43116,43116,43117,43117,43118,43118,43119,43119,43120,43120,43415,43415,43121,43121,43122,43122,43123,43123,43124,43124,43125,43125,43126,43126,43127,43127,43128,43128,43129,43129,43130,43130,43416,43416,43131,43131,43132,43132,43133,43133,43134,43134,43135,43135,43136,43136,43137,43137,43138,43138,43139,43139,43140,43140,43141,43141,43142,43142,43143,43143,43441,43441,43144,43144,43145,43145,43146,43146,43147,43147,43148,43148,43149,43149,43150,43150,43442,43442,43469,43469,43507,43507,43514,43514,43518,43518,43478,43478,43381,43381,43151,43151,43152,43152,43153,43153,43417,43417,43154,43154,43155,43155,43156,43156,43157,43157,43158,43158,43159,43159,43160,43160,43161,43161,43162,43162,43163,43163,43164,43164,43165,43165,43166,43166,43167,43167,43168,43168,43169,43169,43170,43170,43171,43171,43172,43172,43173,43173,43174,43174,43175,43175,43176,43176,43418,43418,43488,43488,43495,43495,43443,43443,43382,43382,43177,43177,43178,43178,43179,43179,43419,43419,43479,43479,43444,43444,43180,43180,43181,43181,43182,43182,43183,43183,43184,43184,50197,50197,50198,50198,50199,50199,50200,50200,50201,50201,50202,50202,50203,50203,50204,50204,50245,50245,50205,50205,50206,50206,50207,50207,50208,50208,50209,50209,50210,50210,50211,50211,50212,50212,50213,50213,50255,50255,50256,50256,50246,50246,50214,50214,50215,50215,50216,50216,50251,50251,50217,50217,50218,50218,50219,50219,50220,50220,50221,50221,50222,50222,50223,50223,50224,50224,50225,50225,50226,50226,50252,50252,50227,50227,50228,50228,50229,50229,50230,50230,50231,50231,50232,50232,50247,50247,50272,50272,50248,50248,50233,50233,50234,50234,50235,50235,50253,50253,50236,50236,50237,50237,50238,50238,50239,50239,50240,50240,50241,50241,50242,50242,50249,50249,50257,50257,50254,50254,50250,50250,50243,50243,50244,50244,48475,48475,48476,48476,48477,48477,48478,48478,48479,48479,48480,48480,48481,48481,48549,48549,48482,48482,48483,48483,48484,48484,48550,48550,48485,48485,48486,48486,48487,48487,48488,48488,48489,48489,48490,48490,48491,48491,48492,48492,48493,48493,48494,48494,48571,48571,48589,48589,48495,48495,48496,48496,48497,48497,48498,48498,48499,48499,48500,48500,48501,48501,48502,48502,48551,48551,48503,48503,48504,48504,48505,48505,48552,48552,48616,48616,48506,48506,48507,48507,48508,48508,48509,48509,48510,48510,48564,48564,48572,48572,48573,48573,48511,48511,48512,48512,48513,48513,48514,48514,48515,48515,48516,48516,48517,48517,48518,48518,48519,48519,48520,48520,48521,48521,48522,48522,48523,48523,48524,48524,48525,48525,48574,48574,48526,48526,48527,48527,48528,48528,48529,48529,48530,48530,48531,48531,48532,48532,48533,48533,48534,48534,48535,48535,48536,48536,48575,48575,48537,48537,48538,48538,48539,48539,48540,48540,48255,48255,48256,48256,50385,50385,50384,50384,50383,50383,50382,50382,50381,50381,50394,50394,50380,50380,50379,50379,50378,50378,50405,50405,50404,50404,50393,50393,50377,50377,50376,50376,50375,50375,50374,50374,50373,50373,50392,50392,50410,50410,50403,50403,50391,50391,50372,50372,50371,50371,50370,50370,50369,50369,50368,50368,50390,50390,50402,50402,50409,50409,50401,50401,50367,50367,50366,50366,50365,50365,50364,50364,50363,50363,50428,50428,50362,50362,50361,50361,50360,50360,50400,50400,50359,50359,50358,50358,50357,50357,50356,50356,50355,50355,50354,50354,50353,50353,50352,50352,50351,50351,50350,50350,50349,50349,50348,50348,50389,50389,50399,50399,50408,50408,50398,50398,50347,50347,50346,50346,50345,50345,50344,50344,50343,50343,50397,50397,50342,50342,50341,50341,50340,50340,50388,50388,50339,50339,50338,50338,50337,50337,50336,50336,50335,50335,50396,50396,50407,50407,50433,50433,50455,50455,50465,50465,50474,50474,50414,50414,50412,50412,50334,50334,50333,50333,50332,50332,50331,50331,50330,50330,50395,50395,50406,50406,50427,50427,50422,50422,50387,50387,50329,50329,50328,50328,50327,50327,50415,50415,50413,50413,50411,50411,50386,50386,50326,50326,50325,50325,50324,50324,50323,50323,50322,50322,50321,50321,50320,50320,50319,50319,44203,44203,44204,44204,44274,44274,44308,44308,44381,44381,44205,44205,44206,44206,44207,44207,44471,44471,44474,44474,44438,44438,44425,44425,44411,44411,44395,44395,44382,44382,44353,44353,44275,44275,44208,44208,44209,44209,44210,44210,44211,44211,44212,44212,44276,44276,44213,44213,44214,44214,44215,44215,44216,44216,44217,44217,44277,44277,44218,44218,43071,42074,42177,42177,42178,42178,42179,42179,42180,42180,42181,42181,42182,42182,42183,42183,42184,42184,42185,42185,42186,42186,42187,42187,42188,42188,42189,42189,42190,42190,42191,42191,42192,42192,47399,47399,47400,47400,47401,47401,47402,47402,47403,47403,47404,47404,47525,47525,47526,47526,47405,47405,47406,47406,47735,47735,47897,47897,47933,47933,47736,47736,47737,47737,47738,47738,47739,47739,47740,47740,47741,47741,47742,47742,47898,47898,47986,47986,47743,47743,47744,47744,47745,47745,47746,47746,47747,47747,47748,47748,47749,47749,47750,47750,47899,47899,47920,47920,47751,47751,47752,47752,47753,47753,47754,47754,47755,47755,47934,47934,47945,47945,47935,47935,47756,47756,47757,47757,47758,47758,47759,47759,47760,47760,47761,47761,50479,50479,42030,42030,42031,42031,42032,42032,42033,42033,42034,42034,42035,42035,42036,42036,42037,42037,42099,42099,42038,42038,42039,42039,42040,42040,42041,42041,42042,42042,42043,42043,42044,42044,42045,42045,42046,42046,42047,42047,42111,42111,42112,42112,42113,42113,42114,42114,42115,42115,42110,42110,42071,42071,42072,42072,42103,42103,42101,42101,42096,42096,42073,42073,42074,37355,37932,37932,37886,37886,37752,37752,37356,37356,37357,37357,37358,37358,37359,37359,37360,37360,37753,37753,37933,37933,37971,37971,38220,38220,38399,38399,38413,38413,37361,37361,37362,37362,37363,37363,37754,37754,37364,37364,37365,37365,37366,37366,37829,37829,37367,37367,37368,37368,37369,37369,37755,37755,37830,37830,37370,37370,37371,37371,37372,37372,37373,37373,37374,37374,37375,37375,37376,37376,37887,37887,37756,37756,37377,37377,37378,37378,37379,37379,37380,37380,37381,37381,37757,37757,37934,37934,37888,37888,37382,37382,37383,37383,37384,37384,37758,37758,37385,37385,37386,37386,37387,37387,37388,37388,37389,37389,37390,37390,37391,37391,37392,37392,37393,37393,37394,37394,37395,37395,37396,37396,37397,37397,37398,37398,37399,37399,37400,37400,37401,37401,37402,37402,37403,37403,37404,37404,37405,37405,37759,37759,37406,37406,37407,37407,37408,37408,37409,37409,37410,37410,37411,37411,37412,37412,37413,37413,37414,37414,37415,37415,37831,37831,37935,37935,37416,37416,37417,37417,37418,37418,37832,37832,37419,37419,37420,37420,37421,37421,37760,37760,37889,37889,37833,37833,37422,37422,37423,37423,37424,37424,37425,37425,37426,37426,37996,37996,37427,37427,37428,37428,37429,37429,38332,38332,38222,38222,38155,38155,37834,37834,37430,37430,37431,37431,37432,37432,37433,37433,37434,37434,38060,38060,38020,38020,37997,37997,37435,37435,37436,37436,37437,37437,37835,37835,37761,37761,37438,37438,37439,37439,40170,40170,40171,40171,40172,40172,40173,40173,40174,40174,40828,40828,40963,40963,40727,40727,40175,40175,40176,40176,40177,40177,40178,40178,40179,40179,40180,40180,40181,40181,40182,40182,40183,40183,40728,40728,40184,40184,40185,40185,40186,40186,40187,40187,40188,40188,40863,40863,40889,40889,40729,40729,40189,40189,40190,40190,40191,40191,40619,40619,40192,40192,40193,40193,40194,40194,40195,40195,40196,40196,40197,40197,40198,40198,40199,40199,40620,40620,40864,40864,40730,40730,40200,40200,40201,40201,40202,40202,40203,40203,40204,40204,40205,40205,40206,40206,40797,40797,40621,40621,40207,40207,40208,40208,40209,40209,40210,40210,40211,40211,40622,40622,40731,40731,40212,40212,40213,40213,40214,40214,40215,40215,40216,40216,40217,40217,40218,40218,40829,40829,40623,40623,40219,40219,40220,40220,40221,40221,40624,40624,40222,40222,40223,40223,40224,40224,40625,40625,40225,40225,40226,40226,40227,40227,40732,40732,40626,40626,40228,40228,37355,42689,50501,50501,50572,50572,50581,50581,50583,50583,50571,50571,50570,50570,50569,50569,50568,50568,50567,50567,50566,50566,50565,50565,50564,50564,50563,50563,50562,50562,50561,50561,50560,50560,50559,50559,50558,50558,50557,50557,50580,50580,50593,50593,50587,50587,50582,50582,50556,50556,50555,50555,50554,50554,50553,50553,50552,50552,50551,50551,50550,50550,50549,50549,50548,50548,50547,50547,50546,50546,50545,50545,50544,50544,50543,50543,50542,50542,50541,50541,50540,50540,50539,50539,50579,50579,50578,50578,50538,50538,50537,50537,50536,50536,50535,50535,50534,50534,50533,50533,50532,50532,50531,50531,50530,50530,50529,50529,50528,50528,50527,50527,50526,50526,50525,50525,50524,50524,50523,50523,50522,50522,50521,50521,50520,50520,50577,50577,50519,50519,50518,50518,50517,50517,50516,50516,50515,50515,50514,50514,50576,50576,50575,50575,50513,50513,50512,50512,50511,50511,50510,50510,50509,50509,50508,50508,50507,50507,50506,50506,50505,50505,50574,50574,50573,50573,50504,50504,50503,50503,50502,50502,47842,47842,47843,47843,47844,47844,47845,47845,47846,47846,47847,47847,47848,47848,47849,47849,47850,47850,47961,47961,47992,47992,48011,48011,47851,47851,47852,47852,47853,47853,47908,47908,47923,47923,48174,48174,48134,48134,48065,48065,47962,47962,47937,47937,47909,47909,47854,47854,47855,47855,47856,47856,47857,47857,47858,47858,47859,47859,47860,47860,47861,47861,47862,47862,47863,47863,47864,47864,47865,47865,47995,47995,47977,47977,47910,47910,47866,47866,47867,47867,47868,47868,47869,47869,47870,47870,47871,47871,47911,47911,47924,47924,47925,47925,47872,47872,47873,47873,47874,47874,47875,47875,47876,47876,47877,47877,47878,47878,47912,47912,47926,47926,47879,47879,47880,47880,47881,47881,47913,47913,47882,47882,47883,47883,47884,47884,47885,47885,47886,47886,47887,47887,47888,47888,47889,47889,47890,47890,47891,47891,47892,47892,47927,47927,47914,47914,47893,47893,47686,47686,42836,42836,42837,42837,42862,42862,42838,42838,42839,42839,42840,42840,42841,42841,42842,42842,42843,42843,42863,42863,42844,42844,42845,42845,42846,42846,42847,42847,42848,42848,42849,42849,42850,42850,42851,42851,42852,42852,42853,42853,42854,42854,42855,42855,42688,42688,42689,50622,50621,50621,50627,50627,50626,50626,50625,50625,50624,50624,50623,50623,50622,50629,50628,50628,50632,50632,50631,50631,50630,50630,50629,50634,50633,50633,50638,50638,50637,50637,50636,50636,50635,50635,50634,50639,50656,50656,50655,50655,50654,50654,50653,50653,50652,50652,50651,50651,50650,50650,50649,50649,50648,50648,50647,50647,50646,50646,50645,50645,50644,50644,50643,50643,50642,50642,50641,50641,50640,50640,50639,38827,38828,38828,38829,38829,38830,38830,38831,38831,40498,40498,38832,38832,38833,38833,50670,50670,50669,50669,50668,50668,50667,50667,50666,50666,50665,50665,50664,50664,50663,50663,50662,50662,50661,50661,50660,50660,50659,50659,50658,50658,50657,50657,38827,50672,50671,50671,50677,50677,50676,50676,50675,50675,50674,50674,50673,50673,50672,50679,50678,50678,50684,50684,50683,50683,50682,50682,50681,50681,50680,50680,50679,36645,36646,36646,36647,36647,36648,36648,36665,36665,36666,36666,36649,36649,36650,36650,36651,36651,36652,36652,36653,36653,36654,36654,36655,36655,36656,36656,36657,36657,36658,36658,36659,36659,36660,36660,36661,36661,36662,36662,36663,36663,36664,36664,36669,36669,36667,36667,36616,36616,36617,36617,50696,50696,50698,50698,50695,50695,50694,50694,50693,50693,50697,50697,50699,50699,50701,50701,50692,50692,50691,50691,50690,50690,50689,50689,50688,50688,50687,50687,50686,50686,50700,50700,50685,50685,36645,37539,48916,48916,48917,48917,48937,48937,48918,48918,48747,48747,40162,40162,40163,40163,40164,40164,40165,40165,40166,40166,40167,40167,40168,40168,40169,40169,37534,37534,37535,37535,37841,37841,37536,37536,37537,37537,37538,37538,37539,50703,50702,50702,50709,50709,50708,50708,50707,50707,50706,50706,50705,50705,50704,50704,50703,50711,50710,50710,50715,50715,50714,50714,50713,50713,50712,50712,50711,50717,50716,50716,50780,50780,50779,50779,50778,50778,50777,50777,50776,50776,50775,50775,50785,50785,50774,50774,50773,50773,50772,50772,50771,50771,50770,50770,50788,50788,50769,50769,50768,50768,50767,50767,50766,50766,50765,50765,50784,50784,50764,50764,50763,50763,50762,50762,50761,50761,50760,50760,50759,50759,50758,50758,50757,50757,50756,50756,50755,50755,50754,50754,50753,50753,50752,50752,50751,50751,50750,50750,50749,50749,50748,50748,50747,50747,50746,50746,50745,50745,50744,50744,50743,50743,50742,50742,50741,50741,50740,50740,50739,50739,50738,50738,50737,50737,50736,50736,50735,50735,50787,50787,50783,50783,50734,50734,50733,50733,50732,50732,50782,50782,50731,50731,50730,50730,50729,50729,50791,50791,50789,50789,50781,50781,50728,50728,50727,50727,50726,50726,50725,50725,50724,50724,50723,50723,50786,50786,50722,50722,50721,50721,50720,50720,50719,50719,50718,50718,50717,50796,50795,50795,50971,50971,50995,50995,51007,51007,51012,51012,50994,50994,50982,50982,50970,50970,50969,50969,50968,50968,50967,50967,50966,50966,50965,50965,50964,50964,50993,50993,51006,51006,51011,51011,51019,51019,51017,51017,50992,50992,50963,50963,50962,50962,50961,50961,50960,50960,50959,50959,50958,50958,50957,50957,50956,50956,50955,50955,50954,50954,50953,50953,50952,50952,50951,50951,50981,50981,50991,50991,51010,51010,51001,51001,50950,50950,50949,50949,50948,50948,50947,50947,50946,50946,50945,50945,50944,50944,51005,51005,50943,50943,50942,50942,50941,50941,50980,50980,50940,50940,50939,50939,50938,50938,51000,51000,50937,50937,50936,50936,50935,50935,51033,51033,51034,51034,51036,51036,51037,51037,51035,51035,50934,50934,50933,50933,50932,50932,50931,50931,50930,50930,50929,50929,50928,50928,50927,50927,50926,50926,50925,50925,50924,50924,50923,50923,50922,50922,50921,50921,50920,50920,50919,50919,50918,50918,50917,50917,50990,50990,51004,51004,51018,51018,51016,51016,50999,50999,50916,50916,50915,50915,50914,50914,50913,50913,50912,50912,50911,50911,50910,50910,50909,50909,50908,50908,50907,50907,50906,50906,50905,50905,50989,50989,50988,50988,50904,50904,50903,50903,50902,50902,50901,50901,50900,50900,50899,50899,50898,50898,50897,50897,50979,50979,50896,50896,50895,50895,50894,50894,50893,50893,50892,50892,50891,50891,50890,50890,50987,50987,50889,50889,50888,50888,50887,50887,50886,50886,50885,50885,50884,50884,50883,50883,50882,50882,50881,50881,50880,50880,50978,50978,50879,50879,50878,50878,50877,50877,50986,50986,51029,51029,51030,51030,50977,50977,50876,50876,50875,50875,50874,50874,50873,50873,50872,50872,50871,50871,50870,50870,50869,50869,50868,50868,50867,50867,50866,50866,50976,50976,50998,50998,50865,50865,50864,50864,50863,50863,51015,51015,51026,51026,51022,51022,51014,51014,50997,50997,50975,50975,50862,50862,50861,50861,50860,50860,50859,50859,50858,50858,50857,50857,50856,50856,50855,50855,50854,50854,50853,50853,50852,50852,50851,50851,50850,50850,50849,50849,50996,50996,51009,51009,50985,50985,50974,50974,50848,50848,50847,50847,50846,50846,50973,50973,50845,50845,50844,50844,50843,50843,50842,50842,50841,50841,50840,50840,50839,50839,50838,50838,50837,50837,50836,50836,50835,50835,50834,50834,50833,50833,50832,50832,50972,50972,50831,50831,50830,50830,50829,50829,50984,50984,50828,50828,50827,50827,50826,50826,50825,50825,50824,50824,50823,50823,50822,50822,50821,50821,50820,50820,50819,50819,50818,50818,50817,50817,51003,51003,51008,51008,51013,51013,51021,51021,51002,51002,50983,50983,50816,50816,50815,50815,50814,50814,50813,50813,50812,50812,50811,50811,50810,50810,50809,50809,50808,50808,50807,50807,50806,50806,50805,50805,50804,50804,50803,50803,50802,50802,50801,50801,50800,50800,50799,50799,50798,50798,50797,50797,50796,51096,51092,51092,51091,51091,51090,51090,51089,51089,51088,51088,51087,51087,51086,51086,51085,51085,51084,51084,51083,51083,51082,51082,51101,51101,51081,51081,51080,51080,51079,51079,51078,51078,51077,51077,51095,51095,51076,51076,51075,51075,51074,51074,51100,51100,51106,51106,51107,51107,51105,51105,51099,51099,51073,51073,51072,51072,51071,51071,51070,51070,51069,51069,51068,51068,51067,51067,51066,51066,51065,51065,51064,51064,51063,51063,51103,51103,51062,51062,51061,51061,51060,51060,51059,51059,51058,51058,51098,51098,51102,51102,51097,51097,51057,51057,51056,51056,51055,51055,51094,51094,51104,51104,51054,51054,51053,51053,51052,51052,51051,51051,51050,51050,51049,51049,51048,51048,51047,51047,51046,51046,51045,51045,51044,51044,51043,51043,51042,51042,51041,51041,51093,51093,51040,51040,51039,51039,51038,51038,51096,51108,51149,51149,51148,51148,51147,51147,51146,51146,51145,51145,51151,51151,51144,51144,51143,51143,51142,51142,51141,51141,51140,51140,51139,51139,51138,51138,51137,51137,51136,51136,51153,51153,51152,51152,51135,51135,51134,51134,51133,51133,51132,51132,51131,51131,51130,51130,51129,51129,51128,51128,51127,51127,51126,51126,51125,51125,51124,51124,51150,51150,51123,51123,51122,51122,51121,51121,51120,51120,51119,51119,51118,51118,51154,51154,51117,51117,51116,51116,51115,51115,51114,51114,51113,51113,51112,51112,51111,51111,51110,51110,51109,51109,51108,51156,51155,51155,51195,51195,51194,51194,51193,51193,51201,51201,51192,51192,51191,51191,51190,51190,51189,51189,51188,51188,51187,51187,51186,51186,51185,51185,51184,51184,51200,51200,51204,51204,51203,51203,51202,51202,51198,51198,51183,51183,51182,51182,51181,51181,51199,51199,51197,51197,51180,51180,51179,51179,51178,51178,51177,51177,51176,51176,51175,51175,51174,51174,51173,51173,51172,51172,51171,51171,51170,51170,51196,51196,51169,51169,51168,51168,51167,51167,51166,51166,51165,51165,51164,51164,51163,51163,51162,51162,51161,51161,51160,51160,51159,51159,51158,51158,51157,51157,51156,51205,51250,51250,51247,51247,51243,51243,51242,51242,51241,51241,51240,51240,51239,51239,51238,51238,51237,51237,51253,51253,51236,51236,51235,51235,51234,51234,51233,51233,51232,51232,51231,51231,51230,51230,51229,51229,51228,51228,51246,51246,51227,51227,51226,51226,51225,51225,51249,51249,51245,51245,51224,51224,51223,51223,51222,51222,51221,51221,51220,51220,51219,51219,51218,51218,51217,51217,51216,51216,51252,51252,51255,51255,51254,51254,51251,51251,51248,51248,51215,51215,51214,51214,51213,51213,51244,51244,51212,51212,51211,51211,51210,51210,51209,51209,51208,51208,51207,51207,51206,51206,51205,51257,51256,51256,51302,51302,51301,51301,51300,51300,51299,51299,51298,51298,51297,51297,51296,51296,51295,51295,51294,51294,51306,51306,51293,51293,51292,51292,51291,51291,51307,51307,51290,51290,51289,51289,51288,51288,51305,51305,51287,51287,51286,51286,51285,51285,51284,51284,51283,51283,51282,51282,51281,51281,51280,51280,51279,51279,51278,51278,51277,51277,51276,51276,51275,51275,51274,51274,51273,51273,51304,51304,51272,51272,51271,51271,51270,51270,51269,51269,51268,51268,51267,51267,51266,51266,51265,51265,51264,51264,51263,51263,51262,51262,51261,51261,51260,51260,51259,51259,51303,51303,51258,51258,51257,51308,51358,51358,51353,51353,51352,51352,51351,51351,51350,51350,51349,51349,51348,51348,51347,51347,51346,51346,51357,51357,51345,51345,51344,51344,51343,51343,51360,51360,51356,51356,51342,51342,51341,51341,51340,51340,51339,51339,51338,51338,51337,51337,51336,51336,51335,51335,51355,51355,51334,51334,51333,51333,51332,51332,51331,51331,51330,51330,51329,51329,51328,51328,51327,51327,51326,51326,51325,51325,51359,51359,51324,51324,51323,51323,51322,51322,51321,51321,51320,51320,51361,51361,51319,51319,51318,51318,51317,51317,51316,51316,51315,51315,51354,51354,51314,51314,51313,51313,51312,51312,51311,51311,51310,51310,51309,51309,51308,51362,51507,51507,51506,51506,51505,51505,51518,51518,51504,51504,51503,51503,51502,51502,51501,51501,51500,51500,51528,51528,51517,51517,51499,51499,51498,51498,51497,51497,51496,51496,51495,51495,51494,51494,51527,51527,51539,51539,51493,51493,51492,51492,51491,51491,51490,51490,51489,51489,51488,51488,51487,51487,51486,51486,51485,51485,51484,51484,51483,51483,51482,51482,51481,51481,51480,51480,51479,51479,51478,51478,51477,51477,51476,51476,51475,51475,51474,51474,51473,51473,51549,51549,51534,51534,51516,51516,51472,51472,51471,51471,51470,51470,51526,51526,51548,51548,51544,51544,51469,51469,51468,51468,51467,51467,51466,51466,51465,51465,51464,51464,51463,51463,51462,51462,51461,51461,51460,51460,51459,51459,51458,51458,51457,51457,51525,51525,51538,51538,51537,51537,51456,51456,51455,51455,51454,51454,51453,51453,51452,51452,51451,51451,51450,51450,51449,51449,51448,51448,51447,51447,51446,51446,51445,51445,51444,51444,51443,51443,51442,51442,51441,51441,51515,51515,51533,51533,51536,51536,51543,51543,51547,51547,51552,51552,51440,51440,51439,51439,51438,51438,51514,51514,51553,51553,51546,51546,51542,51542,51513,51513,51437,51437,51436,51436,51435,51435,51434,51434,51433,51433,51432,51432,51431,51431,51524,51524,51430,51430,51429,51429,51428,51428,51427,51427,51426,51426,51425,51425,51424,51424,51532,51532,51545,51545,51541,51541,51423,51423,51422,51422,51421,51421,51420,51420,51419,51419,51418,51418,51417,51417,51416,51416,51415,51415,51414,51414,51413,51413,51412,51412,51512,51512,51411,51411,51410,51410,51409,51409,51408,51408,51407,51407,51406,51406,51405,51405,51404,51404,51403,51403,51523,51523,51511,51511,51402,51402,51401,51401,51400,51400,51399,51399,51398,51398,51397,51397,51396,51396,51522,51522,51510,51510,51395,51395,51394,51394,51393,51393,51392,51392,51391,51391,51390,51390,51389,51389,51388,51388,51387,51387,51386,51386,51509,51509,51385,51385,51384,51384,51383,51383,51540,51540,51535,51535,51521,51521,51382,51382,51381,51381,51380,51380,51379,51379,51378,51378,51531,51531,51530,51530,51377,51377,51376,51376,51375,51375,51374,51374,51373,51373,51520,51520,51508,51508,51372,51372,51371,51371,51370,51370,51519,51519,51529,51529,51369,51369,51368,51368,51367,51367,51366,51366,51365,51365,51364,51364,51363,51363,51362,51555,51554,51554,51583,51583,51582,51582,51581,51581,51580,51580,51579,51579,51578,51578,51577,51577,51576,51576,51575,51575,51574,51574,51573,51573,51572,51572,51571,51571,51570,51570,51569,51569,51568,51568,51567,51567,51584,51584,51566,51566,51565,51565,51564,51564,51563,51563,51562,51562,51561,51561,51560,51560,51559,51559,51585,51585,51558,51558,51557,51557,51556,51556,51555,51586,51593,51593,51592,51592,51591,51591,51590,51590,51589,51589,51588,51588,51587,51587,51586,51595,51594,51594,51600,51600,51599,51599,51598,51598,51597,51597,51596,51596,51595,51602,51601,51601,51606,51606,51605,51605,51604,51604,51603,51603,51602,51608,51607,51607,51612,51612,51611,51611,51610,51610,51609,51609,51608,51614,51613,51613,51626,51626,51625,51625,51624,51624,51623,51623,51622,51622,51621,51621,51620,51620,51619,51619,51618,51618,51617,51617,51616,51616,51615,51615,51614,51628,51627,51627,51632,51632,51631,51631,51630,51630,51629,51629,51628,51634,51633,51633,51639,51639,51638,51638,51637,51637,51636,51636,51635,51635,51634,51640,51661,51661,51660,51660,51659,51659,51658,51658,51657,51657,51656,51656,51655,51655,51654,51654,51653,51653,51652,51652,51651,51651,51650,51650,51649,51649,51648,51648,51647,51647,51646,51646,51645,51645,51644,51644,51643,51643,51642,51642,51641,51641,51640,51663,51662,51662,51674,51674,51673,51673,51672,51672,51671,51671,51670,51670,51669,51669,51668,51668,51667,51667,51666,51666,51665,51665,51664,51664,51663,51676,51675,51675,51687,51687,51686,51686,51685,51685,51684,51684,51683,51683,51682,51682,51681,51681,51680,51680,51679,51679,51678,51678,51677,51677,51676,51689,51688,51688,51711,51711,51710,51710,51709,51709,51708,51708,51707,51707,51706,51706,51705,51705,51704,51704,51703,51703,51702,51702,51701,51701,51700,51700,51699,51699,51698,51698,51697,51697,51696,51696,51695,51695,51694,51694,51693,51693,51692,51692,51691,51691,51690,51690,51689,51713,51712,51712,51727,51727,51726,51726,51725,51725,51724,51724,51723,51723,51722,51722,51721,51721,51720,51720,51719,51719,51718,51718,51717,51717,51716,51716,51715,51715,51714,51714,51713,51729,51728,51728,51740,51740,51739,51739,51738,51738,51737,51737,51736,51736,51735,51735,51734,51734,51733,51733,51732,51732,51731,51731,51730,51730,51729,51741,51750,51750,51749,51749,51748,51748,51747,51747,51746,51746,51745,51745,51744,51744,51743,51743,51742,51742,51741,51752,51751,51751,51767,51767,51766,51766,51765,51765,51764,51764,51763,51763,51762,51762,51761,51761,51760,51760,51759,51759,51758,51758,51757,51757,51756,51756,51755,51755,51754,51754,51753,51753,51752,51769,51768,51768,51774,51774,51773,51773,51772,51772,51771,51771,51770,51770,51769,51775,51787,51787,51786,51786,51785,51785,51784,51784,51783,51783,51782,51782,51781,51781,51780,51780,51779,51779,51778,51778,51777,51777,51776,51776,51775,51789,51788,51788,51800,51800,51799,51799,51798,51798,51797,51797,51796,51796,51795,51795,51794,51794,51793,51793,51792,51792,51791,51791,51790,51790,51789,51802,51801,51801,51809,51809,51808,51808,51807,51807,51806,51806,51805,51805,51804,51804,51803,51803,51802,51811,51810,51810,51820,51820,51819,51819,51818,51818,51817,51817,51816,51816,51815,51815,51814,51814,51813,51813,51812,51812,51811,51822,51821,51821,51827,51827,51826,51826,51825,51825,51824,51824,51823,51823,51822,51853,51852,51852,51851,51851,51850,51850,51849,51849,51848,51848,51854,51854,51847,51847,51846,51846,51845,51845,51844,51844,51843,51843,51842,51842,51841,51841,51855,51855,51840,51840,51839,51839,51838,51838,51837,51837,51836,51836,51835,51835,51834,51834,51833,51833,51832,51832,51831,51831,51830,51830,51829,51829,51828,51828,51853,51856,51872,51872,51871,51871,51870,51870,51869,51869,51868,51868,51867,51867,51866,51866,51865,51865,51864,51864,51863,51863,51862,51862,51861,51861,51860,51860,51859,51859,51858,51858,51857,51857,51856,51874,51873,51873,51878,51878,51877,51877,51876,51876,51875,51875,51874,51880,51879,51879,51894,51894,51895,51895,51893,51893,51892,51892,51891,51891,51890,51890,51889,51889,51888,51888,51887,51887,51886,51886,51885,51885,51884,51884,51883,51883,51882,51882,51881,51881,51880,51897,51896,51896,51901,51901,51900,51900,51899,51899,51898,51898,51897,51903,51902,51902,51907,51907,51906,51906,51905,51905,51904,51904,51903,51909,51908,51908,51916,51916,51915,51915,51914,51914,51913,51913,51912,51912,51911,51911,51910,51910,51909,51918,51917,51917,51922,51922,51921,51921,51920,51920,51919,51919,51918,51924,51923,51923,51930,51930,51929,51929,51928,51928,51927,51927,51926,51926,51925,51925,51924,51932,51931,51931,51938,51938,51937,51937,51936,51936,51935,51935,51934,51934,51933,51933,51932,51940,51939,51939,51945,51945,51944,51944,51943,51943,51942,51942,51941,51941,51940,51947,51946,51946,51954,51954,51953,51953,51952,51952,51951,51951,51950,51950,51949,51949,51948,51948,51947,51956,51955,51955,51959,51959,51958,51958,51957,51957,51956,51961,51960,51960,51965,51965,51964,51964,51963,51963,51962,51962,51961,51967,51966,51966,51971,51971,51970,51970,51969,51969,51968,51968,51967,51973,51972,51972,51979,51979,51978,51978,51977,51977,51976,51976,51975,51975,51974,51974,51973,51981,51980,51980,51985,51985,51984,51984,51983,51983,51982,51982,51981,51987,51986,51986,51994,51994,51993,51993,51992,51992,51991,51991,51990,51990,51989,51989,51988,51988,51987,51995,52052,52052,52057,52057,52048,52048,52047,52047,52046,52046,52045,52045,52044,52044,52043,52043,52042,52042,52051,52051,52053,52053,52050,52050,52041,52041,52040,52040,52039,52039,52038,52038,52037,52037,52036,52036,52035,52035,52034,52034,52033,52033,52032,52032,52031,52031,52030,52030,52029,52029,52028,52028,52027,52027,52026,52026,52025,52025,52024,52024,52023,52023,52022,52022,52021,52021,52020,52020,52019,52019,52018,52018,52017,52017,52016,52016,52015,52015,52014,52014,52013,52013,52012,52012,52011,52011,52010,52010,52009,52009,52049,52049,52008,52008,52007,52007,52006,52006,52005,52005,52004,52004,52003,52003,52002,52002,52001,52001,52000,52000,51999,51999,51998,51998,51997,51997,51996,51996,51995,52060,52059,52059,52064,52064,52063,52063,52062,52062,52061,52061,52060,52066,52065,52065,52071,52071,52070,52070,52069,52069,52068,52068,52067,52067,52066,52073,52072,52072,52087,52087,52086,52086,52085,52085,52084,52084,52088,52088,52083,52083,52082,52082,52081,52081,52080,52080,52079,52079,52078,52078,52077,52077,52076,52076,52075,52075,52074,52074,52073,52090,52089,52089,52099,52099,52098,52098,52097,52097,52096,52096,52095,52095,52094,52094,52093,52093,52092,52092,52091,52091,52090,52101,52100,52100,52106,52106,52105,52105,52104,52104,52103,52103,52102,52102,52101,52108,52107,52107,52117,52117,52116,52116,52115,52115,52114,52114,52113,52113,52112,52112,52111,52111,52110,52110,52109,52109,52108,52119,52118,52118,52129,52129,52128,52128,52127,52127,52126,52126,52125,52125,52124,52124,52123,52123,52122,52122,52121,52121,52120,52120,52119,52131,52130,52130,52135,52135,52134,52134,52133,52133,52132,52132,52131,52137,52136,52136,52148,52148,52147,52147,52146,52146,52145,52145,52144,52144,52143,52143,52142,52142,52141,52141,52140,52140,52139,52139,52138,52138,52137,52150,52149,52149,52161,52161,52160,52160,52159,52159,52158,52158,52157,52157,52156,52156,52155,52155,52154,52154,52153,52153,52152,52152,52151,52151,52150,52163,52162,52162,52168,52168,52167,52167,52166,52166,52165,52165,52164,52164,52163,52170,52169,52169,52175,52175,52174,52174,52173,52173,52172,52172,52171,52171,52170,52177,52176,52176,52183,52183,52182,52182,52181,52181,52180,52180,52179,52179,52178,52178,52177,52185,52184,52184,52191,52191,52190,52190,52189,52189,52188,52188,52187,52187,52186,52186,52185,52193,52192,52192,52200,52200,52199,52199,52198,52198,52197,52197,52196,52196,52195,52195,52194,52194,52193,52202,52201,52201,52206,52206,52205,52205,52204,52204,52203,52203,52202,52208,52207,52207,52216,52216,52215,52215,52214,52214,52213,52213,52212,52212,52217,52217,52211,52211,52210,52210,52209,52209,52208,52219,52218,52218,52226,52226,52225,52225,52224,52224,52223,52223,52222,52222,52221,52221,52220,52220,52219,52228,52227,52227,52232,52232,52231,52231,52230,52230,52229,52229,52228,52234,52233,52233,52239,52239,52238,52238,52237,52237,52236,52236,52235,52235,52234,52241,52240,52240,52249,52249,52248,52248,52247,52247,52246,52246,52245,52245,52244,52244,52243,52243,52242,52242,52241,52251,52250,52250,52254,52254,52253,52253,52252,52252,52251,52256,52255,52255,52260,52260,52259,52259,52258,52258,52257,52257,52256,52384,52376,52376,52364,52364,52363,52363,52362,52362,52415,52415,52412,52412,52402,52402,52361,52361,52360,52360,52359,52359,52358,52358,52357,52357,52356,52356,52355,52355,52383,52383,52393,52393,52375,52375,52354,52354,52353,52353,52352,52352,52400,52400,52374,52374,52351,52351,52350,52350,52349,52349,52348,52348,52347,52347,52373,52373,52346,52346,52345,52345,52344,52344,52372,52372,52389,52389,52371,52371,52343,52343,52342,52342,52341,52341,52340,52340,52339,52339,52338,52338,52388,52388,52409,52409,52405,52405,52399,52399,52397,52397,52392,52392,52337,52337,52336,52336,52335,52335,52334,52334,52333,52333,52332,52332,52331,52331,52330,52330,52329,52329,52370,52370,52369,52369,52328,52328,52327,52327,52326,52326,52382,52382,52387,52387,52408,52408,52418,52418,52416,52416,52413,52413,52410,52410,52404,52404,52401,52401,52396,52396,52381,52381,52368,52368,52325,52325,52324,52324,52323,52323,52322,52322,52321,52321,52320,52320,52319,52319,52318,52318,52317,52317,52316,52316,52391,52391,52315,52315,52314,52314,52313,52313,52312,52312,52311,52311,52310,52310,52309,52309,52308,52308,52307,52307,52306,52306,52305,52305,52380,52380,52379,52379,52304,52304,52303,52303,52302,52302,52301,52301,52300,52300,52299,52299,52298,52298,52297,52297,52296,52296,52378,52378,52386,52386,52390,52390,52398,52398,52295,52295,52294,52294,52293,52293,52292,52292,52291,52291,52290,52290,52289,52289,52288,52288,52287,52287,52286,52286,52395,52395,52423,52423,52421,52421,52285,52285,52284,52284,52283,52283,52282,52282,52281,52281,52280,52280,52279,52279,52278,52278,52367,52367,52403,52403,52377,52377,52366,52366,52277,52277,52276,52276,52275,52275,52274,52274,52273,52273,52272,52272,52271,52271,52270,52270,52269,52269,52268,52268,52267,52267,52266,52266,52265,52265,52264,52264,52385,52385,52394,52394,52365,52365,52263,52263,52262,52262,52261,52261,52384,52553,52558,52558,52552,52552,52543,52543,52535,52535,52534,52534,52533,52533,52532,52532,52531,52531,52530,52530,52529,52529,52551,52551,52528,52528,52527,52527,52526,52526,52525,52525,52524,52524,52523,52523,52522,52522,52521,52521,52520,52520,52519,52519,52518,52518,52517,52517,52516,52516,52515,52515,52514,52514,52513,52513,52512,52512,52511,52511,52510,52510,52509,52509,52508,52508,52507,52507,52506,52506,52550,52550,52505,52505,52504,52504,52503,52503,52502,52502,52501,52501,52500,52500,52499,52499,52549,52549,52557,52557,52498,52498,52497,52497,52496,52496,52495,52495,52494,52494,52548,52548,52564,52564,52566,52566,52570,52570,52572,52572,52569,52569,52567,52567,52565,52565,52542,52542,52493,52493,52492,52492,52491,52491,52490,52490,52489,52489,52488,52488,52487,52487,52486,52486,52485,52485,52541,52541,52556,52556,52547,52547,52540,52540,52484,52484,52483,52483,52482,52482,52481,52481,52480,52480,52479,52479,52478,52478,52546,52546,52555,52555,52563,52563,52539,52539,52477,52477,52476,52476,52475,52475,52474,52474,52473,52473,52472,52472,52573,52573,52571,52571,52568,52568,52471,52471,52470,52470,52469,52469,52538,52538,52562,52562,52468,52468,52467,52467,52466,52466,52465,52465,52464,52464,52463,52463,52462,52462,52461,52461,52460,52460,52554,52554,52545,52545,52459,52459,52458,52458,52457,52457,52537,52537,52456,52456,52455,52455,52454,52454,52453,52453,52452,52452,52451,52451,52450,52450,52544,52544,52561,52561,52560,52560,52449,52449,52448,52448,52447,52447,52446,52446,52445,52445,52444,52444,52443,52443,52442,52442,52441,52441,52440,52440,52439,52439,52438,52438,52437,52437,52536,52536,52436,52436,52435,52435,52434,52434,52559,52559,52433,52433,52432,52432,52431,52431,52430,52430,52429,52429,52428,52428,52427,52427,52426,52426,52425,52425,52553,52574,52633,52633,52632,52632,52631,52631,52630,52630,52629,52629,52628,52628,52627,52627,52626,52626,52639,52639,52644,52644,52643,52643,52638,52638,52625,52625,52624,52624,52623,52623,52642,52642,52646,52646,52648,52648,52622,52622,52621,52621,52620,52620,52619,52619,52618,52618,52617,52617,52616,52616,52615,52615,52614,52614,52613,52613,52612,52612,52611,52611,52610,52610,52609,52609,52608,52608,52607,52607,52606,52606,52605,52605,52604,52604,52641,52641,52637,52637,52603,52603,52602,52602,52601,52601,52645,52645,52600,52600,52599,52599,52598,52598,52597,52597,52596,52596,52595,52595,52594,52594,52593,52593,52592,52592,52591,52591,52590,52590,52589,52589,52588,52588,52587,52587,52586,52586,52585,52585,52636,52636,52635,52635,52584,52584,52583,52583,52582,52582,52647,52647,52640,52640,52581,52581,52580,52580,52579,52579,52634,52634,52578,52578,52577,52577,52576,52576,52575,52575,52574,52649,52906,52906,52905,52905,52904,52904,52934,52934,52960,52960,52977,52977,52989,52989,52976,52976,52903,52903,52902,52902,52901,52901,52900,52900,52899,52899,52898,52898,52897,52897,52896,52896,52895,52895,52894,52894,52893,52893,52892,52892,52891,52891,52890,52890,52889,52889,52888,52888,52887,52887,52933,52933,52886,52886,52885,52885,52884,52884,52959,52959,52883,52883,52882,52882,52881,52881,52880,52880,52879,52879,52958,52958,52988,52988,53010,53010,53009,53009,52932,52932,52878,52878,52877,52877,52876,52876,52875,52875,52874,52874,52873,52873,52872,52872,52957,52957,52975,52975,52956,52956,52871,52871,52870,52870,52869,52869,52931,52931,53001,53001,52987,52987,52955,52955,52868,52868,52867,52867,52866,52866,52930,52930,52974,52974,52973,52973,52865,52865,52864,52864,52863,52863,52862,52862,52861,52861,52954,52954,52860,52860,52859,52859,52858,52858,52857,52857,52856,52856,52855,52855,52854,52854,52853,52853,52852,52852,52851,52851,52850,52850,52929,52929,52986,52986,53008,53008,53016,53016,53024,53024,53023,53023,52953,52953,52928,52928,52849,52849,52848,52848,52847,52847,52985,52985,52972,52972,52846,52846,52845,52845,52844,52844,52843,52843,52842,52842,52952,52952,53000,53000,53015,53015,53014,53014,53007,53007,52927,52927,52841,52841,52840,52840,52839,52839,52838,52838,52837,52837,52836,52836,52835,52835,52834,52834,52833,52833,52832,52832,52831,52831,52984,52984,52999,52999,52951,52951,52926,52926,52830,52830,52829,52829,52828,52828,52827,52827,52826,52826,52825,52825,52824,52824,52823,52823,52822,52822,52925,52925,52821,52821,52820,52820,52819,52819,52950,52950,52971,52971,52924,52924,52818,52818,52817,52817,52816,52816,52949,52949,52815,52815,52814,52814,52813,52813,52812,52812,52811,52811,52810,52810,52809,52809,52808,52808,53013,53013,53037,53037,53042,53042,53035,53035,53006,53006,52998,52998,52807,52807,52806,52806,52805,52805,52804,52804,52803,52803,52802,52802,52801,52801,52948,52948,52800,52800,52799,52799,52798,52798,52797,52797,52796,52796,52795,52795,52794,52794,52793,52793,52792,52792,52791,52791,52790,52790,52789,52789,52788,52788,52787,52787,52947,52947,52970,52970,52997,52997,53005,53005,52969,52969,52923,52923,52786,52786,52785,52785,52784,52784,52946,52946,53028,53028,52783,52783,52782,52782,52781,52781,52780,52780,52779,52779,52778,52778,52777,52777,52776,52776,52775,52775,52774,52774,52773,52773,52772,52772,52771,52771,52770,52770,52769,52769,52768,52768,52767,52767,52766,52766,52765,52765,52996,52996,52764,52764,52763,52763,52762,52762,52761,52761,52760,52760,52759,52759,52945,52945,52944,52944,52758,52758,52757,52757,52756,52756,52755,52755,52754,52754,52922,52922,52753,52753,52752,52752,52751,52751,52750,52750,52749,52749,52748,52748,52747,52747,52943,52943,52942,52942,52746,52746,52745,52745,52744,52744,52921,52921,52920,52920,52743,52743,52742,52742,52741,52741,52740,52740,52739,52739,52738,52738,52737,52737,52736,52736,52735,52735,52734,52734,52733,52733,52919,52919,52732,52732,52731,52731,52730,52730,52941,52941,52995,52995,52918,52918,52729,52729,52728,52728,52727,52727,52726,52726,52725,52725,52724,52724,52723,52723,52722,52722,52968,52968,52721,52721,52720,52720,52719,52719,53027,53027,53034,53034,53050,53050,52917,52917,52718,52718,52717,52717,52716,52716,52715,52715,52714,52714,52916,52916,52967,52967,52983,52983,53004,53004,52713,52713,52712,52712,52711,52711,52710,52710,52709,52709,52708,52708,52707,52707,52706,52706,52705,52705,52704,52704,52915,52915,52940,52940,52703,52703,52702,52702,52701,52701,52914,52914,53011,53011,53022,53022,53026,53026,52913,52913,52700,52700,52699,52699,52698,52698,52697,52697,52696,52696,52966,52966,52994,52994,52982,52982,52939,52939,52912,52912,52695,52695,52694,52694,52693,52693,52965,52965,52964,52964,52938,52938,52692,52692,52691,52691,52690,52690,52689,52689,52688,52688,52963,52963,52911,52911,52687,52687,52686,52686,52685,52685,52937,52937,52981,52981,53052,53052,53047,53047,53041,53041,53003,53003,52910,52910,52684,52684,52683,52683,52682,52682,52681,52681,52680,52680,52909,52909,52962,52962,52980,52980,52993,52993,52908,52908,52679,52679,52678,52678,52677,52677,52676,52676,52675,52675,52674,52674,52673,52673,52936,52936,52979,52979,52992,52992,53002,53002,52672,52672,52671,52671,52670,52670,52669,52669,52668,52668,52667,52667,52666,52666,52665,52665,52664,52664,52663,52663,52961,52961,52991,52991,52935,52935,52907,52907,52662,52662,52661,52661,52660,52660,53033,53033,53021,53021,53018,53018,52990,52990,52978,52978,52659,52659,52658,52658,52657,52657,52656,52656,52655,52655,52654,52654,52653,52653,52652,52652,52651,52651,52650,52650,52649,53060,53068,53068,53067,53067,53066,53066,53065,53065,53064,53064,53063,53063,53069,53069,53062,53062,53061,53061,53060,53071,53070,53070,53079,53079,53078,53078,53077,53077,53076,53076,53075,53075,53074,53074,53073,53073,53072,53072,53071,53081,53080,53080,53086,53086,53085,53085,53084,53084,53083,53083,53082,53082,53081,53088,53087,53087,53115,53115,53114,53114,53113,53113,53112,53112,53111,53111,53110,53110,53109,53109,53118,53118,53117,53117,53108,53108,53107,53107,53106,53106,53105,53105,53104,53104,53103,53103,53102,53102,53101,53101,53100,53100,53116,53116,53120,53120,53121,53121,53099,53099,53098,53098,53097,53097,53096,53096,53095,53095,53119,53119,53094,53094,53093,53093,53092,53092,53091,53091,53090,53090,53089,53089,53088,53123,53122,53122,53129,53129,53128,53128,53127,53127,53126,53126,53125,53125,53124,53124,53123,53131,53130,53130,53150,53150,53149,53149,53148,53148,53147,53147,53146,53146,53145,53145,53144,53144,53143,53143,53142,53142,53141,53141,53140,53140,53139,53139,53138,53138,53137,53137,53136,53136,53135,53135,53134,53134,53133,53133,53132,53132,53131,53152,53151,53151,53156,53156,53155,53155,53154,53154,53153,53153,53152,53158,53157,53157,53163,53163,53162,53162,53161,53161,53160,53160,53159,53159,53158,53165,53164,53164,53171,53171,53170,53170,53169,53169,53168,53168,53167,53167,53166,53166,53165,53173,53172,53172,53179,53179,53178,53178,53177,53177,53176,53176,53175,53175,53174,53174,53173,53192,53191,53191,53190,53190,53189,53189,53188,53188,53187,53187,53186,53186,53185,53185,53184,53184,53183,53183,53182,53182,53181,53181,53180,53180,53192,53194,53193,53193,53201,53201,53200,53200,53199,53199,53198,53198,53203,53203,53202,53202,53197,53197,53196,53196,53195,53195,53194,53205,53204,53204,53215,53215,53214,53214,53213,53213,53212,53212,53211,53211,53210,53210,53209,53209,53208,53208,53207,53207,53206,53206,53205,38801,38802,38802,40654,40654,38803,38803,53219,53219,53218,53218,53217,53217,53216,53216,38801,53221,53220,53220,53259,53259,53258,53258,53257,53257,53256,53256,53255,53255,53254,53254,53262,53262,53263,53263,53266,53266,53267,53267,53268,53268,53264,53264,53261,53261,53253,53253,53252,53252,53251,53251,53250,53250,53249,53249,53248,53248,53247,53247,53265,53265,53260,53260,53246,53246,53245,53245,53244,53244,53243,53243,53242,53242,53241,53241,53240,53240,53239,53239,53238,53238,53237,53237,53236,53236,53235,53235,53234,53234,53233,53233,53232,53232,53231,53231,53230,53230,53229,53229,53228,53228,53227,53227,53226,53226,53225,53225,53224,53224,53223,53223,53222,53222,53221,53355,53354,53354,53353,53353,53352,53352,53351,53351,53350,53350,53349,53349,53364,53364,53348,53348,53347,53347,53346,53346,53345,53345,53344,53344,53343,53343,53342,53342,53369,53369,53341,53341,53340,53340,53339,53339,53338,53338,53337,53337,53336,53336,53335,53335,53363,53363,53334,53334,53333,53333,53332,53332,53331,53331,53330,53330,53329,53329,53328,53328,53327,53327,53326,53326,53362,53362,53325,53325,53324,53324,53323,53323,53322,53322,53321,53321,53320,53320,53319,53319,53318,53318,53317,53317,53316,53316,53315,53315,53366,53366,53361,53361,53314,53314,53313,53313,53312,53312,53365,53365,53311,53311,53310,53310,53309,53309,53308,53308,53307,53307,53306,53306,53305,53305,53360,53360,53304,53304,53303,53303,53302,53302,53301,53301,53300,53300,53299,53299,53373,53373,53298,53298,53297,53297,53296,53296,53359,53359,53295,53295,53294,53294,53293,53293,53292,53292,53291,53291,53290,53290,53289,53289,53358,53358,53368,53368,53372,53372,53374,53374,53357,53357,53288,53288,53287,53287,53286,53286,53356,53356,53285,53285,53284,53284,53283,53283,53371,53371,53282,53282,53281,53281,53280,53280,53279,53279,53278,53278,53277,53277,53276,53276,53367,53367,53376,53376,53370,53370,53275,53275,53274,53274,53273,53273,53272,53272,53271,53271,53270,53270,53269,53269,53355,35091,35092,35092,35093,35093,35094,35094,35095,35095,35096,35096,35097,35097,35098,35098,35099,35099,35100,35100,35101,35101,35102,35102,35103,35103,35104,35104,35176,35176,35105,35105,35106,35106,35107,35107,35108,35108,35109,35109,35110,35110,35111,35111,35112,35112,35113,35113,35114,35114,35115,35115,35116,35116,35117,35117,35118,35118,35119,35119,35120,35120,35121,35121,35122,35122,35123,35123,35124,35124,35125,35125,35126,35126,34823,34823,34824,34824,53588,53588,53587,53587,53586,53586,53585,53585,53584,53584,53605,53605,53583,53583,53582,53582,53581,53581,53631,53631,53627,53627,53580,53580,53579,53579,53578,53578,53577,53577,53576,53576,53575,53575,53574,53574,53604,53604,53630,53630,53640,53640,53634,53634,53573,53573,53572,53572,53571,53571,53570,53570,53569,53569,53568,53568,53567,53567,53566,53566,53565,53565,53564,53564,53623,53623,53622,53622,53563,53563,53562,53562,53561,53561,53560,53560,53559,53559,53558,53558,53557,53557,53556,53556,53555,53555,53554,53554,53626,53626,53553,53553,53552,53552,53551,53551,53550,53550,53549,53549,53548,53548,53547,53547,53546,53546,53545,53545,53544,53544,53543,53543,53542,53542,53541,53541,53540,53540,53539,53539,53538,53538,53629,53629,53639,53639,53537,53537,53536,53536,53535,53535,53603,53603,53534,53534,53533,53533,53532,53532,53621,53621,53531,53531,53530,53530,53529,53529,53528,53528,53527,53527,53526,53526,53525,53525,53602,53602,53524,53524,53523,53523,53522,53522,53620,53620,53633,53633,53521,53521,53520,53520,53519,53519,53518,53518,53517,53517,53516,53516,53515,53515,53619,53619,53628,53628,53638,53638,53601,53601,53514,53514,53513,53513,53512,53512,53511,53511,53510,53510,53509,53509,53508,53508,53618,53618,53507,53507,53506,53506,53505,53505,53637,53637,53600,53600,53504,53504,53503,53503,53502,53502,53501,53501,53500,53500,53499,53499,53498,53498,53497,53497,53496,53496,53495,53495,53625,53625,53599,53599,53494,53494,53493,53493,53492,53492,53491,53491,53490,53490,53489,53489,53488,53488,53487,53487,53486,53486,53598,53598,53617,53617,53597,53597,53485,53485,53484,53484,53483,53483,53482,53482,53481,53481,53480,53480,53479,53479,53478,53478,53477,53477,53476,53476,53475,53475,53596,53596,53474,53474,53473,53473,53472,53472,53471,53471,53470,53470,53469,53469,53468,53468,53467,53467,53616,53616,53615,53615,53466,53466,53465,53465,53464,53464,53463,53463,53462,53462,53461,53461,53460,53460,53459,53459,53458,53458,53457,53457,53456,53456,53455,53455,53454,53454,53595,53595,53453,53453,53452,53452,53451,53451,53450,53450,53449,53449,53448,53448,53594,53594,53447,53447,53446,53446,53445,53445,53614,53614,53444,53444,53443,53443,53442,53442,53441,53441,53440,53440,53439,53439,53438,53438,53437,53437,53613,53613,53593,53593,53436,53436,53435,53435,53434,53434,53592,53592,53433,53433,53432,53432,53431,53431,53430,53430,53429,53429,53428,53428,53427,53427,53612,53612,53426,53426,53425,53425,53424,53424,53423,53423,53422,53422,53421,53421,53420,53420,53419,53419,53418,53418,53611,53611,53610,53610,53417,53417,53416,53416,53415,53415,53414,53414,53413,53413,53412,53412,53411,53411,53410,53410,53591,53591,53409,53409,53408,53408,53407,53407,53406,53406,53405,53405,53609,53609,53632,53632,53590,53590,53404,53404,53403,53403,53402,53402,53608,53608,53401,53401,53400,53400,53399,53399,53398,53398,53397,53397,53396,53396,53395,53395,53394,53394,53393,53393,53392,53392,53391,53391,53390,53390,53389,53389,53607,53607,53388,53388,53387,53387,53386,53386,53589,53589,53624,53624,53606,53606,53385,53385,53384,53384,53383,53383,53382,53382,53381,53381,53380,53380,53379,53379,53378,53378,35091,53686,53685,53685,53695,53695,53694,53694,53693,53693,53692,53692,53691,53691,53690,53690,53689,53689,53688,53688,53687,53687,53686,53697,53696,53696,53704,53704,53703,53703,53702,53702,53701,53701,53700,53700,53699,53699,53698,53698,53697,53706,53705,53705,53710,53710,53709,53709,53708,53708,53707,53707,53706,53712,53711,53711,53717,53717,53716,53716,53715,53715,53714,53714,53713,53713,53712,53719,53718,53718,53726,53726,53725,53725,53724,53724,53723,53723,53722,53722,53721,53721,53720,53720,53719,53742,53743,53743,53741,53741,53740,53740,53739,53739,53738,53738,53737,53737,53736,53736,53735,53735,53734,53734,53733,53733,53732,53732,53731,53731,53730,53730,53729,53729,53728,53728,53727,53727,53742,53745,53744,53744,53752,53752,53751,53751,53750,53750,53749,53749,53748,53748,53747,53747,53746,53746,53745,53753,53762,53762,53761,53761,53760,53760,53764,53764,53763,53763,53759,53759,53758,53758,53757,53757,53756,53756,53755,53755,53754,53754,53753,53766,53765,53765,53774,53774,53773,53773,53772,53772,53771,53771,53770,53770,53769,53769,53768,53768,53767,53767,53766,53776,53775,53775,53781,53781,53780,53780,53779,53779,53778,53778,53777,53777,53776,53783,53782,53782,53789,53789,53788,53788,53787,53787,53786,53786,53785,53785,53784,53784,53783,53791,53790,53790,53815,53815,53814,53814,53813,53813,53812,53812,53811,53811,53810,53810,53809,53809,53808,53808,53807,53807,53806,53806,53805,53805,53804,53804,53803,53803,53802,53802,53801,53801,53800,53800,53799,53799,53798,53798,53797,53797,53796,53796,53795,53795,53794,53794,53793,53793,53792,53792,53791,53817,53816,53816,53828,53828,53827,53827,53826,53826,53825,53825,53824,53824,53823,53823,53822,53822,53821,53821,53820,53820,53819,53819,53818,53818,53817,53830,53829,53829,53848,53848,53847,53847,53846,53846,53845,53845,53844,53844,53843,53843,53842,53842,53841,53841,53840,53840,53839,53839,53838,53838,53837,53837,53836,53836,53835,53835,53834,53834,53833,53833,53832,53832,53831,53831,53830,53850,53849,53849,53867,53867,53866,53866,53865,53865,53864,53864,53863,53863,53862,53862,53861,53861,53860,53860,53859,53859,53858,53858,53857,53857,53856,53856,53855,53855,53854,53854,53853,53853,53852,53852,53851,53851,53850,53868,53881,53881,53880,53880,53879,53879,53878,53878,53877,53877,53876,53876,53875,53875,53874,53874,53873,53873,53872,53872,53871,53871,53870,53870,53869,53869,53868,53883,53882,53882,53889,53889,53888,53888,53887,53887,53886,53886,53885,53885,53884,53884,53883,53891,53890,53890,53896,53896,53895,53895,53894,53894,53893,53893,53892,53892,53891,53898,53897,53897,53902,53902,53901,53901,53900,53900,53899,53899,53898,53904,53903,53903,53908,53908,53907,53907,53906,53906,53905,53905,53904,53910,53909,53909,53913,53913,53912,53912,53911,53911,53910,53915,53914,53914,53953,53953,53952,53952,53956,53956,53951,53951,53950,53950,53949,53949,53948,53948,53947,53947,53946,53946,53945,53945,53944,53944,53943,53943,53955,53955,53942,53942,53941,53941,53940,53940,53939,53939,53938,53938,53937,53937,53936,53936,53935,53935,53934,53934,53933,53933,53932,53932,53931,53931,53930,53930,53929,53929,53928,53928,53927,53927,53926,53926,53954,53954,53925,53925,53924,53924,53923,53923,53922,53922,53921,53921,53920,53920,53919,53919,53918,53918,53917,53917,53916,53916,53915,53958,53957,53957,53967,53967,53966,53966,53968,53968,53965,53965,53964,53964,53963,53963,53962,53962,53961,53961,53960,53960,53959,53959,53958,53970,53969,53969,54886,54886,54962,54962,55023,55023,54885,54885,54884,54884,54883,54883,54882,54882,54881,54881,54880,54880,54879,54879,54878,54878,54877,54877,54876,54876,54961,54961,54875,54875,54874,54874,54873,54873,55235,55235,55197,55197,54872,54872,54871,54871,54870,54870,54869,54869,54868,54868,54867,54867,54866,54866,54865,54865,54864,54864,54863,54863,54862,54862,54861,54861,54860,54860,54859,54859,54858,54858,54857,54857,54856,54856,54855,54855,54854,54854,54853,54853,54960,54960,55085,55085,54852,54852,54851,54851,54850,54850,54849,54849,54848,54848,54847,54847,54846,54846,54845,54845,54844,54844,54843,54843,55022,55022,54842,54842,54841,54841,54840,54840,54959,54959,55276,55276,55231,55231,55058,55058,55021,55021,54958,54958,54839,54839,54838,54838,54837,54837,55057,55057,54836,54836,54835,54835,54834,54834,54833,54833,54832,54832,54831,54831,54830,54830,54829,54829,54957,54957,54828,54828,54827,54827,54826,54826,54825,54825,54824,54824,54823,54823,54822,54822,54821,54821,54820,54820,54819,54819,55020,55020,55084,55084,55019,55019,54818,54818,54817,54817,54816,54816,54815,54815,54814,54814,54813,54813,54812,54812,54956,54956,54811,54811,54810,54810,54809,54809,54808,54808,54807,54807,54806,54806,54955,54955,54954,54954,54805,54805,54804,54804,54803,54803,54802,54802,54801,54801,54800,54800,54799,54799,54798,54798,54953,54953,54797,54797,54796,54796,54795,54795,54794,54794,54793,54793,54792,54792,54791,54791,54790,54790,54789,54789,54788,54788,54787,54787,54786,54786,54785,54785,54784,54784,54783,54783,54782,54782,54781,54781,54780,54780,54779,54779,55018,55018,54778,54778,54777,54777,54776,54776,54775,54775,54774,54774,55017,55017,54952,54952,54773,54773,54772,54772,54771,54771,55016,55016,54951,54951,54770,54770,54769,54769,54768,54768,54767,54767,54766,54766,55015,55015,54765,54765,54764,54764,54763,54763,54762,54762,54761,54761,54760,54760,54759,54759,54758,54758,54950,54950,54757,54757,54756,54756,54755,54755,54754,54754,54753,54753,54949,54949,54752,54752,54751,54751,54750,54750,54749,54749,54748,54748,54747,54747,54746,54746,54745,54745,54744,54744,54743,54743,54742,54742,54741,54741,54740,54740,54948,54948,54739,54739,54738,54738,54737,54737,55014,55014,54947,54947,54736,54736,54735,54735,54734,54734,54733,54733,54732,54732,54731,54731,54730,54730,54729,54729,54728,54728,54727,54727,54726,54726,54725,54725,54946,54946,55013,55013,54724,54724,54723,54723,54722,54722,54721,54721,54720,54720,54719,54719,54718,54718,54717,54717,54716,54716,54715,54715,54714,54714,54713,54713,55012,55012,55056,55056,54712,54712,54711,54711,54710,54710,54709,54709,54708,54708,54707,54707,54706,54706,54705,54705,54945,54945,55011,55011,54944,54944,54704,54704,54703,54703,54702,54702,55055,55055,54701,54701,54700,54700,54699,54699,54698,54698,54697,54697,54696,54696,54695,54695,54694,54694,54693,54693,54692,54692,54691,54691,55010,55010,55081,55081,55080,55080,55054,55054,54690,54690,54689,54689,54688,54688,54687,54687,54686,54686,55009,55009,54685,54685,54684,54684,54683,54683,54682,54682,54681,54681,54680,54680,54679,54679,54678,54678,54677,54677,54676,54676,54675,54675,54943,54943,55053,55053,55008,55008,54674,54674,54673,54673,54672,54672,54942,54942,54671,54671,54670,54670,54669,54669,54668,54668,54667,54667,54666,54666,54665,54665,55052,55052,55079,55079,55146,55146,55007,55007,54941,54941,54664,54664,54663,54663,54662,54662,54661,54661,54660,54660,54940,54940,55006,55006,55078,55078,55109,55109,55125,55125,55179,55179,54659,54659,54658,54658,54657,54657,54939,54939,54656,54656,54655,54655,54654,54654,54653,54653,54652,54652,54938,54938,54651,54651,54650,54650,54649,54649,54648,54648,54647,54647,54646,54646,54645,54645,54644,54644,54643,54643,54937,54937,54642,54642,54641,54641,54640,54640,54639,54639,54638,54638,54637,54637,54636,54636,54635,54635,54936,54936,54634,54634,54633,54633,54632,54632,54631,54631,54630,54630,54629,54629,54628,54628,54627,54627,54626,54626,55051,55051,55108,55108,55106,55106,55005,55005,54625,54625,54624,54624,54623,54623,54622,54622,54621,54621,54620,54620,54619,54619,54618,54618,54617,54617,54616,54616,54615,54615,55178,55178,55221,55221,55254,55254,54614,54614,54613,54613,54612,54612,54611,54611,54610,54610,54935,54935,54609,54609,54608,54608,54607,54607,54606,54606,54605,54605,54934,54934,55050,55050,55076,55076,54604,54604,54603,54603,54602,54602,54933,54933,54601,54601,54600,54600,54599,54599,54598,54598,54597,54597,54596,54596,54595,54595,54594,54594,54593,54593,54592,54592,54591,54591,54590,54590,54589,54589,54588,54588,54587,54587,54586,54586,55004,55004,55049,55049,54932,54932,54585,54585,54584,54584,54583,54583,54582,54582,54581,54581,54580,54580,54579,54579,55003,55003,54578,54578,54577,54577,54576,54576,54931,54931,55216,55216,55348,55348,55048,55048,54930,54930,54575,54575,54574,54574,54573,54573,54572,54572,54571,54571,54570,54570,54569,54569,54568,54568,54567,54567,54566,54566,54565,54565,54564,54564,54563,54563,54562,54562,54561,54561,54560,54560,54559,54559,55172,55172,54558,54558,54557,54557,54556,54556,54555,54555,54554,54554,54553,54553,54552,54552,54551,54551,54550,54550,54549,54549,55002,55002,54929,54929,54548,54548,54547,54547,54546,54546,54545,54545,54544,54544,54928,54928,55105,55105,54543,54543,54542,54542,54541,54541,54540,54540,54539,54539,55001,55001,54538,54538,54537,54537,54536,54536,54927,54927,55104,55104,55047,55047,54535,54535,54534,54534,54533,54533,54532,54532,54531,54531,55000,55000,54530,54530,54529,54529,54528,54528,54999,54999,54926,54926,54527,54527,54526,54526,54525,54525,54925,54925,54524,54524,54523,54523,54522,54522,54998,54998,55764,55764,54997,54997,54924,54924,54521,54521,54520,54520,54519,54519,55683,55683,55651,55651,54923,54923,54518,54518,54517,54517,54516,54516,54515,54515,54514,54514,54513,54513,54512,54512,54922,54922,54511,54511,54510,54510,54509,54509,54508,54508,54507,54507,54506,54506,55170,55170,55045,55045,54505,54505,54504,54504,54503,54503,54502,54502,54501,54501,54500,54500,54499,54499,54921,54921,54498,54498,54497,54497,54496,54496,54495,54495,54494,54494,54493,54493,54920,54920,54492,54492,54491,54491,54490,54490,55074,55074,55044,55044,54995,54995,54489,54489,54488,54488,54487,54487,54919,54919,54486,54486,54485,54485,54484,54484,54483,54483,54482,54482,54481,54481,54480,54480,54479,54479,54478,54478,54477,54477,54476,54476,54475,54475,54994,54994,55043,55043,54993,54993,54474,54474,54473,54473,54472,54472,54471,54471,54470,54470,54469,54469,54468,54468,54467,54467,54992,54992,55042,55042,55101,55101,55041,55041,54918,54918,54466,54466,54465,54465,54464,54464,54991,54991,55213,55213,54463,54463,54462,54462,54461,54461,54460,54460,54459,54459,54458,54458,54457,54457,54456,54456,54455,54455,55040,55040,54917,54917,54454,54454,54453,54453,54452,54452,54990,54990,54916,54916,54451,54451,54450,54450,54449,54449,55038,55038,54448,54448,54447,54447,54446,54446,54445,54445,54444,54444,54443,54443,54442,54442,54989,54989,54441,54441,54440,54440,54439,54439,54438,54438,54437,54437,54436,54436,54435,54435,55100,55100,55121,55121,55140,55140,55037,55037,54915,54915,54434,54434,54433,54433,54432,54432,54431,54431,54430,54430,54429,54429,54428,54428,54427,54427,54426,54426,54425,54425,54424,54424,55036,55036,55099,55099,55035,55035,54914,54914,54423,54423,54422,54422,54421,54421,54988,54988,55072,55072,55211,55211,54420,54420,54419,54419,54418,54418,54417,54417,54416,54416,54415,54415,54414,54414,54413,54413,54412,54412,54411,54411,54410,54410,54409,54409,54408,54408,54407,54407,54406,54406,54405,54405,54404,54404,54403,54403,54987,54987,54913,54913,54402,54402,54401,54401,54400,54400,54399,54399,54398,54398,54397,54397,54396,54396,54395,54395,54394,54394,54393,54393,54392,54392,55120,55120,54391,54391,54390,54390,54389,54389,54388,54388,54387,54387,54386,54386,54385,54385,54384,54384,54383,54383,54382,54382,54381,54381,54380,54380,54379,54379,54378,54378,54377,54377,54376,54376,55032,55032,55068,55068,54986,54986,54375,54375,54374,54374,54373,54373,54912,54912,54372,54372,54371,54371,54370,54370,54369,54369,54368,54368,55097,55097,55138,55138,55249,55249,55204,55204,55067,55067,54911,54911,54367,54367,54366,54366,54365,54365,54364,54364,54363,54363,54362,54362,54361,54361,54360,54360,54910,54910,54359,54359,54358,54358,54357,54357,54356,54356,54355,54355,54354,54354,54353,54353,54352,54352,54351,54351,54350,54350,54349,54349,54348,54348,54347,54347,54346,54346,54345,54345,54344,54344,54343,54343,54342,54342,54341,54341,54340,54340,54339,54339,54338,54338,55116,55116,54337,54337,54336,54336,54335,54335,54334,54334,54333,54333,54332,54332,54331,54331,54330,54330,54985,54985,54329,54329,54328,54328,54327,54327,54326,54326,54325,54325,54324,54324,54909,54909,54323,54323,54322,54322,54321,54321,54320,54320,54319,54319,54984,54984,54318,54318,54317,54317,54316,54316,54315,54315,54314,54314,54313,54313,54312,54312,54311,54311,54310,54310,54309,54309,54308,54308,54307,54307,54306,54306,54305,54305,54304,54304,55162,55162,55066,55066,54303,54303,54302,54302,54301,54301,54300,54300,54299,54299,54298,54298,54297,54297,54908,54908,54296,54296,54295,54295,54294,54294,54983,54983,54293,54293,54292,54292,54291,54291,54290,54290,54289,54289,54288,54288,54287,54287,54286,54286,54982,54982,54981,54981,54285,54285,54284,54284,54283,54283,54282,54282,54281,54281,55095,55095,55094,55094,54280,54280,54279,54279,54278,54278,54277,54277,54276,54276,54275,54275,54274,54274,54273,54273,54980,54980,54272,54272,54271,54271,54270,54270,54269,54269,54268,54268,55030,55030,55115,55115,54267,54267,54266,54266,54265,54265,54264,54264,54263,54263,54262,54262,54261,54261,54260,54260,54259,54259,54258,54258,54257,54257,54256,54256,54255,54255,54254,54254,54253,54253,54252,54252,54251,54251,54250,54250,54979,54979,54249,54249,54248,54248,54247,54247,54246,54246,54245,54245,54244,54244,54243,54243,54242,54242,54241,54241,54240,54240,54239,54239,54238,54238,54907,54907,54237,54237,54236,54236,54235,54235,54234,54234,54233,54233,54906,54906,54232,54232,54231,54231,54230,54230,54229,54229,54228,54228,55065,55065,54978,54978,54227,54227,54226,54226,54225,54225,54224,54224,54223,54223,54222,54222,54221,54221,54220,54220,54219,54219,54218,54218,54217,54217,54216,54216,54215,54215,54214,54214,54905,54905,54977,54977,54976,54976,54904,54904,54213,54213,54212,54212,54211,54211,54210,54210,54209,54209,54208,54208,54207,54207,54206,54206,54205,54205,54204,54204,54903,54903,54203,54203,54202,54202,54201,54201,54200,54200,54199,54199,54198,54198,54197,54197,54975,54975,54196,54196,54195,54195,54194,54194,54193,54193,54192,54192,54191,54191,54190,54190,54974,54974,54189,54189,54188,54188,54187,54187,54186,54186,54185,54185,54902,54902,54184,54184,54183,54183,54182,54182,54181,54181,54180,54180,54179,54179,54178,54178,54177,54177,54176,54176,54175,54175,54174,54174,54173,54173,54172,54172,54171,54171,54170,54170,54169,54169,54168,54168,54167,54167,54166,54166,54973,54973,55093,55093,54165,54165,54164,54164,54163,54163,54162,54162,54161,54161,54160,54160,54159,54159,54158,54158,54972,54972,54157,54157,54156,54156,54155,54155,54154,54154,54153,54153,54971,54971,54152,54152,54151,54151,54150,54150,54149,54149,54148,54148,54901,54901,54147,54147,54146,54146,54145,54145,54900,54900,54144,54144,54143,54143,54142,54142,54970,54970,54141,54141,54140,54140,54139,54139,54899,54899,54898,54898,54138,54138,54137,54137,54136,54136,54135,54135,54134,54134,54133,54133,54132,54132,54131,54131,54130,54130,54129,54129,54128,54128,54127,54127,54126,54126,55064,55064,54897,54897,54125,54125,54124,54124,54123,54123,54122,54122,54121,54121,54120,54120,54119,54119,54118,54118,54969,54969,54968,54968,54117,54117,54116,54116,54115,54115,54114,54114,54113,54113,54112,54112,54111,54111,54110,54110,54109,54109,54108,54108,54896,54896,54107,54107,54106,54106,54105,54105,54104,54104,54103,54103,54102,54102,54101,54101,54100,54100,54099,54099,54895,54895,54098,54098,54097,54097,54096,54096,54967,54967,54095,54095,54094,54094,54093,54093,54092,54092,54091,54091,54090,54090,54089,54089,54088,54088,54894,54894,54087,54087,54086,54086,54085,54085,54966,54966,55092,55092,55029,55029,54084,54084,54083,54083,54082,54082,54081,54081,54080,54080,54965,54965,55159,55159,55132,55132,55091,55091,55028,55028,54079,54079,54078,54078,54077,54077,54076,54076,54075,54075,54074,54074,54073,54073,54072,54072,54071,54071,54070,54070,54893,54893,54069,54069,54068,54068,54067,54067,54066,54066,54065,54065,54064,54064,54063,54063,54062,54062,55063,55063,55062,55062,54061,54061,54060,54060,54059,54059,54058,54058,54057,54057,54056,54056,54055,54055,55027,55027,55374,55374,55439,55439,54054,54054,54053,54053,54052,54052,54051,54051,54050,54050,54049,54049,55090,55090,55061,55061,55026,55026,54048,54048,54047,54047,54046,54046,54045,54045,54044,54044,54964,54964,54963,54963,54043,54043,54042,54042,54041,54041,54040,54040,54039,54039,54038,54038,54037,54037,54036,54036,54892,54892,55060,55060,54035,54035,54034,54034,54033,54033,54032,54032,54031,54031,54030,54030,54029,54029,54028,54028,54027,54027,54026,54026,54025,54025,54024,54024,54891,54891,55842,55842,55771,55771,55731,55731,54890,54890,54023,54023,54022,54022,54021,54021,54020,54020,54019,54019,54018,54018,54017,54017,54016,54016,54015,54015,54014,54014,54013,54013,54012,54012,54011,54011,54889,54889,54010,54010,54009,54009,54008,54008,54007,54007,54006,54006,54005,54005,54004,54004,54003,54003,54002,54002,54001,54001,54000,54000,53999,53999,53998,53998,53997,53997,53996,53996,53995,53995,53994,53994,53993,53993,53992,53992,53991,53991,53990,53990,53989,53989,54888,54888,53988,53988,53987,53987,53986,53986,53985,53985,53984,53984,53983,53983,53982,53982,53981,53981,53980,53980,53979,53979,53978,53978,54887,54887,53977,53977,53976,53976,53975,53975,53974,53974,53973,53973,53972,53972,55025,55025,55087,55087,55024,55024,53971,53971,53970,55901,55900,55900,55919,55919,55918,55918,55917,55917,55916,55916,55915,55915,55914,55914,55913,55913,55921,55921,55920,55920,55912,55912,55911,55911,55910,55910,55909,55909,55908,55908,55907,55907,55906,55906,55905,55905,55904,55904,55903,55903,55902,55902,55901,55937,55936,55936,55935,55935,55934,55934,55933,55933,55932,55932,55931,55931,55930,55930,55929,55929,55928,55928,55927,55927,55926,55926,55925,55925,55924,55924,55923,55923,55922,55922,55937,55962,55966,55966,55961,55961,55960,55960,55959,55959,55958,55958,55957,55957,55956,55956,55955,55955,55965,55965,55968,55968,55969,55969,55967,55967,55964,55964,55954,55954,55953,55953,55952,55952,55951,55951,55950,55950,55949,55949,55948,55948,55947,55947,55946,55946,55945,55945,55963,55963,55944,55944,55943,55943,55942,55942,55941,55941,55940,55940,55939,55939,55938,55938,55962,55970,55989,55989,55988,55988,55987,55987,55986,55986,55985,55985,55984,55984,55983,55983,55982,55982,55981,55981,55980,55980,55979,55979,55990,55990,55978,55978,55977,55977,55976,55976,55975,55975,55974,55974,55973,55973,55972,55972,55971,55971,55970,55991,56018,56018,56017,56017,56016,56016,56015,56015,56014,56014,56013,56013,56012,56012,56011,56011,56010,56010,56009,56009,56008,56008,56007,56007,56006,56006,56005,56005,56004,56004,56003,56003,56002,56002,56001,56001,56000,56000,55999,55999,55998,55998,55997,55997,55996,55996,55995,55995,55994,55994,55993,55993,55992,55992,55991,56020,56019,56019,56028,56028,56027,56027,56026,56026,56025,56025,56024,56024,56023,56023,56022,56022,56021,56021,56020,56054,56053,56053,56052,56052,56051,56051,56050,56050,56049,56049,56048,56048,56047,56047,56056,56056,56055,56055,56046,56046,56045,56045,56044,56044,56043,56043,56042,56042,56041,56041,56040,56040,56039,56039,56038,56038,56037,56037,56036,56036,56035,56035,56034,56034,56033,56033,56032,56032,56031,56031,56030,56030,56029,56029,56054,56058,56057,56057,56062,56062,56061,56061,56060,56060,56059,56059,56058,56064,56063,56063,56069,56069,56068,56068,56067,56067,56066,56066,56065,56065,56064,56071,56070,56070,56076,56076,56075,56075,56074,56074,56073,56073,56072,56072,56071,56078,56077,56077,56083,56083,56082,56082,56081,56081,56080,56080,56079,56079,56078,56085,56084,56084,56095,56095,56094,56094,56093,56093,56092,56092,56091,56091,56090,56090,56089,56089,56088,56088,56087,56087,56086,56086,56085,56097,56096,56096,56102,56102,56101,56101,56100,56100,56099,56099,56098,56098,56097,56104,56103,56103,56108,56108,56107,56107,56106,56106,56105,56105,56104,56110,56109,56109,56115,56115,56114,56114,56113,56113,56112,56112,56111,56111,56110,56117,56116,56116,56123,56123,56122,56122,56121,56121,56120,56120,56119,56119,56118,56118,56117,56125,56124,56124,56129,56129,56128,56128,56127,56127,56126,56126,56125,56131,56130,56130,56135,56135,56134,56134,56133,56133,56132,56132,56131,56137,56136,56136,56140,56140,56139,56139,56138,56138,56137,56142,56141,56141,56151,56151,56150,56150,56149,56149,56148,56148,56147,56147,56146,56146,56145,56145,56144,56144,56152,56152,56143,56143,56142,56154,56153,56153,56162,56162,56161,56161,56160,56160,56159,56159,56158,56158,56163,56163,56157,56157,56156,56156,56155,56155,56154,56165,56164,56164,56170,56170,56169,56169,56168,56168,56167,56167,56166,56166,56165,56172,56171,56171,56180,56180,56179,56179,56178,56178,56177,56177,56176,56176,56175,56175,56174,56174,56173,56173,56172,56182,56181,56181,56185,56185,56184,56184,56183,56183,56182,56187,56186,56186,56192,56192,56191,56191,56190,56190,56189,56189,56188,56188,56187,56193,56199,56199,56198,56198,56197,56197,56196,56196,56195,56195,56194,56194,56193,56201,56200,56200,56208,56208,56207,56207,56206,56206,56205,56205,56204,56204,56203,56203,56202,56202,56201,56210,56209,56209,56218,56218,56217,56217,56216,56216,56215,56215,56214,56214,56213,56213,56212,56212,56211,56211,56210,56220,56219,56219,56225,56225,56224,56224,56223,56223,56222,56222,56221,56221,56220,56227,56226,56226,56235,56235,56234,56234,56233,56233,56232,56232,56231,56231,56230,56230,56229,56229,56228,56228,56227,56237,56236,56236,56242,56242,56241,56241,56240,56240,56239,56239,56238,56238,56237,56369,56384,56384,56368,56368,56367,56367,56366,56366,56383,56383,56365,56365,56364,56364,56363,56363,56362,56362,56361,56361,56360,56360,56392,56392,56402,56402,56398,56398,56391,56391,56382,56382,56359,56359,56358,56358,56357,56357,56356,56356,56355,56355,56354,56354,56353,56353,56352,56352,56381,56381,56351,56351,56350,56350,56349,56349,56380,56380,56390,56390,56348,56348,56347,56347,56346,56346,56379,56379,56345,56345,56344,56344,56343,56343,56342,56342,56341,56341,56378,56378,56340,56340,56339,56339,56338,56338,56337,56337,56336,56336,56335,56335,56334,56334,56333,56333,56377,56377,56332,56332,56331,56331,56330,56330,56329,56329,56328,56328,56327,56327,56326,56326,56325,56325,56389,56389,56376,56376,56324,56324,56323,56323,56322,56322,56401,56401,56388,56388,56321,56321,56320,56320,56319,56319,56375,56375,56387,56387,56374,56374,56318,56318,56317,56317,56316,56316,56397,56397,56315,56315,56314,56314,56313,56313,56312,56312,56311,56311,56310,56310,56309,56309,56308,56308,56307,56307,56306,56306,56386,56386,56396,56396,56400,56400,56403,56403,56395,56395,56305,56305,56304,56304,56303,56303,56302,56302,56301,56301,56373,56373,56300,56300,56299,56299,56298,56298,56297,56297,56296,56296,56295,56295,56294,56294,56293,56293,56292,56292,56291,56291,56399,56399,56290,56290,56289,56289,56288,56288,56372,56372,56287,56287,56286,56286,56285,56285,56284,56284,56283,56283,56282,56282,56281,56281,56280,56280,56279,56279,56278,56278,56277,56277,56276,56276,56275,56275,56394,56394,56274,56274,56273,56273,56272,56272,56271,56271,56270,56270,56269,56269,56385,56385,56268,56268,56267,56267,56266,56266,56265,56265,56264,56264,56263,56263,56262,56262,56261,56261,56260,56260,56393,56393,56371,56371,56259,56259,56258,56258,56257,56257,56256,56256,56255,56255,56254,56254,56370,56370,56253,56253,56252,56252,56251,56251,56250,56250,56249,56249,56248,56248,56247,56247,56246,56246,56245,56245,56244,56244,56243,56243,56369,56406,56405,56405,56421,56421,56420,56420,56419,56419,56418,56418,56417,56417,56416,56416,56415,56415,56414,56414,56413,56413,56412,56412,56411,56411,56410,56410,56409,56409,56408,56408,56407,56407,56406,56423,56422,56422,56441,56441,56440,56440,56439,56439,56438,56438,56437,56437,56436,56436,56435,56435,56434,56434,56433,56433,56432,56432,56431,56431,56430,56430,56429,56429,56428,56428,56442,56442,56427,56427,56426,56426,56425,56425,56424,56424,56423,56444,56443,56443,56456,56456,56455,56455,56454,56454,56453,56453,56452,56452,56451,56451,56450,56450,56449,56449,56448,56448,56447,56447,56446,56446,56445,56445,56444,56458,56457,56457,56465,56465,56464,56464,56463,56463,56462,56462,56461,56461,56460,56460,56459,56459,56458,56467,56466,56466,56474,56474,56473,56473,56472,56472,56471,56471,56470,56470,56469,56469,56468,56468,56467,56476,56475,56475,56480,56480,56479,56479,56478,56478,56477,56477,56476,56482,56481,56481,56492,56492,56491,56491,56490,56490,56489,56489,56488,56488,56487,56487,56486,56486,56485,56485,56484,56484,56483,56483,56482,56494,56493,56493,56498,56498,56497,56497,56496,56496,56495,56495,56494,56500,56499,56499,56504,56504,56503,56503,56502,56502,56501,56501,56500,56506,56505,56505,56553,56553,56552,56552,56551,56551,56559,56559,56550,56550,56549,56549,56548,56548,56547,56547,56546,56546,56545,56545,56544,56544,56543,56543,56542,56542,56541,56541,56540,56540,56539,56539,56538,56538,56537,56537,56536,56536,56535,56535,56534,56534,56560,56560,56558,56558,56555,56555,56533,56533,56532,56532,56531,56531,56530,56530,56529,56529,56528,56528,56527,56527,56557,56557,56526,56526,56525,56525,56524,56524,56523,56523,56522,56522,56521,56521,56520,56520,56519,56519,56518,56518,56517,56517,56516,56516,56515,56515,56514,56514,56513,56513,56556,56556,56512,56512,56511,56511,56510,56510,56509,56509,56508,56508,56554,56554,56507,56507,56506,56562,56561,56561,56602,56602,56601,56601,56600,56600,56599,56599,56598,56598,56597,56597,56596,56596,56595,56595,56594,56594,56593,56593,56592,56592,56591,56591,56590,56590,56589,56589,56605,56605,56588,56588,56587,56587,56586,56586,56585,56585,56584,56584,56583,56583,56604,56604,56582,56582,56581,56581,56580,56580,56579,56579,56578,56578,56577,56577,56576,56576,56603,56603,56575,56575,56574,56574,56573,56573,56572,56572,56571,56571,56570,56570,56569,56569,56568,56568,56567,56567,56566,56566,56565,56565,56564,56564,56563,56563,56562,56606,56615,56615,56614,56614,56613,56613,56612,56612,56611,56611,56610,56610,56609,56609,56608,56608,56607,56607,56606,56617,56616,56616,56621,56621,56620,56620,56619,56619,56618,56618,56617,56623,56622,56622,56637,56637,56636,56636,56639,56639,56640,56640,56638,56638,56635,56635,56634,56634,56633,56633,56632,56632,56631,56631,56630,56630,56629,56629,56628,56628,56627,56627,56626,56626,56625,56625,56624,56624,56623,56642,56641,56641,56647,56647,56646,56646,56645,56645,56644,56644,56643,56643,56642,56649,56648,56648,56653,56653,56652,56652,56651,56651,56650,56650,56649,56655,56654,56654,56659,56659,56658,56658,56657,56657,56656,56656,56655,56660,56671,56671,56670,56670,56669,56669,56668,56668,56667,56667,56666,56666,56665,56665,56664,56664,56663,56663,56662,56662,56661,56661,56660,56673,56672,56672,56682,56682,56681,56681,56680,56680,56679,56679,56678,56678,56677,56677,56676,56676,56675,56675,56684,56684,56683,56683,56674,56674,56673,56686,56685,56685,56695,56695,56694,56694,56697,56697,56696,56696,56693,56693,56692,56692,56691,56691,56690,56690,56689,56689,56688,56688,56687,56687,56686,56699,56698,56698,56704,56704,56703,56703,56702,56702,56701,56701,56700,56700,56699,56706,56705,56705,56710,56710,56709,56709,56708,56708,56707,56707,56706,56712,56711,56711,56718,56718,56717,56717,56716,56716,56715,56715,56714,56714,56713,56713,56712,56720,56719,56719,56724,56724,56723,56723,56722,56722,56721,56721,56720,56726,56725,56725,56730,56730,56729,56729,56728,56728,56727,56727,56726,56732,56731,56731,56736,56736,56735,56735,56734,56734,56733,56733,56732,56738,56737,56737,56740,56740,56739,56739,56738,56742,56741,56741,56748,56748,56747,56747,56746,56746,56745,56745,56744,56744,56743,56743,56742,56750,56749,56749,56754,56754,56753,56753,56752,56752,56751,56751,56750,56755,56764,56764,56763,56763,56762,56762,56761,56761,56760,56760,56759,56759,56758,56758,56757,56757,56756,56756,56755,57068,57051,57051,57031,57031,57030,57030,57029,57029,57028,57028,57027,57027,57026,57026,57025,57025,57024,57024,57023,57023,57022,57022,57021,57021,57020,57020,57019,57019,57018,57018,57017,57017,57067,57067,57050,57050,57016,57016,57015,57015,57014,57014,57013,57013,57012,57012,57011,57011,57049,57049,57010,57010,57009,57009,57008,57008,57007,57007,57006,57006,57005,57005,57004,57004,57003,57003,57002,57002,57085,57085,57081,57081,57001,57001,57000,57000,56999,56999,56998,56998,56997,56997,57066,57066,57065,57065,57048,57048,56996,56996,56995,56995,56994,56994,56993,56993,56992,56992,56991,56991,56990,56990,56989,56989,56988,56988,56987,56987,56986,56986,56985,56985,56984,56984,56983,56983,57064,57064,56982,56982,56981,56981,56980,56980,56979,56979,56978,56978,56977,56977,56976,56976,56975,56975,57080,57080,56974,56974,56973,56973,56972,56972,56971,56971,56970,56970,57063,57063,56969,56969,56968,56968,56967,56967,57047,57047,57079,57079,57078,57078,56966,56966,56965,56965,56964,56964,56963,56963,56962,56962,56961,56961,56960,56960,56959,56959,56958,56958,57046,57046,56957,56957,56956,56956,56955,56955,57077,57077,57087,57087,57084,57084,57076,57076,56954,56954,56953,56953,56952,56952,56951,56951,56950,56950,57062,57062,57083,57083,56949,56949,56948,56948,56947,56947,56946,56946,56945,56945,57045,57045,56944,56944,56943,56943,56942,56942,57044,57044,56941,56941,56940,56940,56939,56939,56938,56938,56937,56937,56936,56936,57043,57043,56935,56935,56934,56934,56933,56933,57042,57042,56932,56932,56931,56931,56930,56930,57041,57041,56929,56929,56928,56928,56927,56927,57040,57040,56926,56926,56925,56925,56924,56924,56923,56923,56922,56922,56921,56921,56920,56920,57039,57039,56919,56919,56918,56918,56917,56917,56916,56916,56915,56915,56914,56914,56913,56913,56912,56912,56911,56911,56910,56910,57038,57038,56909,56909,56908,56908,56907,56907,56906,56906,56905,56905,56904,56904,56903,56903,56902,56902,56901,56901,56900,56900,57075,57075,57061,57061,56899,56899,56898,56898,56897,56897,57037,57037,57074,57074,57036,57036,56896,56896,56895,56895,56894,56894,56893,56893,56892,56892,56891,56891,56890,56890,57060,57060,56889,56889,56888,56888,56887,56887,57035,57035,56886,56886,56885,56885,56884,56884,56883,56883,56882,56882,56881,56881,56880,56880,57059,57059,56879,56879,56878,56878,56877,56877,56876,56876,56875,56875,56874,56874,56873,56873,56872,56872,56871,56871,56870,56870,56869,56869,56868,56868,56867,56867,56866,56866,56865,56865,56864,56864,56863,56863,56862,56862,56861,56861,56860,56860,56859,56859,56858,56858,56857,56857,56856,56856,56855,56855,56854,56854,57034,57034,56853,56853,56852,56852,56851,56851,56850,56850,56849,56849,57073,57073,56848,56848,56847,56847,56846,56846,56845,56845,56844,56844,56843,56843,56842,56842,56841,56841,56840,56840,56839,56839,56838,56838,56837,56837,56836,56836,56835,56835,56834,56834,56833,56833,56832,56832,56831,56831,57058,57058,56830,56830,56829,56829,56828,56828,57033,57033,56827,56827,56826,56826,56825,56825,56824,56824,56823,56823,56822,56822,56821,56821,56820,56820,56819,56819,56818,56818,56817,56817,56816,56816,56815,56815,56814,56814,56813,56813,56812,56812,56811,56811,56810,56810,56809,56809,56808,56808,57057,57057,56807,56807,56806,56806,56805,56805,56804,56804,56803,56803,56802,56802,56801,56801,56800,56800,56799,56799,56798,56798,56797,56797,56796,56796,56795,56795,56794,56794,56793,56793,56792,56792,56791,56791,57072,57072,57056,57056,56790,56790,56789,56789,56788,56788,56787,56787,56786,56786,56785,56785,56784,56784,56783,56783,56782,56782,56781,56781,56780,56780,56779,56779,56778,56778,56777,56777,57055,57055,57071,57071,57070,57070,57054,57054,56776,56776,56775,56775,56774,56774,56773,56773,56772,56772,56771,56771,56770,56770,56769,56769,56768,56768,57053,57053,57069,57069,57086,57086,57082,57082,57052,57052,56767,56767,56766,56766,56765,56765,57032,57032,57068,57101,57100,57100,57107,57107,57106,57106,57105,57105,57104,57104,57103,57103,57102,57102,57101,57109,57108,57108,57118,57118,57117,57117,57116,57116,57115,57115,57114,57114,57113,57113,57112,57112,57111,57111,57110,57110,57109,57120,57119,57119,57123,57123,57122,57122,57121,57121,57120,57125,57124,57124,57149,57149,57148,57148,57147,57147,57146,57146,57145,57145,57144,57144,57143,57143,57142,57142,57141,57141,57140,57140,57139,57139,57150,57150,57138,57138,57137,57137,57136,57136,57135,57135,57134,57134,57133,57133,57132,57132,57131,57131,57130,57130,57129,57129,57128,57128,57127,57127,57126,57126,57125,57152,57151,57151,57162,57162,57161,57161,57160,57160,57159,57159,57158,57158,57157,57157,57156,57156,57155,57155,57154,57154,57153,57153,57152,57164,57163,57163,57390,57390,57376,57376,57375,57375,57374,57374,57373,57373,57372,57372,57371,57371,57370,57370,57369,57369,57368,57368,57367,57367,57366,57366,57365,57365,57364,57364,57406,57406,57415,57415,57431,57431,57363,57363,57362,57362,57361,57361,57360,57360,57359,57359,57358,57358,57357,57357,57356,57356,57355,57355,57354,57354,57353,57353,57352,57352,57351,57351,57350,57350,57349,57349,57348,57348,57347,57347,57346,57346,57345,57345,57344,57344,57343,57343,57342,57342,57341,57341,57340,57340,57339,57339,57389,57389,57338,57338,57337,57337,57336,57336,57335,57335,57334,57334,57333,57333,57332,57332,57331,57331,57330,57330,57329,57329,57405,57405,57450,57450,57446,57446,57442,57442,57388,57388,57328,57328,57327,57327,57326,57326,57430,57430,57422,57422,57414,57414,57325,57325,57324,57324,57323,57323,57322,57322,57321,57321,57320,57320,57319,57319,57318,57318,57317,57317,57316,57316,57315,57315,57387,57387,57314,57314,57313,57313,57312,57312,57404,57404,57429,57429,57403,57403,57386,57386,57311,57311,57310,57310,57309,57309,57413,57413,57461,57461,57460,57460,57459,57459,57458,57458,57437,57437,57385,57385,57308,57308,57307,57307,57306,57306,57305,57305,57304,57304,57303,57303,57302,57302,57301,57301,57300,57300,57299,57299,57298,57298,57402,57402,57401,57401,57297,57297,57296,57296,57295,57295,57294,57294,57293,57293,57428,57428,57434,57434,57427,57427,57292,57292,57291,57291,57290,57290,57289,57289,57288,57288,57400,57400,57412,57412,57421,57421,57436,57436,57441,57441,57445,57445,57449,57449,57453,57453,57455,57455,57452,57452,57384,57384,57287,57287,57286,57286,57285,57285,57284,57284,57283,57283,57282,57282,57281,57281,57280,57280,57383,57383,57279,57279,57278,57278,57277,57277,57276,57276,57275,57275,57274,57274,57273,57273,57272,57272,57271,57271,57270,57270,57269,57269,57268,57268,57267,57267,57399,57399,57398,57398,57266,57266,57265,57265,57264,57264,57263,57263,57262,57262,57426,57426,57411,57411,57261,57261,57260,57260,57259,57259,57258,57258,57257,57257,57256,57256,57255,57255,57254,57254,57253,57253,57420,57420,57425,57425,57439,57439,57440,57440,57444,57444,57448,57448,57443,57443,57252,57252,57251,57251,57250,57250,57249,57249,57248,57248,57382,57382,57247,57247,57246,57246,57245,57245,57244,57244,57243,57243,57242,57242,57241,57241,57240,57240,57239,57239,57238,57238,57237,57237,57397,57397,57419,57419,57424,57424,57236,57236,57235,57235,57234,57234,57233,57233,57232,57232,57231,57231,57230,57230,57229,57229,57228,57228,57227,57227,57226,57226,57225,57225,57224,57224,57223,57223,57222,57222,57221,57221,57220,57220,57219,57219,57218,57218,57217,57217,57216,57216,57215,57215,57214,57214,57213,57213,57212,57212,57456,57456,57211,57211,57210,57210,57209,57209,57208,57208,57207,57207,57206,57206,57205,57205,57381,57381,57204,57204,57203,57203,57202,57202,57396,57396,57410,57410,57409,57409,57380,57380,57201,57201,57200,57200,57199,57199,57395,57395,57418,57418,57408,57408,57394,57394,57198,57198,57197,57197,57196,57196,57195,57195,57194,57194,57432,57432,57417,57417,57193,57193,57192,57192,57191,57191,57190,57190,57189,57189,57188,57188,57187,57187,57379,57379,57186,57186,57185,57185,57184,57184,57393,57393,57407,57407,57438,57438,57435,57435,57423,57423,57416,57416,57183,57183,57182,57182,57181,57181,57180,57180,57179,57179,57178,57178,57177,57177,57176,57176,57175,57175,57174,57174,57392,57392,57391,57391,57378,57378,57173,57173,57172,57172,57171,57171,57170,57170,57169,57169,57377,57377,57168,57168,57167,57167,57166,57166,57165,57165,57164,57463,57462,57462,57469,57469,57468,57468,57467,57467,57466,57466,57465,57465,57464,57464,57463,57471,57470,57470,57490,57490,57489,57489,57488,57488,57491,57491,57487,57487,57486,57486,57485,57485,57484,57484,57483,57483,57482,57482,57481,57481,57480,57480,57479,57479,57478,57478,57477,57477,57476,57476,57475,57475,57474,57474,57473,57473,57472,57472,57471,57493,57492,57492,57516,57516,57515,57515,57514,57514,57518,57518,57521,57521,57517,57517,57513,57513,57512,57512,57511,57511,57510,57510,57509,57509,57508,57508,57507,57507,57506,57506,57505,57505,57504,57504,57503,57503,57502,57502,57501,57501,57500,57500,57519,57519,57520,57520,57499,57499,57498,57498,57497,57497,57496,57496,57495,57495,57494,57494,57493,57523,57522,57522,57527,57527,57526,57526,57525,57525,57524,57524,57523,57529,57528,57528,57535,57535,57534,57534,57533,57533,57532,57532,57531,57531,57530,57530,57529,57537,57536,57536,57543,57543,57542,57542,57541,57541,57540,57540,57539,57539,57538,57538,57537,57544,57601,57601,57600,57600,57599,57599,57598,57598,57607,57607,57597,57597,57596,57596,57595,57595,57594,57594,57593,57593,57592,57592,57591,57591,57590,57590,57589,57589,57588,57588,57587,57587,57586,57586,57585,57585,57584,57584,57583,57583,57582,57582,57581,57581,57580,57580,57579,57579,57578,57578,57577,57577,57576,57576,57575,57575,57574,57574,57573,57573,57572,57572,57606,57606,57571,57571,57570,57570,57569,57569,57568,57568,57567,57567,57566,57566,57565,57565,57605,57605,57564,57564,57563,57563,57562,57562,57561,57561,57560,57560,57559,57559,57558,57558,57557,57557,57556,57556,57555,57555,57604,57604,57603,57603,57554,57554,57553,57553,57552,57552,57551,57551,57550,57550,57549,57549,57602,57602,57548,57548,57547,57547,57546,57546,57545,57545,57544,57610,57609,57609,57615,57615,57614,57614,57613,57613,57612,57612,57611,57611,57610,57617,57616,57616,57620,57620,57619,57619,57618,57618,57617,57633,57634,57634,57631,57631,57630,57630,57629,57629,57628,57628,57627,57627,57626,57626,57625,57625,57624,57624,57623,57623,57622,57622,57621,57621,57632,57632,57633,57636,57635,57635,57646,57646,57645,57645,57644,57644,57643,57643,57642,57642,57641,57641,57640,57640,57647,57647,57639,57639,57638,57638,57637,57637,57636,57649,57648,57648,57664,57664,57663,57663,57662,57662,57661,57661,57660,57660,57665,57665,57659,57659,57658,57658,57657,57657,57656,57656,57655,57655,57654,57654,57653,57653,57652,57652,57651,57651,57650,57650,57649,57667,57666,57666,57673,57673,57672,57672,57671,57671,57670,57670,57669,57669,57668,57668,57667,57675,57674,57674,57680,57680,57679,57679,57678,57678,57677,57677,57676,57676,57675,57682,57681,57681,57688,57688,57687,57687,57686,57686,57685,57685,57684,57684,57683,57683,57682,57690,57689,57689,57695,57695,57694,57694,57693,57693,57692,57692,57691,57691,57690,57696,57710,57710,57709,57709,57708,57708,57707,57707,57706,57706,57705,57705,57704,57704,57703,57703,57702,57702,57701,57701,57700,57700,57699,57699,57698,57698,57697,57697,57696,57712,57711,57711,57718,57718,57717,57717,57716,57716,57715,57715,57714,57714,57713,57713,57712,57720,57719,57719,57723,57723,57722,57722,57721,57721,57720,57725,57724,57724,57729,57729,57728,57728,57727,57727,57726,57726,57725,57731,57730,57730,57738,57738,57737,57737,57736,57736,57735,57735,57734,57734,57733,57733,57732,57732,57731,57740,57739,57739,57744,57744,57743,57743,57742,57742,57741,57741,57740,57746,57745,57745,57757,57757,57756,57756,57755,57755,57754,57754,57753,57753,57752,57752,57751,57751,57750,57750,57749,57749,57748,57748,57758,57758,57760,57760,57759,57759,57747,57747,57746,57762,57761,57761,57768,57768,57767,57767,57766,57766,57765,57765,57764,57764,57763,57763,57762,57770,57769,57769,57773,57773,57772,57772,57771,57771,57770,57775,57774,57774,57781,57781,57780,57780,57779,57779,57778,57778,57777,57777,57776,57776,57775,57782,57792,57792,57791,57791,57790,57790,57789,57789,57793,57793,57788,57788,57787,57787,57786,57786,57785,57785,57784,57784,57783,57783,57782,57795,57794,57794,57797,57797,57796,57796,57795,57798,57804,57804,57803,57803,57802,57802,57801,57801,57800,57800,57799,57799,57798,57806,57805,57805,57808,57808,57807,57807,57806,57810,57809,57809,57814,57814,57813,57813,57812,57812,57811,57811,57810,57816,57815,57815,57819,57819,57818,57818,57817,57817,57816,57820,57825,57825,57824,57824,57823,57823,57822,57822,57821,57821,57820,57827,57826,57826,57837,57837,57836,57836,57835,57835,57834,57834,57833,57833,57832,57832,57831,57831,57830,57830,57829,57829,57828,57828,57827,57839,57838,57838,57842,57842,57841,57841,57840,57840,57839,57843,57849,57849,57848,57848,57847,57847,57846,57846,57845,57845,57844,57844,57843,57851,57850,57850,57857,57857,57856,57856,57855,57855,57854,57854,57853,57853,57852,57852,57851,57858,57864,57864,57863,57863,57865,57865,57862,57862,57861,57861,57860,57860,57859,57859,57858,57867,57866,57866,57877,57877,57876,57876,57875,57875,57874,57874,57873,57873,57878,57878,57872,57872,57871,57871,57870,57870,57869,57869,57868,57868,57867,57880,57879,57879,57888,57888,57887,57887,57886,57886,57885,57885,57884,57884,57883,57883,57882,57882,57889,57889,57881,57881,57880,57891,57890,57890,57897,57897,57896,57896,57895,57895,57894,57894,57893,57893,57892,57892,57891,57899,57898,57898,57907,57907,57906,57906,57905,57905,57904,57904,57903,57903,57902,57902,57901,57901,57900,57900,57899,57909,57908,57908,57913,57913,57912,57912,57911,57911,57910,57910,57909,57926,57923,57923,57922,57922,57921,57921,57920,57920,57919,57919,57925,57925,57918,57918,57917,57917,57916,57916,57915,57915,57914,57914,57924,57924,57926,57928,57927,57927,57932,57932,57931,57931,57930,57930,57929,57929,57928,57934,57933,57933,57940,57940,57939,57939,57938,57938,57937,57937,57936,57936,57935,57935,57934,57942,57941,57941,57950,57950,57949,57949,57948,57948,57947,57947,57946,57946,57952,57952,57953,57953,57951,57951,57945,57945,57944,57944,57943,57943,57942,57955,57954,57954,57963,57963,57962,57962,57961,57961,57960,57960,57959,57959,57958,57958,57957,57957,57956,57956,57955,57965,57964,57964,57971,57971,57970,57970,57969,57969,57968,57968,57967,57967,57966,57966,57965,57973,57972,57972,57980,57980,57979,57979,57978,57978,57977,57977,57976,57976,57975,57975,57974,57974,57973,57993,57992,57992,57991,57991,57990,57990,57989,57989,57988,57988,57987,57987,57986,57986,57985,57985,57984,57984,57983,57983,57982,57982,57981,57981,57993,57995,57994,57994,58004,58004,58003,58003,58002,58002,58001,58001,58006,58006,58007,58007,58005,58005,58000,58000,57999,57999,57998,57998,57997,57997,57996,57996,57995,58009,58008,58008,58024,58024,58023,58023,58022,58022,58021,58021,58020,58020,58019,58019,58018,58018,58017,58017,58016,58016,58015,58015,58026,58026,58029,58029,58030,58030,58028,58028,58027,58027,58025,58025,58014,58014,58013,58013,58012,58012,58011,58011,58010,58010,58009,58032,58031,58031,58037,58037,58036,58036,58039,58039,58040,58040,58038,58038,58035,58035,58034,58034,58033,58033,58032,58042,58041,58041,58046,58046,58045,58045,58044,58044,58043,58043,58042,58048,58047,58047,58055,58055,58054,58054,58053,58053,58052,58052,58051,58051,58050,58050,58049,58049,58048,58056,58066,58066,58065,58065,58064,58064,58063,58063,58062,58062,58061,58061,58060,58060,58059,58059,58058,58058,58057,58057,58056,58068,58067,58067,58072,58072,58071,58071,58070,58070,58069,58069,58068,58074,58073,58073,58092,58092,58091,58091,58090,58090,58089,58089,58088,58088,58095,58095,58094,58094,58087,58087,58086,58086,58085,58085,58097,58097,58093,58093,58084,58084,58083,58083,58082,58082,58081,58081,58080,58080,58079,58079,58078,58078,58096,58096,58077,58077,58076,58076,58075,58075,58074,58099,58098,58098,58107,58107,58106,58106,58105,58105,58104,58104,58103,58103,58102,58102,58101,58101,58100,58100,58099,58122,58121,58121,58119,58119,58118,58118,58117,58117,58116,58116,58115,58115,58114,58114,58113,58113,58112,58112,58111,58111,58120,58120,58110,58110,58109,58109,58108,58108,58122,58123,58131,58131,58130,58130,58129,58129,58128,58128,58127,58127,58126,58126,58125,58125,58124,58124,58123,58133,58132,58132,58136,58136,58135,58135,58134,58134,58133,58138,58137,58137,58142,58142,58141,58141,58140,58140,58139,58139,58138,58144,58143,58143,58150,58150,58149,58149,58148,58148,58147,58147,58146,58146,58145,58145,58144,58152,58151,58151,58158,58158,58157,58157,58156,58156,58155,58155,58154,58154,58153,58153,58152,58160,58159,58159,58165,58165,58164,58164,58163,58163,58162,58162,58161,58161,58160,58167,58166,58166,58181,58181,58180,58180,58179,58179,58178,58178,58177,58177,58176,58176,58175,58175,58174,58174,58173,58173,58172,58172,58171,58171,58170,58170,58169,58169,58168,58168,58167,58183,58182,58182,58196,58196,58195,58195,58194,58194,58197,58197,58193,58193,58192,58192,58191,58191,58190,58190,58189,58189,58188,58188,58187,58187,58186,58186,58185,58185,58184,58184,58183,58199,58198,58198,58208,58208,58207,58207,58206,58206,58205,58205,58204,58204,58203,58203,58202,58202,58201,58201,58200,58200,58199,58210,58209,58209,58219,58219,58218,58218,58217,58217,58216,58216,58215,58215,58214,58214,58213,58213,58212,58212,58211,58211,58210,58221,58220,58220,58232,58232,58231,58231,58230,58230,58229,58229,58228,58228,58227,58227,58226,58226,58225,58225,58224,58224,58223,58223,58222,58222,58221,58234,58233,58233,58254,58254,58253,58253,58252,58252,58251,58251,58250,58250,58249,58249,58248,58248,58247,58247,58246,58246,58256,58256,58255,58255,58245,58245,58244,58244,58243,58243,58242,58242,58241,58241,58240,58240,58239,58239,58238,58238,58237,58237,58236,58236,58235,58235,58234,58258,58257,58257,58262,58262,58261,58261,58260,58260,58259,58259,58258,58264,58263,58263,58276,58276,58275,58275,58274,58274,58273,58273,58272,58272,58271,58271,58270,58270,58269,58269,58268,58268,58267,58267,58266,58266,58265,58265,58264,58278,58277,58277,58287,58287,58286,58286,58285,58285,58284,58284,58283,58283,58282,58282,58281,58281,58280,58280,58279,58279,58278,58289,58288,58288,58300,58300,58299,58299,58298,58298,58297,58297,58296,58296,58295,58295,58294,58294,58293,58293,58292,58292,58291,58291,58290,58290,58289,58302,58301,58301,58307,58307,58306,58306,58305,58305,58304,58304,58303,58303,58302,58309,58308,58308,58318,58318,58317,58317,58316,58316,58315,58315,58314,58314,58313,58313,58312,58312,58311,58311,58310,58310,58309,58320,58319,58319,58324,58324,58323,58323,58322,58322,58321,58321,58320,58326,58325,58325,58332,58332,58331,58331,58330,58330,58329,58329,58328,58328,58327,58327,58326,58334,58333,58333,58357,58357,58356,58356,58355,58355,58354,58354,58353,58353,58352,58352,58351,58351,58350,58350,58349,58349,58348,58348,58347,58347,58346,58346,58345,58345,58344,58344,58343,58343,58342,58342,58341,58341,58340,58340,58339,58339,58338,58338,58337,58337,58336,58336,58335,58335,58334,58359,58358,58358,58386,58386,58385,58385,58384,58384,58383,58383,58382,58382,58381,58381,58380,58380,58379,58379,58378,58378,58377,58377,58376,58376,58375,58375,58374,58374,58373,58373,58372,58372,58371,58371,58370,58370,58369,58369,58368,58368,58367,58367,58366,58366,58365,58365,58364,58364,58363,58363,58362,58362,58361,58361,58360,58360,58359,58388,58387,58387,58406,58406,58405,58405,58404,58404,58403,58403,58402,58402,58401,58401,58400,58400,58399,58399,58398,58398,58397,58397,58396,58396,58395,58395,58394,58394,58393,58393,58392,58392,58391,58391,58390,58390,58409,58409,58408,58408,58407,58407,58389,58389,58388,58411,58410,58410,58435,58435,58434,58434,58437,58437,58433,58433,58432,58432,58431,58431,58430,58430,58429,58429,58428,58428,58427,58427,58426,58426,58425,58425,58424,58424,58423,58423,58422,58422,58421,58421,58420,58420,58419,58419,58418,58418,58417,58417,58416,58416,58415,58415,58414,58414,58413,58413,58436,58436,58412,58412,58411,58438,58464,58464,58463,58463,58462,58462,58461,58461,58460,58460,58459,58459,58458,58458,58457,58457,58456,58456,58455,58455,58454,58454,58453,58453,58452,58452,58451,58451,58450,58450,58449,58449,58448,58448,58447,58447,58446,58446,58445,58445,58444,58444,58443,58443,58442,58442,58441,58441,58440,58440,58439,58439,58438,58466,58465,58465,58476,58476,58475,58475,58474,58474,58473,58473,58472,58472,58471,58471,58470,58470,58469,58469,58468,58468,58467,58467,58466,58478,58477,58477,58489,58489,58488,58488,58487,58487,58486,58486,58485,58485,58484,58484,58483,58483,58482,58482,58481,58481,58480,58480,58479,58479,58478,58491,58490,58490,58498,58498,58497,58497,58496,58496,58495,58495,58494,58494,58493,58493,58492,58492,58491,58500,58499,58499,58505,58505,58504,58504,58503,58503,58502,58502,58501,58501,58500,58507,58506,58506,58510,58510,58509,58509,58508,58508,58507,58511,58519,58519,58518,58518,58517,58517,58516,58516,58515,58515,58514,58514,58513,58513,58512,58512,58511,58521,58520,58520,58530,58530,58529,58529,58528,58528,58527,58527,58531,58531,58526,58526,58525,58525,58524,58524,58523,58523,58522,58522,58521,58533,58532,58532,58539,58539,58538,58538,58537,58537,58536,58536,58535,58535,58534,58534,58533,58541,58540,58540,58549,58549,58548,58548,58547,58547,58546,58546,58545,58545,58544,58544,58543,58543,58542,58542,58541,58551,58550,58550,58576,58576,58577,58577,58574,58574,58573,58573,58572,58572,58571,58571,58570,58570,58575,58575,58569,58569,58568,58568,58567,58567,58566,58566,58565,58565,58564,58564,58563,58563,58562,58562,58561,58561,58560,58560,58559,58559,58558,58558,58557,58557,58556,58556,58555,58555,58554,58554,58553,58553,58552,58552,58551,58578,58603,58603,58602,58602,58601,58601,58600,58600,58599,58599,58598,58598,58597,58597,58596,58596,58595,58595,58594,58594,58593,58593,58592,58592,58591,58591,58590,58590,58589,58589,58588,58588,58587,58587,58604,58604,58586,58586,58585,58585,58584,58584,58583,58583,58582,58582,58581,58581,58580,58580,58579,58579,58578,58606,58605,58605,58619,58619,58618,58618,58617,58617,58616,58616,58615,58615,58614,58614,58613,58613,58612,58612,58611,58611,58610,58610,58609,58609,58608,58608,58607,58607,58606,58621,58620,58620,58631,58631,58630,58630,58629,58629,58628,58628,58627,58627,58626,58626,58625,58625,58624,58624,58623,58623,58622,58622,58621,58633,58632,58632,58645,58645,58644,58644,58643,58643,58642,58642,58641,58641,58646,58646,58647,58647,58640,58640,58639,58639,58638,58638,58637,58637,58636,58636,58635,58635,58634,58634,58633,58649,58648,58648,58653,58653,58652,58652,58651,58651,58650,58650,58649,58655,58654,58654,58661,58661,58660,58660,58659,58659,58658,58658,58657,58657,58656,58656,58655,58663,58662,58662,58668,58668,58667,58667,58666,58666,58665,58665,58664,58664,58663,58670,58669,58669,58673,58673,58672,58672,58671,58671,58670,58675,58674,58674,58681,58681,58680,58680,58679,58679,58678,58678,58677,58677,58676,58676,58675,58683,58682,58682,58692,58692,58691,58691,58690,58690,58689,58689,58688,58688,58687,58687,58686,58686,58685,58685,58684,58684,58683,58694,58693,58693,58699,58699,58698,58698,58697,58697,58696,58696,58695,58695,58694,58701,58700,58700,58708,58708,58707,58707,58706,58706,58705,58705,58704,58704,58703,58703,58702,58702,58701,58710,58709,58709,58721,58721,58720,58720,58719,58719,58718,58718,58717,58717,58716,58716,58715,58715,58714,58714,58713,58713,58712,58712,58711,58711,58710,58723,58722,58722,58728,58728,58727,58727,58726,58726,58725,58725,58724,58724,58723,58730,58729,58729,58735,58735,58734,58734,58733,58733,58732,58732,58731,58731,58730,58737,58736,58736,58743,58743,58742,58742,58741,58741,58740,58740,58739,58739,58738,58738,58737,58745,58744,58744,58754,58754,58753,58753,58752,58752,58751,58751,58750,58750,58749,58749,58748,58748,58747,58747,58746,58746,58745,58756,58755,58755,58765,58765,58764,58764,58763,58763,58762,58762,58761,58761,58760,58760,58759,58759,58758,58758,58757,58757,58756,58767,58766,58766,58771,58771,58770,58770,58769,58769,58768,58768,58767,58773,58772,58772,58778,58778,58777,58777,58776,58776,58775,58775,58774,58774,58773,58780,58779,58779,58785,58785,58784,58784,58783,58783,58782,58782,58781,58781,58780,58787,58786,58786,58790,58790,58789,58789,58788,58788,58787,58791,58799,58799,58798,58798,58797,58797,58796,58796,58795,58795,58794,58794,58793,58793,58792,58792,58791,58801,58800,58800,58805,58805,58804,58804,58803,58803,58802,58802,58801,58807,58806,58806,58809,58809,58808,58808,58807,58811,58810,58810,58868,58868,58863,58863,58862,58862,58861,58861,58860,58860,58859,58859,58866,58866,58858,58858,58857,58857,58856,58856,58855,58855,58854,58854,58853,58853,58852,58852,58851,58851,58850,58850,58849,58849,58848,58848,58847,58847,58846,58846,58845,58845,58844,58844,58843,58843,58842,58842,58841,58841,58840,58840,58839,58839,58838,58838,58865,58865,58867,58867,58837,58837,58836,58836,58835,58835,58834,58834,58833,58833,58832,58832,58831,58831,58830,58830,58829,58829,58828,58828,58827,58827,58826,58826,58825,58825,58864,58864,58824,58824,58823,58823,58822,58822,58821,58821,58820,58820,58869,58869,58819,58819,58818,58818,58817,58817,58816,58816,58815,58815,58814,58814,58813,58813,58812,58812,58811,58871,58870,58870,59297,59297,59296,59296,59295,59295,59294,59294,59293,59293,59292,59292,59291,59291,59356,59356,59381,59381,59388,59388,59380,59380,59290,59290,59289,59289,59288,59288,59287,59287,59286,59286,59285,59285,59284,59284,59283,59283,59282,59282,59281,59281,59280,59280,59279,59279,59278,59278,59277,59277,59276,59276,59275,59275,59274,59274,59273,59273,59272,59272,59355,59355,59271,59271,59270,59270,59269,59269,59268,59268,59267,59267,59444,59444,59416,59416,59408,59408,59393,59393,59354,59354,59266,59266,59265,59265,59264,59264,59263,59263,59262,59262,59261,59261,59260,59260,59259,59259,59258,59258,59257,59257,59256,59256,59255,59255,59254,59254,59253,59253,59252,59252,59251,59251,59250,59250,59249,59249,59248,59248,59247,59247,59372,59372,59387,59387,59336,59336,59246,59246,59245,59245,59244,59244,59243,59243,59242,59242,59241,59241,59240,59240,59239,59239,59238,59238,59237,59237,59236,59236,59235,59235,59335,59335,59371,59371,59334,59334,59234,59234,59233,59233,59232,59232,59386,59386,59231,59231,59230,59230,59229,59229,59228,59228,59227,59227,59226,59226,59225,59225,59224,59224,59223,59223,59333,59333,59222,59222,59221,59221,59220,59220,59406,59406,59397,59397,59392,59392,59379,59379,59332,59332,59219,59219,59218,59218,59217,59217,59216,59216,59215,59215,59214,59214,59213,59213,59212,59212,59211,59211,59210,59210,59209,59209,59208,59208,59331,59331,59353,59353,59207,59207,59206,59206,59205,59205,59204,59204,59203,59203,59202,59202,59201,59201,59200,59200,59199,59199,59198,59198,59197,59197,59196,59196,59195,59195,59194,59194,59193,59193,59192,59192,59191,59191,59190,59190,59189,59189,59188,59188,59187,59187,59186,59186,59185,59185,59184,59184,59183,59183,59182,59182,59181,59181,59180,59180,59179,59179,59178,59178,59177,59177,59176,59176,59330,59330,59175,59175,59174,59174,59173,59173,59172,59172,59171,59171,59329,59329,59170,59170,59169,59169,59168,59168,59441,59441,59430,59430,59405,59405,59352,59352,59167,59167,59166,59166,59165,59165,59164,59164,59163,59163,59328,59328,59162,59162,59161,59161,59160,59160,59370,59370,59327,59327,59159,59159,59158,59158,59157,59157,59351,59351,59156,59156,59155,59155,59154,59154,59153,59153,59152,59152,59326,59326,59151,59151,59150,59150,59149,59149,59350,59350,59378,59378,59369,59369,59325,59325,59148,59148,59147,59147,59146,59146,59324,59324,59145,59145,59144,59144,59143,59143,59400,59400,59390,59390,59368,59368,59142,59142,59141,59141,59140,59140,59139,59139,59138,59138,59137,59137,59136,59136,59135,59135,59134,59134,59133,59133,59132,59132,59131,59131,59130,59130,59129,59129,59323,59323,59128,59128,59127,59127,59126,59126,59125,59125,59124,59124,59123,59123,59349,59349,59122,59122,59121,59121,59120,59120,59119,59119,59118,59118,59348,59348,59322,59322,59117,59117,59116,59116,59115,59115,59114,59114,59113,59113,59112,59112,59111,59111,59347,59347,59377,59377,59321,59321,59110,59110,59109,59109,59108,59108,59107,59107,59106,59106,59105,59105,59104,59104,59346,59346,59320,59320,59103,59103,59102,59102,59101,59101,59367,59367,59345,59345,59100,59100,59099,59099,59098,59098,59097,59097,59096,59096,59095,59095,59094,59094,59093,59093,59092,59092,59385,59385,59319,59319,59091,59091,59090,59090,59089,59089,59384,59384,59344,59344,59088,59088,59087,59087,59086,59086,59085,59085,59084,59084,59083,59083,59082,59082,59081,59081,59080,59080,59079,59079,59366,59366,59078,59078,59077,59077,59076,59076,59075,59075,59074,59074,59073,59073,59072,59072,59071,59071,59070,59070,59318,59318,59069,59069,59068,59068,59067,59067,59066,59066,59065,59065,59064,59064,59063,59063,59343,59343,59317,59317,59062,59062,59061,59061,59060,59060,59059,59059,59058,59058,59316,59316,59365,59365,59342,59342,59315,59315,59057,59057,59056,59056,59055,59055,59054,59054,59053,59053,59052,59052,59051,59051,59050,59050,59049,59049,59048,59048,59047,59047,59046,59046,59045,59045,59044,59044,59341,59341,59043,59043,59042,59042,59041,59041,59040,59040,59039,59039,59038,59038,59037,59037,59036,59036,59314,59314,59364,59364,59313,59313,59035,59035,59034,59034,59033,59033,59032,59032,59031,59031,59312,59312,59363,59363,59030,59030,59029,59029,59028,59028,59027,59027,59026,59026,59025,59025,59024,59024,59023,59023,59022,59022,59021,59021,59020,59020,59019,59019,59311,59311,59018,59018,59017,59017,59016,59016,59015,59015,59014,59014,59310,59310,59013,59013,59012,59012,59011,59011,59010,59010,59009,59009,59008,59008,59007,59007,59340,59340,59309,59309,59006,59006,59005,59005,59004,59004,59003,59003,59002,59002,59001,59001,59000,59000,58999,58999,58998,58998,58997,58997,58996,58996,58995,58995,58994,58994,59308,59308,59362,59362,58993,58993,58992,58992,58991,58991,58990,58990,58989,58989,58988,58988,58987,58987,58986,58986,59361,59361,58985,58985,58984,58984,58983,58983,58982,58982,58981,58981,58980,58980,58979,58979,59307,59307,59306,59306,58978,58978,58977,58977,58976,58976,58975,58975,58974,58974,58973,58973,58972,58972,58971,58971,58970,58970,58969,58969,58968,58968,58967,58967,58966,58966,58965,58965,58964,58964,59360,59360,59376,59376,59383,59383,58963,58963,58962,58962,58961,58961,58960,58960,58959,58959,58958,58958,58957,58957,58956,58956,58955,58955,59305,59305,58954,58954,58953,58953,58952,58952,58951,58951,58950,58950,59339,59339,59304,59304,58949,58949,58948,58948,58947,58947,58946,58946,58945,58945,58944,58944,58943,58943,58942,58942,58941,58941,58940,58940,58939,58939,58938,58938,58937,58937,59338,59338,59375,59375,59389,59389,59394,59394,59382,59382,59374,59374,58936,58936,58935,58935,58934,58934,58933,58933,58932,58932,58931,58931,58930,58930,58929,58929,58928,58928,58927,58927,58926,58926,58925,58925,58924,58924,58923,58923,58922,58922,58921,58921,58920,58920,58919,58919,58918,58918,59359,59359,58917,58917,58916,58916,58915,58915,58914,58914,58913,58913,58912,58912,58911,58911,58910,58910,59358,59358,58909,58909,58908,58908,58907,58907,58906,58906,58905,58905,59303,59303,58904,58904,58903,58903,58902,58902,58901,58901,58900,58900,58899,58899,58898,58898,59373,59373,59357,59357,58897,58897,58896,58896,58895,58895,58894,58894,58893,58893,59302,59302,58892,58892,58891,58891,58890,58890,59301,59301,58889,58889,58888,58888,58887,58887,59337,59337,58886,58886,58885,58885,58884,58884,58883,58883,58882,58882,58881,58881,58880,58880,58879,58879,59300,59300,58878,58878,58877,58877,58876,58876,59299,59299,58875,58875,58874,58874,58873,58873,59298,59298,58872,58872,58871,59458,59457,59457,59463,59463,59462,59462,59461,59461,59460,59460,59459,59459,59458,59465,59464,59464,59476,59476,59475,59475,59474,59474,59477,59477,59473,59473,59472,59472,59471,59471,59470,59470,59469,59469,59468,59468,59467,59467,59466,59466,59465,59479,59478,59478,59491,59491,59490,59490,59489,59489,59488,59488,59487,59487,59486,59486,59485,59485,59484,59484,59483,59483,59482,59482,59481,59481,59480,59480,59479,59493,59492,59492,59512,59512,59511,59511,59510,59510,59509,59509,59508,59508,59507,59507,59506,59506,59505,59505,59504,59504,59503,59503,59502,59502,59501,59501,59500,59500,59499,59499,59498,59498,59497,59497,59496,59496,59495,59495,59494,59494,59493,59514,59513,59513,59523,59523,59522,59522,59521,59521,59520,59520,59519,59519,59518,59518,59517,59517,59516,59516,59524,59524,59515,59515,59514,59526,59525,59525,59536,59536,59535,59535,59534,59534,59533,59533,59532,59532,59531,59531,59530,59530,59529,59529,59528,59528,59527,59527,59526,59538,59537,59537,59544,59544,59543,59543,59542,59542,59541,59541,59540,59540,59539,59539,59538,28917,28918,28918,28919,28919,28920,28920,28921,28921,28922,28922,28923,28923,28924,28924,28925,28925,28926,28926,28927,28927,28928,28928,28929,28929,28930,28930,28931,28931,28932,28932,28933,28933,28961,28961,28934,28934,28935,28935,28936,28936,28968,28968,28937,28937,28938,28938,28939,28939,28940,28940,28941,28941,28942,28942,28962,28962,28943,28943,28944,28944,28945,28945,28963,28963,28969,28969,28946,28946,28947,28947,28948,28948,28949,28949,28794,28794,28795,28795,59569,59569,59568,59568,59567,59567,59566,59566,59565,59565,59564,59564,59563,59563,59562,59562,59570,59570,59561,59561,59560,59560,59559,59559,59558,59558,59557,59557,59556,59556,59555,59555,59554,59554,59553,59553,59572,59572,59575,59575,59571,59571,59552,59552,59551,59551,59550,59550,59549,59549,59548,59548,59547,59547,59546,59546,59545,59545,30112,30112,29933,29933,29934,29934,29935,29935,29936,29936,29937,29937,29938,29938,29939,29939,29940,29940,29941,29941,29942,29942,29943,29943,29944,29944,29945,29945,29946,29946,29947,29947,29948,29948,29949,29949,29950,29950,29951,29951,29952,29952,30113,30113,30351,30351,30393,30393,29953,29953,29954,29954,29955,29955,30114,30114,30353,30353,29956,29956,29957,29957,29958,29958,30115,30115,29959,29959,29960,29960,29961,29961,29962,29962,29963,29963,30190,30190,30191,30191,30160,30160,29964,29964,29965,29965,29966,29966,29967,29967,29968,29968,30212,30212,29969,29969,29970,29970,29971,29971,29972,29972,29973,29973,30116,30116,30289,30289,29974,29974,29975,29975,29976,29976,28917,59577,59576,59576,60069,60069,60068,60068,60067,60067,60066,60066,60065,60065,60121,60121,60064,60064,60063,60063,60062,60062,60120,60120,60119,60119,60061,60061,60060,60060,60059,60059,60192,60192,60058,60058,60057,60057,60056,60056,60055,60055,60054,60054,60053,60053,60052,60052,60118,60118,60184,60184,60191,60191,60051,60051,60050,60050,60049,60049,60117,60117,60198,60198,60170,60170,60048,60048,60047,60047,60046,60046,60045,60045,60044,60044,60116,60116,60043,60043,60042,60042,60041,60041,60115,60115,60040,60040,60039,60039,60038,60038,60114,60114,60037,60037,60036,60036,60035,60035,60034,60034,60033,60033,60032,60032,60031,60031,60030,60030,60029,60029,60028,60028,60027,60027,60026,60026,60025,60025,60024,60024,60023,60023,60022,60022,60156,60156,60169,60169,60183,60183,60168,60168,60021,60021,60020,60020,60019,60019,60018,60018,60017,60017,60016,60016,60015,60015,60014,60014,60013,60013,60012,60012,60011,60011,60010,60010,60009,60009,60008,60008,60007,60007,60006,60006,60005,60005,60004,60004,60003,60003,60002,60002,60001,60001,60000,60000,59999,59999,59998,59998,59997,59997,59996,59996,59995,59995,59994,59994,59993,59993,60113,60113,59992,59992,59991,59991,59990,59990,60155,60155,59989,59989,59988,59988,59987,59987,59986,59986,59985,59985,59984,59984,59983,59983,59982,59982,59981,59981,59980,59980,59979,59979,59978,59978,60182,60182,60197,60197,59977,59977,59976,59976,59975,59975,59974,59974,59973,59973,60112,60112,60154,60154,60153,60153,59972,59972,59971,59971,59970,59970,60111,60111,60181,60181,60152,60152,59969,59969,59968,59968,59967,59967,59966,59966,59965,59965,59964,59964,59963,59963,59962,59962,59961,59961,59960,59960,59959,59959,59958,59958,60110,60110,59957,59957,59956,59956,59955,59955,59954,59954,59953,59953,59952,59952,59951,59951,59950,59950,59949,59949,59948,59948,59947,59947,59946,59946,59945,59945,59944,59944,59943,59943,59942,59942,59941,59941,59940,59940,60151,60151,59939,59939,59938,59938,59937,59937,60109,60109,59936,59936,59935,59935,59934,59934,60108,60108,60150,60150,60107,60107,59933,59933,59932,59932,59931,59931,59930,59930,59929,59929,60211,60211,59928,59928,59927,59927,59926,59926,60106,60106,60149,60149,59925,59925,59924,59924,59923,59923,59922,59922,59921,59921,60105,60105,59920,59920,59919,59919,59918,59918,60148,60148,60180,60180,60104,60104,59917,59917,59916,59916,59915,59915,59914,59914,59913,59913,59912,59912,59911,59911,59910,59910,60103,60103,60147,60147,60179,60179,60190,60190,60167,60167,60146,60146,59909,59909,59908,59908,59907,59907,59906,59906,59905,59905,60196,60196,60102,60102,59904,59904,59903,59903,59902,59902,60101,60101,59901,59901,59900,59900,59899,59899,60100,60100,59898,59898,59897,59897,59896,59896,60099,60099,59895,59895,59894,59894,59893,59893,60098,60098,59892,59892,59891,59891,59890,59890,59889,59889,59888,59888,59887,59887,59886,59886,59885,59885,59884,59884,59883,59883,60097,60097,59882,59882,59881,59881,59880,59880,59879,59879,59878,59878,59877,59877,59876,59876,59875,59875,59874,59874,59873,59873,59872,59872,59871,59871,59870,59870,59869,59869,59868,59868,59867,59867,59866,59866,60178,60178,60096,60096,59865,59865,59864,59864,59863,59863,59862,59862,59861,59861,59860,59860,59859,59859,60095,60095,59858,59858,59857,59857,59856,59856,60094,60094,59855,59855,59854,59854,59853,59853,59852,59852,59851,59851,59850,59850,59849,59849,59848,59848,59847,59847,59846,59846,59845,59845,59844,59844,59843,59843,59842,59842,59841,59841,60093,60093,59840,59840,59839,59839,59838,59838,59837,59837,59836,59836,59835,59835,59834,59834,59833,59833,59832,59832,59831,59831,59830,59830,60092,60092,59829,59829,59828,59828,59827,59827,60091,60091,59826,59826,59825,59825,59824,59824,60145,60145,60189,60189,60195,60195,59823,59823,59822,59822,59821,59821,59820,59820,59819,59819,60144,60144,59818,59818,59817,59817,59816,59816,59815,59815,59814,59814,59813,59813,59812,59812,59811,59811,59810,59810,59809,59809,59808,59808,59807,59807,59806,59806,59805,59805,59804,59804,59803,59803,60177,60177,60166,60166,59802,59802,59801,59801,59800,59800,59799,59799,59798,59798,60143,60143,60090,60090,59797,59797,59796,59796,59795,59795,59794,59794,59793,59793,59792,59792,59791,59791,59790,59790,59789,59789,59788,59788,59787,59787,59786,59786,59785,59785,59784,59784,59783,59783,59782,59782,60165,60165,60188,60188,60176,60176,59781,59781,59780,59780,59779,59779,59778,59778,59777,59777,60142,60142,60089,60089,59776,59776,59775,59775,59774,59774,59773,59773,59772,59772,59771,59771,59770,59770,59769,59769,59768,59768,59767,59767,60088,60088,59766,59766,59765,59765,59764,59764,60141,60141,59763,59763,59762,59762,59761,59761,59760,59760,59759,59759,60140,60140,60164,60164,60087,60087,59758,59758,59757,59757,59756,59756,60139,60139,59755,59755,59754,59754,59753,59753,60086,60086,59752,59752,59751,59751,59750,59750,60163,60163,59749,59749,59748,59748,59747,59747,59746,59746,59745,59745,59744,59744,59743,59743,59742,59742,59741,59741,59740,59740,59739,59739,60138,60138,60137,60137,59738,59738,59737,59737,59736,59736,60085,60085,59735,59735,59734,59734,59733,59733,59732,59732,59731,59731,60162,60162,59730,59730,59729,59729,59728,59728,59727,59727,59726,59726,59725,59725,59724,59724,59723,59723,59722,59722,59721,59721,59720,59720,59719,59719,59718,59718,59717,59717,59716,59716,59715,59715,59714,59714,59713,59713,59712,59712,59711,59711,59710,59710,60136,60136,60175,60175,60187,60187,60174,60174,60084,60084,59709,59709,59708,59708,59707,59707,59706,59706,59705,59705,60083,60083,60082,60082,59704,59704,59703,59703,59702,59702,60135,60135,59701,59701,59700,59700,59699,59699,59698,59698,59697,59697,59696,59696,59695,59695,59694,59694,59693,59693,59692,59692,60134,60134,60081,60081,59691,59691,59690,59690,59689,59689,60080,60080,59688,59688,59687,59687,59686,59686,60133,60133,60079,60079,59685,59685,59684,59684,59683,59683,60161,60161,59682,59682,59681,59681,59680,59680,59679,59679,59678,59678,60132,60132,59677,59677,59676,59676,59675,59675,59674,59674,59673,59673,59672,59672,59671,59671,59670,59670,59669,59669,59668,59668,59667,59667,59666,59666,60078,60078,60186,60186,59665,59665,59664,59664,59663,59663,60077,60077,59662,59662,59661,59661,59660,59660,59659,59659,59658,59658,59657,59657,60131,60131,59656,59656,59655,59655,59654,59654,60076,60076,60075,60075,59653,59653,59652,59652,59651,59651,59650,59650,59649,59649,59648,59648,59647,59647,59646,59646,59645,59645,59644,59644,60130,60130,60173,60173,60194,60194,60172,60172,60129,60129,59643,59643,59642,59642,59641,59641,59640,59640,59639,59639,59638,59638,59637,59637,59636,59636,60074,60074,59635,59635,59634,59634,59633,59633,59632,59632,59631,59631,60128,60128,60073,60073,59630,59630,59629,59629,59628,59628,60160,60160,59627,59627,59626,59626,59625,59625,59624,59624,59623,59623,60127,60127,59622,59622,59621,59621,59620,59620,59619,59619,59618,59618,59617,59617,59616,59616,60072,60072,60199,60199,60185,60185,60126,60126,59615,59615,59614,59614,59613,59613,59612,59612,59611,59611,60159,60159,60171,60171,60193,60193,60071,60071,59610,59610,59609,59609,59608,59608,59607,59607,59606,59606,59605,59605,60125,60125,59604,59604,59603,59603,59602,59602,59601,59601,59600,59600,59599,59599,59598,59598,59597,59597,59596,59596,59595,59595,59594,59594,59593,59593,59592,59592,60124,60124,59591,59591,59590,59590,59589,59589,59588,59588,59587,59587,60158,60158,60070,60070,59586,59586,59585,59585,59584,59584,60123,60123,60157,60157,59583,59583,59582,59582,59581,59581,59580,59580,59579,59579,60122,60122,59578,59578,59577,60243,60242,60242,60250,60250,60249,60249,60248,60248,60247,60247,60246,60246,60245,60245,60244,60244,60243,59712,59713,59713,59714,59714,59715,59715,59716,59716,59717,59717,59718,59718,59719,59719,59720,59720,59721,59721,59722,59722,59723,59723,59724,59724,59725,59725,59726,59726,59727,59727,59728,59728,59729,59729,59730,59730,60162,60162,59731,59731,59732,59732,59733,59733,59734,59734,59735,59735,60085,60085,59736,59736,59737,59737,59738,59738,60137,60137,60138,60138,59739,59739,59740,59740,59741,59741,59742,59742,59743,59743,59744,59744,59745,59745,59746,59746,59747,59747,59748,59748,59749,59749,60163,60163,59750,59750,59751,59751,59752,59752,60086,60086,59753,59753,59754,59754,59755,59755,60139,60139,59756,59756,59757,59757,59758,59758,60087,60087,60164,60164,60140,60140,59759,59759,59760,59760,59761,59761,59762,59762,59763,59763,60141,60141,59764,59764,59765,59765,59766,59766,60088,60088,59767,59767,59768,59768,59769,59769,59770,59770,59771,59771,59772,59772,59773,59773,59774,59774,59775,59775,59776,59776,60089,60089,60142,60142,59777,59777,59778,59778,59779,59779,59780,59780,59781,59781,60176,60176,60188,60188,60165,60165,59782,59782,59783,59783,59784,59784,59785,59785,59786,59786,59787,59787,59788,59788,59789,59789,60422,60422,60421,60421,60420,60420,60419,60419,60418,60418,60417,60417,60465,60465,60468,60468,60416,60416,60415,60415,60414,60414,60413,60413,60412,60412,60411,60411,60410,60410,60409,60409,60408,60408,60407,60407,60406,60406,60405,60405,60456,60456,60476,60476,60481,60481,60480,60480,60475,60475,60467,60467,60464,60464,60404,60404,60403,60403,60402,60402,60444,60444,60401,60401,60400,60400,60399,60399,60398,60398,60397,60397,60396,60396,60443,60443,60395,60395,60394,60394,60393,60393,60442,60442,60392,60392,60391,60391,60390,60390,60441,60441,60389,60389,60388,60388,60387,60387,60386,60386,60385,60385,60384,60384,60383,60383,60451,60451,60460,60460,60466,60466,60471,60471,60473,60473,60469,60469,60459,60459,60440,60440,60382,60382,60381,60381,60380,60380,60379,60379,60378,60378,60377,60377,60376,60376,60375,60375,60374,60374,60373,60373,60372,60372,60371,60371,60370,60370,60369,60369,60450,60450,60368,60368,60367,60367,60366,60366,60365,60365,60364,60364,60363,60363,60362,60362,60361,60361,60449,60449,60463,60463,60360,60360,60359,60359,60358,60358,60357,60357,60356,60356,60448,60448,60439,60439,60355,60355,60354,60354,60353,60353,60438,60438,60352,60352,60351,60351,60350,60350,60349,60349,60348,60348,60437,60437,60347,60347,60346,60346,60345,60345,60344,60344,60343,60343,60342,60342,60341,60341,60340,60340,60436,60436,60339,60339,60338,60338,60337,60337,60336,60336,60335,60335,60435,60435,60334,60334,60333,60333,60332,60332,60331,60331,60330,60330,60329,60329,60328,60328,60327,60327,60326,60326,60434,60434,60455,60455,60433,60433,60325,60325,60324,60324,60323,60323,60432,60432,60322,60322,60321,60321,60320,60320,60319,60319,60318,60318,60317,60317,60316,60316,60315,60315,60314,60314,60313,60313,60431,60431,60312,60312,60311,60311,60310,60310,60309,60309,60308,60308,60307,60307,60306,60306,60447,60447,60305,60305,60304,60304,60303,60303,60302,60302,60301,60301,60300,60300,60299,60299,60454,60454,60458,60458,60453,60453,60298,60298,60297,60297,60296,60296,60295,60295,60294,60294,60430,60430,60293,60293,60292,60292,60291,60291,60429,60429,60290,60290,60289,60289,60288,60288,60287,60287,60286,60286,60285,60285,60284,60284,60462,60462,60283,60283,60282,60282,60281,60281,60280,60280,60279,60279,60446,60446,60428,60428,60278,60278,60277,60277,60276,60276,60275,60275,60274,60274,60427,60427,60426,60426,60273,60273,60272,60272,60271,60271,60270,60270,60269,60269,60268,60268,60267,60267,60452,60452,60457,60457,60461,60461,60425,60425,60266,60266,60265,60265,60264,60264,60263,60263,60262,60262,60261,60261,60260,60260,60259,60259,60258,60258,60257,60257,60256,60256,60255,60255,60254,60254,60424,60424,60445,60445,60423,60423,60253,60253,60252,60252,60251,60251,59712,60489,60488,60488,60495,60495,60496,60496,60494,60494,60493,60493,60492,60492,60491,60491,60490,60490,60489,60498,60497,60497,60560,60560,60559,60559,60558,60558,60557,60557,60567,60567,60556,60556,60555,60555,60554,60554,60553,60553,60552,60552,60551,60551,60550,60550,60549,60549,60548,60548,60547,60547,60546,60546,60545,60545,60544,60544,60543,60543,60542,60542,60541,60541,60540,60540,60539,60539,60538,60538,60537,60537,60536,60536,60535,60535,60534,60534,60533,60533,60532,60532,60531,60531,60530,60530,60566,60566,60529,60529,60528,60528,60527,60527,60526,60526,60525,60525,60524,60524,60523,60523,60522,60522,60521,60521,60520,60520,60519,60519,60518,60518,60517,60517,60516,60516,60515,60515,60514,60514,60513,60513,60512,60512,60565,60565,60564,60564,60511,60511,60510,60510,60509,60509,60508,60508,60507,60507,60506,60506,60505,60505,60574,60574,60569,60569,60355,60355,60439,60439,60448,60448,60356,60356,60357,60357,60358,60358,60359,60359,60360,60360,60463,60463,60449,60449,60361,60361,60362,60362,60363,60363,60364,60364,60365,60365,60366,60366,60367,60367,60368,60368,60450,60450,60369,60369,60370,60370,60371,60371,60372,60372,60373,60373,60374,60374,60375,60375,60376,60376,60377,60377,60378,60378,60379,60379,60380,60380,60381,60381,60382,60382,60440,60440,60459,60459,60469,60469,60473,60473,60471,60471,60466,60466,60460,60460,60451,60451,60383,60383,60384,60384,60385,60385,60386,60386,60387,60387,60388,60388,60389,60389,60441,60441,60390,60390,60391,60391,60392,60392,60442,60442,60393,60393,60394,60394,60395,60395,60443,60443,60396,60396,60397,60397,60398,60398,60399,60399,60400,60400,60401,60401,60444,60444,60402,60402,60403,60403,60504,60504,60503,60503,60563,60563,60571,60571,60573,60573,60572,60572,60568,60568,60502,60502,60501,60501,60500,60500,60562,60562,60570,60570,60561,60561,60499,60499,60498,60581,60580,60580,60591,60591,60590,60590,60589,60589,60588,60588,60587,60587,60592,60592,60586,60586,60585,60585,60584,60584,60583,60583,60582,60582,60581,60594,60593,60593,60600,60600,60599,60599,60598,60598,60597,60597,60596,60596,60595,60595,60594,60602,60601,60601,60608,60608,60607,60607,60606,60606,60605,60605,60604,60604,60603,60603,60602,60610,60609,60609,60618,60618,60617,60617,60616,60616,60615,60615,60614,60614,60613,60613,60612,60612,60611,60611,60610,60620,60619,60619,60626,60626,60625,60625,60624,60624,60623,60623,60622,60622,60621,60621,60620,60628,60627,60627,60634,60634,60633,60633,60632,60632,60631,60631,60630,60630,60629,60629,60628,60636,60635,60635,60643,60643,60642,60642,60641,60641,60640,60640,60639,60639,60638,60638,60637,60637,60636,60645,60644,60644,60655,60655,60654,60654,60653,60653,60652,60652,60651,60651,60650,60650,60649,60649,60648,60648,60647,60647,60656,60656,60646,60646,60645,60658,60657,60657,60665,60665,60664,60664,60663,60663,60662,60662,60661,60661,60660,60660,60659,60659,60658,60667,60666,60666,60671,60671,60670,60670,60669,60669,60668,60668,60667,60673,60672,60672,60683,60683,60682,60682,60681,60681,60680,60680,60679,60679,60678,60678,60677,60677,60676,60676,60675,60675,60674,60674,60673,60685,60684,60684,60690,60690,60689,60689,60688,60688,60687,60687,60686,60686,60685,60692,60691,60691,60696,60696,60695,60695,60694,60694,60693,60693,60692,60698,60697,60697,60705,60705,60704,60704,60703,60703,60702,60702,60701,60701,60700,60700,60699,60699,60698,60706,60712,60712,60711,60711,60710,60710,60709,60709,60708,60708,60707,60707,60706,60713,60725,60725,60724,60724,60723,60723,60722,60722,60721,60721,60720,60720,60719,60719,60718,60718,60717,60717,60716,60716,60715,60715,60714,60714,60713,60727,60726,60726,60734,60734,60733,60733,60732,60732,60731,60731,60730,60730,60729,60729,60728,60728,60727,60735,60977,60977,60976,60976,60975,60975,60974,60974,61016,61016,60973,60973,60972,60972,60971,60971,60970,60970,60969,60969,61015,61015,61029,61029,61014,61014,60968,60968,60967,60967,60966,60966,60965,60965,60964,60964,61043,61043,61028,61028,60963,60963,60962,60962,60961,60961,60960,60960,60959,60959,60958,60958,60957,60957,60993,60993,60956,60956,60955,60955,60954,60954,60953,60953,60952,60952,60951,60951,60950,60950,60949,60949,60948,60948,60947,60947,60946,60946,60945,60945,61054,61054,60944,60944,60943,60943,60942,60942,60941,60941,60940,60940,60939,60939,60938,60938,61013,61013,60937,60937,60936,60936,60935,60935,60934,60934,60933,60933,60992,60992,61042,61042,60932,60932,60931,60931,60930,60930,60929,60929,60928,60928,61012,61012,61027,61027,61011,61011,60927,60927,60926,60926,60925,60925,60924,60924,60923,60923,61077,61077,60922,60922,60921,60921,60920,60920,61076,61076,61062,61062,61053,61053,60919,60919,60918,60918,60917,60917,60916,60916,60915,60915,60991,60991,61026,61026,61041,61041,61058,61058,61057,61057,60914,60914,60913,60913,60912,60912,60911,60911,60910,60910,60909,60909,60908,60908,60907,60907,60906,60906,60905,60905,60904,60904,60903,60903,60902,60902,60901,60901,60900,60900,61010,61010,61025,61025,61040,61040,61056,61056,61039,61039,60899,60899,60898,60898,60897,60897,60896,60896,60895,60895,61009,61009,61024,61024,61052,61052,61051,61051,60894,60894,60893,60893,60892,60892,60891,60891,60890,60890,60889,60889,60888,60888,60887,60887,60886,60886,60885,60885,60884,60884,60883,60883,60882,60882,60881,60881,60880,60880,60879,60879,60990,60990,60878,60878,60877,60877,60876,60876,60875,60875,60874,60874,60873,60873,60872,60872,60871,60871,60870,60870,60869,60869,60868,60868,60867,60867,60866,60866,61008,61008,61023,61023,61038,61038,61037,61037,60865,60865,60864,60864,60863,60863,60862,60862,60861,60861,60860,60860,60859,60859,60858,60858,60857,60857,61022,61022,61066,61066,60989,60989,60856,60856,60855,60855,60854,60854,60853,60853,60852,60852,60851,60851,60850,60850,61007,61007,60988,60988,60849,60849,60848,60848,60847,60847,60987,60987,60846,60846,60845,60845,60844,60844,61006,61006,61050,61050,61061,61061,61005,61005,60843,60843,60842,60842,60841,60841,60986,60986,61004,61004,60840,60840,60839,60839,60838,60838,60837,60837,60836,60836,61049,61049,61003,61003,60835,60835,60834,60834,60833,60833,60832,60832,60831,60831,60830,60830,60829,60829,60828,60828,60827,60827,61002,61002,61036,61036,61035,61035,60826,60826,60825,60825,60824,60824,60823,60823,60822,60822,60821,60821,60820,60820,60819,60819,60818,60818,60817,60817,60816,60816,60815,60815,60814,60814,60813,60813,60812,60812,60811,60811,60810,60810,60809,60809,60808,60808,60985,60985,61021,61021,60807,60807,60806,60806,60805,60805,60804,60804,60803,60803,60802,60802,60801,60801,60800,60800,60799,60799,61001,61001,60798,60798,60797,60797,60796,60796,60795,60795,60794,60794,60793,60793,60792,60792,60791,60791,60790,60790,61000,61000,61034,61034,61048,61048,61020,61020,60789,60789,60788,60788,60787,60787,60786,60786,60785,60785,60784,60784,60783,60783,60782,60782,60781,60781,60780,60780,60999,60999,61019,61019,61047,61047,61065,61065,61060,61060,61046,61046,60984,60984,60779,60779,60778,60778,60777,60777,60776,60776,60775,60775,60774,60774,60773,60773,60998,60998,60983,60983,60772,60772,60771,60771,60770,60770,60769,60769,60768,60768,60767,60767,60766,60766,60765,60765,60764,60764,60763,60763,60982,60982,61033,61033,61032,61032,60981,60981,60762,60762,60761,60761,60760,60760,60759,60759,60758,60758,60757,60757,60756,60756,60997,60997,60755,60755,60754,60754,60753,60753,60980,60980,60752,60752,60751,60751,60750,60750,60749,60749,60748,60748,61075,61075,61073,61073,61031,61031,60996,60996,60979,60979,60747,60747,60746,60746,60745,60745,60744,60744,60743,60743,60742,60742,60741,60741,60740,60740,60739,60739,60738,60738,60978,60978,60995,60995,61018,61018,61030,61030,61045,61045,61055,61055,61059,61059,61064,61064,61068,61068,61063,61063,61044,61044,61017,61017,60994,60994,60737,60737,60736,60736,60735,42600,42601,42601,42602,42602,42603,42603,42604,42604,39322,39322,39323,39323,39324,39324,39325,39325,40535,40535,40763,40763,40850,40850,40877,40877,40818,40818,39326,39326,39327,39327,39328,39328,39329,39329,39330,39330,39331,39331,39332,39332,39333,39333,39334,39334,39335,39335,39336,39336,39337,39337,39338,39338,39339,39339,39340,39340,39341,39341,39342,39342,39343,39343,40536,40536,39344,39344,39345,39345,39346,39346,39347,39347,39348,39348,39349,39349,39350,39350,39351,39351,39352,39352,39353,39353,41022,41022,40764,40764,39354,39354,39355,39355,39356,39356,39357,39357,39358,39358,39359,39359,39360,39360,39361,39361,39362,39362,39363,39363,39364,39364,39365,39365,39366,39366,39367,39367,39368,39368,39369,39369,39370,39370,39371,39371,39372,39372,40537,40537,39373,39373,39374,39374,39375,39375,39376,39376,39377,39377,40538,40538,40765,40765,39378,39378,39379,39379,39380,39380,39381,39381,39382,39382,39383,39383,39384,39384,39385,39385,40539,40539,39386,39386,39387,39387,39388,39388,39389,39389,39390,39390,40540,40540,39391,39391,39392,39392,39393,39393,39394,39394,39395,39395,39396,39396,39397,39397,39398,39398,39399,39399,39400,39400,40541,40541,40685,40685,40686,40686,40542,40542,39401,39401,39402,39402,39403,39403,40766,40766,40543,40543,39404,39404,39405,39405,39406,39406,40544,40544,39407,39407,39408,39408,39409,39409,39410,39410,39411,39411,39412,39412,39413,39413,39414,39414,40545,40545,40687,40687,40688,40688,39415,39415,39416,39416,39417,39417,39418,39418,39419,39419,39420,39420,39421,39421,39422,39422,39423,39423,39424,39424,39425,39425,39426,39426,39427,39427,40546,40546,39428,39428,39429,39429,39430,39430,40689,40689,39431,39431,39432,39432,39433,39433,40547,40547,39434,39434,39435,39435,39436,39436,40548,40548,39437,39437,39438,39438,39439,39439,40549,40549,40690,40690,40691,40691,39440,39440,39441,39441,39442,39442,40550,40550,39443,39443,39444,39444,39445,39445,39446,39446,39447,39447,39448,39448,39449,39449,39450,39450,39451,39451,39452,39452,39453,39453,40692,40692,40767,40767,39454,39454,39455,39455,39456,39456,40551,40551,39457,39457,39458,39458,39459,39459,39460,39460,39461,39461,39462,39462,39463,39463,39464,39464,40552,40552,39465,39465,39466,39466,39467,39467,40553,40553,39468,39468,39469,39469,39470,39470,39471,39471,39472,39472,40768,40768,40851,40851,40949,40949,39473,39473,39474,39474,39475,39475,40554,40554,40693,40693,40555,40555,39476,39476,39477,39477,39478,39478,39479,39479,39480,39480,39481,39481,40556,40556,39482,39482,39483,39483,39484,39484,39485,39485,39486,39486,40769,40769,39487,39487,39488,39488,39489,39489,40557,40557,39490,39490,39491,39491,39492,39492,39493,39493,39494,39494,39495,39495,40558,40558,39496,39496,39497,39497,39498,39498,40559,40559,39499,39499,39500,39500,39501,39501,39502,39502,39503,39503,40560,40560,39504,39504,39505,39505,39506,39506,40561,40561,39507,39507,39508,39508,39509,39509,40562,40562,40770,40770,39510,39510,39511,39511,39512,39512,39513,39513,39514,39514,39515,39515,39516,39516,39517,39517,39518,39518,40819,40819,39519,39519,39520,39520,39521,39521,39522,39522,39523,39523,40694,40694,39524,39524,39525,39525,39526,39526,39527,39527,39528,39528,40852,40852,39529,39529,39530,39530,39531,39531,39532,39532,39533,39533,39534,39534,40563,40563,39535,39535,39536,39536,39537,39537,40564,40564,39538,39538,39539,39539,39540,39540,39541,39541,39542,39542,40565,40565,40771,40771,40566,40566,39543,39543,39544,39544,39545,39545,40567,40567,39546,39546,39547,39547,39548,39548,40568,40568,39549,39549,39550,39550,39551,39551,39552,39552,39553,39553,40569,40569,40904,40904,40925,40925,39554,39554,39555,39555,39556,39556,40570,40570,41227,41227,40695,40695,39557,39557,39558,39558,39559,39559,39560,39560,39561,39561,39562,39562,40571,40571,39563,39563,39564,39564,39565,39565,40572,40572,39566,39566,39567,39567,39568,39568,40573,40573,39569,39569,39570,39570,39571,39571,40772,40772,40820,40820,40879,40879,40954,40954,40574,40574,39572,39572,39573,39573,39574,39574,40696,40696,40773,40773,40821,40821,39575,39575,39576,39576,39577,39577,40575,40575,39578,39578,39579,39579,45616,45616,45617,45617,45618,45618,45619,45619,45620,45620,45621,45621,45920,45920,45935,45935,45958,45958,45953,45953,45936,45936,45904,45904,45622,45622,45623,45623,45624,45624,45625,45625,45626,45626,45905,45905,45627,45627,45628,45628,45629,45629,45630,45630,45631,45631,45632,45632,45633,45633,45634,45634,45635,45635,45636,45636,45637,45637,45638,45638,45639,45639,45640,45640,45641,45641,45642,45642,45643,45643,45644,45644,45645,45645,45646,45646,45647,45647,45648,45648,45921,45921,45649,45649,45650,45650,45651,45651,45906,45906,45959,45959,45652,45652,45653,45653,45654,45654,45655,45655,45656,45656,45657,45657,45658,45658,45659,45659,45660,45660,45661,45661,45662,45662,45663,45663,45664,45664,45971,45971,45665,45665,45666,45666,45667,45667,45668,45668,45669,45669,45670,45670,45671,45671,45672,45672,45673,45673,45674,45674,45675,45675,45676,45676,45677,45677,45678,45678,45947,45947,45937,45937,45679,45679,45680,45680,45681,45681,45682,45682,45683,45683,45684,45684,45685,45685,45686,45686,45687,45687,45688,45688,45907,45907,45689,45689,45690,45690,45691,45691,45692,45692,45693,45693,45694,45694,45695,45695,45696,45696,45697,45697,45698,45698,45908,45908,45938,45938,45922,45922,45699,45699,45700,45700,45701,45701,45909,45909,45910,45910,45702,45702,45703,45703,45704,45704,45705,45705,45706,45706,45911,45911,45707,45707,45708,45708,45709,45709,45710,45710,45711,45711,45712,45712,45923,45923,45924,45924,45713,45713,45714,45714,45715,45715,45716,45716,45717,45717,45718,45718,45719,45719,45720,45720,45721,45721,45722,45722,45723,45723,45724,45724,45725,45725,45726,45726,45727,45727,45728,45728,45729,45729,45730,45730,45731,45731,45732,45732,45733,45733,45734,45734,45912,45912,45735,45735,45736,45736,45737,45737,45939,45939,45954,45954,45913,45913,45738,45738,45739,45739,45740,45740,45925,45925,45914,45914,45741,45741,45742,45742,45743,45743,45744,45744,45745,45745,45746,45746,45747,45747,45940,45940,45748,45748,45749,45749,45750,45750,45751,45751,45752,45752,45753,45753,45754,45754,45755,45755,45756,45756,45757,45757,45758,45758,45759,45759,45760,45760,45761,45761,45762,45762,45763,45763,45764,45764,45765,45765,45766,45766,45915,45915,45767,45767,45768,45768,45769,45769,45770,45770,45771,45771,45772,45772,45773,45773,45941,45941,45774,45774,45775,45775,45776,45776,45777,45777,45778,45778,45779,45779,45780,45780,45781,45781,45782,45782,45783,45783,45784,45784,45785,45785,45786,45786,45787,45787,45788,45788,45942,45942,45948,45948,45926,45926,45789,45789,45790,45790,45791,45791,45792,45792,45793,45793,45794,45794,45795,45795,45796,45796,45797,45797,45798,45798,45927,45927,45799,45799,45800,45800,45801,45801,45802,45802,45803,45803,45928,45928,45804,45804,45805,45805,45806,45806,45807,45807,45808,45808,45809,45809,45810,45810,45811,45811,45812,45812,45813,45813,45814,45814,45815,45815,45816,45816,45817,45817,45818,45818,45819,45819,45820,45820,45943,45943,45821,45821,45822,45822,45823,45823,45824,45824,45825,45825,45826,45826,45827,45827,45828,45828,45829,45829,45830,45830,45831,45831,45832,45832,45916,45916,45949,45949,45917,45917,45833,45833,45834,45834,45835,45835,45929,45929,45944,45944,45930,45930,45836,45836,45837,45837,45838,45838,45839,45839,45840,45840,45950,45950,45955,45955,45841,45841,45842,45842,45843,45843,45844,45844,45845,45845,45846,45846,45847,45847,45848,45848,45931,45931,45849,45849,45850,45850,45851,45851,45852,45852,45853,45853,45854,45854,45855,45855,45856,45856,45857,45857,45858,45858,45859,45859,45860,45860,45861,45861,45862,45862,45863,45863,45864,45864,45865,45865,45866,45866,45867,45867,45868,45868,45869,45869,45870,45870,45871,45871,45872,45872,45873,45873,45874,45874,45875,45875,45876,45876,45877,45877,45878,45878,45879,45879,45880,45880,45881,45881,45882,45882,45883,45883,45918,45918,45884,45884,45885,45885,45886,45886,45932,45932,45945,45945,45933,45933,45887,45887,45888,45888,45889,45889,45890,45890,45891,45891,45946,45946,45919,45919,45892,45892,45893,45893,45894,45894,45895,45895,45896,45896,45897,45897,45898,45898,45899,45899,45934,45934,45900,45900,45901,45901,45902,45902,45903,45903,45615,45615,39905,39905,39906,39906,39907,39907,39908,39908,39909,39909,40603,40603,40604,40604,39910,39910,43676,43676,43677,43677,43678,43678,44227,44227,44279,44279,43679,43679,43680,43680,43681,43681,44228,44228,44229,44229,43682,43682,43683,43683,43684,43684,43685,43685,43686,43686,44230,44230,43687,43687,43688,43688,43689,43689,43690,43690,43691,43691,43692,43692,43693,43693,43694,43694,43695,43695,43696,43696,43697,43697,43698,43698,43699,43699,43700,43700,43701,43701,43702,43702,43703,43703,43704,43704,43705,43705,43706,43706,43707,43707,43708,43708,43709,43709,43710,43710,43711,43711,43712,43712,44231,44231,43713,43713,43714,43714,43715,43715,43716,43716,43717,43717,43718,43718,43719,43719,43720,43720,43721,43721,43722,43722,43723,43723,43724,43724,44232,44232,43725,43725,43726,43726,43727,43727,44280,44280,44311,44311,43728,43728,43729,43729,43730,43730,43731,43731,43732,43732,43733,43733,44233,44233,44281,44281,43734,43734,43735,43735,43736,43736,43737,43737,43738,43738,43739,43739,44234,44234,44282,44282,43740,43740,43741,43741,43742,43742,43743,43743,43744,43744,43745,43745,43746,43746,43747,43747,43748,43748,43749,43749,43750,43750,43751,43751,43752,43752,43753,43753,43754,43754,43755,43755,44283,44283,44371,44371,44312,44312,43756,43756,43757,43757,43758,43758,43759,43759,43760,43760,43761,43761,44235,44235,43762,43762,43763,43763,43764,43764,43765,43765,43766,43766,43767,43767,43768,43768,43769,43769,43770,43770,43771,43771,43772,43772,43773,43773,43774,43774,43775,43775,43776,43776,43777,43777,43778,43778,43779,43779,44355,44355,44386,44386,44372,44372,44357,44357,43780,43780,43781,43781,43782,43782,43783,43783,43784,43784,43785,43785,43786,43786,44236,44236,43787,43787,43788,43788,43789,43789,44237,44237,44284,44284,43790,43790,43791,43791,43792,43792,44238,44238,44429,44429,44332,44332,44285,44285,43793,43793,43794,43794,43795,43795,43796,43796,43797,43797,43798,43798,43799,43799,44358,44358,44239,44239,43800,43800,43801,43801,43802,43802,43803,43803,43804,43804,43805,43805,43806,43806,44314,44314,43807,43807,43808,43808,43809,43809,44240,44240,44315,44315,43810,43810,43811,43811,43812,43812,43813,43813,43814,43814,43815,43815,43816,43816,44241,44241,44333,44333,44359,44359,44373,44373,44316,44316,43817,43817,43818,43818,43819,43819,43820,43820,43821,43821,43822,43822,43823,43823,44242,44242,43824,43824,43825,43825,43826,43826,44243,44243,43827,43827,43828,43828,43829,43829,43830,43830,43831,43831,43832,43832,43833,43833,43834,43834,43835,43835,43836,43836,44374,44374,44375,44375,43837,43837,43838,43838,43839,43839,43840,43840,43841,43841,43842,43842,43843,43843,43844,43844,43845,43845,43846,43846,43847,43847,43848,43848,43849,43849,44334,44334,44335,44335,44317,44317,44244,44244,43850,43850,43851,43851,43852,43852,43853,43853,43854,43854,43855,43855,43856,43856,44245,44245,43857,43857,43858,43858,43859,43859,44286,44286,44318,44318,44336,44336,44287,44287,43860,43860,43861,43861,43862,43862,43863,43863,43864,43864,43865,43865,44246,44246,43866,43866,43867,43867,43868,43868,43869,43869,43870,43870,43871,43871,43872,43872,43873,43873,43874,43874,43875,43875,43876,43876,43877,43877,43878,43878,44247,44247,43879,43879,43880,43880,43881,43881,44248,44248,43882,43882,43883,43883,43884,43884,43885,43885,43886,43886,44337,44337,43887,43887,43888,43888,43889,43889,43890,43890,43891,43891,43892,43892,43893,43893,43894,43894,43895,43895,43896,43896,43897,43897,43898,43898,43899,43899,43900,43900,44249,44249,44250,44250,43901,43901,43902,43902,43903,43903,43904,43904,43905,43905,44251,44251,44288,44288,43906,43906,43907,43907,43908,43908,43909,43909,43910,43910,43911,43911,43912,43912,44416,44416,44388,44388,44360,44360,44338,44338,44289,44289,43913,43913,43914,43914,43915,43915,43916,43916,43917,43917,43918,43918,43919,43919,43920,43920,43921,43921,43922,43922,43923,43923,43924,43924,44402,44402,44403,44403,44361,44361,43925,43925,43926,43926,43927,43927,43928,43928,43929,43929,43930,43930,43931,43931,43932,43932,43933,43933,43934,43934,43935,43935,43936,43936,43937,43937,44339,44339,44362,44362,43938,43938,43939,43939,43940,43940,43941,43941,43942,43942,43943,43943,43944,43944,43945,43945,43946,43946,43947,43947,43948,43948,43949,43949,43950,43950,44252,44252,44253,44253,43951,43951,43952,43952,43953,43953,44418,44418,44432,44432,43954,43954,43955,43955,43956,43956,44657,44657,44550,44550,44404,44404,44363,44363,44340,44340,44319,44319,44254,44254,43957,43957,43958,43958,43959,43959,43960,43960,43961,43961,44255,44255,44376,44376,44389,44389,44290,44290,43962,43962,43963,43963,43964,43964,43965,43965,43966,43966,43967,43967,43968,43968,44320,44320,44256,44256,43969,43969,43970,43970,43971,43971,43972,43972,43973,43973,43974,43974,43975,43975,43976,43976,43977,43977,43978,43978,44291,44291,44341,44341,44257,44257,43979,43979,43980,43980,43981,43981,43982,43982,43983,43983,43984,43984,43985,43985,43986,43986,43987,43987,43988,43988,44292,44292,44364,44364,44377,44377,44405,44405,44391,44391,44342,44342,44321,44321,43989,43989,43990,43990,43991,43991,43992,43992,43993,43993,43994,43994,43995,43995,43996,43996,43997,43997,44365,44365,44378,44378,44407,44407,44420,44420,44422,44422,44343,44343,44258,44258,43998,43998,43999,43999,44000,44000,44001,44001,44002,44002,44003,44003,44004,44004,44005,44005,44006,44006,44007,44007,44008,44008,44009,44009,44010,44010,44293,44293,44322,44322,44011,44011,44012,44012,44013,44013,44014,44014,44015,44015,44016,44016,44017,44017,44018,44018,44019,44019,44020,44020,44021,44021,44022,44022,44323,44323,44023,44023,44024,44024,44025,44025,44324,44324,44026,44026,44027,44027,44028,44028,44029,44029,44030,44030,44031,44031,44032,44032,44259,44259,44033,44033,44034,44034,44035,44035,44260,44260,44036,44036,44037,44037,44038,44038,44261,44261,44039,44039,44040,44040,44041,44041,44294,44294,44042,44042,44043,44043,44044,44044,44262,44262,44045,44045,44046,44046,44047,44047,44048,44048,44049,44049,44050,44050,44051,44051,44052,44052,44366,44366,44434,44434,44409,44409,44393,44393,44367,44367,44344,44344,44295,44295,44053,44053,44054,44054,44055,44055,44056,44056,44057,44057,44058,44058,44059,44059,44060,44060,44061,44061,44062,44062,44063,44063,44263,44263,44064,44064,44065,44065,44066,44066,44067,44067,44068,44068,44069,44069,44070,44070,44264,44264,44345,44345,44346,44346,44296,44296,44071,44071,44072,44072,44073,44073,44074,44074,44075,44075,44076,44076,44077,44077,44325,44325,44265,44265,44078,44078,44079,44079,44080,44080,44081,44081,44082,44082,44083,44083,44084,44084,44085,44085,44086,44086,44266,44266,44087,44087,44088,44088,44089,44089,44267,44267,44090,44090,44091,44091,44092,44092,44379,44379,44368,44368,44347,44347,44297,44297,44093,44093,44094,44094,44095,44095,44096,44096,44097,44097,44098,44098,44099,44099,44100,44100,44101,44101,44102,44102,44103,44103,44104,44104,44105,44105,44106,44106,63382,63382,63381,63381,63380,63380,63379,63379,63378,63378,63377,63377,63546,63546,63848,63848,63775,63775,63376,63376,63375,63375,63374,63374,63373,63373,63372,63372,63686,63686,63545,63545,63371,63371,63370,63370,63369,63369,63368,63368,63367,63367,63366,63366,63365,63365,63364,63364,63363,63363,63544,63544,63685,63685,63362,63362,63361,63361,63360,63360,63359,63359,63358,63358,63357,63357,63356,63356,63355,63355,63354,63354,63353,63353,63352,63352,63351,63351,63543,63543,63350,63350,63349,63349,63348,63348,63347,63347,63346,63346,63345,63345,63542,63542,64299,64299,64375,64375,63847,63847,63774,63774,63344,63344,63343,63343,63342,63342,63341,63341,63340,63340,63339,63339,63338,63338,63337,63337,63336,63336,63335,63335,63334,63334,63333,63333,63684,63684,63541,63541,63332,63332,63331,63331,63330,63330,63683,63683,63540,63540,63329,63329,63328,63328,63327,63327,63682,63682,63326,63326,63325,63325,63324,63324,63323,63323,63322,63322,63681,63681,63321,63321,46514,46514,46515,46515,46516,46516,46629,46629,46614,46614,46517,46517,46518,46518,46519,46519,46635,46635,46658,46658,46660,46660,46659,46659,46653,46653,46520,46520,46521,46521,46522,46522,46615,46615,46523,46523,46524,46524,46525,46525,46526,46526,46527,46527,46528,46528,46616,46616,46630,46630,46529,46529,46530,46530,46322,46322,46323,46323,46324,46324,46325,46325,46326,46326,46416,46416,46327,46327,46328,46328,46329,46329,46417,46417,46425,46425,46330,46330,46331,46331,46332,46332,46333,46333,46334,46334,46335,46335,46336,46336,46337,46337,46338,46338,46418,46418,46339,46339,46340,46340,46341,46341,46342,46342,46343,46343,46344,46344,46345,46345,46346,46346,46347,46347,46348,46348,46349,46349,46350,46350,46351,46351,46441,46441,46435,46435,46426,46426,46352,46352,46353,46353,46354,46354,46355,46355,46356,46356,46357,46357,46358,46358,46427,46427,46359,46359,46360,46360,46361,46361,46362,46362,46363,46363,46364,46364,46365,46365,46366,46366,46367,46367,46368,46368,46428,46428,46419,46419,46369,46369,46370,46370,46371,46371,46372,46372,46373,46373,46374,46374,46375,46375,46376,46376,46377,46377,46378,46378,46379,46379,46380,46380,63320,63320,63319,63319,63318,63318,63680,63680,63539,63539,63317,63317,63316,63316,63315,63315,63314,63314,63313,63313,63312,63312,63311,63311,63310,63310,63309,63309,63679,63679,63308,63308,63307,63307,63306,63306,63305,63305,63304,63304,63678,63678,63303,63303,63302,63302,63301,63301,63300,63300,63299,63299,63298,63298,63297,63297,63296,63296,63295,63295,63294,63294,63892,63892,63677,63677,63293,63293,63292,63292,63291,63291,63290,63290,63289,63289,63288,63288,63287,63287,63286,63286,63285,63285,63538,63538,63537,63537,63284,63284,63283,63283,63282,63282,63676,63676,63891,63891,63281,63281,63280,63280,63279,63279,63278,63278,63277,63277,63276,63276,63275,63275,63274,63274,63273,63273,63272,63272,63536,63536,63535,63535,63271,63271,63270,63270,63269,63269,63268,63268,63267,63267,64109,64109,64222,64222,64153,64153,64054,64054,63773,63773,63266,63266,63265,63265,63264,63264,63263,63263,63262,63262,63675,63675,63261,63261,63260,63260,59577,59577,59578,59578,60122,60122,59579,59579,59580,59580,59581,59581,59582,59582,59583,59583,60157,60157,60123,60123,59584,59584,59585,59585,59586,59586,60070,60070,60158,60158,59587,59587,59588,59588,59589,59589,59590,59590,59591,59591,60124,60124,59592,59592,59593,59593,59594,59594,59595,59595,59596,59596,59597,59597,59598,59598,59599,59599,59600,59600,59601,59601,59602,59602,59603,59603,59604,59604,60125,60125,59605,59605,59606,59606,59607,59607,59608,59608,59609,59609,59610,59610,60071,60071,60193,60193,60171,60171,60159,60159,59611,59611,59612,59612,59613,59613,59614,59614,59615,59615,60126,60126,60185,60185,60199,60199,60072,60072,59616,59616,59617,59617,59618,59618,59619,59619,59620,59620,59621,59621,59622,59622,60127,60127,59623,59623,59624,59624,59625,59625,59626,59626,59627,59627,60160,60160,59628,59628,59629,59629,59630,59630,60073,60073,60128,60128,59631,59631,59632,59632,59633,59633,59634,59634,59635,59635,60074,60074,59636,59636,59637,59637,59638,59638,59639,59639,59640,59640,59641,59641,59642,59642,59643,59643,60129,60129,60172,60172,60194,60194,60173,60173,60130,60130,59644,59644,59645,59645,59646,59646,59647,59647,59648,59648,59649,59649,59650,59650,59651,59651,59652,59652,59653,59653,60075,60075,60076,60076,59654,59654,59655,59655,59656,59656,60131,60131,59657,59657,59658,59658,59659,59659,59660,59660,59661,59661,59662,59662,60077,60077,59663,59663,59664,59664,59665,59665,60186,60186,60078,60078,59666,59666,59667,59667,59668,59668,59669,59669,59670,59670,59671,59671,59672,59672,59673,59673,59674,59674,59675,59675,59676,59676,59677,59677,60132,60132,59678,59678,59679,59679,59680,59680,59681,59681,59682,59682,60161,60161,59683,59683,59684,59684,59685,59685,60079,60079,60133,60133,59686,59686,59687,59687,59688,59688,60080,60080,59689,59689,59690,59690,59691,59691,60081,60081,60134,60134,59692,59692,59693,59693,59694,59694,59695,59695,59696,59696,59697,59697,59698,59698,59699,59699,59700,59700,59701,59701,60135,60135,59702,59702,59703,59703,59704,59704,60082,60082,60083,60083,59705,59705,59706,59706,59707,59707,59708,59708,59709,59709,60084,60084,60174,60174,60187,60187,60175,60175,60136,60136,59710,59710,59711,59711,59712,59712,60251,60251,60252,60252,60253,60253,60423,60423,60445,60445,60424,60424,60254,60254,60255,60255,60256,60256,60257,60257,60258,60258,60259,60259,60260,60260,60261,60261,60262,60262,60263,60263,60264,60264,60265,60265,60266,60266,60425,60425,60461,60461,60457,60457,60452,60452,60267,60267,60268,60268,60269,60269,60270,60270,60271,60271,60272,60272,60273,60273,60426,60426,60427,60427,60274,60274,60275,60275,60276,60276,60277,60277,60278,60278,60428,60428,60446,60446,60279,60279,60280,60280,60281,60281,60282,60282,60283,60283,60462,60462,60284,60284,60285,60285,60286,60286,60287,60287,60288,60288,60289,60289,60290,60290,60429,60429,60291,60291,60292,60292,60293,60293,60430,60430,60294,60294,60295,60295,60296,60296,60297,60297,60298,60298,60453,60453,60458,60458,60454,60454,60299,60299,60300,60300,60301,60301,60302,60302,60303,60303,60304,60304,60305,60305,60447,60447,60306,60306,60307,60307,60308,60308,60309,60309,60310,60310,60311,60311,60312,60312,60431,60431,60313,60313,60314,60314,60315,60315,60316,60316,60317,60317,60318,60318,60319,60319,60320,60320,60321,60321,60322,60322,60432,60432,60323,60323,60324,60324,60325,60325,60433,60433,60455,60455,60434,60434,60326,60326,60327,60327,60328,60328,60329,60329,60330,60330,60331,60331,60332,60332,60333,60333,60334,60334,60435,60435,60335,60335,60336,60336,60337,60337,60338,60338,60339,60339,60436,60436,60340,60340,60341,60341,63259,63259,63534,63534,63674,63674,63258,63258,63257,63257,63256,63256,63255,63255,63254,63254,63253,63253,63252,63252,63251,63251,63673,63673,63533,63533,63250,63250,63249,63249,63248,63248,63247,63247,63246,63246,63245,63245,63672,63672,63846,63846,64007,64007,63532,63532,63244,63244,63243,63243,63242,63242,63845,63845,63241,63241,63240,63240,63239,63239,63238,63238,63237,63237,63236,63236,63235,63235,63234,63234,63772,63772,63950,63950,63671,63671,63233,63233,63232,63232,63231,63231,63230,63230,63229,63229,63228,63228,63227,63227,63226,63226,63670,63670,63225,63225,63224,63224,63223,63223,63222,63222,63221,63221,63669,63669,63531,63531,63220,63220,63219,63219,63218,63218,63217,63217,63216,63216,63215,63215,63844,63844,63530,63530,63214,63214,63213,63213,63212,63212,63211,63211,63210,63210,63209,63209,63208,63208,63207,63207,63668,63668,63667,63667,63206,63206,63205,63205,63204,63204,63529,63529,63771,63771,63770,63770,63666,63666,63203,63203,63202,63202,63201,63201,63200,63200,63199,63199,64105,64105,63528,63528,63198,63198,63197,63197,63196,63196,63665,63665,63527,63527,63195,63195,63194,63194,63193,63193,63192,63192,63191,63191,63190,63190,63189,63189,63664,63664,63769,63769,63890,63890,63188,63188,63187,63187,63186,63186,63185,63185,63184,63184,63183,63183,63182,63182,63181,63181,63180,63180,63179,63179,63526,63526,63178,63178,63177,63177,63176,63176,63175,63175,63174,63174,63173,63173,63172,63172,63171,63171,63170,63170,64005,64005,63525,63525,63169,63169,63168,63168,63167,63167,64149,64149,63663,63663,63524,63524,63166,63166,63165,63165,63164,63164,63163,63163,63162,63162,63161,63161,63160,63160,63159,63159,63158,63158,63157,63157,63662,63662,63768,63768,63843,63843,63949,63949,64004,64004,63889,63889,63767,63767,63156,63156,63155,63155,63154,63154,63153,63153,63152,63152,63661,63661,63842,63842,63151,63151,63150,63150,63149,63149,63148,63148,63147,63147,63146,63146,63145,63145,63144,63144,63143,63143,63766,63766,63765,63765,63660,63660,63142,63142,63141,63141,63140,63140,63139,63139,63138,63138,63137,63137,63136,63136,63135,63135,63134,63134,63133,63133,63132,63132,63659,63659,63948,63948,63131,63131,63130,63130,63129,63129,63128,63128,63127,63127,63126,63126,63125,63125,63124,63124,63123,63123,63122,63122,63121,63121,63120,63120,63119,63119,63118,63118,63117,63117,63116,63116,63115,63115,63114,63114,63113,63113,63658,63658,63888,63888,63523,63523,63112,63112,63111,63111,63110,63110,63764,63764,63109,63109,63108,63108,63107,63107,63106,63106,63105,63105,63657,63657,63841,63841,63887,63887,63522,63522,63104,63104,63103,63103,63102,63102,63101,63101,63100,63100,63099,63099,63098,63098,63763,63763,63521,63521,63097,63097,63096,63096,63095,63095,63656,63656,64003,64003,63947,63947,63840,63840,63762,63762,63094,63094,63093,63093,63092,63092,63091,63091,63090,63090,63655,63655,63886,63886,63946,63946,63839,63839,63654,63654,63520,63520,63089,63089,63088,63088,63087,63087,63761,63761,63519,63519,63086,63086,63085,63085,63084,63084,63083,63083,63082,63082,63081,63081,63080,63080,63079,63079,63078,63078,63077,63077,63076,63076,63075,63075,63074,63074,63073,63073,63072,63072,63518,63518,63071,63071,63070,63070,63069,63069,63068,63068,63067,63067,63066,63066,63065,63065,63064,63064,63653,63653,63063,63063,63062,63062,63061,63061,63060,63060,63059,63059,63058,63058,63057,63057,63056,63056,63652,63652,64001,64001,63651,63651,63055,63055,63054,63054,63053,63053,63052,63052,63051,63051,63760,63760,63517,63517,63050,63050,63049,63049,63048,63048,63047,63047,63046,63046,63045,63045,63044,63044,63516,63516,63043,63043,63042,63042,63041,63041,63759,63759,63040,63040,63039,63039,63038,63038,63037,63037,63036,63036,63035,63035,63034,63034,63033,63033,63032,63032,63031,63031,63030,63030,63029,63029,63028,63028,63027,63027,63026,63026,63025,63025,63024,63024,63023,63023,63022,63022,63021,63021,63020,63020,63019,63019,63018,63018,63017,63017,63016,63016,63015,63015,63014,63014,63650,63650,63013,63013,63012,63012,63011,63011,63010,63010,63009,63009,63008,63008,63007,63007,63006,63006,63005,63005,63515,63515,63004,63004,63003,63003,63002,63002,63514,63514,63001,63001,63000,63000,62999,62999,62998,62998,62997,62997,62996,62996,62995,62995,63944,63944,63758,63758,62994,62994,62993,62993,62992,62992,62991,62991,62990,62990,62989,62989,62988,62988,62987,62987,63513,63513,62986,62986,62985,62985,62984,62984,63649,63649,63648,63648,62983,62983,62982,62982,62981,62981,62980,62980,62979,62979,62978,62978,62977,62977,62976,62976,62975,62975,62974,62974,62973,62973,62972,62972,62971,62971,62970,62970,62969,62969,62968,62968,62967,62967,62966,62966,62965,62965,62964,62964,62963,62963,62962,62962,62961,62961,62960,62960,62959,62959,63512,63512,63647,63647,63837,63837,63757,63757,62958,62958,62957,62957,62956,62956,62955,62955,62954,62954,63511,63511,62953,62953,62952,62952,62951,62951,62950,62950,62949,62949,62948,62948,64147,64147,62947,62947,62946,62946,62945,62945,63836,63836,63646,63646,62944,62944,62943,62943,62942,62942,62941,62941,62940,62940,62939,62939,62938,62938,62937,62937,62936,62936,62935,62935,63510,63510,62934,62934,62933,62933,62932,62932,62931,62931,62930,62930,63756,63756,62929,62929,62928,62928,62927,62927,63509,63509,62926,62926,62925,62925,62924,62924,63645,63645,62923,62923,62922,62922,62921,62921,62920,62920,62919,62919,64052,64052,63999,63999,63508,63508,62918,62918,62917,62917,62916,62916,62915,62915,62914,62914,62913,62913,62912,62912,63507,63507,62911,62911,62910,62910,62909,62909,63644,63644,63643,63643,62908,62908,62907,62907,62906,62906,62905,62905,62904,62904,62903,62903,62902,62902,62901,62901,62900,62900,62899,62899,62898,62898,62897,62897,63642,63642,62896,62896,62895,62895,62894,62894,62893,62893,62892,62892,63641,63641,63755,63755,63640,63640,62891,62891,62890,62890,62889,62889,62888,62888,62887,62887,62886,62886,63998,63998,63835,63835,63754,63754,62885,62885,62884,62884,62883,62883,62882,62882,62881,62881,63639,63639,62880,62880,62879,62879,62878,62878,63834,63834,62877,62877,62876,62876,62875,62875,62874,62874,62873,62873,62872,62872,62871,62871,62870,62870,62869,62869,62868,62868,62867,62867,62866,62866,62865,62865,62864,62864,62863,62863,62862,62862,62861,62861,63638,63638,63833,63833,63882,63882,63941,63941,63637,63637,62860,62860,62859,62859,62858,62858,63506,63506,63636,63636,63505,63505,62857,62857,62856,62856,62855,62855,62854,62854,62853,62853,64359,64359,63832,63832,62852,62852,62851,62851,62850,62850,63504,63504,62849,62849,62848,62848,62847,62847,62846,62846,62845,62845,63831,63831,63635,63635,62844,62844,62843,62843,62842,62842,63503,63503,63753,63753,62841,62841,62840,62840,62839,62839,62838,62838,62837,62837,62836,62836,62835,62835,62834,62834,62833,62833,62832,62832,62831,62831,62830,62830,62829,62829,63502,63502,63752,63752,63830,63830,62828,62828,62827,62827,62826,62826,62825,62825,62824,62824,62823,62823,62822,62822,62821,62821,62820,62820,62819,62819,62818,62818,62817,62817,62816,62816,62815,62815,62814,62814,63634,63634,62813,62813,62812,62812,62811,62811,62810,62810,62809,62809,62808,62808,62807,62807,62806,62806,62805,62805,62804,62804,62803,62803,62802,62802,62801,62801,63751,63751,63940,63940,62800,62800,62799,62799,62798,62798,62797,62797,62796,62796,62795,62795,63501,63501,62794,62794,62793,62793,62792,62792,62791,62791,62790,62790,62789,62789,62788,62788,62787,62787,62786,62786,62785,62785,62784,62784,62783,62783,62782,62782,63500,63500,62781,62781,62780,62780,62779,62779,62778,62778,62777,62777,62776,62776,62775,62775,62774,62774,62773,62773,62772,62772,62771,62771,62770,62770,63633,63633,63750,63750,63881,63881,63939,63939,64050,64050,63997,63997,63938,63938,63880,63880,63829,63829,63632,63632,62769,62769,62768,62768,62767,62767,63499,63499,63749,63749,63995,63995,63936,63936,62766,62766,62765,62765,62764,62764,62763,62763,62762,62762,62761,62761,62760,62760,62759,62759,62758,62758,62757,62757,62756,62756,62755,62755,62754,62754,62753,62753,62752,62752,62751,62751,62750,62750,62749,62749,62748,62748,62747,62747,62746,62746,62745,62745,62744,62744,63498,63498,62743,62743,62742,62742,62741,62741,62740,62740,62739,62739,62738,62738,62737,62737,64443,64443,62736,62736,62735,62735,62734,62734,62733,62733,62732,62732,62731,62731,62730,62730,62729,62729,62728,62728,62727,62727,62726,62726,62725,62725,62724,62724,63878,63878,62723,62723,62722,62722,62721,62721,62720,62720,62719,62719,62718,62718,62717,62717,62716,62716,62715,62715,63497,63497,63748,63748,63496,63496,62714,62714,62713,62713,62712,62712,63631,63631,63747,63747,63495,63495,62711,62711,62710,62710,62709,62709,62708,62708,62707,62707,63494,63494,62706,62706,62705,62705,62704,62704,62703,62703,62702,62702,63493,63493,63630,63630,63828,63828,63994,63994,63492,63492,62701,62701,62700,62700,62699,62699,62698,62698,62697,62697,62696,62696,62695,62695,63629,63629,63746,63746,62694,62694,62693,62693,62692,62692,62691,62691,62690,62690,62689,62689,62688,62688,62687,62687,62686,62686,62685,62685,62684,62684,62683,62683,62682,62682,62681,62681,62680,62680,62679,62679,62678,62678,62677,62677,63827,63827,63745,63745,62676,62676,62675,62675,62674,62674,62673,62673,62672,62672,62671,62671,62670,62670,62669,62669,62668,62668,62667,62667,62666,62666,62665,62665,63491,63491,63744,63744,63935,63935,63825,63825,63490,63490,62664,62664,62663,62663,62662,62662,62661,62661,62660,62660,63489,63489,63743,63743,63742,63742,62659,62659,62658,62658,62657,62657,62656,62656,62655,62655,62654,62654,62653,62653,62652,62652,62651,62651,62650,62650,62649,62649,62648,62648,63488,63488,62647,62647,62646,62646,62645,62645,62644,62644,62643,62643,62642,62642,62641,62641,63628,63628,63741,63741,62640,62640,62639,62639,62638,62638,62637,62637,62636,62636,62635,62635,62634,62634,62633,62633,64099,64099,63487,63487,62632,62632,62631,62631,62630,62630,63627,63627,62629,62629,62628,62628,62627,62627,62626,62626,62625,62625,62624,62624,62623,62623,62622,62622,64524,64524,63486,63486,62621,62621,62620,62620,62619,62619,63626,63626,63740,63740,63485,63485,62618,62618,62617,62617,62616,62616,63625,63625,63992,63992,63739,63739,63624,63624,62615,62615,62614,62614,62613,62613,62612,62612,62611,62611,62610,62610,62609,62609,62608,62608,62607,62607,62606,62606,62605,62605,62604,62604,62603,62603,62602,62602,62601,62601,62600,62600,62599,62599,62598,62598,62597,62597,62596,62596,62595,62595,63934,63934,64143,64143,64208,64208,64045,64045,63991,63991,62594,62594,62593,62593,62592,62592,62591,62591,62590,62590,62589,62589,62588,62588,62587,62587,62586,62586,63484,63484,63824,63824,62585,62585,62584,62584,62583,62583,62582,62582,62581,62581,63483,63483,63933,63933,63623,63623,63482,63482,62580,62580,62579,62579,62578,62578,62577,62577,62576,62576,62575,62575,62574,62574,62573,62573,62572,62572,62571,62571,62570,62570,62569,62569,62568,62568,62567,62567,63622,63622,62566,62566,62565,62565,62564,62564,63932,63932,63877,63877,62563,62563,62562,62562,62561,62561,62560,62560,62559,62559,63621,63621,63738,63738,63823,63823,64097,64097,64096,64096,63931,63931,63620,63620,63481,63481,62558,62558,62557,62557,62556,62556,62555,62555,62554,62554,62553,62553,62552,62552,62551,62551,62550,62550,62549,62549,62548,62548,62547,62547,62546,62546,62545,62545,62544,62544,62543,62543,62542,62542,62541,62541,62540,62540,62539,62539,62538,62538,62537,62537,62536,62536,64281,64281,64358,64358,63822,63822,62535,62535,62534,62534,62533,62533,62532,62532,62531,62531,62530,62530,63480,63480,64441,64441,64357,64357,64280,64280,63737,63737,62529,62529,62528,62528,62527,62527,62526,62526,62525,62525,62524,62524,62523,62523,63479,63479,62522,62522,62521,62521,62520,62520,62519,62519,62518,62518,62517,62517,62516,62516,62515,62515,62514,62514,62513,62513,62512,62512,62511,62511,62510,62510,62509,62509,63736,63736,63876,63876,63930,63930,63990,63990,63821,63821,63619,63619,62508,62508,62507,62507,62506,62506,62505,62505,62504,62504,63478,63478,62503,62503,62502,62502,62501,62501,62500,62500,62499,62499,62498,62498,62497,62497,62496,62496,62495,62495,62494,62494,63735,63735,63929,63929,63477,63477,62493,62493,62492,62492,62491,62491,62490,62490,62489,62489,62488,62488,62487,62487,62486,62486,62485,62485,62484,62484,62483,62483,62482,62482,62481,62481,62480,62480,62479,62479,62478,62478,62477,62477,62476,62476,64044,64044,63618,63618,63476,63476,62475,62475,62474,62474,62473,62473,62472,62472,62471,62471,62470,62470,62469,62469,62468,62468,62467,62467,62466,62466,62465,62465,62464,62464,63617,63617,63875,63875,63928,63928,64696,64696,63820,63820,63734,63734,62463,62463,62462,62462,62461,62461,62460,62460,62459,62459,63616,63616,64974,64974,63927,63927,63874,63874,63819,63819,62458,62458,62457,62457,62456,62456,62455,62455,62454,62454,63615,63615,63733,63733,64440,64440,64356,64356,63818,63818,63732,63732,62453,62453,62452,62452,62451,62451,62450,62450,62449,62449,63614,63614,63873,63873,63817,63817,63613,63613,62448,62448,62447,62447,62446,62446,62445,62445,62444,62444,62443,62443,62442,62442,62441,62441,63612,63612,63731,63731,62440,62440,62439,62439,62438,62438,62437,62437,62436,62436,62435,62435,62434,62434,62433,62433,62432,62432,62431,62431,62430,62430,62429,62429,62428,62428,62427,62427,62426,62426,62425,62425,62424,62424,63611,63611,63610,63610,62423,62423,62422,62422,62421,62421,62420,62420,62419,62419,62418,62418,62417,62417,62416,62416,62415,62415,63609,63609,63816,63816,63872,63872,63926,63926,62414,62414,62413,62413,62412,62412,64142,64142,64207,64207,63730,63730,62411,62411,62410,62410,62409,62409,62408,62408,62407,62407,62406,62406,62405,62405,62404,62404,62403,62403,62402,62402,62401,62401,62400,62400,63475,63475,62399,62399,62398,62398,62397,62397,63474,63474,62396,62396,62395,62395,62394,62394,62393,62393,62392,62392,62391,62391,62390,62390,63729,63729,62389,62389,62388,62388,62387,62387,63728,63728,63473,63473,62386,62386,62385,62385,62384,62384,62383,62383,62382,62382,62381,62381,63815,63815,63925,63925,63924,63924,63814,63814,63727,63727,63608,63608,62380,62380,62379,62379,62378,62378,62377,62377,62376,62376,63472,63472,62375,62375,62374,62374,62373,62373,62372,62372,62371,62371,62370,62370,62369,62369,62368,62368,62367,62367,62366,62366,63813,63813,62365,62365,62364,62364,62363,62363,62362,62362,62361,62361,62360,62360,62359,62359,62358,62358,62357,62357,62356,62356,62355,62355,62354,62354,62353,62353,62352,62352,62351,62351,62350,62350,62349,62349,62348,62348,62347,62347,62346,62346,62345,62345,62344,62344,62343,62343,62342,62342,62341,62341,62340,62340,62339,62339,62338,62338,63607,63607,62337,62337,62336,62336,62335,62335,62334,62334,62333,62333,63471,63471,62332,62332,62331,62331,62330,62330,62329,62329,62328,62328,62327,62327,62326,62326,62325,62325,62324,62324,62323,62323,62322,62322,62321,62321,62320,62320,62319,62319,62318,62318,62317,62317,62316,62316,62315,62315,62314,62314,62313,62313,63989,63989,62312,62312,62311,62311,62310,62310,63812,63812,63470,63470,62309,62309,62308,62308,62307,62307,62306,62306,62305,62305,62304,62304,62303,62303,62302,62302,62301,62301,62300,62300,62299,62299,62298,62298,63726,63726,63606,63606,62297,62297,62296,62296,62295,62295,63469,63469,62294,62294,62293,62293,62292,62292,62291,62291,62290,62290,62289,62289,62288,62288,62287,62287,62286,62286,62285,62285,62284,62284,62283,62283,62282,62282,62281,62281,62280,62280,63605,63605,62279,62279,62278,62278,62277,62277,62276,62276,62275,62275,62274,62274,62273,62273,62272,62272,63468,63468,62271,62271,62270,62270,62269,62269,63467,63467,62268,62268,62267,62267,62266,62266,62265,62265,62264,62264,62263,62263,62262,62262,62261,62261,62260,62260,62259,62259,62258,62258,63466,63466,62257,62257,62256,62256,62255,62255,62254,62254,62253,62253,63923,63923,62252,62252,62251,62251,62250,62250,62249,62249,62248,62248,62247,62247,62246,62246,62245,62245,62244,62244,62243,62243,62242,62242,62241,62241,62240,62240,62239,62239,62238,62238,62237,62237,62236,62236,62235,62235,62234,62234,62233,62233,62232,62232,62231,62231,62230,62230,62229,62229,62228,62228,62227,62227,64138,64138,64042,64042,63811,63811,63465,63465,62226,62226,62225,62225,62224,62224,62223,62223,62222,62222,62221,62221,62220,62220,62219,62219,62218,62218,62217,62217,62216,62216,62215,62215,62214,62214,62213,62213,63604,63604,62212,62212,62211,62211,62210,62210,63922,63922,63988,63988,62209,62209,62208,62208,62207,62207,62206,62206,62205,62205,62204,62204,62203,62203,62202,62202,62201,62201,62200,62200,62199,62199,62198,62198,62197,62197,62196,62196,62195,62195,62194,62194,62193,62193,63725,63725,62192,62192,62191,62191,62190,62190,62189,62189,62188,62188,62187,62187,62186,62186,62185,62185,63464,63464,62184,62184,62183,62183,62182,62182,62181,62181,62180,62180,62179,62179,64518,64518,63810,63810,63724,63724,63463,63463,62178,62178,62177,62177,62176,62176,62175,62175,62174,62174,63462,63462,62173,62173,62172,62172,62171,62171,62170,62170,62169,62169,63461,63461,62168,62168,62167,62167,62166,62166,62165,62165,62164,62164,62163,62163,64040,64040,63809,63809,62162,62162,62161,62161,62160,62160,62159,62159,62158,62158,62157,62157,62156,62156,62155,62155,62154,62154,62153,62153,62152,62152,63460,63460,62151,62151,62150,62150,62149,62149,62148,62148,62147,62147,63603,63603,63808,63808,63920,63920,63986,63986,63985,63985,63919,63919,63870,63870,63602,63602,62146,62146,62145,62145,62144,62144,62143,62143,62142,62142,62141,62141,62140,62140,62139,62139,63459,63459,62138,62138,62137,62137,62136,62136,62135,62135,62134,62134,63458,63458,64039,64039,64092,64092,64276,64276,64274,64274,63807,63807,63723,63723,62133,62133,62132,62132,62131,62131,62130,62130,62129,62129,63601,63601,62128,62128,62127,62127,62126,62126,62125,62125,62124,62124,63457,63457,62123,62123,62122,62122,62121,62121,62120,62120,62119,62119,62118,62118,62117,62117,62116,62116,62115,62115,62114,62114,62113,62113,62112,62112,62111,62111,62110,62110,62109,62109,62108,62108,63722,63722,63806,63806,62107,62107,62106,62106,62105,62105,62104,62104,62103,62103,62102,62102,62101,62101,62100,62100,62099,62099,62098,62098,63600,63600,64203,64203,63805,63805,63721,63721,62097,62097,62096,62096,62095,62095,62094,62094,62093,62093,63599,63599,63720,63720,63456,63456,62092,62092,62091,62091,62090,62090,63455,63455,62089,62089,62088,62088,62087,62087,62086,62086,62085,62085,62084,62084,62083,62083,62082,62082,62081,62081,62080,62080,62079,62079,62078,62078,62077,62077,62076,62076,62075,62075,62074,62074,62073,62073,62072,62072,62071,62071,62070,62070,62069,62069,62068,62068,62067,62067,62066,62066,62065,62065,62064,62064,62063,62063,62062,62062,62061,62061,62060,62060,62059,62059,62058,62058,62057,62057,62056,62056,62055,62055,62054,62054,62053,62053,62052,62052,62051,62051,62050,62050,62049,62049,63454,63454,62048,62048,62047,62047,62046,62046,62045,62045,62044,62044,63598,63598,62043,62043,62042,62042,62041,62041,62040,62040,62039,62039,62038,62038,62037,62037,62036,62036,63597,63597,63719,63719,62035,62035,62034,62034,62033,62033,62032,62032,62031,62031,62030,62030,62029,62029,62028,62028,62027,62027,63918,63918,63453,63453,62026,62026,62025,62025,62024,62024,63869,63869,63596,63596,63452,63452,62023,62023,62022,62022,62021,62021,62020,62020,62019,62019,63451,63451,63804,63804,62018,62018,62017,62017,62016,62016,62015,62015,62014,62014,62013,62013,62012,62012,63718,63718,63450,63450,62011,62011,62010,62010,62009,62009,63595,63595,64271,64271,64200,64200,64136,64136,63449,63449,62008,62008,62007,62007,62006,62006,62005,62005,62004,62004,62003,62003,62002,62002,62001,62001,62000,62000,61999,61999,61998,61998,61997,61997,61996,61996,61995,61995,61994,61994,63803,63803,63868,63868,63984,63984,63448,63448,61993,61993,61992,61992,61991,61991,61990,61990,61989,61989,61988,61988,61987,61987,61986,61986,61985,61985,61984,61984,63447,63447,63717,63717,63802,63802,63716,63716,63446,63446,61983,61983,61982,61982,61981,61981,61980,61980,61979,61979,61978,61978,61977,61977,61976,61976,61975,61975,61974,61974,61973,61973,61972,61972,61971,61971,61970,61970,61969,61969,61968,61968,61967,61967,61966,61966,61965,61965,61964,61964,61963,61963,61962,61962,61961,61961,61960,61960,61959,61959,61958,61958,61957,61957,61956,61956,61955,61955,61954,61954,61953,61953,63445,63445,63867,63867,63594,63594,63444,63444,61952,61952,61951,61951,61950,61950,61949,61949,61948,61948,61947,61947,61946,61946,63593,63593,61945,61945,61944,61944,61943,61943,61942,61942,61941,61941,61940,61940,61939,61939,61938,61938,61937,61937,61936,61936,61935,61935,61934,61934,61933,61933,61932,61932,61931,61931,61930,61930,61929,61929,61928,61928,61927,61927,61926,61926,61925,61925,61924,61924,63592,63592,63443,63443,61923,61923,61922,61922,61921,61921,63983,63983,63442,63442,61920,61920,61919,61919,61918,61918,61917,61917,61916,61916,61915,61915,61914,61914,61913,61913,61912,61912,61911,61911,61910,61910,61909,61909,63801,63801,61908,61908,61907,61907,61906,61906,61905,61905,61904,61904,61903,61903,61902,61902,61901,61901,63591,63591,63441,63441,61900,61900,61899,61899,61898,61898,63590,63590,64270,64270,64264,64264,64194,64194,64090,64090,64038,64038,61897,61897,61896,61896,61895,61895,61894,61894,61893,61893,61892,61892,61891,61891,61890,61890,61889,61889,61888,61888,61887,61887,61886,61886,61885,61885,63589,63589,61884,61884,61883,61883,61882,61882,63800,63800,61881,61881,61880,61880,61879,61879,61878,61878,61877,61877,63440,63440,61876,61876,61875,61875,61874,61874,61873,61873,61872,61872,63439,63439,61871,61871,61870,61870,61869,61869,61868,61868,61867,61867,61866,61866,61865,61865,61864,61864,61863,61863,63715,63715,61862,61862,61861,61861,61860,61860,61859,61859,61858,61858,61857,61857,61856,61856,61855,61855,61854,61854,61853,61853,61852,61852,61851,61851,61850,61850,61849,61849,61848,61848,61847,61847,61846,61846,61845,61845,61844,61844,61843,61843,61842,61842,61841,61841,63799,63799,63588,63588,61840,61840,61839,61839,61838,61838,61837,61837,61836,61836,61835,61835,61834,61834,61833,61833,61832,61832,61831,61831,63438,63438,64130,64130,61830,61830,61829,61829,61828,61828,63980,63980,63866,63866,61827,61827,61826,61826,61825,61825,61824,61824,61823,61823,61822,61822,61821,61821,61820,61820,61819,61819,63437,63437,61818,61818,61817,61817,61816,61816,61815,61815,61814,61814,63436,63436,63714,63714,61813,61813,61812,61812,61811,61811,61810,61810,61809,61809,61808,61808,61807,61807,61806,61806,61805,61805,61804,61804,61803,61803,61802,61802,61801,61801,63435,63435,64127,64127,64085,64085,63979,63979,63915,63915,61800,61800,61799,61799,61798,61798,61797,61797,61796,61796,61795,61795,63587,63587,61794,61794,61793,61793,61792,61792,61791,61791,61790,61790,61789,61789,61788,61788,61787,61787,63434,63434,61786,61786,61785,61785,61784,61784,61783,61783,61782,61782,61781,61781,61780,61780,61779,61779,61778,61778,61777,61777,61776,61776,61775,61775,61774,61774,61773,61773,61772,61772,61771,61771,61770,61770,61769,61769,61768,61768,61767,61767,61766,61766,61764,61764,61762,61762,61765,61765,61760,61760,61759,61759,61758,61758,61757,61757,61756,61756,61755,61755,61754,61754,61753,61753,61752,61752,61751,61751,61750,61750,61749,61749,61748,61748,61747,61747,63795,63795,63585,63585,63432,63432,61746,61746,61745,61745,61744,61744,61743,61743,61742,61742,61741,61741,61740,61740,61739,61739,61738,61738,61737,61737,61736,61736,61735,61735,61734,61734,63584,63584,61733,61733,61732,61732,61731,61731,63583,63583,61730,61730,61729,61729,61728,61728,61727,61727,61726,61726,61725,61725,61724,61724,61723,61723,61722,61722,61721,61721,61720,61720,61719,61719,63710,63710,61718,61718,61717,61717,61716,61716,61715,61715,61714,61714,63582,63582,63794,63794,63793,63793,63709,63709,63431,63431,61713,61713,61712,61712,61711,61711,61710,61710,61709,61709,61708,61708,61707,61707,63708,63708,61706,61706,61705,61705,61704,61704,61703,61703,61702,61702,63581,63581,63430,63430,61701,61701,61700,61700,61699,61699,63580,63580,63579,63579,61698,61698,61697,61697,61696,61696,61695,61695,61694,61694,61693,61693,61692,61692,61691,61691,61690,61690,61689,61689,63429,63429,63707,63707,61688,61688,61687,61687,61686,61686,61685,61685,61684,61684,61683,61683,61682,61682,63428,63428,61681,61681,61680,61680,61679,61679,63578,63578,63577,63577,61678,61678,61677,61677,61676,61676,61675,61675,61674,61674,63706,63706,63427,63427,61673,61673,61672,61672,61671,61671,61670,61670,61669,61669,61668,61668,63705,63705,63576,63576,61667,61667,61666,61666,61665,61665,63426,63426,61664,61664,61663,61663,61662,61662,61661,61661,61660,61660,63425,63425,61659,61659,61658,61658,61657,61657,61656,61656,61655,61655,61654,61654,61653,61653,61652,61652,61651,61651,61650,61650,61649,61649,61648,61648,61647,61647,63704,63704,63575,63575,61646,61646,61645,61645,61644,61644,63424,63424,63574,63574,61643,61643,61642,61642,61641,61641,63423,63423,61640,61640,61639,61639,61638,61638,61637,61637,61636,61636,61635,61635,61634,61634,61633,61633,61632,61632,61631,61631,61630,61630,63422,63422,61629,61629,61628,61628,61627,61627,61626,61626,61625,61625,61624,61624,61623,61623,61622,61622,61621,61621,61620,61620,61619,61619,61618,61618,61617,61617,61616,61616,61615,61615,61614,61614,61613,61613,61612,61612,61611,61611,63910,63910,61610,61610,61609,61609,61608,61608,61607,61607,61606,61606,61605,61605,61604,61604,61603,61603,61602,61602,61601,61601,61600,61600,61599,61599,61598,61598,61597,61597,61596,61596,63421,63421,61595,61595,61594,61594,61593,61593,61592,61592,61591,61591,61590,61590,61589,61589,61588,61588,61587,61587,61586,61586,61585,61585,61584,61584,63573,63573,63792,63792,63703,63703,61583,61583,61582,61582,61581,61581,63420,63420,63572,63572,63791,63791,63419,63419,61580,61580,61579,61579,61578,61578,64030,64030,63973,63973,63909,63909,63571,63571,61577,61577,61576,61576,61575,61575,63418,63418,61574,61574,61573,61573,61572,61572,61571,61571,61570,61570,61569,61569,61568,61568,63861,63861,64496,64496,64411,64411,64332,64332,64124,64124,63570,63570,61567,61567,61566,61566,61565,61565,63417,63417,63416,63416,61564,61564,61563,61563,61562,61562,61561,61561,61560,61560,61559,61559,61558,61558,61557,61557,61556,61556,63415,63415,63702,63702,63414,63414,61555,61555,61554,61554,61553,61553,63972,63972,63569,63569,61552,61552,61551,61551,61550,61550,61549,61549,61548,61548,61547,61547,61546,61546,61545,61545,61544,61544,61543,61543,61542,61542,61541,61541,61540,61540,61539,61539,61538,61538,63413,63413,63412,63412,61537,61537,61536,61536,61535,61535,63971,63971,61534,61534,61533,61533,61532,61532,61531,61531,61530,61530,61529,61529,61528,61528,61527,61527,64029,64029,63970,63970,63568,63568,61526,61526,61525,61525,61524,61524,61523,61523,61522,61522,61521,61521,61520,61520,61519,61519,61518,61518,63567,63567,63790,63790,61517,61517,61516,61516,61515,61515,64028,64028,63969,63969,63701,63701,63411,63411,61514,61514,61513,61513,61512,61512,61511,61511,61510,61510,61509,61509,61508,61508,61507,61507,63566,63566,63700,63700,63410,63410,61506,61506,61505,61505,61504,61504,63565,63565,63860,63860,61503,61503,61502,61502,61501,61501,61500,61500,61499,61499,61498,61498,61497,61497,61496,61496,61495,61495,61494,61494,61493,61493,61492,61492,61491,61491,61490,61490,61489,61489,61488,61488,61487,61487,61486,61486,61485,61485,61484,61484,61483,61483,61482,61482,61481,61481,61480,61480,61479,61479,61478,61478,61477,61477,61476,61476,61475,61475,61474,61474,63409,63409,61473,61473,61472,61472,61471,61471,61470,61470,61469,61469,61468,61468,61467,61467,61466,61466,61465,61465,61464,61464,61463,61463,63564,63564,63788,63788,63859,63859,63905,63905,63786,63786,63563,63563,61462,61462,61461,61461,61460,61460,61459,61459,61458,61458,61457,61457,61456,61456,61455,61455,61454,61454,61453,61453,61452,61452,61451,61451,61450,61450,61449,61449,61448,61448,61447,61447,61446,61446,61445,61445,61444,61444,61443,61443,61442,61442,61441,61441,61440,61440,61439,61439,61438,61438,61437,61437,61436,61436,61435,61435,61434,61434,61433,61433,61432,61432,61431,61431,61430,61430,61429,61429,61428,61428,61427,61427,61426,61426,61425,61425,61424,61424,61423,61423,63562,63562,63698,63698,61422,61422,61421,61421,61420,61420,61419,61419,61418,61418,61417,61417,61416,61416,61415,61415,61414,61414,61413,61413,61412,61412,61411,61411,61410,61410,61409,61409,63408,63408,61408,61408,61407,61407,61406,61406,63407,63407,61405,61405,61404,61404,61403,61403,65639,65639,64494,64494,64409,64409,64079,64079,63406,63406,61402,61402,61401,61401,61400,61400,63561,63561,61399,61399,61398,61398,61397,61397,61396,61396,61395,61395,61394,61394,61393,61393,61392,61392,61391,61391,61390,61390,61389,61389,61388,61388,61387,61387,63697,63697,63405,63405,61386,61386,61385,61385,61384,61384,61383,61383,61382,61382,61381,61381,61380,61380,61379,61379,61378,61378,61377,61377,61376,61376,61375,61375,61374,61374,61373,61373,61372,61372,61371,61371,63696,63696,63560,63560,61370,61370,61369,61369,61368,61368,61367,61367,61366,61366,61365,61365,61364,61364,61363,61363,63404,63404,63695,63695,63856,63856,63903,63903,64023,64023,63785,63785,63559,63559,61362,61362,61361,61361,61360,61360,61359,61359,61358,61358,63694,63694,63403,63403,61357,61357,61356,61356,61355,61355,61354,61354,61353,61353,61352,61352,61351,61351,61350,61350,61349,61349,61348,61348,61347,61347,63402,63402,61346,61346,61345,61345,61344,61344,61343,61343,61342,61342,61341,61341,61340,61340,61339,61339,61338,61338,61337,61337,61336,61336,63401,63401,61335,61335,61334,61334,61333,61333,63400,63400,63902,63902,63399,63399,61332,61332,61331,61331,61330,61330,61329,61329,61328,61328,61327,61327,61326,61326,61325,61325,61324,61324,61323,61323,61322,61322,61321,61321,61320,61320,61319,61319,61318,61318,61317,61317,61316,61316,61315,61315,61314,61314,61313,61313,61312,61312,61311,61311,61310,61310,63558,63558,61309,61309,61308,61308,61307,61307,61306,61306,61305,61305,61304,61304,61303,61303,63398,63398,63693,63693,63557,63557,63397,63397,61302,61302,61301,61301,61300,61300,64022,64022,63964,63964,63901,63901,63784,63784,61299,61299,61298,61298,61297,61297,61296,61296,61295,61295,61294,61294,61293,61293,61292,61292,61291,61291,61290,61290,61289,61289,61288,61288,64020,64020,63783,63783,63692,63692,63556,63556,61287,61287,61286,61286,61285,61285,61284,61284,61283,61283,63691,63691,61282,61282,61281,61281,61280,61280,61279,61279,61278,61278,61277,61277,61276,61276,63555,63555,61275,61275,61274,61274,61273,61273,61272,61272,61271,61271,61270,61270,61269,61269,61268,61268,61267,61267,61266,61266,63554,63554,61265,61265,61264,61264,61263,61263,61262,61262,61261,61261,61260,61260,66426,66426,66675,66675,61259,61259,61258,61258,61257,61257,61256,61256,61255,61255,63553,63553,63396,63396,61254,61254,61253,61253,61252,61252,61251,61251,61250,61250,61249,61249,61248,61248,61247,61247,61246,61246,61245,61245,61244,61244,63855,63855,61243,61243,61242,61242,61241,61241,61240,61240,61239,61239,61238,61238,61237,61237,61236,61236,61235,61235,61234,61234,63395,63395,61233,61233,61232,61232,61231,61231,65829,65829,65690,65690,65503,65503,63961,63961,61230,61230,61229,61229,61228,61228,61227,61227,61226,61226,61225,61225,61224,61224,61223,61223,61222,61222,61221,61221,61220,61220,61219,61219,63854,63854,63394,63394,61218,61218,61217,61217,61216,61216,63552,63552,61215,61215,61214,61214,61213,61213,61212,61212,61211,61211,61210,61210,61209,61209,61208,61208,61207,61207,63551,63551,63690,63690,63393,63393,61206,61206,61205,61205,61204,61204,61203,61203,61202,61202,63392,63392,63960,63960,63898,63898,63853,63853,63782,63782,63391,63391,61201,61201,61200,61200,61199,61199,61198,61198,61197,61197,61196,61196,61195,61195,63689,63689,64328,64328,64249,64249,64183,64183,64121,64121,64076,64076,61194,61194,61193,61193,61192,61192,61191,61191,61190,61190,61189,61189,63390,63390,61188,61188,61187,61187,61186,61186,61185,61185,61184,61184,61183,61183,61182,61182,61181,61181,61180,61180,63389,63389,61179,61179,61178,61178,61177,61177,61176,61176,61175,61175,63550,63550,63549,63549,61174,61174,61173,61173,61172,61172,61171,61171,61170,61170,63781,63781,63388,63388,61169,61169,61168,61168,61167,61167,61166,61166,61165,61165,61164,61164,61163,61163,61162,61162,61161,61161,61160,61160,61159,61159,61158,61158,63780,63780,63688,63688,63548,63548,61157,61157,61156,61156,61155,61155,63387,63387,61154,61154,61153,61153,61152,61152,61151,61151,61150,61150,61149,61149,61148,61148,61147,61147,63386,63386,61146,61146,61145,61145,61144,61144,61143,61143,61142,61142,61141,61141,61140,61140,61139,61139,61138,61138,61137,61137,61136,61136,61135,61135,61134,61134,61133,61133,61132,61132,61131,61131,61130,61130,61129,61129,61128,61128,61127,61127,61126,61126,61125,61125,61124,61124,61123,61123,61122,61122,61121,61121,61120,61120,61119,61119,61118,61118,61117,61117,61116,61116,63547,63547,63385,63385,61115,61115,61114,61114,61113,61113,61112,61112,61111,61111,61110,61110,61109,61109,61108,61108,61107,61107,61106,61106,63384,63384,61105,61105,61104,61104,61103,61103,61102,61102,61101,61101,61100,61100,61099,61099,61098,61098,61097,61097,61096,61096,61095,61095,61094,61094,61093,61093,61092,61092,61091,61091,61090,61090,61089,61089,63687,63687,63776,63776,63849,63849,63383,63383,61088,61088,61087,61087,61086,61086,61085,61085,61084,61084,61083,61083,61082,61082,61081,61081,61080,61080,61079,61079,61078,61078,42600,67013,67012,67012,67044,67044,67043,67043,67042,67042,67041,67041,67040,67040,67039,67039,67038,67038,67037,67037,67036,67036,67046,67046,67035,67035,67034,67034,67033,67033,67032,67032,67031,67031,67030,67030,67029,67029,67028,67028,67047,67047,67027,67027,67026,67026,67025,67025,67024,67024,67023,67023,67045,67045,67022,67022,67021,67021,67020,67020,67019,67019,67018,67018,67017,67017,67016,67016,67015,67015,67014,67014,67013,67049,67048,67048,67101,67101,67100,67100,67099,67099,67098,67098,67097,67097,67096,67096,67095,67095,67094,67094,67104,67104,67103,67103,67093,67093,67092,67092,67091,67091,67108,67108,67109,67109,67090,67090,67089,67089,67088,67088,67087,67087,67086,67086,67085,67085,67084,67084,67083,67083,67082,67082,67081,67081,67080,67080,67079,67079,67078,67078,67077,67077,67076,67076,67075,67075,67074,67074,67073,67073,67072,67072,67071,67071,67070,67070,67107,67107,67106,67106,67069,67069,67068,67068,67067,67067,67066,67066,67065,67065,67064,67064,67063,67063,67062,67062,67061,67061,67060,67060,67059,67059,67058,67058,67057,67057,67056,67056,67055,67055,67105,67105,67102,67102,67054,67054,67053,67053,67052,67052,67051,67051,67050,67050,67049,67110,67286,67286,67274,67274,67273,67273,67272,67272,67271,67271,67270,67270,67269,67269,67268,67268,67267,67267,67266,67266,67265,67265,67264,67264,67263,67263,67285,67285,67262,67262,67261,67261,67260,67260,67259,67259,67258,67258,67257,67257,67256,67256,67255,67255,67254,67254,67253,67253,67294,67294,67299,67299,67252,67252,67251,67251,67250,67250,67249,67249,67248,67248,67247,67247,67246,67246,67245,67245,67244,67244,67293,67293,67243,67243,67242,67242,67241,67241,67240,67240,67239,67239,67298,67298,67292,67292,67238,67238,67237,67237,67236,67236,67235,67235,67234,67234,67233,67233,67232,67232,67231,67231,67230,67230,67229,67229,67228,67228,67227,67227,67284,67284,67226,67226,67225,67225,67224,67224,67223,67223,67222,67222,67221,67221,67220,67220,67291,67291,67219,67219,67218,67218,67217,67217,67216,67216,67215,67215,67214,67214,67213,67213,67212,67212,67211,67211,67210,67210,67209,67209,67208,67208,67207,67207,67290,67290,67283,67283,67206,67206,67205,67205,67204,67204,67203,67203,67202,67202,67201,67201,67200,67200,67199,67199,67198,67198,67197,67197,67282,67282,67196,67196,67195,67195,67194,67194,67281,67281,67193,67193,67192,67192,67191,67191,67289,67289,67297,67297,67190,67190,67189,67189,67188,67188,67187,67187,67186,67186,67185,67185,67184,67184,67183,67183,67182,67182,67181,67181,67180,67180,67179,67179,67178,67178,67177,67177,67176,67176,67175,67175,67174,67174,67173,67173,67172,67172,67171,67171,67296,67296,67280,67280,67170,67170,67169,67169,67168,67168,67167,67167,67166,67166,67165,67165,67164,67164,67279,67279,67163,67163,67162,67162,67161,67161,67160,67160,67159,67159,67158,67158,67278,67278,67157,67157,67156,67156,67155,67155,67154,67154,67153,67153,67288,67288,67152,67152,67151,67151,67150,67150,67149,67149,67148,67148,67295,67295,67300,67300,67277,67277,67147,67147,67146,67146,67145,67145,67144,67144,67143,67143,67142,67142,67141,67141,67140,67140,67139,67139,67138,67138,67137,67137,67136,67136,67276,67276,67135,67135,67134,67134,67133,67133,67275,67275,67132,67132,67131,67131,67130,67130,67287,67287,67129,67129,67128,67128,67127,67127,67126,67126,67125,67125,67124,67124,67123,67123,67122,67122,67121,67121,67120,67120,67119,67119,67118,67118,67117,67117,67116,67116,67115,67115,67114,67114,67113,67113,67112,67112,67111,67111,67110,67304,67444,67444,67436,67436,67435,67435,67434,67434,67433,67433,67432,67432,67443,67443,67456,67456,67431,67431,67430,67430,67429,67429,67428,67428,67427,67427,67426,67426,67425,67425,67424,67424,67423,67423,67422,67422,67421,67421,67420,67420,67419,67419,67418,67418,67417,67417,67416,67416,67415,67415,67414,67414,67413,67413,67412,67412,67411,67411,67410,67410,67409,67409,67408,67408,67452,67452,67459,67459,67458,67458,67455,67455,67451,67451,67407,67407,67406,67406,67405,67405,67404,67404,67403,67403,67402,67402,67401,67401,67400,67400,67399,67399,67398,67398,67450,67450,67457,67457,67454,67454,67449,67449,67397,67397,67396,67396,67395,67395,67394,67394,67393,67393,67392,67392,67391,67391,67390,67390,67389,67389,67388,67388,67387,67387,67386,67386,67385,67385,67384,67384,67383,67383,67382,67382,67381,67381,67442,67442,67380,67380,67379,67379,67378,67378,67377,67377,67376,67376,67375,67375,67374,67374,67373,67373,67372,67372,67371,67371,67370,67370,67369,67369,67368,67368,67367,67367,67366,67366,67365,67365,67441,67441,67364,67364,67363,67363,67362,67362,67361,67361,67360,67360,67359,67359,67358,67358,67357,67357,67440,67440,67356,67356,67355,67355,67354,67354,67353,67353,67352,67352,67351,67351,67350,67350,67349,67349,67348,67348,67347,67347,67346,67346,67345,67345,67344,67344,67343,67343,67342,67342,67341,67341,67340,67340,67339,67339,67448,67448,67447,67447,67338,67338,67337,67337,67336,67336,67439,67439,67446,67446,67438,67438,67335,67335,67334,67334,67333,67333,67332,67332,67331,67331,67330,67330,67329,67329,67328,67328,67327,67327,67326,67326,67325,67325,67324,67324,67323,67323,67322,67322,67321,67321,67320,67320,67319,67319,67318,67318,67317,67317,67316,67316,67315,67315,67314,67314,67313,67313,67312,67312,67437,67437,67311,67311,67310,67310,67309,67309,67453,67453,67445,67445,67308,67308,67307,67307,67306,67306,67305,67305,67304,67461,67460,67460,67515,67515,67514,67514,67520,67520,67513,67513,67512,67512,67511,67511,67510,67510,67509,67509,67508,67508,67507,67507,67522,67522,67519,67519,67506,67506,67505,67505,67504,67504,67521,67521,67503,67503,67502,67502,67501,67501,67500,67500,67499,67499,67498,67498,67497,67497,67496,67496,67495,67495,67494,67494,67493,67493,67492,67492,67491,67491,67518,67518,67490,67490,67489,67489,67488,67488,67487,67487,67486,67486,67517,67517,67485,67485,67484,67484,67483,67483,67482,67482,67481,67481,67480,67480,67479,67479,67478,67478,67477,67477,67476,67476,67475,67475,67474,67474,67473,67473,67516,67516,67472,67472,67471,67471,67470,67470,67523,67523,67469,67469,67468,67468,67467,67467,67466,67466,67465,67465,67464,67464,67463,67463,67462,67462,67461,67525,67524,67524,67612,67612,67611,67611,67610,67610,67609,67609,67608,67608,67622,67622,67621,67621,67615,67615,67607,67607,67606,67606,67605,67605,67619,67619,67604,67604,67603,67603,67602,67602,67601,67601,67600,67600,67599,67599,67598,67598,67597,67597,67596,67596,67595,67595,67594,67594,67593,67593,67592,67592,67591,67591,67590,67590,67589,67589,67614,67614,67588,67588,67587,67587,67586,67586,67618,67618,67585,67585,67584,67584,67583,67583,67582,67582,67581,67581,67617,67617,67580,67580,67579,67579,67578,67578,67577,67577,67576,67576,67575,67575,67574,67574,67573,67573,67572,67572,67571,67571,67570,67570,67569,67569,67568,67568,67567,67567,67566,67566,67565,67565,67564,67564,67563,67563,67562,67562,67561,67561,67560,67560,67559,67559,67558,67558,67557,67557,67556,67556,67555,67555,67554,67554,67553,67553,67552,67552,67551,67551,67550,67550,67549,67549,67548,67548,67547,67547,67546,67546,67620,67620,67545,67545,67544,67544,67543,67543,67542,67542,67541,67541,67616,67616,67540,67540,67539,67539,67538,67538,67613,67613,67537,67537,67536,67536,67535,67535,67534,67534,67533,67533,67532,67532,67531,67531,67530,67530,67529,67529,67528,67528,67527,67527,67526,67526,67525,67715,67710,67710,67709,67709,67708,67708,67719,67719,67718,67718,67716,67716,67707,67707,67706,67706,67705,67705,67714,67714,67704,67704,67703,67703,67702,67702,67701,67701,67700,67700,67699,67699,67698,67698,67697,67697,67696,67696,67695,67695,67713,67713,67694,67694,67693,67693,67692,67692,67691,67691,67690,67690,67689,67689,67688,67688,67687,67687,67686,67686,67685,67685,67684,67684,67683,67683,67682,67682,67681,67681,67680,67680,67679,67679,67678,67678,67677,67677,67676,67676,67675,67675,67674,67674,67673,67673,67672,67672,67671,67671,67670,67670,67669,67669,67668,67668,67667,67667,67666,67666,67665,67665,67664,67664,67663,67663,67712,67712,67662,67662,67661,67661,67660,67660,67659,67659,67658,67658,67657,67657,67656,67656,67655,67655,67654,67654,67653,67653,67652,67652,67651,67651,67650,67650,67649,67649,67648,67648,67647,67647,67646,67646,67645,67645,67644,67644,67643,67643,67642,67642,67641,67641,67640,67640,67639,67639,67638,67638,67637,67637,67636,67636,67635,67635,67634,67634,67711,67711,67717,67717,67633,67633,67632,67632,67631,67631,67630,67630,67629,67629,67628,67628,67627,67627,67626,67626,67625,67625,67624,67624,67623,67623,67715,67720,67816,67816,67810,67810,67809,67809,67808,67808,67822,67822,67829,67829,67833,67833,67836,67836,67832,67832,67831,67831,67807,67807,67806,67806,67805,67805,67804,67804,67803,67803,67802,67802,67801,67801,67800,67800,67799,67799,67798,67798,67797,67797,67821,67821,67828,67828,67827,67827,67796,67796,67795,67795,67794,67794,67793,67793,67792,67792,67791,67791,67790,67790,67820,67820,67789,67789,67788,67788,67787,67787,67786,67786,67785,67785,67784,67784,67783,67783,67782,67782,67781,67781,67780,67780,67779,67779,67778,67778,67777,67777,67776,67776,67775,67775,67815,67815,67824,67824,67830,67830,67835,67835,67838,67838,67840,67840,67839,67839,67837,67837,67834,67834,67826,67826,67819,67819,67774,67774,67773,67773,67772,67772,67771,67771,67770,67770,67769,67769,67768,67768,67767,67767,67766,67766,67818,67818,67814,67814,67765,67765,67764,67764,67763,67763,67762,67762,67761,67761,67760,67760,67759,67759,67823,67823,67825,67825,67813,67813,67758,67758,67757,67757,67756,67756,67755,67755,67754,67754,67753,67753,67752,67752,67751,67751,67750,67750,67749,67749,67748,67748,67817,67817,67747,67747,67746,67746,67745,67745,67744,67744,67743,67743,67742,67742,67741,67741,67740,67740,67739,67739,67738,67738,67737,67737,67736,67736,67735,67735,67734,67734,67733,67733,67732,67732,67731,67731,67730,67730,67812,67812,67729,67729,67728,67728,67727,67727,67726,67726,67725,67725,67724,67724,67723,67723,67811,67811,67722,67722,67721,67721,67720,67880,67879,67879,67878,67878,67877,67877,67876,67876,67875,67875,67874,67874,67873,67873,67882,67882,67884,67884,67872,67872,67871,67871,67870,67870,67869,67869,67868,67868,67867,67867,67866,67866,67883,67883,67865,67865,67864,67864,67863,67863,67862,67862,67861,67861,67860,67860,67859,67859,67858,67858,67857,67857,67856,67856,67855,67855,67854,67854,67853,67853,67881,67881,67852,67852,67851,67851,67850,67850,67849,67849,67848,67848,67847,67847,67846,67846,67845,67845,67844,67844,67843,67843,67842,67842,67841,67841,67880,67886,67885,67885,67900,67900,67899,67899,67898,67898,67897,67897,67896,67896,67895,67895,67894,67894,67893,67893,67892,67892,67891,67891,67890,67890,67889,67889,67888,67888,67887,67887,67886,67902,67901,67901,68026,68026,68025,68025,68024,68024,68023,68023,68022,68022,68021,68021,68064,68064,68020,68020,68019,68019,68018,68018,68017,68017,68016,68016,68015,68015,68014,68014,68013,68013,68012,68012,68054,68054,68059,68059,68039,68039,68011,68011,68010,68010,68009,68009,68008,68008,68007,68007,68006,68006,68005,68005,68004,68004,68003,68003,68002,68002,68001,68001,68000,68000,67999,67999,67998,67998,67997,67997,67996,67996,67995,67995,68068,68068,67994,67994,67993,67993,67992,67992,67991,67991,67990,67990,67989,67989,67988,67988,68038,68038,67987,67987,67986,67986,67985,67985,68063,68063,68071,68071,68080,68080,68086,68086,68093,68093,68095,68095,68097,68097,67984,67984,67983,67983,67982,67982,68037,68037,68096,68096,68094,68094,68092,68092,68062,68062,68058,68058,68053,68053,67981,67981,67980,67980,67979,67979,67978,67978,67977,67977,68046,68046,67976,67976,67975,67975,67974,67974,67973,67973,67972,67972,67971,67971,67970,67970,67969,67969,67968,67968,67967,67967,67966,67966,67965,67965,67964,67964,67963,67963,67962,67962,67961,67961,68052,68052,68036,68036,67960,67960,67959,67959,67958,67958,68045,68045,68067,68067,68085,68085,68089,68089,68066,68066,68061,68061,68035,68035,67957,67957,67956,67956,67955,67955,67954,67954,67953,67953,67952,67952,67951,67951,67950,67950,67949,67949,67948,67948,68034,68034,67947,67947,67946,67946,67945,67945,67944,67944,67943,67943,67942,67942,67941,67941,68051,68051,68057,68057,67940,67940,67939,67939,67938,67938,67937,67937,67936,67936,67935,67935,67934,67934,67933,67933,68033,68033,68050,68050,68044,68044,67932,67932,67931,67931,67930,67930,67929,67929,67928,67928,68072,68072,68056,68056,68049,68049,68043,68043,67927,67927,67926,67926,67925,67925,68032,68032,67924,67924,67923,67923,67922,67922,67921,67921,67920,67920,68031,68031,68048,68048,68030,68030,67919,67919,67918,67918,67917,67917,67916,67916,67915,67915,67914,67914,67913,67913,68042,68042,68055,68055,68041,68041,68029,68029,67912,67912,67911,67911,67910,67910,67909,67909,67908,67908,67907,67907,68028,68028,68040,68040,67906,67906,67905,67905,67904,67904,68027,68027,68047,68047,67903,67903,67902,68109,68136,68136,68135,68135,68134,68134,68133,68133,68132,68132,68131,68131,68137,68137,68130,68130,68129,68129,68128,68128,68127,68127,68126,68126,68125,68125,68124,68124,68123,68123,68122,68122,68121,68121,68120,68120,68119,68119,68118,68118,68117,68117,68116,68116,68115,68115,68114,68114,68113,68113,68112,68112,68138,68138,68111,68111,68110,68110,68109,68140,68139,68139,68151,68151,68150,68150,68149,68149,68148,68148,68147,68147,68146,68146,68145,68145,68144,68144,68143,68143,68142,68142,68141,68141,68140,68153,68152,68152,68159,68159,68158,68158,68157,68157,68156,68156,68155,68155,68154,68154,68153,68161,68160,68160,68186,68186,68185,68185,68184,68184,68183,68183,68182,68182,68181,68181,68180,68180,68179,68179,68178,68178,68177,68177,68187,68187,68176,68176,68175,68175,68174,68174,68173,68173,68172,68172,68171,68171,68170,68170,68169,68169,68168,68168,68167,68167,68166,68166,68165,68165,68164,68164,68163,68163,68162,68162,68161,68189,68188,68188,68196,68196,68195,68195,68194,68194,68193,68193,68192,68192,68191,68191,68190,68190,68189,68198,68197,68197,68204,68204,68203,68203,68202,68202,68201,68201,68200,68200,68199,68199,68198,68206,68205,68205,68228,68228,68230,68230,68227,68227,68226,68226,68225,68225,68224,68224,68223,68223,68222,68222,68221,68221,68220,68220,68219,68219,68218,68218,68217,68217,68216,68216,68215,68215,68214,68214,68213,68213,68212,68212,68211,68211,68210,68210,68229,68229,68209,68209,68208,68208,68207,68207,68206,68232,68231,68231,68237,68237,68236,68236,68235,68235,68234,68234,68233,68233,68232,68239,68238,68238,68244,68244,68243,68243,68242,68242,68241,68241,68240,68240,68239,68246,68245,68245,68259,68259,68258,68258,68261,68261,68260,68260,68257,68257,68256,68256,68255,68255,68254,68254,68253,68253,68252,68252,68251,68251,68250,68250,68249,68249,68248,68248,68247,68247,68246,68263,68262,68262,68270,68270,68269,68269,68268,68268,68267,68267,68266,68266,68265,68265,68264,68264,68263,68272,68271,68271,68285,68285,68284,68284,68283,68283,68282,68282,68281,68281,68280,68280,68279,68279,68278,68278,68277,68277,68276,68276,68275,68275,68274,68274,68273,68273,68272,68287,68286,68286,68301,68301,68300,68300,68302,68302,68299,68299,68298,68298,68297,68297,68296,68296,68295,68295,68294,68294,68293,68293,68292,68292,68291,68291,68290,68290,68289,68289,68288,68288,68287,68303,68317,68317,68316,68316,68315,68315,68314,68314,68313,68313,68312,68312,68311,68311,68310,68310,68309,68309,68308,68308,68307,68307,68306,68306,68305,68305,68304,68304,68303,68319,68318,68318,68326,68326,68325,68325,68324,68324,68323,68323,68322,68322,68321,68321,68320,68320,68319,68328,68327,68327,68340,68340,68339,68339,68338,68338,68337,68337,68336,68336,68335,68335,68334,68334,68333,68333,68332,68332,68331,68331,68330,68330,68341,68341,68342,68342,68329,68329,68328,68343,68351,68351,68350,68350,68349,68349,68348,68348,68347,68347,68346,68346,68345,68345,68344,68344,68343,68352,68361,68361,68360,68360,68359,68359,68358,68358,68357,68357,68356,68356,68355,68355,68354,68354,68353,68353,68352,68363,68362,68362,68368,68368,68367,68367,68366,68366,68365,68365,68364,68364,68363,68370,68369,68369,68378,68378,68377,68377,68376,68376,68375,68375,68374,68374,68373,68373,68372,68372,68371,68371,68370,68380,68379,68379,68391,68391,68390,68390,68389,68389,68388,68388,68387,68387,68386,68386,68385,68385,68384,68384,68383,68383,68382,68382,68381,68381,68380,68393,68392,68392,68400,68400,68399,68399,68398,68398,68397,68397,68396,68396,68395,68395,68394,68394,68393,68402,68401,68401,68412,68412,68411,68411,68410,68410,68409,68409,68408,68408,68407,68407,68406,68406,68405,68405,68404,68404,68413,68413,68403,68403,68402,68415,68414,68414,68427,68427,68426,68426,68425,68425,68424,68424,68423,68423,68422,68422,68421,68421,68420,68420,68419,68419,68418,68418,68417,68417,68416,68416,68415,68429,68428,68428,68435,68435,68434,68434,68433,68433,68432,68432,68431,68431,68430,68430,68429,68437,68436,68436,68447,68447,68446,68446,68445,68445,68444,68444,68443,68443,68442,68442,68441,68441,68440,68440,68439,68439,68438,68438,68437,68449,68448,68448,68458,68458,68457,68457,68456,68456,68455,68455,68454,68454,68453,68453,68452,68452,68451,68451,68450,68450,68449,68460,68459,68459,68476,68476,68475,68475,68474,68474,68473,68473,68472,68472,68471,68471,68470,68470,68469,68469,68468,68468,68467,68467,68466,68466,68465,68465,68464,68464,68463,68463,68462,68462,68461,68461,68460,68478,68477,68477,68482,68482,68481,68481,68480,68480,68479,68479,68478,68484,68483,68483,68506,68506,68505,68505,68504,68504,68508,68508,68507,68507,68503,68503,68502,68502,68501,68501,68500,68500,68499,68499,68498,68498,68497,68497,68496,68496,68495,68495,68494,68494,68493,68493,68492,68492,68491,68491,68490,68490,68489,68489,68488,68488,68487,68487,68486,68486,68485,68485,68484,68510,68509,68509,68532,68532,68531,68531,68530,68530,68529,68529,68528,68528,68527,68527,68526,68526,68525,68525,68534,68534,68524,68524,68523,68523,68522,68522,68521,68521,68520,68520,68519,68519,68518,68518,68517,68517,68516,68516,68515,68515,68514,68514,68533,68533,68513,68513,68512,68512,68511,68511,68510,68536,68535,68535,68552,68552,68551,68551,68550,68550,68549,68549,68548,68548,68555,68555,68554,68554,68547,68547,68546,68546,68545,68545,68544,68544,68543,68543,68542,68542,68541,68541,68540,68540,68553,68553,68539,68539,68538,68538,68537,68537,68536,68557,68556,68556,68584,68584,68583,68583,68582,68582,68581,68581,68580,68580,68579,68579,68578,68578,68577,68577,68576,68576,68575,68575,68574,68574,68573,68573,68572,68572,68571,68571,68570,68570,68569,68569,68568,68568,68567,68567,68566,68566,68565,68565,68564,68564,68563,68563,68562,68562,68561,68561,68585,68585,68587,68587,68586,68586,68560,68560,68559,68559,68558,68558,68557,68589,68588,68588,68597,68597,68596,68596,68595,68595,68594,68594,68593,68593,68592,68592,68591,68591,68590,68590,68589,68599,68598,68598,68614,68614,68613,68613,68612,68612,68611,68611,68610,68610,68609,68609,68608,68608,68616,68616,68607,68607,68606,68606,68605,68605,68604,68604,68603,68603,68615,68615,68602,68602,68601,68601,68600,68600,68599,68618,68617,68617,68631,68631,68630,68630,68629,68629,68628,68628,68627,68627,68626,68626,68625,68625,68624,68624,68632,68632,68623,68623,68622,68622,68621,68621,68620,68620,68619,68619,68618,68634,68633,68633,68661,68661,68660,68660,68659,68659,68658,68658,68657,68657,68656,68656,68655,68655,68654,68654,68653,68653,68652,68652,68651,68651,68650,68650,68649,68649,68648,68648,68647,68647,68646,68646,68645,68645,68644,68644,68643,68643,68642,68642,68641,68641,68640,68640,68639,68639,68638,68638,68637,68637,68636,68636,68662,68662,68635,68635,68634,68664,68663,68663,68685,68685,68684,68684,68683,68683,68682,68682,68681,68681,68680,68680,68679,68679,68678,68678,68677,68677,68676,68676,68675,68675,68674,68674,68673,68673,68672,68672,68686,68686,68671,68671,68670,68670,68669,68669,68668,68668,68667,68667,68666,68666,68665,68665,68664,68688,68687,68687,68698,68698,68697,68697,68696,68696,68695,68695,68694,68694,68693,68693,68692,68692,68691,68691,68690,68690,68689,68689,68688,68699,68709,68709,68708,68708,68707,68707,68706,68706,68705,68705,68704,68704,68703,68703,68702,68702,68701,68701,68700,68700,68699,68711,68710,68710,68727,68727,68726,68726,68725,68725,68724,68724,68723,68723,68722,68722,68721,68721,68720,68720,68719,68719,68718,68718,68717,68717,68716,68716,68715,68715,68714,68714,68713,68713,68712,68712,68711,68729,68728,68728,68735,68735,68734,68734,68733,68733,68732,68732,68731,68731,68730,68730,68729,68737,68736,68736,68749,68749,68748,68748,68747,68747,68746,68746,68745,68745,68744,68744,68743,68743,68742,68742,68741,68741,68740,68740,68739,68739,68738,68738,68737,68751,68750,68750,68778,68778,68777,68777,68776,68776,68775,68775,68774,68774,68773,68773,68772,68772,68771,68771,68770,68770,68769,68769,68768,68768,68767,68767,68766,68766,68779,68779,68783,68783,68765,68765,68764,68764,68763,68763,68762,68762,68761,68761,68760,68760,68759,68759,68780,68780,68782,68782,68781,68781,68758,68758,68757,68757,68756,68756,68755,68755,68754,68754,68753,68753,68752,68752,68751,68785,68784,68784,68799,68799,68798,68798,68797,68797,68796,68796,68795,68795,68794,68794,68793,68793,68792,68792,68791,68791,68790,68790,68800,68800,68789,68789,68788,68788,68787,68787,68801,68801,68786,68786,68785,68803,68802,68802,68812,68812,68811,68811,68810,68810,68809,68809,68808,68808,68807,68807,68806,68806,68805,68805,68804,68804,68803,68813,68832,68832,68831,68831,68830,68830,68829,68829,68833,68833,68828,68828,68827,68827,68826,68826,68825,68825,68824,68824,68823,68823,68822,68822,68834,68834,68821,68821,68820,68820,68819,68819,68818,68818,68817,68817,68816,68816,68815,68815,68814,68814,68813,68836,68835,68835,68854,68854,68853,68853,68852,68852,68851,68851,68850,68850,68849,68849,68848,68848,68847,68847,68846,68846,68845,68845,68844,68844,68843,68843,68842,68842,68841,68841,68840,68840,68839,68839,68838,68838,68837,68837,68836,68872,68868,68868,68867,68867,68866,68866,68865,68865,68864,68864,68871,68871,68870,68870,68863,68863,68862,68862,68861,68861,68860,68860,68859,68859,68858,68858,68857,68857,68856,68856,68855,68855,68869,68869,68872,68874,68873,68873,68890,68890,68889,68889,68888,68888,68887,68887,68886,68886,68885,68885,68884,68884,68883,68883,68882,68882,68881,68881,68880,68880,68879,68879,68878,68878,68877,68877,68876,68876,68892,68892,68893,68893,68891,68891,68875,68875,68874,68895,68894,68894,68902,68902,68901,68901,68900,68900,68899,68899,68898,68898,68897,68897,68896,68896,68895,68904,68903,68903,68912,68912,68911,68911,68910,68910,68909,68909,68908,68908,68907,68907,68906,68906,68905,68905,68904,68914,68913,68913,68932,68932,68933,68933,68931,68931,68930,68930,68929,68929,68928,68928,68927,68927,68926,68926,68925,68925,68924,68924,68923,68923,68922,68922,68921,68921,68920,68920,68919,68919,68918,68918,68917,68917,68916,68916,68915,68915,68914,68934,68942,68942,68941,68941,68940,68940,68939,68939,68938,68938,68937,68937,68936,68936,68935,68935,68934,68944,68943,68943,68950,68950,68949,68949,68948,68948,68947,68947,68946,68946,68945,68945,68944,68952,68951,68951,68956,68956,68955,68955,68954,68954,68953,68953,68952,68958,68957,68957,68966,68966,68965,68965,68964,68964,68963,68963,68962,68962,68961,68961,68960,68960,68959,68959,68958,68968,68967,68967,68980,68980,68979,68979,68978,68978,68977,68977,68976,68976,68975,68975,68974,68974,68973,68973,68972,68972,68971,68971,68970,68970,68969,68969,68968,68981,69015,69015,69014,69014,69017,69017,69013,69013,69012,69012,69011,69011,69019,69019,69010,69010,69009,69009,69008,69008,69007,69007,69006,69006,69005,69005,69004,69004,69003,69003,69002,69002,69001,69001,69000,69000,68999,68999,68998,68998,68997,68997,68996,68996,68995,68995,68994,68994,68993,68993,68992,68992,68991,68991,69018,69018,69016,69016,68990,68990,68989,68989,68988,68988,68987,68987,68986,68986,68985,68985,68984,68984,68983,68983,68982,68982,68981,69020,69027,69027,69026,69026,69025,69025,69024,69024,69023,69023,69022,69022,69021,69021,69020,69029,69028,69028,69048,69048,69047,69047,69046,69046,69045,69045,69044,69044,69050,69050,69049,69049,69043,69043,69042,69042,69041,69041,69040,69040,69039,69039,69038,69038,69037,69037,69036,69036,69035,69035,69034,69034,69033,69033,69032,69032,69031,69031,69030,69030,69029,69052,69051,69051,69071,69071,69070,69070,69069,69069,69068,69068,69067,69067,69066,69066,69065,69065,69064,69064,69063,69063,69062,69062,69061,69061,69060,69060,69059,69059,69058,69058,69072,69072,69073,69073,69057,69057,69056,69056,69055,69055,69054,69054,69053,69053,69052,69075,69074,69074,69087,69087,69086,69086,69085,69085,69084,69084,69083,69083,69082,69082,69081,69081,69080,69080,69079,69079,69078,69078,69077,69077,69076,69076,69075,69089,69088,69088,69098,69098,69097,69097,69096,69096,69095,69095,69094,69094,69093,69093,69092,69092,69091,69091,69090,69090,69089,69121,69119,69119,69118,69118,69117,69117,69116,69116,69115,69115,69114,69114,69113,69113,69112,69112,69111,69111,69110,69110,69109,69109,69108,69108,69107,69107,69106,69106,69105,69105,69104,69104,69103,69103,69102,69102,69101,69101,69100,69100,69099,69099,69120,69120,69121,69123,69122,69122,69137,69137,69136,69136,69135,69135,69134,69134,69133,69133,69132,69132,69131,69131,69130,69130,69129,69129,69128,69128,69127,69127,69126,69126,69125,69125,69124,69124,69123,69139,69138,69138,69148,69148,69147,69147,69146,69146,69145,69145,69144,69144,69143,69143,69142,69142,69141,69141,69140,69140,69139,69149,69167,69167,69166,69166,69165,69165,69164,69164,69163,69163,69162,69162,69161,69161,69160,69160,69159,69159,69158,69158,69157,69157,69156,69156,69155,69155,69154,69154,69168,69168,69153,69153,69152,69152,69151,69151,69150,69150,69149,69170,69169,69169,69205,69205,69204,69204,69203,69203,69202,69202,69201,69201,69200,69200,69199,69199,69198,69198,69197,69197,69196,69196,69195,69195,69206,69206,69194,69194,69193,69193,69192,69192,69207,69207,69191,69191,69190,69190,69189,69189,69188,69188,69187,69187,69186,69186,69185,69185,69184,69184,69183,69183,69182,69182,69181,69181,69180,69180,69179,69179,69178,69178,69177,69177,69176,69176,69175,69175,69174,69174,69173,69173,69172,69172,69171,69171,69170,60489,69208,69208,69230,69230,69227,69227,69226,69226,69225,69225,69234,69234,69229,69229,69224,69224,60544,60544,60545,60545,60546,60546,60547,60547,60548,60548,60549,60549,60550,60550,60551,60551,60552,60552,60553,60553,60554,60554,60555,60555,60556,60556,60567,60567,60557,60557,60558,60558,60559,60559,60560,60560,60497,60497,60498,60498,69223,69223,69222,69222,69221,69221,69220,69220,69219,69219,69218,69218,69217,69217,69216,69216,69215,69215,69214,69214,69232,69232,69213,69213,69212,69212,69211,69211,69210,69210,69209,69209,69231,69231,69233,69233,69228,69228,60488,60488,60489,60036,60037,60037,60114,60114,60038,60038,60039,60039,60040,60040,60115,60115,60041,60041,60042,60042,60043,60043,60116,60116,60044,60044,60045,60045,60046,60046,60047,60047,69277,69277,69283,69283,69287,69287,69291,69291,69282,69282,69276,69276,69275,69275,69274,69274,69273,69273,69272,69272,69271,69271,69270,69270,69269,69269,69268,69268,69267,69267,69266,69266,69265,69265,69264,69264,69263,69263,69262,69262,69261,69261,69260,69260,69285,69285,69289,69289,69259,69259,69258,69258,69257,69257,69256,69256,69255,69255,69281,69281,69254,69254,69253,69253,69252,69252,69251,69251,69250,69250,69249,69249,69248,69248,69247,69247,69246,69246,69280,69280,69286,69286,69288,69288,69290,69290,69279,69279,69245,69245,69244,69244,69243,69243,69242,69242,69241,69241,69240,69240,69239,69239,69238,69238,69237,69237,69236,69236,69284,69284,69278,69278,69235,69235,60036,69293,69292,69292,69475,69475,69474,69474,69473,69473,69472,69472,69471,69471,69470,69470,69469,69469,69468,69468,69467,69467,69522,69522,69466,69466,69465,69465,69464,69464,69463,69463,69462,69462,69496,69496,69461,69461,69460,69460,69459,69459,69458,69458,69457,69457,69456,69456,69455,69455,69526,69526,69511,69511,69495,69495,69454,69454,69453,69453,69452,69452,69494,69494,69451,69451,69450,69450,69449,69449,69521,69521,69510,69510,69448,69448,69447,69447,69446,69446,69445,69445,69444,69444,69493,69493,69443,69443,69442,69442,69441,69441,69516,69516,69509,69509,69440,69440,69439,69439,69438,69438,69492,69492,69525,69525,69491,69491,69437,69437,69436,69436,69435,69435,69508,69508,69490,69490,69434,69434,69433,69433,69432,69432,69431,69431,69430,69430,69429,69429,69428,69428,69427,69427,69489,69489,69426,69426,69425,69425,69424,69424,69507,69507,69506,69506,69423,69423,69422,69422,69421,69421,69488,69488,69487,69487,69420,69420,69419,69419,69418,69418,69505,69505,69417,69417,69416,69416,69415,69415,69414,69414,69413,69413,69504,69504,69503,69503,69412,69412,69411,69411,69410,69410,69409,69409,69408,69408,69515,69515,69520,69520,69502,69502,69407,69407,69406,69406,69405,69405,69404,69404,69403,69403,69402,69402,69401,69401,69400,69400,69399,69399,69398,69398,69397,69397,69396,69396,69395,69395,69394,69394,69393,69393,69392,69392,69391,69391,69390,69390,69486,69486,69389,69389,69388,69388,69387,69387,69485,69485,69386,69386,69385,69385,69384,69384,69383,69383,69382,69382,69484,69484,69381,69381,69380,69380,69379,69379,69483,69483,69482,69482,69378,69378,69377,69377,69376,69376,69375,69375,69374,69374,69373,69373,69372,69372,69371,69371,69370,69370,69369,69369,69368,69368,69367,69367,69366,69366,69365,69365,69364,69364,69363,69363,69362,69362,69361,69361,69360,69360,69359,69359,69358,69358,69519,69519,69527,69527,69481,69481,69357,69357,69356,69356,69355,69355,69501,69501,69480,69480,69354,69354,69353,69353,69352,69352,69351,69351,69350,69350,69479,69479,69500,69500,69349,69349,69348,69348,69347,69347,69346,69346,69345,69345,69344,69344,69343,69343,69342,69342,69341,69341,69340,69340,69339,69339,69338,69338,69337,69337,69336,69336,69335,69335,69334,69334,69333,69333,69332,69332,69514,69514,69518,69518,69499,69499,69331,69331,69330,69330,69329,69329,69328,69328,69327,69327,69529,69529,69530,69530,69498,69498,69326,69326,69325,69325,69324,69324,69478,69478,69323,69323,69322,69322,69321,69321,69320,69320,69319,69319,69318,69318,69317,69317,69517,69517,69513,69513,69497,69497,69316,69316,69315,69315,69314,69314,69313,69313,69312,69312,69524,69524,69477,69477,69311,69311,69310,69310,69309,69309,69528,69528,69523,69523,69512,69512,69308,69308,69307,69307,69306,69306,69305,69305,69304,69304,69303,69303,69302,69302,69476,69476,69301,69301,69300,69300,69299,69299,69298,69298,69297,69297,69296,69296,69295,69295,69294,69294,69293,69532,69531,69531,69820,69820,69840,69840,69819,69819,69818,69818,69817,69817,69857,69857,69839,69839,69816,69816,69815,69815,69814,69814,69876,69876,69892,69892,69889,69889,69880,69880,69875,69875,69856,69856,69813,69813,69812,69812,69811,69811,69810,69810,69809,69809,69808,69808,69807,69807,69806,69806,69805,69805,69804,69804,69803,69803,69802,69802,69801,69801,58871,58871,58872,58872,59298,59298,58873,58873,58874,58874,58875,58875,59299,59299,58876,58876,58877,58877,58878,58878,59300,59300,58879,58879,58880,58880,58881,58881,58882,58882,58883,58883,58884,58884,58885,58885,58886,58886,59337,59337,58887,58887,58888,58888,58889,58889,59301,59301,58890,58890,58891,58891,58892,58892,59302,59302,58893,58893,58894,58894,58895,58895,58896,58896,58897,58897,59357,59357,59373,59373,58898,58898,58899,58899,58900,58900,58901,58901,58902,58902,58903,58903,58904,58904,59303,59303,69800,69800,69799,69799,69798,69798,69797,69797,69796,69796,69867,69867,69795,69795,69794,69794,69793,69793,69792,69792,69791,69791,69790,69790,69789,69789,69788,69788,69787,69787,69786,69786,69785,69785,69784,69784,69783,69783,69782,69782,69781,69781,69780,69780,69779,69779,69778,69778,69777,69777,69776,69776,69775,69775,69774,69774,69773,69773,69772,69772,69874,69874,69866,69866,69771,69771,69770,69770,69769,69769,69768,69768,69767,69767,69766,69766,69765,69765,69865,69865,69764,69764,69763,69763,69762,69762,69761,69761,69760,69760,69855,69855,69885,69885,69838,69838,69759,69759,69758,69758,69757,69757,69756,69756,69755,69755,69754,69754,69753,69753,69752,69752,69751,69751,69750,69750,69749,69749,69748,69748,69747,69747,69746,69746,69745,69745,69873,69873,69888,69888,69879,69879,69872,69872,69744,69744,69743,69743,69742,69742,69741,69741,69740,69740,69854,69854,69864,69864,69899,69899,69887,69887,69884,69884,69882,69882,69739,69739,69738,69738,69737,69737,69736,69736,69735,69735,69734,69734,69733,69733,69732,69732,69731,69731,69730,69730,69729,69729,69728,69728,69837,69837,69727,69727,69726,69726,69725,69725,69724,69724,69723,69723,69722,69722,69853,69853,69721,69721,69720,69720,69719,69719,69718,69718,69717,69717,69716,69716,69715,69715,69714,69714,69713,69713,69852,69852,69863,69863,69851,69851,69712,69712,69711,69711,69710,69710,69709,69709,69708,69708,69850,69850,69707,69707,69706,69706,69705,69705,69704,69704,69703,69703,69702,69702,69701,69701,69700,69700,69849,69849,69699,69699,69698,69698,69697,69697,69848,69848,69696,69696,69695,69695,69694,69694,69693,69693,69692,69692,69862,69862,69836,69836,69691,69691,69690,69690,69689,69689,69688,69688,69687,69687,69835,69835,69686,69686,69685,69685,69684,69684,69683,69683,69682,69682,69681,69681,69680,69680,69679,69679,69678,69678,69677,69677,69834,69834,69676,69676,69675,69675,69674,69674,69673,69673,69672,69672,69671,69671,69670,69670,69669,69669,69668,69668,69667,69667,69666,69666,69665,69665,69664,69664,69663,69663,69662,69662,69661,69661,69660,69660,69659,69659,69658,69658,69657,69657,69656,69656,69655,69655,69871,69871,69654,69654,69653,69653,69652,69652,69833,69833,69651,69651,69650,69650,69649,69649,69648,69648,69647,69647,69646,69646,69645,69645,69644,69644,69643,69643,69642,69642,69641,69641,69832,69832,69640,69640,69639,69639,69638,69638,69861,69861,69637,69637,69636,69636,69635,69635,69634,69634,69633,69633,69632,69632,69631,69631,69630,69630,69629,69629,69628,69628,69627,69627,69626,69626,69847,69847,69870,69870,69846,69846,69625,69625,69624,69624,69623,69623,69831,69831,69860,69860,69830,69830,69622,69622,69621,69621,69620,69620,69829,69829,69619,69619,69618,69618,69617,69617,69616,69616,69615,69615,69614,69614,69845,69845,69828,69828,69613,69613,69612,69612,69611,69611,69827,69827,69610,69610,69609,69609,69608,69608,69607,69607,69606,69606,69605,69605,69604,69604,69356,69356,69357,69357,69481,69481,69527,69527,69519,69519,69358,69358,69359,69359,69360,69360,69361,69361,69362,69362,69363,69363,69364,69364,69365,69365,69366,69366,69367,69367,69368,69368,69369,69369,69370,69370,69371,69371,69372,69372,69373,69373,69374,69374,69375,69375,69376,69376,69377,69377,69378,69378,69482,69482,69483,69483,69379,69379,69380,69380,69381,69381,69484,69484,69382,69382,69383,69383,69384,69384,69385,69385,69386,69386,69485,69485,69387,69387,69388,69388,69389,69389,69486,69486,69390,69390,69391,69391,69392,69392,69393,69393,69394,69394,69395,69395,69396,69396,69397,69397,69398,69398,69399,69399,69400,69400,69401,69401,69402,69402,69403,69403,69404,69404,69405,69405,69406,69406,69407,69407,69502,69502,69520,69520,69515,69515,69408,69408,69409,69409,69410,69410,69411,69411,69412,69412,69503,69503,69504,69504,69413,69413,69414,69414,69415,69415,69416,69416,69417,69417,69505,69505,69418,69418,69419,69419,69420,69420,69487,69487,69488,69488,69421,69421,69422,69422,69423,69423,69506,69506,69507,69507,69424,69424,69425,69425,69603,69603,69602,69602,69601,69601,69600,69600,69599,69599,69598,69598,69597,69597,69596,69596,69595,69595,69594,69594,69593,69593,69592,69592,69591,69591,69590,69590,69589,69589,69844,69844,69869,69869,69878,69878,69883,69883,69859,69859,69843,69843,69588,69588,69587,69587,69586,69586,69826,69826,69585,69585,69584,69584,69583,69583,69582,69582,69581,69581,69580,69580,69579,69579,69578,69578,69577,69577,69576,69576,69575,69575,69574,69574,69573,69573,69842,69842,69868,69868,69825,69825,69572,69572,69571,69571,69570,69570,69569,69569,69568,69568,69567,69567,69824,69824,69566,69566,69565,69565,69564,69564,69563,69563,69562,69562,69561,69561,69560,69560,69559,69559,69558,69558,69557,69557,69556,69556,69555,69555,69554,69554,69553,69553,69552,69552,69551,69551,69550,69550,69549,69549,69548,69548,69547,69547,69546,69546,69823,69823,69545,69545,69544,69544,69543,69543,69542,69542,69541,69541,69540,69540,69539,69539,69822,69822,69538,69538,69537,69537,69536,69536,69841,69841,69858,69858,69877,69877,69881,69881,69821,69821,69535,69535,69534,69534,69533,69533,69532,69914,69913,69913,69935,69935,69934,69934,69933,69933,69932,69932,69931,69931,69930,69930,69929,69929,69928,69928,69927,69927,69926,69926,69925,69925,69924,69924,69923,69923,69922,69922,69921,69921,69920,69920,69919,69919,69918,69918,69917,69917,69916,69916,69936,69936,69915,69915,69914,69938,69937,69937,69949,69949,69948,69948,69947,69947,69946,69946,69945,69945,69944,69944,69943,69943,69942,69942,69941,69941,69940,69940,69939,69939,69938,69951,69950,69950,69957,69957,69956,69956,69955,69955,69954,69954,69953,69953,69952,69952,69951,69959,69958,69958,69966,69966,69965,69965,69964,69964,69963,69963,69968,69968,69969,69969,69967,69967,69962,69962,69961,69961,69960,69960,69959,69971,69970,69970,69977,69977,69976,69976,69975,69975,69974,69974,69973,69973,69972,69972,69971,63241,69978,69978,70050,70050,70049,70049,70048,70048,70057,70057,70047,70047,70046,70046,70045,70045,70044,70044,70043,70043,70042,70042,70041,70041,70040,70040,70039,70039,70038,70038,70037,70037,70036,70036,70035,70035,70056,70056,70034,70034,70033,70033,70032,70032,70031,70031,70030,70030,70055,70055,70029,70029,70028,70028,70027,70027,70026,70026,70025,70025,70024,70024,70023,70023,70022,70022,70021,70021,70020,70020,70054,70054,70059,70059,70058,70058,70019,70019,70018,70018,70017,70017,70016,70016,70015,70015,70014,70014,70013,70013,70012,70012,70011,70011,70010,70010,70009,70009,70008,70008,70053,70053,70007,70007,70006,70006,70005,70005,70004,70004,70003,70003,70052,70052,70002,70002,70001,70001,70000,70000,69999,69999,69998,69998,69997,69997,69996,69996,69995,69995,69994,69994,69993,69993,69992,69992,69991,69991,69990,69990,70051,70051,69989,69989,69988,69988,69987,69987,69986,69986,69985,69985,69984,69984,69983,69983,69982,69982,69981,69981,69980,69980,69979,69979,63213,63213,63214,63214,63530,63530,63844,63844,63215,63215,63216,63216,63217,63217,63218,63218,63219,63219,63220,63220,63531,63531,63669,63669,63221,63221,63222,63222,63223,63223,63224,63224,63225,63225,63670,63670,63226,63226,63227,63227,63228,63228,63229,63229,63230,63230,63231,63231,63232,63232,63233,63233,63671,63671,63950,63950,63772,63772,63234,63234,63235,63235,63236,63236,63237,63237,63238,63238,63239,63239,63240,63240,63241,70061,70060,70060,70102,70102,70097,70097,70096,70096,70095,70095,70094,70094,70093,70093,70092,70092,70091,70091,70090,70090,70089,70089,70088,70088,70087,70087,70086,70086,70101,70101,70099,70099,70085,70085,70084,70084,70083,70083,70082,70082,70081,70081,70080,70080,70079,70079,70078,70078,70077,70077,70076,70076,70075,70075,70074,70074,70073,70073,70098,70098,70100,70100,70072,70072,70071,70071,70070,70070,70069,70069,70068,70068,70067,70067,70066,70066,70065,70065,70064,70064,70063,70063,70062,70062,70061,70103,70122,70122,70121,70121,70120,70120,70119,70119,70118,70118,70117,70117,70116,70116,70124,70124,70123,70123,70115,70115,70114,70114,70113,70113,70112,70112,70111,70111,70110,70110,70109,70109,70108,70108,70107,70107,70106,70106,70105,70105,70104,70104,70103,70126,70125,70125,70131,70131,70130,70130,70129,70129,70128,70128,70127,70127,70126,60355,60569,60569,60574,60574,60505,60505,60506,60506,60507,60507,60508,60508,60509,60509,60510,60510,60511,60511,60564,60564,60565,60565,60512,60512,60513,60513,60514,60514,60515,60515,60516,60516,60517,60517,60518,60518,60519,60519,60520,60520,60521,60521,60522,60522,60523,60523,60524,60524,60525,60525,60526,60526,60527,60527,60528,60528,60529,60529,60566,60566,60530,60530,60531,60531,60532,60532,60533,60533,60534,60534,60535,60535,60536,60536,60537,60537,70148,70148,70147,70147,70146,70146,70145,70145,70150,70150,70144,70144,70143,70143,70142,70142,70141,70141,70140,70140,70139,70139,70138,70138,70137,70137,70136,70136,70135,70135,70134,70134,70133,70133,70152,70152,70153,70153,70155,70155,70156,70156,70154,70154,70151,70151,70149,70149,70132,70132,70024,70024,70025,70025,70026,70026,70027,70027,70028,70028,70029,70029,70055,70055,70030,70030,70031,70031,70032,70032,70033,70033,70034,70034,70056,70056,70035,70035,70036,70036,70037,70037,70038,70038,70039,70039,70040,70040,70041,70041,70042,70042,70043,70043,70044,70044,70045,70045,70046,70046,70047,70047,70057,70057,70048,70048,70049,70049,70050,70050,69978,69978,63241,63241,63845,63845,63242,63242,63243,63243,63244,63244,63532,63532,64007,64007,63846,63846,63672,63672,63245,63245,63246,63246,63247,63247,63248,63248,63249,63249,63250,63250,63533,63533,63673,63673,63251,63251,63252,63252,63253,63253,63254,63254,63255,63255,63256,63256,63257,63257,63258,63258,63674,63674,63534,63534,63259,63259,60341,60341,60342,60342,60343,60343,60344,60344,60345,60345,60346,60346,60347,60347,60437,60437,60348,60348,60349,60349,60350,60350,60351,60351,60352,60352,60438,60438,60353,60353,60354,60354,60355,70158,70157,70157,70958,70958,70957,70957,70956,70956,70955,70955,70954,70954,70953,70953,70952,70952,70951,70951,70950,70950,70949,70949,70948,70948,70947,70947,70946,70946,71012,71012,71011,71011,70945,70945,70944,70944,70943,70943,71112,71112,71105,71105,71075,71075,71010,71010,70942,70942,70941,70941,70940,70940,70939,70939,70938,70938,70937,70937,70936,70936,70935,70935,70934,70934,70933,70933,70932,70932,70931,70931,70930,70930,70929,70929,70928,70928,70927,70927,70926,70926,70925,70925,70924,70924,70923,70923,70922,70922,70921,70921,70920,70920,70919,70919,70918,70918,70917,70917,70916,70916,70915,70915,70914,70914,70913,70913,70912,70912,70911,70911,70910,70910,70909,70909,70908,70908,70907,70907,70906,70906,70905,70905,70904,70904,70903,70903,71054,71054,70902,70902,70901,70901,70900,70900,70899,70899,70898,70898,70897,70897,70896,70896,70895,70895,70894,70894,71053,71053,71093,71093,71104,71104,71111,71111,71009,71009,70893,70893,70892,70892,70891,70891,70890,70890,70889,70889,71052,71052,70888,70888,70887,70887,70886,70886,71008,71008,70885,70885,70884,70884,70883,70883,70882,70882,70881,70881,70880,70880,70879,70879,70878,70878,71007,71007,71006,71006,70877,70877,70876,70876,70875,70875,70874,70874,70873,70873,70872,70872,70871,70871,71005,71005,70870,70870,70869,70869,70868,70868,71051,71051,71092,71092,71050,71050,70867,70867,70866,70866,70865,70865,70864,70864,70863,70863,70862,70862,70861,70861,70860,70860,70859,70859,70858,70858,70857,70857,70856,70856,71004,71004,70855,70855,70854,70854,70853,70853,71003,71003,70852,70852,70851,70851,70850,70850,70849,70849,70848,70848,70847,70847,70846,70846,70845,70845,70844,70844,71002,71002,70843,70843,70842,70842,70841,70841,70840,70840,70839,70839,70838,70838,70837,70837,70836,70836,70835,70835,70834,70834,70833,70833,71001,71001,70832,70832,70831,70831,70830,70830,71000,71000,70829,70829,70828,70828,70827,70827,70826,70826,70825,70825,70824,70824,70823,70823,70822,70822,70821,70821,70820,70820,70999,70999,70998,70998,70819,70819,70818,70818,70817,70817,70816,70816,70815,70815,70997,70997,70814,70814,70813,70813,70812,70812,70811,70811,70810,70810,70809,70809,70808,70808,70807,70807,70806,70806,70805,70805,70804,70804,70803,70803,70802,70802,70801,70801,70800,70800,70799,70799,70798,70798,70797,70797,71091,71091,71090,71090,70796,70796,70795,70795,70794,70794,70793,70793,70792,70792,70791,70791,70790,70790,70789,70789,70788,70788,70787,70787,70786,70786,70785,70785,70784,70784,70783,70783,70782,70782,70781,70781,70780,70780,70779,70779,70778,70778,70777,70777,70776,70776,70775,70775,70774,70774,70773,70773,70772,70772,71089,71089,70771,70771,70770,70770,70769,70769,70768,70768,70767,70767,70766,70766,70765,70765,70764,70764,70763,70763,70762,70762,70761,70761,70760,70760,71110,71110,71074,71074,71049,71049,70759,70759,70758,70758,70757,70757,70756,70756,70755,70755,70754,70754,70753,70753,70752,70752,70751,70751,70750,70750,70749,70749,70748,70748,70747,70747,70746,70746,70745,70745,70744,70744,70743,70743,70742,70742,70741,70741,70996,70996,70740,70740,70739,70739,70738,70738,70737,70737,70736,70736,70735,70735,70734,70734,70733,70733,71048,71048,70732,70732,70731,70731,70730,70730,70729,70729,70728,70728,70727,70727,70726,70726,70725,70725,70724,70724,70723,70723,70722,70722,70721,70721,71047,71047,71135,71135,71133,71133,70720,70720,70719,70719,70718,70718,70995,70995,70717,70717,70716,70716,70715,70715,70714,70714,70713,70713,70712,70712,70994,70994,70711,70711,70710,70710,70709,70709,70708,70708,70707,70707,70706,70706,70705,70705,70704,70704,70703,70703,70702,70702,70701,70701,70700,70700,71046,71046,71073,71073,70993,70993,70699,70699,70698,70698,70697,70697,70696,70696,70695,70695,70694,70694,70693,70693,71045,71045,70692,70692,70691,70691,70690,70690,70689,70689,70688,70688,70687,70687,70686,70686,70685,70685,70684,70684,70683,70683,70992,70992,70682,70682,70681,70681,70680,70680,70991,70991,70679,70679,70678,70678,70677,70677,70676,70676,70675,70675,71044,71044,70990,70990,70674,70674,70673,70673,70672,70672,70989,70989,70671,70671,70670,70670,70669,70669,71043,71043,71103,71103,71088,71088,70668,70668,70667,70667,70666,70666,70665,70665,70664,70664,70663,70663,70662,70662,70661,70661,71042,71042,70988,70988,70660,70660,70659,70659,70658,70658,70657,70657,70656,70656,70655,70655,70654,70654,70653,70653,70652,70652,70651,70651,70650,70650,70649,70649,70987,70987,70648,70648,70647,70647,70646,70646,70645,70645,70644,70644,70643,70643,70642,70642,70641,70641,70640,70640,70639,70639,70638,70638,70986,70986,71072,71072,71109,71109,71041,71041,70637,70637,70636,70636,70635,70635,70634,70634,70633,70633,70632,70632,70631,70631,70630,70630,70629,70629,70628,70628,70627,70627,70626,70626,70625,70625,70624,70624,70623,70623,70622,70622,70621,70621,70620,70620,70619,70619,70985,70985,71071,71071,71102,71102,71115,71115,71108,71108,71070,71070,70618,70618,70617,70617,70616,70616,70615,70615,70614,70614,70613,70613,70612,70612,70611,70611,70610,70610,70609,70609,70608,70608,70607,70607,70606,70606,71101,71101,71069,71069,71040,71040,70605,70605,70604,70604,70603,70603,70602,70602,70601,70601,70600,70600,70599,70599,70598,70598,70984,70984,70597,70597,70596,70596,70595,70595,70594,70594,70593,70593,70592,70592,70591,70591,70590,70590,70589,70589,70588,70588,70587,70587,70586,70586,70585,70585,70584,70584,70583,70583,70582,70582,71087,71087,71068,71068,70581,70581,70580,70580,70579,70579,70578,70578,70577,70577,71039,71039,71100,71100,70576,70576,70575,70575,70574,70574,70573,70573,70572,70572,70571,70571,70570,70570,70569,70569,70568,70568,70567,70567,70566,70566,71038,71038,70565,70565,70564,70564,70563,70563,70562,70562,70561,70561,70560,70560,70559,70559,70558,70558,70557,70557,70556,70556,70555,70555,70554,70554,70553,70553,70552,70552,70551,70551,70550,70550,71067,71067,70549,70549,70548,70548,70547,70547,70546,70546,70545,70545,70544,70544,70543,70543,71037,71037,70542,70542,70541,70541,70540,70540,70539,70539,70538,70538,71130,71130,71124,71124,71099,71099,71086,71086,71066,71066,70537,70537,70536,70536,70535,70535,70534,70534,70533,70533,70532,70532,70531,70531,70530,70530,70529,70529,71036,71036,70528,70528,70527,70527,70526,70526,70525,70525,70524,70524,70523,70523,70522,70522,70521,70521,70520,70520,70519,70519,70518,70518,70517,70517,70516,70516,70515,70515,71035,71035,71034,71034,70514,70514,70513,70513,70512,70512,70511,70511,70510,70510,70509,70509,70508,70508,70507,70507,70506,70506,71033,71033,71107,71107,71085,71085,71065,71065,70505,70505,70504,70504,70503,70503,70502,70502,70501,70501,70983,70983,70500,70500,70499,70499,70498,70498,70497,70497,70496,70496,70495,70495,70494,70494,70493,70493,70492,70492,70491,70491,71032,71032,70490,70490,70489,70489,70488,70488,70487,70487,70486,70486,70485,70485,70484,70484,71098,71098,70982,70982,70483,70483,70482,70482,70481,70481,70480,70480,70479,70479,70478,70478,70477,70477,70476,70476,70475,70475,70474,70474,70473,70473,70472,70472,70471,70471,70470,70470,70981,70981,71031,71031,70469,70469,70468,70468,70467,70467,70466,70466,70465,70465,70464,70464,70463,70463,70462,70462,70461,70461,70460,70460,70459,70459,70458,70458,70457,70457,71106,71106,71097,71097,71064,71064,70456,70456,70455,70455,70454,70454,70453,70453,70452,70452,70451,70451,70450,70450,70449,70449,70448,70448,70447,70447,70446,70446,70445,70445,70444,70444,70443,70443,70442,70442,70441,70441,70440,70440,70439,70439,70438,70438,70437,70437,70436,70436,70435,70435,70434,70434,70433,70433,70432,70432,70431,70431,70430,70430,70429,70429,70428,70428,70427,70427,70426,70426,70425,70425,70424,70424,71030,71030,71084,71084,70423,70423,70422,70422,70421,70421,70420,70420,70419,70419,70418,70418,70417,70417,70416,70416,70415,70415,70414,70414,70413,70413,71029,71029,70980,70980,70412,70412,70411,70411,70410,70410,70979,70979,70409,70409,70408,70408,70407,70407,70406,70406,70405,70405,70404,70404,70403,70403,71028,71028,70978,70978,70402,70402,70401,70401,70400,70400,70399,70399,70398,70398,70397,70397,70396,70396,70395,70395,70394,70394,70393,70393,70392,70392,70391,70391,70390,70390,70389,70389,70388,70388,71027,71027,70977,70977,70387,70387,70386,70386,70385,70385,70976,70976,70384,70384,70383,70383,70382,70382,70381,70381,70380,70380,70379,70379,70378,70378,71026,71026,71083,71083,70975,70975,70377,70377,70376,70376,70375,70375,70374,70374,70373,70373,70974,70974,71025,71025,70973,70973,70372,70372,70371,70371,70370,70370,70369,70369,70368,70368,70367,70367,70366,70366,71024,71024,70365,70365,70364,70364,70363,70363,70362,70362,70361,70361,70360,70360,70359,70359,70358,70358,70357,70357,70356,70356,70355,70355,70354,70354,70353,70353,71082,71082,70972,70972,70352,70352,70351,70351,70350,70350,71023,71023,70971,70971,70349,70349,70348,70348,70347,70347,70346,70346,70345,70345,70344,70344,70343,70343,71022,71022,70342,70342,70341,70341,70340,70340,70339,70339,70338,70338,71118,71118,71114,71114,70337,70337,70336,70336,70335,70335,70334,70334,70333,70333,70332,70332,70331,70331,70330,70330,70329,70329,70328,70328,70327,70327,70326,70326,70325,70325,70324,70324,70323,70323,70322,70322,70321,70321,70320,70320,71063,71063,71081,71081,71080,71080,70970,70970,70319,70319,70318,70318,70317,70317,70316,70316,70315,70315,70314,70314,70313,70313,70312,70312,70311,70311,70310,70310,71021,71021,70309,70309,70308,70308,70307,70307,70306,70306,70305,70305,70304,70304,70303,70303,70302,70302,71020,71020,70301,70301,70300,70300,70299,70299,70298,70298,70297,70297,70296,70296,70295,70295,70294,70294,70293,70293,70969,70969,71062,71062,70292,70292,70291,70291,70290,70290,71117,71117,71119,71119,71061,71061,70289,70289,70288,70288,70287,70287,70286,70286,70285,70285,70284,70284,70283,70283,70282,70282,70281,70281,70280,70280,70279,70279,70278,70278,70968,70968,71060,71060,71096,71096,70277,70277,70276,70276,70275,70275,70274,70274,70273,70273,70272,70272,70271,70271,70270,70270,70269,70269,70268,70268,70267,70267,70266,70266,70265,70265,70264,70264,70263,70263,70262,70262,70261,70261,70260,70260,70259,70259,71059,71059,71019,71019,70258,70258,70257,70257,70256,70256,70255,70255,70254,70254,71058,71058,70967,70967,70253,70253,70252,70252,70251,70251,70250,70250,70249,70249,70248,70248,70247,70247,70246,70246,70245,70245,70244,70244,70966,70966,70243,70243,70242,70242,70241,70241,70240,70240,70239,70239,70238,70238,70237,70237,70236,70236,70235,70235,70234,70234,70233,70233,70232,70232,70231,70231,70230,70230,70229,70229,70228,70228,70227,70227,70226,70226,71018,71018,70225,70225,70224,70224,70223,70223,70965,70965,71057,71057,71079,71079,70222,70222,70221,70221,70220,70220,70219,70219,70218,70218,70217,70217,70216,70216,70215,70215,70214,70214,70213,70213,70212,70212,70211,70211,63089,63089,63520,63520,63654,63654,63839,63839,63946,63946,63886,63886,63655,63655,63090,63090,63091,63091,63092,63092,63093,63093,63094,63094,63762,63762,63840,63840,63947,63947,64003,64003,63656,63656,63095,63095,63096,63096,63097,63097,63521,63521,63763,63763,63098,63098,63099,63099,70210,70210,70209,70209,70208,70208,70207,70207,70206,70206,71017,71017,71056,71056,71016,71016,70205,70205,70204,70204,70203,70203,70202,70202,70201,70201,71095,71095,71078,71078,70200,70200,70199,70199,70198,70198,70197,70197,70196,70196,71015,71015,71055,71055,70964,70964,70195,70195,70194,70194,70193,70193,71129,71129,70192,70192,70191,70191,70190,70190,70963,70963,70189,70189,70188,70188,70187,70187,70186,70186,70185,70185,70962,70962,71014,71014,70184,70184,70183,70183,70182,70182,70181,70181,70180,70180,70179,70179,70178,70178,70177,70177,70961,70961,70960,70960,70176,70176,70175,70175,70174,70174,70173,70173,70172,70172,70171,70171,71013,71013,70170,70170,70169,70169,70168,70168,70959,70959,70167,70167,70166,70166,70165,70165,71077,71077,71113,71113,71116,71116,71123,71123,71094,71094,71076,71076,70164,70164,70163,70163,70162,70162,70161,70161,70160,70160,70159,70159,70158,71145,71144,71144,71150,71150,71149,71149,71148,71148,71147,71147,71146,71146,71145,71152,71151,71151,71160,71160,71159,71159,71158,71158,71157,71157,71156,71156,71155,71155,71154,71154,71153,71153,71152,71162,71161,71161,71168,71168,71167,71167,71166,71166,71165,71165,71164,71164,71163,71163,71162,71170,71169,71169,71176,71176,71175,71175,71174,71174,71173,71173,71172,71172,71171,71171,71170,71178,71177,71177,71186,71186,71185,71185,71184,71184,71183,71183,71182,71182,71181,71181,71180,71180,71179,71179,71178,71188,71187,71187,71195,71195,71194,71194,71193,71193,71192,71192,71191,71191,71190,71190,71189,71189,71188,71197,71196,71196,71221,71221,71220,71220,71219,71219,71218,71218,71217,71217,71216,71216,71215,71215,71214,71214,71213,71213,71212,71212,71211,71211,71210,71210,71209,71209,71208,71208,71207,71207,71206,71206,71205,71205,71204,71204,71203,71203,71202,71202,71201,71201,71200,71200,71199,71199,71198,71198,71197,71223,71222,71222,71235,71235,71234,71234,71233,71233,71232,71232,71231,71231,71230,71230,71229,71229,71228,71228,71227,71227,71226,71226,71225,71225,71224,71224,71223,71237,71236,71236,71254,71254,71253,71253,71252,71252,71251,71251,71250,71250,71249,71249,71248,71248,71247,71247,71255,71255,71246,71246,71245,71245,71244,71244,71243,71243,71242,71242,71241,71241,71240,71240,71239,71239,71238,71238,71237,71257,71256,71256,71266,71266,71265,71265,71264,71264,71263,71263,71262,71262,71261,71261,71260,71260,71259,71259,71258,71258,71257,71268,71267,71267,71290,71290,71289,71289,71288,71288,71287,71287,71286,71286,71285,71285,71284,71284,71283,71283,71282,71282,71281,71281,71280,71280,71291,71291,71279,71279,71278,71278,71277,71277,71276,71276,71275,71275,71274,71274,71273,71273,71272,71272,71271,71271,71270,71270,71269,71269,71268,71293,71292,71292,71300,71300,71299,71299,71298,71298,71297,71297,71296,71296,71295,71295,71294,71294,71293,71301,71324,71324,71323,71323,71322,71322,71321,71321,71320,71320,71319,71319,71318,71318,71317,71317,71327,71327,71316,71316,71315,71315,71314,71314,71313,71313,71312,71312,71311,71311,71310,71310,71309,71309,71326,71326,71325,71325,71308,71308,71307,71307,71306,71306,71305,71305,71304,71304,71303,71303,71302,71302,71301,71328,71342,71342,71341,71341,71340,71340,71339,71339,71338,71338,71337,71337,71336,71336,71335,71335,71334,71334,71333,71333,71332,71332,71331,71331,71330,71330,71329,71329,71328,71344,71343,71343,71353,71353,71352,71352,71354,71354,71351,71351,71350,71350,71349,71349,71348,71348,71347,71347,71346,71346,71345,71345,71344,71355,71394,71394,71396,71396,71392,71392,71391,71391,71390,71390,71389,71389,71388,71388,71387,71387,71386,71386,71385,71385,71398,71398,71397,71397,71395,71395,71384,71384,71383,71383,71382,71382,71381,71381,71380,71380,71379,71379,71378,71378,71377,71377,71376,71376,71375,71375,71374,71374,71373,71373,71372,71372,71371,71371,71370,71370,71369,71369,71368,71368,71393,71393,71367,71367,71366,71366,71365,71365,71364,71364,71363,71363,71362,71362,71361,71361,71360,71360,71359,71359,71358,71358,71357,71357,71356,71356,71355,71400,71399,71399,71407,71407,71406,71406,71405,71405,71404,71404,71403,71403,71402,71402,71401,71401,71400,71409,71408,71408,71416,71416,71415,71415,71417,71417,71414,71414,71413,71413,71412,71412,71411,71411,71410,71410,71409,71419,71418,71418,71426,71426,71425,71425,71424,71424,71423,71423,71422,71422,71421,71421,71420,71420,71419,71428,71427,71427,71462,71462,71461,71461,71460,71460,71459,71459,71458,71458,71457,71457,71456,71456,71455,71455,71454,71454,71453,71453,71452,71452,71451,71451,71450,71450,71449,71449,71464,71464,71448,71448,71447,71447,71446,71446,71445,71445,71444,71444,71443,71443,71442,71442,71441,71441,71440,71440,71439,71439,71438,71438,71437,71437,71436,71436,71435,71435,71465,71465,71434,71434,71433,71433,71432,71432,71431,71431,71430,71430,71463,71463,71429,71429,71428,71524,71523,71523,71522,71522,71521,71521,71520,71520,71519,71519,71518,71518,71517,71517,71516,71516,71515,71515,71514,71514,71513,71513,71512,71512,71511,71511,71510,71510,71509,71509,71508,71508,71507,71507,71506,71506,71505,71505,71504,71504,71503,71503,71502,71502,71501,71501,71500,71500,71499,71499,71498,71498,71497,71497,71496,71496,71495,71495,71494,71494,71493,71493,71492,71492,71491,71491,71490,71490,71489,71489,71488,71488,71487,71487,71486,71486,71485,71485,71484,71484,71483,71483,71525,71525,71482,71482,71481,71481,71480,71480,71479,71479,71478,71478,71477,71477,71476,71476,71475,71475,71474,71474,71473,71473,71472,71472,71471,71471,71470,71470,71469,71469,71468,71468,71467,71467,71466,71466,71524,71527,71526,71526,71536,71536,71535,71535,71534,71534,71533,71533,71532,71532,71531,71531,71530,71530,71529,71529,71528,71528,71527,71538,71537,71537,71544,71544,71543,71543,71542,71542,71541,71541,71540,71540,71539,71539,71538,71546,71545,71545,71552,71552,71551,71551,71550,71550,71549,71549,71548,71548,71547,71547,71546,71554,71553,71553,71560,71560,71559,71559,71558,71558,71557,71557,71556,71556,71555,71555,71554,71562,71561,71561,71621,71621,71620,71620,71619,71619,71623,71623,71618,71618,71617,71617,71616,71616,71615,71615,71614,71614,71613,71613,71612,71612,71611,71611,71610,71610,71609,71609,71608,71608,71607,71607,71606,71606,71605,71605,71604,71604,71603,71603,71602,71602,71601,71601,71600,71600,71599,71599,71598,71598,71597,71597,71625,71625,71596,71596,71595,71595,71594,71594,71593,71593,71592,71592,71591,71591,71590,71590,71589,71589,71624,71624,71588,71588,71587,71587,71586,71586,71622,71622,71585,71585,71584,71584,71583,71583,71582,71582,71581,71581,71580,71580,71579,71579,71578,71578,71577,71577,71576,71576,71575,71575,71574,71574,71573,71573,71572,71572,71571,71571,71570,71570,71569,71569,71568,71568,71567,71567,71566,71566,71565,71565,71564,71564,71563,71563,71562,71733,71732,71732,71722,71722,71721,71721,71720,71720,71719,71719,71718,71718,71717,71717,71749,71749,71746,71746,71742,71742,71716,71716,71715,71715,71714,71714,71713,71713,71712,71712,71731,71731,71711,71711,71710,71710,71709,71709,71708,71708,71707,71707,71706,71706,71705,71705,71744,71744,71738,71738,71704,71704,71703,71703,71702,71702,71730,71730,71729,71729,71701,71701,71700,71700,71699,71699,71728,71728,71698,71698,71697,71697,71696,71696,71695,71695,71694,71694,71693,71693,71727,71727,71692,71692,71691,71691,71690,71690,71689,71689,71688,71688,71687,71687,71686,71686,71737,71737,71741,71741,71685,71685,71684,71684,71683,71683,71682,71682,71681,71681,71736,71736,71740,71740,71726,71726,71680,71680,71679,71679,71678,71678,71677,71677,71676,71676,71675,71675,71674,71674,71673,71673,71672,71672,71671,71671,71670,71670,71669,71669,71668,71668,71667,71667,71666,71666,71665,71665,71664,71664,71663,71663,71662,71662,71661,71661,71660,71660,71659,71659,71743,71743,71748,71748,71658,71658,71657,71657,71656,71656,71655,71655,71654,71654,71653,71653,71652,71652,71651,71651,71650,71650,71649,71649,71648,71648,71725,71725,71724,71724,71647,71647,71646,71646,71645,71645,71644,71644,71643,71643,71642,71642,71641,71641,71735,71735,71723,71723,71640,71640,71639,71639,71638,71638,71637,71637,71636,71636,71635,71635,71634,71634,71739,71739,71747,71747,71745,71745,71734,71734,71633,71633,71632,71632,71631,71631,71630,71630,71629,71629,71628,71628,71627,71627,71626,71626,71733,71750,72037,72037,72036,72036,72007,72007,72006,72006,72005,72005,72004,72004,72003,72003,72002,72002,72001,72001,72000,72000,71999,71999,72026,72026,71998,71998,71997,71997,71996,71996,72035,72035,71995,71995,71994,71994,71993,71993,71992,71992,71991,71991,71990,71990,71989,71989,71988,71988,71987,71987,71986,71986,71985,71985,72025,72025,71984,71984,71983,71983,71982,71982,72024,72024,71981,71981,71980,71980,71979,71979,71978,71978,71977,71977,71976,71976,71975,71975,71974,71974,71973,71973,71972,71972,72043,72043,71971,71971,71970,71970,71969,71969,71968,71968,71967,71967,71966,71966,71965,71965,71964,71964,71963,71963,72023,72023,71962,71962,71961,71961,71960,71960,72034,72034,72053,72053,72048,72048,72042,72042,71959,71959,71958,71958,71957,71957,71956,71956,71955,71955,72033,72033,72022,72022,71954,71954,71953,71953,71952,71952,71951,71951,71950,71950,71949,71949,71948,71948,72021,72021,71947,71947,71946,71946,71945,71945,72020,72020,71944,71944,71943,71943,71942,71942,72019,72019,71941,71941,71940,71940,71939,71939,71938,71938,71937,71937,71936,71936,71935,71935,72018,72018,71934,71934,71933,71933,71932,71932,71931,71931,71930,71930,71929,71929,71928,71928,71927,71927,71926,71926,71925,71925,71924,71924,71923,71923,71922,71922,71921,71921,71920,71920,71919,71919,71918,71918,71917,71917,71916,71916,71915,71915,71914,71914,71913,71913,71912,71912,71911,71911,71910,71910,71909,71909,71908,71908,71907,71907,72017,72017,71906,71906,71905,71905,71904,71904,71903,71903,71902,71902,71901,71901,71900,71900,71899,71899,71898,71898,71897,71897,71896,71896,71895,71895,71894,71894,71893,71893,71892,71892,71891,71891,71890,71890,71889,71889,71888,71888,71887,71887,71886,71886,71885,71885,71884,71884,71883,71883,71882,71882,71881,71881,72041,72041,71880,71880,71879,71879,71878,71878,71877,71877,71876,71876,71875,71875,71874,71874,72016,72016,72056,72056,72032,72032,71873,71873,71872,71872,71871,71871,71870,71870,71869,71869,71868,71868,71867,71867,71866,71866,71865,71865,72031,72031,72047,72047,72052,72052,72040,72040,71864,71864,71863,71863,71862,71862,71861,71861,71860,71860,72030,72030,72046,72046,72051,72051,72029,72029,71859,71859,71858,71858,71857,71857,72015,72015,71856,71856,71855,71855,71854,71854,72014,72014,71853,71853,71852,71852,71851,71851,71850,71850,71849,71849,71848,71848,71847,71847,72013,72013,71846,71846,71845,71845,71844,71844,71843,71843,71842,71842,71841,71841,71840,71840,71839,71839,71838,71838,71837,71837,71836,71836,71835,71835,71834,71834,71833,71833,71832,71832,72045,72045,72050,72050,72044,72044,72039,72039,71831,71831,71830,71830,71829,71829,71828,71828,71827,71827,71826,71826,71825,71825,72012,72012,72057,72057,72055,72055,72049,72049,71824,71824,71823,71823,71822,71822,71821,71821,71820,71820,71819,71819,71818,71818,71817,71817,71816,71816,71815,71815,71814,71814,71813,71813,71812,71812,72011,72011,71811,71811,71810,71810,71809,71809,71808,71808,71807,71807,71806,71806,71805,71805,71804,71804,71803,71803,71802,71802,71801,71801,71800,71800,72010,72010,71799,71799,71798,71798,71797,71797,71796,71796,71795,71795,71794,71794,71793,71793,71792,71792,71791,71791,71790,71790,71789,71789,71788,71788,71787,71787,71786,71786,72009,72009,71785,71785,71784,71784,71783,71783,72008,72008,71782,71782,71781,71781,71780,71780,72028,72028,72054,72054,72027,72027,71779,71779,71778,71778,71777,71777,71776,71776,71775,71775,71774,71774,71773,71773,71772,71772,71771,71771,71770,71770,71769,71769,71768,71768,71767,71767,71766,71766,71765,71765,72038,72038,71764,71764,71763,71763,71762,71762,71761,71761,71760,71760,71759,71759,71758,71758,71757,71757,71756,71756,71755,71755,71754,71754,71753,71753,71752,71752,71751,71751,71750,72059,72058,72058,72082,72082,72081,72081,72080,72080,72079,72079,72078,72078,72077,72077,72076,72076,72075,72075,72074,72074,72083,72083,72073,72073,72072,72072,72071,72071,72070,72070,72069,72069,72068,72068,72067,72067,72066,72066,72065,72065,72064,72064,72063,72063,72062,72062,72061,72061,72060,72060,72059,72085,72084,72084,72089,72089,72088,72088,72087,72087,72086,72086,72085,72090,72103,72103,72102,72102,72101,72101,72100,72100,72099,72099,72098,72098,72097,72097,72096,72096,72095,72095,72094,72094,72093,72093,72092,72092,72091,72091,72090,72105,72104,72104,72133,72133,72132,72132,72136,72136,72131,72131,72130,72130,72129,72129,72135,72135,72128,72128,72127,72127,72126,72126,72134,72134,72137,72137,72125,72125,72124,72124,72123,72123,72122,72122,72121,72121,72120,72120,72119,72119,72118,72118,72117,72117,72116,72116,72115,72115,72114,72114,72113,72113,72112,72112,72111,72111,72110,72110,72109,72109,72108,72108,72107,72107,72106,72106,72105,72139,72138,72138,72158,72158,72157,72157,72156,72156,72155,72155,72154,72154,72153,72153,72152,72152,72151,72151,72150,72150,72149,72149,72148,72148,72147,72147,72146,72146,72145,72145,72144,72144,72143,72143,72142,72142,72141,72141,72140,72140,72139,70845,70846,70846,70847,70847,70848,70848,70849,70849,70850,70850,70851,70851,70852,70852,71003,71003,70853,70853,70854,70854,70855,70855,71004,71004,70856,70856,70857,70857,70858,70858,70859,70859,70860,70860,70861,70861,70862,70862,70863,70863,70864,70864,70865,70865,70866,70866,70867,70867,71050,71050,71092,71092,71051,71051,70868,70868,70869,70869,70870,70870,71005,71005,70871,70871,70872,70872,70873,70873,70874,70874,70875,70875,70876,70876,70877,70877,71006,71006,71007,71007,70878,70878,70879,70879,70880,70880,70881,70881,70882,70882,70883,70883,70884,70884,70885,70885,71008,71008,70886,70886,70887,70887,70888,70888,71052,71052,70889,70889,70890,70890,70891,70891,70892,70892,70893,70893,71009,71009,71111,71111,71104,71104,71093,71093,71053,71053,70894,70894,70895,70895,70896,70896,70897,70897,70898,70898,70899,70899,70900,70900,70901,70901,70902,70902,71054,71054,70903,70903,70904,70904,70905,70905,70906,70906,70907,70907,70908,70908,70909,70909,70910,70910,70911,70911,70912,70912,70913,70913,70914,70914,70915,70915,70916,70916,70917,70917,70918,70918,70919,70919,70920,70920,70921,70921,70922,70922,70923,70923,70924,70924,70925,70925,70926,70926,70927,70927,70928,70928,70929,70929,70930,70930,70931,70931,70932,70932,70933,70933,70934,70934,70935,70935,70936,70936,70937,70937,70938,70938,70939,70939,70940,70940,70941,70941,70942,70942,71010,71010,71075,71075,71105,71105,71112,71112,70943,70943,70944,70944,70945,70945,71011,71011,71012,71012,70946,70946,70947,70947,70948,70948,70949,70949,70950,70950,70951,70951,70952,70952,70953,70953,70954,70954,70955,70955,70956,70956,70957,70957,70958,70958,70157,70157,70158,70158,72466,72466,72465,72465,72464,72464,72463,72463,72462,72462,72461,72461,72460,72460,72459,72459,72458,72458,72457,72457,72456,72456,72455,72455,72454,72454,72453,72453,72452,72452,72451,72451,72450,72450,72449,72449,72448,72448,72447,72447,72446,72446,72488,72488,72445,72445,72444,72444,72443,72443,72504,72504,72503,72503,72442,72442,72441,72441,72440,72440,72487,72487,72514,72514,72526,72526,72439,72439,72438,72438,72437,72437,72436,72436,72435,72435,72434,72434,72433,72433,72502,72502,72519,72519,72523,72523,72522,72522,72486,72486,72432,72432,72431,72431,72430,72430,72429,72429,72428,72428,72427,72427,72426,72426,72425,72425,72424,72424,72423,72423,72518,72518,72422,72422,72421,72421,72420,72420,72525,72525,72419,72419,72418,72418,72417,72417,72416,72416,72415,72415,72414,72414,72413,72413,72412,72412,72411,72411,72410,72410,72409,72409,72408,72408,72407,72407,72406,72406,72405,72405,72404,72404,72403,72403,72501,72501,72402,72402,72401,72401,72400,72400,72485,72485,72399,72399,72398,72398,72397,72397,72396,72396,72395,72395,72394,72394,72393,72393,72392,72392,72500,72500,72391,72391,72390,72390,72389,72389,72388,72388,72387,72387,72521,72521,72517,72517,72499,72499,72386,72386,72385,72385,72384,72384,72383,72383,72382,72382,72513,72513,72381,72381,72380,72380,72379,72379,72378,72378,72377,72377,72376,72376,72375,72375,72484,72484,72498,72498,72374,72374,72373,72373,72372,72372,72371,72371,72370,72370,72369,72369,72368,72368,72367,72367,72483,72483,72366,72366,72365,72365,72364,72364,72363,72363,72362,72362,72361,72361,72497,72497,72360,72360,72359,72359,72358,72358,72482,72482,72357,72357,72356,72356,72355,72355,72481,72481,72354,72354,72353,72353,72352,72352,72351,72351,72350,72350,72349,72349,72348,72348,72347,72347,72346,72346,72345,72345,72344,72344,72343,72343,72342,72342,72341,72341,72340,72340,72339,72339,72338,72338,72337,72337,72336,72336,72335,72335,72334,72334,72333,72333,72332,72332,72331,72331,72330,72330,72329,72329,72328,72328,72496,72496,72327,72327,72326,72326,72325,72325,72324,72324,72323,72323,72495,72495,72322,72322,72321,72321,72320,72320,72319,72319,72318,72318,72317,72317,72316,72316,72315,72315,72480,72480,72530,72530,72516,72516,72512,72512,72314,72314,72313,72313,72312,72312,72311,72311,72310,72310,72309,72309,72511,72511,72494,72494,72479,72479,72308,72308,72307,72307,72306,72306,72305,72305,72304,72304,72303,72303,72302,72302,72301,72301,72300,72300,72299,72299,72298,72298,72297,72297,72296,72296,72295,72295,72294,72294,72293,72293,72292,72292,72478,72478,72493,72493,72291,72291,72290,72290,72289,72289,72288,72288,72287,72287,72492,72492,72286,72286,72285,72285,72284,72284,72477,72477,72476,72476,72283,72283,72282,72282,72281,72281,72510,72510,72280,72280,72279,72279,72278,72278,72277,72277,72276,72276,72275,72275,72274,72274,72273,72273,72272,72272,72271,72271,72270,72270,72269,72269,72268,72268,72267,72267,72266,72266,72509,72509,72534,72534,72529,72529,72475,72475,72265,72265,72264,72264,72263,72263,72262,72262,72261,72261,72260,72260,72259,72259,72258,72258,72257,72257,72256,72256,72255,72255,72254,72254,72253,72253,72252,72252,72251,72251,72250,72250,72249,72249,72248,72248,72247,72247,72246,72246,72245,72245,72244,72244,72243,72243,72242,72242,72241,72241,72240,72240,72239,72239,72238,72238,72237,72237,72236,72236,72235,72235,72234,72234,72233,72233,72232,72232,72231,72231,72230,72230,72229,72229,72228,72228,72227,72227,72226,72226,72474,72474,72225,72225,72224,72224,72223,72223,72473,72473,72222,72222,72221,72221,72220,72220,72219,72219,72218,72218,72217,72217,72216,72216,72215,72215,72214,72214,72213,72213,72212,72212,72472,72472,72211,72211,72210,72210,72209,72209,72520,72520,72471,72471,72208,72208,72207,72207,72206,72206,72491,72491,72539,72539,72515,72515,72508,72508,72490,72490,72205,72205,72204,72204,72203,72203,72202,72202,72201,72201,72200,72200,72199,72199,72198,72198,72197,72197,72196,72196,72470,72470,72507,72507,72469,72469,72195,72195,72194,72194,72193,72193,72192,72192,72191,72191,72190,72190,72506,72506,72489,72489,72189,72189,72188,72188,72187,72187,72186,72186,72185,72185,72505,72505,72468,72468,72184,72184,72183,72183,72182,72182,72181,72181,72180,72180,72179,72179,72178,72178,72177,72177,72176,72176,72175,72175,72174,72174,72173,72173,72172,72172,72171,72171,72170,72170,72169,72169,72467,72467,72168,72168,72167,72167,72166,72166,72165,72165,72164,72164,72163,72163,72162,72162,72161,72161,72160,72160,72159,72159,70845,72572,72578,72578,72577,72577,72576,72576,72575,72575,72574,72574,72573,72573,72572,72580,72579,72579,72585,72585,72584,72584,72583,72583,72582,72582,72581,72581,72580,72594,72593,72593,72592,72592,72591,72591,72590,72590,72589,72589,72588,72588,72587,72587,72586,72586,72594,72415,72416,72416,72417,72417,72418,72418,72419,72419,72525,72525,72420,72420,72421,72421,72422,72422,72518,72518,72423,72423,72424,72424,72425,72425,72426,72426,72427,72427,72428,72428,72429,72429,72430,72430,72431,72431,72432,72432,72486,72486,72522,72522,72523,72523,72519,72519,72502,72502,72433,72433,72434,72434,72435,72435,72436,72436,72437,72437,72438,72438,72439,72439,72526,72526,72514,72514,72487,72487,72440,72440,72441,72441,72442,72442,72503,72503,72504,72504,72443,72443,72444,72444,72445,72445,72488,72488,72446,72446,72447,72447,72448,72448,72449,72449,72450,72450,72451,72451,72452,72452,72453,72453,72454,72454,72455,72455,72456,72456,72457,72457,72458,72458,72459,72459,72460,72460,72461,72461,72462,72462,72463,72463,72464,72464,72465,72465,72466,72466,70158,70158,70159,70159,70160,70160,70161,70161,70162,70162,70163,70163,70164,70164,71076,71076,71094,71094,71123,71123,71116,71116,71113,71113,71077,71077,70165,70165,70166,70166,70167,70167,70959,70959,70168,70168,70169,70169,70170,70170,71013,71013,70171,70171,70172,70172,70173,70173,70174,70174,70175,70175,70176,70176,70960,70960,70961,70961,70177,70177,70178,70178,70179,70179,70180,70180,70181,70181,70182,70182,70183,70183,70184,70184,71014,71014,70962,70962,70185,70185,70186,70186,70187,70187,70188,70188,70189,70189,70963,70963,70190,70190,70191,70191,70192,70192,71129,71129,70193,70193,70194,70194,70195,70195,70964,70964,71055,71055,71015,71015,70196,70196,70197,70197,70198,70198,70199,70199,70200,70200,71078,71078,71095,71095,70201,70201,70202,70202,70203,70203,70204,70204,70205,70205,71016,71016,71056,71056,71017,71017,70206,70206,70207,70207,70208,70208,70209,70209,70210,70210,63099,63099,63100,63100,63101,63101,63102,63102,63103,63103,63104,63104,63522,63522,63887,63887,63841,63841,63657,63657,63105,63105,63106,63106,63107,63107,63108,63108,63109,63109,63764,63764,63110,63110,63111,63111,63112,63112,63523,63523,63888,63888,63658,63658,63113,63113,63114,63114,63115,63115,63116,63116,63117,63117,63118,63118,63119,63119,63120,63120,63121,63121,63122,63122,63123,63123,63124,63124,63125,63125,63126,63126,63127,63127,63128,63128,63129,63129,63130,63130,63131,63131,63948,63948,63659,63659,63132,63132,63133,63133,63134,63134,63135,63135,63136,63136,63137,63137,63138,63138,63139,63139,63140,63140,63141,63141,63142,63142,63660,63660,63765,63765,63766,63766,63143,63143,63144,63144,63145,63145,63146,63146,63147,63147,63148,63148,63149,63149,63150,63150,63151,63151,63842,63842,63661,63661,63152,63152,63153,63153,63154,63154,63155,63155,63156,63156,63767,63767,63889,63889,64004,64004,63949,63949,63843,63843,63768,63768,63662,63662,63157,63157,63158,63158,63159,63159,63160,63160,63161,63161,63162,63162,63163,63163,63164,63164,63165,63165,63166,63166,63524,63524,63663,63663,64149,64149,63167,63167,63168,63168,63169,63169,63525,63525,64005,64005,63170,63170,63171,63171,63172,63172,63173,63173,63174,63174,63175,63175,63176,63176,63177,63177,63178,63178,63526,63526,63179,63179,63180,63180,63181,63181,63182,63182,63183,63183,63184,63184,63185,63185,63186,63186,72745,72745,72744,72744,72743,72743,72742,72742,72741,72741,72769,72769,72740,72740,72739,72739,72738,72738,72737,72737,72736,72736,72735,72735,72734,72734,72733,72733,72768,72768,72774,72774,72732,72732,72731,72731,72730,72730,72729,72729,72728,72728,72727,72727,72726,72726,72725,72725,72724,72724,72723,72723,72757,72757,72722,72722,72721,72721,72720,72720,72719,72719,72718,72718,72717,72717,72716,72716,72715,72715,72714,72714,72756,72756,72713,72713,72712,72712,72711,72711,72755,72755,72710,72710,72709,72709,72708,72708,72775,72775,72707,72707,72706,72706,72705,72705,72704,72704,72703,72703,72767,72767,72766,72766,72754,72754,72702,72702,72701,72701,72700,72700,72784,72784,72777,72777,72699,72699,72698,72698,72697,72697,72696,72696,72695,72695,72694,72694,72693,72693,72692,72692,72691,72691,72690,72690,72689,72689,72688,72688,72753,72753,72773,72773,72752,72752,72687,72687,72686,72686,72685,72685,72765,72765,72764,72764,72684,72684,72683,72683,72682,72682,72681,72681,72680,72680,72679,72679,72678,72678,72677,72677,72676,72676,72675,72675,72674,72674,72673,72673,72672,72672,72671,72671,72670,72670,72669,72669,72751,72751,72763,72763,72750,72750,72668,72668,72667,72667,72666,72666,72665,72665,72664,72664,72663,72663,72662,72662,72661,72661,72772,72772,72660,72660,72659,72659,72658,72658,72762,72762,72749,72749,72657,72657,72656,72656,72655,72655,72771,72771,72654,72654,72653,72653,72652,72652,72651,72651,72650,72650,72649,72649,72648,72648,72647,72647,72646,72646,72645,72645,72644,72644,72643,72643,72642,72642,72641,72641,72640,72640,72761,72761,72760,72760,72639,72639,72638,72638,72637,72637,72636,72636,72635,72635,72634,72634,72633,72633,72632,72632,72631,72631,72630,72630,72629,72629,72628,72628,72627,72627,72626,72626,72625,72625,72624,72624,72623,72623,72622,72622,72621,72621,72620,72620,72619,72619,72618,72618,72617,72617,72616,72616,72615,72615,72614,72614,72613,72613,72612,72612,72611,72611,72759,72759,72748,72748,72610,72610,72609,72609,72608,72608,72758,72758,72607,72607,72606,72606,72605,72605,72604,72604,72603,72603,72770,72770,72602,72602,72601,72601,72600,72600,72599,72599,72598,72598,72747,72747,72746,72746,72597,72597,72596,72596,72595,72595,72415,72808,72807,72807,72817,72817,72816,72816,72815,72815,72814,72814,72813,72813,72812,72812,72811,72811,72810,72810,72809,72809,72808,72830,72831,72831,72832,72832,72829,72829,72828,72828,72827,72827,72826,72826,72825,72825,72824,72824,72823,72823,72822,72822,72821,72821,72820,72820,72819,72819,72818,72818,72830,72834,72833,72833,72846,72846,72845,72845,72844,72844,72847,72847,72843,72843,72842,72842,72841,72841,72840,72840,72839,72839,72838,72838,72837,72837,72836,72836,72835,72835,72834,72849,72848,72848,72856,72856,72855,72855,72854,72854,72853,72853,72852,72852,72851,72851,72850,72850,72849,72858,72857,72857,72862,72862,72861,72861,72860,72860,72859,72859,72858,72864,72863,72863,72869,72869,72868,72868,72867,72867,72866,72866,72865,72865,72864,72871,72870,72870,72878,72878,72877,72877,72876,72876,72875,72875,72874,72874,72873,72873,72872,72872,72871,69787,69788,69788,69789,69789,69790,69790,69791,69791,69792,69792,69793,69793,69794,69794,69795,69795,69867,69867,69796,69796,69797,69797,69798,69798,69799,69799,69800,69800,59303,59303,58905,58905,58906,58906,58907,58907,58908,58908,58909,58909,59358,59358,58910,58910,58911,58911,58912,58912,58913,58913,58914,58914,72896,72896,72895,72895,72894,72894,72893,72893,72892,72892,72891,72891,72890,72890,72889,72889,72888,72888,72887,72887,72886,72886,72885,72885,72884,72884,72883,72883,72882,72882,72881,72881,72880,72880,72879,72879,69787,72898,72897,72897,72939,72939,72938,72938,72937,72937,72936,72936,72935,72935,72934,72934,72945,72945,72951,72951,72933,72933,72932,72932,72931,72931,72930,72930,72929,72929,72956,72956,72928,72928,72927,72927,72926,72926,72925,72925,72924,72924,72944,72944,72955,72955,72954,72954,72943,72943,72923,72923,72922,72922,72921,72921,72950,72950,72920,72920,72919,72919,72918,72918,72917,72917,72916,72916,72942,72942,72915,72915,72914,72914,72913,72913,72912,72912,72911,72911,72910,72910,72957,72957,72949,72949,72941,72941,72909,72909,69773,69773,69774,69774,69775,69775,69776,69776,69777,69777,69778,69778,69779,69779,69780,69780,69781,69781,69782,69782,69783,69783,69784,69784,69785,69785,69786,69786,69787,69787,72879,72879,72880,72880,72881,72881,72882,72882,72883,72883,72884,72884,72885,72885,72886,72886,72887,72887,72888,72888,72889,72889,72890,72890,72891,72891,72892,72892,72893,72893,72894,72894,72895,72895,72896,72896,58914,58914,58915,58915,58916,58916,58917,58917,59359,59359,58918,58918,58919,58919,58920,58920,58921,58921,58922,58922,58923,58923,58924,58924,58925,58925,58926,58926,58927,58927,58928,58928,58929,58929,58930,58930,58931,58931,58932,58932,58933,58933,58934,58934,58935,58935,58936,58936,59374,59374,59382,59382,59394,59394,59389,59389,59375,59375,59338,59338,58937,58937,58938,58938,58939,58939,58940,58940,58941,58941,58942,58942,58943,58943,58944,58944,58945,58945,58946,58946,58947,58947,58948,58948,58949,58949,59304,59304,59339,59339,58950,58950,58951,58951,58952,58952,58953,58953,58954,58954,59305,59305,58955,58955,58956,58956,58957,58957,58958,58958,58959,58959,58960,58960,58961,58961,58962,58962,58963,58963,59383,59383,59376,59376,59360,59360,58964,58964,58965,58965,58966,58966,58967,58967,58968,58968,72908,72908,72907,72907,72906,72906,72905,72905,72940,72940,72948,72948,72953,72953,72904,72904,72903,72903,72902,72902,72901,72901,72900,72900,72947,72947,72958,72958,72952,72952,72946,72946,72899,72899,72898,72960,72959,72959,73027,73027,73026,73026,73025,73025,73024,73024,73023,73023,73022,73022,73034,73034,73021,73021,73020,73020,73019,73019,73018,73018,73017,73017,73038,73038,73037,73037,73016,73016,73015,73015,73014,73014,73013,73013,73012,73012,73011,73011,73010,73010,73009,73009,73008,73008,73007,73007,73006,73006,73033,73033,73036,73036,73005,73005,73004,73004,73003,73003,73002,73002,73001,73001,73000,73000,72999,72999,72998,72998,72997,72997,72996,72996,72995,72995,72994,72994,72993,72993,72992,72992,72991,72991,72990,72990,72989,72989,72988,72988,72987,72987,73032,73032,73031,73031,72986,72986,72985,72985,72984,72984,72983,72983,72982,72982,72981,72981,72980,72980,72979,72979,72978,72978,72977,72977,72976,72976,72975,72975,72974,72974,72973,72973,72972,72972,72971,72971,73030,73030,73035,73035,73029,73029,72970,72970,72969,72969,72968,72968,72967,72967,72966,72966,73028,73028,72965,72965,72964,72964,72963,72963,72962,72962,72961,72961,72960,73040,73039,73039,73117,73117,73116,73116,73115,73115,73124,73124,73114,73114,73113,73113,73112,73112,73111,73111,73110,73110,73109,73109,73108,73108,73107,73107,73106,73106,73105,73105,73104,73104,73123,73123,73130,73130,73131,73131,73122,73122,73103,73103,73102,73102,73101,73101,73100,73100,73099,73099,73098,73098,73097,73097,73096,73096,73095,73095,73094,73094,73093,73093,72972,72972,72973,72973,72974,72974,72975,72975,72976,72976,72977,72977,72978,72978,72979,72979,72980,72980,72981,72981,72982,72982,72983,72983,72984,72984,72985,72985,72986,72986,73031,73031,73032,73032,72987,72987,72988,72988,73092,73092,73091,73091,73090,73090,73089,73089,73088,73088,73087,73087,73086,73086,73085,73085,73084,73084,73083,73083,73082,73082,73128,73128,73081,73081,73080,73080,73079,73079,73078,73078,73077,73077,73120,73120,73076,73076,73075,73075,73074,73074,73127,73127,73073,73073,73072,73072,73071,73071,73070,73070,73069,73069,73068,73068,73067,73067,73066,73066,73065,73065,73064,73064,73063,73063,73062,73062,73061,73061,73060,73060,73059,73059,73121,73121,73129,73129,73058,73058,73057,73057,73056,73056,73055,73055,73054,73054,73053,73053,73119,73119,73126,73126,73052,73052,73051,73051,73050,73050,73049,73049,73048,73048,73047,73047,73046,73046,73045,73045,73044,73044,73043,73043,73042,73042,73118,73118,73125,73125,73041,73041,73040,73132,73168,73168,73171,73171,73167,73167,73166,73166,73165,73165,73174,73174,73164,73164,73163,73163,73162,73162,73161,73161,73160,73160,73159,73159,73158,73158,73157,73157,73156,73156,73173,73173,73175,73175,73155,73155,73154,73154,73153,73153,73152,73152,73151,73151,73150,73150,73149,73149,73148,73148,73170,73170,73147,73147,73146,73146,73145,73145,73144,73144,73143,73143,73142,73142,73141,73141,73172,73172,73140,73140,72960,72960,72961,72961,72962,72962,72963,72963,72964,72964,72965,72965,73028,73028,72966,72966,72967,72967,72968,72968,72969,72969,72970,72970,73029,73029,73035,73035,73030,73030,72971,72971,72972,72972,73093,73093,73094,73094,73095,73095,73096,73096,73097,73097,73098,73098,73099,73099,73100,73100,73101,73101,73102,73102,73139,73139,73169,73169,73138,73138,73137,73137,73136,73136,73135,73135,73134,73134,73133,73133,73132,73177,73176,73176,73184,73184,73183,73183,73182,73182,73181,73181,73180,73180,73179,73179,73178,73178,73177,73216,73213,73213,73212,73212,73211,73211,73210,73210,73209,73209,73208,73208,73207,73207,73206,73206,73205,73205,73204,73204,73203,73203,73202,73202,73201,73201,73200,73200,73199,73199,73217,73217,73215,73215,73198,73198,73197,73197,73196,73196,73195,73195,73194,73194,73193,73193,73192,73192,73191,73191,73190,73190,73189,73189,73188,73188,73214,73214,73187,73187,73186,73186,73185,73185,73216,73219,73218,73218,73228,73228,73227,73227,73226,73226,73225,73225,73224,73224,73223,73223,73222,73222,73221,73221,73220,73220,73219,73229,73240,73240,73239,73239,73238,73238,73237,73237,73236,73236,73235,73235,73234,73234,73233,73233,73232,73232,73231,73231,73230,73230,73229,59105,59106,59106,59107,59107,59108,59108,59109,59109,59110,59110,59321,59321,59377,59377,59347,59347,59111,59111,59112,59112,59113,59113,59114,59114,59115,59115,59116,59116,59117,59117,59322,59322,59348,59348,59118,59118,59119,59119,59120,59120,59121,59121,59122,59122,59349,59349,59123,59123,59124,59124,59125,59125,59126,59126,59127,59127,59128,59128,59323,59323,59129,59129,59130,59130,59131,59131,59132,59132,59133,59133,59134,59134,59135,59135,59136,59136,59137,59137,59138,59138,59139,59139,59140,59140,59141,59141,59142,59142,59368,59368,59390,59390,59400,59400,59143,59143,59144,59144,59145,59145,59324,59324,59146,59146,59147,59147,73479,73479,73478,73478,73477,73477,73476,73476,73518,73518,73527,73527,73517,73517,73496,73496,73475,73475,59151,59151,59326,59326,59152,59152,59153,59153,59154,59154,59155,59155,59156,59156,59351,59351,59157,59157,59158,59158,59159,59159,59327,59327,59370,59370,59160,59160,59161,59161,59162,59162,59328,59328,59163,59163,59164,59164,59165,59165,59166,59166,73474,73474,73473,73473,73472,73472,73471,73471,73470,73470,73516,73516,73469,73469,73468,73468,73467,73467,73466,73466,73465,73465,73464,73464,73463,73463,73462,73462,73461,73461,73460,73460,73459,73459,73458,73458,73457,73457,73456,73456,73455,73455,73454,73454,73453,73453,73452,73452,73451,73451,73450,73450,73495,73495,73449,73449,73448,73448,73447,73447,73535,73535,73581,73581,73568,73568,73556,73556,73526,73526,73511,73511,73446,73446,73445,73445,73444,73444,73443,73443,73442,73442,73441,73441,73440,73440,73439,73439,73438,73438,73437,73437,73436,73436,73435,73435,73510,73510,73434,73434,73433,73433,73432,73432,73431,73431,73430,73430,73534,73534,73429,73429,73428,73428,73427,73427,73426,73426,73425,73425,73509,73509,73508,73508,73424,73424,73423,73423,73422,73422,73494,73494,73421,73421,73420,73420,73419,73419,73493,73493,73533,73533,73492,73492,73418,73418,73417,73417,73416,73416,73507,73507,73515,73515,73491,73491,73415,73415,73414,73414,73413,73413,73506,73506,73412,73412,73411,73411,73410,73410,73409,73409,73408,73408,73407,73407,73406,73406,73405,73405,73404,73404,73403,73403,73505,73505,73402,73402,73401,73401,73400,73400,73399,73399,73398,73398,73397,73397,73396,73396,73395,73395,73394,73394,73393,73393,73490,73490,73392,73392,73391,73391,73390,73390,73389,73389,73388,73388,73387,73387,73386,73386,73385,73385,73384,73384,73383,73383,73382,73382,73381,73381,73489,73489,73525,73525,73532,73532,73380,73380,73379,73379,73378,73378,73377,73377,73376,73376,73488,73488,73375,73375,73374,73374,73373,73373,73504,73504,73524,73524,73503,73503,73487,73487,73372,73372,73371,73371,73370,73370,73369,73369,73368,73368,73367,73367,73366,73366,73365,73365,73364,73364,73502,73502,73523,73523,73537,73537,73531,73531,73522,73522,73514,73514,73363,73363,73362,73362,73361,73361,73360,73360,73359,73359,73501,73501,73486,73486,73358,73358,73357,73357,73356,73356,73355,73355,73354,73354,73500,73500,73353,73353,73352,73352,73351,73351,73350,73350,73349,73349,73348,73348,73347,73347,73346,73346,73345,73345,73344,73344,73343,73343,73567,73567,73530,73530,73521,73521,73342,73342,73341,73341,73340,73340,73339,73339,73338,73338,73485,73485,73513,73513,73337,73337,73336,73336,73335,73335,73334,73334,73333,73333,73332,73332,73331,73331,73330,73330,73529,73529,73520,73520,73329,73329,73328,73328,73327,73327,73326,73326,73325,73325,73324,73324,73323,73323,73322,73322,73321,73321,73320,73320,73319,73319,73318,73318,73317,73317,73316,73316,73315,73315,73314,73314,73313,73313,73312,73312,73484,73484,73311,73311,73310,73310,73309,73309,73308,73308,73307,73307,73306,73306,73512,73512,73305,73305,73304,73304,73303,73303,73302,73302,73301,73301,73300,73300,73299,73299,73499,73499,73298,73298,73297,73297,73296,73296,73295,73295,73294,73294,73293,73293,73292,73292,73291,73291,73290,73290,73289,73289,73288,73288,73287,73287,73286,73286,73285,73285,73284,73284,73283,73283,73282,73282,73281,73281,73280,73280,73279,73279,73278,73278,73277,73277,73276,73276,73275,73275,73274,73274,73273,73273,73272,73272,73498,73498,73483,73483,73271,73271,73270,73270,73269,73269,73268,73268,73267,73267,73266,73266,73265,73265,73264,73264,73263,73263,73262,73262,73482,73482,73261,73261,73260,73260,73259,73259,73258,73258,73257,73257,73256,73256,73255,73255,73254,73254,73253,73253,73481,73481,73480,73480,73252,73252,73251,73251,73250,73250,73249,73249,73248,73248,73247,73247,73246,73246,73245,73245,73244,73244,73243,73243,73242,73242,73519,73519,73497,73497,73241,73241,59105,73603,73616,73616,73615,73615,73614,73614,73613,73613,73612,73612,73611,73611,73610,73610,73609,73609,73608,73608,73617,73617,73607,73607,73606,73606,73605,73605,73604,73604,73603,73618,73630,73630,73629,73629,73628,73628,73627,73627,73626,73626,73625,73625,73624,73624,73623,73623,73622,73622,73621,73621,73620,73620,73619,73619,73618,73631,73646,73646,73645,73645,73644,73644,73643,73643,73642,73642,73641,73641,73640,73640,73639,73639,73638,73638,73637,73637,73636,73636,73635,73635,73634,73634,73633,73633,73632,73632,73631,73648,73647,73647,73661,73661,73660,73660,73659,73659,73658,73658,73657,73657,73656,73656,73655,73655,73654,73654,73653,73653,73652,73652,73651,73651,73650,73650,73649,73649,73648,73663,73662,73662,73671,73671,73670,73670,73669,73669,73668,73668,73667,73667,73666,73666,73665,73665,73664,73664,73663,73673,73672,73672,73678,73678,73677,73677,73676,73676,73675,73675,73674,73674,73673,73680,73679,73679,73689,73689,73688,73688,73687,73687,73686,73686,73685,73685,73684,73684,73683,73683,73682,73682,73681,73681,73680,73691,73690,73690,73739,73739,73738,73738,73737,73737,73748,73748,73751,73751,73747,73747,73736,73736,73735,73735,73734,73734,73733,73733,73732,73732,73731,73731,73730,73730,73729,73729,73728,73728,73727,73727,73726,73726,73725,73725,73724,73724,73723,73723,73746,73746,73750,73750,73722,73722,73721,73721,73720,73720,73719,73719,73718,73718,73717,73717,73716,73716,73715,73715,73714,73714,73713,73713,73712,73712,73711,73711,73710,73710,73745,73745,73749,73749,73743,73743,73709,73709,73708,73708,73707,73707,73706,73706,73705,73705,73742,73742,73752,73752,73741,73741,73704,73704,73703,73703,73702,73702,73744,73744,73740,73740,73701,73701,73700,73700,73699,73699,73698,73698,73697,73697,73696,73696,73695,73695,73694,73694,73693,73693,73692,73692,73691,69672,69673,69673,69674,69674,69675,69675,69676,69676,69834,69834,69677,69677,69678,69678,69679,69679,69680,69680,69681,69681,69682,69682,73839,73839,73838,73838,73837,73837,73836,73836,73849,73849,73835,73835,73834,73834,73833,73833,73832,73832,73831,73831,73830,73830,73829,73829,73828,73828,73827,73827,73826,73826,73825,73825,73824,73824,73823,73823,73846,73846,73822,73822,73821,73821,73820,73820,73819,73819,73818,73818,73817,73817,73816,73816,73815,73815,73814,73814,73852,73852,73844,73844,73813,73813,73812,73812,73811,73811,73810,73810,73809,73809,73808,73808,73807,73807,73806,73806,73805,73805,73804,73804,73803,73803,73802,73802,73801,73801,73800,73800,73848,73848,73843,73843,73799,73799,73798,73798,73797,73797,73796,73796,73795,73795,73794,73794,73842,73842,73793,73793,73792,73792,73791,73791,73790,73790,73789,73789,73788,73788,73787,73787,73786,73786,73785,73785,73784,73784,73853,73853,73851,73851,73783,73783,73782,73782,73781,73781,73780,73780,73779,73779,73778,73778,73777,73777,73776,73776,73775,73775,73847,73847,73850,73850,73841,73841,73774,73774,73773,73773,73772,73772,73845,73845,73771,73771,73770,73770,73769,73769,73768,73768,73767,73767,73766,73766,73765,73765,73764,73764,73763,73763,73762,73762,73761,73761,73760,73760,73759,73759,73758,73758,73840,73840,73757,73757,73756,73756,73755,73755,73754,73754,73753,73753,69672,73855,73854,73854,73873,73873,73872,73872,73871,73871,73870,73870,73869,73869,73868,73868,73867,73867,73866,73866,73865,73865,73864,73864,73863,73863,73862,73862,73861,73861,73860,73860,73859,73859,73858,73858,73857,73857,73874,73874,73856,73856,73855,73875,73887,73887,73886,73886,73885,73885,73884,73884,73883,73883,73882,73882,73881,73881,73880,73880,73879,73879,73878,73878,73877,73877,73876,73876,73875,73889,73888,73888,73898,73898,73897,73897,73896,73896,73895,73895,73894,73894,73893,73893,73892,73892,73891,73891,73890,73890,73889,73900,73899,73899,73912,73912,73911,73911,73910,73910,73909,73909,73908,73908,73907,73907,73906,73906,73905,73905,73904,73904,73903,73903,73902,73902,73901,73901,73900,73914,73913,73913,73920,73920,73919,73919,73918,73918,73917,73917,73916,73916,73915,73915,73914,73922,73921,73921,73929,73929,73928,73928,73927,73927,73926,73926,73925,73925,73924,73924,73923,73923,73922,73931,73930,73930,73938,73938,73937,73937,73936,73936,73935,73935,73934,73934,73933,73933,73932,73932,73931,73940,73939,73939,73948,73948,73947,73947,73946,73946,73945,73945,73944,73944,73943,73943,73942,73942,73941,73941,73940,73950,73949,73949,73955,73955,73954,73954,73953,73953,73952,73952,73951,73951,73950,73957,73956,73956,73963,73963,73962,73962,73961,73961,73960,73960,73959,73959,73958,73958,73957,59964,59965,59965,59966,59966,59967,59967,59968,59968,59969,59969,60152,60152,60181,60181,60111,60111,59970,59970,59971,59971,59972,59972,60153,60153,60154,60154,60112,60112,59973,59973,59974,59974,74140,74140,74139,74139,74138,74138,74137,74137,74136,74136,74135,74135,74134,74134,74133,74133,74132,74132,74131,74131,74173,74173,74178,74178,74130,74130,74129,74129,74128,74128,74127,74127,74126,74126,74125,74125,74161,74161,74124,74124,74123,74123,74122,74122,74121,74121,74120,74120,74119,74119,74118,74118,74117,74117,74116,74116,74115,74115,74114,74114,74113,74113,74112,74112,74111,74111,74110,74110,74109,74109,74160,74160,74108,74108,74107,74107,74106,74106,74184,74184,74189,74189,74193,74193,74159,74159,74105,74105,74104,74104,74103,74103,74102,74102,74101,74101,74158,74158,74100,74100,74099,74099,74098,74098,74097,74097,74096,74096,74095,74095,74094,74094,74093,74093,74092,74092,74091,74091,74168,74168,74172,74172,74090,74090,74089,74089,74088,74088,74087,74087,74086,74086,74157,74157,74085,74085,74084,74084,74083,74083,74082,74082,74081,74081,74080,74080,74079,74079,74167,74167,74177,74177,74188,74188,74182,74182,74166,74166,74078,74078,74077,74077,74076,74076,74156,74156,74075,74075,74074,74074,74073,74073,74072,74072,74071,74071,74070,74070,74069,74069,74068,74068,74155,74155,74171,74171,74176,74176,74067,74067,74066,74066,74065,74065,74064,74064,74063,74063,74062,74062,74061,74061,74154,74154,74060,74060,74059,74059,74058,74058,74181,74181,74175,74175,74153,74153,74057,74057,74056,74056,74055,74055,74054,74054,74053,74053,74052,74052,74051,74051,74050,74050,74049,74049,74048,74048,74047,74047,74046,74046,74045,74045,74044,74044,74043,74043,74042,74042,74165,74165,74041,74041,74040,74040,74039,74039,74038,74038,74037,74037,74152,74152,74036,74036,74035,74035,74034,74034,74033,74033,74032,74032,74031,74031,74030,74030,74164,74164,74163,74163,74029,74029,74028,74028,74027,74027,74026,74026,74025,74025,74174,74174,74151,74151,74024,74024,74023,74023,74022,74022,74021,74021,74020,74020,74019,74019,74018,74018,74017,74017,74150,74150,74149,74149,74016,74016,74015,74015,74014,74014,74162,74162,74013,74013,74012,74012,74011,74011,74148,74148,74010,74010,74009,74009,74008,74008,74147,74147,74007,74007,74006,74006,74005,74005,74146,74146,74004,74004,74003,74003,74002,74002,74001,74001,74000,74000,73999,73999,74170,74170,74169,74169,74145,74145,59852,59852,59853,59853,59854,59854,59855,59855,60094,60094,59856,59856,59857,59857,59858,59858,60095,60095,59859,59859,59860,59860,59861,59861,59862,59862,59863,59863,59864,59864,59865,59865,60096,60096,60178,60178,59866,59866,59867,59867,59868,59868,59869,59869,59870,59870,59871,59871,59872,59872,59873,59873,59874,59874,59875,59875,59876,59876,59877,59877,59878,59878,59879,59879,59880,59880,59881,59881,59882,59882,73998,73998,73997,73997,73996,73996,73995,73995,73994,73994,73993,73993,73992,73992,73991,73991,73990,73990,74144,74144,73989,73989,73988,73988,73987,73987,73986,73986,73985,73985,73984,73984,73983,73983,73982,73982,74143,74143,73981,73981,73980,73980,73979,73979,73978,73978,73977,73977,73976,73976,73975,73975,73974,73974,74142,74142,73973,73973,73972,73972,73971,73971,73970,73970,73969,73969,73968,73968,73967,73967,73966,73966,74141,74141,73965,73965,73964,73964,59964,59832,59833,59833,59834,59834,59835,59835,59836,59836,59837,59837,59838,59838,59839,59839,59840,59840,60093,60093,59841,59841,59842,59842,59843,59843,59844,59844,59845,59845,59846,59846,59847,59847,59848,59848,59849,59849,59850,59850,59851,59851,59852,59852,74145,74145,74169,74169,74170,74170,73999,73999,74000,74000,74001,74001,74002,74002,74003,74003,74004,74004,74146,74146,74005,74005,74006,74006,74007,74007,74147,74147,74008,74008,74009,74009,74010,74010,74148,74148,74011,74011,74012,74012,74013,74013,74162,74162,74014,74014,74015,74015,74016,74016,74149,74149,74150,74150,74017,74017,74018,74018,74019,74019,74020,74020,74021,74021,74022,74022,74023,74023,74024,74024,74151,74151,74174,74174,74025,74025,74026,74026,74027,74027,74028,74028,74029,74029,74163,74163,74164,74164,74030,74030,74031,74031,74032,74032,74033,74033,74319,74319,74331,74331,74330,74330,74318,74318,74317,74317,74316,74316,74315,74315,74314,74314,74313,74313,74312,74312,74311,74311,74310,74310,74309,74309,74308,74308,74307,74307,74306,74306,74305,74305,74304,74304,74303,74303,74302,74302,74329,74329,74301,74301,74300,74300,74299,74299,74298,74298,74297,74297,74296,74296,74295,74295,74294,74294,74328,74328,74293,74293,74292,74292,74291,74291,74290,74290,74289,74289,74327,74327,74288,74288,74287,74287,74286,74286,74326,74326,74285,74285,74284,74284,74283,74283,74325,74325,74282,74282,74281,74281,74280,74280,74279,74279,74278,74278,74277,74277,74324,74324,74276,74276,74275,74275,74274,74274,74273,74273,74272,74272,74271,74271,74270,74270,74269,74269,74337,74337,74344,74344,74268,74268,74267,74267,74266,74266,74265,74265,74264,74264,74263,74263,74262,74262,74261,74261,74260,74260,74259,74259,74258,74258,74323,74323,74257,74257,74256,74256,74255,74255,74336,74336,74254,74254,74253,74253,74252,74252,74251,74251,74250,74250,74249,74249,74248,74248,74247,74247,74322,74322,74246,74246,74245,74245,74244,74244,74243,74243,74242,74242,74241,74241,74240,74240,74239,74239,74238,74238,74237,74237,74236,74236,74235,74235,74234,74234,74233,74233,74232,74232,74231,74231,74335,74335,74340,74340,74345,74345,74230,74230,74229,74229,74228,74228,74343,74343,74339,74339,74227,74227,74226,74226,74225,74225,74224,74224,74223,74223,74334,74334,74222,74222,74221,74221,74220,74220,74219,74219,74218,74218,74333,74333,74217,74217,74216,74216,74215,74215,74214,74214,74213,74213,74212,74212,74211,74211,74210,74210,74321,74321,74320,74320,74209,74209,74208,74208,74207,74207,74206,74206,74205,74205,74204,74204,74332,74332,74338,74338,74342,74342,74341,74341,74203,74203,59832,59826,60091,60091,59827,59827,59828,59828,59829,59829,60092,60092,59830,59830,59831,59831,59832,59832,74203,74203,74341,74341,74342,74342,74338,74338,74332,74332,74204,74204,74205,74205,74206,74206,74207,74207,74208,74208,74209,74209,74320,74320,74321,74321,74210,74210,74211,74211,74212,74212,74213,74213,74214,74214,74215,74215,74216,74216,74217,74217,74333,74333,74218,74218,74219,74219,74220,74220,74221,74221,74222,74222,74334,74334,74223,74223,74224,74224,74225,74225,74226,74226,74227,74227,74339,74339,74343,74343,74228,74228,74229,74229,74230,74230,74345,74345,74340,74340,74335,74335,74231,74231,74232,74232,74233,74233,74234,74234,74235,74235,74236,74236,74398,74398,74397,74397,74396,74396,74395,74395,74394,74394,74393,74393,74392,74392,74391,74391,69454,69454,69495,69495,69511,69511,69526,69526,69455,69455,69456,69456,69457,69457,69458,69458,69459,69459,69460,69460,69461,69461,69496,69496,69462,69462,69463,69463,69464,69464,69465,69465,69466,69466,69522,69522,69467,69467,69468,69468,69469,69469,69470,69470,69471,69471,69472,69472,69473,69473,69474,69474,69475,69475,69292,69292,69293,69293,74390,74390,74389,74389,74388,74388,74387,74387,74386,74386,74385,74385,74403,74403,74384,74384,74383,74383,74382,74382,74381,74381,74380,74380,74379,74379,74402,74402,74378,74378,74377,74377,74376,74376,74375,74375,74374,74374,74401,74401,74400,74400,74373,74373,74372,74372,74371,74371,74370,74370,74369,74369,74368,74368,74367,74367,74366,74366,74365,74365,74364,74364,74363,74363,74362,74362,74361,74361,74360,74360,74359,74359,74404,74404,74405,74405,74358,74358,74357,74357,74356,74356,74355,74355,74354,74354,74353,74353,74352,74352,74351,74351,74350,74350,74349,74349,74348,74348,74399,74399,74347,74347,59826,59789,59790,59790,59791,59791,59792,59792,59793,59793,59794,59794,59795,59795,59796,59796,59797,59797,60090,60090,60143,60143,59798,59798,59799,59799,59800,59800,59801,59801,59802,59802,60166,60166,60177,60177,59803,59803,59804,59804,59805,59805,59806,59806,59807,59807,59808,59808,59809,59809,59810,59810,59811,59811,59812,59812,59813,59813,59814,59814,59815,59815,59816,59816,59817,59817,59818,59818,60144,60144,59819,59819,59820,59820,59821,59821,59822,59822,59823,59823,60195,60195,60189,60189,60145,60145,59824,59824,59825,59825,59826,59826,74347,74347,74399,74399,74348,74348,74349,74349,74350,74350,74351,74351,74352,74352,74353,74353,74354,74354,74355,74355,74356,74356,74357,74357,74358,74358,74405,74405,74404,74404,74359,74359,74360,74360,74361,74361,74362,74362,74363,74363,74364,74364,74365,74365,74366,74366,74367,74367,74368,74368,74369,74369,74370,74370,74371,74371,74372,74372,74373,74373,74400,74400,74401,74401,74374,74374,74375,74375,74376,74376,74377,74377,74378,74378,74402,74402,74379,74379,74380,74380,74381,74381,74382,74382,74383,74383,74384,74384,74403,74403,74385,74385,74386,74386,74387,74387,74388,74388,74389,74389,74390,74390,69293,69293,69294,69294,69295,69295,69296,69296,69297,69297,69298,69298,69299,69299,69300,69300,69301,69301,69476,69476,69302,69302,69303,69303,69304,69304,69305,69305,69306,69306,69307,69307,69308,69308,69512,69512,69523,69523,69528,69528,69309,69309,69310,69310,69311,69311,69477,69477,69524,69524,69312,69312,69313,69313,69314,69314,69315,69315,69316,69316,69497,69497,69513,69513,69517,69517,69317,69317,69318,69318,69319,69319,69320,69320,69321,69321,69322,69322,69323,69323,69478,69478,69324,69324,69325,69325,69326,69326,69498,69498,69530,69530,69529,69529,69327,69327,69328,69328,69329,69329,69330,69330,69331,69331,69499,69499,69518,69518,69514,69514,69332,69332,69333,69333,69334,69334,69335,69335,69336,69336,69337,69337,69338,69338,69339,69339,69340,69340,69341,69341,69342,69342,69343,69343,69344,69344,69345,69345,69346,69346,69347,69347,69348,69348,69349,69349,69500,69500,69479,69479,69350,69350,69351,69351,69352,69352,69353,69353,69354,69354,69480,69480,69501,69501,69355,69355,69356,69356,69604,69604,69605,69605,69606,69606,69607,69607,69608,69608,69609,69609,69610,69610,69827,69827,69611,69611,69612,69612,69613,69613,69828,69828,69845,69845,69614,69614,69615,69615,69616,69616,69617,69617,69618,69618,69619,69619,69829,69829,69620,69620,69621,69621,69622,69622,69830,69830,69860,69860,69831,69831,69623,69623,69624,69624,69625,69625,69846,69846,69870,69870,69847,69847,69626,69626,69627,69627,69628,69628,69629,69629,69630,69630,69631,69631,69632,69632,69633,69633,69634,69634,69635,69635,74434,74434,74433,74433,74432,74432,74431,74431,74430,74430,74435,74435,74429,74429,69949,69949,69937,69937,69938,69938,74428,74428,74427,74427,74426,74426,74425,74425,74424,74424,74423,74423,74422,74422,74421,74421,74420,74420,74419,74419,74418,74418,74417,74417,74416,74416,74415,74415,74414,74414,74413,74413,74412,74412,74411,74411,74410,74410,74409,74409,74408,74408,74407,74407,74436,74436,74438,74438,74440,74440,74442,74442,74439,74439,74437,74437,74406,74406,69215,69215,69216,69216,69217,69217,69218,69218,69219,69219,69220,69220,69221,69221,69222,69222,69223,69223,60498,60498,60499,60499,60561,60561,60570,60570,60562,60562,60500,60500,60501,60501,60502,60502,60568,60568,60572,60572,60573,60573,60571,60571,60563,60563,60503,60503,60504,60504,60403,60403,60404,60404,60464,60464,60467,60467,60475,60475,60480,60480,60481,60481,60476,60476,60456,60456,60405,60405,60406,60406,60407,60407,60408,60408,60409,60409,60410,60410,60411,60411,60412,60412,60413,60413,60414,60414,60415,60415,60416,60416,60468,60468,60465,60465,60417,60417,60418,60418,60419,60419,60420,60420,60421,60421,60422,60422,59789,74460,74459,74459,74467,74467,74466,74466,74465,74465,74464,74464,74463,74463,74462,74462,74461,74461,74460,74469,74468,74468,74734,74734,74721,74721,74720,74720,74719,74719,74718,74718,74717,74717,74716,74716,74715,74715,74714,74714,74733,74733,74765,74765,74764,74764,74756,74756,74713,74713,74712,74712,74711,74711,74710,74710,74709,74709,74749,74749,74767,74767,74732,74732,74708,74708,74707,74707,74706,74706,74705,74705,74704,74704,74703,74703,74702,74702,74701,74701,74700,74700,74699,74699,74698,74698,74770,74770,74766,74766,74697,74697,74696,74696,74695,74695,74694,74694,74693,74693,74692,74692,74691,74691,74731,74731,74755,74755,74730,74730,74690,74690,74689,74689,74688,74688,74748,74748,74687,74687,74686,74686,74685,74685,74684,74684,74683,74683,74682,74682,74681,74681,74680,74680,74679,74679,74678,74678,74747,74747,74763,74763,74729,74729,74677,74677,74676,74676,74675,74675,74674,74674,74673,74673,74672,74672,74671,74671,74670,74670,74762,74762,74669,74669,74668,74668,74667,74667,74666,74666,74665,74665,74746,74746,74664,74664,74663,74663,74662,74662,74661,74661,74660,74660,74659,74659,74658,74658,74657,74657,74656,74656,74745,74745,74728,74728,74655,74655,74654,74654,74653,74653,74652,74652,74651,74651,74650,74650,74744,74744,74754,74754,74649,74649,74648,74648,74647,74647,74646,74646,74645,74645,74743,74743,74644,74644,74643,74643,74642,74642,74641,74641,74640,74640,74742,74742,74639,74639,74638,74638,74637,74637,74636,74636,74635,74635,74634,74634,74633,74633,74632,74632,74631,74631,74630,74630,74629,74629,74628,74628,74627,74627,74741,74741,74626,74626,74625,74625,74624,74624,74623,74623,74622,74622,74740,74740,74761,74761,74621,74621,74620,74620,74619,74619,74618,74618,74617,74617,74616,74616,74615,74615,74614,74614,74613,74613,74612,74612,74611,74611,74610,74610,74609,74609,74608,74608,74607,74607,74606,74606,74605,74605,74727,74727,74760,74760,74759,74759,74604,74604,74603,74603,74602,74602,74601,74601,74600,74600,74599,74599,74598,74598,74597,74597,74596,74596,74595,74595,74594,74594,74593,74593,74592,74592,74591,74591,74590,74590,74589,74589,74588,74588,74587,74587,74739,74739,74586,74586,74585,74585,74584,74584,74583,74583,74582,74582,74581,74581,74580,74580,74579,74579,74578,74578,74577,74577,74576,74576,74575,74575,74574,74574,74726,74726,74753,74753,74758,74758,74573,74573,74572,74572,74571,74571,74570,74570,74569,74569,74568,74568,74567,74567,74752,74752,74769,74769,74771,74771,74738,74738,74566,74566,74565,74565,74564,74564,74563,74563,74562,74562,74737,74737,74561,74561,74560,74560,74559,74559,74558,74558,74557,74557,74556,74556,74555,74555,74554,74554,74553,74553,74552,74552,74551,74551,74550,74550,74549,74549,74548,74548,74547,74547,74546,74546,74545,74545,74544,74544,74543,74543,74542,74542,74541,74541,74540,74540,74539,74539,74538,74538,74725,74725,74537,74537,74536,74536,74535,74535,74736,74736,74534,74534,74533,74533,74532,74532,74724,74724,74531,74531,74530,74530,74529,74529,74528,74528,74527,74527,74526,74526,74525,74525,74524,74524,74523,74523,74522,74522,74521,74521,74520,74520,74519,74519,74518,74518,74517,74517,74757,74757,74751,74751,74516,74516,74515,74515,74514,74514,74513,74513,74512,74512,74511,74511,74510,74510,74509,74509,74508,74508,74507,74507,74506,74506,74505,74505,74504,74504,74503,74503,74502,74502,74723,74723,74501,74501,74500,74500,74499,74499,74498,74498,74497,74497,74496,74496,74495,74495,74494,74494,74493,74493,74492,74492,74491,74491,74490,74490,74489,74489,74488,74488,74487,74487,74486,74486,74485,74485,74484,74484,74483,74483,74482,74482,74768,74768,74750,74750,74735,74735,74481,74481,74480,74480,74479,74479,74478,74478,74477,74477,74476,74476,74475,74475,74474,74474,74473,74473,74722,74722,74472,74472,74471,74471,74470,74470,74469,74773,74772,74772,75183,75183,75182,75182,75181,75181,75180,75180,75179,75179,75178,75178,75214,75214,75237,75237,75177,75177,75176,75176,75175,75175,75174,75174,75173,75173,75172,75172,75171,75171,75170,75170,75273,75273,75267,75267,75169,75169,75168,75168,75167,75167,75166,75166,75165,75165,75164,75164,75163,75163,75162,75162,75161,75161,75160,75160,75159,75159,75158,75158,75257,75257,75213,75213,75157,75157,75156,75156,75155,75155,75154,75154,75153,75153,75152,75152,75151,75151,75212,75212,75150,75150,75149,75149,75148,75148,75249,75249,75211,75211,75147,75147,75146,75146,75145,75145,75144,75144,75143,75143,75142,75142,75141,75141,75140,75140,75139,75139,75138,75138,75137,75137,75136,75136,75135,75135,75134,75134,75210,75210,75133,75133,75132,75132,75131,75131,75130,75130,75129,75129,75128,75128,75236,75236,75248,75248,75209,75209,75127,75127,75126,75126,75125,75125,75124,75124,75123,75123,75122,75122,75121,75121,75120,75120,75119,75119,75118,75118,75117,75117,75116,75116,75235,75235,75264,75264,75263,75263,75256,75256,75247,75247,75115,75115,75114,75114,75113,75113,75112,75112,75111,75111,75110,75110,75109,75109,75108,75108,75107,75107,75290,75290,75288,75288,75208,75208,75106,75106,75105,75105,75104,75104,75207,75207,75103,75103,75102,75102,75101,75101,75100,75100,75099,75099,75098,75098,75234,75234,75097,75097,75096,75096,75095,75095,75094,75094,75093,75093,75233,75233,75206,75206,75092,75092,75091,75091,75090,75090,75089,75089,75088,75088,75087,75087,75086,75086,75085,75085,75084,75084,75083,75083,75255,75255,75246,75246,75082,75082,75081,75081,75080,75080,75079,75079,75078,75078,75077,75077,75076,75076,75075,75075,75074,75074,75073,75073,75072,75072,75232,75232,75205,75205,75071,75071,75070,75070,75069,75069,75068,75068,75067,75067,75066,75066,75065,75065,75064,75064,75063,75063,75062,75062,75061,75061,75060,75060,75059,75059,75287,75287,75282,75282,75277,75277,75272,75272,75262,75262,75058,75058,75057,75057,75056,75056,75055,75055,75054,75054,75053,75053,75052,75052,75051,75051,75050,75050,75049,75049,75048,75048,75047,75047,75046,75046,75045,75045,75044,75044,75254,75254,75043,75043,75042,75042,75041,75041,75040,75040,75039,75039,75038,75038,75037,75037,75036,75036,75035,75035,75034,75034,75033,75033,75032,75032,75204,75204,75031,75031,75030,75030,75029,75029,75028,75028,75027,75027,75026,75026,75025,75025,75024,75024,75023,75023,75022,75022,75021,75021,75020,75020,75203,75203,75019,75019,75018,75018,75017,75017,75231,75231,75016,75016,75015,75015,75014,75014,75013,75013,75012,75012,75011,75011,75010,75010,75009,75009,75008,75008,75007,75007,75006,75006,75005,75005,75004,75004,75003,75003,75002,75002,75001,75001,75000,75000,74999,74999,74998,74998,74997,74997,75202,75202,74996,74996,74995,74995,74994,74994,74993,74993,74992,74992,74991,74991,74990,74990,74989,74989,75230,75230,75201,75201,74988,74988,74987,74987,74986,74986,74985,74985,74984,74984,74983,74983,74982,74982,74981,74981,74980,74980,74979,74979,74978,74978,75200,75200,74977,74977,74976,74976,74975,74975,74974,74974,74973,74973,74972,74972,74971,74971,74970,74970,74969,74969,74968,74968,74967,74967,74966,74966,74965,74965,74964,74964,74963,74963,74962,74962,74961,74961,74960,74960,74959,74959,75245,75245,74958,74958,74957,74957,74956,74956,74955,74955,74954,74954,75229,75229,75244,75244,74953,74953,74952,74952,74951,74951,74950,74950,74949,74949,75199,75199,74948,74948,74947,74947,74946,74946,74945,74945,74944,74944,74943,74943,74942,74942,74941,74941,74940,74940,74939,74939,75228,75228,74938,74938,74937,74937,74936,74936,74935,74935,74934,74934,74933,74933,74932,74932,74931,74931,74930,74930,74929,74929,74928,74928,74927,74927,74926,74926,74925,74925,74924,74924,74923,74923,74922,74922,74921,74921,74920,74920,74919,74919,74918,74918,74917,74917,74916,74916,74915,74915,74914,74914,74913,74913,75280,75280,75266,75266,75243,75243,75227,75227,74912,74912,74911,74911,74910,74910,74909,74909,74908,74908,74907,74907,74906,74906,74905,74905,74904,74904,75226,75226,75242,75242,75261,75261,74903,74903,74902,74902,74901,74901,74900,74900,74899,74899,74898,74898,74897,74897,74896,74896,75198,75198,75241,75241,75240,75240,74895,74895,74894,74894,74893,74893,74892,74892,74891,74891,74890,74890,74889,74889,74888,74888,74887,74887,74886,74886,75197,75197,74885,74885,74884,74884,74883,74883,74882,74882,74881,74881,74880,74880,74879,74879,75196,75196,75239,75239,75279,75279,75275,75275,75269,75269,75225,75225,74878,74878,74877,74877,74876,74876,74875,74875,74874,74874,74873,74873,74872,74872,74871,74871,74870,74870,74869,74869,74868,74868,74867,74867,74866,74866,74865,74865,74864,74864,74863,74863,74862,74862,74861,74861,74860,74860,74859,74859,75195,75195,75224,75224,74858,74858,74857,74857,74856,74856,74855,74855,74854,74854,74853,74853,74852,74852,74851,74851,74850,74850,74849,74849,74848,74848,74847,74847,75223,75223,75194,75194,74846,74846,74845,74845,74844,74844,75222,75222,75253,75253,75193,75193,74843,74843,74842,74842,74841,74841,74840,74840,74839,74839,74838,74838,74837,74837,74836,74836,74835,74835,74834,74834,74833,74833,74832,74832,75192,75192,74831,74831,74830,74830,74829,74829,75191,75191,74828,74828,74827,74827,74826,74826,74825,74825,74824,74824,74823,74823,74822,74822,74821,74821,74820,74820,74819,74819,74818,74818,74817,74817,74816,74816,74815,74815,74814,74814,74813,74813,74812,74812,75190,75190,74811,74811,74810,74810,74809,74809,75221,75221,75260,75260,75265,75265,75259,75259,75189,75189,74808,74808,74807,74807,74806,74806,74805,74805,74804,74804,74803,74803,74802,74802,75188,75188,74801,74801,74800,74800,74799,74799,75220,75220,75258,75258,75252,75252,75238,75238,75187,75187,74798,74798,74797,74797,74796,74796,75219,75219,75251,75251,74795,74795,74794,74794,74793,74793,74792,74792,74791,74791,75218,75218,75186,75186,74790,74790,74789,74789,74788,74788,74787,74787,74786,74786,75185,75185,74785,74785,74784,74784,74783,74783,74782,74782,74781,74781,74780,74780,74779,74779,74778,74778,75217,75217,75250,75250,75184,75184,74777,74777,74776,74776,74775,74775,75216,75216,75215,75215,74774,74774,74773,75294,75306,75306,75305,75305,75304,75304,75303,75303,75302,75302,75301,75301,75300,75300,75299,75299,75298,75298,75297,75297,75296,75296,75295,75295,75294,75308,75307,75307,75312,75312,75311,75311,75310,75310,75309,75309,75308,75314,75313,75313,75323,75323,75322,75322,75321,75321,75320,75320,75319,75319,75318,75318,75317,75317,75316,75316,75315,75315,75314,75324,75358,75358,75357,75357,75356,75356,75355,75355,75354,75354,75353,75353,75352,75352,75351,75351,75350,75350,75349,75349,75348,75348,75347,75347,75346,75346,75345,75345,75344,75344,75343,75343,75360,75360,75363,75363,75362,75362,75359,75359,75342,75342,75341,75341,75340,75340,75339,75339,75338,75338,75337,75337,75336,75336,75335,75335,75334,75334,75333,75333,75361,75361,75332,75332,75331,75331,75330,75330,75329,75329,75328,75328,75327,75327,75326,75326,75325,75325,75324,75365,75364,75364,75376,75376,75375,75375,75374,75374,75373,75373,75372,75372,75371,75371,75370,75370,75369,75369,75368,75368,75367,75367,75366,75366,75365,75378,75377,75377,75387,75387,75386,75386,75385,75385,75384,75384,75383,75383,75382,75382,75381,75381,75380,75380,75388,75388,75379,75379,75378,75390,75389,75389,75395,75395,75394,75394,75393,75393,75392,75392,75391,75391,75390,75396,75422,75422,75421,75421,75420,75420,75419,75419,75418,75418,75417,75417,75416,75416,75415,75415,75414,75414,75413,75413,75412,75412,75411,75411,75410,75410,75409,75409,75408,75408,75407,75407,75406,75406,75405,75405,75404,75404,75403,75403,75402,75402,75401,75401,75400,75400,75399,75399,75398,75398,75397,75397,75396,75424,75423,75423,75435,75435,75434,75434,75433,75433,75432,75432,75431,75431,75430,75430,75429,75429,75428,75428,75427,75427,75426,75426,75425,75425,75424,75437,75436,75436,75442,75442,75441,75441,75440,75440,75439,75439,75438,75438,75437,75444,75443,75443,75455,75455,75454,75454,75453,75453,75452,75452,75451,75451,75450,75450,75449,75449,75448,75448,75447,75447,75446,75446,75445,75445,75444,75457,75456,75456,75472,75472,75471,75471,75470,75470,75469,75469,75473,75473,75468,75468,75467,75467,75466,75466,75465,75465,75464,75464,75463,75463,75462,75462,75461,75461,75460,75460,75459,75459,75458,75458,75457,75475,75474,75474,75496,75496,75495,75495,75494,75494,75493,75493,75492,75492,75491,75491,75490,75490,75489,75489,75488,75488,75497,75497,75487,75487,75486,75486,75485,75485,75484,75484,75483,75483,75482,75482,75481,75481,75480,75480,75479,75479,75478,75478,75477,75477,75476,75476,75475,75499,75498,75498,75512,75512,75511,75511,75510,75510,75509,75509,75508,75508,75507,75507,75506,75506,75505,75505,75504,75504,75503,75503,75502,75502,75501,75501,75500,75500,75499,75514,75513,75513,75560,75560,75559,75559,75558,75558,75557,75557,75556,75556,75555,75555,75554,75554,75553,75553,75552,75552,75551,75551,75550,75550,75549,75549,75548,75548,75547,75547,75546,75546,75545,75545,75544,75544,75543,75543,75542,75542,75541,75541,75540,75540,75539,75539,75538,75538,75537,75537,75536,75536,75535,75535,75534,75534,75533,75533,75532,75532,75531,75531,75530,75530,75529,75529,75528,75528,75527,75527,75526,75526,75525,75525,75524,75524,75523,75523,75522,75522,75521,75521,75520,75520,75519,75519,75518,75518,75517,75517,75516,75516,75515,75515,75514,75562,75561,75561,75569,75569,75568,75568,75567,75567,75566,75566,75565,75565,75564,75564,75563,75563,75562,75571,75570,75570,75604,75604,75603,75603,75602,75602,75601,75601,75600,75600,75608,75608,75599,75599,75598,75598,75597,75597,75596,75596,75595,75595,75594,75594,75593,75593,75592,75592,75591,75591,75590,75590,75589,75589,75588,75588,75587,75587,75586,75586,75585,75585,75584,75584,75583,75583,75582,75582,75581,75581,75580,75580,75579,75579,75606,75606,75607,75607,75605,75605,75578,75578,75577,75577,75576,75576,75575,75575,75574,75574,75573,75573,75572,75572,75571,75610,75609,75609,75620,75620,75619,75619,75618,75618,75617,75617,75616,75616,75615,75615,75614,75614,75613,75613,75612,75612,75611,75611,75610,75622,75621,75621,75631,75631,75630,75630,75629,75629,75628,75628,75627,75627,75626,75626,75625,75625,75624,75624,75623,75623,75622,75633,75632,75632,75639,75639,75638,75638,75637,75637,75636,75636,75635,75635,75634,75634,75633,74682,74683,74683,74684,74684,74685,74685,74686,74686,74687,74687,74748,74748,74688,74688,74689,74689,74690,74690,74730,74730,74755,74755,74731,74731,74691,74691,74692,74692,74693,74693,74694,74694,74695,74695,74696,74696,74697,74697,74766,74766,74770,74770,74698,74698,74699,74699,74700,74700,74701,74701,74702,74702,74703,74703,74704,74704,74705,74705,74706,74706,74707,74707,74708,74708,74732,74732,74767,74767,74749,74749,74709,74709,74710,74710,74711,74711,74712,74712,74713,74713,74756,74756,74764,74764,74765,74765,74733,74733,74714,74714,74715,74715,74716,74716,74717,74717,74718,74718,74719,74719,74720,74720,74721,74721,74734,74734,74468,74468,74469,74469,75675,75675,75678,75678,75677,75677,75674,75674,75673,75673,75672,75672,75676,75676,75671,75671,75670,75670,75669,75669,75668,75668,75667,75667,75666,75666,75665,75665,75664,75664,75663,75663,75662,75662,75661,75661,75680,75680,75660,75660,75659,75659,75658,75658,75657,75657,75656,75656,75655,75655,75654,75654,75653,75653,75652,75652,75679,75679,75651,75651,75650,75650,75649,75649,75648,75648,75647,75647,75646,75646,75645,75645,75644,75644,75681,75681,75643,75643,75642,75642,75641,75641,75640,75640,74682,75683,75682,75682,75693,75693,75692,75692,75691,75691,75690,75690,75689,75689,75688,75688,75687,75687,75686,75686,75685,75685,75684,75684,75683,75695,75694,75694,75701,75701,75700,75700,75699,75699,75698,75698,75697,75697,75696,75696,75695,75703,75702,75702,75722,75722,75721,75721,75720,75720,75719,75719,75718,75718,75717,75717,75716,75716,75715,75715,75714,75714,75724,75724,75713,75713,75712,75712,75711,75711,75710,75710,75709,75709,75708,75708,75707,75707,75723,75723,75706,75706,75705,75705,75704,75704,75703,75726,75725,75725,75734,75734,75733,75733,75732,75732,75731,75731,75730,75730,75729,75729,75728,75728,75727,75727,75726,75736,75735,75735,75744,75744,75745,75745,75743,75743,75742,75742,75741,75741,75740,75740,75739,75739,75738,75738,75737,75737,75736,75747,75746,75746,75754,75754,75753,75753,75752,75752,75751,75751,75750,75750,75749,75749,75755,75755,75748,75748,75747,75757,75756,75756,75772,75772,75771,75771,75770,75770,75769,75769,75768,75768,75767,75767,75766,75766,75765,75765,75764,75764,75763,75763,75762,75762,75761,75761,75760,75760,75759,75759,75773,75773,75774,75774,75758,75758,75757,75776,75775,75775,75820,75820,75817,75817,75816,75816,75815,75815,75814,75814,75813,75813,75812,75812,75811,75811,75810,75810,75809,75809,75823,75823,75825,75825,75822,75822,75819,75819,75808,75808,75807,75807,75806,75806,75805,75805,75804,75804,75803,75803,75802,75802,75801,75801,75800,75800,75799,75799,75798,75798,75797,75797,75796,75796,75795,75795,75794,75794,75793,75793,75792,75792,75791,75791,75818,75818,75790,75790,75789,75789,75788,75788,75787,75787,75786,75786,75785,75785,75821,75821,75824,75824,75826,75826,75784,75784,75783,75783,75782,75782,75781,75781,75780,75780,75779,75779,75778,75778,75777,75777,75776,75828,75827,75827,75830,75830,75829,75829,75828,75832,75831,75831,75835,75835,75834,75834,75833,75833,75832,75837,75836,75836,75844,75844,75843,75843,75845,75845,75842,75842,75841,75841,75840,75840,75839,75839,75838,75838,75837,75847,75846,75846,75855,75855,75854,75854,75853,75853,75852,75852,75851,75851,75850,75850,75849,75849,75848,75848,75847,75857,75856,75856,75865,75865,75864,75864,75863,75863,75862,75862,75861,75861,75860,75860,75859,75859,75858,75858,75857,75866,75874,75874,75873,75873,75872,75872,75871,75871,75870,75870,75869,75869,75868,75868,75867,75867,75866,75875,75886,75886,75885,75885,75884,75884,75883,75883,75882,75882,75881,75881,75880,75880,75879,75879,75878,75878,75877,75877,75876,75876,75875,75888,75887,75887,75894,75894,75893,75893,75892,75892,75891,75891,75890,75890,75889,75889,75888,75896,75895,75895,75904,75904,75903,75903,75902,75902,75901,75901,75900,75900,75899,75899,75898,75898,75897,75897,75896,75906,75905,75905,75912,75912,75911,75911,75910,75910,75909,75909,75908,75908,75907,75907,75906,75914,75913,75913,75920,75920,75919,75919,75918,75918,75917,75917,75916,75916,75915,75915,75914,75922,75921,75921,75927,75927,75926,75926,75929,75929,75928,75928,75925,75925,75924,75924,75923,75923,75922,75931,75930,75930,75935,75935,75934,75934,75933,75933,75932,75932,75931,75937,75936,75936,75948,75948,75947,75947,75946,75946,75945,75945,75944,75944,75943,75943,75942,75942,75941,75941,75940,75940,75939,75939,75938,75938,75937,75950,75949,75949,75957,75957,75956,75956,75955,75955,75954,75954,75953,75953,75952,75952,75951,75951,75950,75959,75958,75958,75967,75967,75966,75966,75965,75965,75964,75964,75963,75963,75962,75962,75961,75961,75960,75960,75959,75969,75968,75968,75976,75976,75975,75975,75974,75974,75973,75973,75972,75972,75971,75971,75970,75970,75969,75978,75977,75977,75982,75982,75981,75981,75980,75980,75979,75979,75978,75984,75983,75983,75990,75990,75989,75989,75988,75988,75987,75987,75986,75986,75985,75985,75984,75992,75991,75991,75998,75998,75997,75997,75996,75996,75995,75995,75994,75994,75999,75999,75993,75993,75992,76001,76000,76000,76005,76005,76004,76004,76003,76003,76002,76002,76001,76007,76006,76006,76018,76018,76017,76017,76016,76016,76015,76015,76014,76014,76013,76013,76012,76012,76011,76011,76010,76010,76009,76009,76008,76008,76007,76020,76019,76019,76027,76027,76026,76026,76025,76025,76024,76024,76023,76023,76022,76022,76021,76021,76020,76029,76028,76028,76034,76034,76033,76033,76032,76032,76031,76031,76030,76030,76029,76036,76035,76035,76050,76050,76049,76049,76048,76048,76051,76051,76047,76047,76046,76046,76045,76045,76044,76044,76043,76043,76042,76042,76041,76041,76040,76040,76039,76039,76038,76038,76037,76037,76036,76053,76052,76052,76075,76075,76074,76074,76073,76073,76072,76072,76071,76071,76078,76078,76070,76070,76069,76069,76068,76068,76067,76067,76066,76066,76065,76065,76064,76064,76077,76077,76063,76063,76062,76062,76061,76061,76060,76060,76059,76059,76058,76058,76057,76057,76076,76076,76056,76056,76055,76055,76054,76054,76053,76080,76079,76079,76084,76084,76083,76083,76082,76082,76081,76081,76080,76086,76085,76085,76104,76104,76103,76103,76102,76102,76101,76101,76100,76100,76099,76099,76105,76105,76098,76098,76097,76097,76096,76096,76095,76095,76094,76094,76093,76093,76092,76092,76091,76091,76090,76090,76089,76089,76088,76088,76087,76087,76086,76107,76106,76106,76111,76111,76110,76110,76109,76109,76108,76108,76107,76113,76112,76112,76118,76118,76117,76117,76116,76116,76115,76115,76114,76114,76113,76120,76119,76119,76135,76135,76134,76134,76133,76133,76132,76132,76131,76131,76130,76130,76129,76129,76128,76128,76127,76127,76126,76126,76125,76125,76124,76124,76123,76123,76122,76122,76121,76121,76120,76195,76198,76198,76200,76200,76189,76189,76188,76188,76187,76187,76186,76186,76185,76185,76194,76194,76197,76197,76184,76184,76183,76183,76182,76182,76193,76193,76202,76202,76203,76203,76201,76201,76181,76181,76180,76180,76179,76179,76178,76178,76177,76177,76176,76176,76175,76175,76174,76174,76173,76173,76172,76172,76171,76171,76196,76196,76199,76199,76192,76192,76170,76170,76169,76169,76168,76168,76167,76167,76166,76166,76165,76165,76164,76164,76163,76163,76162,76162,76161,76161,76160,76160,76159,76159,76158,76158,76157,76157,76156,76156,76155,76155,76154,76154,76191,76191,76153,76153,76152,76152,76151,76151,76150,76150,76149,76149,76148,76148,76147,76147,76146,76146,76145,76145,76144,76144,76143,76143,76142,76142,76141,76141,76190,76190,76140,76140,76139,76139,76138,76138,76137,76137,76136,76136,76195,47150,47206,47206,47151,47151,47152,47152,47153,47153,47202,47202,47212,47212,47211,47211,47154,47154,47155,47155,47156,47156,47157,47157,47158,47158,47159,47159,47160,47160,47210,47210,47161,47161,47162,47162,47163,47163,47164,47164,47165,47165,47166,47166,76440,76440,76439,76439,76438,76438,76437,76437,76436,76436,76435,76435,76459,76459,76434,76434,76433,76433,76432,76432,76471,76471,76470,76470,76431,76431,76430,76430,76429,76429,76458,76458,76457,76457,76428,76428,76427,76427,76426,76426,76456,76456,76425,76425,76424,76424,76423,76423,76422,76422,76421,76421,76420,76420,76419,76419,76418,76418,76417,76417,76484,76484,76489,76489,76483,76483,76455,76455,76416,76416,76415,76415,76414,76414,76413,76413,76412,76412,76411,76411,76410,76410,76477,76477,76488,76488,76482,76482,76409,76409,76408,76408,76407,76407,76406,76406,76405,76405,76404,76404,76403,76403,76402,76402,76401,76401,76400,76400,76399,76399,76454,76454,76398,76398,76397,76397,76396,76396,76395,76395,76394,76394,76393,76393,76453,76453,76392,76392,76391,76391,76390,76390,76389,76389,76388,76388,76387,76387,76386,76386,76385,76385,76384,76384,76383,76383,76382,76382,76381,76381,76469,76469,76481,76481,76487,76487,76480,76480,76380,76380,76379,76379,76378,76378,76377,76377,76376,76376,76375,76375,76374,76374,76452,76452,76451,76451,76373,76373,76372,76372,76371,76371,76370,76370,76369,76369,76368,76368,76367,76367,76366,76366,76365,76365,76364,76364,76363,76363,76362,76362,76361,76361,76360,76360,76359,76359,76358,76358,76357,76357,76356,76356,76355,76355,76354,76354,76353,76353,76352,76352,76476,76476,76351,76351,76350,76350,76349,76349,76348,76348,76347,76347,76450,76450,76346,76346,76345,76345,76344,76344,76468,76468,76449,76449,76343,76343,76342,76342,76341,76341,76340,76340,76339,76339,76338,76338,76337,76337,76336,76336,76335,76335,76334,76334,76333,76333,76467,76467,76332,76332,76331,76331,76330,76330,76486,76486,76466,76466,76329,76329,76328,76328,76327,76327,76326,76326,76325,76325,76324,76324,76323,76323,76322,76322,76321,76321,76320,76320,76319,76319,76318,76318,76479,76479,76448,76448,76317,76317,76316,76316,76315,76315,76314,76314,76313,76313,76447,76447,76312,76312,76311,76311,76310,76310,76446,76446,76478,76478,76445,76445,76309,76309,76308,76308,76307,76307,76306,76306,76305,76305,76304,76304,76303,76303,76465,76465,76444,76444,76302,76302,76301,76301,76300,76300,76299,76299,76298,76298,76297,76297,76296,76296,76295,76295,76294,76294,76293,76293,76292,76292,76291,76291,76290,76290,76289,76289,76288,76288,76287,76287,76286,76286,76285,76285,76284,76284,76475,76475,76464,76464,76443,76443,76283,76283,76282,76282,76281,76281,76496,76496,76501,76501,76499,76499,76280,76280,76279,76279,76278,76278,76277,76277,76276,76276,76275,76275,76274,76274,76273,76273,76272,76272,76271,76271,76270,76270,76269,76269,76268,76268,76267,76267,76266,76266,76265,76265,76264,76264,76263,76263,76262,76262,76261,76261,76260,76260,76259,76259,76258,76258,76257,76257,76256,76256,76255,76255,76254,76254,76463,76463,76253,76253,76252,76252,76251,76251,76250,76250,76249,76249,76474,76474,76485,76485,76490,76490,76473,76473,76248,76248,76247,76247,76246,76246,76245,76245,76244,76244,76243,76243,76242,76242,76241,76241,76240,76240,76239,76239,76238,76238,73060,73060,73061,73061,73062,73062,73063,73063,73064,73064,73065,73065,73066,73066,73067,73067,73068,73068,73069,73069,73070,73070,73071,73071,73072,73072,73073,73073,73127,73127,73074,73074,73075,73075,73076,73076,73120,73120,73077,73077,73078,73078,73079,73079,73080,73080,73081,73081,73128,73128,73082,73082,73083,73083,73084,73084,73085,73085,73086,73086,73087,73087,73088,73088,73089,73089,73090,73090,73091,73091,73092,73092,72988,72988,72989,72989,72990,72990,72991,72991,72992,72992,72993,72993,72994,72994,72995,72995,72996,72996,72997,72997,72998,72998,72999,72999,73000,73000,73001,73001,73002,73002,73003,73003,73004,73004,73005,73005,73036,73036,73033,73033,73006,73006,73007,73007,76237,76237,76236,76236,76235,76235,76234,76234,76233,76233,76232,76232,76442,76442,76231,76231,76230,76230,76229,76229,76472,76472,76462,76462,76228,76228,76227,76227,76226,76226,76441,76441,76225,76225,76224,76224,76223,76223,76222,76222,76221,76221,76220,76220,76219,76219,76218,76218,76217,76217,76216,76216,76215,76215,76461,76461,76214,76214,76213,76213,76212,76212,76211,76211,76210,76210,76497,76497,76493,76493,76491,76491,76460,76460,76209,76209,76208,76208,76207,76207,76206,76206,76205,76205,76204,76204,47150,76504,76503,76503,76589,76589,76584,76584,69532,69532,69533,69533,69534,69534,69535,69535,69821,69821,69881,69881,69877,69877,69858,69858,69841,69841,69536,69536,69537,69537,69538,69538,69822,69822,69539,69539,69540,69540,69541,69541,69542,69542,69543,69543,69544,69544,69545,69545,69823,69823,69546,69546,69547,69547,69548,69548,69549,69549,69550,69550,69551,69551,69552,69552,69553,69553,69554,69554,69555,69555,69556,69556,69557,69557,69558,69558,69559,69559,69560,69560,69561,69561,69562,69562,69563,69563,69564,69564,69565,69565,69566,69566,69824,69824,69567,69567,69568,69568,69569,69569,69570,69570,69571,69571,69572,69572,69825,69825,69868,69868,69842,69842,69573,69573,69574,69574,69575,69575,69576,69576,69577,69577,69578,69578,69579,69579,69580,69580,69581,69581,69582,69582,69583,69583,69584,69584,69585,69585,69826,69826,69586,69586,69587,69587,69588,69588,69843,69843,69859,69859,69883,69883,69878,69878,69869,69869,69844,69844,69589,69589,69590,69590,69591,69591,69592,69592,69593,69593,69594,69594,69595,69595,69596,69596,69597,69597,69598,69598,69599,69599,69600,69600,69601,69601,69602,69602,69603,69603,69425,69425,69426,69426,69489,69489,69427,69427,69428,69428,69429,69429,69430,69430,69431,69431,69432,69432,69433,69433,69434,69434,69490,69490,69508,69508,69435,69435,69436,69436,69437,69437,69491,69491,69525,69525,69492,69492,69438,69438,69439,69439,69440,69440,69509,69509,69516,69516,69441,69441,69442,69442,69443,69443,69493,69493,69444,69444,69445,69445,69446,69446,69447,69447,69448,69448,69510,69510,69521,69521,69449,69449,69450,69450,69451,69451,69494,69494,69452,69452,69453,69453,69454,69454,74391,74391,74392,74392,74393,74393,74394,74394,74395,74395,74396,74396,74397,74397,74398,74398,74236,74236,74237,74237,74238,74238,74239,74239,74240,74240,74241,74241,74242,74242,74243,74243,74244,74244,74245,74245,74246,74246,74322,74322,74247,74247,74248,74248,74249,74249,74250,74250,74251,74251,74252,74252,74253,74253,74254,74254,74336,74336,74255,74255,74256,74256,74257,74257,74323,74323,74258,74258,74259,74259,74260,74260,74261,74261,74262,74262,74263,74263,74264,74264,74265,74265,74266,74266,74267,74267,74268,74268,74344,74344,74337,74337,74269,74269,74270,74270,74271,74271,74272,74272,76574,76574,76573,76573,76572,76572,76571,76571,76570,76570,76569,76569,76588,76588,76583,76583,76568,76568,76567,76567,76566,76566,76565,76565,76564,76564,76563,76563,76562,76562,76561,76561,76560,76560,76559,76559,76558,76558,76557,76557,76556,76556,76555,76555,76554,76554,76553,76553,76552,76552,76551,76551,76550,76550,76582,76582,76581,76581,76549,76549,76548,76548,76547,76547,76546,76546,76545,76545,76544,76544,76543,76543,76542,76542,76541,76541,76540,76540,76539,76539,76538,76538,76537,76537,76536,76536,76535,76535,76534,76534,76587,76587,76591,76591,76580,76580,76533,76533,76532,76532,76531,76531,76530,76530,76529,76529,76528,76528,76590,76590,76527,76527,76526,76526,76525,76525,76524,76524,76523,76523,76522,76522,76521,76521,76579,76579,76520,76520,76519,76519,76518,76518,76586,76586,76578,76578,76517,76517,76516,76516,76515,76515,76514,76514,76513,76513,76577,76577,76585,76585,76512,76512,76511,76511,76510,76510,76576,76576,76575,76575,76509,76509,76508,76508,76507,76507,76506,76506,76505,76505,76504,59249,76807,76807,76833,76833,76852,76852,76832,76832,76806,76806,76805,76805,76804,76804,76884,76884,76803,76803,76802,76802,76801,76801,76831,76831,76800,76800,76799,76799,76798,76798,76797,76797,76796,76796,76795,76795,76794,76794,76793,76793,76792,76792,76868,76868,76867,76867,76830,76830,76791,76791,76790,76790,76789,76789,76788,76788,76787,76787,76890,76890,76899,76899,76786,76786,76785,76785,76784,76784,76783,76783,76782,76782,76781,76781,76780,76780,76866,76866,76829,76829,76779,76779,76778,76778,76777,76777,76776,76776,76775,76775,76828,76828,76865,76865,76877,76877,76851,76851,76774,76774,76773,76773,76772,76772,76771,76771,76770,76770,76864,76864,76895,76895,76769,76769,76768,76768,76767,76767,76827,76827,76766,76766,76765,76765,76764,76764,76763,76763,76762,76762,76761,76761,76760,76760,76850,76850,76876,76876,76849,76849,76759,76759,76758,76758,76757,76757,76519,76519,76520,76520,76579,76579,76521,76521,76522,76522,76523,76523,76524,76524,76525,76525,76526,76526,76527,76527,76590,76590,76528,76528,76529,76529,76530,76530,76531,76531,76532,76532,76533,76533,76580,76580,76591,76591,76587,76587,76534,76534,76535,76535,76536,76536,76537,76537,76538,76538,76539,76539,76540,76540,76541,76541,76542,76542,76543,76543,76544,76544,76545,76545,76546,76546,76547,76547,76548,76548,76756,76756,76755,76755,76826,76826,76848,76848,76863,76863,76883,76883,76882,76882,76825,76825,76754,76754,76753,76753,76752,76752,76751,76751,76750,76750,76749,76749,76748,76748,76847,76847,76875,76875,76846,76846,76824,76824,76747,76747,76746,76746,76745,76745,76744,76744,76743,76743,76742,76742,76741,76741,76740,76740,76739,76739,76738,76738,76737,76737,76736,76736,76823,76823,76735,76735,76734,76734,76733,76733,76822,76822,76732,76732,76731,76731,76730,76730,76729,76729,76728,76728,76727,76727,76726,76726,76725,76725,76845,76845,76894,76894,76901,76901,76905,76905,76724,76724,76723,76723,76722,76722,76721,76721,76720,76720,76719,76719,76718,76718,76717,76717,76821,76821,76874,76874,76918,76918,76920,76920,76889,76889,76716,76716,76715,76715,76714,76714,76713,76713,76712,76712,76711,76711,76710,76710,76709,76709,76844,76844,76881,76881,76912,76912,76888,76888,76873,76873,76708,76708,76707,76707,76706,76706,76705,76705,76704,76704,76703,76703,76702,76702,76820,76820,76862,76862,76880,76880,76819,76819,76701,76701,76700,76700,76699,76699,76698,76698,76697,76697,76696,76696,76695,76695,76694,76694,76693,76693,76692,76692,76691,76691,76690,76690,76689,76689,76688,76688,76687,76687,76686,76686,76685,76685,76684,76684,76818,76818,76861,76861,76879,76879,76887,76887,76891,76891,76893,76893,76898,76898,76886,76886,76683,76683,76682,76682,76681,76681,76680,76680,76679,76679,76678,76678,76677,76677,76676,76676,76817,76817,76860,76860,76816,76816,76675,76675,76674,76674,76673,76673,76815,76815,76672,76672,76671,76671,76670,76670,76669,76669,76668,76668,76667,76667,76666,76666,76843,76843,76665,76665,76664,76664,76663,76663,76662,76662,76661,76661,76814,76814,76660,76660,76659,76659,76658,76658,76657,76657,76656,76656,76885,76885,76655,76655,76654,76654,76653,76653,76652,76652,76651,76651,76650,76650,76649,76649,76842,76842,76859,76859,76878,76878,76813,76813,76648,76648,76647,76647,76646,76646,76645,76645,76644,76644,76643,76643,76858,76858,76642,76642,76641,76641,76640,76640,76639,76639,76638,76638,76637,76637,76841,76841,76872,76872,76636,76636,76635,76635,76634,76634,76812,76812,76811,76811,76633,76633,76632,76632,76631,76631,76840,76840,76630,76630,76629,76629,76625,76625,76624,76624,76623,76623,76838,76838,76871,76871,76837,76837,76622,76622,76621,76621,76620,76620,76619,76619,76618,76618,76856,76856,76810,76810,76617,76617,76616,76616,76615,76615,76836,76836,76614,76614,76613,76613,76612,76612,76611,76611,76610,76610,76809,76809,76609,76609,76608,76608,76607,76607,76604,76604,76603,76603,76602,76602,76601,76601,76600,76600,76599,76599,76896,76896,76892,76892,76834,76834,76598,76598,76597,76597,76596,76596,59210,59210,59211,59211,59212,59212,59213,59213,59214,59214,59215,59215,59216,59216,59217,59217,59218,59218,59219,59219,59332,59332,59379,59379,59392,59392,59397,59397,59406,59406,59220,59220,59221,59221,59222,59222,59333,59333,59223,59223,59224,59224,59225,59225,59226,59226,59227,59227,59228,59228,59229,59229,59230,59230,59231,59231,59386,59386,59232,59232,59233,59233,59234,59234,59334,59334,59371,59371,59335,59335,59235,59235,59236,59236,59237,59237,59238,59238,59239,59239,59240,59240,59241,59241,59242,59242,59243,59243,59244,59244,59245,59245,59246,59246,59336,59336,59387,59387,59372,59372,59247,59247,59248,59248,59249,76839,76857,76857,76627,76627,76626,76626,76628,76628,76839,76855,76897,76897,76869,76869,76853,76853,76605,76605,76606,76606,76855,76923,76922,76922,76934,76934,76933,76933,76932,76932,76931,76931,76930,76930,76929,76929,76928,76928,76927,76927,76926,76926,76925,76925,76924,76924,76923,76936,76935,76935,76941,76941,76940,76940,76939,76939,76938,76938,76937,76937,76936,76943,76942,76942,76948,76948,76947,76947,76946,76946,76945,76945,76944,76944,76943,76949,77020,77020,77019,77019,77018,77018,77027,77027,77017,77017,77016,77016,77015,77015,77031,77031,77037,77037,77030,77030,77026,77026,77014,77014,77013,77013,77012,77012,77011,77011,77010,77010,77009,77009,77008,77008,77007,77007,77025,77025,77029,77029,77006,77006,77005,77005,77004,77004,77003,77003,77002,77002,77001,77001,77000,77000,76999,76999,76998,76998,76997,76997,77033,77033,77036,77036,77024,77024,76996,76996,76995,76995,76994,76994,76993,76993,76992,76992,76991,76991,76990,76990,76989,76989,76988,76988,76987,76987,76986,76986,76985,76985,76984,76984,76983,76983,76982,76982,76981,76981,76980,76980,76979,76979,76978,76978,76977,76977,76976,76976,76975,76975,76974,76974,77023,77023,77035,77035,77034,77034,76973,76973,76972,76972,76971,76971,76970,76970,76969,76969,76968,76968,76967,76967,76966,76966,77032,77032,77022,77022,76965,76965,76964,76964,76963,76963,76962,76962,76961,76961,77028,77028,76960,76960,76959,76959,76958,76958,76957,76957,76956,76956,77021,77021,76955,76955,76954,76954,76953,76953,76952,76952,76951,76951,76950,76950,76949,77039,77038,77038,77105,77105,77104,77104,77103,77103,77102,77102,77101,77101,77117,77117,77100,77100,77099,77099,77098,77098,77097,77097,77096,77096,77095,77095,77094,77094,77093,77093,77092,77092,77111,77111,77091,77091,77090,77090,77089,77089,77088,77088,77087,77087,77086,77086,77085,77085,77084,77084,77083,77083,77082,77082,77081,77081,77080,77080,77079,77079,77078,77078,77077,77077,77076,77076,77075,77075,77110,77110,77074,77074,77073,77073,77072,77072,77071,77071,77070,77070,77069,77069,77068,77068,77067,77067,77066,77066,77065,77065,77064,77064,77114,77114,77063,77063,77062,77062,77061,77061,77109,77109,77108,77108,77060,77060,77059,77059,77058,77058,77057,77057,77056,77056,77055,77055,77054,77054,77113,77113,77115,77115,77116,77116,77118,77118,77053,77053,77052,77052,77051,77051,77107,77107,77050,77050,77049,77049,77048,77048,77047,77047,77046,77046,77045,77045,77044,77044,77106,77106,77043,77043,77042,77042,77041,77041,77112,77112,77040,77040,77039,77120,77119,77119,77124,77124,77123,77123,77122,77122,77121,77121,77120,77125,77132,77132,77131,77131,77130,77130,77129,77129,77128,77128,77127,77127,77126,77126,77125,69532,76584,76584,76589,76589,76503,76503,76504,76504,77135,77135,77136,77136,77134,77134,77133,77133,76511,76511,76512,76512,76585,76585,76577,76577,76513,76513,76514,76514,76515,76515,76516,76516,76517,76517,76578,76578,76586,76586,76518,76518,76519,76519,76757,76757,76758,76758,76759,76759,76849,76849,76876,76876,76850,76850,76760,76760,76761,76761,76762,76762,76763,76763,76764,76764,76765,76765,76766,76766,76827,76827,76767,76767,76768,76768,76769,76769,76895,76895,76864,76864,76770,76770,76771,76771,76772,76772,76773,76773,76774,76774,76851,76851,76877,76877,76865,76865,76828,76828,76775,76775,76776,76776,76777,76777,76778,76778,76779,76779,76829,76829,76866,76866,76780,76780,76781,76781,76782,76782,76783,76783,76784,76784,76785,76785,76786,76786,76899,76899,76890,76890,76787,76787,76788,76788,76789,76789,76790,76790,76791,76791,76830,76830,76867,76867,76868,76868,76792,76792,76793,76793,76794,76794,76795,76795,76796,76796,76797,76797,76798,76798,76799,76799,76800,76800,76831,76831,76801,76801,76802,76802,76803,76803,76884,76884,76804,76804,76805,76805,76806,76806,76832,76832,76852,76852,76833,76833,76807,76807,59249,59249,59250,59250,59251,59251,59252,59252,59253,59253,59254,59254,59255,59255,59256,59256,59257,59257,59258,59258,59259,59259,59260,59260,59261,59261,59262,59262,59263,59263,59264,59264,59265,59265,59266,59266,59354,59354,59393,59393,59408,59408,59416,59416,59444,59444,59267,59267,59268,59268,59269,59269,59270,59270,59271,59271,59355,59355,59272,59272,59273,59273,59274,59274,59275,59275,59276,59276,59277,59277,59278,59278,59279,59279,59280,59280,59281,59281,59282,59282,59283,59283,59284,59284,59285,59285,59286,59286,59287,59287,59288,59288,59289,59289,59290,59290,59380,59380,59388,59388,59381,59381,59356,59356,59291,59291,59292,59292,59293,59293,59294,59294,59295,59295,59296,59296,59297,59297,58870,58870,58871,58871,69801,69801,69802,69802,69803,69803,69804,69804,69805,69805,69806,69806,69807,69807,69808,69808,69809,69809,69810,69810,69811,69811,69812,69812,69813,69813,69856,69856,69875,69875,69880,69880,69889,69889,69892,69892,69876,69876,69814,69814,69815,69815,69816,69816,69839,69839,69857,69857,69817,69817,69818,69818,69819,69819,69840,69840,69820,69820,69531,69531,69532,69773,72909,72909,72941,72941,72949,72949,72957,72957,72910,72910,72911,72911,72912,72912,72913,72913,72914,72914,72915,72915,72942,72942,72916,72916,72917,72917,72918,72918,72919,72919,72920,72920,72950,72950,72921,72921,72922,72922,72923,72923,72943,72943,72954,72954,72955,72955,72944,72944,72924,72924,72925,72925,72926,72926,72927,72927,72928,72928,72956,72956,72929,72929,72930,72930,72931,72931,72932,72932,72933,72933,72951,72951,72945,72945,72934,72934,72935,72935,72936,72936,72937,72937,72938,72938,72939,72939,72897,72897,72898,72898,77176,77176,77175,77175,77174,77174,77173,77173,77172,77172,77171,77171,77170,77170,77169,77169,77168,77168,77167,77167,77166,77166,77165,77165,77184,77184,77179,77179,77164,77164,77163,77163,77162,77162,77161,77161,77160,77160,77159,77159,77158,77158,77157,77157,77156,77156,77155,77155,77154,77154,77153,77153,77177,77177,77181,77181,77183,77183,77180,77180,77152,77152,77151,77151,77150,77150,77149,77149,77148,77148,77178,77178,77182,77182,77147,77147,77146,77146,77145,77145,77144,77144,77143,77143,77142,77142,77141,77141,77140,77140,77139,77139,77138,77138,69722,69722,69723,69723,69724,69724,69725,69725,69726,69726,69727,69727,69837,69837,69728,69728,69729,69729,69730,69730,69731,69731,69732,69732,69733,69733,69734,69734,69735,69735,69736,69736,69737,69737,69738,69738,69739,69739,69882,69882,69884,69884,69887,69887,69899,69899,69864,69864,69854,69854,69740,69740,69741,69741,69742,69742,69743,69743,69744,69744,69872,69872,69879,69879,69888,69888,69873,69873,69745,69745,69746,69746,69747,69747,69748,69748,69749,69749,69750,69750,69751,69751,69752,69752,69753,69753,69754,69754,69755,69755,69756,69756,69757,69757,69758,69758,69759,69759,69838,69838,69885,69885,69855,69855,69760,69760,69761,69761,69762,69762,69763,69763,69764,69764,69865,69865,69765,69765,69766,69766,69767,69767,69768,69768,69769,69769,69770,69770,69771,69771,69866,69866,69874,69874,69772,69772,69773,72898,72899,72899,72946,72946,72952,72952,72958,72958,72947,72947,72900,72900,72901,72901,72902,72902,72903,72903,72904,72904,72953,72953,72948,72948,72940,72940,72905,72905,72906,72906,77190,77190,77189,77189,77188,77188,77187,77187,77186,77186,77185,77185,72898,77192,77191,77191,77195,77195,77194,77194,77193,77193,77192,77197,77196,77196,77202,77202,77201,77201,77200,77200,77199,77199,77198,77198,77197,77204,77203,77203,77206,77206,77205,77205,77204,77208,77207,77207,77212,77212,77211,77211,77210,77210,77209,77209,77208,77214,77213,77213,77218,77218,77217,77217,77216,77216,77215,77215,77214,77220,77219,77219,77228,77228,77227,77227,77226,77226,77225,77225,77224,77224,77223,77223,77222,77222,77221,77221,77220,77230,77229,77229,77233,77233,77232,77232,77231,77231,77230,77235,77234,77234,77242,77242,77241,77241,77240,77240,77239,77239,77238,77238,77237,77237,77236,77236,77235,77244,77243,77243,77250,77250,77249,77249,77248,77248,77247,77247,77246,77246,77245,77245,77244,77252,77251,77251,77257,77257,77256,77256,77255,77255,77254,77254,77253,77253,77252,76511,77133,77133,77134,77134,77136,77136,77135,77135,76504,76504,76505,76505,76506,76506,76507,76507,76508,76508,76509,76509,76575,76575,76576,76576,76510,76510,76511,74071,74072,74072,74073,74073,74074,74074,74075,74075,74156,74156,74076,74076,74077,74077,74078,74078,74166,74166,74182,74182,74188,74188,74177,74177,74167,74167,74079,74079,74080,74080,74081,74081,74082,74082,74083,74083,74084,74084,74085,74085,74157,74157,74086,74086,74087,74087,74088,74088,77353,77353,77362,77362,77361,77361,77352,77352,77351,77351,77350,77350,77372,77372,77378,77378,77349,77349,77348,77348,77347,77347,77346,77346,77345,77345,77344,77344,77343,77343,77342,77342,77341,77341,77340,77340,77339,77339,77338,77338,77337,77337,77336,77336,77335,77335,77334,77334,77333,77333,77332,77332,77331,77331,77360,77360,77369,77369,77359,77359,77330,77330,77329,77329,77328,77328,77327,77327,77326,77326,77325,77325,77324,77324,77323,77323,77322,77322,73018,73018,73019,73019,73020,73020,73021,73021,73034,73034,73022,73022,73023,73023,73024,73024,73025,73025,73026,73026,73027,73027,72959,72959,72960,72960,73140,73140,73172,73172,73141,73141,73142,73142,73143,73143,73144,73144,73145,73145,73146,73146,73147,73147,73170,73170,73148,73148,73149,73149,73150,73150,73151,73151,73152,73152,73153,73153,73154,73154,73155,73155,73175,73175,73173,73173,73156,73156,73157,73157,73158,73158,73159,73159,73160,73160,73161,73161,73162,73162,73163,73163,73164,73164,73174,73174,73165,73165,73166,73166,73167,73167,73171,73171,73168,73168,73132,73132,77321,77321,77358,77358,77320,77320,77319,77319,77318,77318,77317,77317,77316,77316,77315,77315,77314,77314,77313,77313,77312,77312,77311,77311,77310,77310,77309,77309,77308,77308,77307,77307,77306,77306,77305,77305,77304,77304,77303,77303,77365,77365,77371,77371,77375,77375,77374,77374,77357,77357,77302,77302,77301,77301,77300,77300,77299,77299,77298,77298,77356,77356,77368,77368,77370,77370,77381,77381,77297,77297,77296,77296,77295,77295,77294,77294,77293,77293,77292,77292,77291,77291,77290,77290,77289,77289,77288,77288,77287,77287,77355,77355,77367,77367,77373,77373,77382,77382,77380,77380,77376,77376,77286,77286,77285,77285,77284,77284,77283,77283,77282,77282,77281,77281,77280,77280,77364,77364,77279,77279,77278,77278,77277,77277,77276,77276,77275,77275,77274,77274,77363,77363,77366,77366,77377,77377,77379,77379,77273,77273,77272,77272,77271,77271,77270,77270,77269,77269,77268,77268,77267,77267,77266,77266,77265,77265,77354,77354,77264,77264,77263,77263,77262,77262,77261,77261,77260,77260,77259,77259,77258,77258,74302,74302,74303,74303,74304,74304,74305,74305,74306,74306,74307,74307,74308,74308,74309,74309,74310,74310,74311,74311,74312,74312,74313,74313,74314,74314,74315,74315,74316,74316,74317,74317,74318,74318,74330,74330,74331,74331,74319,74319,74033,74033,74034,74034,74035,74035,74036,74036,74152,74152,74037,74037,74038,74038,74039,74039,74040,74040,74041,74041,74165,74165,74042,74042,74043,74043,74044,74044,74045,74045,74046,74046,74047,74047,74048,74048,74049,74049,74050,74050,74051,74051,74052,74052,74053,74053,74054,74054,74055,74055,74056,74056,74057,74057,74153,74153,74175,74175,74181,74181,74058,74058,74059,74059,74060,74060,74154,74154,74061,74061,74062,74062,74063,74063,74064,74064,74065,74065,74066,74066,74067,74067,74176,74176,74171,74171,74155,74155,74068,74068,74069,74069,74070,74070,74071,77384,77383,77383,77519,77519,77539,77539,77531,77531,77518,77518,77517,77517,77516,77516,77515,77515,77514,77514,77513,77513,77547,77547,77512,77512,77511,77511,77510,77510,77509,77509,77508,77508,77538,77538,77542,77542,77544,77544,77530,77530,77507,77507,77506,77506,77505,77505,77537,77537,77536,77536,77504,77504,77503,77503,77502,77502,77501,77501,77500,77500,77499,77499,77498,77498,77497,77497,77496,77496,77495,77495,77543,77543,77548,77548,77546,77546,77529,77529,77494,77494,77493,77493,77492,77492,77491,77491,77490,77490,77489,77489,77488,77488,77487,77487,77528,77528,77486,77486,77485,77485,77484,77484,77527,77527,77483,77483,77482,77482,77481,77481,77480,77480,77479,77479,74281,74281,74282,74282,74325,74325,74283,74283,74284,74284,74285,74285,74326,74326,74286,74286,74287,74287,74288,74288,74327,74327,74289,74289,74290,74290,74291,74291,74292,74292,74293,74293,74328,74328,74294,74294,74295,74295,74296,74296,74297,74297,74298,74298,74299,74299,74300,74300,74301,74301,74329,74329,74302,74302,77258,77258,77259,77259,77260,77260,77261,77261,77262,77262,77263,77263,77264,77264,77354,77354,77265,77265,77266,77266,77267,77267,77268,77268,77269,77269,77270,77270,77271,77271,77272,77272,77273,77273,77379,77379,77377,77377,77366,77366,77363,77363,77274,77274,77275,77275,77276,77276,77277,77277,77278,77278,77279,77279,77364,77364,77280,77280,77281,77281,77282,77282,77283,77283,77284,77284,77478,77478,77477,77477,77476,77476,77475,77475,77474,77474,77535,77535,77526,77526,77473,77473,77472,77472,77471,77471,77525,77525,77470,77470,77469,77469,77468,77468,77467,77467,77466,77466,77465,77465,77464,77464,77534,77534,77463,77463,77462,77462,77461,77461,77524,77524,77523,77523,77460,77460,77459,77459,77458,77458,77457,77457,77456,77456,77533,77533,77455,77455,77454,77454,77453,77453,77452,77452,77451,77451,77541,77541,77545,77545,77552,77552,77450,77450,77449,77449,77448,77448,77447,77447,77446,77446,77445,77445,77444,77444,77443,77443,77442,77442,77441,77441,77551,77551,77440,77440,77439,77439,77438,77438,77437,77437,77436,77436,77435,77435,77434,77434,77433,77433,77432,77432,77431,77431,77532,77532,77522,77522,77430,77430,77429,77429,77428,77428,77427,77427,77426,77426,77425,77425,77424,77424,77423,77423,77422,77422,77421,77421,77420,77420,77521,77521,77419,77419,77418,77418,77417,77417,77416,77416,77415,77415,77520,77520,77414,77414,77413,77413,77412,77412,77411,77411,77410,77410,77409,77409,77408,77408,77407,77407,77406,77406,77405,77405,77540,77540,77404,77404,77403,77403,77402,77402,77401,77401,77400,77400,77399,77399,77398,77398,77397,77397,77550,77550,77549,77549,77396,77396,77395,77395,77394,77394,77393,77393,77392,77392,77391,77391,77390,77390,77389,77389,77388,77388,77387,77387,77386,77386,77385,77385,77384,77554,77553,77553,77564,77564,77563,77563,77562,77562,77561,77561,77560,77560,77559,77559,77558,77558,77557,77557,77556,77556,77555,77555,77554,77566,77565,77565,77574,77574,77573,77573,77572,77572,77571,77571,77570,77570,77569,77569,77568,77568,77567,77567,77566,77576,77575,77575,77584,77584,77583,77583,77582,77582,77581,77581,77580,77580,77579,77579,77578,77578,77577,77577,77576,77586,77585,77585,77589,77589,77588,77588,77587,77587,77586,77591,77590,77590,77601,77601,77600,77600,77599,77599,77598,77598,77597,77597,77596,77596,77595,77595,77594,77594,77593,77593,77592,77592,77591,77603,77602,77602,77610,77610,77609,77609,77608,77608,77607,77607,77606,77606,77605,77605,77604,77604,77603,77625,77624,77624,77623,77623,77622,77622,77621,77621,77620,77620,77619,77619,77618,77618,77617,77617,77616,77616,77626,77626,77615,77615,77614,77614,77613,77613,77612,77612,77611,77611,77625,77628,77627,77627,77634,77634,77633,77633,77632,77632,77631,77631,77630,77630,77629,77629,77628,77636,77635,77635,77639,77639,77638,77638,77637,77637,77636,77641,77640,77640,77655,77655,77654,77654,77653,77653,77652,77652,77651,77651,77650,77650,77649,77649,77648,77648,77647,77647,77646,77646,77645,77645,77644,77644,77643,77643,77656,77656,77642,77642,77641,77658,77657,77657,77661,77661,77660,77660,77659,77659,77658,77663,77662,77662,77682,77682,77681,77681,77680,77680,77679,77679,77678,77678,77677,77677,77676,77676,77675,77675,77674,77674,77673,77673,77672,77672,77671,77671,77670,77670,77669,77669,77668,77668,77667,77667,77666,77666,77665,77665,77683,77683,77664,77664,77663,74281,77479,77479,77480,77480,77481,77481,77482,77482,77483,77483,77527,77527,77484,77484,77485,77485,77486,77486,77528,77528,77487,77487,77488,77488,77489,77489,77490,77490,77491,77491,77492,77492,77493,77493,77494,77494,77529,77529,77546,77546,77548,77548,77543,77543,77495,77495,77496,77496,77497,77497,77498,77498,77499,77499,77500,77500,77501,77501,77502,77502,77503,77503,77504,77504,77536,77536,77537,77537,77505,77505,77506,77506,77507,77507,77530,77530,77544,77544,77542,77542,77538,77538,77508,77508,77509,77509,77510,77510,77511,77511,77512,77512,77547,77547,77513,77513,77514,77514,77515,77515,77516,77516,77517,77517,77518,77518,77531,77531,77539,77539,77519,77519,77383,77383,77384,77384,77684,77684,76737,76737,76738,76738,76739,76739,76740,76740,76741,76741,76742,76742,76743,76743,76744,76744,76745,76745,76746,76746,76747,76747,76824,76824,76846,76846,76875,76875,76847,76847,76748,76748,76749,76749,76750,76750,76751,76751,76752,76752,76753,76753,76754,76754,76825,76825,76882,76882,76883,76883,76863,76863,76848,76848,76826,76826,76755,76755,76756,76756,76548,76548,76549,76549,76581,76581,76582,76582,76550,76550,76551,76551,76552,76552,76553,76553,76554,76554,76555,76555,76556,76556,76557,76557,76558,76558,76559,76559,76560,76560,76561,76561,76562,76562,76563,76563,76564,76564,76565,76565,76566,76566,76567,76567,76568,76568,76583,76583,76588,76588,76569,76569,76570,76570,76571,76571,76572,76572,76573,76573,76574,76574,74272,74272,74273,74273,74274,74274,74275,74275,74276,74276,74324,74324,74277,74277,74278,74278,74279,74279,74280,74280,74281,47129,47130,47130,47131,47131,47132,47132,47133,47133,47134,47134,47198,47198,47205,47205,47199,47199,47135,47135,47136,47136,47137,47137,47138,47138,47139,47139,47140,47140,47200,47200,47201,47201,47141,47141,47142,47142,47143,47143,47144,47144,47145,47145,47146,47146,47147,47147,47148,47148,47149,47149,47150,47150,76204,76204,76205,76205,76206,76206,76207,76207,76208,76208,76209,76209,76460,76460,76491,76491,76493,76493,76497,76497,76210,76210,76211,76211,76212,76212,76213,76213,76214,76214,76461,76461,76215,76215,76216,76216,76217,76217,76218,76218,76219,76219,76220,76220,76221,76221,76222,76222,76223,76223,76224,76224,76225,76225,76441,76441,76226,76226,76227,76227,76228,76228,76462,76462,76472,76472,76229,76229,76230,76230,76231,76231,76442,76442,76232,76232,76233,76233,76234,76234,76235,76235,76236,76236,76237,76237,73007,73007,73008,73008,73009,73009,73010,73010,73011,73011,73012,73012,73013,73013,73014,73014,73015,73015,73016,73016,73037,73037,73038,73038,73017,73017,73018,73018,77322,77322,77323,77323,77324,77324,77325,77325,77326,77326,77327,77327,77328,77328,77329,77329,77330,77330,77359,77359,77369,77369,77360,77360,77331,77331,77332,77332,77333,77333,77334,77334,77335,77335,77336,77336,77337,77337,77338,77338,77339,77339,77340,77340,77341,77341,77342,77342,77343,77343,77344,77344,77345,77345,77346,77346,77347,77347,77348,77348,77349,77349,77378,77378,77372,77372,77350,77350,77351,77351,77352,77352,77361,77361,77362,77362,77353,77353,74088,74088,74089,74089,74090,74090,74172,74172,74168,74168,74091,74091,74092,74092,74093,74093,74094,74094,74095,74095,74096,74096,74097,74097,74098,74098,74099,74099,74100,74100,74158,74158,74101,74101,74102,74102,74103,74103,74104,74104,74105,74105,74159,74159,74193,74193,74189,74189,74184,74184,74106,74106,74107,74107,74108,74108,74160,74160,74109,74109,74110,74110,74111,74111,74112,74112,74113,74113,74114,74114,74115,74115,74116,74116,74117,74117,74118,74118,77697,77697,77696,77696,77695,77695,77694,77694,77693,77693,77692,77692,77700,77700,77699,77699,77691,77691,77690,77690,77689,77689,77698,77698,77688,77688,77687,77687,77686,77686,77685,77685,47129,76855,76606,76606,76605,76605,76853,76853,76869,76869,76897,76897,76855,59209,59206,59206,59207,59207,59353,59353,59331,59331,59208,59208,59209,59151,73475,73475,73496,73496,73517,73517,73527,73527,73518,73518,73476,73476,73477,73477,73478,73478,73479,73479,59147,59147,59148,59148,59325,59325,59369,59369,59378,59378,59350,59350,59149,59149,59150,59150,59151,77307,77308,77308,77309,77309,77310,77310,77311,77311,77312,77312,77313,77313,77314,77314,77315,77315,77316,77316,77317,77317,77318,77318,77319,77319,77320,77320,77358,77358,77321,77321,73132,73132,73133,73133,73134,73134,73135,73135,73136,73136,73137,73137,73138,73138,73169,73169,73139,73139,73102,73102,73103,73103,73122,73122,73131,73131,73130,73130,73123,73123,73104,73104,73105,73105,73106,73106,73107,73107,73108,73108,73109,73109,73110,73110,73111,73111,73112,73112,73113,73113,73114,73114,73124,73124,73115,73115,73116,73116,73117,73117,73039,73039,73040,73040,77740,77740,77739,77739,77738,77738,77737,77737,77736,77736,77735,77735,77734,77734,77743,77743,77733,77733,77681,77681,77682,77682,77662,77662,77663,77663,77732,77732,77741,77741,77742,77742,77745,77745,77731,77731,77730,77730,77729,77729,77728,77728,77727,77727,77726,77726,77725,77725,77724,77724,77723,77723,77722,77722,77721,77721,77720,77720,77719,77719,77718,77718,77717,77717,77716,77716,77744,77744,77715,77715,77714,77714,77713,77713,77712,77712,77711,77711,77710,77710,77709,77709,77708,77708,77707,77707,77307,77382,77373,77373,77367,77367,77355,77355,77287,77287,77288,77288,77289,77289,77290,77290,77291,77291,77292,77292,77293,77293,77294,77294,77295,77295,77296,77296,77297,77297,77381,77381,77370,77370,77368,77368,77356,77356,77298,77298,77299,77299,77300,77300,77301,77301,77302,77302,77357,77357,77374,77374,77375,77375,77371,77371,77365,77365,77303,77303,77304,77304,77305,77305,77306,77306,77307,77307,77707,77707,77708,77708,77709,77709,77710,77710,77711,77711,77712,77712,77713,77713,77714,77714,77715,77715,77744,77744,77716,77716,77717,77717,77718,77718,77719,77719,77720,77720,77721,77721,77722,77722,77723,77723,77724,77724,77725,77725,77726,77726,77727,77727,77728,77728,77729,77729,77730,77730,77731,77731,77745,77745,77742,77742,77741,77741,77732,77732,77663,77663,77664,77664,77683,77683,77665,77665,77666,77666,77667,77667,77668,77668,77669,77669,77670,77670,77671,77671,77426,77426,77427,77427,77428,77428,77429,77429,77430,77430,77522,77522,77532,77532,77431,77431,77432,77432,77433,77433,77434,77434,77435,77435,77436,77436,77437,77437,77438,77438,77439,77439,77440,77440,77551,77551,77441,77441,77442,77442,77443,77443,77444,77444,77445,77445,77446,77446,77447,77447,77448,77448,77449,77449,77450,77450,77552,77552,77545,77545,77541,77541,77451,77451,77452,77452,77453,77453,77454,77454,77455,77455,77533,77533,77456,77456,77457,77457,77458,77458,77459,77459,77460,77460,77523,77523,77524,77524,77461,77461,77462,77462,77463,77463,77534,77534,77464,77464,77465,77465,77466,77466,77467,77467,77468,77468,77469,77469,77470,77470,77525,77525,77471,77471,77472,77472,77473,77473,77526,77526,77535,77535,77474,77474,77475,77475,77476,77476,77477,77477,77478,77478,77284,77284,77285,77285,77286,77286,77376,77376,77380,77380,77382,77749,77748,77748,77758,77758,77757,77757,77756,77756,77755,77755,77754,77754,77753,77753,77752,77752,77751,77751,77750,77750,77749,73304,73305,73305,73512,73512,73306,73306,73307,73307,73308,73308,73309,73309,73310,73310,73311,73311,73484,73484,73312,73312,73313,73313,73314,73314,73315,73315,73316,73316,73317,73317,73318,73318,73319,73319,73320,73320,73321,73321,73322,73322,73323,73323,73324,73324,73325,73325,73326,73326,73327,73327,73328,73328,73329,73329,73520,73520,73529,73529,73330,73330,73331,73331,73332,73332,73333,73333,73334,73334,73335,73335,73336,73336,73337,73337,73513,73513,73485,73485,73338,73338,73339,73339,73340,73340,73341,73341,73342,73342,73521,73521,73530,73530,73567,73567,73343,73343,73344,73344,73345,73345,73346,73346,73347,73347,73348,73348,73349,73349,73350,73350,73351,73351,73352,73352,73353,73353,73500,73500,73354,73354,73355,73355,73356,73356,73357,73357,73358,73358,73486,73486,73501,73501,73359,73359,73360,73360,73361,73361,73362,73362,73363,73363,73514,73514,73522,73522,73531,73531,73537,73537,73523,73523,73502,73502,73364,73364,73365,73365,73366,73366,73367,73367,73368,73368,73369,73369,73370,73370,73371,73371,73372,73372,73487,73487,73503,73503,73524,73524,73504,73504,73373,73373,73374,73374,73375,73375,73488,73488,73376,73376,73377,73377,73378,73378,73379,73379,73380,73380,73532,73532,73525,73525,73489,73489,73381,73381,73382,73382,73383,73383,73384,73384,73385,73385,73386,73386,73387,73387,73388,73388,73389,73389,77824,77824,77823,77823,77822,77822,77821,77821,77820,77820,77819,77819,77818,77818,77817,77817,77816,77816,77815,77815,77814,77814,77813,77813,77812,77812,77811,77811,77810,77810,77809,77809,77808,77808,77807,77807,77806,77806,77805,77805,77830,77830,77804,77804,77803,77803,77802,77802,77801,77801,77800,77800,77799,77799,77798,77798,77797,77797,77796,77796,77795,77795,77829,77829,77826,77826,77794,77794,77793,77793,77792,77792,77831,77831,77828,77828,77791,77791,77790,77790,77789,77789,77788,77788,77787,77787,77786,77786,77785,77785,77784,77784,77783,77783,77782,77782,77781,77781,77825,77825,77780,77780,77779,77779,77778,77778,77777,77777,77776,77776,77775,77775,77774,77774,77773,77773,77772,77772,77771,77771,77770,77770,77769,77769,77768,77768,77767,77767,77827,77827,77766,77766,77765,77765,77764,77764,77763,77763,77762,77762,77761,77761,77760,77760,77759,77759,73304,77833,77832,77832,77839,77839,77838,77838,77837,77837,77836,77836,77835,77835,77834,77834,77833,77841,77840,77840,77846,77846,77845,77845,77844,77844,77843,77843,77842,77842,77841,77848,77847,77847,77856,77856,77855,77855,77854,77854,77853,77853,77852,77852,77851,77851,77850,77850,77849,77849,77848,77858,77857,77857,77862,77862,77861,77861,77860,77860,77859,77859,77858,77864,77863,77863,77869,77869,77868,77868,77867,77867,77866,77866,77865,77865,77864,77871,77870,77870,77879,77879,77878,77878,77877,77877,77876,77876,77875,77875,77874,77874,77873,77873,77872,77872,77871,77880,77891,77891,77890,77890,77889,77889,77888,77888,77887,77887,77886,77886,77885,77885,77884,77884,77883,77883,77882,77882,77881,77881,77880,59882,60097,60097,59883,59883,59884,59884,59885,59885,59886,59886,59887,59887,59888,59888,59889,59889,59890,59890,59891,59891,59892,59892,60098,60098,59893,59893,59894,59894,59895,59895,60099,60099,59896,59896,59897,59897,59898,59898,60100,60100,59899,59899,59900,59900,59901,59901,60101,60101,59902,59902,59903,59903,59904,59904,60102,60102,60196,60196,59905,59905,59906,59906,59907,59907,59908,59908,59909,59909,60146,60146,60167,60167,60190,60190,60179,60179,60147,60147,60103,60103,59910,59910,59911,59911,59912,59912,59913,59913,59914,59914,59915,59915,59916,59916,59917,59917,60104,60104,60180,60180,60148,60148,59918,59918,59919,59919,59920,59920,60105,60105,59921,59921,59922,59922,59923,59923,59924,59924,59925,59925,60149,60149,60106,60106,59926,59926,59927,59927,59928,59928,60211,60211,59929,59929,59930,59930,59931,59931,59932,59932,59933,59933,60107,60107,60150,60150,60108,60108,59934,59934,59935,59935,59936,59936,60109,60109,59937,59937,59938,59938,59939,59939,60151,60151,59940,59940,59941,59941,59942,59942,59943,59943,59944,59944,59945,59945,59946,59946,59947,59947,59948,59948,59949,59949,59950,59950,59951,59951,59952,59952,59953,59953,59954,59954,59955,59955,59956,59956,59957,59957,60110,60110,59958,59958,59959,59959,59960,59960,59961,59961,59962,59962,59963,59963,59964,59964,73964,73964,73965,73965,74141,74141,73966,73966,73967,73967,73968,73968,73969,73969,73970,73970,73971,73971,73972,73972,73973,73973,74142,74142,73974,73974,73975,73975,73976,73976,73977,73977,73978,73978,73979,73979,73980,73980,73981,73981,74143,74143,73982,73982,73983,73983,73984,73984,73985,73985,73986,73986,73987,73987,73988,73988,73989,73989,74144,74144,73990,73990,73991,73991,73992,73992,73993,73993,73994,73994,73995,73995,73996,73996,73997,73997,73998,73998,59882,76839,76628,76628,76626,76626,76627,76627,76857,76857,76839,78315,78338,78338,78301,78301,78289,78289,78270,78270,78269,78269,78268,78268,78267,78267,78266,78266,78265,78265,78264,78264,78263,78263,78262,78262,78261,78261,78326,78326,78314,78314,78260,78260,78259,78259,78258,78258,78257,78257,78256,78256,78255,78255,78254,78254,78253,78253,78252,78252,78325,78325,78251,78251,78250,78250,78249,78249,78248,78248,78247,78247,78288,78288,78246,78246,78245,78245,78244,78244,78243,78243,78242,78242,78241,78241,78240,78240,78239,78239,78238,78238,78237,78237,78236,78236,78235,78235,78234,78234,78233,78233,78232,78232,78231,78231,78313,78313,78324,78324,78230,78230,78229,78229,78228,78228,78227,78227,78226,78226,78225,78225,78224,78224,78287,78287,78223,78223,78222,78222,78221,78221,78220,78220,78219,78219,78218,78218,78217,78217,78216,78216,78215,78215,78214,78214,78213,78213,78212,78212,78211,78211,78210,78210,78209,78209,78208,78208,78207,78207,78206,78206,78205,78205,78204,78204,78203,78203,78202,78202,78201,78201,78200,78200,78199,78199,78198,78198,78197,78197,78196,78196,78300,78300,78323,78323,78322,78322,78195,78195,78194,78194,78193,78193,78192,78192,78191,78191,78190,78190,78189,78189,78188,78188,78187,78187,78186,78186,78185,78185,78184,78184,78183,78183,78182,78182,78181,78181,78180,78180,78179,78179,78299,78299,78286,78286,78178,78178,78177,78177,78176,78176,78175,78175,78174,78174,78173,78173,78172,78172,78171,78171,78170,78170,78169,78169,78168,78168,78167,78167,78166,78166,78165,78165,78164,78164,78163,78163,78312,78312,78298,78298,78162,78162,78161,78161,78160,78160,78159,78159,78158,78158,78157,78157,78156,78156,78155,78155,78154,78154,78153,78153,78311,78311,78310,78310,78297,78297,78152,78152,78151,78151,78150,78150,78285,78285,78149,78149,78148,78148,78147,78147,78146,78146,78145,78145,78144,78144,78143,78143,78142,78142,78141,78141,78296,78296,78321,78321,78333,78333,78140,78140,78139,78139,78138,78138,78295,78295,78137,78137,78136,78136,78135,78135,78134,78134,78133,78133,78332,78332,78294,78294,78132,78132,78131,78131,78130,78130,78129,78129,78128,78128,78127,78127,78126,78126,78125,78125,78124,78124,78123,78123,78122,78122,78309,78309,78331,78331,78121,78121,78120,78120,78119,78119,78118,78118,78117,78117,78116,78116,78115,78115,78114,78114,78113,78113,78112,78112,78111,78111,78110,78110,78109,78109,78108,78108,78107,78107,78106,78106,78105,78105,78104,78104,78103,78103,78102,78102,78101,78101,78100,78100,78099,78099,78098,78098,78097,78097,78096,78096,78095,78095,78094,78094,78093,78093,78092,78092,78091,78091,78090,78090,78308,78308,78284,78284,78089,78089,78088,78088,78087,78087,78283,78283,78086,78086,78085,78085,78084,78084,78340,78340,78344,78344,78330,78330,78083,78083,78082,78082,78081,78081,78080,78080,78079,78079,78078,78078,78077,78077,78076,78076,78075,78075,78307,78307,78320,78320,78074,78074,78073,78073,78072,78072,78071,78071,78070,78070,78069,78069,78068,78068,78067,78067,78066,78066,78065,78065,78064,78064,78063,78063,78062,78062,78061,78061,78060,78060,78059,78059,78058,78058,78057,78057,78056,78056,78055,78055,78054,78054,78053,78053,78052,78052,78051,78051,78050,78050,78049,78049,78048,78048,78047,78047,78046,78046,78045,78045,78044,78044,78282,78282,78043,78043,78042,78042,78041,78041,78040,78040,78039,78039,78038,78038,78037,78037,78036,78036,78035,78035,78034,78034,78033,78033,78032,78032,78031,78031,78030,78030,78293,78293,78281,78281,78029,78029,78028,78028,78027,78027,78026,78026,78025,78025,78024,78024,78023,78023,78022,78022,78021,78021,78020,78020,78019,78019,78018,78018,78017,78017,78016,78016,78015,78015,78014,78014,78013,78013,78012,78012,78011,78011,78010,78010,78009,78009,78008,78008,78007,78007,78006,78006,78005,78005,78346,78346,78343,78343,78319,78319,78280,78280,78004,78004,78003,78003,78002,78002,78001,78001,78000,78000,77999,77999,77998,77998,78306,78306,78279,78279,77997,77997,77996,77996,77995,77995,77994,77994,77993,77993,77992,77992,77991,77991,77990,77990,77989,77989,77988,77988,77987,77987,77986,77986,77985,77985,77984,77984,77983,77983,77982,77982,77981,77981,77980,77980,77979,77979,77978,77978,77977,77977,77976,77976,77975,77975,78278,78278,77974,77974,77973,77973,77972,77972,77971,77971,77970,77970,77969,77969,77968,77968,78277,78277,77967,77967,77966,77966,77965,77965,78292,78292,77964,77964,77963,77963,77962,77962,77961,77961,77960,77960,77959,77959,77958,77958,77957,77957,77956,77956,77955,77955,78276,78276,78291,78291,77954,77954,77953,77953,77952,77952,78275,78275,77951,77951,77950,77950,77949,77949,77948,77948,77947,77947,77946,77946,77945,77945,78305,78305,78318,78318,78337,78337,78290,78290,78274,78274,77944,77944,77943,77943,77942,77942,77941,77941,77940,77940,77939,77939,77938,77938,77937,77937,77936,77936,78317,78317,78329,78329,78336,78336,78304,78304,77935,77935,77934,77934,77933,77933,77932,77932,77931,77931,78273,78273,77930,77930,77929,77929,77928,77928,77927,77927,77926,77926,77925,77925,77924,77924,77923,77923,77922,77922,78272,78272,78328,78328,78342,78342,78335,78335,78327,78327,78316,78316,77921,77921,77920,77920,77919,77919,77918,77918,77917,77917,77916,77916,77915,77915,78271,78271,77914,77914,77913,77913,77912,77912,77911,77911,77910,77910,77909,77909,77908,77908,77907,77907,77906,77906,77905,77905,78303,78303,77904,77904,77903,77903,77902,77902,78334,78334,77901,77901,77900,77900,77899,77899,77898,77898,77897,77897,77896,77896,77895,77895,77894,77894,77893,77893,77892,77892,78302,78302,78315,78349,78348,78348,78354,78354,78353,78353,78352,78352,78351,78351,78350,78350,78349,78356,78355,78355,78361,78361,78360,78360,78359,78359,78358,78358,78357,78357,78356,78363,78362,78362,78368,78368,78367,78367,78369,78369,78366,78366,78365,78365,78364,78364,78363,78371,78370,78370,78375,78375,78374,78374,78373,78373,78372,78372,78371,78377,78376,78376,78389,78389,78388,78388,78387,78387,78386,78386,78385,78385,78384,78384,78383,78383,78382,78382,78381,78381,78380,78380,78379,78379,78378,78378,78377,78414,78413,78413,78412,78412,78411,78411,78410,78410,78409,78409,78408,78408,78407,78407,78406,78406,78405,78405,78404,78404,78415,78415,78418,78418,78403,78403,78402,78402,78401,78401,78400,78400,78399,78399,78398,78398,78397,78397,78396,78396,78395,78395,78417,78417,78419,78419,78420,78420,78416,78416,78394,78394,78393,78393,78392,78392,78391,78391,78390,78390,78414,78422,78421,78421,78428,78428,78429,78429,78427,78427,78426,78426,78425,78425,78424,78424,78423,78423,78422,78431,78430,78430,78438,78438,78437,78437,78436,78436,78435,78435,78434,78434,78433,78433,78432,78432,78431,78440,78439,78439,78449,78449,78448,78448,78447,78447,78446,78446,78445,78445,78444,78444,78443,78443,78442,78442,78441,78441,78440,78450,78462,78462,78461,78461,78460,78460,78459,78459,78458,78458,78457,78457,78456,78456,78455,78455,78454,78454,78453,78453,78452,78452,78451,78451,78450,78464,78463,78463,78472,78472,78471,78471,78470,78470,78469,78469,78468,78468,78467,78467,78466,78466,78465,78465,78464,78474,78473,78473,78485,78485,78484,78484,78487,78487,78488,78488,78486,78486,78483,78483,78482,78482,78481,78481,78480,78480,78479,78479,78478,78478,78477,78477,78476,78476,78475,78475,78474,78490,78489,78489,78496,78496,78495,78495,78494,78494,78493,78493,78492,78492,78491,78491,78490,78497,78756,78756,78723,78723,78722,78722,78721,78721,78720,78720,78719,78719,78718,78718,78717,78717,78716,78716,78741,78741,78715,78715,78714,78714,78713,78713,78712,78712,78711,78711,78710,78710,78709,78709,78708,78708,78755,78755,78839,78839,78852,78852,78820,78820,78806,78806,78707,78707,78706,78706,78705,78705,78704,78704,78703,78703,78702,78702,78701,78701,78700,78700,78699,78699,78698,78698,78697,78697,78696,78696,78695,78695,78754,78754,78774,78774,78784,78784,78795,78795,78834,78834,78783,78783,78694,78694,78693,78693,78692,78692,78691,78691,78690,78690,78689,78689,78688,78688,78687,78687,78686,78686,78685,78685,78753,78753,78740,78740,78684,78684,78683,78683,78682,78682,78681,78681,78680,78680,78679,78679,78678,78678,78752,78752,78773,78773,78782,78782,78677,78677,78676,78676,78675,78675,78674,78674,78673,78673,78739,78739,78672,78672,78671,78671,78670,78670,78669,78669,78668,78668,78667,78667,78666,78666,78665,78665,78664,78664,78663,78663,78738,78738,78772,78772,78662,78662,78661,78661,78660,78660,78659,78659,78658,78658,78657,78657,78656,78656,78751,78751,78737,78737,78655,78655,78654,78654,78653,78653,78652,78652,78651,78651,78650,78650,78750,78750,78765,78765,78749,78749,78649,78649,78648,78648,78647,78647,78646,78646,78645,78645,78771,78771,78736,78736,78644,78644,78643,78643,78642,78642,78641,78641,78640,78640,78639,78639,78748,78748,78735,78735,78638,78638,78637,78637,78636,78636,78764,78764,78770,78770,78734,78734,78635,78635,78634,78634,78633,78633,78632,78632,78631,78631,78733,78733,78732,78732,78630,78630,78629,78629,78628,78628,78627,78627,78626,78626,78625,78625,78624,78624,78623,78623,78622,78622,78621,78621,78620,78620,78619,78619,78618,78618,78617,78617,78616,78616,78747,78747,78615,78615,78614,78614,78613,78613,78731,78731,78768,78768,78612,78612,78611,78611,78610,78610,78609,78609,78608,78608,78607,78607,78606,78606,78605,78605,78604,78604,78763,78763,78780,78780,78803,78803,78815,78815,78829,78829,78862,78862,78730,78730,78603,78603,78602,78602,78601,78601,78600,78600,78599,78599,78598,78598,78597,78597,78596,78596,78595,78595,78594,78594,78593,78593,78592,78592,78591,78591,78746,78746,78762,78762,78779,78779,78729,78729,78590,78590,78589,78589,78588,78588,78728,78728,78587,78587,78586,78586,78585,78585,78584,78584,78583,78583,78727,78727,78745,78745,78744,78744,78582,78582,78581,78581,78580,78580,78726,78726,78725,78725,78579,78579,78578,78578,78577,78577,78576,78576,78575,78575,78574,78574,78573,78573,78572,78572,78571,78571,78570,78570,78791,78791,78569,78569,78568,78568,78567,78567,78566,78566,78565,78565,78564,78564,78760,78760,78563,78563,78562,78562,78561,78561,78560,78560,78559,78559,78558,78558,78557,78557,78556,78556,78555,78555,78554,78554,78553,78553,78759,78759,78552,78552,78551,78551,78550,78550,78800,78800,78797,78797,78788,78788,78767,78767,78743,78743,78549,78549,78548,78548,78547,78547,78546,78546,78545,78545,78742,78742,78544,78544,78543,78543,78542,78542,78541,78541,78540,78540,78539,78539,78538,78538,78537,78537,78536,78536,78535,78535,78724,78724,78758,78758,78844,78844,78861,78861,78870,78870,78534,78534,78533,78533,78532,78532,78531,78531,78530,78530,78529,78529,78528,78528,78527,78527,78526,78526,78525,78525,78524,78524,78523,78523,78522,78522,78521,78521,78520,78520,78519,78519,78518,78518,78757,78757,78766,78766,78786,78786,78517,78517,78516,78516,78515,78515,78514,78514,78513,78513,78512,78512,78511,78511,78510,78510,78509,78509,78508,78508,78507,78507,78506,78506,78505,78505,78504,78504,78775,78775,78785,78785,78503,78503,78502,78502,78501,78501,78500,78500,78499,78499,78498,78498,78497,78916,79132,79132,79131,79131,79130,79130,79129,79129,79128,79128,79127,79127,79126,79126,79125,79125,79124,79124,79123,79123,79122,79122,79165,79165,79182,79182,79121,79121,79120,79120,79119,79119,79118,79118,79117,79117,79116,79116,79115,79115,79149,79149,79114,79114,79113,79113,79112,79112,79111,79111,79110,79110,79148,79148,79174,79174,79181,79181,79173,79173,79147,79147,79109,79109,79108,79108,79107,79107,79164,79164,79106,79106,79105,79105,79104,79104,79103,79103,79102,79102,79146,79146,79145,79145,79101,79101,79100,79100,79099,79099,79098,79098,79097,79097,79096,79096,79172,79172,79180,79180,79095,79095,79094,79094,79093,79093,79092,79092,79091,79091,79144,79144,79171,79171,79090,79090,79089,79089,79088,79088,79087,79087,79086,79086,79085,79085,79084,79084,79083,79083,79082,79082,79081,79081,79163,79163,79080,79080,79079,79079,79078,79078,79143,79143,79142,79142,79077,79077,79076,79076,79075,79075,79074,79074,79073,79073,79072,79072,79071,79071,79162,79162,79179,79179,79178,79178,79141,79141,79070,79070,79069,79069,79068,79068,79067,79067,79066,79066,79065,79065,79064,79064,79063,79063,79062,79062,79061,79061,79060,79060,79140,79140,79059,79059,79058,79058,79057,79057,79056,79056,79055,79055,79054,79054,79053,79053,79052,79052,79051,79051,79050,79050,79161,79161,79049,79049,79048,79048,79047,79047,79046,79046,79045,79045,79044,79044,79043,79043,79042,79042,79041,79041,79040,79040,79160,79160,79039,79039,79038,79038,79037,79037,79036,79036,79035,79035,79139,79139,79034,79034,79033,79033,79032,79032,79031,79031,79030,79030,79029,79029,79028,79028,79027,79027,79159,79159,79138,79138,79026,79026,79025,79025,79024,79024,79158,79158,79023,79023,79022,79022,79021,79021,79020,79020,79019,79019,79018,79018,79017,79017,79016,79016,79015,79015,79014,79014,79013,79013,79157,79157,79012,79012,79011,79011,79010,79010,79009,79009,79008,79008,79007,79007,79177,79177,79137,79137,79006,79006,79005,79005,79004,79004,79003,79003,79002,79002,79001,79001,79170,79170,79169,79169,79000,79000,78999,78999,78998,78998,78997,78997,78996,78996,78995,78995,78994,78994,78993,78993,78992,78992,79156,79156,78991,78991,78990,78990,78989,78989,78988,78988,78987,78987,78986,78986,78985,78985,78984,78984,79155,79155,79168,79168,78983,78983,78982,78982,78981,78981,78980,78980,78979,78979,79154,79154,79241,79241,78978,78978,78977,78977,78976,78976,79136,79136,78975,78975,78974,78974,78973,78973,79185,79185,78972,78972,78971,78971,78970,78970,78969,78969,78968,78968,79153,79153,79152,79152,79135,79135,78967,78967,78966,78966,78965,78965,79201,79201,79184,79184,79167,79167,78964,78964,78963,78963,78962,78962,78961,78961,78960,78960,79134,79134,78959,78959,78958,78958,78957,78957,78956,78956,78955,78955,78954,78954,78953,78953,78952,78952,78951,78951,78950,78950,78949,78949,78948,78948,78947,78947,79151,79151,79176,79176,78946,78946,78945,78945,78944,78944,78943,78943,78942,78942,79150,79150,79166,79166,78941,78941,78940,78940,78939,78939,78938,78938,78937,78937,78936,78936,78935,78935,78934,78934,78933,78933,78932,78932,78931,78931,78930,78930,78929,78929,78928,78928,78927,78927,78926,78926,78925,78925,78924,78924,78923,78923,79175,79175,79188,79188,79192,79192,79200,79200,79206,79206,79199,79199,79191,79191,79133,79133,78922,78922,78690,78690,78691,78691,78692,78692,78693,78693,78694,78694,78783,78783,78834,78834,78795,78795,78784,78784,78774,78774,78754,78754,78695,78695,78696,78696,78697,78697,78698,78698,78699,78699,78700,78700,78701,78701,78702,78702,78703,78703,78704,78704,78705,78705,78706,78706,78707,78707,78806,78806,78820,78820,78852,78852,78839,78839,78755,78755,78708,78708,78709,78709,78710,78710,78711,78711,78712,78712,78713,78713,78714,78714,78715,78715,78741,78741,78716,78716,78717,78717,78718,78718,78719,78719,78720,78720,78721,78721,78722,78722,78723,78723,78756,78756,78497,78497,78921,78921,78920,78920,78919,78919,78918,78918,78917,78917,78916,79245,79244,79244,79340,79340,79346,79346,79345,79345,79339,79339,79338,79338,79337,79337,79336,79336,79335,79335,79334,79334,79333,79333,79332,79332,79331,79331,79330,79330,79329,79329,79328,79328,79327,79327,79326,79326,78543,78543,78544,78544,78742,78742,78545,78545,78546,78546,78547,78547,78548,78548,78549,78549,78743,78743,78767,78767,78788,78788,78797,78797,78800,78800,78550,78550,78551,78551,78552,78552,78759,78759,78553,78553,78554,78554,78555,78555,78556,78556,78557,78557,78558,78558,78559,78559,78560,78560,78561,78561,78562,78562,78563,78563,78760,78760,78564,78564,78565,78565,78566,78566,78567,78567,78568,78568,79325,79325,79324,79324,79323,79323,79322,79322,79321,79321,79320,79320,79319,79319,79318,79318,79317,79317,79316,79316,79315,79315,79314,79314,79313,79313,79312,79312,79311,79311,79310,79310,79309,79309,79308,79308,79307,79307,79306,79306,79305,79305,79304,79304,79303,79303,79302,79302,79301,79301,79300,79300,79299,79299,79298,79298,79297,79297,79296,79296,79295,79295,79294,79294,79293,79293,79353,79353,79376,79376,79352,79352,79292,79292,79291,79291,79290,79290,79289,79289,79288,79288,79287,79287,79286,79286,79285,79285,79351,79351,79368,79368,79284,79284,79283,79283,79282,79282,79281,79281,79280,79280,79279,79279,79278,79278,79344,79344,79277,79277,79276,79276,79275,79275,79274,79274,79273,79273,79272,79272,79271,79271,79350,79350,79348,79348,79270,79270,79269,79269,79268,79268,79267,79267,79266,79266,79265,79265,79264,79264,79263,79263,79262,79262,79261,79261,79260,79260,79259,79259,79341,79341,79258,79258,79257,79257,79256,79256,79255,79255,79254,79254,79253,79253,79252,79252,79251,79251,79250,79250,79249,79249,79248,79248,79247,79247,79246,79246,79245,79437,79436,79436,79443,79443,79442,79442,79441,79441,79440,79440,79439,79439,79438,79438,79437,79445,79444,79444,79558,79558,79557,79557,79556,79556,79555,79555,79564,79564,79554,79554,79553,79553,79552,79552,79551,79551,79550,79550,79549,79549,79548,79548,79547,79547,79546,79546,79545,79545,79544,79544,79574,79574,79543,79543,79542,79542,79541,79541,79540,79540,79539,79539,79538,79538,79571,79571,79591,79591,79601,79601,79620,79620,79563,79563,79537,79537,79536,79536,79535,79535,79534,79534,79533,79533,79532,79532,79531,79531,79530,79530,79529,79529,79528,79528,79527,79527,79526,79526,79525,79525,79524,79524,79523,79523,79569,79569,79568,79568,79522,79522,79521,79521,79520,79520,79562,79562,79519,79519,78916,78916,78917,78917,78918,78918,78919,78919,78920,78920,78921,78921,78497,78497,78498,78498,78499,78499,78500,78500,78501,78501,78502,78502,78503,78503,78785,78785,78775,78775,78504,78504,78505,78505,78506,78506,78507,78507,78508,78508,78509,78509,78510,78510,78511,78511,78512,78512,78513,78513,78514,78514,78515,78515,78516,78516,78517,78517,78786,78786,78766,78766,78757,78757,78518,78518,78519,78519,78520,78520,78521,78521,78522,78522,78523,78523,78524,78524,78525,78525,78526,78526,78527,78527,78528,78528,78529,78529,78530,78530,78531,78531,78532,78532,78533,78533,78534,78534,78870,78870,78861,78861,78844,78844,78758,78758,78724,78724,78535,78535,78536,78536,78537,78537,78538,78538,78539,78539,78540,78540,78541,78541,78542,78542,78543,78543,79326,79326,79327,79327,79328,79328,79329,79329,79330,79330,79331,79331,79332,79332,79333,79333,79334,79334,79335,79335,79336,79336,79337,79337,79338,79338,79339,79339,79345,79345,79346,79346,79340,79340,79244,79244,79245,79245,79518,79518,79517,79517,79516,79516,79515,79515,79514,79514,79561,79561,79513,79513,79512,79512,79511,79511,79560,79560,79510,79510,79509,79509,79508,79508,79507,79507,79506,79506,79505,79505,79570,79570,79573,79573,79504,79504,79503,79503,79502,79502,79501,79501,79500,79500,79499,79499,79498,79498,79497,79497,79496,79496,79495,79495,79494,79494,79493,79493,79492,79492,79491,79491,79490,79490,79489,79489,79488,79488,79487,79487,79486,79486,79485,79485,79484,79484,79483,79483,79482,79482,79481,79481,79480,79480,79479,79479,79478,79478,79477,79477,79476,79476,79475,79475,79474,79474,79473,79473,79472,79472,79566,79566,79565,79565,79471,79471,79470,79470,79469,79469,79468,79468,79467,79467,79466,79466,79465,79465,79464,79464,79581,79581,79463,79463,79462,79462,79461,79461,79460,79460,79459,79459,79458,79458,79457,79457,79456,79456,79455,79455,79454,79454,79453,79453,79452,79452,79451,79451,79450,79450,79449,79449,79448,79448,79447,79447,79559,79559,79446,79446,79445,79634,79633,79633,79642,79642,79641,79641,79640,79640,79639,79639,79638,79638,79637,79637,79636,79636,79635,79635,79634,79644,79643,79643,79649,79649,79648,79648,79647,79647,79646,79646,79645,79645,79644,79651,79650,79650,79840,79840,79821,79821,79820,79820,79819,79819,79818,79818,79817,79817,79839,79839,79816,79816,79815,79815,79814,79814,79813,79813,79812,79812,79852,79852,79838,79838,79811,79811,79810,79810,79809,79809,79851,79851,79837,79837,79808,79808,79807,79807,79806,79806,79805,79805,79804,79804,79803,79803,79836,79836,79802,79802,79801,79801,79800,79800,79799,79799,79798,79798,79835,79835,79858,79858,79867,79867,79862,79862,79797,79797,79796,79796,79795,79795,79794,79794,79793,79793,79834,79834,79850,79850,79792,79792,79791,79791,79790,79790,79789,79789,79788,79788,79833,79833,79857,79857,79787,79787,79786,79786,79785,79785,79784,79784,79783,79783,79782,79782,79781,79781,79832,79832,79856,79856,79849,79849,79831,79831,79780,79780,79779,79779,79778,79778,79848,79848,79777,79777,79776,79776,79775,79775,79830,79830,79829,79829,79774,79774,79773,79773,79772,79772,79866,79866,79855,79855,79771,79771,79770,79770,79769,79769,79768,79768,79767,79767,79766,79766,79765,79765,79764,79764,79763,79763,79762,79762,79761,79761,79760,79760,79759,79759,79758,79758,79757,79757,79756,79756,79755,79755,79754,79754,79753,79753,79847,79847,79871,79871,79861,79861,79752,79752,79751,79751,79750,79750,79749,79749,79748,79748,79747,79747,79746,79746,79745,79745,79744,79744,79743,79743,79742,79742,79741,79741,79740,79740,79739,79739,79738,79738,79737,79737,79736,79736,79735,79735,79734,79734,79733,79733,79732,79732,79846,79846,79845,79845,79828,79828,79731,79731,79730,79730,79729,79729,79860,79860,79728,79728,79727,79727,79726,79726,79725,79725,79724,79724,79723,79723,79722,79722,79827,79827,79721,79721,79720,79720,79719,79719,79718,79718,79717,79717,79826,79826,79874,79874,79716,79716,79715,79715,79714,79714,79713,79713,79712,79712,79711,79711,79710,79710,79844,79844,79859,79859,79825,79825,79709,79709,79708,79708,79707,79707,79706,79706,79705,79705,79704,79704,79703,79703,79702,79702,79701,79701,79700,79700,79699,79699,79824,79824,79698,79698,79697,79697,79696,79696,79695,79695,79694,79694,79693,79693,79692,79692,79854,79854,79691,79691,79690,79690,79689,79689,79823,79823,79688,79688,79687,79687,79686,79686,79685,79685,79684,79684,79683,79683,79682,79682,79681,79681,79680,79680,79679,79679,79678,79678,79843,79843,79842,79842,79677,79677,79676,79676,79675,79675,79674,79674,79673,79673,79672,79672,79671,79671,79670,79670,79669,79669,79668,79668,79853,79853,79667,79667,79666,79666,79665,79665,79664,79664,79663,79663,79662,79662,79661,79661,79660,79660,79864,79864,79869,79869,79872,79872,79875,79875,79878,79878,79884,79884,79882,79882,79863,79863,79659,79659,79658,79658,79657,79657,79822,79822,79841,79841,79656,79656,79655,79655,79654,79654,79653,79653,79652,79652,79651,79888,79887,79887,79904,79904,79903,79903,79902,79902,79901,79901,79900,79900,79899,79899,79898,79898,79897,79897,79896,79896,79895,79895,79894,79894,79893,79893,79892,79892,79891,79891,79890,79890,79905,79905,79889,79889,79888,79907,79906,79906,79918,79918,79917,79917,79916,79916,79915,79915,79914,79914,79913,79913,79912,79912,79911,79911,79910,79910,79909,79909,79908,79908,79907,79764,79919,79919,80090,80090,80089,80089,80088,80088,80087,80087,80086,80086,80085,80085,80084,80084,80083,80083,80082,80082,80081,80081,80080,80080,80117,80117,80126,80126,80116,80116,80079,80079,80078,80078,80077,80077,80076,80076,80075,80075,80132,80132,80074,80074,80073,80073,80072,80072,80071,80071,80070,80070,80069,80069,80068,80068,80067,80067,80066,80066,80065,80065,80064,80064,80063,80063,80062,80062,80061,80061,80131,80131,80142,80142,80160,80160,80141,80141,80115,80115,80060,80060,80059,80059,80058,80058,80057,80057,80056,80056,80055,80055,80054,80054,80053,80053,80114,80114,80130,80130,80052,80052,80051,80051,80050,80050,80049,80049,80048,80048,80047,80047,80046,80046,80045,80045,80044,80044,80043,80043,80042,80042,80041,80041,80040,80040,80105,80105,80039,80039,80038,80038,80037,80037,80036,80036,80035,80035,80034,80034,80033,80033,80032,80032,80031,80031,80030,80030,80029,80029,80028,80028,80027,80027,80185,80185,80026,80026,80025,80025,80024,80024,80023,80023,80022,80022,80021,80021,80020,80020,80019,80019,80018,80018,80017,80017,80016,80016,80015,80015,80104,80104,80014,80014,80013,80013,80012,80012,80011,80011,80010,80010,80009,80009,80008,80008,80007,80007,80006,80006,80125,80125,80139,80139,80158,80158,80113,80113,80103,80103,80005,80005,80004,80004,80003,80003,80148,80148,80138,80138,80102,80102,80002,80002,80001,80001,80000,80000,79999,79999,79998,79998,79997,79997,79996,79996,80112,80112,79995,79995,79994,79994,79993,79993,80101,80101,80111,80111,80124,80124,80129,80129,80137,80137,80147,80147,80157,80157,80170,80170,80183,80183,80202,80202,80223,80223,80232,80232,80209,80209,80155,80155,80145,80145,80135,80135,80123,80123,80110,80110,79445,79445,79446,79446,79559,79559,79447,79447,79448,79448,79449,79449,79450,79450,79451,79451,79452,79452,79453,79453,79454,79454,79455,79455,79456,79456,79457,79457,79458,79458,79459,79459,79460,79460,79461,79461,79462,79462,79463,79463,79581,79581,79464,79464,79465,79465,79466,79466,79467,79467,79468,79468,79469,79469,79470,79470,79471,79471,79565,79565,79566,79566,79472,79472,79473,79473,79474,79474,79475,79475,79476,79476,79477,79477,79478,79478,79479,79479,79480,79480,79481,79481,79482,79482,79483,79483,79484,79484,79485,79485,79992,79992,79991,79991,79990,79990,79989,79989,79988,79988,79987,79987,79986,79986,80122,80122,79985,79985,79984,79984,79983,79983,79982,79982,79981,79981,79980,79980,79979,79979,79978,79978,79977,79977,79976,79976,79975,79975,79974,79974,80109,80109,80121,80121,79973,79973,79972,79972,79971,79971,79970,79970,79969,79969,80100,80100,80120,80120,80099,80099,79968,79968,79967,79967,79966,79966,79965,79965,79964,79964,79963,79963,79962,79962,79961,79961,79960,79960,79959,79959,79958,79958,79957,79957,79956,79956,79955,79955,79954,79954,79953,79953,79952,79952,79951,79951,79950,79950,79949,79949,79948,79948,79947,79947,79946,79946,79945,79945,79944,79944,79943,79943,80098,80098,79942,79942,79941,79941,79940,79940,80108,80108,79939,79939,79938,79938,79937,79937,80097,80097,80119,80119,80133,80133,80107,80107,80096,80096,79936,79936,79935,79935,79934,79934,79933,79933,79932,79932,79931,79931,79930,79930,80106,80106,80127,80127,80095,80095,79929,79929,79928,79928,79927,79927,79926,79926,79925,79925,80094,80094,80118,80118,80093,80093,79924,79924,79923,79923,79922,79922,79921,79921,79920,79920,80092,80092,80091,80091,79723,79723,79724,79724,79725,79725,79726,79726,79727,79727,79728,79728,79860,79860,79729,79729,79730,79730,79731,79731,79828,79828,79845,79845,79846,79846,79732,79732,79733,79733,79734,79734,79735,79735,79736,79736,79737,79737,79738,79738,79739,79739,79740,79740,79741,79741,79742,79742,79743,79743,79744,79744,79745,79745,79746,79746,79747,79747,79748,79748,79749,79749,79750,79750,79751,79751,79752,79752,79861,79861,79871,79871,79847,79847,79753,79753,79754,79754,79755,79755,79756,79756,79757,79757,79758,79758,79759,79759,79760,79760,79761,79761,79762,79762,79763,79763,79764,80304,80303,80303,80314,80314,80313,80313,80312,80312,80311,80311,80310,80310,80309,80309,80308,80308,80307,80307,80306,80306,80305,80305,80304,79313,79314,79314,79315,79315,79316,79316,79317,79317,79318,79318,79319,79319,79320,79320,79321,79321,79322,79322,79323,79323,79324,79324,79325,79325,78568,78568,78569,78569,78791,78791,78570,78570,78571,78571,78572,78572,78573,78573,78574,78574,78575,78575,78576,78576,78577,78577,78578,78578,78579,78579,78725,78725,78726,78726,78580,78580,78581,78581,78582,78582,78744,78744,78745,78745,78727,78727,78583,78583,78584,78584,78585,78585,78586,78586,78587,78587,78728,78728,78588,78588,78589,78589,78590,78590,78729,78729,78779,78779,78762,78762,78746,78746,78591,78591,78592,78592,78593,78593,78594,78594,80336,80336,80335,80335,80334,80334,80333,80333,80332,80332,80337,80337,80342,80342,80345,80345,80350,80350,80331,80331,80330,80330,80329,80329,80328,80328,80327,80327,80326,80326,80325,80325,80338,80338,80324,80324,80323,80323,80322,80322,80321,80321,80320,80320,80319,80319,80318,80318,80317,80317,80316,80316,80315,80315,79313,80353,80352,80352,80635,80635,80634,80634,80633,80633,80632,80632,80631,80631,80672,80672,80630,80630,80629,80629,80628,80628,80627,80627,80626,80626,80625,80625,80624,80624,80623,80623,80657,80657,80622,80622,80621,80621,80620,80620,80619,80619,80618,80618,80617,80617,80702,80702,80656,80656,80616,80616,80615,80615,80614,80614,80613,80613,80612,80612,80655,80655,80685,80685,80611,80611,80610,80610,80609,80609,80608,80608,80607,80607,80606,80606,80605,80605,80604,80604,80603,80603,80602,80602,80601,80601,80600,80600,80710,80710,80701,80701,80684,80684,80599,80599,80598,80598,80597,80597,80596,80596,80595,80595,80671,80671,80763,80763,80789,80789,80683,80683,80670,80670,80594,80594,80593,80593,80592,80592,80591,80591,80590,80590,80589,80589,80588,80588,80587,80587,80586,80586,80585,80585,80584,80584,80583,80583,80582,80582,80581,80581,80580,80580,80579,80579,80578,80578,80577,80577,80576,80576,80669,80669,80575,80575,80574,80574,80573,80573,80572,80572,80571,80571,80570,80570,80569,80569,80568,80568,80567,80567,80566,80566,80565,80565,80564,80564,80654,80654,80668,80668,80653,80653,80563,80563,80562,80562,80561,80561,80560,80560,80559,80559,80558,80558,80557,80557,80667,80667,80700,80700,80699,80699,80682,80682,80652,80652,80556,80556,80555,80555,80554,80554,80651,80651,80553,80553,80552,80552,80551,80551,80650,80650,80550,80550,80549,80549,80548,80548,80708,80708,80698,80698,80681,80681,80666,80666,80649,80649,80547,80547,80546,80546,80545,80545,80680,80680,80665,80665,80544,80544,80543,80543,80542,80542,80648,80648,80541,80541,80540,80540,80539,80539,80538,80538,80537,80537,80536,80536,80535,80535,80534,80534,80533,80533,80532,80532,80531,80531,80697,80697,80719,80719,80647,80647,80530,80530,80529,80529,80528,80528,80527,80527,80526,80526,80646,80646,80679,80679,80525,80525,80524,80524,80523,80523,80522,80522,80521,80521,80520,80520,80519,80519,80518,80518,80517,80517,80516,80516,80515,80515,80514,80514,80513,80513,80512,80512,80511,80511,80510,80510,80509,80509,80508,80508,80507,80507,80645,80645,80644,80644,80506,80506,80505,80505,80504,80504,80503,80503,80502,80502,80501,80501,80500,80500,80499,80499,80664,80664,80498,80498,80497,80497,80496,80496,80495,80495,80494,80494,80493,80493,80492,80492,80491,80491,80490,80490,80489,80489,80488,80488,80487,80487,80486,80486,80485,80485,80484,80484,80483,80483,80482,80482,80481,80481,80480,80480,80479,80479,80478,80478,80477,80477,80476,80476,80707,80707,80475,80475,80474,80474,80473,80473,80472,80472,80471,80471,80470,80470,80469,80469,80468,80468,80467,80467,80466,80466,80696,80696,80744,80744,80786,80786,80779,80779,80757,80757,80729,80729,80643,80643,80465,80465,80464,80464,80463,80463,80462,80462,80461,80461,80460,80460,80459,80459,80458,80458,80457,80457,80456,80456,80455,80455,80454,80454,80453,80453,80452,80452,80451,80451,80450,80450,80449,80449,80448,80448,80447,80447,80446,80446,80445,80445,80444,80444,80443,80443,80442,80442,80441,80441,80440,80440,80439,80439,80678,80678,80438,80438,80437,80437,80436,80436,80706,80706,80695,80695,80677,80677,80435,80435,80434,80434,80433,80433,80432,80432,80431,80431,80430,80430,80429,80429,80428,80428,80427,80427,80426,80426,80425,80425,80424,80424,80423,80423,80422,80422,80705,80705,80694,80694,80421,80421,80420,80420,80419,80419,80418,80418,80417,80417,80416,80416,80415,80415,80414,80414,80413,80413,80715,80715,80663,80663,80412,80412,80411,80411,80410,80410,80409,80409,80408,80408,80407,80407,80406,80406,80405,80405,80404,80404,80403,80403,80662,80662,80693,80693,80402,80402,80401,80401,80400,80400,80399,80399,80398,80398,80397,80397,80396,80396,80395,80395,80394,80394,80661,80661,80692,80692,80642,80642,80393,80393,80392,80392,80391,80391,80660,80660,80390,80390,80389,80389,80388,80388,80733,80733,80723,80723,80691,80691,80676,80676,80641,80641,80387,80387,80386,80386,80385,80385,80384,80384,80383,80383,80382,80382,80381,80381,80640,80640,80380,80380,80379,80379,80378,80378,80377,80377,80376,80376,80375,80375,80374,80374,80659,80659,80690,80690,80688,80688,80674,80674,80639,80639,80373,80373,80372,80372,80371,80371,80658,80658,80370,80370,80369,80369,80368,80368,80638,80638,80673,80673,80687,80687,80711,80711,80722,80722,80367,80367,80366,80366,80365,80365,80364,80364,80363,80363,80637,80637,80686,80686,80636,80636,80362,80362,80361,80361,80360,80360,80359,80359,80358,80358,80357,80357,80356,80356,80355,80355,80354,80354,80353,80680,80545,80545,80546,80546,80866,80866,80874,80874,80865,80865,80864,80864,80863,80863,80862,80862,80861,80861,80860,80860,80859,80859,80858,80858,80873,80873,80878,80878,80881,80881,80857,80857,80856,80856,80855,80855,80872,80872,80877,80877,80880,80880,80884,80884,80886,80886,80854,80854,80853,80853,80852,80852,80871,80871,80876,80876,80879,80879,80904,80904,80906,80906,80910,80910,80911,80911,80912,80912,80908,80908,80902,80902,80900,80900,80898,80898,80896,80896,80894,80894,80889,80889,80887,80887,80885,80885,80875,80875,80870,80870,80851,80851,80850,80850,80849,80849,80848,80848,80847,80847,80846,80846,80845,80845,80869,80869,80844,80844,80843,80843,80842,80842,80891,80891,80899,80899,80883,80883,80868,80868,80841,80841,80840,80840,80839,80839,80838,80838,80837,80837,80836,80836,80835,80835,80834,80834,80833,80833,80832,80832,80831,80831,80830,80830,80867,80867,80829,80829,80828,80828,80827,80827,80826,80826,80825,80825,80824,80824,80823,80823,80822,80822,80821,80821,80820,80820,80819,80819,80818,80818,80817,80817,80816,80816,80815,80815,80814,80814,80813,80813,80812,80812,80811,80811,80810,80810,80809,80809,80808,80808,80435,80435,80677,80677,80695,80695,80706,80706,80436,80436,80437,80437,80438,80438,80678,80678,80439,80439,80440,80440,80441,80441,80442,80442,80443,80443,80444,80444,80445,80445,80446,80446,80447,80447,80448,80448,80449,80449,80450,80450,80451,80451,80452,80452,80453,80453,80454,80454,80455,80455,80456,80456,80457,80457,80458,80458,80459,80459,80460,80460,80461,80461,80462,80462,80463,80463,80464,80464,80465,80465,80643,80643,80729,80729,80757,80757,80779,80779,80786,80786,80744,80744,80696,80696,80466,80466,80467,80467,80468,80468,80469,80469,80470,80470,80471,80471,80472,80472,80473,80473,80474,80474,80475,80475,80707,80707,80476,80476,80477,80477,80478,80478,80479,80479,80480,80480,80481,80481,80482,80482,80483,80483,80484,80484,80485,80485,80486,80486,80487,80487,80488,80488,80489,80489,80490,80490,80491,80491,80492,80492,80493,80493,80494,80494,80495,80495,80496,80496,80497,80497,80498,80498,80664,80664,80499,80499,80500,80500,80501,80501,80502,80502,80503,80503,80504,80504,80505,80505,80506,80506,80644,80644,80645,80645,80507,80507,80508,80508,80509,80509,80510,80510,80511,80511,80512,80512,80513,80513,80514,80514,80515,80515,80516,80516,80517,80517,80518,80518,80519,80519,80520,80520,80521,80521,80522,80522,80523,80523,80524,80524,80525,80525,80679,80679,80646,80646,80526,80526,80527,80527,80528,80528,80529,80529,80530,80530,80647,80647,80719,80719,80697,80697,80531,80531,80532,80532,80533,80533,80534,80534,80535,80535,80536,80536,80537,80537,80538,80538,80539,80539,80540,80540,80541,80541,80648,80648,80542,80542,80543,80543,80544,80544,80665,80665,80680,80914,80913,80913,81173,81173,81172,81172,81171,81171,81170,81170,81169,81169,81168,81168,81167,81167,81166,81166,81218,81218,81212,81212,81165,81165,81164,81164,81163,81163,81162,81162,81161,81161,81223,81223,81211,81211,81160,81160,81159,81159,81158,81158,81157,81157,81156,81156,81155,81155,81154,81154,81153,81153,81196,81196,81152,81152,81151,81151,81150,81150,81210,81210,81149,81149,81148,81148,81147,81147,81146,81146,81145,81145,81144,81144,81143,81143,81142,81142,81195,81195,81141,81141,81140,81140,81139,81139,81194,81194,81138,81138,81137,81137,81136,81136,81135,81135,81134,81134,81133,81133,81132,81132,81131,81131,81130,81130,81129,81129,81128,81128,81209,81209,81230,81230,81242,81242,81229,81229,81217,81217,81193,81193,81127,81127,81126,81126,81125,81125,81124,81124,81123,81123,81122,81122,81222,81222,81237,81237,81121,81121,81120,81120,81119,81119,81192,81192,81118,81118,81117,81117,81116,81116,81191,81191,81115,81115,81114,81114,81113,81113,81208,81208,81190,81190,81112,81112,81111,81111,81110,81110,81216,81216,81207,81207,81109,81109,81108,81108,81107,81107,81189,81189,81251,81251,81246,81246,81188,81188,81106,81106,81105,81105,81104,81104,81206,81206,81103,81103,81102,81102,81101,81101,81100,81100,81099,81099,81098,81098,81097,81097,81096,81096,81095,81095,81094,81094,81093,81093,81215,81215,81187,81187,81092,81092,81091,81091,81090,81090,81241,81241,81258,81258,81186,81186,81089,81089,81088,81088,81087,81087,81245,81245,81240,81240,81221,81221,81086,81086,81085,81085,81084,81084,81083,81083,81082,81082,81081,81081,81080,81080,81185,81185,81205,81205,81079,81079,81078,81078,81077,81077,81076,81076,81075,81075,81074,81074,81073,81073,81072,81072,81071,81071,81070,81070,81069,81069,81068,81068,81067,81067,81066,81066,81065,81065,81064,81064,81063,81063,81062,81062,81061,81061,81060,81060,81059,81059,81058,81058,81057,81057,81056,81056,81055,81055,81054,81054,81053,81053,81052,81052,81051,81051,81050,81050,81049,81049,81048,81048,81047,81047,81046,81046,81045,81045,81204,81204,81044,81044,81043,81043,81042,81042,81041,81041,81040,81040,81039,81039,81038,81038,81037,81037,81036,81036,81035,81035,81184,81184,81034,81034,81033,81033,81032,81032,81031,81031,81030,81030,81029,81029,81028,81028,81027,81027,81026,81026,81025,81025,81183,81183,81214,81214,81203,81203,81024,81024,81023,81023,81022,81022,81021,81021,81020,81020,81019,81019,81018,81018,81182,81182,81017,81017,81016,81016,81015,81015,81202,81202,81014,81014,81013,81013,81012,81012,81011,81011,81010,81010,81009,81009,81008,81008,81007,81007,81006,81006,81005,81005,81004,81004,81201,81201,81003,81003,81002,81002,81001,81001,81181,81181,81180,81180,81000,81000,80999,80999,80998,80998,80997,80997,80996,80996,80995,80995,80994,80994,80993,80993,81179,81179,80992,80992,80991,80991,80990,80990,80989,80989,80988,80988,80987,80987,80986,80986,81200,81200,81199,81199,80985,80985,80984,80984,80983,80983,80982,80982,80981,80981,80980,80980,80979,80979,80978,80978,81178,81178,80977,80977,80976,80976,80975,80975,81213,81213,80974,80974,80973,80973,80972,80972,80971,80971,80970,80970,80969,80969,80968,80968,80967,80967,80966,80966,80965,80965,81177,81177,80964,80964,80963,80963,80962,80962,80961,80961,80960,80960,80959,80959,81176,81176,80958,80958,80957,80957,80956,80956,80955,80955,80954,80954,80953,80953,80952,80952,81175,81175,81219,81219,81231,81231,80951,80951,80950,80950,80949,80949,80948,80948,80947,80947,80946,80946,80945,80945,80944,80944,80943,80943,80942,80942,80941,80941,80940,80940,81198,81198,80939,80939,80938,80938,80937,80937,80936,80936,80935,80935,81224,81224,81197,81197,81174,81174,80934,80934,80933,80933,80932,80932,80931,80931,80930,80930,80929,80929,80928,80928,80927,80927,80926,80926,80925,80925,80924,80924,80923,80923,80922,80922,80921,80921,80920,80920,80919,80919,80918,80918,80917,80917,80916,80916,80915,80915,80914,80067,81267,81267,81627,81627,81626,81626,81625,81625,81624,81624,81623,81623,81622,81622,81687,81687,81621,81621,81620,81620,81619,81619,81618,81618,81617,81617,81616,81616,81615,81615,81614,81614,81613,81613,81657,81657,81612,81612,81611,81611,81610,81610,81609,81609,81608,81608,81607,81607,81606,81606,81605,81605,81604,81604,81603,81603,81602,81602,81601,81601,81600,81600,81599,81599,81598,81598,81597,81597,81596,81596,81871,81871,81686,81686,81656,81656,81595,81595,81594,81594,81593,81593,81655,81655,81592,81592,81591,81591,81590,81590,81710,81710,81685,81685,81589,81589,81588,81588,81587,81587,81586,81586,81585,81585,81584,81584,81583,81583,81582,81582,81581,81581,81580,81580,81579,81579,81578,81578,81577,81577,81576,81576,81575,81575,81574,81574,81573,81573,81572,81572,81571,81571,81654,81654,81684,81684,81696,81696,81570,81570,81569,81569,81568,81568,81567,81567,81566,81566,81565,81565,81564,81564,81563,81563,81562,81562,81561,81561,81683,81683,81560,81560,81559,81559,81558,81558,81557,81557,81556,81556,81671,81671,81682,81682,81555,81555,81554,81554,81553,81553,81653,81653,81552,81552,81551,81551,81550,81550,81549,81549,81548,81548,81547,81547,81546,81546,81545,81545,81731,81731,81721,81721,81695,81695,81681,81681,81544,81544,81543,81543,81542,81542,81541,81541,81540,81540,81539,81539,81538,81538,81537,81537,81536,81536,81535,81535,81534,81534,81533,81533,81532,81532,81531,81531,81530,81530,81529,81529,81528,81528,81527,81527,81526,81526,81525,81525,81524,81524,81523,81523,81694,81694,81522,81522,81521,81521,81520,81520,81519,81519,81518,81518,81517,81517,81652,81652,81516,81516,81515,81515,81514,81514,81513,81513,81512,81512,81651,81651,81680,81680,81670,81670,81511,81511,81510,81510,81509,81509,81508,81508,81507,81507,81506,81506,81679,81679,81505,81505,81504,81504,81503,81503,81502,81502,81501,81501,81669,81669,81500,81500,81499,81499,81498,81498,81497,81497,81496,81496,81668,81668,81495,81495,81494,81494,81493,81493,81492,81492,81491,81491,81490,81490,81489,81489,81488,81488,81487,81487,81486,81486,81650,81650,81485,81485,81484,81484,81483,81483,81709,81709,81707,81707,81649,81649,81482,81482,81481,81481,81480,81480,81479,81479,81478,81478,81648,81648,81647,81647,81477,81477,81476,81476,81475,81475,81667,81667,81756,81756,81729,81729,81719,81719,81706,81706,81692,81692,81666,81666,81474,81474,81473,81473,81472,81472,81471,81471,81470,81470,81678,81678,81888,81888,81469,81469,81468,81468,81467,81467,81773,81773,81705,81705,81665,81665,81466,81466,81465,81465,81464,81464,81463,81463,81462,81462,81461,81461,81460,81460,81459,81459,81458,81458,81457,81457,81646,81646,81456,81456,81455,81455,81454,81454,81453,81453,81452,81452,81451,81451,81450,81450,81449,81449,81448,81448,81447,81447,81446,81446,81445,81445,81444,81444,81443,81443,81442,81442,81441,81441,81440,81440,81439,81439,81664,81664,81438,81438,81437,81437,81436,81436,81435,81435,81434,81434,81433,81433,81432,81432,81431,81431,81430,81430,81429,81429,81754,81754,81428,81428,81427,81427,81426,81426,81425,81425,81424,81424,81423,81423,81422,81422,81421,81421,81420,81420,81419,81419,81663,81663,81418,81418,81417,81417,81416,81416,81415,81415,81414,81414,81413,81413,81412,81412,81411,81411,81887,81887,81410,81410,81409,81409,81408,81408,81407,81407,81406,81406,81405,81405,81404,81404,81403,81403,81402,81402,81401,81401,81400,81400,81677,81677,81691,81691,81690,81690,81399,81399,81398,81398,81397,81397,81396,81396,81395,81395,81662,81662,81394,81394,81393,81393,81392,81392,81645,81645,80938,80938,80939,80939,81198,81198,80940,80940,80941,80941,80942,80942,80943,80943,80944,80944,80945,80945,80946,80946,80947,80947,80948,80948,80949,80949,80950,80950,80951,80951,81231,81231,81219,81219,81175,81175,80952,80952,80953,80953,80954,80954,80955,80955,80956,80956,80957,80957,80958,80958,81176,81176,80959,80959,80960,80960,80961,80961,80962,80962,80963,80963,80964,80964,81177,81177,80965,80965,80966,80966,80967,80967,80968,80968,80969,80969,80970,80970,80971,80971,80972,80972,80973,80973,80974,80974,81213,81213,80975,80975,80976,80976,80977,80977,81178,81178,80978,80978,80979,80979,80980,80980,80981,80981,80982,80982,80983,80983,80984,80984,80985,80985,81199,81199,81200,81200,80986,80986,80987,80987,80988,80988,80989,80989,80990,80990,80991,80991,80992,80992,81179,81179,80993,80993,80994,80994,80995,80995,80996,80996,80997,80997,80998,80998,80999,80999,81000,81000,81180,81180,81181,81181,81001,81001,81002,81002,81003,81003,81201,81201,81004,81004,81005,81005,81006,81006,81007,81007,81008,81008,81009,81009,81391,81391,81390,81390,81644,81644,81389,81389,81388,81388,81387,81387,81386,81386,81385,81385,81384,81384,81383,81383,81382,81382,81381,81381,81380,81380,81643,81643,81379,81379,81378,81378,81377,81377,81661,81661,81642,81642,81376,81376,81375,81375,81374,81374,81641,81641,81373,81373,81372,81372,81371,81371,81370,81370,81369,81369,81368,81368,81367,81367,81366,81366,81365,81365,81364,81364,81363,81363,81362,81362,81361,81361,81360,81360,81359,81359,81358,81358,81357,81357,81660,81660,81356,81356,81355,81355,81354,81354,81640,81640,81639,81639,81353,81353,81352,81352,81351,81351,81350,81350,81349,81349,81638,81638,81348,81348,81347,81347,81346,81346,81345,81345,81344,81344,81637,81637,81343,81343,81342,81342,81341,81341,81636,81636,81340,81340,81339,81339,81338,81338,79075,79075,79076,79076,79077,79077,79142,79142,79143,79143,79078,79078,79079,79079,79080,79080,79163,79163,79081,79081,79082,79082,79083,79083,79084,79084,79085,79085,79086,79086,79087,79087,79088,79088,79089,79089,79090,79090,79171,79171,79144,79144,79091,79091,79092,79092,79093,79093,79094,79094,79095,79095,79180,79180,79172,79172,79096,79096,79097,79097,79098,79098,79099,79099,79100,79100,79101,79101,79145,79145,79146,79146,79102,79102,79103,79103,79104,79104,79105,79105,79106,79106,79164,79164,79107,79107,79108,79108,79109,79109,81337,81337,81336,81336,81335,81335,81334,81334,81659,81659,81676,81676,81675,81675,81333,81333,81332,81332,81331,81331,81330,81330,81329,81329,81658,81658,81698,81698,81635,81635,81328,81328,81327,81327,81326,81326,81634,81634,81325,81325,81324,81324,81323,81323,81322,81322,81321,81321,81320,81320,81319,81319,81318,81318,81317,81317,81316,81316,81315,81315,81314,81314,81633,81633,81313,81313,81312,81312,81311,81311,81674,81674,81310,81310,81309,81309,81308,81308,81307,81307,81306,81306,81305,81305,81304,81304,81303,81303,81302,81302,81301,81301,81300,81300,81299,81299,81298,81298,81297,81297,81296,81296,81632,81632,81295,81295,81294,81294,81293,81293,81292,81292,81291,81291,81290,81290,81673,81673,81689,81689,81688,81688,81631,81631,81289,81289,81288,81288,81287,81287,81286,81286,81285,81285,81630,81630,81672,81672,81284,81284,81283,81283,81282,81282,81281,81281,81280,81280,81279,81279,81629,81629,81278,81278,81277,81277,81276,81276,81275,81275,81274,81274,81628,81628,81273,81273,81272,81272,81271,81271,81270,81270,81269,81269,81268,81268,80043,80043,80044,80044,80045,80045,80046,80046,80047,80047,80048,80048,80049,80049,80050,80050,80051,80051,80052,80052,80130,80130,80114,80114,80053,80053,80054,80054,80055,80055,80056,80056,80057,80057,80058,80058,80059,80059,80060,80060,80115,80115,80141,80141,80160,80160,80142,80142,80131,80131,80061,80061,80062,80062,80063,80063,80064,80064,80065,80065,80066,80066,80067,81933,82113,82113,82112,82112,82111,82111,82110,82110,82109,82109,82108,82108,82107,82107,82106,82106,82105,82105,82104,82104,82103,82103,82129,82129,82128,82128,82102,82102,82101,82101,82100,82100,82141,82141,82158,82158,82183,82183,82182,82182,82099,82099,82098,82098,82097,82097,82096,82096,82095,82095,82094,82094,82093,82093,82140,82140,82151,82151,82170,82170,82198,82198,82092,82092,82091,82091,82090,82090,82089,82089,82088,82088,82087,82087,82086,82086,82085,82085,82084,82084,82083,82083,82082,82082,82081,82081,82080,82080,82079,82079,82078,82078,82077,82077,82076,82076,82075,82075,82074,82074,82127,82127,82139,82139,82073,82073,82072,82072,82071,82071,82070,82070,82069,82069,82068,82068,82067,82067,82066,82066,82065,82065,82064,82064,82063,82063,82062,82062,82126,82126,82138,82138,82149,82149,82156,82156,82168,82168,82180,82180,82148,82148,82061,82061,82060,82060,82059,82059,82125,82125,82124,82124,82058,82058,82057,82057,82056,82056,82155,82155,82055,82055,82054,82054,82053,82053,82052,82052,82051,82051,82137,82137,82050,82050,82049,82049,82048,82048,82047,82047,82046,82046,82045,82045,82044,82044,82043,82043,82042,82042,82041,82041,82040,82040,82039,82039,82136,82136,82147,82147,82123,82123,82038,82038,82037,82037,82036,82036,82135,82135,82196,82196,82217,82217,82035,82035,82034,82034,82033,82033,82032,82032,82031,82031,82030,82030,82029,82029,82028,82028,82134,82134,82122,82122,82027,82027,82026,82026,82025,82025,82024,82024,82023,82023,82022,82022,82021,82021,82020,82020,82019,82019,82018,82018,82017,82017,82146,82146,82016,82016,82015,82015,82014,82014,82013,82013,82012,82012,82011,82011,82010,82010,82009,82009,82008,82008,82007,82007,82006,82006,82005,82005,82004,82004,82003,82003,82002,82002,82001,82001,82000,82000,81999,81999,81998,81998,82121,82121,82145,82145,82165,82165,82195,82195,82120,82120,81997,81997,81996,81996,81995,81995,81994,81994,81993,81993,81992,81992,81991,81991,81990,81990,82119,82119,81989,81989,81988,81988,81987,81987,81986,81986,81985,81985,81984,81984,81983,81983,81982,81982,81981,81981,81980,81980,81979,81979,81978,81978,81977,81977,81976,81976,81975,81975,81974,81974,81973,81973,81972,81972,81971,81971,81970,81970,81969,81969,81968,81968,81967,81967,81966,81966,82118,82118,81965,81965,81964,81964,81963,81963,82163,82163,81962,81962,81961,81961,81960,81960,81959,81959,81958,81958,82117,82117,81957,81957,81956,81956,81955,81955,81954,81954,81953,81953,81952,81952,81951,81951,81950,81950,81949,81949,81948,81948,81947,81947,81946,81946,81945,81945,82132,82132,82153,82153,82162,82162,82116,82116,81944,81944,81943,81943,81942,81942,82131,82131,81941,81941,81940,81940,81939,81939,82115,82115,82142,82142,82114,82114,81938,81938,81937,81937,81936,81936,82130,82130,82244,82244,82238,82238,82159,82159,81935,81935,81934,81934,81933,82246,82540,82540,82539,82539,82538,82538,82537,82537,82536,82536,82535,82535,82534,82534,82533,82533,82532,82532,82531,82531,82530,82530,82581,82581,82529,82529,82528,82528,82527,82527,82526,82526,82525,82525,82644,82644,82524,82524,82523,82523,82522,82522,82580,82580,82521,82521,82520,82520,82519,82519,82518,82518,82517,82517,82516,82516,82515,82515,82579,82579,82514,82514,82513,82513,82512,82512,82511,82511,82510,82510,82613,82613,82509,82509,82508,82508,82507,82507,82506,82506,82505,82505,82674,82674,82734,82734,82763,82763,82578,82578,82504,82504,82503,82503,82502,82502,82834,82834,82864,82864,82845,82845,82501,82501,82500,82500,82499,82499,82577,82577,82791,82791,82759,82759,82706,82706,82498,82498,82497,82497,82496,82496,82495,82495,82494,82494,82493,82493,82492,82492,82491,82491,82490,82490,82489,82489,82488,82488,82487,82487,82486,82486,82485,82485,82484,82484,82576,82576,82483,82483,82482,82482,82481,82481,82480,82480,82479,82479,82478,82478,82477,82477,82643,82643,82476,82476,82475,82475,82474,82474,82473,82473,82472,82472,82471,82471,82470,82470,82469,82469,82468,82468,82612,82612,82575,82575,82467,82467,82466,82466,82465,82465,82464,82464,82463,82463,82462,82462,82461,82461,82460,82460,82459,82459,82458,82458,82611,82611,82457,82457,82456,82456,82455,82455,82454,82454,82453,82453,82610,82610,82574,82574,82452,82452,82451,82451,82450,82450,82609,82609,82449,82449,82448,82448,82447,82447,82446,82446,82445,82445,82444,82444,82443,82443,82442,82442,82441,82441,82440,82440,82439,82439,82438,82438,82437,82437,82641,82641,82436,82436,82435,82435,82434,82434,82699,82699,82433,82433,82432,82432,82431,82431,82430,82430,82429,82429,82428,82428,82427,82427,82573,82573,82640,82640,82426,82426,82425,82425,82424,82424,82423,82423,82422,82422,82421,82421,82420,82420,82419,82419,82608,82608,82639,82639,82752,82752,82784,82784,82725,82725,82698,82698,82638,82638,82418,82418,82417,82417,82416,82416,82415,82415,82414,82414,82413,82413,82412,82412,82670,82670,82411,82411,82410,82410,82409,82409,82408,82408,82407,82407,82406,82406,82405,82405,82404,82404,82403,82403,82402,82402,82401,82401,82400,82400,82607,82607,82637,82637,82724,82724,82783,82783,82820,82820,82635,82635,82605,82605,82399,82399,82398,82398,82397,82397,82396,82396,82327,82327,82337,82337,82587,82587,82027,82027,82122,82122,82134,82134,82028,82028,82029,82029,82030,82030,82031,82031,82032,82032,82033,82033,82034,82034,82035,82035,82217,82217,82196,82196,82135,82135,82036,82036,82037,82037,82038,82038,82123,82123,82147,82147,82136,82136,82039,82039,82040,82040,82041,82041,82042,82042,82043,82043,82044,82044,82045,82045,82046,82046,82047,82047,82048,82048,82049,82049,82050,82050,82137,82137,82051,82051,82052,82052,82053,82053,82054,82054,82055,82055,82155,82155,82056,82056,82057,82057,82058,82058,82124,82124,82125,82125,82059,82059,82060,82060,82061,82061,82148,82148,82180,82180,82168,82168,82156,82156,82149,82149,82138,82138,82126,82126,82062,82062,82323,82323,82322,82322,82321,82321,82320,82320,82319,82319,82318,82318,82317,82317,82316,82316,82315,82315,82314,82314,82313,82313,82312,82312,82311,82311,82554,82554,82645,82645,82677,82677,82767,82767,82553,82553,82310,82310,82309,82309,82308,82308,82307,82307,82306,82306,82552,82552,82616,82616,82586,82586,82305,82305,82304,82304,82303,82303,82551,82551,82550,82550,82302,82302,82301,82301,82300,82300,82800,82800,82615,82615,82585,82585,82299,82299,82298,82298,82297,82297,82296,82296,82295,82295,82294,82294,82293,82293,82292,82292,82291,82291,82290,82290,82289,82289,82288,82288,82287,82287,82549,82549,82286,82286,82285,82285,82284,82284,82283,82283,82282,82282,82736,82736,82548,82548,82281,82281,82280,82280,82279,82279,82584,82584,82812,82812,82795,82795,82709,82709,82278,82278,82277,82277,82276,82276,82547,82547,82275,82275,82274,82274,82273,82273,82272,82272,82271,82271,82583,82583,82270,82270,82269,82269,82268,82268,82546,82546,82267,82267,82266,82266,82265,82265,82264,82264,82263,82263,82545,82545,82262,82262,82261,82261,82260,82260,82544,82544,82259,82259,82258,82258,82257,82257,82543,82543,82256,82256,82255,82255,82254,82254,82542,82542,82253,82253,82252,82252,82251,82251,82250,82250,82249,82249,82541,82541,82614,82614,82582,82582,82248,82248,82247,82247,82246,82657,82689,82689,82737,82737,82768,82768,82625,82625,82568,82568,82368,82368,82367,82367,82366,82366,82598,82598,82918,82918,82922,82922,82926,82926,82365,82365,82364,82364,82363,82363,82362,82362,82361,82361,82360,82360,82359,82359,82358,82358,82357,82357,82356,82356,82355,82355,82354,82354,82353,82353,82352,82352,82351,82351,82597,82597,82350,82350,82349,82349,82348,82348,82347,82347,82346,82346,82345,82345,82344,82344,82343,82343,82342,82342,82341,82341,82340,82340,82339,82339,82338,82338,82567,82567,82555,82555,82331,82331,82395,82395,82390,82390,82389,82389,82388,82388,82387,82387,82386,82386,82385,82385,82600,82600,82384,82384,82383,82383,82382,82382,82381,82381,82380,82380,82379,82379,82378,82378,82599,82599,82723,82723,82751,82751,82782,82782,82817,82817,82801,82801,82377,82377,82376,82376,82375,82375,82374,82374,82373,82373,82372,82372,82371,82371,82370,82370,82369,82369,82626,82626,82657,82930,82929,82929,82937,82937,82936,82936,82935,82935,82934,82934,82933,82933,82932,82932,82931,82931,82930,82939,82938,82938,83107,83107,83135,83135,83150,83150,83106,83106,83105,83105,83104,83104,83193,83193,83176,83176,83103,83103,83102,83102,83101,83101,83100,83100,83099,83099,83098,83098,83097,83097,83096,83096,83134,83134,83118,83118,83095,83095,83094,83094,83093,83093,83092,83092,83091,83091,83090,83090,83089,83089,83088,83088,83247,83247,83163,83163,83087,83087,83086,83086,83085,83085,83084,83084,83083,83083,83082,83082,83081,83081,83080,83080,83079,83079,83149,83149,83133,83133,83078,83078,83077,83077,83076,83076,83075,83075,83074,83074,83073,83073,83072,83072,83071,83071,83070,83070,83069,83069,83068,83068,83067,83067,83066,83066,83132,83132,83148,83148,83162,83162,83174,83174,83160,83160,83117,83117,83065,83065,83064,83064,83063,83063,83062,83062,83061,83061,83060,83060,83059,83059,83147,83147,83311,83311,83287,83287,83243,83243,83223,83223,83206,83206,83190,83190,83159,83159,83130,83130,83058,83058,83057,83057,83056,83056,83055,83055,83054,83054,83053,83053,83052,83052,83051,83051,83050,83050,83049,83049,83048,83048,83116,83116,83047,83047,83046,83046,83045,83045,83044,83044,83043,83043,83042,83042,83041,83041,83040,83040,83039,83039,83038,83038,83037,83037,83115,83115,83114,83114,83036,83036,83035,83035,83034,83034,83129,83129,83128,83128,83033,83033,83032,83032,83031,83031,83030,83030,83029,83029,83028,83028,83027,83027,83026,83026,83025,83025,83024,83024,83145,83145,83158,83158,83023,83023,83022,83022,83021,83021,83020,83020,83019,83019,83018,83018,83017,83017,83144,83144,83016,83016,83015,83015,83014,83014,83113,83113,83127,83127,83013,83013,83012,83012,83011,83011,83112,83112,83126,83126,83143,83143,83157,83157,83172,83172,83188,83188,83204,83204,83221,83221,83241,83241,83266,83266,83286,83286,83310,83310,83335,83335,83359,83359,83379,83379,83385,83385,83389,83389,83386,83386,83380,83380,83350,83350,83326,83326,83280,83280,83238,83238,83219,83219,83202,83202,83186,83186,83170,83170,83142,83142,83125,83125,83010,83010,83009,83009,83008,83008,83007,83007,83006,83006,83005,83005,83004,83004,83003,83003,83002,83002,83001,83001,83000,83000,82999,82999,82998,82998,83124,83124,83216,83216,83140,83140,82997,82997,82996,82996,82995,82995,82994,82994,82993,82993,82992,82992,82991,82991,82990,82990,82989,82989,82988,82988,82987,82987,82986,82986,82985,82985,82984,82984,82983,82983,82982,82982,83169,83169,83185,83185,83121,83121,83111,83111,82981,82981,82980,82980,82979,82979,82978,82978,82977,82977,82976,82976,82975,82975,82974,82974,83110,83110,83138,83138,83137,83137,82973,82973,82972,82972,82971,82971,82970,82970,82969,82969,82968,82968,83152,83152,83151,83151,83120,83120,82967,82967,82966,82966,82965,82965,82964,82964,82963,82963,82962,82962,82961,82961,82960,82960,83119,83119,82959,82959,82958,82958,82957,82957,82956,82956,82955,82955,82954,82954,82953,82953,83109,83109,83136,83136,82952,82952,82951,82951,82950,82950,82949,82949,82948,82948,82947,82947,82946,82946,82945,82945,82944,82944,82943,82943,83233,83233,83256,83256,83250,83250,83209,83209,83194,83194,83108,83108,82942,82942,82941,82941,82940,82940,82939,83082,83083,83083,83084,83084,83085,83085,83086,83086,83087,83087,83163,83163,83247,83247,83088,83088,83089,83089,83090,83090,83091,83091,83092,83092,83093,83093,83094,83094,83095,83095,83118,83118,83134,83134,83096,83096,83097,83097,83098,83098,83099,83099,83100,83100,83101,83101,83102,83102,83103,83103,83176,83176,83193,83193,83104,83104,83105,83105,83106,83106,83150,83150,83135,83135,83107,83107,82938,82938,82939,82939,83487,83487,83486,83486,83485,83485,83484,83484,83483,83483,83497,83497,83505,83505,83509,83509,83496,83496,83482,83482,83481,83481,83480,83480,83479,83479,83478,83478,83495,83495,83504,83504,83477,83477,83476,83476,83475,83475,83474,83474,83473,83473,83472,83472,83471,83471,83470,83470,83469,83469,83468,83468,83467,83467,83466,83466,83465,83465,83464,83464,83463,83463,83502,83502,83508,83508,83462,83462,83461,83461,83460,83460,83459,83459,83458,83458,83457,83457,83456,83456,83455,83455,83454,83454,83453,83453,83452,83452,83451,83451,83450,83450,83449,83449,83448,83448,83503,83503,83447,83447,83446,83446,83445,83445,83444,83444,83443,83443,83442,83442,83441,83441,83494,83494,83440,83440,83439,83439,83438,83438,83437,83437,83436,83436,83435,83435,83434,83434,83433,83433,83432,83432,83431,83431,83501,83501,83430,83430,83429,83429,83428,83428,83427,83427,83426,83426,83425,83425,83424,83424,83423,83423,83422,83422,83493,83493,83421,83421,83420,83420,83419,83419,83418,83418,83417,83417,83416,83416,83415,83415,83414,83414,83413,83413,83412,83412,83411,83411,83492,83492,83507,83507,83512,83512,83515,83515,83511,83511,83491,83491,83410,83410,83409,83409,83408,83408,83407,83407,83406,83406,83405,83405,83404,83404,83403,83403,83402,83402,83401,83401,83400,83400,83500,83500,83506,83506,83514,83514,83520,83520,83526,83526,83499,83499,83399,83399,83398,83398,83397,83397,83490,83490,83498,83498,83489,83489,83396,83396,83395,83395,83394,83394,83393,83393,83392,83392,83391,83391,83488,83488,83513,83513,83510,83510,83390,83390,83082,83529,83528,83528,83532,83532,83531,83531,83530,83530,83529,83534,83533,83533,83546,83546,83545,83545,83544,83544,83543,83543,83542,83542,83541,83541,83540,83540,83539,83539,83538,83538,83537,83537,83536,83536,83535,83535,83534,83548,83547,83547,83626,83626,83625,83625,83639,83639,83641,83641,83624,83624,83623,83623,83622,83622,83653,83653,83621,83621,83620,83620,83619,83619,83618,83618,83617,83617,83634,83634,83638,83638,83645,83645,83633,83633,83616,83616,83615,83615,83614,83614,83613,83613,83612,83612,83611,83611,83610,83610,83632,83632,83609,83609,83608,83608,83607,83607,83606,83606,83605,83605,83604,83604,82104,82104,82105,82105,82106,82106,82107,82107,82108,82108,82109,82109,82110,82110,82111,82111,82112,82112,82113,82113,81933,81933,83603,83603,83602,83602,83601,83601,83600,83600,83599,83599,83631,83631,83598,83598,83597,83597,83596,83596,83595,83595,83594,83594,83593,83593,83592,83592,83591,83591,83630,83630,83590,83590,83589,83589,83588,83588,83587,83587,83586,83586,83585,83585,83629,83629,83637,83637,83640,83640,83642,83642,83648,83648,83656,83656,83667,83667,83692,83692,83636,83636,83584,83584,83583,83583,83582,83582,83581,83581,83580,83580,83635,83635,83579,83579,83578,83578,83577,83577,83628,83628,83576,83576,83575,83575,83574,83574,83573,83573,83572,83572,83571,83571,83570,83570,83569,83569,83568,83568,81506,81506,81507,81507,81508,81508,81509,81509,81510,81510,81511,81511,81670,81670,81680,81680,81651,81651,81512,81512,81513,81513,81514,81514,81515,81515,81516,81516,81652,81652,81517,81517,81518,81518,81519,81519,81520,81520,81521,81521,81522,81522,81694,81694,81523,81523,81524,81524,81525,81525,81526,81526,81527,81527,81528,81528,81529,81529,81530,81530,81531,81531,81532,81532,81533,81533,81534,81534,81535,81535,81536,81536,81537,81537,81538,81538,81539,81539,81540,81540,81541,81541,81542,81542,81543,81543,81544,81544,81681,81681,81695,81695,81721,81721,81731,81731,81545,81545,81546,81546,81547,81547,81548,81548,81549,81549,81550,81550,81551,81551,81552,81552,81653,81653,81553,81553,81554,81554,81555,81555,81682,81682,81671,81671,81556,81556,81557,81557,81558,81558,81559,81559,81560,81560,81683,81683,81561,81561,81562,81562,81563,81563,81564,81564,81565,81565,81566,81566,81567,81567,81568,81568,81569,81569,81570,81570,81696,81696,81684,81684,81654,81654,81571,81571,81572,81572,81573,81573,81574,81574,81575,81575,81576,81576,81577,81577,81578,81578,81579,81579,81580,81580,81581,81581,81582,81582,81583,81583,81584,81584,81585,81585,81586,81586,81587,81587,81588,81588,81589,81589,81685,81685,81710,81710,81590,81590,81591,81591,81592,81592,81655,81655,81593,81593,81594,81594,81595,81595,81656,81656,81686,81686,81871,81871,81596,81596,81597,81597,81598,81598,81599,81599,81600,81600,81601,81601,81602,81602,81603,81603,81604,81604,81605,81605,81606,81606,81607,81607,81608,81608,81609,81609,81610,81610,81611,81611,81612,81612,81657,81657,81613,81613,81614,81614,81615,81615,81616,81616,81617,81617,81618,81618,81619,81619,81620,81620,81621,81621,81687,81687,81622,81622,81623,81623,81624,81624,81625,81625,81626,81626,81627,81627,81267,81267,80067,80067,80068,80068,80069,80069,80070,80070,80071,80071,80072,80072,80073,80073,80074,80074,80132,80132,80075,80075,80076,80076,80077,80077,80078,80078,80079,80079,80116,80116,80126,80126,80117,80117,80080,80080,80081,80081,80082,80082,80083,80083,80084,80084,80085,80085,80086,80086,80087,80087,80088,80088,80089,80089,80090,80090,79919,79919,79764,79764,79765,79765,79766,79766,79767,79767,79768,79768,79769,79769,79770,79770,79771,79771,79855,79855,79866,79866,79772,79772,79773,79773,79774,79774,79829,79829,79830,79830,79775,79775,79776,79776,79777,79777,79848,79848,79778,79778,79779,79779,79780,79780,79831,79831,79849,79849,79856,79856,79832,79832,79781,79781,79782,79782,79783,79783,79784,79784,79785,79785,79786,79786,79787,79787,79857,79857,79833,79833,79788,79788,79789,79789,79790,79790,79791,79791,79792,79792,79850,79850,79834,79834,79793,79793,79794,79794,79795,79795,79796,79796,79797,79797,79862,79862,79867,79867,79858,79858,79835,79835,79798,79798,79799,79799,79800,79800,79801,79801,79802,79802,79836,79836,79803,79803,79804,79804,79805,79805,79806,79806,79807,79807,79808,79808,79837,79837,79851,79851,79809,79809,79810,79810,79811,79811,79838,79838,79852,79852,79812,79812,79813,79813,79814,79814,79815,79815,79816,79816,79839,79839,79817,79817,79818,79818,79819,79819,79820,79820,79821,79821,79840,79840,79650,79650,79651,79651,83567,83567,83566,83566,83565,83565,83564,83564,83563,83563,83562,83562,83561,83561,83560,83560,83559,83559,83558,83558,83557,83557,83556,83556,83555,83555,83627,83627,83554,83554,83553,83553,83552,83552,83683,83683,83662,83662,83646,83646,83551,83551,83550,83550,83549,83549,83548,83726,83725,83725,83820,83820,83819,83819,83818,83818,83817,83817,83829,83829,83816,83816,83815,83815,83814,83814,83813,83813,83812,83812,83811,83811,83810,83810,83809,83809,83835,83835,83808,83808,83807,83807,83806,83806,83828,83828,83836,83836,83827,83827,83805,83805,83804,83804,83803,83803,83802,83802,83801,83801,83826,83826,83800,83800,83799,83799,83798,83798,83797,83797,83796,83796,83795,83795,83834,83834,83794,83794,83793,83793,83792,83792,83791,83791,83790,83790,83789,83789,83788,83788,83787,83787,83786,83786,83785,83785,83839,83839,83784,83784,83783,83783,83782,83782,83781,83781,83780,83780,83779,83779,83778,83778,83777,83777,83776,83776,83775,83775,83774,83774,83773,83773,83772,83772,83771,83771,83770,83770,83769,83769,83833,83833,83825,83825,83768,83768,83767,83767,83766,83766,83832,83832,83765,83765,83764,83764,83763,83763,83762,83762,83761,83761,83760,83760,83759,83759,83758,83758,83757,83757,83756,83756,83755,83755,83831,83831,83754,83754,83753,83753,83752,83752,83751,83751,83750,83750,83749,83749,83748,83748,83747,83747,83746,83746,83824,83824,83745,83745,83744,83744,83743,83743,83742,83742,83741,83741,83830,83830,83838,83838,83823,83823,83740,83740,83739,83739,83738,83738,83822,83822,83737,83737,83736,83736,83735,83735,83734,83734,83733,83733,83837,83837,83732,83732,83731,83731,83730,83730,83821,83821,83729,83729,83728,83728,83727,83727,83726,83843,83842,83842,83850,83850,83849,83849,83848,83848,83847,83847,83846,83846,83845,83845,83844,83844,83843,83726,83727,83727,83728,83728,83729,83729,83821,83821,83730,83730,83731,83731,83732,83732,83837,83837,83733,83733,83734,83734,83735,83735,83736,83736,83737,83737,83822,83822,83738,83738,83739,83739,83740,83740,83823,83823,83838,83838,83830,83830,83741,83741,83742,83742,83743,83743,83744,83744,83745,83745,83824,83824,83746,83746,83747,83747,83748,83748,83749,83749,83750,83750,83751,83751,83752,83752,83753,83753,83754,83754,83831,83831,83755,83755,83756,83756,83757,83757,83758,83758,83759,83759,83760,83760,83761,83761,83762,83762,83763,83763,83764,83764,83765,83765,83832,83832,83766,83766,83767,83767,83768,83768,83825,83825,83833,83833,83769,83769,83770,83770,83771,83771,83772,83772,84064,84064,84063,84063,84062,84062,84061,84061,84060,84060,84085,84085,84059,84059,84058,84058,84057,84057,84056,84056,84055,84055,84054,84054,84111,84111,84053,84053,84052,84052,84051,84051,84050,84050,84049,84049,84048,84048,84047,84047,84046,84046,84045,84045,84044,84044,84043,84043,84042,84042,84041,84041,84040,84040,84039,84039,84038,84038,84037,84037,84119,84119,84110,84110,84084,84084,84036,84036,84035,84035,84034,84034,84033,84033,84032,84032,84031,84031,84030,84030,84029,84029,84028,84028,84027,84027,84095,84095,84026,84026,84025,84025,84024,84024,84083,84083,84118,84118,84142,84142,84147,84147,84082,84082,84023,84023,84022,84022,84021,84021,84020,84020,84019,84019,84018,84018,84017,84017,84016,84016,84109,84109,84127,84127,84108,84108,84015,84015,84014,84014,84013,84013,84012,84012,84011,84011,84081,84081,84010,84010,84009,84009,84008,84008,84007,84007,84006,84006,84094,84094,84107,84107,84005,84005,84004,84004,84003,84003,84002,84002,84001,84001,84000,84000,83999,83999,83998,83998,83997,83997,83996,83996,83995,83995,83994,83994,83993,83993,83992,83992,83991,83991,83990,83990,83989,83989,83988,83988,83987,83987,83986,83986,83985,83985,83984,83984,84117,84117,84126,84126,84132,84132,84131,84131,84125,84125,84080,84080,83983,83983,83982,83982,83981,83981,83980,83980,83979,83979,84079,84079,84106,84106,84116,84116,83978,83978,83977,83977,83976,83976,83975,83975,83974,83974,83973,83973,83972,83972,83971,83971,83970,83970,83969,83969,84078,84078,84105,84105,84093,84093,83968,83968,83967,83967,83966,83966,83965,83965,83964,83964,84124,84124,84115,84115,83963,83963,83962,83962,83961,83961,83960,83960,83959,83959,83958,83958,83957,83957,83956,83956,83955,83955,83954,83954,83953,83953,83952,83952,83951,83951,84077,84077,84076,84076,83950,83950,83949,83949,83948,83948,83947,83947,83946,83946,83945,83945,83944,83944,83943,83943,83942,83942,83941,83941,83940,83940,84075,84075,84104,84104,84114,84114,84130,84130,84129,84129,84074,84074,83939,83939,83938,83938,83937,83937,83936,83936,83935,83935,83934,83934,83933,83933,84092,84092,84103,84103,84123,84123,84073,84073,83932,83932,83931,83931,83930,83930,83929,83929,83928,83928,83927,83927,83926,83926,83925,83925,83924,83924,83923,83923,84122,84122,84102,84102,84091,84091,84072,84072,83922,83922,83921,83921,83920,83920,83919,83919,83918,83918,83917,83917,83916,83916,84090,84090,84101,84101,83915,83915,83914,83914,83913,83913,83912,83912,83911,83911,83910,83910,83909,83909,83908,83908,83907,83907,83906,83906,83905,83905,83904,83904,84113,84113,84121,84121,84128,84128,84136,84136,84144,84144,84138,84138,84135,84135,84133,84133,83903,83903,83902,83902,83901,83901,83900,83900,83899,83899,84071,84071,83898,83898,83897,83897,83896,83896,83895,83895,83894,83894,83893,83893,83892,83892,83891,83891,83890,83890,83889,83889,84100,84100,84120,84120,84099,84099,84089,84089,83888,83888,83887,83887,83886,83886,83885,83885,83884,83884,83883,83883,83882,83882,83881,83881,83880,83880,83879,83879,83878,83878,83877,83877,83876,83876,83875,83875,84088,84088,84112,84112,83874,83874,83873,83873,83872,83872,83871,83871,83870,83870,84087,84087,84098,84098,84097,84097,84070,84070,83869,83869,83868,83868,83867,83867,83866,83866,83865,83865,83864,83864,84069,84069,83863,83863,83862,83862,83861,83861,84068,84068,83860,83860,83859,83859,83858,83858,84086,84086,84067,84067,83857,83857,83856,83856,83855,83855,84096,84096,83854,83854,83853,83853,83852,83852,84066,84066,84065,84065,83851,83851,83726,83807,83808,83808,83835,83835,83809,83809,83810,83810,83811,83811,83812,83812,83813,83813,83814,83814,83815,83815,83816,83816,83829,83829,83817,83817,83818,83818,83819,83819,83820,83820,83725,83725,83726,83726,83851,83851,84065,84065,84066,84066,83852,83852,83853,83853,83854,83854,84096,84096,83855,83855,83856,83856,83857,83857,84067,84067,84086,84086,83858,83858,83859,83859,83860,83860,84068,84068,83861,83861,83862,83862,83863,83863,84069,84069,83864,83864,83865,83865,83866,83866,83867,83867,83868,83868,83869,83869,84070,84070,84097,84097,84098,84098,84087,84087,83870,83870,83871,83871,83872,83872,83873,83873,83874,83874,84112,84112,84088,84088,83875,83875,83876,83876,83877,83877,83878,83878,83879,83879,83880,83880,83881,83881,83882,83882,83883,83883,83884,83884,83885,83885,83886,83886,83887,83887,83888,83888,84089,84089,84099,84099,84120,84120,84100,84100,83889,83889,83890,83890,83891,83891,83892,83892,84207,84207,84206,84206,84205,84205,84204,84204,84203,84203,84202,84202,84201,84201,84200,84200,84199,84199,84198,84198,84215,84215,84212,84212,84210,84210,84197,84197,84196,84196,84195,84195,84222,84222,84217,84217,84214,84214,84194,84194,84193,84193,84192,84192,84191,84191,84190,84190,84189,84189,84188,84188,84187,84187,84186,84186,84185,84185,84209,84209,84184,84184,84183,84183,84182,84182,84181,84181,84180,84180,84179,84179,84178,84178,84177,84177,84176,84176,84175,84175,84174,84174,84173,84173,84172,84172,84171,84171,84170,84170,84169,84169,84168,84168,84167,84167,84166,84166,84165,84165,84164,84164,84163,84163,84162,84162,84208,84208,84161,84161,84160,84160,84159,84159,84158,84158,84157,84157,84221,84221,84156,84156,83807,79039,79160,79160,79040,79040,79041,79041,79042,79042,79043,79043,79044,79044,79045,79045,79046,79046,79047,79047,79048,79048,79049,79049,79161,79161,79050,79050,79051,79051,79052,79052,79053,79053,79054,79054,79055,79055,79056,79056,79057,79057,79058,79058,79059,79059,79140,79140,79060,79060,79061,79061,79062,79062,79063,79063,79064,79064,79065,79065,79066,79066,79067,79067,79068,79068,79069,79069,79070,79070,79141,79141,79178,79178,79179,79179,79162,79162,79071,79071,79072,79072,79073,79073,79074,79074,79075,79075,81338,81338,81339,81339,81340,81340,81636,81636,81341,81341,81342,81342,81343,81343,81637,81637,81344,81344,81345,81345,81346,81346,81347,81347,81348,81348,81638,81638,81349,81349,81350,81350,81351,81351,81352,81352,81353,81353,81639,81639,81640,81640,81354,81354,81355,81355,81356,81356,81660,81660,81357,81357,81358,81358,81359,81359,81360,81360,81361,81361,81362,81362,81363,81363,81364,81364,81365,81365,81366,81366,81367,81367,81368,81368,81369,81369,81370,81370,81371,81371,81372,81372,81373,81373,81641,81641,81374,81374,81375,81375,81376,81376,81642,81642,81661,81661,81377,81377,81378,81378,81379,81379,81643,81643,81380,81380,81381,81381,81382,81382,81383,81383,81384,81384,81385,81385,81386,81386,81387,81387,81388,81388,81389,81389,81644,81644,81390,81390,81391,81391,81009,81009,81010,81010,81011,81011,81012,81012,81013,81013,81014,81014,81202,81202,81015,81015,81016,81016,81017,81017,81182,81182,81018,81018,81019,81019,81020,81020,81021,81021,81022,81022,81023,81023,81024,81024,81203,81203,81214,81214,81183,81183,81025,81025,81026,81026,81027,81027,81028,81028,81029,81029,81030,81030,81031,81031,81032,81032,81033,81033,81034,81034,81184,81184,81035,81035,81036,81036,81037,81037,81038,81038,84372,84372,84371,84371,84370,84370,84369,84369,84368,84368,84367,84367,84366,84366,84365,84365,84386,84386,84364,84364,84363,84363,84362,84362,84407,84407,84361,84361,84360,84360,84359,84359,84358,84358,84357,84357,84356,84356,84355,84355,84354,84354,84353,84353,84352,84352,84351,84351,84350,84350,84392,84392,84349,84349,84348,84348,84347,84347,84396,84396,84346,84346,84345,84345,84344,84344,84343,84343,84342,84342,84385,84385,84341,84341,84340,84340,84339,84339,84338,84338,84337,84337,84336,84336,84335,84335,84334,84334,84333,84333,84332,84332,84331,84331,84330,84330,84329,84329,84328,84328,84327,84327,84326,84326,84325,84325,84324,84324,84323,84323,84395,84395,84322,84322,84321,84321,84320,84320,84319,84319,84318,84318,84317,84317,84316,84316,84384,84384,84315,84315,84314,84314,84313,84313,84312,84312,84311,84311,84310,84310,84391,84391,84309,84309,84308,84308,84307,84307,84383,84383,84306,84306,84305,84305,84304,84304,84303,84303,84302,84302,84382,84382,84394,84394,84399,84399,84301,84301,84300,84300,84299,84299,84381,84381,84298,84298,84297,84297,84296,84296,84295,84295,84294,84294,84293,84293,84292,84292,84291,84291,84290,84290,84398,84398,84380,84380,84289,84289,84288,84288,84287,84287,84390,84390,84379,84379,84286,84286,84285,84285,84284,84284,84402,84402,84283,84283,84282,84282,84281,84281,84280,84280,84279,84279,84278,84278,84277,84277,84276,84276,84275,84275,84274,84274,84273,84273,84378,84378,84272,84272,84271,84271,84270,84270,84269,84269,84268,84268,84267,84267,84266,84266,84265,84265,84393,84393,84389,84389,84264,84264,84263,84263,84262,84262,84377,84377,84261,84261,84260,84260,84259,84259,84376,84376,84415,84415,84401,84401,84388,84388,84258,84258,84257,84257,84256,84256,84255,84255,84254,84254,84375,84375,84253,84253,84252,84252,84251,84251,84250,84250,84249,84249,84248,84248,84247,84247,84246,84246,84245,84245,84244,84244,84243,84243,84242,84242,84374,84374,84241,84241,84240,84240,84239,84239,84238,84238,84237,84237,84236,84236,84235,84235,84234,84234,84233,84233,84232,84232,84387,84387,84373,84373,84231,84231,84230,84230,84229,84229,84404,84404,84397,84397,84228,84228,84227,84227,79039,78690,78922,78922,79133,79133,79191,79191,79199,79199,79206,79206,79200,79200,79192,79192,79188,79188,79175,79175,78923,78923,78924,78924,78925,78925,78926,78926,78927,78927,78928,78928,78929,78929,78930,78930,78931,78931,78932,78932,78933,78933,78934,78934,78935,78935,78936,78936,78937,78937,78938,78938,78939,78939,78940,78940,78941,78941,79166,79166,79150,79150,78942,78942,78943,78943,78944,78944,78945,78945,78946,78946,79176,79176,79151,79151,78947,78947,78948,78948,78949,78949,78950,78950,78951,78951,78952,78952,78953,78953,78954,78954,78955,78955,78956,78956,78957,78957,78958,78958,78959,78959,79134,79134,78960,78960,78961,78961,78962,78962,78963,78963,78964,78964,79167,79167,79184,79184,79201,79201,78965,78965,78966,78966,78967,78967,79135,79135,79152,79152,79153,79153,78968,78968,78969,78969,78970,78970,78971,78971,78972,78972,79185,79185,78973,78973,78974,78974,78975,78975,79136,79136,78976,78976,78977,78977,78978,78978,79241,79241,79154,79154,78979,78979,78980,78980,78981,78981,78982,78982,78983,78983,79168,79168,79155,79155,78984,78984,78985,78985,78986,78986,78987,78987,78988,78988,78989,78989,78990,78990,78991,78991,79156,79156,78992,78992,78993,78993,78994,78994,78995,78995,78996,78996,78997,78997,78998,78998,78999,78999,79000,79000,79169,79169,79170,79170,79001,79001,79002,79002,79003,79003,79004,79004,79005,79005,79006,79006,79137,79137,79177,79177,79007,79007,79008,79008,79009,79009,79010,79010,79011,79011,79012,79012,79157,79157,79013,79013,79014,79014,79015,79015,79016,79016,79017,79017,79018,79018,79019,79019,79020,79020,79021,79021,79022,79022,79023,79023,79158,79158,79024,79024,79025,79025,79026,79026,79138,79138,79159,79159,79027,79027,79028,79028,79029,79029,79030,79030,79031,79031,79032,79032,79033,79033,79034,79034,79139,79139,79035,79035,79036,79036,79037,79037,79038,79038,79039,79039,84227,84227,84228,84228,84397,84397,84404,84404,84229,84229,84230,84230,84231,84231,84373,84373,84387,84387,84232,84232,84233,84233,84234,84234,84235,84235,84236,84236,84237,84237,84238,84238,84239,84239,84240,84240,84241,84241,84374,84374,84242,84242,84243,84243,84624,84624,84644,84644,84653,84653,84661,84661,84623,84623,84622,84622,84621,84621,84620,84620,84619,84619,84618,84618,84617,84617,84616,84616,84643,84643,84615,84615,84614,84614,84613,84613,84612,84612,84611,84611,84610,84610,84753,84753,84678,84678,84652,84652,84609,84609,84608,84608,84607,84607,84606,84606,84605,84605,84604,84604,84603,84603,84602,84602,84601,84601,84651,84651,84667,84667,84688,84688,84677,84677,84642,84642,84600,84600,84599,84599,84598,84598,84597,84597,84596,84596,84595,84595,84594,84594,84593,84593,84592,84592,84641,84641,84666,84666,84650,84650,84640,84640,84591,84591,84590,84590,84589,84589,84588,84588,84587,84587,84586,84586,84585,84585,84584,84584,84583,84583,84639,84639,84582,84582,84581,84581,84580,84580,84579,84579,84578,84578,84577,84577,84649,84649,84638,84638,84576,84576,84575,84575,84574,84574,84573,84573,84572,84572,84637,84637,84571,84571,84570,84570,84569,84569,84676,84676,84733,84733,84801,84801,84636,84636,84568,84568,84567,84567,84566,84566,84565,84565,84564,84564,84563,84563,84562,84562,82996,82996,82997,82997,83140,83140,83216,83216,83124,83124,82998,82998,82999,82999,83000,83000,83001,83001,83002,83002,83003,83003,83004,83004,83005,83005,83006,83006,83007,83007,83008,83008,83009,83009,84561,84561,84560,84560,84559,84559,84558,84558,84557,84557,84556,84556,84555,84555,84554,84554,84553,84553,84552,84552,84551,84551,84550,84550,84549,84549,84548,84548,84635,84635,84675,84675,84658,84658,84547,84547,84546,84546,84545,84545,84544,84544,84543,84543,84542,84542,84541,84541,84634,84634,84540,84540,84539,84539,84538,84538,84537,84537,84536,84536,84535,84535,84534,84534,84533,84533,84532,84532,84531,84531,84530,84530,84529,84529,84528,84528,84527,84527,84526,84526,84525,84525,84524,84524,84633,84633,84632,84632,84523,84523,84522,84522,84521,84521,84520,84520,84519,84519,84631,84631,84518,84518,84517,84517,84516,84516,84515,84515,84514,84514,84513,84513,84512,84512,84511,84511,84696,84696,84680,84680,84656,84656,84510,84510,84509,84509,84508,84508,84507,84507,84506,84506,84630,84630,84505,84505,84504,84504,84503,84503,84502,84502,84501,84501,84500,84500,84629,84629,84655,84655,84647,84647,84499,84499,84498,84498,84497,84497,84628,84628,84496,84496,84495,84495,84494,84494,84493,84493,84492,84492,84491,84491,84627,84627,84490,84490,84489,84489,84488,84488,84646,84646,84626,84626,84487,84487,84486,84486,84485,84485,84484,84484,84483,84483,84482,84482,84481,84481,84480,84480,84479,84479,84478,84478,84654,84654,84645,84645,84477,84477,84476,84476,84475,84475,84625,84625,84474,84474,84473,84473,84472,84472,84471,84471,84470,84470,84469,84469,84468,84468,84467,84467,84466,84466,84465,84465,84464,84464,84463,84463,78654,78654,78655,78655,78737,78737,78751,78751,78656,78656,78657,78657,78658,78658,78659,78659,78660,78660,78661,78661,78662,78662,78772,78772,78738,78738,78663,78663,78664,78664,78665,78665,78666,78666,78667,78667,78668,78668,78669,78669,78670,78670,78671,78671,78672,78672,78739,78739,78673,78673,78674,78674,78675,78675,78676,78676,78677,78677,78782,78782,78773,78773,78752,78752,78678,78678,78679,78679,78680,78680,78681,78681,78682,78682,78683,78683,78684,78684,78740,78740,78753,78753,78685,78685,78686,78686,78687,78687,78688,78688,78689,78689,78690,80334,80335,80335,80336,80336,78594,78594,78595,78595,78596,78596,78597,78597,78598,78598,78599,78599,78600,78600,78601,78601,78602,78602,78603,78603,78730,78730,78862,78862,78829,78829,78815,78815,78803,78803,78780,78780,78763,78763,78604,78604,78605,78605,78606,78606,78607,78607,78608,78608,78609,78609,84886,84886,84885,84885,84884,84884,84883,84883,84889,84889,84887,84887,84882,84882,84881,84881,84880,84880,84879,84879,84878,84878,84877,84877,84876,84876,84875,84875,84874,84874,84873,84873,84872,84872,84871,84871,84870,84870,84869,84869,84868,84868,84867,84867,84890,84890,84888,84888,84866,84866,84865,84865,84864,84864,84863,84863,84862,84862,80334,78654,84463,84463,84464,84464,84465,84465,84466,84466,84467,84467,84468,84468,84469,84469,84470,84470,84471,84471,84472,84472,84473,84473,84474,84474,84625,84625,84475,84475,84476,84476,84477,84477,84645,84645,84654,84654,84478,84478,84479,84479,84480,84480,84481,84481,84482,84482,84483,84483,84484,84484,84485,84485,84486,84486,84487,84487,84626,84626,84646,84646,84488,84488,84489,84489,84490,84490,84627,84627,84491,84491,84492,84492,84493,84493,84494,84494,84495,84495,84496,84496,84628,84628,84497,84497,84498,84498,84499,84499,84647,84647,84655,84655,84629,84629,84500,84500,84501,84501,84924,84924,84923,84923,84922,84922,84921,84921,84920,84920,84919,84919,84918,84918,84917,84917,84916,84916,84915,84915,84931,84931,84929,84929,84914,84914,84913,84913,84912,84912,84911,84911,84910,84910,84909,84909,84908,84908,84925,84925,84926,84926,84907,84907,84906,84906,84905,84905,84904,84904,84903,84903,84902,84902,84901,84901,84900,84900,84899,84899,84898,84898,84897,84897,84896,84896,84895,84895,84894,84894,84893,84893,84892,84892,84891,84891,84878,84878,84879,84879,84880,84880,84881,84881,84882,84882,84887,84887,84889,84889,84883,84883,84884,84884,84885,84885,84886,84886,78609,78609,78610,78610,78611,78611,78612,78612,78768,78768,78731,78731,78613,78613,78614,78614,78615,78615,78747,78747,78616,78616,78617,78617,78618,78618,78619,78619,78620,78620,78621,78621,78622,78622,78623,78623,78624,78624,78625,78625,78626,78626,78627,78627,78628,78628,78629,78629,78630,78630,78732,78732,78733,78733,78631,78631,78632,78632,78633,78633,78634,78634,78635,78635,78734,78734,78770,78770,78764,78764,78636,78636,78637,78637,78638,78638,78735,78735,78748,78748,78639,78639,78640,78640,78641,78641,78642,78642,78643,78643,78644,78644,78736,78736,78771,78771,78645,78645,78646,78646,78647,78647,78648,78648,78649,78649,78749,78749,78765,78765,78750,78750,78650,78650,78651,78651,78652,78652,78653,78653,78654,84938,84937,84937,84942,84942,84941,84941,84940,84940,84939,84939,84938,84943,84963,84963,84966,84966,84962,84962,84959,84959,84958,84958,84957,84957,84956,84956,84955,84955,84954,84954,84953,84953,84952,84952,84951,84951,84961,84961,84965,84965,84964,84964,84950,84950,84949,84949,84948,84948,84960,84960,84947,84947,84946,84946,84945,84945,84944,84944,84943,84968,84967,84967,84970,84970,84969,84969,84968,83929,84971,84971,85122,85122,85135,85135,85121,85121,85120,85120,85119,85119,85118,85118,85117,85117,85116,85116,85115,85115,85114,85114,85113,85113,85112,85112,85111,85111,85110,85110,85156,85156,85153,85153,85147,85147,85109,85109,85108,85108,85107,85107,85106,85106,85105,85105,85104,85104,85103,85103,85102,85102,85152,85152,85101,85101,85100,85100,85099,85099,85098,85098,85097,85097,85141,85141,85146,85146,85096,85096,85095,85095,85094,85094,85093,85093,85092,85092,85091,85091,85090,85090,85089,85089,85088,85088,85087,85087,85086,85086,85085,85085,85084,85084,85083,85083,85151,85151,85159,85159,85163,85163,85082,85082,85081,85081,85080,85080,85079,85079,85078,85078,85077,85077,85076,85076,85075,85075,85074,85074,85073,85073,85072,85072,85071,85071,85070,85070,85069,85069,85068,85068,85067,85067,85066,85066,85065,85065,85064,85064,85063,85063,85062,85062,85061,85061,85060,85060,85134,85134,85133,85133,85059,85059,85058,85058,85057,85057,85056,85056,85055,85055,85054,85054,85053,85053,85052,85052,85051,85051,85050,85050,85049,85049,85048,85048,85047,85047,85046,85046,85132,85132,85145,85145,85150,85150,85140,85140,85131,85131,85045,85045,85044,85044,85043,85043,85130,85130,85042,85042,85041,85041,85040,85040,85129,85129,85039,85039,85038,85038,85037,85037,85036,85036,85035,85035,85128,85128,85034,85034,85033,85033,85032,85032,85127,85127,85139,85139,85031,85031,85030,85030,85029,85029,85126,85126,85028,85028,85027,85027,85026,85026,85138,85138,85137,85137,85025,85025,85024,85024,85023,85023,85022,85022,85021,85021,85125,85125,85020,85020,85019,85019,85018,85018,85167,85167,85169,85169,85124,85124,85017,85017,85016,85016,85015,85015,85014,85014,85013,85013,85012,85012,85011,85011,85010,85010,85009,85009,85008,85008,85007,85007,85006,85006,85005,85005,85004,85004,85003,85003,85002,85002,85001,85001,85000,85000,84999,84999,84998,84998,84997,84997,85144,85144,84996,84996,84995,84995,84994,84994,84993,84993,84992,84992,85136,85136,85149,85149,85148,85148,84991,84991,84990,84990,84989,84989,84988,84988,84987,84987,84986,84986,84985,84985,84984,84984,85143,85143,85142,85142,84983,84983,84982,84982,84981,84981,84980,84980,84979,84979,85123,85123,84978,84978,84977,84977,84976,84976,84975,84975,84974,84974,84973,84973,84972,84972,84168,84168,84169,84169,84170,84170,84171,84171,84172,84172,84173,84173,84174,84174,84175,84175,84176,84176,84177,84177,84178,84178,84179,84179,84180,84180,84181,84181,84182,84182,84183,84183,84184,84184,84209,84209,84185,84185,84186,84186,84187,84187,84188,84188,84189,84189,84190,84190,84191,84191,84192,84192,84193,84193,84194,84194,84214,84214,84217,84217,84222,84222,84195,84195,84196,84196,84197,84197,84210,84210,84212,84212,84215,84215,84198,84198,84199,84199,84200,84200,84201,84201,84202,84202,84203,84203,84204,84204,84205,84205,84206,84206,84207,84207,83892,83892,83893,83893,83894,83894,83895,83895,83896,83896,83897,83897,83898,83898,84071,84071,83899,83899,83900,83900,83901,83901,83902,83902,83903,83903,84133,84133,84135,84135,84138,84138,84144,84144,84136,84136,84128,84128,84121,84121,84113,84113,83904,83904,83905,83905,83906,83906,83907,83907,83908,83908,83909,83909,83910,83910,83911,83911,83912,83912,83913,83913,83914,83914,83915,83915,84101,84101,84090,84090,83916,83916,83917,83917,83918,83918,83919,83919,83920,83920,83921,83921,83922,83922,84072,84072,84091,84091,84102,84102,84122,84122,83923,83923,83924,83924,83925,83925,83926,83926,83927,83927,83928,83928,83929,83988,85439,85439,85438,85438,85437,85437,85436,85436,85435,85435,85434,85434,85433,85433,85432,85432,85431,85431,85430,85430,85429,85429,85428,85428,85461,85461,85525,85525,85490,85490,85427,85427,85426,85426,85425,85425,85424,85424,85423,85423,85422,85422,85421,85421,85420,85420,85419,85419,85418,85418,85417,85417,85479,85479,85478,85478,85416,85416,85415,85415,85414,85414,85460,85460,85524,85524,85413,85413,85412,85412,85411,85411,85410,85410,85409,85409,85408,85408,85407,85407,85406,85406,85405,85405,85489,85489,85477,85477,85404,85404,85403,85403,85402,85402,85401,85401,85400,85400,85399,85399,85398,85398,85397,85397,85396,85396,85395,85395,85394,85394,85393,85393,85392,85392,85391,85391,85390,85390,85389,85389,85388,85388,85387,85387,85386,85386,85385,85385,85384,85384,85459,85459,85488,85488,85383,85383,85382,85382,85381,85381,85487,85487,85380,85380,85379,85379,85378,85378,85377,85377,85376,85376,85476,85476,85516,85516,85523,85523,85375,85375,85374,85374,85373,85373,85458,85458,85475,85475,85486,85486,85372,85372,85371,85371,85370,85370,85457,85457,85474,85474,85485,85485,85473,85473,85369,85369,85368,85368,85367,85367,85456,85456,85366,85366,85365,85365,85364,85364,85363,85363,85362,85362,85361,85361,85360,85360,85359,85359,85358,85358,85357,85357,85356,85356,85355,85355,85354,85354,85353,85353,85352,85352,85351,85351,85350,85350,85349,85349,85348,85348,85347,85347,85346,85346,85345,85345,85344,85344,85343,85343,85342,85342,85341,85341,85340,85340,85339,85339,85338,85338,85337,85337,85336,85336,85335,85335,85334,85334,85333,85333,85332,85332,85331,85331,85330,85330,85329,85329,85328,85328,85327,85327,85326,85326,85325,85325,85324,85324,85323,85323,85322,85322,85321,85321,85320,85320,85319,85319,85318,85318,85317,85317,85316,85316,85315,85315,85314,85314,85313,85313,85312,85312,85311,85311,85310,85310,85309,85309,85308,85308,85307,85307,85455,85455,85306,85306,85305,85305,85304,85304,85303,85303,85302,85302,85454,85454,85482,85482,85453,85453,85301,85301,85300,85300,85299,85299,85472,85472,85534,85534,85471,85471,85452,85452,85298,85298,85297,85297,85296,85296,85470,85470,85295,85295,85294,85294,85293,85293,85292,85292,85291,85291,85290,85290,85289,85289,85451,85451,85469,85469,85468,85468,85288,85288,85287,85287,85286,85286,85285,85285,85284,85284,85283,85283,85497,85497,85282,85282,85281,85281,85280,85280,85586,85586,85595,85595,85279,85279,85278,85278,85277,85277,85450,85450,85276,85276,85275,85275,85274,85274,85273,85273,85272,85272,85271,85271,85270,85270,85269,85269,85268,85268,85267,85267,85449,85449,85266,85266,85265,85265,85264,85264,85263,85263,85262,85262,85261,85261,85260,85260,85259,85259,85258,85258,85257,85257,85256,85256,85255,85255,85254,85254,85253,85253,85448,85448,85447,85447,85252,85252,85251,85251,85250,85250,85249,85249,85248,85248,85446,85446,85481,85481,85495,85495,85247,85247,85246,85246,85245,85245,85244,85244,85243,85243,85445,85445,85242,85242,85241,85241,85240,85240,85444,85444,85239,85239,85238,85238,85237,85237,85467,85467,85518,85518,85505,85505,85443,85443,85236,85236,85235,85235,85234,85234,85233,85233,85232,85232,85231,85231,85230,85230,85229,85229,85442,85442,85228,85228,85227,85227,85226,85226,85466,85466,85526,85526,85517,85517,85494,85494,85225,85225,85224,85224,85223,85223,85222,85222,85221,85221,85220,85220,85219,85219,85465,85465,85441,85441,85218,85218,85217,85217,85216,85216,85215,85215,85214,85214,85213,85213,85212,85212,85464,85464,85493,85493,85211,85211,85210,85210,85209,85209,85463,85463,85208,85208,85207,85207,85206,85206,85205,85205,85204,85204,85462,85462,85203,85203,85202,85202,85201,85201,85200,85200,85199,85199,85198,85198,85197,85197,85196,85196,85195,85195,85194,85194,85193,85193,85492,85492,85504,85504,85503,85503,85491,85491,85480,85480,85192,85192,85191,85191,85190,85190,85189,85189,85188,85188,85187,85187,85186,85186,85440,85440,85185,85185,85184,85184,85183,85183,85182,85182,85181,85181,85074,85074,85075,85075,85076,85076,85077,85077,85078,85078,85079,85079,85080,85080,85081,85081,85082,85082,85163,85163,85159,85159,85151,85151,85083,85083,85084,85084,85085,85085,85086,85086,85087,85087,85088,85088,85089,85089,85090,85090,85091,85091,85092,85092,85093,85093,85094,85094,85095,85095,85096,85096,85146,85146,85141,85141,85097,85097,85098,85098,85099,85099,85100,85100,85101,85101,85152,85152,85102,85102,85103,85103,85104,85104,85105,85105,85106,85106,85107,85107,85108,85108,85109,85109,85147,85147,85153,85153,85156,85156,85110,85110,85111,85111,85112,85112,85113,85113,85114,85114,85115,85115,85116,85116,85117,85117,85118,85118,85119,85119,85120,85120,85121,85121,85135,85135,85122,85122,84971,84971,83929,83929,83930,83930,83931,83931,83932,83932,84073,84073,84123,84123,84103,84103,84092,84092,83933,83933,83934,83934,83935,83935,83936,83936,83937,83937,83938,83938,83939,83939,84074,84074,84129,84129,84130,84130,84114,84114,84104,84104,84075,84075,83940,83940,83941,83941,83942,83942,83943,83943,83944,83944,83945,83945,83946,83946,83947,83947,83948,83948,83949,83949,83950,83950,84076,84076,84077,84077,83951,83951,83952,83952,83953,83953,83954,83954,83955,83955,83956,83956,83957,83957,83958,83958,83959,83959,83960,83960,83961,83961,83962,83962,83963,83963,84115,84115,84124,84124,83964,83964,83965,83965,83966,83966,83967,83967,83968,83968,84093,84093,84105,84105,84078,84078,83969,83969,83970,83970,83971,83971,83972,83972,83973,83973,83974,83974,83975,83975,83976,83976,83977,83977,83978,83978,84116,84116,84106,84106,84079,84079,83979,83979,83980,83980,83981,83981,83982,83982,83983,83983,84080,84080,84125,84125,84131,84131,84132,84132,84126,84126,84117,84117,83984,83984,83985,83985,83986,83986,83987,83987,83988,85408,85409,85409,85410,85410,85411,85411,85412,85412,85413,85413,85524,85524,85460,85460,85414,85414,85415,85415,85416,85416,85478,85478,85479,85479,85417,85417,85418,85418,85419,85419,85420,85420,85421,85421,85422,85422,85423,85423,85424,85424,85425,85425,85426,85426,85427,85427,85490,85490,85525,85525,85461,85461,85428,85428,85429,85429,85430,85430,85431,85431,85432,85432,85433,85433,85434,85434,85435,85435,85436,85436,85437,85437,85438,85438,85439,85439,83988,83988,83989,83989,83990,83990,83991,83991,83992,83992,83993,83993,83994,83994,83995,83995,83996,83996,83997,83997,83998,83998,83999,83999,84000,84000,84001,84001,84002,84002,84003,84003,84004,84004,84005,84005,84107,84107,84094,84094,84006,84006,84007,84007,84008,84008,84009,84009,84010,84010,84081,84081,84011,84011,84012,84012,84013,84013,85767,85767,85766,85766,85765,85765,85764,85764,85763,85763,85781,85781,85762,85762,85761,85761,85760,85760,85759,85759,85758,85758,85757,85757,85756,85756,85755,85755,85754,85754,85753,85753,85752,85752,85751,85751,85750,85750,85749,85749,85748,85748,85780,85780,85797,85797,85747,85747,85746,85746,85745,85745,85744,85744,85743,85743,85742,85742,85741,85741,85740,85740,85739,85739,85738,85738,85737,85737,85736,85736,85735,85735,85734,85734,85733,85733,85732,85732,85731,85731,85730,85730,85779,85779,85729,85729,85728,85728,85727,85727,85726,85726,85725,85725,85801,85801,85799,85799,85724,85724,85723,85723,85722,85722,85721,85721,85720,85720,85719,85719,85718,85718,85717,85717,85796,85796,85716,85716,85715,85715,85714,85714,85814,85814,85815,85815,85795,85795,85713,85713,85712,85712,85711,85711,85710,85710,85709,85709,85708,85708,85707,85707,85706,85706,85705,85705,85704,85704,85806,85806,85803,85803,85800,85800,85794,85794,85703,85703,85702,85702,85701,85701,85700,85700,85699,85699,85698,85698,85697,85697,85696,85696,85695,85695,85694,85694,85693,85693,85788,85788,85787,85787,85692,85692,85691,85691,85690,85690,85689,85689,85688,85688,85687,85687,85686,85686,85793,85793,85792,85792,85778,85778,85685,85685,85684,85684,85683,85683,85786,85786,85798,85798,85682,85682,85681,85681,85680,85680,85679,85679,85678,85678,85677,85677,85785,85785,85676,85676,85675,85675,85674,85674,85673,85673,85672,85672,85784,85784,85791,85791,85777,85777,85671,85671,85670,85670,85669,85669,85776,85776,85668,85668,85667,85667,85666,85666,85775,85775,85665,85665,85664,85664,85663,85663,85774,85774,85662,85662,85661,85661,85660,85660,85659,85659,85658,85658,85773,85773,85790,85790,85772,85772,85657,85657,85656,85656,85655,85655,85783,85783,85654,85654,85653,85653,85652,85652,85771,85771,85651,85651,85650,85650,85649,85649,85648,85648,85647,85647,85770,85770,85646,85646,85645,85645,85644,85644,85782,85782,85789,85789,85643,85643,85642,85642,85641,85641,85640,85640,85639,85639,85769,85769,85638,85638,85637,85637,85636,85636,85768,85768,85635,85635,85634,85634,85633,85633,85632,85632,85408,80938,81645,81645,81392,81392,81393,81393,81394,81394,81662,81662,81395,81395,81396,81396,81397,81397,81398,81398,81399,81399,81690,81690,81691,81691,81677,81677,81400,81400,81401,81401,81402,81402,81403,81403,85822,85822,85821,85821,85820,85820,85819,85819,85818,85818,85817,85817,85816,85816,80925,80925,80926,80926,80927,80927,80928,80928,80929,80929,80930,80930,80931,80931,80932,80932,80933,80933,80934,80934,81174,81174,81197,81197,81224,81224,80935,80935,80936,80936,80937,80937,80938,81506,83568,83568,83569,83569,83570,83570,83571,83571,83572,83572,83573,83573,83574,83574,83575,83575,83576,83576,83628,83628,83577,83577,83578,83578,83579,83579,83635,83635,83580,83580,83581,83581,83582,83582,83583,83583,83584,83584,83636,83636,83692,83692,83667,83667,83656,83656,83648,83648,83642,83642,83640,83640,83637,83637,83629,83629,83585,83585,83586,83586,83587,83587,83588,83588,83589,83589,83590,83590,83630,83630,83591,83591,83592,83592,83593,83593,83594,83594,83595,83595,83596,83596,83597,83597,83598,83598,83631,83631,83599,83599,83600,83600,83601,83601,83602,83602,83603,83603,81933,81933,81934,81934,81935,81935,82159,82159,82238,82238,82244,82244,82130,82130,81936,81936,81937,81937,81938,81938,82114,82114,82142,82142,82115,82115,81939,81939,81940,81940,81941,81941,82131,82131,81942,81942,81943,81943,81944,81944,82116,82116,82162,82162,82153,82153,82132,82132,81945,81945,81946,81946,81947,81947,81948,81948,81949,81949,81950,81950,81951,81951,81952,81952,81953,81953,81954,81954,81955,81955,81956,81956,81957,81957,82117,82117,81958,81958,81959,81959,81960,81960,81961,81961,81962,81962,82163,82163,81963,81963,81964,81964,81965,81965,82118,82118,81966,81966,81967,81967,81968,81968,81969,81969,81970,81970,81971,81971,81972,81972,81973,81973,81974,81974,81975,81975,81976,81976,81977,81977,81978,81978,81979,81979,81980,81980,81981,81981,81982,81982,81983,81983,85871,85871,85870,85870,85879,85879,85882,85882,85869,85869,85868,85868,85867,85867,85875,85875,85878,85878,85866,85866,85865,85865,85864,85864,85863,85863,85862,85862,85861,85861,85860,85860,85859,85859,85858,85858,85857,85857,85881,85881,85890,85890,85856,85856,85855,85855,85854,85854,85853,85853,85852,85852,85851,85851,85850,85850,85849,85849,85848,85848,85847,85847,85846,85846,85845,85845,85844,85844,85874,85874,85843,85843,85842,85842,85841,85841,85840,85840,85839,85839,85838,85838,85837,85837,85876,85876,85885,85885,85873,85873,85836,85836,85835,85835,85834,85834,85833,85833,85832,85832,85831,85831,85830,85830,85829,85829,85828,85828,85827,85827,85826,85826,85825,85825,85824,85824,85823,85823,85872,85872,81412,81412,81413,81413,81414,81414,81415,81415,81416,81416,81417,81417,81418,81418,81663,81663,81419,81419,81420,81420,81421,81421,81422,81422,81423,81423,81424,81424,81425,81425,81426,81426,81427,81427,81428,81428,81754,81754,81429,81429,81430,81430,81431,81431,81432,81432,81433,81433,81434,81434,81435,81435,81436,81436,81437,81437,81438,81438,81664,81664,81439,81439,81440,81440,81441,81441,81442,81442,81443,81443,81444,81444,81445,81445,81446,81446,81447,81447,81448,81448,81449,81449,81450,81450,81451,81451,81452,81452,81453,81453,81454,81454,81455,81455,81456,81456,81646,81646,81457,81457,81458,81458,81459,81459,81460,81460,81461,81461,81462,81462,81463,81463,81464,81464,81465,81465,81466,81466,81665,81665,81705,81705,81773,81773,81467,81467,81468,81468,81469,81469,81888,81888,81678,81678,81470,81470,81471,81471,81472,81472,81473,81473,81474,81474,81666,81666,81692,81692,81706,81706,81719,81719,81729,81729,81756,81756,81667,81667,81475,81475,81476,81476,81477,81477,81647,81647,81648,81648,81478,81478,81479,81479,81480,81480,81481,81481,81482,81482,81649,81649,81707,81707,81709,81709,81483,81483,81484,81484,81485,81485,81650,81650,81486,81486,81487,81487,81488,81488,81489,81489,81490,81490,81491,81491,81492,81492,81493,81493,81494,81494,81495,81495,81668,81668,81496,81496,81497,81497,81498,81498,81499,81499,81500,81500,81669,81669,81501,81501,81502,81502,81503,81503,81504,81504,81505,81505,81679,81679,81506,85984,85983,85983,86098,86098,86112,86112,86111,86111,86097,86097,86096,86096,86095,86095,86094,86094,86093,86093,86092,86092,86091,86091,86090,86090,86089,86089,86088,86088,86110,86110,86087,86087,86086,86086,86085,86085,86109,86109,86084,86084,86083,86083,86082,86082,86081,86081,86080,86080,86079,86079,86078,86078,86077,86077,86076,86076,86075,86075,86074,86074,86073,86073,86072,86072,86071,86071,86070,86070,86069,86069,86068,86068,86067,86067,86066,86066,86065,86065,86108,86108,86107,86107,86064,86064,86063,86063,86062,86062,86106,86106,86061,86061,86060,86060,86059,86059,86119,86119,86058,86058,86057,86057,86056,86056,86055,86055,86054,86054,86053,86053,86052,86052,86051,86051,86050,86050,86049,86049,86130,86130,86127,86127,86126,86126,86124,86124,86118,86118,86048,86048,86047,86047,86046,86046,86045,86045,86044,86044,86105,86105,86043,86043,86042,86042,86041,86041,86040,86040,86039,86039,86038,86038,86037,86037,86036,86036,86035,86035,86034,86034,86033,86033,86032,86032,86104,86104,86121,86121,86120,86120,86031,86031,86030,86030,86029,86029,86028,86028,86027,86027,86026,86026,86025,86025,86024,86024,86023,86023,86022,86022,86021,86021,86020,86020,86117,86117,86123,86123,86125,86125,86122,86122,86019,86019,86018,86018,86017,86017,86016,86016,86015,86015,86116,86116,86014,86014,86013,86013,86012,86012,86103,86103,86115,86115,86011,86011,86010,86010,86009,86009,86008,86008,86007,86007,86102,86102,86006,86006,86005,86005,86004,86004,86003,86003,86002,86002,86001,86001,86000,86000,85999,85999,85998,85998,86114,86114,85997,85997,85996,85996,85995,85995,86101,86101,86100,86100,85994,85994,85993,85993,85992,85992,86113,86113,85991,85991,85990,85990,85989,85989,86099,86099,85988,85988,85987,85987,85986,85986,85985,85985,85984,86139,86138,86138,86143,86143,86142,86142,86141,86141,86140,86140,86139,86145,86144,86144,86382,86382,86381,86381,86380,86380,86379,86379,86401,86401,86422,86422,86430,86430,86378,86378,86377,86377,86376,86376,86375,86375,86374,86374,86373,86373,86372,86372,86371,86371,86370,86370,86369,86369,86368,86368,86367,86367,86366,86366,86365,86365,86364,86364,86363,86363,86362,86362,86361,86361,86413,86413,86429,86429,86436,86436,86400,86400,86360,86360,86359,86359,86358,86358,86428,86428,86421,86421,86357,86357,86356,86356,86355,86355,86354,86354,86353,86353,86412,86412,86352,86352,86351,86351,86350,86350,86349,86349,86348,86348,86347,86347,86346,86346,86345,86345,86344,86344,86343,86343,86342,86342,86341,86341,86340,86340,86339,86339,86338,86338,86337,86337,86336,86336,86399,86399,86420,86420,86335,86335,86334,86334,86333,86333,86332,86332,86331,86331,86411,86411,86330,86330,86329,86329,86328,86328,86327,86327,86326,86326,86325,86325,86324,86324,86323,86323,86322,86322,86321,86321,86320,86320,86398,86398,86319,86319,86318,86318,86317,86317,86433,86433,86427,86427,86397,86397,86316,86316,86315,86315,86314,86314,86313,86313,86312,86312,86311,86311,86310,86310,86410,86410,86309,86309,86308,86308,86307,86307,86306,86306,86305,86305,86304,86304,86303,86303,86302,86302,86301,86301,86300,86300,86299,86299,86298,86298,86500,86500,86460,86460,86447,86447,86396,86396,86297,86297,86296,86296,86295,86295,86294,86294,86293,86293,86292,86292,86291,86291,86290,86290,86289,86289,86288,86288,86287,86287,86395,86395,86286,86286,86285,86285,86284,86284,86283,86283,86282,86282,86281,86281,86280,86280,86419,86419,86279,86279,86278,86278,86277,86277,86276,86276,86275,86275,86409,86409,86394,86394,86274,86274,86273,86273,86272,86272,86271,86271,86270,86270,86269,86269,86268,86268,86408,86408,86407,86407,86267,86267,86266,86266,86265,86265,86264,86264,86263,86263,86262,86262,86261,86261,86260,86260,86259,86259,86393,86393,86258,86258,86257,86257,86256,86256,86255,86255,86254,86254,86253,86253,86252,86252,86406,86406,86392,86392,86251,86251,86250,86250,86249,86249,86248,86248,86247,86247,86246,86246,86245,86245,86244,86244,86243,86243,86242,86242,86241,86241,86240,86240,86239,86239,86238,86238,86237,86237,86236,86236,86235,86235,86234,86234,86233,86233,86232,86232,86418,86418,86231,86231,86230,86230,86229,86229,86228,86228,86227,86227,86226,86226,86225,86225,86405,86405,86391,86391,86224,86224,86223,86223,86222,86222,86221,86221,86220,86220,86219,86219,86218,86218,86217,86217,86216,86216,86215,86215,86214,86214,86426,86426,86417,86417,86213,86213,86212,86212,86211,86211,86210,86210,86209,86209,86390,86390,86208,86208,86207,86207,86206,86206,86205,86205,86204,86204,85987,85987,85988,85988,86099,86099,85989,85989,85990,85990,85991,85991,86113,86113,85992,85992,85993,85993,85994,85994,86100,86100,86101,86101,85995,85995,85996,85996,85997,85997,86114,86114,85998,85998,85999,85999,86000,86000,86001,86001,86002,86002,86003,86003,86004,86004,86005,86005,86006,86006,86102,86102,86007,86007,86008,86008,86009,86009,86010,86010,86011,86011,86115,86115,86103,86103,86012,86012,86013,86013,86014,86014,86116,86116,86015,86015,86016,86016,86017,86017,86018,86018,86019,86019,86122,86122,86125,86125,86123,86123,86117,86117,86020,86020,86021,86021,86022,86022,86023,86023,86024,86024,86025,86025,86026,86026,86027,86027,86028,86028,86029,86029,86030,86030,86031,86031,86120,86120,86121,86121,86104,86104,86032,86032,86033,86033,86203,86203,86404,86404,86202,86202,86201,86201,86200,86200,86199,86199,86198,86198,86197,86197,86196,86196,86195,86195,86194,86194,86193,86193,86389,86389,86416,86416,86388,86388,86192,86192,86191,86191,86190,86190,86189,86189,86188,86188,86187,86187,86186,86186,86185,86185,86387,86387,86184,86184,86183,86183,86182,86182,86181,86181,86180,86180,86386,86386,86179,86179,86178,86178,86177,86177,86176,86176,86175,86175,86174,86174,86173,86173,86415,86415,86431,86431,86437,86437,86403,86403,86385,86385,86172,86172,86171,86171,86170,86170,86169,86169,86168,86168,86167,86167,86166,86166,86165,86165,86402,86402,86425,86425,86434,86434,86384,86384,86164,86164,86163,86163,86162,86162,86161,86161,86160,86160,86159,86159,86158,86158,86157,86157,86156,86156,86155,86155,86154,86154,86424,86424,86383,86383,86153,86153,86152,86152,86151,86151,86150,86150,86149,86149,86148,86148,86147,86147,86146,86146,86145,82104,86502,86502,86545,86545,86554,86554,86553,86553,86550,86550,86544,86544,86543,86543,86542,86542,86541,86541,86540,86540,86539,86539,86549,86549,86538,86538,86537,86537,86536,86536,86552,86552,86535,86535,86534,86534,86533,86533,86548,86548,86532,86532,86531,86531,86530,86530,86529,86529,86528,86528,86527,86527,86526,86526,86525,86525,86524,86524,86523,86523,86522,86522,86521,86521,86520,86520,86519,86519,86518,86518,86547,86547,86556,86556,86546,86546,86517,86517,86516,86516,86515,86515,86577,86577,86514,86514,86513,86513,86512,86512,86511,86511,86510,86510,86509,86509,86508,86508,86507,86507,86506,86506,86551,86551,86559,86559,86562,86562,86505,86505,86504,86504,86503,86503,82246,82246,82247,82247,82248,82248,82582,82582,82614,82614,82541,82541,82249,82249,82250,82250,82251,82251,82252,82252,82253,82253,82542,82542,82254,82254,82255,82255,82256,82256,82543,82543,82257,82257,82258,82258,82259,82259,82544,82544,82260,82260,82261,82261,82262,82262,82545,82545,82263,82263,82264,82264,82265,82265,82266,82266,82267,82267,82546,82546,82268,82268,82269,82269,82270,82270,82583,82583,82271,82271,82272,82272,82273,82273,82274,82274,82275,82275,82547,82547,82276,82276,82277,82277,82278,82278,82709,82709,82795,82795,82812,82812,82584,82584,82279,82279,82280,82280,82281,82281,82548,82548,82736,82736,82282,82282,82283,82283,82284,82284,82285,82285,82286,82286,82549,82549,82287,82287,82288,82288,82289,82289,82290,82290,82291,82291,82292,82292,82293,82293,82294,82294,82295,82295,82296,82296,82297,82297,82298,82298,82299,82299,82585,82585,82615,82615,82800,82800,82300,82300,82301,82301,82302,82302,82550,82550,82551,82551,82303,82303,82304,82304,82305,82305,82586,82586,82616,82616,82552,82552,82306,82306,82307,82307,82308,82308,82309,82309,82310,82310,82553,82553,82767,82767,82677,82677,82645,82645,82554,82554,82311,82311,82312,82312,82313,82313,82314,82314,82315,82315,82316,82316,82317,82317,82318,82318,82319,82319,82320,82320,82321,82321,82322,82322,82323,82323,82062,82062,82063,82063,82064,82064,82065,82065,82066,82066,82067,82067,82068,82068,82069,82069,82070,82070,82071,82071,82072,82072,82073,82073,82139,82139,82127,82127,82074,82074,82075,82075,82076,82076,82077,82077,82078,82078,82079,82079,82080,82080,82081,82081,82082,82082,82083,82083,82084,82084,82085,82085,82086,82086,82087,82087,82088,82088,82089,82089,82090,82090,82091,82091,82092,82092,82198,82198,82170,82170,82151,82151,82140,82140,82093,82093,82094,82094,82095,82095,82096,82096,82097,82097,82098,82098,82099,82099,82182,82182,82183,82183,82158,82158,82141,82141,82100,82100,82101,82101,82102,82102,82128,82128,82129,82129,82103,82103,82104,82996,84562,84562,84563,84563,84564,84564,84565,84565,84566,84566,84567,84567,84568,84568,84636,84636,84801,84801,84733,84733,84676,84676,84569,84569,84570,84570,84571,84571,84637,84637,84572,84572,84573,84573,84574,84574,84575,84575,84576,84576,84638,84638,84649,84649,84577,84577,84578,84578,84579,84579,84580,84580,84581,84581,84582,84582,84639,84639,84583,84583,84584,84584,84585,84585,84586,84586,84587,84587,84588,84588,84589,84589,84590,84590,84591,84591,84640,84640,84650,84650,84666,84666,84641,84641,84592,84592,84593,84593,84594,84594,84595,84595,84596,84596,84597,84597,84598,84598,84599,84599,84600,84600,84642,84642,84677,84677,84688,84688,84667,84667,84651,84651,84601,84601,84602,84602,84603,84603,84604,84604,84605,84605,84606,84606,84607,84607,84608,84608,84609,84609,84652,84652,84678,84678,84753,84753,84610,84610,84611,84611,84612,84612,84613,84613,84614,84614,84615,84615,84643,84643,84616,84616,84617,84617,84618,84618,84619,84619,84620,84620,84621,84621,84622,84622,84623,84623,84661,84661,84653,84653,84644,84644,84624,84624,84243,84243,84244,84244,84245,84245,84246,84246,84247,84247,84248,84248,84249,84249,84250,84250,84251,84251,84252,84252,84253,84253,84375,84375,84254,84254,84255,84255,84256,84256,84257,84257,84258,84258,84388,84388,84401,84401,84415,84415,84376,84376,84259,84259,84260,84260,84261,84261,84377,84377,84262,84262,84263,84263,84264,84264,84389,84389,84393,84393,84265,84265,84266,84266,84267,84267,84268,84268,84269,84269,84270,84270,84271,84271,84272,84272,84378,84378,84273,84273,84274,84274,84275,84275,84276,84276,84277,84277,84278,84278,84279,84279,84280,84280,84281,84281,84282,84282,84283,84283,84402,84402,84284,84284,84285,84285,84286,84286,84379,84379,84390,84390,84287,84287,84288,84288,84289,84289,84380,84380,84398,84398,84290,84290,84291,84291,84292,84292,84293,84293,84294,84294,84295,84295,84296,84296,84297,84297,84298,84298,84381,84381,84299,84299,84300,84300,84301,84301,84399,84399,84394,84394,84382,84382,84302,84302,84303,84303,84304,84304,84305,84305,84306,84306,84383,84383,84307,84307,84308,84308,84309,84309,84391,84391,84310,84310,84311,84311,84312,84312,86678,86678,86687,86687,86699,86699,86698,86698,86677,86677,86676,86676,86675,86675,86686,86686,86735,86735,86715,86715,86674,86674,86673,86673,86672,86672,86671,86671,86670,86670,86669,86669,86668,86668,86685,86685,86684,86684,86667,86667,86666,86666,86665,86665,86664,86664,86663,86663,86662,86662,86661,86661,86697,86697,86683,86683,86660,86660,86659,86659,86658,86658,86714,86714,86657,86657,86656,86656,86655,86655,86654,86654,86653,86653,86652,86652,86651,86651,86650,86650,86649,86649,86648,86648,86647,86647,86646,86646,86645,86645,86682,86682,86696,86696,86681,86681,86644,86644,86643,86643,86642,86642,86680,86680,86641,86641,86640,86640,86639,86639,86706,86706,86695,86695,86381,86381,86382,86382,86144,86144,86145,86145,86638,86638,86637,86637,86636,86636,86635,86635,86634,86634,86633,86633,86632,86632,86631,86631,86630,86630,86693,86693,86629,86629,86628,86628,86627,86627,86626,86626,86625,86625,86624,86624,86623,86623,86622,86622,86621,86621,86692,86692,86691,86691,86679,86679,86620,86620,86619,86619,86618,86618,86617,86617,86616,86616,86615,86615,86614,86614,86613,86613,86612,86612,82980,82980,82981,82981,83111,83111,83121,83121,83185,83185,83169,83169,82982,82982,82983,82983,82984,82984,82985,82985,82986,82986,82987,82987,82988,82988,82989,82989,82990,82990,82991,82991,82992,82992,82993,82993,82994,82994,82995,82995,82996,82531,87053,87053,87066,87066,87065,87065,87052,87052,87051,87051,87050,87050,87049,87049,87048,87048,87047,87047,87046,87046,87045,87045,87044,87044,87043,87043,87042,87042,87041,87041,87040,87040,87078,87078,87091,87091,87104,87104,87148,87148,87090,87090,87039,87039,87038,87038,87037,87037,87036,87036,87035,87035,87064,87064,87085,87085,87089,87089,87084,87084,87034,87034,87033,87033,87032,87032,87031,87031,87030,87030,87077,87077,87063,87063,87029,87029,87028,87028,87027,87027,87076,87076,87026,87026,87025,87025,87024,87024,87023,87023,87022,87022,87062,87062,87021,87021,87020,87020,87019,87019,87075,87075,87061,87061,87018,87018,87017,87017,87016,87016,87060,87060,87015,87015,87014,87014,87013,87013,87012,87012,87011,87011,87010,87010,87009,87009,87008,87008,87007,87007,87006,87006,87005,87005,83548,83548,83549,83549,83550,83550,83551,83551,83646,83646,83662,83662,83683,83683,83552,83552,83553,83553,83554,83554,83627,83627,83555,83555,83556,83556,83557,83557,83558,83558,83559,83559,83560,83560,83561,83561,83562,83562,83563,83563,83564,83564,83565,83565,83566,83566,83567,83567,79651,79651,79652,79652,79653,79653,79654,79654,79655,79655,79656,79656,79841,79841,79822,79822,79657,79657,79658,79658,79659,79659,79863,79863,79882,79882,79884,79884,79878,79878,79875,79875,79872,79872,79869,79869,79864,79864,79660,79660,79661,79661,79662,79662,79663,79663,79664,79664,79665,79665,79666,79666,79667,79667,79853,79853,79668,79668,79669,79669,79670,79670,79671,79671,79672,79672,79673,79673,79674,79674,79675,79675,79676,79676,79677,79677,79842,79842,79843,79843,79678,79678,79679,79679,79680,79680,79681,79681,79682,79682,79683,79683,79684,79684,79685,79685,79686,79686,79687,79687,79688,79688,79823,79823,79689,79689,79690,79690,79691,79691,79854,79854,79692,79692,79693,79693,79694,79694,79695,79695,79696,79696,79697,79697,79698,79698,79824,79824,79699,79699,79700,79700,79701,79701,79702,79702,79703,79703,79704,79704,79705,79705,79706,79706,79707,79707,79708,79708,79709,79709,79825,79825,79859,79859,79844,79844,79710,79710,79711,79711,79712,79712,79713,79713,79714,79714,79715,79715,79716,79716,79874,79874,79826,79826,79717,79717,79718,79718,79719,79719,79720,79720,79721,79721,79827,79827,79722,79722,79723,79723,80091,80091,80092,80092,79920,79920,79921,79921,79922,79922,79923,79923,79924,79924,80093,80093,80118,80118,80094,80094,79925,79925,79926,79926,79927,79927,79928,79928,79929,79929,80095,80095,80127,80127,80106,80106,79930,79930,79931,79931,79932,79932,79933,79933,79934,79934,79935,79935,79936,79936,80096,80096,80107,80107,80133,80133,80119,80119,80097,80097,79937,79937,79938,79938,79939,79939,80108,80108,79940,79940,79941,79941,79942,79942,80098,80098,79943,79943,79944,79944,79945,79945,79946,79946,79947,79947,79948,79948,79949,79949,87004,87004,87003,87003,87002,87002,87001,87001,87000,87000,86999,86999,86998,86998,86997,86997,86996,86996,86995,86995,86994,86994,86993,86993,86992,86992,86991,86991,86990,86990,86989,86989,86988,86988,86987,86987,86986,86986,86985,86985,86984,86984,86983,86983,86982,86982,86981,86981,86980,86980,86979,86979,87074,87074,87073,87073,86978,86978,86977,86977,86976,86976,86975,86975,86974,86974,86973,86973,86972,86972,86971,86971,86970,86970,86969,86969,86968,86968,87083,87083,87059,87059,86967,86967,86966,86966,86965,86965,87072,87072,86964,86964,86963,86963,86962,86962,86961,86961,86960,86960,86959,86959,86958,86958,86957,86957,86956,86956,86955,86955,87058,87058,86954,86954,86953,86953,86952,86952,87057,87057,86951,86951,86950,86950,86949,86949,86948,86948,86947,86947,86946,86946,86945,86945,86944,86944,86943,86943,86942,86942,86941,86941,86940,86940,86939,86939,86938,86938,86937,86937,86936,86936,86935,86935,86934,86934,86933,86933,86932,86932,86931,86931,87056,87056,86930,86930,86929,86929,86928,86928,86927,86927,86926,86926,86925,86925,87103,87103,86924,86924,86923,86923,86922,86922,86921,86921,86920,86920,86919,86919,86918,86918,86917,86917,86916,86916,86915,86915,86914,86914,86913,86913,86912,86912,86911,86911,86910,86910,86909,86909,87071,87071,87082,87082,87081,87081,86908,86908,86907,86907,86906,86906,86905,86905,86904,86904,87070,87070,86903,86903,86902,86902,86901,86901,86900,86900,86899,86899,87069,87069,86898,86898,86897,86897,86896,86896,86895,86895,86894,86894,86893,86893,86892,86892,86891,86891,86890,86890,86889,86889,87100,87100,87080,87080,86888,86888,86887,86887,86886,86886,86885,86885,86884,86884,86883,86883,86882,86882,86881,86881,86880,86880,86879,86879,86878,86878,86877,86877,87055,87055,87094,87094,87092,87092,86876,86876,86875,86875,86874,86874,86873,86873,86872,86872,86871,86871,86870,86870,86869,86869,86868,86868,86867,86867,86866,86866,86865,86865,86864,86864,87087,87087,86863,86863,86862,86862,86861,86861,87054,87054,87106,87106,86860,86860,86859,86859,86858,86858,86857,86857,86856,86856,86855,86855,86854,86854,86853,86853,86852,86852,82486,82486,82487,82487,82488,82488,82489,82489,82490,82490,82491,82491,82492,82492,86851,86851,86850,86850,86849,86849,86848,86848,86847,86847,87068,87068,87067,87067,86846,86846,82509,82509,82613,82613,82510,82510,82511,82511,82512,82512,82513,82513,82514,82514,82579,82579,82515,82515,82516,82516,82517,82517,82518,82518,82519,82519,82520,82520,82521,82521,82580,82580,82522,82522,82523,82523,82524,82524,82644,82644,82525,82525,82526,82526,82527,82527,82528,82528,82529,82529,82581,82581,82530,82530,82531,79644,79645,79645,79646,79646,79647,79647,79648,79648,79649,79649,79643,79643,79644,79634,79635,79635,79636,79636,79637,79637,79638,79638,79639,79639,79640,79640,79641,79641,79642,79642,79633,79633,79634,82509,86846,86846,87067,87067,87068,87068,86847,86847,86848,86848,86849,86849,86850,86850,86851,86851,82492,82492,82493,82493,82494,82494,82495,82495,82496,82496,82497,82497,82498,82498,82706,82706,82759,82759,82791,82791,82577,82577,82499,82499,82500,82500,82501,82501,82845,82845,82864,82864,82834,82834,82502,82502,82503,82503,82504,82504,82578,82578,82763,82763,82734,82734,82674,82674,82505,82505,82506,82506,82507,82507,82508,82508,82509,82531,82532,82532,82533,82533,82534,82534,82535,82535,82536,82536,82537,82537,82538,82538,82539,82539,82540,82540,82246,82246,86503,86503,86504,86504,86505,86505,86562,86562,86559,86559,86551,86551,86506,86506,86507,86507,86508,86508,86509,86509,86510,86510,86511,86511,86512,86512,86513,86513,86514,86514,86577,86577,86515,86515,86516,86516,86517,86517,86546,86546,86556,86556,86547,86547,86518,86518,86519,86519,86520,86520,86521,86521,86522,86522,86523,86523,86524,86524,86525,86525,86526,86526,86527,86527,86528,86528,86529,86529,86530,86530,86531,86531,86532,86532,86548,86548,86533,86533,86534,86534,86535,86535,86552,86552,86536,86536,86537,86537,86538,86538,86549,86549,86539,86539,86540,86540,86541,86541,86542,86542,86543,86543,86544,86544,86550,86550,86553,86553,86554,86554,86545,86545,86502,86502,82104,82104,83604,83604,83605,83605,83606,83606,83607,83607,83608,83608,83609,83609,83632,83632,83610,83610,83611,83611,83612,83612,83613,83613,83614,83614,83615,83615,83616,83616,83633,83633,83645,83645,83638,83638,83634,83634,83617,83617,83618,83618,83619,83619,83620,83620,83621,83621,83653,83653,83622,83622,83623,83623,83624,83624,83641,83641,83639,83639,83625,83625,83626,83626,83547,83547,83548,83548,87005,87005,87006,87006,87007,87007,87008,87008,87009,87009,87010,87010,87011,87011,87012,87012,87013,87013,87014,87014,87015,87015,87060,87060,87016,87016,87017,87017,87018,87018,87061,87061,87075,87075,87019,87019,87020,87020,87021,87021,87062,87062,87022,87022,87023,87023,87024,87024,87025,87025,87026,87026,87076,87076,87027,87027,87028,87028,87029,87029,87063,87063,87077,87077,87030,87030,87031,87031,87032,87032,87033,87033,87034,87034,87084,87084,87089,87089,87085,87085,87064,87064,87035,87035,87036,87036,87037,87037,87038,87038,87039,87039,87090,87090,87148,87148,87104,87104,87091,87091,87078,87078,87040,87040,87041,87041,87042,87042,87043,87043,87044,87044,87045,87045,87046,87046,87047,87047,87048,87048,87049,87049,87050,87050,87051,87051,87052,87052,87065,87065,87066,87066,87053,87053,82531,83439,83440,83440,83494,83494,83441,83441,83442,83442,83443,83443,83444,83444,83445,83445,83446,83446,83447,83447,83503,83503,83448,83448,83449,83449,83450,83450,83451,83451,83452,83452,83453,83453,83454,83454,83455,83455,83456,83456,83457,83457,83458,83458,83459,83459,83460,83460,83461,83461,83462,83462,83508,83508,83502,83502,83463,83463,83464,83464,83465,83465,83466,83466,83467,83467,83468,83468,83469,83469,83470,83470,83471,83471,83472,83472,83473,83473,83474,83474,83475,83475,83476,83476,83477,83477,83504,83504,83495,83495,83478,83478,83479,83479,83480,83480,83481,83481,83482,83482,83496,83496,83509,83509,83505,83505,83497,83497,83483,83483,83484,83484,83485,83485,83486,83486,83487,83487,82939,82939,82940,82940,82941,82941,82942,82942,83108,83108,83194,83194,83209,83209,83250,83250,83256,83256,83233,83233,82943,82943,82944,82944,82945,82945,82946,82946,82947,82947,82948,82948,82949,82949,82950,82950,82951,82951,82952,82952,83136,83136,83109,83109,82953,82953,82954,82954,82955,82955,82956,82956,82957,82957,82958,82958,82959,82959,83119,83119,82960,82960,82961,82961,82962,82962,82963,82963,82964,82964,82965,82965,82966,82966,82967,82967,83120,83120,83151,83151,83152,83152,82968,82968,82969,82969,82970,82970,82971,82971,82972,82972,87275,87275,87274,87274,87273,87273,87281,87281,87272,87272,87271,87271,87270,87270,87280,87280,87269,87269,87268,87268,87267,87267,87336,87336,87308,87308,87297,87297,87266,87266,87265,87265,87264,87264,87263,87263,87262,87262,87286,87286,87261,87261,85276,85276,85450,85450,85277,85277,85278,85278,85279,85279,85595,85595,85586,85586,85280,85280,85281,85281,85282,85282,85497,85497,85283,85283,85284,85284,85285,85285,85286,85286,85287,85287,85288,85288,85468,85468,85469,85469,85451,85451,85289,85289,85290,85290,85291,85291,85292,85292,85293,85293,85294,85294,85295,85295,85470,85470,85296,85296,85297,85297,85298,85298,85452,85452,85471,85471,85534,85534,85472,85472,85299,85299,85300,85300,85301,85301,85453,85453,85482,85482,85454,85454,85302,85302,85303,85303,85304,85304,85305,85305,85306,85306,85455,85455,85307,85307,85308,85308,85309,85309,85310,85310,85311,85311,85312,85312,85313,85313,85314,85314,85315,85315,85316,85316,85317,85317,85318,85318,85319,85319,85320,85320,85321,85321,85322,85322,85323,85323,87260,87260,87259,87259,87258,87258,87257,87257,87256,87256,87255,87255,87254,87254,87253,87253,87252,87252,87251,87251,87250,87250,87279,87279,87249,87249,87248,87248,87247,87247,87278,87278,87246,87246,87245,87245,87244,87244,80874,80874,80866,80866,80546,80546,80547,80547,80649,80649,80666,80666,80681,80681,80698,80698,80708,80708,80548,80548,80549,80549,80550,80550,80650,80650,80551,80551,80552,80552,80553,80553,80651,80651,80554,80554,80555,80555,80556,80556,80652,80652,80682,80682,80699,80699,80700,80700,80667,80667,80557,80557,80558,80558,80559,80559,80560,80560,80561,80561,80562,80562,80563,80563,80653,80653,80668,80668,80654,80654,80564,80564,80565,80565,80566,80566,80567,80567,80568,80568,80569,80569,80570,80570,80571,80571,80572,80572,80573,80573,80574,80574,80575,80575,80669,80669,80576,80576,80577,80577,80578,80578,80579,80579,80580,80580,80581,80581,80582,80582,80583,80583,80584,80584,80585,80585,80586,80586,80587,80587,80588,80588,80589,80589,80590,80590,80591,80591,80592,80592,80593,80593,80594,80594,80670,80670,80683,80683,80789,80789,80763,80763,80671,80671,80595,80595,80596,80596,80597,80597,80598,80598,80599,80599,80684,80684,80701,80701,80710,80710,80600,80600,80601,80601,80602,80602,80603,80603,80604,80604,80605,80605,80606,80606,80607,80607,80608,80608,80609,80609,80610,80610,80611,80611,80685,80685,80655,80655,80612,80612,80613,80613,80614,80614,80615,80615,80616,80616,80656,80656,80702,80702,80617,80617,80618,80618,80619,80619,80620,80620,80621,80621,80622,80622,80657,80657,80623,80623,80624,80624,80625,80625,80626,80626,80627,80627,80628,80628,80629,80629,80630,80630,80672,80672,80631,80631,80632,80632,80633,80633,80634,80634,80635,80635,80352,80352,80353,80353,87243,87243,87277,87277,87242,87242,87241,87241,87240,87240,87239,87239,87238,87238,87237,87237,87236,87236,87235,87235,87234,87234,87285,87285,87233,87233,87232,87232,87231,87231,87230,87230,87229,87229,87228,87228,87227,87227,87226,87226,87225,87225,87224,87224,87223,87223,87222,87222,87221,87221,87220,87220,87219,87219,87218,87218,87217,87217,87216,87216,87284,87284,87215,87215,87214,87214,87213,87213,87283,87283,87212,87212,87211,87211,87210,87210,87276,87276,87289,87289,87209,87209,87208,87208,87207,87207,87206,87206,87205,87205,87282,87282,87204,87204,83439,79445,80110,80110,80123,80123,80135,80135,80145,80145,80155,80155,80209,80209,80232,80232,80223,80223,80202,80202,80183,80183,80170,80170,80157,80157,80147,80147,80137,80137,80129,80129,80124,80124,80111,80111,80101,80101,79993,79993,79994,79994,79995,79995,80112,80112,79996,79996,79997,79997,79998,79998,87522,87522,87521,87521,87524,87524,87520,87520,87519,87519,87518,87518,87517,87517,87516,87516,87515,87515,87514,87514,87513,87513,87512,87512,87511,87511,87523,87523,87510,87510,81294,81294,81295,81295,81632,81632,81296,81296,81297,81297,81298,81298,81299,81299,81300,81300,81301,81301,81302,81302,81303,81303,81304,81304,81305,81305,81306,81306,81307,81307,81308,81308,81309,81309,81310,81310,81674,81674,81311,81311,81312,81312,81313,81313,81633,81633,81314,81314,81315,81315,81316,81316,81317,81317,81318,81318,81319,81319,81320,81320,81321,81321,81322,81322,81323,81323,81324,81324,81325,81325,81634,81634,81326,81326,81327,81327,81328,81328,81635,81635,81698,81698,81658,81658,81329,81329,81330,81330,81331,81331,81332,81332,81333,81333,81675,81675,81676,81676,81659,81659,81334,81334,81335,81335,81336,81336,81337,81337,79109,79109,79147,79147,79173,79173,79181,79181,79174,79174,79148,79148,79110,79110,79111,79111,79112,79112,79113,79113,79114,79114,79149,79149,79115,79115,79116,79116,79117,79117,79118,79118,79119,79119,79120,79120,79121,79121,79182,79182,79165,79165,79122,79122,79123,79123,79124,79124,79125,79125,79126,79126,79127,79127,79128,79128,79129,79129,79130,79130,79131,79131,79132,79132,78916,78916,79519,79519,79562,79562,79520,79520,79521,79521,79522,79522,79568,79568,79569,79569,79523,79523,79524,79524,79525,79525,79526,79526,79527,79527,79528,79528,79529,79529,79530,79530,79531,79531,79532,79532,79533,79533,79534,79534,79535,79535,79536,79536,79537,79537,79563,79563,79620,79620,79601,79601,79591,79591,79571,79571,79538,79538,79539,79539,79540,79540,79541,79541,79542,79542,79543,79543,79574,79574,79544,79544,79545,79545,79546,79546,79547,79547,79548,79548,79549,79549,79550,79550,79551,79551,79552,79552,79553,79553,79554,79554,79564,79564,79555,79555,79556,79556,79557,79557,79558,79558,79444,79444,79445,81294,87510,87510,87523,87523,87511,87511,87512,87512,87513,87513,87514,87514,87515,87515,87516,87516,87517,87517,87518,87518,87519,87519,87520,87520,87524,87524,87521,87521,87522,87522,79998,79998,79999,79999,80000,80000,80001,80001,80002,80002,80102,80102,80138,80138,80148,80148,80003,80003,80004,80004,80005,80005,80103,80103,80113,80113,80158,80158,80139,80139,80125,80125,80006,80006,80007,80007,80008,80008,80009,80009,80010,80010,87564,87564,87563,87563,87562,87562,87561,87561,87560,87560,87559,87559,87558,87558,87557,87557,87556,87556,87555,87555,87554,87554,87553,87553,87552,87552,87551,87551,87550,87550,87549,87549,87548,87548,87547,87547,87546,87546,87545,87545,87544,87544,87566,87566,87567,87567,87565,87565,87543,87543,81280,81280,81281,81281,81282,81282,81283,81283,81284,81284,81672,81672,81630,81630,81285,81285,81286,81286,81287,81287,81288,81288,81289,81289,81631,81631,81688,81688,81689,81689,81673,81673,81290,81290,81291,81291,81292,81292,81293,81293,81294,80010,80011,80011,80012,80012,80013,80013,80014,80014,80104,80104,80015,80015,80016,80016,80017,80017,80018,80018,80019,80019,80020,80020,80021,80021,80022,80022,80023,80023,80024,80024,80025,80025,80026,80026,80185,80185,80027,80027,80028,80028,80029,80029,80030,80030,80031,80031,80032,80032,80033,80033,80034,80034,80035,80035,80036,80036,80037,80037,80038,80038,80039,80039,80105,80105,80040,80040,80041,80041,80042,80042,80043,80043,81268,81268,81269,81269,81270,81270,81271,81271,81272,81272,81273,81273,81628,81628,81274,81274,81275,81275,81276,81276,81277,81277,81278,81278,81629,81629,81279,81279,81280,81280,87543,87543,87565,87565,87567,87567,87566,87566,87544,87544,87545,87545,87546,87546,87547,87547,87548,87548,87549,87549,87550,87550,87551,87551,87552,87552,87553,87553,87554,87554,87555,87555,87556,87556,87557,87557,87558,87558,87559,87559,87560,87560,87561,87561,87562,87562,87563,87563,87564,87564,80010,82657,82626,82626,82369,82369,82370,82370,82371,82371,82372,82372,82373,82373,82374,82374,82375,82375,82376,82376,82377,82377,82801,82801,82817,82817,82782,82782,82751,82751,82723,82723,82599,82599,82378,82378,82379,82379,82380,82380,82381,82381,82382,82382,82383,82383,82384,82384,82600,82600,82385,82385,82386,82386,82387,82387,82388,82388,82389,82389,82390,82390,82395,82395,82331,82331,82555,82555,82567,82567,82338,82338,82339,82339,82340,82340,82341,82341,82342,82342,82343,82343,82344,82344,82345,82345,82346,82346,82347,82347,82348,82348,82349,82349,82350,82350,82597,82597,82351,82351,82352,82352,82353,82353,82354,82354,82355,82355,82356,82356,82357,82357,82358,82358,82359,82359,82360,82360,82361,82361,82362,82362,82363,82363,82364,82364,82365,82365,82926,82926,82922,82922,82918,82918,82598,82598,82366,82366,82367,82367,82368,82368,82568,82568,82625,82625,82768,82768,82737,82737,82689,82689,82657,86293,86294,86294,86295,86295,86296,86296,86297,86297,86396,86396,86447,86447,86460,86460,86500,86500,86298,86298,86299,86299,86300,86300,86301,86301,86302,86302,86303,86303,86304,86304,86305,86305,86306,86306,86307,86307,86308,86308,86309,86309,86410,86410,86310,86310,86311,86311,86312,86312,86313,86313,86314,86314,86315,86315,86316,86316,86397,86397,86427,86427,86433,86433,86317,86317,86318,86318,86319,86319,86398,86398,86320,86320,86321,86321,86322,86322,86323,86323,86324,86324,86325,86325,86326,86326,86327,86327,86328,86328,86329,86329,86330,86330,86411,86411,86331,86331,86332,86332,86333,86333,86334,86334,86335,86335,86420,86420,86399,86399,86336,86336,86337,86337,86338,86338,86339,86339,86340,86340,86341,86341,86342,86342,86343,86343,86344,86344,86345,86345,86346,86346,86347,86347,86348,86348,86349,86349,86350,86350,86351,86351,86352,86352,86412,86412,86353,86353,86354,86354,86355,86355,86356,86356,86357,86357,86421,86421,86428,86428,86358,86358,86359,86359,86360,86360,86400,86400,86436,86436,86429,86429,86413,86413,86361,86361,86362,86362,86363,86363,86364,86364,86365,86365,86366,86366,86367,86367,86368,86368,86369,86369,86370,86370,86371,86371,86372,86372,86373,86373,86374,86374,86375,86375,86376,86376,86377,86377,86378,86378,86430,86430,86422,86422,86401,86401,86379,86379,86380,86380,86381,86381,86695,86695,86706,86706,86639,86639,86640,86640,86641,86641,86680,86680,86642,86642,86643,86643,86644,86644,86681,86681,86696,86696,86682,86682,86645,86645,86646,86646,86647,86647,86648,86648,86649,86649,86650,86650,86651,86651,86652,86652,86653,86653,86654,86654,86655,86655,86656,86656,86657,86657,86714,86714,86658,86658,86659,86659,86660,86660,86683,86683,86697,86697,86661,86661,86662,86662,86663,86663,86664,86664,86665,86665,86666,86666,86667,86667,86684,86684,86685,86685,86668,86668,86669,86669,86670,86670,86671,86671,86672,86672,86673,86673,86674,86674,86715,86715,86735,86735,86686,86686,86675,86675,86676,86676,86677,86677,86698,86698,86699,86699,86687,86687,86678,86678,84312,84312,84313,84313,84314,84314,84315,84315,84384,84384,84316,84316,84317,84317,84318,84318,84319,84319,84320,84320,84321,84321,84322,84322,84395,84395,84323,84323,84324,84324,84325,84325,84326,84326,84327,84327,84328,84328,84329,84329,84330,84330,84331,84331,84332,84332,84333,84333,84334,84334,84335,84335,84336,84336,84337,84337,84338,84338,84339,84339,84340,84340,84341,84341,84385,84385,84342,84342,84343,84343,84344,84344,84345,84345,84346,84346,84396,84396,84347,84347,84348,84348,84349,84349,84392,84392,84350,84350,84351,84351,84352,84352,84353,84353,84354,84354,84355,84355,84356,84356,84357,84357,84358,84358,84359,84359,84360,84360,84361,84361,84407,84407,84362,84362,84363,84363,84364,84364,84386,84386,84365,84365,84366,84366,84367,84367,84368,84368,84369,84369,84370,84370,84371,84371,84372,84372,81038,81038,81039,81039,81040,81040,81041,81041,81042,81042,81043,81043,81044,81044,81204,81204,81045,81045,81046,81046,81047,81047,81048,81048,81049,81049,81050,81050,81051,81051,81052,81052,81053,81053,81054,81054,81055,81055,81056,81056,81057,81057,81058,81058,81059,81059,81060,81060,81061,81061,81062,81062,81063,81063,81064,81064,81065,81065,81066,81066,81067,81067,81068,81068,81069,81069,81070,81070,81071,81071,81072,81072,81073,81073,81074,81074,87635,87635,87641,87641,87634,87634,87633,87633,87632,87632,87631,87631,87630,87630,87629,87629,87628,87628,87627,87627,87626,87626,87625,87625,87624,87624,87623,87623,87622,87622,87621,87621,87620,87620,87619,87619,87618,87618,87617,87617,87616,87616,87615,87615,87614,87614,87613,87613,87612,87612,87611,87611,87610,87610,87609,87609,87608,87608,87607,87607,87640,87640,87606,87606,87605,87605,87604,87604,87603,87603,87602,87602,87601,87601,87600,87600,87599,87599,87598,87598,87639,87639,87597,87597,87596,87596,87595,87595,87638,87638,87594,87594,87593,87593,87592,87592,87591,87591,87590,87590,87589,87589,87588,87588,87587,87587,87586,87586,87585,87585,87637,87637,87584,87584,87583,87583,87582,87582,87581,87581,87580,87580,87579,87579,87578,87578,87642,87642,87636,87636,87577,87577,87576,87576,87575,87575,87574,87574,87573,87573,87572,87572,87571,87571,87570,87570,87569,87569,87568,87568,86293,81074,81075,81075,81076,81076,81077,81077,81078,81078,81079,81079,81205,81205,81185,81185,81080,81080,81081,81081,81082,81082,81083,81083,81084,81084,81085,81085,81086,81086,81221,81221,81240,81240,81245,81245,81087,81087,81088,81088,81089,81089,81186,81186,81258,81258,81241,81241,81090,81090,81091,81091,81092,81092,81187,81187,81215,81215,81093,81093,81094,81094,81095,81095,81096,81096,81097,81097,81098,81098,81099,81099,81100,81100,81101,81101,81102,81102,81103,81103,81206,81206,81104,81104,81105,81105,81106,81106,81188,81188,81246,81246,81251,81251,81189,81189,81107,81107,81108,81108,81109,81109,81207,81207,81216,81216,81110,81110,81111,81111,81112,81112,81190,81190,81208,81208,81113,81113,81114,81114,81115,81115,81191,81191,81116,81116,81117,81117,81118,81118,81192,81192,81119,81119,81120,81120,81121,81121,81237,81237,81222,81222,81122,81122,81123,81123,81124,81124,81125,81125,81126,81126,81127,81127,81193,81193,81217,81217,81229,81229,81242,81242,81230,81230,81209,81209,81128,81128,81129,81129,81130,81130,81131,81131,81132,81132,81133,81133,81134,81134,81135,81135,81136,81136,81137,81137,81138,81138,81194,81194,81139,81139,81140,81140,81141,81141,81195,81195,81142,81142,81143,81143,81144,81144,81145,81145,81146,81146,81147,81147,81148,81148,81149,81149,81210,81210,81150,81150,81151,81151,81152,81152,81196,81196,81153,81153,81154,81154,81155,81155,81156,81156,81157,81157,81158,81158,81159,81159,81160,81160,81211,81211,81223,81223,81161,81161,81162,81162,81163,81163,81164,81164,81165,81165,81212,81212,81218,81218,81166,81166,81167,81167,81168,81168,81169,81169,81170,81170,81171,81171,81172,81172,81173,81173,80913,80913,80914,80914,87794,87794,87793,87793,87792,87792,87791,87791,87790,87790,87802,87802,87789,87789,87788,87788,87787,87787,87786,87786,87785,87785,87807,87807,87813,87813,87822,87822,87812,87812,87784,87784,87783,87783,87782,87782,87781,87781,87780,87780,87779,87779,87778,87778,87777,87777,87776,87776,87775,87775,87774,87774,87811,87811,87806,87806,87801,87801,87773,87773,87772,87772,87771,87771,87800,87800,87770,87770,87769,87769,87768,87768,87810,87810,87817,87817,87821,87821,87809,87809,87805,87805,87767,87767,87766,87766,87765,87765,87764,87764,87763,87763,87799,87799,87762,87762,87761,87761,87760,87760,87759,87759,87758,87758,87757,87757,87756,87756,87755,87755,87754,87754,87753,87753,87752,87752,87751,87751,87750,87750,87749,87749,87798,87798,87816,87816,87820,87820,87819,87819,87748,87748,87747,87747,87746,87746,87745,87745,87744,87744,87804,87804,87797,87797,87743,87743,87742,87742,87741,87741,87740,87740,87739,87739,87738,87738,87737,87737,87736,87736,87735,87735,87734,87734,87733,87733,87732,87732,87731,87731,87730,87730,87729,87729,87803,87803,87815,87815,87818,87818,87814,87814,87728,87728,87727,87727,87726,87726,87725,87725,87724,87724,87723,87723,87722,87722,87721,87721,87720,87720,87719,87719,87718,87718,87717,87717,87716,87716,87715,87715,87714,87714,87796,87796,87713,87713,87712,87712,87711,87711,87808,87808,87795,87795,87710,87710,87709,87709,87708,87708,87621,87621,87622,87622,87623,87623,87624,87624,87625,87625,87626,87626,87627,87627,87628,87628,87629,87629,87630,87630,87631,87631,87632,87632,87633,87633,87634,87634,87641,87641,87635,87635,81074,86145,86146,86146,86147,86147,86148,86148,86149,86149,86150,86150,86151,86151,86152,86152,86153,86153,86383,86383,86424,86424,86154,86154,86155,86155,86156,86156,86157,86157,86158,86158,86159,86159,86160,86160,86161,86161,86162,86162,86163,86163,86164,86164,86384,86384,86434,86434,86425,86425,86402,86402,86165,86165,86166,86166,86167,86167,86168,86168,86169,86169,86170,86170,86171,86171,86172,86172,86385,86385,86403,86403,86437,86437,86431,86431,86415,86415,86173,86173,86174,86174,86175,86175,86176,86176,86177,86177,86178,86178,86179,86179,86386,86386,86180,86180,86181,86181,86182,86182,86183,86183,86184,86184,86387,86387,86185,86185,86186,86186,86187,86187,86188,86188,86189,86189,86190,86190,86191,86191,86192,86192,86388,86388,86416,86416,86389,86389,86193,86193,86194,86194,86195,86195,86196,86196,86197,86197,86198,86198,86199,86199,86200,86200,86201,86201,86202,86202,86404,86404,86203,86203,86033,86033,86034,86034,86035,86035,86036,86036,86037,86037,86038,86038,86039,86039,86040,86040,86041,86041,86042,86042,86043,86043,86105,86105,86044,86044,86045,86045,86046,86046,86047,86047,86048,86048,86118,86118,86124,86124,87873,87873,87872,87872,87871,87871,87870,87870,87869,87869,87868,87868,87867,87867,87866,87866,87888,87888,87896,87896,87905,87905,87973,87973,88009,88009,87917,87917,87887,87887,87865,87865,87864,87864,87863,87863,87862,87862,87861,87861,87860,87860,87859,87859,87858,87858,87857,87857,87856,87856,87855,87855,87854,87854,87853,87853,87852,87852,87876,87876,87875,87875,87851,87851,87850,87850,87849,87849,87881,87881,87874,87874,87848,87848,87847,87847,87846,87846,87845,87845,87844,87844,87843,87843,87842,87842,87841,87841,87840,87840,87839,87839,87880,87880,87838,87838,87837,87837,87836,87836,87835,87835,87834,87834,85241,85241,85242,85242,85445,85445,85243,85243,85244,85244,85245,85245,85246,85246,85247,85247,85495,85495,85481,85481,85446,85446,85248,85248,85249,85249,85250,85250,85251,85251,85252,85252,85447,85447,85448,85448,85253,85253,85254,85254,85255,85255,85256,85256,85257,85257,85258,85258,85259,85259,85260,85260,85261,85261,85262,85262,85263,85263,85264,85264,85265,85265,85266,85266,85449,85449,85267,85267,85268,85268,85269,85269,85270,85270,85271,85271,85272,85272,85273,85273,85274,85274,85275,85275,85276,85276,87261,87261,87286,87286,87262,87262,87263,87263,87264,87264,87265,87265,87266,87266,87297,87297,87308,87308,87336,87336,87267,87267,87268,87268,87269,87269,87280,87280,87270,87270,87271,87271,87272,87272,87281,87281,87273,87273,87274,87274,87275,87275,82972,82972,82973,82973,83137,83137,83138,83138,83110,83110,82974,82974,82975,82975,82976,82976,82977,82977,82978,82978,82979,82979,82980,82980,86612,86612,86613,86613,86614,86614,86615,86615,86616,86616,86617,86617,86618,86618,86619,86619,86620,86620,86679,86679,86691,86691,86692,86692,86621,86621,86622,86622,86623,86623,86624,86624,86625,86625,86626,86626,86627,86627,86628,86628,86629,86629,86693,86693,86630,86630,86631,86631,86632,86632,86633,86633,86634,86634,86635,86635,86636,86636,86637,86637,86638,86638,86145,86069,86070,86070,86071,86071,86072,86072,86073,86073,86074,86074,86075,86075,86076,86076,86077,86077,86078,86078,86079,86079,86080,86080,86081,86081,86082,86082,86083,86083,86084,86084,86109,86109,86085,86085,86086,86086,86087,86087,86110,86110,86088,86088,86089,86089,86090,86090,86091,86091,86092,86092,86093,86093,86094,86094,86095,86095,86096,86096,86097,86097,86111,86111,86112,86112,86098,86098,85983,85983,85984,85984,88093,88093,88092,88092,88091,88091,88090,88090,88089,88089,88088,88088,88087,88087,88086,88086,88085,88085,88084,88084,88083,88083,88082,88082,88081,88081,88080,88080,88079,88079,88078,88078,88077,88077,88076,88076,88075,88075,88074,88074,88073,88073,88072,88072,88071,88071,88070,88070,88069,88069,88108,88108,88105,88105,88068,88068,88067,88067,88066,88066,88065,88065,88064,88064,88063,88063,88062,88062,88061,88061,88098,88098,88113,88113,88097,88097,88060,88060,88059,88059,88058,88058,88057,88057,88056,88056,88096,88096,88104,88104,88055,88055,88054,88054,88053,88053,88095,88095,88111,88111,88110,88110,88107,88107,88103,88103,88052,88052,88051,88051,88050,88050,88049,88049,88048,88048,88047,88047,88046,88046,88045,88045,88102,88102,88044,88044,88043,88043,88042,88042,88041,88041,88040,88040,88039,88039,88038,88038,88037,88037,88036,88036,88035,88035,88034,88034,88033,88033,88032,88032,88031,88031,88030,88030,88029,88029,88101,88101,88028,88028,88027,88027,88026,88026,88025,88025,88024,88024,88100,88100,88099,88099,88023,88023,88022,88022,88021,88021,88020,88020,88019,88019,88094,88094,88018,88018,86069,86069,88018,88018,88094,88094,88019,88019,88020,88020,88021,88021,88022,88022,88023,88023,88149,88149,88148,88148,88147,88147,88146,88146,88145,88145,88144,88144,88143,88143,88142,88142,88153,88153,88141,88141,88140,88140,88139,88139,88138,88138,88137,88137,88136,88136,88135,88135,88134,88134,88133,88133,88132,88132,88131,88131,88130,88130,88129,88129,88128,88128,88127,88127,88126,88126,88154,88154,88175,88175,88169,88169,88157,88157,88155,88155,88152,88152,88125,88125,88124,88124,88123,88123,88151,88151,88122,88122,88121,88121,88120,88120,88150,88150,88119,88119,88118,88118,88117,88117,88156,88156,88116,88116,85045,85045,85131,85131,85140,85140,85150,85150,85145,85145,85132,85132,85046,85046,85047,85047,85048,85048,85049,85049,85050,85050,85051,85051,85052,85052,85053,85053,85054,85054,85055,85055,85056,85056,85057,85057,85058,85058,85059,85059,85133,85133,85134,85134,85060,85060,85061,85061,85062,85062,85063,85063,85064,85064,85065,85065,85066,85066,85067,85067,85068,85068,85069,85069,85070,85070,85071,85071,85072,85072,85073,85073,85074,85074,85181,85181,85182,85182,85183,85183,85184,85184,85185,85185,85440,85440,85186,85186,85187,85187,85188,85188,85189,85189,85190,85190,85191,85191,85192,85192,85480,85480,85491,85491,85503,85503,85504,85504,85492,85492,85193,85193,85194,85194,85195,85195,85196,85196,85197,85197,85198,85198,85199,85199,85200,85200,85201,85201,85202,85202,85203,85203,85462,85462,85204,85204,85205,85205,85206,85206,85207,85207,85208,85208,85463,85463,85209,85209,85210,85210,85211,85211,85493,85493,85464,85464,85212,85212,85213,85213,85214,85214,85215,85215,85216,85216,85217,85217,85218,85218,85441,85441,85465,85465,85219,85219,85220,85220,85221,85221,85222,85222,85223,85223,85224,85224,85225,85225,85494,85494,85517,85517,85526,85526,85466,85466,85226,85226,85227,85227,85228,85228,85442,85442,85229,85229,85230,85230,85231,85231,85232,85232,85233,85233,85234,85234,85235,85235,85236,85236,85443,85443,85505,85505,85518,85518,85467,85467,85237,85237,85238,85238,85239,85239,85444,85444,85240,85240,85241,85241,87834,87834,87835,87835,87836,87836,87837,87837,87838,87838,87880,87880,87839,87839,87840,87840,87841,87841,87842,87842,87843,87843,87844,87844,87845,87845,87846,87846,87847,87847,87848,87848,87874,87874,87881,87881,87849,87849,87850,87850,87851,87851,87875,87875,87876,87876,87852,87852,87853,87853,87854,87854,87855,87855,87856,87856,87857,87857,87858,87858,87859,87859,87860,87860,87861,87861,87862,87862,87863,87863,87864,87864,87865,87865,87887,87887,87917,87917,88009,88009,87973,87973,87905,87905,87896,87896,87888,87888,87866,87866,87867,87867,87868,87868,87869,87869,87870,87870,87871,87871,87872,87872,87873,87873,86124,86124,86126,86126,86127,86127,86130,86130,86049,86049,86050,86050,86051,86051,86052,86052,86053,86053,86054,86054,86055,86055,86056,86056,86057,86057,86058,86058,86119,86119,86059,86059,86060,86060,86061,86061,86106,86106,86062,86062,86063,86063,86064,86064,86107,86107,86108,86108,86065,86065,86066,86066,86067,86067,86068,86068,86069,88023,88099,88099,88100,88100,88024,88024,88025,88025,88026,88026,88027,88027,88028,88028,88101,88101,88029,88029,88030,88030,88031,88031,88032,88032,88033,88033,88034,88034,88035,88035,88036,88036,88037,88037,88038,88038,88039,88039,88040,88040,88041,88041,88042,88042,88043,88043,88044,88044,88102,88102,88045,88045,88046,88046,88047,88047,88048,88048,88049,88049,88050,88050,88051,88051,88052,88052,88103,88103,88107,88107,88110,88110,88111,88111,88095,88095,88053,88053,88054,88054,88055,88055,88104,88104,88096,88096,88056,88056,88057,88057,88058,88058,88059,88059,88060,88060,88097,88097,88113,88113,88098,88098,88061,88061,88062,88062,88063,88063,88064,88064,88065,88065,88066,88066,88067,88067,88068,88068,88105,88105,88108,88108,88069,88069,88070,88070,88071,88071,88072,88072,88073,88073,88074,88074,88075,88075,88076,88076,88077,88077,88078,88078,88079,88079,88080,88080,88081,88081,88082,88082,88083,88083,88084,88084,88085,88085,88086,88086,88087,88087,88088,88088,88089,88089,88090,88090,88091,88091,88092,88092,88206,88206,88205,88205,88204,88204,88203,88203,88202,88202,88201,88201,88200,88200,88199,88199,88198,88198,88197,88197,88196,88196,88195,88195,88194,88194,88207,88207,88193,88193,88192,88192,88191,88191,88190,88190,88189,88189,88208,88208,88188,88188,88187,88187,88186,88186,84967,84967,84968,84968,85001,85001,85002,85002,85003,85003,85004,85004,85005,85005,85006,85006,85007,85007,85008,85008,85009,85009,85010,85010,85011,85011,85012,85012,85013,85013,85014,85014,85015,85015,85016,85016,85017,85017,85124,85124,85169,85169,85167,85167,85018,85018,85019,85019,85020,85020,85125,85125,85021,85021,85022,85022,85023,85023,85024,85024,85025,85025,85137,85137,85138,85138,85026,85026,85027,85027,85028,85028,85126,85126,85029,85029,85030,85030,85031,85031,85139,85139,85127,85127,85032,85032,85033,85033,85034,85034,85128,85128,85035,85035,85036,85036,85037,85037,85038,85038,85039,85039,85129,85129,85040,85040,85041,85041,85042,85042,85130,85130,85043,85043,85044,85044,85045,85045,88116,88116,88156,88156,88117,88117,88118,88118,88119,88119,88150,88150,88120,88120,88121,88121,88122,88122,88151,88151,88123,88123,88124,88124,88125,88125,88152,88152,88155,88155,88157,88157,88169,88169,88175,88175,88154,88154,88126,88126,88127,88127,88128,88128,88129,88129,88130,88130,88131,88131,88132,88132,88133,88133,88134,88134,88135,88135,88136,88136,88137,88137,88138,88138,88139,88139,88140,88140,88141,88141,88153,88153,88142,88142,88143,88143,88144,88144,88145,88145,88146,88146,88147,88147,88148,88148,88149,88149,88023,85754,85755,85755,85756,85756,85757,85757,85758,85758,85759,85759,85760,85760,85761,85761,85762,85762,85781,85781,85763,85763,85764,85764,85765,85765,85766,85766,85767,85767,84013,84013,84014,84014,84015,84015,84108,84108,84127,84127,84109,84109,84016,84016,84017,84017,84018,84018,84019,84019,84020,84020,84021,84021,84022,84022,84023,84023,84082,84082,84147,84147,84142,84142,84118,84118,84083,84083,84024,84024,84025,84025,84026,84026,84095,84095,84027,84027,84028,84028,84029,84029,84030,84030,84031,84031,84032,84032,84033,84033,88263,88263,88262,88262,88267,88267,88261,88261,88260,88260,88259,88259,88271,88271,88258,88258,88257,88257,88256,88256,88255,88255,88254,88254,88274,88274,88266,88266,88253,88253,88252,88252,88251,88251,88250,88250,88249,88249,88265,88265,88276,88276,88270,88270,88264,88264,88248,88248,88247,88247,88246,88246,88245,88245,88244,88244,88243,88243,88242,88242,88241,88241,88240,88240,88275,88275,88277,88277,88239,88239,88238,88238,88237,88237,88236,88236,88235,88235,88234,88234,88233,88233,88232,88232,88269,88269,88273,88273,88231,88231,88230,88230,88229,88229,88228,88228,88227,88227,88268,88268,88272,88272,88226,88226,85754,88279,88278,88278,88289,88289,88288,88288,88287,88287,88286,88286,88285,88285,88284,88284,88283,88283,88282,88282,88281,88281,88280,88280,88279,88291,88290,88290,88298,88298,88297,88297,88296,88296,88295,88295,88294,88294,88293,88293,88292,88292,88291,88299,88308,88308,88307,88307,88306,88306,88305,88305,88304,88304,88303,88303,88302,88302,88301,88301,88300,88300,88299,88315,88314,88314,88313,88313,88312,88312,88311,88311,88310,88310,88309,88309,88315,88317,88316,88316,88322,88322,88321,88321,88320,88320,88319,88319,88318,88318,88317,88324,88323,88323,88328,88328,88327,88327,88326,88326,88325,88325,88324,88330,88329,88329,88335,88335,88334,88334,88333,88333,88332,88332,88331,88331,88330,85408,85632,85632,85633,85633,85634,85634,85635,85635,85768,85768,85636,85636,85637,85637,85638,85638,85769,85769,85639,85639,85640,85640,85641,85641,85642,85642,85643,85643,85789,85789,85782,85782,85644,85644,85645,85645,85646,85646,85770,85770,85647,85647,85648,85648,85649,85649,85650,85650,85651,85651,85771,85771,85652,85652,85653,85653,85654,85654,85783,85783,85655,85655,85656,85656,85657,85657,85772,85772,85790,85790,85773,85773,85658,85658,85659,85659,85660,85660,85661,85661,85662,85662,85774,85774,85663,85663,85664,85664,85665,85665,85775,85775,85666,85666,85667,85667,85668,85668,85776,85776,85669,85669,85670,85670,85671,85671,85777,85777,85791,85791,85784,85784,85672,85672,85673,85673,85674,85674,85675,85675,85676,85676,85785,85785,85677,85677,85678,85678,85679,85679,85680,85680,85681,85681,88362,88362,88361,88361,88360,88360,88359,88359,88358,88358,88368,88368,88405,88405,88398,88398,88357,88357,88356,88356,88355,88355,88354,88354,88353,88353,88352,88352,88351,88351,88350,88350,88349,88349,88348,88348,88347,88347,88346,88346,88345,88345,88344,88344,88343,88343,88342,88342,88367,88367,88364,88364,88341,88341,88340,88340,88339,88339,88338,88338,88337,88337,88366,88366,88363,88363,88336,88336,80810,80810,80811,80811,80812,80812,80813,80813,80814,80814,80815,80815,80816,80816,80817,80817,80818,80818,80819,80819,80820,80820,80821,80821,80822,80822,80823,80823,80824,80824,80825,80825,80826,80826,80827,80827,80828,80828,80829,80829,80867,80867,80830,80830,80831,80831,80832,80832,80833,80833,80834,80834,80835,80835,80836,80836,80837,80837,80838,80838,80839,80839,80840,80840,80841,80841,80868,80868,80883,80883,80899,80899,80891,80891,80842,80842,80843,80843,80844,80844,80869,80869,80845,80845,80846,80846,80847,80847,80848,80848,80849,80849,80850,80850,80851,80851,80870,80870,80875,80875,80885,80885,80887,80887,80889,80889,80894,80894,80896,80896,80898,80898,80900,80900,80902,80902,80908,80908,80912,80912,80911,80911,80910,80910,80906,80906,80904,80904,80879,80879,80876,80876,80871,80871,80852,80852,80853,80853,80854,80854,80886,80886,80884,80884,80880,80880,80877,80877,80872,80872,80855,80855,80856,80856,80857,80857,80881,80881,80878,80878,80873,80873,80858,80858,80859,80859,80860,80860,80861,80861,80862,80862,80863,80863,80864,80864,80865,80865,80874,80874,87244,87244,87245,87245,87246,87246,87278,87278,87247,87247,87248,87248,87249,87249,87279,87279,87250,87250,87251,87251,87252,87252,87253,87253,87254,87254,87255,87255,87256,87256,87257,87257,87258,87258,87259,87259,87260,87260,85323,85323,85324,85324,85325,85325,85326,85326,85327,85327,85328,85328,85329,85329,85330,85330,85331,85331,85332,85332,85333,85333,85334,85334,85335,85335,85336,85336,85337,85337,85338,85338,85339,85339,85340,85340,85341,85341,85342,85342,85343,85343,85344,85344,85345,85345,85346,85346,85347,85347,85348,85348,85349,85349,85350,85350,85351,85351,85352,85352,85353,85353,85354,85354,85355,85355,85356,85356,85357,85357,85358,85358,85359,85359,85360,85360,85361,85361,85362,85362,85363,85363,85364,85364,85365,85365,85366,85366,85456,85456,85367,85367,85368,85368,85369,85369,85473,85473,85485,85485,85474,85474,85457,85457,85370,85370,85371,85371,85372,85372,85486,85486,85475,85475,85458,85458,85373,85373,85374,85374,85375,85375,85523,85523,85516,85516,85476,85476,85376,85376,85377,85377,85378,85378,85379,85379,85380,85380,85487,85487,85381,85381,85382,85382,85383,85383,85488,85488,85459,85459,85384,85384,85385,85385,85386,85386,85387,85387,85388,85388,85389,85389,85390,85390,85391,85391,85392,85392,85393,85393,85394,85394,85395,85395,85396,85396,85397,85397,85398,85398,85399,85399,85400,85400,85401,85401,85402,85402,85403,85403,85404,85404,85477,85477,85489,85489,85405,85405,85406,85406,85407,85407,85408,88556,88555,88555,88572,88572,88571,88571,88570,88570,88569,88569,88568,88568,88567,88567,88566,88566,88565,88565,88564,88564,88563,88563,88562,88562,88561,88561,88560,88560,88573,88573,88559,88559,88558,88558,88557,88557,88556,87621,87708,87708,87709,87709,87710,87710,87795,87795,87808,87808,87711,87711,87712,87712,87713,87713,87796,87796,87714,87714,87715,87715,87716,87716,87717,87717,87718,87718,87719,87719,87720,87720,87721,87721,87722,87722,87723,87723,87724,87724,87725,87725,87726,87726,87727,87727,88585,88585,88584,88584,88583,88583,88582,88582,88581,88581,88580,88580,88579,88579,88578,88578,88577,88577,88576,88576,88575,88575,88574,88574,87611,87611,87612,87612,87613,87613,87614,87614,87615,87615,87616,87616,87617,87617,87618,87618,87619,87619,87620,87620,87621,84525,84526,84526,84527,84527,84528,84528,84529,84529,84530,84530,84531,84531,84532,84532,84533,84533,84534,84534,84535,84535,84536,84536,84537,84537,84538,84538,84539,84539,84540,84540,84634,84634,84541,84541,84542,84542,84543,84543,84544,84544,84545,84545,84546,84546,84547,84547,84658,84658,84675,84675,84635,84635,84548,84548,84549,84549,84550,84550,84551,84551,84552,84552,84553,84553,84554,84554,84555,84555,84556,84556,84557,84557,84558,84558,84559,84559,84560,84560,84561,84561,83009,83009,83010,83010,83125,83125,83142,83142,83170,83170,83186,83186,83202,83202,83219,83219,83238,83238,83280,83280,83326,83326,83350,83350,83380,83380,83386,83386,83389,83389,83385,83385,83379,83379,83359,83359,83335,83335,83310,83310,83286,83286,83266,83266,83241,83241,83221,83221,83204,83204,83188,83188,83172,83172,83157,83157,83143,83143,83126,83126,83112,83112,83011,83011,83012,83012,83013,83013,83127,83127,83113,83113,83014,83014,83015,83015,83016,83016,83144,83144,83017,83017,83018,83018,83019,83019,83020,83020,83021,83021,83022,83022,83023,83023,83158,83158,83145,83145,83024,83024,83025,83025,83026,83026,83027,83027,83028,83028,88707,88707,88706,88706,88705,88705,88704,88704,88703,88703,88702,88702,88701,88701,88700,88700,88699,88699,88698,88698,88697,88697,88696,88696,88695,88695,88717,88717,88749,88749,88743,88743,88722,88722,88716,88716,88694,88694,88693,88693,88692,88692,88691,88691,88690,88690,88689,88689,88688,88688,88687,88687,88686,88686,88685,88685,88684,88684,88683,88683,88682,88682,88681,88681,88680,88680,88679,88679,88678,88678,88677,88677,88676,88676,88675,88675,88721,88721,88720,88720,88674,88674,88673,88673,88672,88672,88671,88671,88670,88670,88669,88669,88668,88668,88711,88711,88667,88667,88666,88666,88665,88665,88727,88727,88715,88715,88664,88664,88663,88663,88662,88662,88661,88661,88660,88660,88719,88719,88659,88659,88658,88658,88657,88657,88656,88656,88655,88655,88654,88654,88653,88653,88652,88652,88746,88746,88651,88651,42108,42108,42109,42109,42022,42022,42023,42023,42097,42097,42092,42092,42024,42024,42025,42025,42026,42026,42093,42093,42027,42027,42028,42028,42029,42029,88650,88650,88649,88649,88648,88648,88647,88647,88646,88646,88645,88645,88644,88644,88643,88643,88642,88642,88641,88641,88640,88640,88639,88639,88638,88638,88637,88637,88636,88636,88714,88714,88635,88635,88634,88634,88633,88633,88632,88632,88631,88631,88630,88630,88718,88718,88629,88629,88628,88628,88627,88627,88710,88710,88626,88626,88625,88625,88624,88624,88623,88623,88622,88622,88709,88709,88621,88621,88620,88620,88619,88619,88618,88618,88617,88617,88616,88616,88615,88615,88614,88614,88613,88613,88612,88612,88611,88611,88610,88610,88609,88609,88608,88608,88607,88607,88606,88606,88605,88605,88604,88604,88603,88603,88602,88602,88601,88601,88600,88600,88599,88599,88598,88598,88597,88597,88596,88596,88595,88595,88594,88594,88708,88708,88712,88712,88725,88725,88732,88732,88739,88739,88757,88757,88593,88593,88592,88592,88591,88591,88590,88590,88589,88589,88588,88588,88587,88587,88586,88586,84525,85699,85700,85700,85701,85701,85702,85702,85703,85703,85794,85794,85800,85800,85803,85803,85806,85806,85704,85704,85705,85705,85706,85706,85707,85707,85708,85708,85709,85709,85710,85710,85711,85711,85712,85712,85713,85713,85795,85795,85815,85815,85814,85814,85714,85714,85715,85715,85716,85716,85796,85796,85717,85717,85718,85718,85719,85719,85720,85720,85721,85721,85722,85722,85723,85723,85724,85724,85799,85799,85801,85801,85725,85725,85726,85726,85727,85727,85728,85728,85729,85729,85779,85779,85730,85730,85731,85731,85732,85732,85733,85733,85734,85734,85735,85735,88912,88912,88911,88911,88910,88910,88909,88909,88908,88908,88907,88907,88913,88913,88906,88906,88905,88905,88904,88904,88903,88903,88902,88902,88901,88901,88900,88900,88899,88899,88898,88898,88914,88914,88915,88915,88897,88897,88896,88896,88895,88895,88894,88894,88893,88893,88892,88892,85699,88917,88916,88916,88924,88924,88923,88923,88922,88922,88921,88921,88920,88920,88919,88919,88918,88918,88917,88926,88925,88925,88935,88935,88934,88934,88933,88933,88932,88932,88931,88931,88930,88930,88929,88929,88928,88928,88927,88927,88926,88937,88936,88936,88947,88947,88946,88946,88945,88945,88944,88944,88943,88943,88942,88942,88941,88941,88948,88948,88940,88940,88939,88939,88938,88938,88937,88950,88949,88949,88954,88954,88953,88953,88952,88952,88951,88951,88950,88956,88955,88955,88967,88967,88966,88966,88965,88965,88964,88964,88963,88963,88962,88962,88961,88961,88960,88960,88959,88959,88958,88958,88957,88957,88956,88969,88968,88968,89172,89172,89185,89185,89171,89171,89170,89170,89169,89169,89168,89168,89167,89167,89166,89166,89197,89197,89184,89184,89165,89165,89164,89164,89163,89163,89162,89162,89161,89161,89160,89160,89159,89159,89158,89158,89157,89157,89156,89156,89155,89155,89203,89203,89220,89220,89235,89235,89196,89196,89183,89183,89154,89154,89153,89153,89152,89152,89195,89195,89151,89151,89150,89150,89149,89149,89148,89148,89147,89147,89182,89182,89146,89146,89145,89145,89144,89144,89194,89194,89219,89219,89209,89209,89143,89143,89142,89142,89141,89141,89140,89140,89139,89139,89138,89138,89137,89137,89181,89181,89136,89136,89135,89135,89134,89134,89180,89180,89133,89133,89132,89132,89131,89131,89130,89130,89129,89129,89128,89128,89127,89127,89126,89126,89125,89125,89124,89124,89123,89123,89122,89122,89121,89121,89120,89120,89119,89119,89118,89118,89117,89117,89116,89116,89115,89115,89114,89114,89113,89113,89193,89193,89202,89202,89192,89192,89112,89112,89111,89111,89110,89110,89109,89109,89108,89108,89107,89107,89106,89106,89105,89105,89104,89104,89103,89103,89102,89102,89101,89101,89100,89100,89099,89099,89098,89098,89097,89097,89096,89096,89095,89095,89094,89094,89093,89093,89092,89092,89091,89091,89090,89090,89089,89089,89088,89088,89087,89087,89086,89086,89085,89085,89084,89084,89083,89083,89082,89082,89081,89081,89080,89080,89079,89079,89078,89078,89077,89077,89076,89076,89075,89075,89074,89074,89179,89179,89073,89073,89072,89072,89071,89071,89191,89191,89070,89070,89069,89069,89068,89068,89067,89067,89066,89066,89226,89226,89240,89240,89065,89065,89064,89064,89063,89063,89201,89201,89178,89178,89062,89062,89061,89061,89060,89060,89190,89190,89059,89059,89058,89058,89057,89057,89056,89056,89055,89055,89177,89177,89054,89054,89053,89053,89052,89052,89051,89051,89050,89050,89049,89049,89048,89048,89047,89047,89046,89046,89045,89045,89200,89200,89044,89044,89043,89043,89042,89042,89041,89041,89040,89040,89176,89176,89039,89039,89038,89038,89037,89037,89036,89036,89035,89035,89034,89034,89033,89033,89032,89032,89175,89175,89031,89031,89030,89030,89029,89029,89199,89199,89205,89205,89028,89028,89027,89027,89026,89026,89025,89025,89024,89024,89023,89023,89022,89022,89021,89021,89020,89020,89019,89019,89018,89018,89017,89017,89198,89198,89212,89212,89246,89246,89016,89016,89015,89015,89014,89014,89013,89013,89012,89012,89011,89011,89010,89010,89009,89009,89008,89008,89007,89007,89006,89006,89005,89005,89004,89004,89003,89003,89189,89189,89204,89204,89002,89002,89001,89001,89000,89000,88999,88999,88998,88998,88997,88997,88996,88996,88995,88995,88994,88994,88993,88993,88992,88992,88991,88991,88990,88990,88989,88989,88988,88988,88987,88987,88986,88986,88985,88985,88984,88984,88983,88983,88982,88982,89188,89188,89174,89174,88981,88981,88980,88980,88979,88979,89223,89223,89267,89267,89236,89236,89221,89221,89173,89173,88978,88978,88977,88977,88976,88976,89187,89187,88975,88975,88974,88974,88973,88973,88972,88972,88971,88971,89186,89186,88970,88970,88969,89273,89280,89280,89279,89279,89278,89278,89277,89277,89276,89276,89275,89275,89274,89274,89273,89282,89281,89281,89285,89285,89284,89284,89283,89283,89282,89287,89286,89286,89295,89295,89294,89294,89293,89293,89292,89292,89291,89291,89290,89290,89289,89289,89288,89288,89287,89297,89296,89296,89307,89307,89306,89306,89305,89305,89304,89304,89303,89303,89302,89302,89301,89301,89300,89300,89299,89299,89308,89308,89298,89298,89297,89310,89309,89309,89316,89316,89315,89315,89314,89314,89313,89313,89312,89312,89311,89311,89310,89318,89317,89317,89327,89327,89326,89326,89325,89325,89324,89324,89323,89323,89322,89322,89321,89321,89320,89320,89319,89319,89318,89329,89328,89328,89336,89336,89335,89335,89334,89334,89333,89333,89332,89332,89331,89331,89330,89330,89329,89338,89337,89337,89346,89346,89345,89345,89344,89344,89347,89347,89343,89343,89342,89342,89341,89341,89340,89340,89339,89339,89338,89349,89348,89348,89355,89355,89354,89354,89353,89353,89352,89352,89351,89351,89350,89350,89349,89357,89356,89356,89364,89364,89363,89363,89362,89362,89361,89361,89360,89360,89359,89359,89358,89358,89357]} \ No newline at end of file
diff --git a/webgl-maps-poc/ocean-data.js b/webgl-maps-poc/ocean-data.js
new file mode 100644
index 0000000000..6b6873f5dd
--- /dev/null
+++ b/webgl-maps-poc/ocean-data.js
@@ -0,0 +1 @@
+const oceanData = {"positions":[0.0,0.999,0.0,0.0,0.9966093,0.06907245,0.0656918,0.9966093,0.02134456,0.0,0.9894484,0.1378143,0.065751106,0.99271744,0.09049863,0.13106918,0.9894484,0.04258696,0.0,0.9775519,0.20589656,0.06592237,0.9839289,0.15980971,0.0,0.9609764,0.2729933,0.065976374,0.97045237,0.22775057,0.13152373,0.97361785,0.18102688,0.19621585,0.97045237,0.13312605,0.13161694,0.9839289,0.112079814,0.25963205,0.9609764,0.08435956,0.19581924,0.9775519,0.06362552,0.0,0.9398015,0.3387834,0.066500306,0.9513502,0.29750878,0.0,0.91412836,0.40295205,0.06653781,0.9283893,0.3628596,0.13265972,0.9368472,0.32049912,0.0,0.88408,0.46519202,0.066642694,0.9006771,0.42701355,0.0,0.8498001,0.52520543,0.06667457,0.8688444,0.48853356,0.13293807,0.88253194,0.44884968,0.19838195,0.89077824,0.40639842,0.13312316,0.91191083,0.3856137,0.26260275,0.89353275,0.36144164,0.19813907,0.91754174,0.34184656,0.3252045,0.89077824,0.31425643,0.2638871,0.91754174,0.29407787,0.38580126,0.8825319,0.26513374,0.3256031,0.91191083,0.24576882,0.2638187,0.9368472,0.22520657,0.4440194,0.8688444,0.21437642,0.38552028,0.9006771,0.19533539,0.49950007,0.84980017,0.1622974,0.4424239,0.88408,0.14375222,0.38323012,0.9141283,0.12451901,0.32220218,0.9398015,0.10468983,0.3245387,0.92838925,0.17541102,0.26239794,0.9513503,0.15518083,0.1324373,0.9577316,0.25141904,0.19889505,0.93994665,0.27375555,0.19818838,0.9577316,0.20364812,0.0,0.81145287,0.5827051,0.06667456,0.8255166,0.5586393,0.0,0.76922184,0.6374157,0.06664269,0.78472745,0.61462396,0.13293806,0.79614353,0.588629,0.0,0.7233091,0.6890755,0.0665378,0.7397397,0.66810095,0.0,0.6739343,0.7374372,0.066500306,0.69155663,0.7178636,0.1326597,0.7056339,0.6946101,0.19813907,0.7160939,0.6677959,0.13312313,0.7527222,0.6431862,0.26260272,0.72288316,0.63755846,0.19838193,0.7618618,0.6149895,0.0,0.6213339,0.7822693,0.06597637,0.63770574,0.76614594,0.0,0.56575966,0.8233572,0.065922365,0.58296454,0.80858374,0.13152371,0.5973305,0.78987265,0.0,0.5074775,0.8605043,0.0657511,0.52490115,0.84744126,0.0,0.44676635,0.8935328,0.06569179,0.46478835,0.8818489,0.13106917,0.4805857,0.8659442,0.19581923,0.49408287,0.8458948,0.13161692,0.5402736,0.8299292,0.25963202,0.50521517,0.8217967,0.19621582,0.553071,0.8084633,0.32220212,0.51392937,0.79376537,0.26239792,0.56425464,0.7815145,0.3832301,0.5201838,0.76193476,0.32453865,0.5720807,0.7519304,0.26381865,0.6204016,0.7372262,0.44242385,0.5239485,0.7264573,0.38552022,0.5775082,0.71823347,0.4995,0.5252053,0.6875028,0.44401938,0.5803031,0.68124604,0.38580123,0.631823,0.6707892,0.32520446,0.6794476,0.6561967,0.32560307,0.6276412,0.7057268,0.26388708,0.6733683,0.6891587,0.1324373,0.6531866,0.7441832,0.19818835,0.61045897,0.76554704,0.19889502,0.66521126,0.7182867,0.5541854,0.5239485,0.6452578,0.51069397,0.58030313,0.63280416,0.6062183,0.5201838,0.5999243,0.5639483,0.5775083,0.5885979,0.5187392,0.63182306,0.574204,0.6553497,0.51392937,0.5517195,0.61484027,0.5720807,0.5410139,0.7013444,0.50521517,0.50087386,0.6621791,0.56425464,0.49105656,0.6196193,0.6204017,0.47872192,0.5738833,0.6733684,0.4639333,0.5705691,0.62764126,0.52774847,0.52520543,0.7228832,0.4467664,0.52358633,0.67944765,0.51206374,0.7439823,0.49408287,0.44763106,0.7082603,0.5530711,0.43644127,0.7830592,0.4805857,0.39224568,0.7486377,0.5402736,0.38163736,0.71057045,0.5973305,0.36917055,0.8183882,0.46478838,0.33498293,0.78564626,0.52490115,0.32440677,0.8498002,0.44676635,0.27611682,0.8183882,0.5074775,0.2659105,0.7830592,0.56575966,0.25443137,0.7439823,0.6213339,0.24173449,0.7486377,0.58296454,0.31256202,0.70134443,0.6739343,0.22788061,0.70826024,0.63770574,0.29949936,0.65534973,0.7233091,0.21293603,0.6621792,0.69155663,0.28507757,0.60621834,0.7692219,0.19697227,0.6148403,0.73973984,0.2697357,0.6196193,0.70563394,0.34081316,0.55418545,0.8114529,0.18006575,0.5639483,0.78472745,0.25331017,0.51069397,0.82551664,0.23604031,0.5187392,0.79614353,0.30832794,0.52358633,0.7618619,0.37871465,0.5705691,0.75272226,0.3253631,0.57388324,0.716094,0.3948017,0.6668349,0.61045897,0.42505533,0.66683495,0.6531866,0.3559206,0.62166923,0.6652114,0.4111232,0.13338993,0.8421907,0.5205026,0.20016745,0.8101633,0.54915345,0.26525295,0.77355975,0.57380074,0.26613835,0.8190894,0.5062252,0.26525298,0.8591693,0.4352815,0.20016745,0.8534937,0.47904333,0.3320096,0.73017865,0.59549123,0.3937421,0.6843709,0.6120495,0.39920747,0.7326159,0.5494619,0.4538076,0.6339707,0.6246125,0.4604208,0.6843709,0.5636047,0.4637492,0.73017865,0.49977678,0.4637492,0.77355975,0.42958468,0.46042076,0.8101633,0.36006826,0.39920747,0.8190894,0.40954474,0.4538076,0.84219074,0.28770548,0.39374214,0.85349375,0.33840308,0.33200964,0.85916936,0.38677993,0.33380595,0.7784951,0.52964133,0.40056714,0.77849513,0.4811365,0.33380595,0.82187915,0.45944446,0.040599763,0.39571592,0.9163851,0.0810052,0.3427714,0.9348513,0.10638751,0.41303867,0.90337247,0.121022925,0.28818637,0.948843,0.14726608,0.35904443,0.9205438,0.16046141,0.23222193,0.9582934,0.18724442,0.30388346,0.933057,0.21280983,0.37356898,0.9017534,0.23699145,0.4408253,0.8645861,0.17235918,0.42811972,0.8860062,0.19913188,0.17514604,0.963157,0.22867109,0.24513866,0.9410726,0.23684925,0.117231846,0.9634107,0.2671137,0.18760161,0.94416994,0.29570857,0.25679877,0.9190276,0.273433,0.058756545,0.9590532,0.30490732,0.12884131,0.94256693,0.30870798,1.7499849e-8,0.9501055,0.3410936,0.07010577,0.9363446,0.37137628,0.1397793,0.916811,0.3993693,0.20859104,0.89162487,0.3343569,0.19877322,0.9201607,0.42490008,0.27611676,0.86094165,0.3612302,0.26714247,0.89227164,0.4478112,0.3419401,0.82495034,0.38634372,0.33627403,0.8577059,0.46796143,0.40565532,0.7838731,0.40787762,0.4011585,0.818968,0.3458068,0.39470747,0.8500733,0.4852265,0.4668695,0.73796284,0.42670766,0.46412897,0.77492315,0.36566123,0.45887974,0.8085309,0.30349734,0.4511176,0.8380831,0.25492442,0.31600845,0.9127723,0.3218189,0.32683083,0.88747686,0.28003907,0.3851432,0.878205,0.34250543,-0.05875651,0.9366102,0.38230073,1.7892024e-8,0.92295563,0.37466356,-0.11723181,0.9186321,0.4151819,-0.058769036,0.9067365,0.45353654,1.8173889e-8,0.89011556,0.40502843,-0.17514601,0.89625716,0.4465301,-0.11763962,0.88587403,0.4334547,-0.23222189,0.8695924,0.4757495,-0.17521612,0.8607919,0.5156055,-0.117312126,0.84757876,0.5528184,-0.058806784,0.83002084,0.48575425,-0.058799285,0.87096876,0.58719754,1.840043e-8,0.808208,0.5219761,1.8343705e-8,0.8517875,0.45980635,-0.28818634,0.8387656,0.50370526,-0.23451178,0.8302326,0.48395726,-0.34277138,0.80392426,0.52860594,-0.28972954,0.7966389,0.57068044,-0.23527673,0.78547424,0.5057918,-0.39571586,0.76523507,0.5513072,-0.3439038,0.75880927,0.52520543,-0.44676632,0.7228832,0.57148355,-0.39571586,0.7175072,0.6150264,-0.34277138,0.7086969,0.6556256,-0.28818634,0.69649464,0.59430045,-0.28972954,0.74890906,0.6930867,-0.23222189,0.68095875,0.63394475,-0.2345118,0.73560816,0.7272306,-0.17514601,0.66216356,0.6716471,-0.17521612,0.71846396,0.7578937,-0.11723181,0.6401991,0.70453095,-0.11763962,0.6984255,0.64676446,-0.117312126,0.7522862,0.7849293,-0.058756508,0.6151705,0.7340595,-0.058769036,0.6750584,0.808208,1.7499849e-8,0.5871975,0.7596456,1.7892026e-8,0.64879864,0.70639974,1.817389e-8,0.7063997,0.64879864,1.8343709e-8,0.7596456,0.6782342,-0.05879929,0.73112386,0.61856645,-0.058806784,0.7822521,0.54456395,-0.17675565,0.8186627,0.61031497,-0.17675565,0.7708918,0.58310777,-0.11770024,0.80257905,0.82761836,0.05875654,0.55641395,0.785113,0.07010578,0.6137457,0.8430676,0.117231846,0.5229673,0.8022129,0.1288413,0.58125335,0.7571775,0.13977933,0.63651013,0.85448164,0.17514604,0.48701757,0.81541634,0.18760161,0.5458048,0.8618058,0.23222193,0.4487368,0.82434994,0.2451387,0.5082866,0.78266823,0.2567988,0.5652307,0.7369745,0.26714253,0.6192774,0.7718029,0.19877325,0.6023376,0.68750274,0.2761168,0.6701496,0.72457373,0.20859107,0.65535,0.8650052,0.28818637,0.4083083,0.8295283,0.30388343,0.46641046,0.8640644,0.3427714,0.36592543,0.82998145,0.35904446,0.42452204,0.79185665,0.37356898,0.48105133,0.858988,0.3957159,0.32179123,0.82628274,0.41303867,0.38033798,0.7893799,0.42811972,0.43771425,0.74903584,0.4408253,0.4925641,0.70327854,0.4511176,0.54762506,0.655963,0.45887977,0.5976144,0.7016075,0.3947075,0.591569,0.6051357,0.46412897,0.6452876,0.55190104,0.46686953,0.6895209,0.6008995,0.40565535,0.6872879,0.6461931,0.34194013,0.6808175,0.6528437,0.40115857,0.6409898,0.6963399,0.33627403,0.63248044,0.7893221,0.31600845,0.5245096,0.74868566,0.3851432,0.5377132,0.74459314,0.32683086,0.5803134,0.41385838,0.07012722,0.90653425,0.48472306,0.0701792,0.8707006,0.5518657,0.0701921,0.82977,0.512862,0.13991717,0.8458113,0.47044614,0.20871131,0.8562249,0.4435134,0.14028925,0.88409036,0.61862236,0.070192106,0.78126854,0.6782978,0.07017921,0.73006034,0.6459312,0.13991718,0.74913085,0.73427606,0.070127234,0.6737372,0.7037667,0.14028928,0.6950053,0.6689424,0.20871131,0.7120089,0.62768453,0.2789034,0.7254144,0.584131,0.34382573,0.73387724,0.56369,0.27983436,0.7758526,0.536247,0.40703425,0.73808086,0.51745236,0.3438257,0.78232217,0.4959449,0.27890337,0.82112885,0.58137,0.14039373,0.80018723,0.60687053,0.2105906,0.76508874,0.54010934,0.2105906,0.8135937,0.88408,0.3957159,0.24456587,0.8920338,0.34390387,0.28983933,0.91412836,0.3427714,0.21184438,0.89590377,0.28972957,0.33378765,0.8955046,0.23451184,0.3756018,0.9233803,0.23527677,0.30002442,0.9452517,0.23451185,0.22249612,0.92099684,0.28972957,0.2565591,0.9609764,0.23222193,0.14352101,0.9398015,0.28818637,0.17810896,0.89085025,0.17521615,0.41675675,0.88195413,0.11763966,0.45422336,0.9153279,0.11731216,0.3826403,0.86885566,0.058769066,0.48952746,0.85178757,1.7892024e-8,0.52197605,0.8901156,1.817389e-8,0.4535365,0.9229557,1.8343707e-8,0.3823007,0.90492606,0.05879932,0.4191093,0.9501055,1.840043e-8,0.30870795,0.93511355,0.058806818,0.34656245,0.9713976,1.8343707e-8,0.23321187,0.960227,0.05880682,0.269271,0.9867007,1.817389e-8,0.15627798,0.9784468,0.05879932,0.19283555,0.96542627,0.11731217,0.22845371,0.9959205,1.7892026e-8,0.07838058,0.99065596,0.058769066,0.11466437,0.999,1.7499849e-8,-8.749924e-8,0.9966093,0.05875654,0.036313456,0.9894484,0.117231846,0.07245319,0.9775519,0.17514604,0.108246155,0.98050165,0.11763966,0.15092514,0.9656765,0.17521615,0.1864653,0.9217593,0.17675568,0.34222534,0.9434882,0.11770028,0.30655786,0.94687396,0.17675567,0.26493037,0.8263201,-0.07010575,0.5570289,0.80070215,-0.12884128,0.5833327,0.83933777,-0.13977928,0.5234262,0.77106875,-0.18760157,0.60684407,0.73814744,-0.24513865,0.6269342,0.7794242,-0.25679874,0.56969583,0.81670547,-0.26714244,0.5095371,0.8113573,-0.19877319,0.54789555,0.8498002,-0.27611676,0.44676632,0.84718055,-0.20859103,0.48659623,0.69992113,-0.30388343,0.6447995,0.6602229,-0.3590444,0.6581747,0.70220417,-0.37356895,0.6044473,0.61705834,-0.4130386,0.66831064,0.5714836,-0.4647883,0.67481804,0.6150265,-0.48058566,0.623523,0.6556257,-0.4940828,0.56924355,0.6602229,-0.42811972,0.61548376,0.69308674,-0.50521517,0.51223963,0.6999212,-0.44082528,0.56016475,0.7272306,-0.51392937,0.4527839,0.7381475,-0.45111758,0.4996322,0.75789374,-0.5201838,0.39116105,0.77106875,-0.45887974,0.43918487,0.77942425,-0.39470747,0.4844635,0.7849293,-0.5239485,0.32766598,0.8007022,-0.46412894,0.37611336,0.80820805,-0.5252053,0.26260263,0.8263202,-0.46686947,0.31181535,0.8393378,-0.40565532,0.35910568,0.8471806,-0.34194013,0.404182,0.8113574,-0.40115854,0.42281452,0.81670547,-0.33627397,0.4668114,0.74275225,-0.31600842,0.5886075,0.74275225,-0.3851432,0.54587984,0.7820028,-0.32683083,0.52882344,0.8276185,-0.52394843,0.19628237,0.8517876,-0.4668695,0.23343472,0.84306765,-0.52018374,0.12902264,0.8688557,-0.46412894,0.16635863,0.8901156,-0.4056553,0.20282762,0.8544817,-0.5139293,0.061145384,0.8819542,-0.45887974,0.09791467,0.86180586,-0.5052151,-0.007024536,0.8908503,-0.45111755,0.029661093,0.91532797,-0.39470744,0.066194676,0.93511355,-0.336274,0.10238893,0.90492606,-0.40115854,0.1348396,0.9501055,-0.27611676,0.13805832,0.9229557,-0.34194008,0.17097001,0.86500525,-0.4940828,-0.07516083,0.89550465,-0.44082525,-0.041779634,0.8640644,-0.48058563,-0.14293739,0.89590377,-0.4281197,-0.109867744,0.9233804,-0.37356892,-0.076263055,0.858988,-0.4647883,-0.21002981,0.89203376,-0.41303858,-0.17797701,0.8498002,-0.44676632,-0.27611697,0.88408,-0.39571586,-0.24456602,0.91412836,-0.34277138,-0.21184453,0.9398015,-0.28818634,-0.1781091,0.92099684,-0.35904437,-0.14440541,0.9609764,-0.23222189,-0.14352117,0.9452517,-0.30388343,-0.11025058,0.9775519,-0.17514601,-0.10824632,0.9656765,-0.24513866,-0.073328376,0.9894484,-0.11723181,-0.072453365,0.98050165,-0.18760158,-0.03772442,0.96542627,-0.25679877,-0.002759685,0.9966093,-0.058756508,-0.03631363,0.99065596,-0.12884128,-0.0012852459,0.9959205,-0.07010575,0.035052795,0.9867007,-0.13977928,0.06988957,0.9713976,-0.20859103,0.104295455,0.9784468,-0.1987732,0.0336469,0.960227,-0.26714244,0.06782315,0.9217593,-0.38514313,-0.005047361,0.946874,-0.31600842,-0.039614737,0.9434882,-0.32683083,0.031822428,0.867666,-0.0701272,0.49014172,0.87846524,-0.14028923,0.45455343,0.88387525,-0.20871128,0.41617912,0.9120695,-0.13991714,0.38282284,0.9341953,-0.070192076,0.34691954,0.9039342,-0.07017917,0.4194984,0.88387525,-0.2789034,0.372798,0.87846524,-0.3438257,0.32876095,0.9120695,-0.2798343,0.29634926,0.86766607,-0.4070342,0.28192168,0.90393424,-0.34382567,0.25037554,0.93419534,-0.2789034,0.2179288,0.95969415,-0.20871128,0.18283275,0.97787315,-0.14028923,0.1486073,0.9628974,-0.13991714,0.2263907,0.9900546,-0.0701272,0.11346816,0.9778731,-0.07017917,0.19193773,0.9596941,-0.07019207,0.26844236,0.91517603,-0.21059057,0.34074268,0.94067645,-0.21059057,0.2622602,0.94067645,-0.14039369,0.30564424,0.5057918,-0.50747746,0.69616264,0.48395726,-0.5657596,0.6661099,0.55130726,-0.5249011,0.6469468,0.45980638,-0.6213339,0.6328691,0.528606,-0.58296454,0.6154098,0.4334547,-0.6739343,0.59659916,0.5037053,-0.63770574,0.5810451,0.57068044,-0.5973305,0.5617127,0.6339448,-0.553071,0.5387277,0.59430045,-0.54027355,0.5940643,0.4050284,-0.7233091,0.5574737,0.47574952,-0.6915567,0.5416759,0.37466356,-0.7692219,0.51568013,0.44653007,-0.73973984,0.501395,0.5156055,-0.70563394,0.4839759,0.34250546,-0.8114529,0.47141826,0.41518193,-0.78472745,0.45806956,0.308708,-0.84980017,0.42490008,0.3823008,-0.8255166,0.4127583,0.4535366,-0.79614353,0.39807177,0.5219762,-0.76186186,0.3809309,0.48575428,-0.7527222,0.44210073,0.5871976,-0.7228832,0.36144158,0.5528185,-0.716094,0.42379498,0.64879864,-0.67944765,0.33972377,0.6185665,-0.67336833,0.40243214,0.70639974,-0.63182306,0.31591147,0.6782342,-0.6276412,0.37956017,0.6467645,-0.6204016,0.4413598,0.75964564,-0.58030313,0.29015154,0.73405945,-0.5775083,0.35445988,0.70453095,-0.5720807,0.4175654,0.6716471,-0.56425464,0.4780249,0.54456395,-0.6531866,0.5242121,0.58310777,-0.6652113,0.4641985,0.610315,-0.6104589,0.5028483,0.273433,-0.88408,0.3763482,0.34109366,-0.8688444,0.35604152,0.23684926,-0.91412836,0.325995,0.30490732,-0.9006771,0.30628952,0.37137634,-0.88253194,0.2849879,0.19913189,-0.9398015,0.27408147,0.26711375,-0.9283893,0.2544496,0.16046143,-0.9609764,0.22085613,0.22867115,-0.9513503,0.20160168,0.29570863,-0.9368472,0.18131375,0.36123022,-0.9175418,0.16009638,0.33435693,-0.91191083,0.23372012,0.42490014,-0.89353275,0.13805835,0.39936936,-0.8907783,0.2121772,0.12102295,-0.9775519,0.16657372,0.18724442,-0.97045237,0.14547406,0.081005216,-0.9894484,0.11149403,0.14726609,-0.9839289,0.09054048,0.21280983,-0.97361785,0.06914603,0.04059977,-0.99660933,0.055880703,0.106387526,-0.99271744,0.03456731,-0.0,-0.999,-8.733535e-8,0.06569179,-0.9966093,-0.021344652,0.13106917,-0.9894484,-0.04258706,0.19581923,-0.9775519,-0.06362563,0.17235918,-0.9839289,0.013311897,0.25963202,-0.9609764,-0.08435967,0.23699145,-0.97045237,-0.007631632,0.32220212,-0.9398015,-0.104689956,0.30349737,-0.9513503,-0.02868982,0.3832301,-0.9141283,-0.12451915,0.3656613,-0.92838925,-0.04884869,0.3458069,-0.9368472,0.027127102,0.44242385,-0.88408,-0.14375235,0.42670768,-0.900677,-0.068573594,0.4995,-0.8498001,-0.16229753,0.48522654,-0.8688444,-0.087554,0.4679615,-0.88253194,-0.012270662,0.44781125,-0.89077824,0.06308832,0.40787768,-0.91191083,0.0074463575,0.38634378,-0.9175418,0.08280496,0.25492445,-0.95773166,0.12555753,0.2800391,-0.95773166,0.048262507,0.32181898,-0.9399467,0.10456523,0.5541854,-0.8114529,-0.1800659,0.5519011,-0.8255166,-0.1092179,0.60621834,-0.76922184,-0.19697241,0.60513574,-0.78472745,-0.12654841,0.6008995,-0.79614353,-0.055464875,0.6553498,-0.72330904,-0.2129362,0.65596306,-0.7397397,-0.14317347,0.7013445,-0.6739343,-0.22788078,0.70327866,-0.6915566,-0.15858665,0.7016076,-0.7056339,-0.0884796,0.69634,-0.7160939,-0.01791897,0.6528437,-0.7527222,-0.07214798,0.6875028,-0.72288316,0.05273351,0.64619315,-0.76186186,-0.0013699034,0.7439823,-0.62133384,-0.24173462,0.7490359,-0.6377057,-0.17400497,0.7830592,-0.56575954,-0.2544315,0.78937995,-0.5829645,-0.18717036,0.7918567,-0.59733045,-0.11899772,0.8183882,-0.5074774,-0.26591063,0.82628274,-0.5249011,-0.19934085,0.82998145,-0.5402735,-0.13128723,0.8295283,-0.55307096,-0.063216664,0.82435,-0.5642546,0.008053836,0.81541634,-0.5720807,0.076295234,0.7826683,-0.6204016,0.023090923,0.80221295,-0.5775082,0.14470509,0.78511304,-0.5803031,0.21177083,0.75717753,-0.631823,0.15963341,0.72457385,-0.6794476,0.1065118,0.77180296,-0.62764114,0.09158525,0.7369745,-0.67336833,0.03800964,0.7486857,-0.65318656,-0.104010046,0.7893221,-0.6104589,-0.048078854,0.7445932,-0.66521126,-0.032802504,0.41385844,-0.84219074,0.34269074,0.44351348,-0.85349375,0.26989868,0.47044623,-0.8591693,0.19623826,0.51286215,-0.81908935,0.25311252,0.55186576,-0.77355975,0.3083027,0.48472318,-0.81016326,0.32661894,0.49594498,-0.85916936,0.1177611,0.5174524,-0.85349375,0.042337924,0.56369007,-0.8190894,0.09668032,0.5362471,-0.84219074,-0.03398289,0.584131,-0.8101633,0.02067271,0.62768453,-0.77355975,0.07495628,0.66894245,-0.73017865,0.13174288,0.7037668,-0.6843709,0.18533719,0.64593124,-0.7326159,0.2098757,0.7342761,-0.6339707,0.23858066,0.6782978,-0.6843709,0.26372263,0.6186224,-0.73017865,0.2866121,0.54010946,-0.8218792,0.1754921,0.6068706,-0.77849513,0.15380006,0.5813702,-0.77849513,0.23228256,0.04059976,0.9966093,-0.05588078,0.106387526,0.99271744,-0.0345674,0.0810052,0.9894484,-0.1114941,0.1723592,0.9839289,-0.01331199,0.23699147,0.97045237,0.007631535,0.21280983,0.97361785,-0.06914611,0.18724442,0.97045237,-0.14547414,0.14726608,0.9839289,-0.09054056,0.1604614,0.9609764,-0.22085619,0.12102293,0.9775519,-0.16657378,0.3034974,0.9513503,0.028689718,0.36566132,0.92838925,0.048848573,0.3458069,0.9368472,-0.027127195,0.42670774,0.9006771,0.068573475,0.48522654,0.8688444,0.08755387,0.46796146,0.8825319,0.012270556,0.44781122,0.89077824,-0.06308842,0.4078777,0.91191083,-0.007446458,0.42490014,0.89353275,-0.13805842,0.38634378,0.9175418,-0.08280505,0.39936936,0.89077824,-0.21217725,0.36123022,0.9175418,-0.16009647,0.37137634,0.8825319,-0.28498796,0.33435693,0.91191083,-0.23372021,0.2957086,0.9368472,-0.18131383,0.3410936,0.8688444,-0.35604158,0.3049073,0.900677,-0.30628958,0.30870795,0.8498001,-0.4249001,0.27343297,0.88408,-0.37634823,0.23684925,0.91412836,-0.32599506,0.19913188,0.9398015,-0.27408153,0.26711375,0.9283893,-0.25444967,0.22867112,0.9513503,-0.20160174,0.2800391,0.95773166,-0.048262592,0.32181895,0.93994665,-0.10456531,0.25492445,0.9577316,-0.12555762,0.55190104,0.82551664,0.109217755,0.6051357,0.78472745,0.12654825,0.6008995,0.79614353,0.05546474,0.655963,0.73973984,0.1431733,0.70327854,0.69155663,0.1585865,0.7016075,0.70563394,0.08847945,0.69633996,0.716094,0.01791883,0.6528437,0.7527222,0.07214783,0.6875028,0.7228832,-0.05273364,0.64619315,0.7618619,0.0013697708,0.7490359,0.6377058,0.17400484,0.7893799,0.58296454,0.18717021,0.79185665,0.5973305,0.118997574,0.82628274,0.5249011,0.19934072,0.858988,0.46478835,0.21002966,0.86406446,0.4805857,0.14293726,0.8650052,0.49408284,0.0751607,0.8299814,0.5402736,0.13128707,0.8618058,0.50521517,0.007024397,0.8295283,0.553071,0.06321652,0.85448164,0.51392937,-0.06114552,0.82434994,0.56425464,-0.008053975,0.8430676,0.5201838,-0.12902278,0.81541634,0.5720807,-0.07629536,0.7826683,0.6204017,-0.02309106,0.8276184,0.5239485,-0.1962825,0.8022129,0.5775083,-0.14470522,0.808208,0.5252054,-0.26260275,0.785113,0.58030313,-0.21177094,0.7571775,0.63182306,-0.15963355,0.7245738,0.67944765,-0.10651193,0.7718029,0.62764126,-0.09158539,0.7369744,0.67336833,-0.038009774,0.7486857,0.6531866,0.104009904,0.7893221,0.61045897,0.04807871,0.74459314,0.6652113,0.03280236,0.7849292,0.5239485,-0.3276661,0.7596456,0.58030313,-0.29015163,0.7578936,0.5201838,-0.39116117,0.7340594,0.5775083,-0.35446003,0.7063997,0.63182306,-0.3159116,0.7272305,0.51392937,-0.452784,0.7045309,0.5720807,-0.41756552,0.6930866,0.50521517,-0.5122397,0.671647,0.56425464,-0.478025,0.64676446,0.6204017,-0.4413599,0.61856645,0.67336833,-0.40243226,0.6782341,0.62764126,-0.37956026,0.58719754,0.7228832,-0.36144167,0.6487986,0.6794476,-0.33972386,0.6556256,0.4940828,-0.56924367,0.6339447,0.553071,-0.5387278,0.61502635,0.48058566,-0.6235231,0.59430045,0.5402736,-0.59406435,0.5706804,0.5973305,-0.56171274,0.5714835,0.4647883,-0.67481804,0.55130714,0.5249011,-0.6469469,0.5252054,0.44676635,-0.7228833,0.5057917,0.50747746,-0.6961627,0.48395717,0.5657596,-0.66611,0.45980626,0.6213339,-0.6328692,0.5286059,0.5829645,-0.61540985,0.43345463,0.6739343,-0.5965993,0.50370526,0.63770574,-0.5810452,0.40502837,0.7233091,-0.5574739,0.47574943,0.69155663,-0.541676,0.37466353,0.76922184,-0.5156802,0.44653,0.7397398,-0.5013951,0.51560545,0.70563394,-0.483976,0.34250543,0.8114529,-0.47141832,0.4151819,0.78472745,-0.45806965,0.3823008,0.8255166,-0.41275835,0.45353654,0.79614353,-0.39807183,0.5219761,0.76186186,-0.380931,0.48575422,0.7527222,-0.44210082,0.5528184,0.716094,-0.42379507,0.6103149,0.61045897,-0.50284845,0.54456395,0.6531866,-0.52421224,0.58310765,0.6652113,-0.4641986,0.5362471,0.84219074,0.033982772,0.584131,0.8101633,-0.020672822,0.62768453,0.77355975,-0.07495639,0.56369,0.8190894,-0.09668041,0.49594492,0.8591693,-0.11776117,0.5174524,0.85349375,-0.042338025,0.6689424,0.73017865,-0.131743,0.70376676,0.6843709,-0.18533732,0.64593124,0.7326159,-0.20987582,0.73427606,0.63397074,-0.23858081,0.6782978,0.6843709,-0.26372275,0.61862236,0.73017865,-0.2866122,0.5518657,0.7735597,-0.30830273,0.48472312,0.81016326,-0.32661903,0.5128621,0.81908935,-0.2531126,0.4138584,0.84219074,-0.3426908,0.44351345,0.85349375,-0.26989874,0.4704462,0.8591693,-0.19623835,0.6068706,0.77849513,-0.15380016,0.5813701,0.7784951,-0.23228265,0.54010934,0.82187915,-0.17549217,0.89203376,0.41303864,0.17797688,0.92099684,0.35904443,0.14440525,0.94525164,0.30388346,0.11025041,0.9233803,0.37356898,0.0762629,0.8955046,0.4408253,0.041779485,0.8959037,0.42811972,0.10986759,0.96567655,0.24513872,0.07332822,0.9805017,0.18760166,0.037724253,0.96542627,0.25679883,0.0027595195,0.99065596,0.12884133,0.0012850704,0.9959205,0.07010579,-0.035052978,0.9867007,0.13977934,-0.06988975,0.9713976,0.20859109,-0.10429562,0.9784468,0.19877326,-0.03364707,0.9501055,0.27611682,-0.13805848,0.960227,0.2671425,-0.06782331,0.92295563,0.34194013,-0.17097016,0.93511355,0.33627406,-0.10238909,0.89011556,0.40565535,-0.20282775,0.904926,0.40115854,-0.13483974,0.9153279,0.39470747,-0.06619483,0.85178757,0.46686956,-0.23343484,0.86885566,0.464129,-0.16635877,0.88195413,0.45887974,-0.097914815,0.89085025,0.4511176,-0.029661244,0.94687396,0.31600848,0.039614577,0.9434882,0.32683086,-0.03182259,0.9217593,0.3851432,0.005047205,0.9959205,1.7892026e-8,-0.07838074,0.99065596,-0.058769032,-0.11466453,0.9867007,1.817389e-8,-0.15627813,0.9805017,-0.11763962,-0.15092528,0.9656765,-0.17521612,-0.18646544,0.9654262,-0.117312126,-0.22845383,0.96022695,-0.058806784,-0.2692711,0.9784467,-0.05879928,-0.19283567,0.9501055,1.840043e-8,-0.30870807,0.9713976,1.8343707e-8,-0.23321201,0.94525164,-0.23451181,-0.2224963,0.92099684,-0.28972954,-0.25655925,0.9233803,-0.23527674,-0.3000246,0.89203376,-0.3439038,-0.28983945,0.858988,-0.39571586,-0.32179138,0.8640644,-0.34277138,-0.36592558,0.8650052,-0.28818634,-0.40830842,0.8959037,-0.28972954,-0.33378783,0.86180574,-0.23222189,-0.44873694,0.8955046,-0.23451181,-0.37560195,0.8544816,-0.17514601,-0.4870177,0.8908502,-0.17521612,-0.4167569,0.8430675,-0.11723181,-0.5229674,0.8819541,-0.117639616,-0.4542235,0.9153279,-0.117312126,-0.38264045,0.8276183,-0.058756508,-0.55641407,0.86885554,-0.058769032,-0.48952758,0.8082079,1.7499849e-8,-0.5871976,0.8517875,1.7892026e-8,-0.5219762,0.89011556,1.817389e-8,-0.45353663,0.92295563,1.8343707e-8,-0.38230082,0.904926,-0.05879928,-0.4191094,0.9351135,-0.058806784,-0.34656253,0.94687396,-0.17675564,-0.26493052,0.92175925,-0.17675564,-0.3422255,0.9434881,-0.11770023,-0.30655795,0.78492916,0.058756534,-0.6151706,0.82632005,0.07010578,-0.55702907,0.75789356,0.11723183,-0.64019924,0.800702,0.12884131,-0.58333284,0.83933765,0.13977933,-0.52342635,0.7272305,0.17514604,-0.6621637,0.77106863,0.18760161,-0.6068442,0.69308656,0.23222192,-0.6809588,0.7381474,0.24513869,-0.62693423,0.77942413,0.2567988,-0.56969595,0.8167054,0.2671425,-0.5095372,0.8113572,0.19877325,-0.5478957,0.84980017,0.27611682,-0.4467665,0.8471804,0.20859109,-0.4865964,0.6556255,0.28818637,-0.6964947,0.699921,0.30388346,-0.64479953,0.61502635,0.3427714,-0.70869696,0.66022277,0.35904443,-0.6581748,0.70220405,0.37356895,-0.6044474,0.57148355,0.3957159,-0.7175072,0.6170583,0.4130386,-0.6683107,0.66022277,0.42811972,-0.6154839,0.6999211,0.44082528,-0.5601648,0.7381474,0.45111758,-0.49963227,0.7710687,0.45887977,-0.43918502,0.77942413,0.39470747,-0.48446363,0.8007021,0.46412897,-0.37611353,0.8263201,0.46686953,-0.3118155,0.8393377,0.40565538,-0.35910583,0.8471805,0.34194016,-0.4041821,0.8113572,0.40115857,-0.42281464,0.8167054,0.33627406,-0.46681157,0.7427522,0.31600845,-0.5886076,0.7427522,0.3851432,-0.54587996,0.7820027,0.32683083,-0.52882355,0.9900546,0.07012724,-0.11346832,0.9778731,0.07017922,-0.19193788,0.959694,0.07019211,-0.26844248,0.96289736,0.1399172,-0.22639084,0.9596941,0.20871134,-0.1828329,0.9778731,0.14028929,-0.14860745,0.9341952,0.07019211,-0.34691966,0.9039341,0.07017922,-0.41949856,0.91206944,0.1399172,-0.38282305,0.8676659,0.070127234,-0.49014187,0.8784651,0.14028928,-0.45455363,0.8838752,0.20871133,-0.4161793,0.8838752,0.27890342,-0.37279817,0.8784652,0.34382576,-0.32876113,0.9120695,0.2798344,-0.29634944,0.86766595,0.40703422,-0.28192183,0.9039341,0.34382576,-0.2503757,0.9341953,0.27890345,-0.21792898,0.9406764,0.14039375,-0.30564442,0.915176,0.21059062,-0.34074286,0.9406764,0.21059062,-0.26226035,0.5057917,0.3957159,-0.7652351,0.55130714,0.34390387,-0.7588093,0.4839572,0.3427714,-0.8039243,0.5943003,0.28972957,-0.7489092,0.63394463,0.23451184,-0.7356082,0.5706803,0.23527677,-0.7854743,0.50370514,0.23451182,-0.8302327,0.5286058,0.28972957,-0.79663897,0.43345463,0.23222193,-0.8695925,0.4598063,0.28818637,-0.8387657,0.671647,0.17521615,-0.7184641,0.70453084,0.117639646,-0.69842553,0.64676434,0.117312156,-0.7522863,0.7340594,0.058769062,-0.67505854,0.7596455,1.7892024e-8,-0.6487987,0.7063996,1.8173887e-8,-0.70639974,0.6487985,1.8343707e-8,-0.75964564,0.67823404,0.058799315,-0.731124,0.5871974,1.8400428e-8,-0.80820805,0.61856633,0.058806814,-0.7822522,0.521976,1.8343705e-8,-0.85178757,0.55281836,0.058806818,-0.8300209,0.45353645,1.8173887e-8,-0.8901156,0.48575416,0.058799315,-0.87096876,0.5156054,0.117312156,-0.8475788,0.38230067,1.7892022e-8,-0.9229557,0.41518185,0.058769066,-0.90673655,0.30870792,1.7499849e-8,-0.9501055,0.34250537,0.05875654,-0.9366102,0.37466347,0.11723184,-0.9186321,0.40502837,0.17514604,-0.89625716,0.44652998,0.11763965,-0.8858741,0.47574943,0.17521615,-0.860792,0.6103148,0.17675567,-0.77089185,0.5831076,0.117700264,-0.8025791,0.54456383,0.17675568,-0.81866276,0.7851129,-0.07010574,-0.61374587,0.8022129,-0.12884128,-0.5812534,0.7571774,-0.13977927,-0.63651013,0.8154162,-0.18760158,-0.5458049,0.8243499,-0.24513863,-0.50828665,0.7826682,-0.25679874,-0.56523085,0.73697436,-0.26714244,-0.61927754,0.77180284,-0.19877319,-0.6023376,0.68750274,-0.27611676,-0.6701497,0.72457373,-0.20859104,-0.6553501,0.82952815,-0.30388343,-0.46641064,0.8299813,-0.35904437,-0.42452216,0.7918566,-0.37356895,-0.48105147,0.8262827,-0.4130386,-0.3803381,0.8183882,-0.46478832,-0.33498305,0.7830591,-0.48058566,-0.39224577,0.7439823,-0.49408284,-0.44763115,0.78937984,-0.4281197,-0.43771437,0.7013444,-0.50521517,-0.500874,0.74903584,-0.44082528,-0.4925642,0.6553497,-0.51392937,-0.5517196,0.7032785,-0.45111755,-0.5476251,0.6062183,-0.5201838,-0.5999244,0.655963,-0.45887974,-0.5976144,0.70160747,-0.39470747,-0.59156907,0.5541854,-0.5239485,-0.64525783,0.6051357,-0.46412894,-0.6452876,0.49949998,-0.5252053,-0.68750286,0.551901,-0.4668695,-0.68952096,0.60089946,-0.4056553,-0.6872879,0.6461931,-0.34194008,-0.6808175,0.65284365,-0.40115854,-0.64098984,0.6963399,-0.33627397,-0.63248044,0.78932196,-0.3160084,-0.5245097,0.7486856,-0.3851432,-0.53771335,0.7445931,-0.32683083,-0.58031344,0.44242382,-0.5239485,-0.7264573,0.48522648,-0.4668695,-0.7379629,0.3832301,-0.5201838,-0.76193476,0.42670763,-0.46412897,-0.77492315,0.4679614,-0.40565532,-0.7838731,0.32220212,-0.51392937,-0.7937654,0.36566123,-0.45887974,-0.8085309,0.259632,-0.50521517,-0.8217968,0.30349728,-0.45111755,-0.8380831,0.3458068,-0.39470747,-0.85007334,0.38634366,-0.33627397,-0.8577059,0.40787762,-0.4011585,-0.818968,0.42490005,-0.27611676,-0.8609417,0.44781113,-0.3419401,-0.8249504,0.19581918,-0.49408284,-0.8458949,0.23699138,-0.44082528,-0.8645861,0.13106911,-0.48058566,-0.8659442,0.17235911,-0.4281197,-0.8860062,0.21280976,-0.37356895,-0.9017534,0.06569173,-0.46478832,-0.88184893,0.10638745,-0.4130386,-0.90337247,-7.8115114e-8,-0.44676632,-0.8935328,0.04059969,-0.3957159,-0.9163851,0.081005126,-0.34277138,-0.9348513,0.12102286,-0.28818634,-0.94884306,0.14726602,-0.3590444,-0.92054385,0.16046134,-0.23222189,-0.9582934,0.18724434,-0.30388343,-0.933057,0.1991318,-0.17514601,-0.963157,0.22867104,-0.24513863,-0.94107264,0.23684917,-0.11723181,-0.9634107,0.26711366,-0.18760158,-0.94417,0.29570854,-0.25679874,-0.9190277,0.2734329,-0.05875651,-0.9590532,0.30490726,-0.12884128,-0.942567,0.34109354,-0.07010574,-0.9363447,0.37137625,-0.13977927,-0.916811,0.39936927,-0.20859103,-0.89162487,0.33435684,-0.19877319,-0.9201607,0.36123016,-0.26714244,-0.89227164,0.280039,-0.3851432,-0.878205,0.25492433,-0.31600842,-0.9127723,0.32181886,-0.32683083,-0.8874769,0.734276,-0.07012719,-0.6737372,0.7037667,-0.14028922,-0.69500536,0.6689424,-0.20871127,-0.71200895,0.6459312,-0.13991714,-0.7491309,0.6186223,-0.07019207,-0.7812686,0.6782977,-0.07017917,-0.7300604,0.6276844,-0.27890334,-0.72541445,0.5841309,-0.34382564,-0.7338773,0.56368995,-0.2798343,-0.77585274,0.536247,-0.4070342,-0.73808086,0.5174523,-0.34382567,-0.7823222,0.49594486,-0.27890337,-0.8211289,0.47044608,-0.20871125,-0.8562249,0.44351336,-0.14028922,-0.88409036,0.512862,-0.13991714,-0.84581137,0.41385832,-0.07012719,-0.9065343,0.48472303,-0.07017917,-0.87070066,0.55186564,-0.070192076,-0.82977015,0.6068704,-0.21059054,-0.7650888,0.5401093,-0.21059054,-0.8135937,0.58137,-0.14039369,-0.8001873,0.78564626,-0.5249011,-0.32440686,0.7486377,-0.5829645,-0.31256217,0.70826024,-0.63770574,-0.2994995,0.7105704,-0.59733045,-0.36917067,0.70826024,-0.553071,-0.4364414,0.7486376,-0.5402736,-0.3816375,0.6621792,-0.6915566,-0.28507772,0.6148404,-0.7397397,-0.26973584,0.61961937,-0.7056339,-0.3408133,0.5639483,-0.78472745,-0.25331035,0.51069397,-0.8255166,-0.23604044,0.5187392,-0.79614353,-0.3083281,0.52358633,-0.7618618,-0.37871474,0.5705691,-0.7527222,-0.32536322,0.52520543,-0.72288316,-0.44676653,0.5738833,-0.7160939,-0.39480186,0.52358633,-0.6794476,-0.51206386,0.57388324,-0.67336833,-0.4639334,0.51873916,-0.631823,-0.5742041,0.5705691,-0.62764114,-0.5277486,0.61961925,-0.6204016,-0.478722,0.5106939,-0.5803031,-0.6328043,0.5639483,-0.5775082,-0.5885979,0.61484027,-0.5720807,-0.54101396,0.6621791,-0.56425464,-0.49105665,0.6668349,-0.6531866,-0.3559207,0.62166923,-0.66521126,-0.4111233,0.6668349,-0.61045897,-0.42505547,0.44401938,-0.8688444,-0.21437655,0.38552025,-0.900677,-0.19533552,0.38580123,-0.8825319,-0.2651339,0.32453868,-0.92838925,-0.1754111,0.26239792,-0.9513502,-0.1551809,0.26381865,-0.9368472,-0.22520664,0.26388708,-0.9175418,-0.29407796,0.32560304,-0.91191083,-0.24576892,0.2626027,-0.8935327,-0.3614417,0.32520446,-0.8907782,-0.31425652,0.19621581,-0.9704523,-0.13312614,0.1316169,-0.9839289,-0.1120799,0.1315237,-0.97361785,-0.18102695,0.06575108,-0.9927174,-0.09049871,-6.0385044e-9,-0.9966093,-0.06907252,-1.2048107e-8,-0.9894484,-0.13781436,-1.8000046e-8,-0.9775519,-0.20589659,0.06592235,-0.9839289,-0.15980977,-2.3865827e-8,-0.9609764,-0.27299333,0.065976344,-0.97045237,-0.22775063,-2.9617382e-8,-0.9398015,-0.33878347,0.06650027,-0.9513502,-0.2975088,-3.522718e-8,-0.9141283,-0.40295208,0.066537775,-0.92838925,-0.36285967,0.13265967,-0.9368472,-0.32049918,-4.0668375e-8,-0.88408,-0.46519202,0.06664265,-0.900677,-0.42701358,-4.591491e-8,-0.8498001,-0.52520543,0.066674516,-0.8688444,-0.48853356,0.13293801,-0.88253194,-0.44884968,0.19838189,-0.89077824,-0.40639848,0.1331231,-0.91191083,-0.3856137,0.19813904,-0.9175418,-0.34184664,0.19818832,-0.9577316,-0.2036482,0.13243727,-0.9577316,-0.2514191,0.198895,-0.93994665,-0.2737556,-5.094169e-8,-0.81145287,-0.5827051,0.06667451,-0.8255166,-0.5586393,-5.5724648e-8,-0.76922184,-0.63741577,0.06664263,-0.78472745,-0.61462396,0.132938,-0.79614353,-0.588629,-6.0240886e-8,-0.723309,-0.6890755,0.06653774,-0.7397397,-0.66810095,-6.4468814e-8,-0.6739343,-0.7374373,0.06650024,-0.6915565,-0.7178637,0.13265964,-0.7056339,-0.6946102,0.19813901,-0.7160939,-0.66779596,0.13312307,-0.7527222,-0.6431863,0.26260266,-0.72288316,-0.6375585,0.19838189,-0.76186186,-0.6149895,-6.838816e-8,-0.62133384,-0.78226936,0.06597631,-0.63770574,-0.766146,-7.198018e-8,-0.5657596,-0.8233573,0.065922305,-0.5829645,-0.8085838,0.13152367,-0.5973305,-0.7898727,-7.5227675e-8,-0.50747746,-0.8605043,0.06575103,-0.5249011,-0.84744126,0.13161688,-0.5402736,-0.8299292,0.1962158,-0.553071,-0.8084633,0.26239786,-0.5642546,-0.7815146,0.32453865,-0.5720807,-0.7519305,0.26381862,-0.62040156,-0.73722625,0.38552016,-0.5775082,-0.71823347,0.44401932,-0.580303,-0.6812461,0.38580117,-0.631823,-0.67078924,0.3252044,-0.6794476,-0.6561967,0.325603,-0.62764114,-0.7057268,0.26388705,-0.67336833,-0.6891588,0.13243723,-0.65318656,-0.74418324,0.19818829,-0.6104589,-0.76554716,0.19889498,-0.66521126,-0.71828675,0.45380756,-0.8421907,-0.28770563,0.39374208,-0.8534937,-0.33840317,0.3320096,-0.8591693,-0.38678002,0.39920744,-0.81908935,-0.40954483,0.46374917,-0.7735597,-0.4295848,0.4604208,-0.81016326,-0.36006838,0.26525292,-0.8591693,-0.43528152,0.20016739,-0.8534937,-0.47904336,0.2661383,-0.81908935,-0.5062252,0.13338988,-0.8421907,-0.5205026,0.2001674,-0.81016326,-0.54915345,0.2652529,-0.77355975,-0.5738008,0.33200952,-0.7301786,-0.5954913,0.39374205,-0.6843709,-0.61204964,0.3992074,-0.7326158,-0.549462,0.45380753,-0.6339707,-0.62461257,0.4604207,-0.6843709,-0.56360483,0.46374917,-0.7301786,-0.4997769,0.33380592,-0.8218792,-0.45944455,0.3338059,-0.7784951,-0.5296414,0.40056708,-0.7784951,-0.4811366,-0.040599786,0.9966093,-0.05588077,-2.6137023e-8,0.99271744,-0.111862436,-0.08100525,0.9894484,-0.11149408,0.040601432,0.9839289,-0.16803694,0.08049238,0.97045237,-0.223034,-5.2787303e-8,0.97361785,-0.22376148,-0.08049249,0.97045237,-0.22303398,-0.04060151,0.9839289,-0.16803692,-0.1604615,0.9609764,-0.22085615,-0.12102301,0.9775519,-0.16657375,0.12107135,0.9513503,-0.27977753,0.1594533,0.9283893,-0.33266953,0.081060655,0.9368472,-0.33726463,0.19707716,0.9006771,-0.3846328,0.2332119,0.8688444,-0.43442225,0.156278,0.88253194,-0.44126603,0.07838058,0.89077824,-0.44538915,0.11895909,0.91191083,-0.39021584,-9.3914046e-8,0.89353275,-0.44676638,0.04063443,0.9175418,-0.39302284,-0.078380756,0.8907783,-0.44538915,-0.0406346,0.9175418,-0.39302284,-0.15627816,0.88253194,-0.44126594,-0.11895925,0.91191083,-0.39021578,-0.0810608,0.9368472,-0.3372646,-0.23321205,0.8688444,-0.43442217,-0.19707729,0.9006771,-0.3846327,-0.30870813,0.84980017,-0.42490003,-0.27343312,0.88408,-0.37634817,-0.23684937,0.91412836,-0.32599497,-0.19913198,0.9398015,-0.27408147,-0.15945344,0.9283893,-0.33266947,-0.12107148,0.9513503,-0.2797775,0.040636342,0.95773166,-0.28124696,-7.094368e-8,0.9399467,-0.33838043,-0.040636465,0.95773166,-0.28124696,0.27441904,0.82551664,-0.49113902,0.30735174,0.7847274,-0.5364128,0.23843822,0.7961436,-0.55434984,0.3388696,0.7397398,-0.57961494,0.36814973,0.69155663,-0.61985177,0.30095756,0.70563394,-0.63992673,0.2322226,0.716094,-0.6567214,0.27035642,0.75272226,-0.59859633,0.1622973,0.7228832,-0.6701496,0.20098732,0.7618619,-0.6141429,0.39695317,0.63770574,-0.6586051,0.42194122,0.58296454,-0.6929062,0.35787052,0.5973305,-0.71632814,0.44491965,0.5249011,-0.7242419,0.46519187,0.46478835,-0.7520434,0.40295193,0.4805857,-0.7776041,0.33878332,0.49408287,-0.79944295,0.38133976,0.5402736,-0.7487893,0.2729932,0.5052152,-0.8174555,0.3164608,0.5530711,-0.76939327,0.20589642,0.51392937,-0.8315553,0.2470783,0.56425464,-0.7864923,0.13781416,0.5201838,-0.84167516,0.17941622,0.5720807,-0.79908353,0.21989682,0.6204016,-0.7514973,0.0690723,0.5239485,-0.8477665,0.11027448,0.5775083,-0.8076662,-1.7499848e-7,0.5252054,-0.84980017,0.041206982,0.5803032,-0.8121276,0.082160085,0.63182306,-0.76944804,0.12260665,0.6794477,-0.72202456,0.15139724,0.6276412,-0.76232964,0.19158812,0.67336833,-0.71265,0.33027586,0.6531866,-0.6799016,0.28963944,0.6104589,-0.73583287,0.26128882,0.6652113,-0.6980137,-0.06907266,0.5239485,-0.8477665,-0.04120732,0.5803032,-0.8121276,-0.13781452,0.5201838,-0.8416751,-0.11027482,0.57750833,-0.8076662,-0.082160406,0.63182306,-0.76944804,-0.20589678,0.51392937,-0.83155525,-0.17941655,0.5720807,-0.7990835,-0.27299353,0.5052152,-0.81745535,-0.24707861,0.56425464,-0.78649217,-0.21989712,0.6204016,-0.75149727,-0.19158839,0.67336833,-0.71265,-0.15139754,0.6276412,-0.7623296,-0.16229758,0.7228832,-0.6701496,-0.12260694,0.67944765,-0.7220245,-0.33878365,0.49408287,-0.79944277,-0.3164611,0.5530711,-0.76939315,-0.40295225,0.4805857,-0.7776039,-0.38134006,0.5402736,-0.7487892,-0.35787082,0.5973305,-0.716328,-0.4651922,0.46478835,-0.7520432,-0.44491994,0.5249011,-0.72424173,-0.5252057,0.44676635,-0.72288305,-0.50579196,0.50747746,-0.6961625,-0.4839574,0.5657596,-0.66610974,-0.45980653,0.6213339,-0.632869,-0.42194152,0.58296454,-0.692906,-0.43345487,0.6739343,-0.59659904,-0.39695346,0.63770574,-0.6586049,-0.40502858,0.7233091,-0.5574736,-0.36814997,0.69155663,-0.6198516,-0.3746637,0.7692219,-0.51568,-0.33886978,0.73973984,-0.5796147,-0.3009578,0.70563394,-0.6399266,-0.3425056,0.8114529,-0.47141817,-0.30735198,0.7847275,-0.53641266,-0.27441925,0.82551664,-0.4911389,-0.23843843,0.79614353,-0.5543497,-0.20098756,0.76186186,-0.61414284,-0.27035666,0.75272226,-0.5985963,-0.23222288,0.716094,-0.65672135,-0.28963974,0.6104589,-0.73583275,-0.33027613,0.6531866,-0.6799015,-0.26128903,0.6652113,-0.6980136,0.19802895,0.84219074,-0.49950007,0.16084532,0.8101634,-0.5619298,0.12267734,0.7735598,-0.62012625,0.082241155,0.8190894,-0.56597686,0.041257784,0.85916936,-0.5080618,0.119635664,0.85349375,-0.5052097,0.08141943,0.7301787,-0.67691284,0.04120952,0.6843709,-0.7265943,-1.433235e-7,0.7326159,-0.6791723,-1.6057126e-7,0.63397074,-0.7720635,-0.041209824,0.6843709,-0.7265943,-0.08141972,0.73017865,-0.6769128,-0.122677594,0.77355975,-0.62012625,-0.16084555,0.8101633,-0.5619298,-0.08224139,0.8190894,-0.56597686,-0.19802913,0.84219074,-0.49949998,-0.119635865,0.85349375,-0.5052096,-0.041258,0.85916936,-0.5080618,0.04126056,0.77849513,-0.62469506,-0.04126082,0.77849513,-0.62469506,-1.194957e-7,0.8218792,-0.56790453,0.44491962,0.41303867,-0.79337674,0.42194122,0.35904443,-0.8312964,0.39695317,0.30388346,-0.8649186,0.35787052,0.37356898,-0.8546204,0.3164608,0.44082534,-0.83876497,0.38133976,0.42811972,-0.8181042,0.36814973,0.24513869,-0.89575326,0.3388696,0.18760164,-0.92085505,0.30095756,0.2567988,-0.91732216,0.30735174,0.12884133,-0.9417727,0.27441898,0.07010579,-0.9580085,0.23843819,0.13977934,-0.9600052,0.20098731,0.2085911,-0.9560831,0.2703564,0.19877325,-0.94095576,0.16229728,0.27611682,-0.9462664,0.23222262,0.2671425,-0.93418866,0.122606635,0.3419402,-0.93061566,0.1915881,0.33627406,-0.92098576,0.08216008,0.40565538,-0.90922743,0.15139723,0.40115857,-0.9023035,0.21989681,0.39470753,-0.89098394,0.04120698,0.46686956,-0.88223344,0.11027447,0.46412897,-0.8777385,0.17941622,0.45887977,-0.8690455,0.2470783,0.45111763,-0.8564148,0.33027586,0.31600845,-0.8882891,0.26128876,0.3268309,-0.9071443,0.28963944,0.38514322,-0.8750856,0.23321185,1.7892024e-8,-0.9713976,0.19707711,-0.058769036,-0.9776031,0.15627795,1.817389e-8,-0.9867007,0.15945324,-0.11763962,-0.9791509,0.1210713,-0.17521612,-0.97603387,0.0810606,-0.117312126,-0.98877096,0.040634394,-0.05880679,-0.9964395,0.11895905,-0.058799285,-0.9901477,-1.2521873e-7,1.840043e-8,-0.999,0.07838055,1.8343709e-8,-0.9959205,0.08049232,-0.2345118,-0.96774286,0.04060136,-0.2897295,-0.9552012,-1.13115654e-7,-0.23527673,-0.9708996,-9.7080374e-8,-0.34390384,-0.9379398,-0.04059986,-0.3957159,-0.9163851,-0.08100532,-0.34277138,-0.9348513,-0.12102307,-0.28818634,-0.948843,-0.04060157,-0.2897295,-0.9552012,-0.16046156,-0.23222189,-0.9582933,-0.08049255,-0.2345118,-0.96774286,-0.19913203,-0.17514601,-0.96315694,-0.12107152,-0.17521612,-0.9760338,-0.23684941,-0.11723181,-0.9634106,-0.15945348,-0.11763962,-0.9791509,-0.081060834,-0.117312126,-0.98877096,-0.27343315,-0.05875651,-0.95905316,-0.19707735,-0.058769036,-0.9776031,-0.30870816,1.7499849e-8,-0.95010537,-0.23321208,1.7892024e-8,-0.9713975,-0.1562782,1.817389e-8,-0.9867007,-0.078380786,1.8343709e-8,-0.9959205,-0.11895928,-0.05879928,-0.99014765,-0.040634632,-0.058806784,-0.99643946,0.040636282,-0.17675565,-0.98239875,-0.04063651,-0.17675565,-0.98239875,-1.157502e-7,-0.117700234,-0.9920422,-0.34250563,0.05875655,-0.93661016,-0.27441925,0.07010579,-0.95800847,-0.37466377,0.11723185,-0.91863203,-0.307352,0.12884133,-0.94177264,-0.23843846,0.13977934,-0.96000516,-0.40502864,0.17514606,-0.89625704,-0.33886984,0.18760164,-0.920855,-0.4334549,0.23222193,-0.8695923,-0.36815,0.2451387,-0.89575315,-0.30095786,0.25679883,-0.9173221,-0.2322229,0.2671425,-0.9341886,-0.27035668,0.19877328,-0.9409557,-0.16229759,0.27611682,-0.9462664,-0.20098759,0.20859109,-0.95608306,-0.45980653,0.28818637,-0.8387655,-0.39695346,0.30388343,-0.8649184,-0.48395744,0.3427714,-0.8039241,-0.42194152,0.35904446,-0.83129627,-0.35787082,0.37356898,-0.8546203,-0.505792,0.3957159,-0.7652349,-0.4449199,0.41303867,-0.7933765,-0.38134006,0.42811975,-0.8181041,-0.3164611,0.44082534,-0.83876485,-0.24707861,0.45111763,-0.8564147,-0.17941655,0.45887977,-0.86904544,-0.21989712,0.39470753,-0.8909839,-0.11027483,0.464129,-0.87773836,-0.041207325,0.46686956,-0.8822334,-0.08216041,0.40565535,-0.9092274,-0.12260696,0.34194016,-0.93061566,-0.15139754,0.4011586,-0.90230346,-0.19158842,0.33627403,-0.9209857,-0.33027616,0.31600848,-0.888289,-0.28963974,0.38514322,-0.8750855,-0.2612891,0.3268309,-0.90714425,0.19802892,0.07012724,-0.9766615,0.119635634,0.07017922,-0.98932457,0.041257758,0.07019212,-0.9956766,0.08224113,0.1399172,-0.98572844,0.122677326,0.20871134,-0.9692218,0.1608453,0.14028929,-0.97593474,-0.041258026,0.07019212,-0.9956766,-0.11963589,0.07017922,-0.98932457,-0.082241416,0.1399172,-0.98572844,-0.19802916,0.07012724,-0.97666144,-0.16084558,0.14028929,-0.9759347,-0.12267762,0.20871133,-0.9692217,-0.081419736,0.27890342,-0.9558162,-0.04120983,0.34382576,-0.93706274,-1.5841019e-7,0.2798344,-0.95900667,-1.6803969e-7,0.40703425,-0.912318,0.041209508,0.34382576,-0.93706274,0.081419416,0.27890345,-0.95581627,-1.4190114e-7,0.14039375,-0.98908573,-0.04126084,0.21059062,-0.9756794,0.04126054,0.21059062,-0.9756794,-0.57148385,0.39571592,-0.71750695,-0.55130744,0.34390387,-0.75880915,-0.6150266,0.3427714,-0.7086967,-0.5286061,0.28972957,-0.7966388,-0.50370544,0.23451184,-0.83023256,-0.57068056,0.23527677,-0.7854741,-0.63394487,0.23451184,-0.735608,-0.59430057,0.28972957,-0.74890894,-0.6930868,0.23222192,-0.68095857,-0.65562576,0.28818637,-0.69649446,-0.47574967,0.17521614,-0.8607918,-0.44653025,0.11763966,-0.885874,-0.5156057,0.11731217,-0.8475787,-0.41518208,0.05876907,-0.90673643,-0.3823009,1.7892024e-8,-0.9229556,-0.45353672,1.817389e-8,-0.8901155,-0.5219763,1.8343707e-8,-0.85178745,-0.48575443,0.058799323,-0.87096864,-0.58719766,1.840043e-8,-0.80820787,-0.5528186,0.05880682,-0.8300207,-0.64879876,1.8343709e-8,-0.75964546,-0.6185666,0.058806814,-0.782252,-0.70639986,1.817389e-8,-0.7063996,-0.6782343,0.058799315,-0.7311238,-0.6467646,0.117312156,-0.7522861,-0.7596457,1.7892026e-8,-0.6487985,-0.7340595,0.058769066,-0.67505836,-0.80820805,1.7499847e-8,-0.58719736,-0.78492934,0.058756545,-0.6151704,-0.75789374,0.117231846,-0.64019907,-0.72723067,0.17514604,-0.66216344,-0.704531,0.11763966,-0.69842535,-0.67164725,0.17521615,-0.71846384,-0.5445641,0.17675568,-0.8186626,-0.5831079,0.11770027,-0.80257887,-0.6103151,0.17675568,-0.77089167,-0.34109378,-0.07010575,-0.93634456,-0.30490744,-0.12884128,-0.9425669,-0.37137645,-0.13977928,-0.9168109,-0.26711386,-0.1876016,-0.94416994,-0.22867127,-0.24513865,-0.9410725,-0.29570872,-0.25679874,-0.91902757,-0.3612303,-0.26714244,-0.8922716,-0.33435705,-0.19877319,-0.92016065,-0.4249002,-0.27611676,-0.8609416,-0.39936945,-0.20859104,-0.8916248,-0.18724453,-0.30388343,-0.93305695,-0.14726621,-0.3590444,-0.9205438,-0.21280994,-0.37356895,-0.90175337,-0.106387615,-0.41303864,-0.90337247,-0.065691866,-0.46478832,-0.8818489,-0.13106924,-0.4805857,-0.8659442,-0.19581929,-0.49408284,-0.84589475,-0.17235927,-0.42811975,-0.8860061,-0.25963208,-0.50521517,-0.8217967,-0.23699154,-0.44082528,-0.86458606,-0.32220218,-0.51392937,-0.79376537,-0.30349743,-0.4511176,-0.8380831,-0.38323015,-0.5201838,-0.76193476,-0.36566132,-0.45887974,-0.8085309,-0.34580696,-0.39470747,-0.8500733,-0.44242388,-0.5239485,-0.72645724,-0.4267077,-0.46412894,-0.7749231,-0.49950007,-0.5252053,-0.6875028,-0.48522657,-0.46686947,-0.7379628,-0.46796152,-0.40565532,-0.783873,-0.4478113,-0.34194013,-0.82495034,-0.40787774,-0.4011585,-0.81896794,-0.38634384,-0.336274,-0.85770583,-0.25492454,-0.31600845,-0.91277224,-0.28003916,-0.3851432,-0.8782049,-0.32181904,-0.32683086,-0.88747686,-0.55418545,-0.52394843,-0.6452578,-0.5519011,-0.4668695,-0.6895209,-0.60621834,-0.52018374,-0.5999243,-0.60513574,-0.4641289,-0.6452875,-0.6008996,-0.4056553,-0.68728787,-0.65534973,-0.51392937,-0.5517195,-0.65596306,-0.45887977,-0.59761435,-0.70134443,-0.50521517,-0.5008739,-0.70327854,-0.45111758,-0.54762506,-0.7016075,-0.39470744,-0.5915689,-0.69634,-0.336274,-0.6324803,-0.6528437,-0.40115854,-0.6409897,-0.68750286,-0.27611676,-0.67014956,-0.6461932,-0.34194008,-0.68081737,-0.7439823,-0.49408284,-0.4476311,-0.74903584,-0.44082528,-0.49256414,-0.7830592,-0.48058566,-0.3922457,-0.78937995,-0.4281197,-0.43771434,-0.79185665,-0.37356892,-0.48105136,-0.8183882,-0.46478832,-0.334983,-0.82628274,-0.4130386,-0.380338,-0.8498002,-0.44676632,-0.2761169,-0.858988,-0.39571586,-0.3217913,-0.8640644,-0.34277135,-0.3659255,-0.8650052,-0.2881863,-0.40830827,-0.82998145,-0.3590444,-0.4245221,-0.86180586,-0.23222187,-0.44873676,-0.8295283,-0.3038834,-0.46641046,-0.8544817,-0.175146,-0.4870175,-0.82434994,-0.24513862,-0.50828654,-0.84306765,-0.1172318,-0.5229672,-0.81541634,-0.18760157,-0.5458048,-0.7826683,-0.25679874,-0.5652307,-0.8276184,-0.058756504,-0.5564139,-0.80221295,-0.12884128,-0.58125323,-0.7851131,-0.07010575,-0.6137456,-0.7571776,-0.13977928,-0.63651,-0.72457385,-0.20859103,-0.6553499,-0.77180296,-0.19877318,-0.6023375,-0.7369745,-0.26714244,-0.6192774,-0.7486857,-0.38514313,-0.5377133,-0.7893221,-0.31600836,-0.5245096,-0.7445932,-0.3268308,-0.5803133,-0.41385856,-0.0701272,-0.9065342,-0.44351357,-0.14028923,-0.8840903,-0.47044626,-0.20871127,-0.85622483,-0.5128622,-0.13991714,-0.84581125,-0.5518659,-0.070192076,-0.82976997,-0.4847232,-0.07017917,-0.8707005,-0.495945,-0.2789034,-0.8211288,-0.5174524,-0.3438257,-0.78232217,-0.56369007,-0.2798343,-0.7758526,-0.53624713,-0.40703416,-0.73808074,-0.584131,-0.34382567,-0.73387724,-0.6276846,-0.27890337,-0.7254144,-0.6689425,-0.20871127,-0.71200883,-0.7037668,-0.14028923,-0.6950052,-0.6459313,-0.13991714,-0.7491308,-0.7342762,-0.0701272,-0.6737371,-0.6782979,-0.07017917,-0.7300602,-0.6186225,-0.070192076,-0.7812684,-0.54010946,-0.21059056,-0.8135936,-0.6068706,-0.21059056,-0.76508874,-0.5813702,-0.14039369,-0.8001872,-0.06575117,-0.5249011,-0.84744126,-0.06592243,-0.5829645,-0.80858386,-0.06597641,-0.63770574,-0.76614594,-0.13152376,-0.59733045,-0.78987265,-0.19621588,-0.55307096,-0.8084633,-0.13161698,-0.5402736,-0.8299292,-0.06650036,-0.6915565,-0.7178637,-0.06653786,-0.7397397,-0.66810095,-0.13265976,-0.7056339,-0.6946102,-0.06664275,-0.7847274,-0.6146239,-0.06667461,-0.8255166,-0.5586393,-0.13293812,-0.79614353,-0.588629,-0.19838199,-0.7618618,-0.6149895,-0.13312319,-0.7527222,-0.6431863,-0.26260278,-0.72288316,-0.63755846,-0.19813913,-0.7160939,-0.6677959,-0.32520452,-0.67944753,-0.65619665,-0.26388714,-0.6733683,-0.6891587,-0.3858013,-0.631823,-0.6707892,-0.3256031,-0.62764114,-0.70572674,-0.2638187,-0.6204016,-0.7372262,-0.44401944,-0.5803031,-0.68124604,-0.38552028,-0.5775082,-0.71823347,-0.3245387,-0.5720807,-0.7519304,-0.26239797,-0.56425464,-0.7815145,-0.13243732,-0.65318656,-0.74418324,-0.19889507,-0.66521126,-0.7182867,-0.1981884,-0.61045897,-0.76554704,-0.066674605,-0.8688444,-0.48853353,-0.06664273,-0.9006771,-0.4270136,-0.1329381,-0.8825319,-0.44884965,-0.066537835,-0.92838925,-0.36285967,-0.06650033,-0.9513502,-0.2975088,-0.13265973,-0.9368472,-0.32049918,-0.1981391,-0.91754174,-0.34184664,-0.13312317,-0.91191083,-0.3856137,-0.26260275,-0.8935327,-0.3614417,-0.19838198,-0.8907782,-0.40639845,-0.06597639,-0.97045237,-0.22775063,-0.06592238,-0.9839289,-0.15980977,-0.13152373,-0.97361785,-0.18102695,-0.0657511,-0.9927174,-0.0904987,-0.06569179,-0.9966093,-0.021344649,-0.13106917,-0.9894484,-0.042587053,-0.19581923,-0.9775519,-0.063625626,-0.13161694,-0.9839289,-0.1120799,-0.25963202,-0.9609764,-0.08435965,-0.19621581,-0.9704523,-0.13312614,-0.32220212,-0.9398015,-0.104689926,-0.26239792,-0.9513502,-0.1551809,-0.3832301,-0.9141283,-0.12451912,-0.3245387,-0.92838925,-0.1754111,-0.2638187,-0.9368472,-0.22520664,-0.44242385,-0.88408,-0.14375232,-0.38552028,-0.9006771,-0.1953355,-0.4995,-0.8498001,-0.1622975,-0.44401938,-0.8688444,-0.21437652,-0.38580126,-0.8825319,-0.26513386,-0.3252045,-0.8907782,-0.31425652,-0.3256031,-0.91191083,-0.2457689,-0.2638871,-0.91754174,-0.29407793,-0.13243732,-0.9577316,-0.2514191,-0.19818838,-0.9577316,-0.2036482,-0.19889507,-0.93994665,-0.2737556,-0.5541854,-0.8114529,-0.18006587,-0.510694,-0.8255166,-0.23604043,-0.60621834,-0.76922184,-0.19697239,-0.5639483,-0.78472745,-0.25331032,-0.5187392,-0.79614353,-0.30832806,-0.6553498,-0.72330904,-0.21293616,-0.6148404,-0.7397397,-0.26973578,-0.7013445,-0.6739343,-0.22788075,-0.6621792,-0.6915566,-0.28507766,-0.61961937,-0.7056339,-0.34081325,-0.57388335,-0.7160939,-0.39480183,-0.5705691,-0.7527222,-0.3253632,-0.52520543,-0.72288316,-0.4467665,-0.52358633,-0.7618618,-0.37871474,-0.7439824,-0.62133384,-0.2417346,-0.70826024,-0.63770574,-0.29949948,-0.78305924,-0.56575954,-0.25443146,-0.74863774,-0.5829645,-0.31256214,-0.71057045,-0.59733045,-0.36917064,-0.8183882,-0.5074774,-0.26591054,-0.78564626,-0.5249011,-0.32440683,-0.7486377,-0.54027355,-0.38163742,-0.70826024,-0.55307096,-0.43644133,-0.6621792,-0.5642546,-0.4910566,-0.6148404,-0.57208055,-0.54101396,-0.6196193,-0.62040156,-0.47872195,-0.5639483,-0.5775082,-0.58859795,-0.51069397,-0.5803031,-0.63280416,-0.5187392,-0.631823,-0.574204,-0.5235864,-0.6794476,-0.5120638,-0.5705691,-0.6276412,-0.5277485,-0.5738833,-0.6733683,-0.46393335,-0.66683495,-0.6531866,-0.35592067,-0.6668349,-0.6104589,-0.42505538,-0.6216693,-0.66521126,-0.41112325,-0.13339,-0.8421907,-0.52050257,-0.20016748,-0.8534937,-0.47904333,-0.26525298,-0.8591693,-0.43528152,-0.26613835,-0.8190894,-0.5062252,-0.26525298,-0.7735597,-0.5738007,-0.20016748,-0.8101633,-0.54915345,-0.33200964,-0.8591693,-0.38678,-0.3937421,-0.8534937,-0.33840314,-0.39920747,-0.81908935,-0.4095448,-0.45380756,-0.8421907,-0.2877056,-0.4604208,-0.81016326,-0.36006835,-0.46374923,-0.77355975,-0.42958477,-0.4637492,-0.7301786,-0.49977684,-0.46042076,-0.6843709,-0.5636048,-0.39920747,-0.7326158,-0.54946196,-0.4538076,-0.6339707,-0.6246125,-0.3937421,-0.6843709,-0.6120496,-0.33200967,-0.73017865,-0.59549123,-0.33380595,-0.82187915,-0.45944446,-0.40056714,-0.7784951,-0.48113656,-0.33380595,-0.7784951,-0.52964133,-0.06569179,0.9966093,0.021344567,-0.10638754,0.99271744,-0.03456738,-0.13106917,0.9894484,0.042586975,-0.14726612,0.9839289,-0.09054053,-0.18724447,0.97045237,-0.14547409,-0.21280988,0.97361785,-0.069146074,-0.23699147,0.9704523,0.0076315682,-0.1723592,0.9839289,-0.0133119635,-0.25963202,0.9609764,0.084359586,-0.19581923,0.9775519,0.063625544,-0.22867124,0.9513503,-0.20160168,-0.26711386,0.9283893,-0.2544496,-0.29570872,0.9368472,-0.18131375,-0.30490738,0.900677,-0.3062895,-0.34109375,0.8688444,-0.35604146,-0.37137643,0.88253194,-0.28498787,-0.39936942,0.89077824,-0.21217716,-0.334357,0.91191083,-0.23372011,-0.42490017,0.8935327,-0.13805833,-0.36123028,0.91754174,-0.16009638,-0.4478113,0.89077824,-0.063088335,-0.3863438,0.9175418,-0.08280498,-0.4679615,0.8825319,0.012270631,-0.4078777,0.91191083,-0.00744639,-0.3458069,0.9368472,-0.027127136,-0.48522654,0.8688444,0.08755394,-0.42670768,0.900677,0.068573534,-0.4995,0.8498001,0.16229746,-0.44242385,0.88408,0.14375228,-0.38323012,0.91412836,0.12451907,-0.32220215,0.9398015,0.104689874,-0.36566132,0.9283893,0.048848633,-0.30349737,0.9513503,0.028689763,-0.2549245,0.95773166,-0.12555756,-0.321819,0.93994665,-0.10456525,-0.28003913,0.9577316,-0.04826254,-0.38230088,0.82551664,-0.41275823,-0.41518202,0.78472745,-0.45806944,-0.45353666,0.79614353,-0.39807165,-0.4465302,0.7397398,-0.5013949,-0.4757497,0.69155663,-0.5416758,-0.5156056,0.7056339,-0.4839758,-0.5528186,0.71609396,-0.4237949,-0.48575437,0.7527222,-0.44210064,-0.5871976,0.72288316,-0.36144146,-0.5219762,0.76186186,-0.3809308,-0.50370544,0.63770574,-0.581045,-0.5286061,0.58296454,-0.6154096,-0.57068056,0.5973305,-0.56171256,-0.5513074,0.5249011,-0.64694667,-0.5714838,0.46478832,-0.67481786,-0.6150266,0.48058566,-0.6235229,-0.65562576,0.49408284,-0.5692435,-0.59430057,0.54027355,-0.5940642,-0.6930868,0.50521517,-0.51223946,-0.63394487,0.553071,-0.5387276,-0.72723067,0.51392937,-0.45278376,-0.6716472,0.56425464,-0.47802475,-0.75789374,0.5201838,-0.39116094,-0.704531,0.5720807,-0.4175653,-0.6467646,0.6204017,-0.44135967,-0.78492934,0.5239485,-0.3276659,-0.7340596,0.5775083,-0.35445982,-0.80820805,0.5252053,-0.2626025,-0.7596457,0.5803031,-0.29015142,-0.7063998,0.631823,-0.31591135,-0.64879876,0.6794476,-0.3397237,-0.6782342,0.6276412,-0.37956002,-0.6185665,0.6733684,-0.40243202,-0.54456407,0.6531866,-0.524212,-0.6103151,0.61045897,-0.5028482,-0.5831079,0.6652113,-0.46419844,-0.8276184,0.5239485,-0.19628225,-0.7851131,0.5803031,-0.21177074,-0.84306765,0.5201838,-0.12902255,-0.80221295,0.5775082,-0.14470501,-0.7571776,0.631823,-0.15963335,-0.85448164,0.51392937,-0.061145313,-0.81541634,0.57208073,-0.07629517,-0.86180586,0.50521517,0.0070245825,-0.82434994,0.56425464,-0.0080537945,-0.7826683,0.6204017,-0.023090886,-0.7369744,0.67336833,-0.038009606,-0.77180296,0.6276412,-0.0915852,-0.6875028,0.72288316,-0.052733485,-0.72457385,0.6794476,-0.106511764,-0.86500525,0.49408284,0.07516087,-0.8295283,0.553071,0.063216686,-0.8640644,0.48058566,0.1429374,-0.82998145,0.5402736,0.13128723,-0.79185665,0.5973305,0.118997715,-0.8589879,0.4647883,0.2100298,-0.8262827,0.52490115,0.19934087,-0.8498002,0.44676635,0.27611694,-0.81838816,0.5074775,0.26591057,-0.7830591,0.56575966,0.25443146,-0.7439823,0.6213339,0.24173458,-0.7893799,0.58296454,0.18717031,-0.7013444,0.6739343,0.2278807,-0.74903584,0.63770574,0.17400494,-0.6553497,0.7233091,0.21293613,-0.70327854,0.69155663,0.1585866,-0.6062183,0.76922184,0.19697236,-0.655963,0.7397398,0.14317343,-0.7016075,0.70563394,0.08847958,-0.55418545,0.811453,0.18006586,-0.60513574,0.78472745,0.12654836,-0.5519011,0.8255166,0.109217845,-0.6008995,0.79614353,0.05546485,-0.64619315,0.76186186,0.0013699034,-0.6528437,0.7527222,0.07214795,-0.69633996,0.71609396,0.017918972,-0.7893221,0.61045897,0.04807887,-0.7486857,0.6531866,0.10401004,-0.74459314,0.6652113,0.032802507,-0.4138585,0.84219074,-0.34269068,-0.4847232,0.8101633,-0.32661882,-0.5518658,0.7735597,-0.30830255,-0.5128622,0.8190894,-0.25311247,-0.47044626,0.8591693,-0.19623823,-0.44351354,0.85349375,-0.26989862,-0.6186225,0.73017865,-0.28661203,-0.6782979,0.6843709,-0.26372254,-0.6459313,0.7326158,-0.20987563,-0.7342762,0.6339707,-0.23858058,-0.7037668,0.6843709,-0.18533711,-0.6689425,0.73017865,-0.13174284,-0.62768453,0.77355975,-0.07495625,-0.584131,0.8101633,-0.020672712,-0.56369007,0.8190894,-0.0966803,-0.5362471,0.84219074,0.03398286,-0.5174525,0.85349375,-0.04233793,-0.495945,0.8591693,-0.11776108,-0.5813702,0.7784951,-0.23228247,-0.6068706,0.77849513,-0.15380001,-0.54010946,0.8218792,-0.17549206,-0.6170585,0.41303864,-0.66831046,-0.660223,0.35904443,-0.6581746,-0.69992125,0.30388346,-0.6447993,-0.7022042,0.37356895,-0.6044472,-0.69992125,0.44082528,-0.5601646,-0.660223,0.42811972,-0.61548364,-0.73814756,0.24513869,-0.626934,-0.7710688,0.18760161,-0.6068439,-0.7794243,0.2567988,-0.5696957,-0.8007022,0.1288413,-0.58333254,-0.8263202,0.07010578,-0.5570288,-0.8393378,0.13977933,-0.52342606,-0.8471806,0.20859107,-0.4865961,-0.8113574,0.19877324,-0.54789543,-0.8498003,0.2761168,-0.44676623,-0.8167055,0.2671425,-0.509537,-0.8471806,0.34194013,-0.40418187,-0.8167055,0.33627406,-0.46681133,-0.8393378,0.40565535,-0.3591056,-0.8113574,0.40115857,-0.4228144,-0.7794243,0.3947075,-0.4844634,-0.82632023,0.46686953,-0.3118153,-0.8007022,0.46412897,-0.3761133,-0.7710688,0.45887977,-0.43918476,-0.73814756,0.4511176,-0.49963203,-0.7427524,0.31600845,-0.5886074,-0.78200287,0.32683086,-0.5288233,-0.7427524,0.3851432,-0.5458797,-0.8517876,1.7892022e-8,-0.52197593,-0.86885566,-0.05876903,-0.4895274,-0.8901156,1.8173887e-8,-0.45353642,-0.88195413,-0.117639616,-0.45422333,-0.8908503,-0.17521611,-0.41675672,-0.91532797,-0.117312126,-0.3826403,-0.93511355,-0.058806784,-0.3465624,-0.90492606,-0.058799285,-0.41910926,-0.9501055,1.8400428e-8,-0.3087079,-0.9229557,1.8343705e-8,-0.38230062,-0.89550465,-0.23451176,-0.37560177,-0.89590377,-0.2897295,-0.3337877,-0.9233804,-0.23527673,-0.30002445,-0.89203376,-0.3439038,-0.28983936,-0.88408,-0.39571586,-0.24456596,-0.91412836,-0.34277138,-0.21184446,-0.9398015,-0.28818634,-0.17810902,-0.92099684,-0.28972954,-0.25655916,-0.9609765,-0.2322219,-0.14352109,-0.9452517,-0.2345118,-0.22249617,-0.9775519,-0.17514601,-0.10824622,-0.96567655,-0.17521612,-0.18646532,-0.9894484,-0.117231816,-0.07245327,-0.9805017,-0.11763964,-0.15092517,-0.96542627,-0.11731214,-0.22845371,-0.9966093,-0.05875651,-0.03631353,-0.99065596,-0.058769036,-0.11466441,-0.999,1.7499849e-8,1.7499849e-8,-0.9959205,1.7892026e-8,-0.078380615,-0.9867007,1.8173889e-8,-0.15627798,-0.9713976,1.8343705e-8,-0.23321185,-0.9784468,-0.05879929,-0.19283555,-0.960227,-0.058806792,-0.26927096,-0.9217593,-0.17675564,-0.3422253,-0.94687396,-0.17675564,-0.26493037,-0.9434882,-0.11770024,-0.30655786,-0.9966093,0.05875654,0.036313564,-0.9959205,0.070105776,-0.035052847,-0.9894484,0.117231846,0.072453305,-0.99065596,0.12884131,0.001285201,-0.9867007,0.13977931,-0.0698896,-0.9775519,0.17514604,0.10824627,-0.98050165,0.18760161,0.037724387,-0.9609764,0.23222193,0.14352113,-0.9656765,0.24513869,0.073328346,-0.96542627,0.2567988,0.0027596776,-0.960227,0.26714247,-0.06782314,-0.9784468,0.19877324,-0.03364692,-0.9501055,0.27611676,-0.13805829,-0.9713976,0.20859106,-0.104295455,-0.9398015,0.28818637,0.17810906,-0.94525164,0.30388346,0.110250555,-0.91412836,0.3427714,0.2118445,-0.92099684,0.35904443,0.14440538,-0.9233803,0.37356898,0.076263055,-0.88408,0.3957159,0.244566,-0.89203376,0.4130386,0.17797701,-0.8959037,0.42811972,0.109867744,-0.89550465,0.4408253,0.041779656,-0.89085025,0.45111758,-0.029661052,-0.8819542,0.45887977,-0.097914614,-0.9153279,0.39470747,-0.06619464,-0.86885566,0.46412897,-0.16635855,-0.8517876,0.4668695,-0.23343463,-0.8901157,0.40565532,-0.20282754,-0.9229557,0.3419401,-0.17096995,-0.90492606,0.40115854,-0.13483953,-0.93511355,0.336274,-0.102388896,-0.94687396,0.31600842,0.03961473,-0.9217593,0.3851432,0.00504738,-0.9434882,0.32683083,-0.031822413,-0.867666,0.070127234,-0.4901416,-0.90393424,0.07017921,-0.41949832,-0.93419534,0.07019211,-0.34691948,-0.91206956,0.13991718,-0.38282278,-0.8838753,0.20871131,-0.41617903,-0.87846524,0.14028928,-0.45455337,-0.9596941,0.070192106,-0.26844233,-0.97787315,0.07017921,-0.1919377,-0.9628974,0.13991718,-0.22639067,-0.9900546,0.07012723,-0.11346818,-0.97787315,0.14028928,-0.1486073,-0.95969415,0.20871131,-0.18283272,-0.93419534,0.2789034,-0.21792877,-0.90393424,0.3438257,-0.25037545,-0.91206956,0.27983433,-0.2963492,-0.86766607,0.40703422,-0.2819216,-0.87846524,0.3438257,-0.3287609,-0.8838753,0.27890337,-0.37279794,-0.94067645,0.14039373,-0.30564418,-0.94067645,0.21059059,-0.26226014,-0.91517603,0.21059059,-0.3407426,-0.8589879,0.39571586,0.32179132,-0.89203376,0.34390384,0.28983942,-0.8640644,0.3427714,0.36592555,-0.92099684,0.28972957,0.2565592,-0.94525164,0.23451184,0.22249623,-0.9233803,0.23527677,0.3000245,-0.8955046,0.23451184,0.3756019,-0.8959037,0.28972957,0.33378777,-0.8618058,0.23222193,0.44873685,-0.8650052,0.28818637,0.40830836,-0.9656765,0.17521615,0.18646538,-0.98050165,0.11763966,0.15092522,-0.96542627,0.11731217,0.22845377,-0.99065596,0.058769066,0.114664465,-0.9959205,1.7892026e-8,0.07838067,-0.9867007,1.817389e-8,0.15627806,-0.9713976,1.8343707e-8,0.23321192,-0.9784468,0.05879932,0.19283561,-0.9501055,1.840043e-8,0.30870798,-0.960227,0.05880682,0.26927105,-0.92295563,1.8343705e-8,0.38230073,-0.9351135,0.058806818,0.34656245,-0.89011556,1.8173887e-8,0.4535365,-0.90492606,0.05879932,0.4191093,-0.9153279,0.11731216,0.38264036,-0.85178757,1.7892022e-8,0.52197605,-0.8688556,0.058769066,0.48952752,-0.808208,1.7499847e-8,0.5871975,-0.82761836,0.05875654,0.556414,-0.8430676,0.117231846,0.52296734,-0.8544816,0.17514604,0.4870176,-0.8819541,0.11763965,0.4542234,-0.8908502,0.17521615,0.4167568,-0.94687396,0.17675567,0.26493043,-0.9434881,0.11770028,0.3065579,-0.9217593,0.17675568,0.3422254,-0.9959205,-0.07010575,0.03505289,-0.99065596,-0.12884128,-0.0012851525,-0.9867007,-0.13977928,0.06988966,-0.98050165,-0.18760158,-0.037724335,-0.9656765,-0.24513865,-0.073328294,-0.96542627,-0.25679877,-0.0027596098,-0.960227,-0.26714244,0.06782322,-0.9784468,-0.1987732,0.033646982,-0.9501055,-0.27611676,0.13805838,-0.9713976,-0.20859103,0.10429553,-0.9452517,-0.3038834,-0.110250495,-0.92099684,-0.35904437,-0.14440534,-0.9233804,-0.37356892,-0.076262996,-0.89203376,-0.41303858,-0.17797695,-0.858988,-0.4647883,-0.21002975,-0.8640644,-0.48058563,-0.14293735,-0.86500525,-0.4940828,-0.075160794,-0.89590377,-0.4281197,-0.10986769,-0.86180586,-0.5052151,-0.007024505,-0.89550465,-0.44082525,-0.04177959,-0.8544817,-0.5139293,0.061145406,-0.8908503,-0.45111755,0.029661134,-0.84306765,-0.52018374,0.12902266,-0.8819542,-0.45887974,0.0979147,-0.91532797,-0.39470744,0.06619473,-0.8276185,-0.52394843,0.19628239,-0.8688557,-0.46412894,0.16635865,-0.80820805,-0.5252053,0.26260263,-0.8517876,-0.4668695,0.23343474,-0.8901156,-0.4056553,0.20282765,-0.9229557,-0.34194008,0.17097004,-0.90492606,-0.40115854,0.13483964,-0.93511355,-0.336274,0.102388985,-0.946874,-0.31600842,-0.039614674,-0.9217593,-0.38514313,-0.005047305,-0.9434882,-0.32683083,0.03182249,-0.78492934,-0.5239485,0.32766598,-0.8263202,-0.46686947,0.31181535,-0.75789374,-0.5201838,0.39116102,-0.8007022,-0.46412894,0.37611336,-0.8393378,-0.40565532,0.35910568,-0.7272306,-0.51392937,0.45278388,-0.7710688,-0.45887977,0.43918484,-0.69308674,-0.50521517,0.5122396,-0.7381475,-0.45111758,0.49963215,-0.77942425,-0.39470747,0.48446348,-0.8167055,-0.336274,0.4668114,-0.8113574,-0.40115854,0.4228145,-0.8498002,-0.27611676,0.44676632,-0.8471806,-0.34194013,0.404182,-0.6556257,-0.4940828,0.56924355,-0.6999212,-0.44082528,0.5601647,-0.6150265,-0.48058566,0.623523,-0.6602229,-0.42811972,0.6154838,-0.70220417,-0.37356892,0.6044473,-0.5714837,-0.4647883,0.674818,-0.6170584,-0.4130386,0.6683106,-0.5252055,-0.44676632,0.72288316,-0.5714837,-0.39571586,0.71750706,-0.6150265,-0.34277135,0.70869684,-0.65562564,-0.2881863,0.6964946,-0.6602229,-0.3590444,0.6581747,-0.6930867,-0.23222187,0.6809587,-0.69992113,-0.3038834,0.6447994,-0.7272306,-0.175146,0.66216356,-0.7381475,-0.24513865,0.6269341,-0.7578937,-0.1172318,0.6401991,-0.77106875,-0.18760158,0.60684395,-0.77942425,-0.25679877,0.5696958,-0.7849293,-0.058756504,0.6151705,-0.80070215,-0.12884128,0.5833327,-0.8263201,-0.07010575,0.5570289,-0.83933777,-0.13977928,0.5234262,-0.84718055,-0.20859103,0.48659623,-0.8113573,-0.19877322,0.54789555,-0.81670547,-0.26714244,0.50953704,-0.7427523,-0.38514316,0.5458798,-0.7427523,-0.31600842,0.58860743,-0.7820028,-0.32683083,0.5288234,-0.9900546,-0.0701272,0.11346825,-0.97787315,-0.14028923,0.14860737,-0.9596941,-0.20871128,0.18283279,-0.96289736,-0.13991714,0.22639075,-0.9596941,-0.070192076,0.26844245,-0.9778731,-0.07017917,0.19193779,-0.9341953,-0.2789034,0.21792886,-0.90393424,-0.34382567,0.25037557,-0.9120695,-0.2798343,0.2963493,-0.86766607,-0.4070342,0.2819217,-0.87846524,-0.3438257,0.32876098,-0.88387525,-0.2789034,0.37279803,-0.88387525,-0.20871128,0.41617915,-0.87846524,-0.14028923,0.45455346,-0.9120695,-0.13991714,0.38282287,-0.867666,-0.0701272,0.49014172,-0.9039341,-0.07017917,0.41949844,-0.9341953,-0.070192076,0.34691957,-0.94067645,-0.21059057,0.26226026,-0.91517603,-0.21059057,0.3407427,-0.94067645,-0.14039369,0.3056443,-0.82628274,-0.52490103,-0.1993408,-0.78937995,-0.5829644,-0.18717031,-0.7490359,-0.6377057,-0.17400494,-0.7918567,-0.59733045,-0.11899769,-0.8295283,-0.55307096,-0.063216634,-0.82998145,-0.5402735,-0.13128719,-0.70327866,-0.6915566,-0.15858662,-0.65596306,-0.7397397,-0.14317344,-0.7016076,-0.7056339,-0.08847957,-0.60513574,-0.78472745,-0.12654838,-0.5519011,-0.8255166,-0.10921787,-0.6008995,-0.79614353,-0.055464853,-0.64619315,-0.76186186,-0.0013698847,-0.6528437,-0.7527222,-0.07214795,-0.6875028,-0.72288316,0.052733526,-0.69634,-0.7160939,-0.017918948,-0.72457385,-0.6794476,0.10651182,-0.7369745,-0.67336833,0.038009662,-0.75717753,-0.631823,0.15963343,-0.77180296,-0.62764114,0.09158526,-0.7826683,-0.6204016,0.023090946,-0.78511304,-0.5803031,0.21177083,-0.80221295,-0.5775082,0.1447051,-0.81541634,-0.5720807,0.07629525,-0.82435,-0.5642546,0.0080538625,-0.7486857,-0.65318656,-0.104010016,-0.7445932,-0.66521126,-0.03280248,-0.7893221,-0.6104589,-0.048078824,-0.48522654,-0.8688444,-0.08755398,-0.4267077,-0.900677,-0.06857357,-0.4679615,-0.8825319,-0.012270661,-0.3656613,-0.92838925,-0.048848674,-0.30349737,-0.9513503,-0.028689817,-0.3458069,-0.9368472,0.027127095,-0.38634378,-0.9175418,0.08280495,-0.4078777,-0.91191083,0.0074463547,-0.42490017,-0.89353275,0.13805832,-0.44781128,-0.89077824,0.06308831,-0.23699145,-0.97045237,-0.007631632,-0.17235918,-0.9839289,0.013311894,-0.21280983,-0.97361785,0.069146015,-0.106387526,-0.99271744,0.034567308,-0.04059977,-0.99660933,0.055880696,-0.081005216,-0.9894484,0.11149401,-0.12102295,-0.9775519,0.16657369,-0.14726609,-0.9839289,0.09054047,-0.16046143,-0.9609764,0.2208561,-0.18724442,-0.97045237,0.14547405,-0.1991319,-0.9398015,0.27408144,-0.22867115,-0.9513503,0.20160165,-0.23684928,-0.91412836,0.32599494,-0.26711375,-0.9283893,0.25444955,-0.29570863,-0.9368472,0.18131372,-0.273433,-0.88408,0.37634814,-0.30490735,-0.9006771,0.3062895,-0.308708,-0.8498001,0.42490003,-0.3410937,-0.86884445,0.35604152,-0.37137637,-0.88253194,0.28498787,-0.3993694,-0.89077824,0.21217716,-0.33435693,-0.91191083,0.2337201,-0.36123025,-0.9175418,0.16009635,-0.2800391,-0.95773166,0.04826249,-0.25492445,-0.95773166,0.12555751,-0.32181898,-0.9399467,0.10456522,-0.34250548,-0.8114529,0.47141826,-0.38230082,-0.8255166,0.4127583,-0.37466362,-0.76922184,0.51568013,-0.415182,-0.78472745,0.4580696,-0.45353663,-0.79614353,0.39807174,-0.4050285,-0.72330904,0.5574738,-0.44653013,-0.7397397,0.50139505,-0.4334548,-0.6739343,0.5965992,-0.4757496,-0.6915566,0.5416759,-0.51560557,-0.7056339,0.48397592,-0.55281854,-0.7160939,0.42379498,-0.48575434,-0.7527222,0.44210073,-0.5871976,-0.72288316,0.36144152,-0.5219762,-0.76186186,0.3809309,-0.4598064,-0.6213339,0.6328691,-0.5037054,-0.63770574,0.5810451,-0.48395732,-0.5657596,0.6661099,-0.52860606,-0.58296454,0.61540973,-0.5706805,-0.5973305,0.5617126,-0.50579184,-0.50747746,0.6961626,-0.55130726,-0.5249011,0.6469468,-0.5943005,-0.54027355,0.59406424,-0.6339448,-0.553071,0.5387277,-0.67164713,-0.56425464,0.47802487,-0.70453095,-0.57208073,0.4175654,-0.6467645,-0.6204016,0.44135973,-0.7340595,-0.5775082,0.35445988,-0.7596457,-0.5803031,0.29015154,-0.7063998,-0.631823,0.31591147,-0.6487987,-0.67944753,0.33972374,-0.6782343,-0.62764114,0.37956014,-0.6185665,-0.67336833,0.40243208,-0.54456407,-0.6531866,0.5242121,-0.6103151,-0.61045897,0.50284827,-0.5831078,-0.66521126,0.4641985,-0.5362471,-0.84219074,-0.03398288,-0.5174525,-0.85349375,0.04233792,-0.495945,-0.85916936,0.117761075,-0.56369007,-0.8190894,0.096680306,-0.62768453,-0.77355975,0.07495628,-0.584131,-0.8101633,0.020672714,-0.47044626,-0.85916936,0.19623823,-0.44351354,-0.85349375,0.26989862,-0.5128622,-0.8190894,0.2531125,-0.41385847,-0.84219074,0.34269074,-0.48472318,-0.81016326,0.32661885,-0.5518658,-0.7735597,0.3083026,-0.6186225,-0.7301786,0.28661206,-0.6782978,-0.6843708,0.2637226,-0.6459313,-0.7326158,0.20987569,-0.7342761,-0.6339707,0.23858067,-0.7037668,-0.6843709,0.18533719,-0.6689425,-0.73017865,0.13174288,-0.54010946,-0.8218792,0.17549208,-0.5813702,-0.7784951,0.23228253,-0.6068706,-0.77849513,0.15380004,1.2077009e-8,0.9966093,0.06907245,-0.06575108,0.99271744,0.09049864,2.4096215e-8,0.9894484,0.1378143,-0.1316169,0.9839289,0.11207984,-0.19621581,0.97045237,0.13312608,-0.13152368,0.97361785,0.1810269,-0.06597633,0.97045237,0.2277506,-0.065922335,0.9839289,0.15980972,4.7731653e-8,0.9609764,0.2729933,3.6000092e-8,0.9775519,0.20589656,-0.26239792,0.9513503,0.15518086,-0.32453868,0.92838925,0.17541103,-0.26381865,0.9368472,0.2252066,-0.38552022,0.9006771,0.19533543,-0.44401938,0.8688444,0.2143765,-0.38580123,0.88253194,0.26513383,-0.32520446,0.89077824,0.3142565,-0.32560304,0.91191083,0.24576886,-0.2626027,0.89353275,0.36144167,-0.26388705,0.9175418,0.2940779,-0.19838189,0.89077824,0.40639845,-0.19813903,0.9175418,0.34184662,-0.132938,0.88253194,0.44884968,-0.13312308,0.91191083,0.3856137,-0.13265966,0.9368472,0.32049915,-0.066674486,0.8688444,0.48853356,-0.06664262,0.9006771,0.42701355,9.182982e-8,0.8498001,0.52520543,8.133675e-8,0.88408,0.46519202,7.045436e-8,0.91412836,0.40295205,5.9234765e-8,0.9398015,0.3387834,-0.066537745,0.9283893,0.3628596,-0.066500254,0.9513502,0.29750878,-0.19818833,0.95773166,0.20364816,-0.19889499,0.93994665,0.27375558,-0.13243726,0.9577316,0.25141907,-0.510694,0.8255166,0.2360404,-0.5639483,0.78472745,0.2533103,-0.5187392,0.79614353,0.30832803,-0.6148403,0.7397398,0.26973584,-0.6621791,0.69155663,0.2850777,-0.61961925,0.7056339,0.34081328,-0.57388324,0.71609396,0.39480183,-0.5705691,0.7527222,0.32536322,-0.5252054,0.72288316,0.4467665,-0.52358633,0.7618618,0.3787147,-0.70826024,0.63770574,0.29949945,-0.7486377,0.5829646,0.31256214,-0.71057045,0.5973305,0.36917064,-0.7856462,0.52490115,0.32440683,-0.81838816,0.46478832,0.334983,-0.7830591,0.48058566,0.3922457,-0.7439823,0.49408284,0.4476311,-0.7486377,0.5402736,0.38163745,-0.7013444,0.50521517,0.5008739,-0.70826024,0.553071,0.43644133,-0.6553497,0.51392937,0.55171955,-0.6621791,0.56425464,0.49105662,-0.6062182,0.5201838,0.5999244,-0.61484027,0.5720807,0.54101396,-0.61961925,0.6204016,0.47872198,-0.5541853,0.5239485,0.6452579,-0.5639482,0.5775082,0.58859795,-0.4994999,0.5252053,0.68750286,-0.51069385,0.5803031,0.6328043,-0.51873916,0.631823,0.57420415,-0.52358633,0.6794476,0.5120639,-0.5705691,0.62764114,0.5277486,-0.57388324,0.67336833,0.46393335,-0.6668349,0.6531866,0.35592067,-0.6668349,0.6104589,0.4250554,-0.62166923,0.66521126,0.4111233,-0.44242373,0.5239485,0.72645736,-0.44401926,0.5803031,0.68124616,-0.38323,0.5201838,0.76193476,-0.38552013,0.5775083,0.7182335,-0.3858011,0.631823,0.67078924,-0.32220203,0.51392937,0.7937654,-0.3245386,0.5720807,0.7519305,-0.2596319,0.5052152,0.8217968,-0.2623978,0.56425464,0.7815146,-0.26381853,0.62040156,0.73722625,-0.263887,0.67336833,0.6891588,-0.32560292,0.62764114,0.7057268,-0.2626026,0.72288316,0.6375585,-0.32520434,0.6794476,0.6561967,-0.19581908,0.49408287,0.8458948,-0.1962157,0.5530711,0.8084633,-0.13106903,0.48058572,0.8659442,-0.13161679,0.54027367,0.8299292,-0.13152358,0.5973305,0.78987265,-0.06569165,0.46478835,0.8818489,-0.06575096,0.52490115,0.84744126,1.5623023e-7,0.44676635,0.8935328,1.5045534e-7,0.5074775,0.8605043,1.4396034e-7,0.56575966,0.8233572,1.367763e-7,0.6213339,0.7822693,-0.06592222,0.5829646,0.8085838,1.289376e-7,0.6739343,0.7374372,-0.06597623,0.6377058,0.76614594,1.2048177e-7,0.7233091,0.6890755,-0.06650017,0.69155663,0.7178636,1.1144928e-7,0.76922184,0.6374157,-0.066537686,0.7397397,0.66810095,-0.13265957,0.7056339,0.6946102,1.0188337e-7,0.81145287,0.5827051,-0.066642575,0.78472745,0.61462396,-0.066674456,0.8255166,0.5586393,-0.13293794,0.79614353,0.588629,-0.19838183,0.76186186,0.6149895,-0.13312301,0.7527222,0.6431863,-0.19813894,0.7160939,0.66779596,-0.1981882,0.6104589,0.7655471,-0.13243715,0.6531866,0.74418324,-0.19889489,0.66521126,0.71828675,-0.4538076,0.84219074,0.28770557,-0.46042076,0.8101633,0.36006835,-0.46374914,0.7735597,0.42958474,-0.39920744,0.8190894,0.40954483,-0.33200958,0.8591693,0.38677996,-0.39374205,0.8534937,0.3384031,-0.46374914,0.73017865,0.4997769,-0.4604207,0.6843709,0.56360483,-0.39920738,0.7326159,0.54946196,-0.45380747,0.6339707,0.6246126,-0.393742,0.6843709,0.61204964,-0.33200952,0.73017865,0.5954913,-0.26525283,0.77355975,0.5738008,-0.20016734,0.81016326,0.54915345,-0.26613823,0.81908935,0.5062252,-0.13338985,0.8421907,0.5205026,-0.20016736,0.8534937,0.47904336,-0.2652529,0.8591693,0.43528152,-0.40056705,0.7784951,0.48113653,-0.33380586,0.77849513,0.5296414,-0.3338059,0.8218792,0.45944452,-0.8262827,0.41303867,0.38033807,-0.8299814,0.35904446,0.4245221,-0.8295282,0.30388346,0.46641052,-0.7918566,0.37356898,0.48105136,-0.74903584,0.4408253,0.4925641,-0.7893799,0.42811975,0.43771434,-0.8243499,0.24513869,0.5082866,-0.8154163,0.18760161,0.54580486,-0.7826682,0.2567988,0.5652308,-0.8022129,0.1288413,0.58125335,-0.785113,0.07010578,0.6137457,-0.7571775,0.13977933,0.63651013,-0.72457373,0.20859107,0.65535,-0.7718029,0.19877325,0.6023376,-0.68750274,0.2761168,0.6701497,-0.73697436,0.2671425,0.61927754,-0.6461931,0.34194013,0.6808175,-0.6963399,0.336274,0.63248044,-0.60089946,0.40565535,0.687288,-0.65284365,0.40115857,0.64098984,-0.70160747,0.39470747,0.591569,-0.5519009,0.4668695,0.68952096,-0.6051356,0.46412897,0.6452876,-0.65596294,0.45887977,0.59761447,-0.70327854,0.45111758,0.5476251,-0.789322,0.31600845,0.52450967,-0.7445931,0.32683083,0.58031344,-0.74868566,0.3851432,0.5377133,-0.7596456,1.7892024e-8,0.64879864,-0.73405945,-0.058769032,0.6750584,-0.7063997,1.8173889e-8,0.7063997,-0.70453095,-0.11763962,0.6984255,-0.67164713,-0.17521611,0.71846396,-0.64676446,-0.117312126,0.7522862,-0.6185664,-0.058806784,0.78225213,-0.6782342,-0.05879929,0.73112386,-0.5871975,1.840043e-8,0.808208,-0.64879864,1.8343707e-8,0.7596456,-0.63394475,-0.23451178,0.7356081,-0.59430045,-0.2897295,0.74890906,-0.57068044,-0.23527671,0.78547424,-0.5513072,-0.3439038,0.7588092,-0.5057918,-0.39571586,0.76523507,-0.48395726,-0.34277138,0.80392426,-0.45980635,-0.28818634,0.8387656,-0.52860594,-0.28972954,0.7966389,-0.4334547,-0.23222189,0.8695924,-0.50370526,-0.23451176,0.8302326,-0.40502843,-0.17514601,0.89625716,-0.4757495,-0.17521612,0.860792,-0.37466353,-0.117231816,0.91863215,-0.44653004,-0.11763963,0.8858741,-0.5156055,-0.11731213,0.8475788,-0.3425054,-0.058756515,0.9366102,-0.41518188,-0.058769032,0.90673655,-0.30870792,1.7499849e-8,0.9501054,-0.38230073,1.7892026e-8,0.9229557,-0.45353654,1.8173893e-8,0.8901156,-0.52197605,1.8343709e-8,0.85178757,-0.48575425,-0.05879929,0.87096876,-0.5528184,-0.05880679,0.83002084,-0.61031497,-0.17675564,0.7708918,-0.54456395,-0.17675564,0.8186627,-0.58310777,-0.11770024,0.80257905,-0.2734329,0.058756545,0.9590532,-0.34109357,0.07010578,0.9363447,-0.23684917,0.117231846,0.9634107,-0.30490723,0.12884133,0.942567,-0.37137622,0.13977931,0.916811,-0.19913179,0.17514604,0.963157,-0.26711366,0.18760163,0.94417,-0.1604613,0.23222193,0.9582934,-0.22867101,0.24513869,0.94107264,-0.2957085,0.2567988,0.9190277,-0.3612301,0.2671425,0.89227164,-0.33435684,0.19877325,0.9201607,-0.42490003,0.2761168,0.8609417,-0.39936924,0.20859106,0.89162487,-0.12102282,0.28818637,0.94884306,-0.1872443,0.30388346,0.933057,-0.081005074,0.3427714,0.9348513,-0.14726594,0.35904443,0.9205438,-0.2128097,0.37356898,0.9017534,-0.04059962,0.39571592,0.9163851,-0.106387384,0.41303867,0.90337247,-0.17235905,0.42811972,0.8860062,-0.23699132,0.44082534,0.8645861,-0.30349717,0.45111758,0.8380831,-0.36566114,0.45887977,0.8085309,-0.34580675,0.3947075,0.85007334,-0.42670757,0.46412897,0.77492315,-0.48522642,0.46686953,0.7379629,-0.46796134,0.40565535,0.7838731,-0.4478111,0.34194013,0.8249504,-0.40787756,0.40115857,0.818968,-0.38634363,0.33627403,0.8577059,-0.2549243,0.31600845,0.9127723,-0.28003895,0.3851432,0.878205,-0.32181883,0.32683086,0.8874769,-0.734276,0.070127234,0.6737372,-0.6782978,0.07017922,0.73006034,-0.61862236,0.070192106,0.78126854,-0.6459312,0.13991718,0.74913085,-0.6689424,0.20871131,0.71200895,-0.7037667,0.14028928,0.6950053,-0.55186564,0.070192106,0.82977,-0.48472306,0.07017921,0.8707006,-0.512862,0.13991718,0.8458113,-0.41385835,0.07012723,0.9065343,-0.44351336,0.14028928,0.88409036,-0.47044608,0.20871131,0.8562249,-0.49594486,0.2789034,0.82112885,-0.5174523,0.3438257,0.7823222,-0.56368995,0.2798343,0.7758527,-0.53624696,0.40703425,0.73808086,-0.5841309,0.34382567,0.7338773,-0.6276845,0.27890337,0.72541445,-0.58137,0.14039373,0.80018723,-0.54010934,0.21059059,0.8135937,-0.6068705,0.21059059,0.7650888,0.04059994,0.3957159,0.91638505,1.60556e-7,0.34390387,0.9379398,0.081005394,0.3427714,0.9348513,-0.040601313,0.28972957,0.9552012,-0.08049228,0.23451184,0.96774286,1.6590295e-7,0.23527676,0.9708995,0.0804926,0.23451182,0.9677428,0.040601637,0.28972957,0.9552012,0.16046163,0.23222193,0.9582933,0.12102314,0.28818637,0.948843,-0.12107126,0.17521615,0.97603387,-0.15945321,0.11763967,0.9791509,-0.08106056,0.11731216,0.98877096,-0.1970771,0.058769073,0.97760314,-0.23321185,1.7892026e-8,0.9713976,-0.15627792,1.817389e-8,0.9867007,-0.0783805,1.8343709e-8,0.9959205,-0.11895902,0.05879932,0.9901477,1.7217575e-7,1.840043e-8,0.999,-0.04063435,0.05880682,0.9964395,0.078380845,1.8343707e-8,0.9959205,0.04063469,0.058806818,0.99643946,0.15627825,1.8173889e-8,0.98670065,0.11895935,0.05879932,0.99014765,0.08106091,0.11731216,0.98877096,0.23321216,1.7892024e-8,0.9713975,0.1970774,0.058769066,0.977603,0.30870825,1.7499849e-8,0.95010537,0.27343324,0.058756545,0.95905316,0.2368495,0.117231846,0.9634106,0.19913211,0.17514604,0.96315694,0.15945356,0.11763967,0.9791509,0.12107159,0.17521615,0.9760338,-0.040636238,0.1767557,0.9823987,1.7549225e-7,0.11770027,0.9920422,0.040636577,0.1767557,0.9823987,-0.274419,-0.070105776,0.9580086,-0.30735174,-0.12884131,0.9417727,-0.23843819,-0.13977933,0.9600052,-0.3388696,-0.18760161,0.92085505,-0.3681498,-0.24513867,0.89575326,-0.3009576,-0.2567988,0.91732216,-0.23222265,-0.2671425,0.93418866,-0.27035642,-0.19877325,0.94095576,-0.1622973,-0.27611685,0.9462664,-0.20098732,-0.20859112,0.9560831,-0.39695325,-0.30388346,0.86491853,-0.4219413,-0.35904443,0.8312963,-0.35787058,-0.37356898,0.8546203,-0.4449197,-0.4130386,0.7933766,-0.46519202,-0.46478835,0.75204337,-0.40295205,-0.4805857,0.77760404,-0.3387834,-0.49408287,0.7994429,-0.38133982,-0.42811975,0.8181042,-0.27299324,-0.5052152,0.81745535,-0.31646082,-0.44082534,0.8387649,-0.20589647,-0.5139294,0.83155525,-0.24707833,-0.45111766,0.85641474,-0.1378142,-0.52018386,0.8416751,-0.17941627,-0.45887986,0.8690455,-0.21989684,-0.39470756,0.89098394,-0.069072336,-0.52394855,0.8477665,-0.1102745,-0.46412906,0.87773836,1.3999882e-7,-0.52520543,0.8498002,-0.04120701,-0.46686962,0.88223344,-0.08216011,-0.4056554,0.9092274,-0.122606665,-0.34194022,0.93061566,-0.15139726,-0.40115866,0.9023035,-0.19158813,-0.33627412,0.92098576,-0.3302759,-0.31600845,0.88828903,-0.2896395,-0.38514325,0.87508553,-0.2612888,-0.3268309,0.9071443,0.069072604,-0.52394855,0.84776646,0.041207302,-0.4668696,0.8822334,0.13781448,-0.52018386,0.84167504,0.11027481,-0.46412906,0.87773836,0.082160406,-0.4056554,0.9092274,0.20589672,-0.5139294,0.8315552,0.17941654,-0.45887983,0.86904544,0.2729935,-0.5052152,0.8174553,0.2470786,-0.45111766,0.8564147,0.21989714,-0.39470756,0.8909839,0.19158845,-0.3362741,0.9209857,0.15139756,-0.40115866,0.90230346,0.16229762,-0.27611682,0.94626635,0.12260697,-0.3419402,0.9306156,0.33878365,-0.49408287,0.79944277,0.3164611,-0.44082534,0.83876485,0.4029523,-0.4805857,0.7776039,0.38134012,-0.42811975,0.8181041,0.35787085,-0.37356898,0.8546202,0.46519226,-0.46478832,0.7520432,0.44491997,-0.41303864,0.7933765,0.52520573,-0.44676632,0.72288305,0.5057921,-0.39571586,0.7652349,0.48395753,-0.34277138,0.8039241,0.45980662,-0.28818634,0.8387655,0.42194158,-0.35904443,0.8312962,0.433455,-0.23222189,0.8695923,0.39695352,-0.30388346,0.8649184,0.4050287,-0.17514601,0.896257,0.36815006,-0.24513866,0.8957531,0.37466383,-0.11723181,0.918632,0.33886993,-0.1876016,0.92085487,0.3009579,-0.25679877,0.91732204,0.34250572,-0.05875651,0.9366101,0.3073521,-0.12884131,0.94177264,0.27441934,-0.07010576,0.95800847,0.23843852,-0.13977931,0.9600051,0.20098767,-0.20859112,0.95608306,0.2703567,-0.19877322,0.94095564,0.23222296,-0.26714253,0.9341886,0.28963977,-0.38514325,0.8750854,0.3302762,-0.31600845,0.888289,0.2612891,-0.3268309,0.90714425,-0.19802889,-0.07012722,0.9766615,-0.16084528,-0.14028928,0.97593474,-0.12267732,-0.20871136,0.9692218,-0.08224111,-0.13991718,0.98572844,-0.041257724,-0.0701921,0.9956766,-0.119635604,-0.070179194,0.98932457,-0.08141943,-0.27890348,0.95581627,-0.04120952,-0.3438258,0.93706274,1.6595354e-7,-0.27983442,0.9590066,1.4936862e-7,-0.4070343,0.91231793,0.04120983,-0.3438258,0.93706274,0.08141975,-0.27890345,0.9558162,0.122677654,-0.20871133,0.9692217,0.16084564,-0.14028928,0.9759347,0.08224147,-0.13991718,0.98572844,0.19802922,-0.07012721,0.97666144,0.119635954,-0.0701792,0.98932457,0.041258074,-0.0701921,0.9956766,-0.041260526,-0.21059063,0.9756794,0.04126087,-0.21059063,0.9756794,1.7924353e-7,-0.14039373,0.98908573,-0.44491974,-0.5249011,0.7242419,-0.42194137,-0.58296454,0.69290614,-0.39695334,-0.63770574,0.658605,-0.35787064,-0.5973305,0.7163281,-0.31646085,-0.5530711,0.76939327,-0.38133988,-0.5402736,0.7487893,-0.36814985,-0.69155663,0.6198517,-0.3388697,-0.7397398,0.5796149,-0.30095768,-0.70563394,0.63992673,-0.30735186,-0.7847275,0.5364127,-0.2744191,-0.82551664,0.49113894,-0.23843826,-0.7961436,0.5543498,-0.20098737,-0.7618619,0.6141429,-0.27035648,-0.75272226,0.59859633,-0.16229734,-0.7228832,0.6701496,-0.23222269,-0.716094,0.6567214,-0.122606695,-0.6794477,0.72202456,-0.19158815,-0.67336833,0.71265,-0.08216013,-0.63182306,0.76944804,-0.15139727,-0.62764126,0.76232964,-0.21989687,-0.6204017,0.7514973,-0.04120702,-0.58030313,0.81212765,-0.110274516,-0.57750833,0.8076662,-0.17941627,-0.57208073,0.79908353,-0.24707833,-0.56425464,0.7864922,-0.33027598,-0.6531866,0.67990154,-0.26128885,-0.6652114,0.69801366,-0.28963953,-0.61045897,0.7358328,-0.23321195,-0.86884445,0.43442222,-0.19707717,-0.9006771,0.38463268,-0.15627801,-0.88253194,0.44126594,-0.15945333,-0.9283893,0.3326694,-0.121071376,-0.9513503,0.27977747,-0.08106067,-0.9368472,0.33726457,-0.040634446,-0.9175418,0.3930228,-0.118959114,-0.9119109,0.39021578,7.8261714e-8,-0.8935328,0.44676635,-0.0783806,-0.8907783,0.44538912,-0.0804924,-0.97045237,0.22303392,-0.040601443,-0.983929,0.16803686,4.5246264e-8,-0.9736179,0.22376142,2.2403162e-8,-0.99271744,0.111862354,0.04059979,-0.9966093,0.055880684,0.08100526,-0.9894484,0.111494,0.12102302,-0.9775519,0.16657366,0.04060151,-0.9839289,0.16803686,0.16046152,-0.9609764,0.22085607,0.08049249,-0.97045237,0.2230339,0.199132,-0.9398015,0.27408138,0.12107148,-0.9513503,0.27977747,0.2368494,-0.91412836,0.3259949,0.15945345,-0.9283893,0.3326694,0.08106079,-0.9368472,0.33726457,0.27343315,-0.88408,0.3763481,0.1970773,-0.9006771,0.38463265,0.30870816,-0.8498001,0.42489997,0.23321208,-0.8688444,0.43442214,0.15627818,-0.88253194,0.44126588,0.078380756,-0.8907783,0.4453891,0.118959256,-0.9119109,0.39021575,0.040634587,-0.9175418,0.3930228,-0.04063635,-0.95773166,0.2812469,0.040636454,-0.95773166,0.2812469,5.974204e-8,-0.9399467,0.3383804,0.34250566,-0.81145287,0.47141817,0.27441928,-0.82551664,0.49113888,0.3746638,-0.76922184,0.5156801,0.307352,-0.78472745,0.5364127,0.23843846,-0.7961436,0.5543497,0.40502867,-0.723309,0.55747366,0.33886984,-0.7397397,0.5796148,0.433455,-0.6739343,0.59659916,0.36815,-0.6915565,0.61985165,0.30095783,-0.7056339,0.6399267,0.23222288,-0.71609396,0.65672135,0.27035666,-0.7527222,0.5985963,0.16229758,-0.7228832,0.6701496,0.20098759,-0.7618619,0.6141428,0.45980662,-0.62133384,0.632869,0.39695352,-0.63770574,0.6586049,0.48395753,-0.56575954,0.66610974,0.42194158,-0.5829645,0.692906,0.35787085,-0.5973305,0.716328,0.5057921,-0.5074774,0.69616246,0.44491997,-0.5249011,0.72424173,0.38134012,-0.5402736,0.7487892,0.3164611,-0.5530711,0.76939315,0.2470786,-0.56425464,0.78649217,0.17941652,-0.5720807,0.7990835,0.2198971,-0.6204016,0.75149727,0.11027479,-0.57750833,0.8076661,0.04120729,-0.58030313,0.81212765,0.08216038,-0.63182306,0.76944804,0.12260693,-0.67944765,0.7220245,0.15139753,-0.6276412,0.7623296,0.19158839,-0.67336833,0.71265,0.33027613,-0.65318656,0.6799015,0.28963977,-0.6104589,0.73583275,0.26128906,-0.66521126,0.69801366,-0.198029,-0.8421908,0.4995,-0.11963568,-0.85349375,0.50520957,-0.041257802,-0.85916936,0.5080618,-0.082241185,-0.8190895,0.56597686,-0.12267738,-0.7735598,0.62012625,-0.16084537,-0.8101634,0.56192976,0.04125799,-0.85916936,0.5080618,0.119635865,-0.85349375,0.5052095,0.082241386,-0.8190895,0.56597686,0.19802916,-0.84219074,0.49949992,0.16084555,-0.8101633,0.56192976,0.12267759,-0.77355975,0.62012625,0.08141971,-0.73017865,0.6769128,0.041209802,-0.6843709,0.7265943,1.2069347e-7,-0.7326159,0.6791723,1.2696331e-7,-0.63397074,0.7720635,-0.041209552,-0.6843709,0.7265943,-0.08141947,-0.7301787,0.67691284,1.00824494e-7,-0.82187927,0.56790453,0.0412608,-0.77849513,0.624695,-0.041260585,-0.7784952,0.62469506],"indices":[0,1,2,1,3,4,4,5,2,1,4,2,3,6,7,6,8,9,9,10,7,6,9,7,10,11,12,11,13,14,14,5,12,11,14,12,3,7,4,7,10,12,12,5,4,7,12,4,8,15,16,15,17,18,18,19,16,15,18,16,17,20,21,20,22,23,23,24,21,20,23,21,24,25,26,25,27,28,28,19,26,25,28,26,17,21,18,21,24,26,26,19,18,21,26,18,27,29,30,29,31,32,32,33,30,29,32,30,31,34,35,34,36,37,37,38,35,34,37,35,38,39,40,39,13,41,41,33,40,39,41,40,31,35,32,35,38,40,40,33,32,35,40,32,8,16,9,16,19,42,42,10,9,16,42,9,19,28,43,28,27,30,30,33,43,28,30,43,33,41,44,41,13,11,11,10,44,41,11,44,19,43,42,43,33,44,44,10,42,43,44,42,22,45,46,45,47,48,48,49,46,45,48,46,47,50,51,50,52,53,53,54,51,50,53,51,54,55,56,55,57,58,58,49,56,55,58,56,47,51,48,51,54,56,56,49,48,51,56,48,52,59,60,59,61,62,62,63,60,59,62,60,61,64,65,64,66,67,67,68,65,64,67,65,68,69,70,69,71,72,72,63,70,69,72,70,61,65,62,65,68,70,70,63,62,65,70,62,71,73,74,73,75,76,76,77,74,73,76,74,75,78,79,78,80,81,81,82,79,78,81,79,82,83,84,83,57,85,85,77,84,83,85,84,75,79,76,79,82,84,84,77,76,79,84,76,52,60,53,60,63,86,86,54,53,60,86,53,63,72,87,72,71,74,74,77,87,72,74,87,77,85,88,85,57,55,55,54,88,85,55,88,63,87,86,87,77,88,88,54,86,87,88,86,80,89,90,89,91,92,92,93,90,89,92,90,91,94,95,94,96,97,97,98,95,94,97,95,98,99,100,99,101,102,102,93,100,99,102,100,91,95,92,95,98,100,100,93,92,95,100,92,96,103,104,103,105,106,106,107,104,103,106,104,105,108,109,108,110,111,111,112,109,108,111,109,112,113,114,113,115,116,116,107,114,113,116,114,105,109,106,109,112,114,114,107,106,109,114,106,115,117,118,117,119,120,120,121,118,117,120,118,119,122,123,122,36,124,124,125,123,122,124,123,125,126,127,126,101,128,128,121,127,126,128,127,119,123,120,123,125,127,127,121,120,123,127,120,96,104,97,104,107,129,129,98,97,104,129,97,107,116,130,116,115,118,118,121,130,116,118,130,121,128,131,128,101,99,99,98,131,128,99,131,107,130,129,130,121,131,131,98,129,130,131,129,22,46,23,46,49,132,132,24,23,46,132,23,49,58,133,58,57,134,134,135,133,58,134,133,135,136,137,136,27,25,25,24,137,136,25,137,49,133,132,133,135,137,137,24,132,133,137,132,57,83,138,83,82,139,139,140,138,83,139,138,82,81,141,81,80,90,90,93,141,81,90,141,93,102,142,102,101,143,143,140,142,102,143,142,82,141,139,141,93,142,142,140,139,141,142,139,101,126,144,126,125,145,145,146,144,126,145,144,125,124,147,124,36,34,34,31,147,124,34,147,31,29,148,29,27,149,149,146,148,29,149,148,125,147,145,147,31,148,148,146,145,147,148,145,57,138,134,138,140,150,150,135,134,138,150,134,140,143,151,143,101,144,144,146,151,143,144,151,146,149,152,149,27,136,136,135,152,149,136,152,140,151,150,151,146,152,152,135,150,151,152,150,66,153,67,153,154,155,155,68,67,153,155,67,154,156,157,156,158,159,159,160,157,156,159,157,160,161,162,161,71,69,69,68,162,161,69,162,154,157,155,157,160,162,162,68,155,157,162,155,158,163,164,163,165,166,166,167,164,163,166,164,165,168,169,168,170,171,171,172,169,168,171,169,172,173,174,173,175,176,176,167,174,173,176,174,165,169,166,169,172,174,174,167,166,169,174,166,175,177,178,177,179,180,180,181,178,177,180,178,179,182,183,182,80,78,78,75,183,182,78,183,75,73,184,73,71,185,185,181,184,73,185,184,179,183,180,183,75,184,184,181,180,183,184,180,158,164,159,164,167,186,186,160,159,164,186,159,167,176,187,176,175,178,178,181,187,176,178,187,181,185,188,185,71,161,161,160,188,185,161,188,167,187,186,187,181,188,188,160,186,187,188,186,170,189,190,189,191,192,192,193,190,189,192,190,191,194,195,194,196,197,197,198,195,194,197,195,198,199,200,199,201,202,202,193,200,199,202,200,191,195,192,195,198,200,200,193,192,195,200,192,196,203,204,203,205,206,206,207,204,203,206,204,205,208,209,208,210,211,211,212,209,208,211,209,212,213,214,213,215,216,216,207,214,213,216,214,205,209,206,209,212,214,214,207,206,209,214,206,215,217,218,217,219,220,220,221,218,217,220,218,219,222,223,222,224,225,225,226,223,222,225,223,226,227,228,227,201,229,229,221,228,227,229,228,219,223,220,223,226,228,228,221,220,223,228,220,196,204,197,204,207,230,230,198,197,204,230,197,207,216,231,216,215,218,218,221,231,216,218,231,221,229,232,229,201,199,199,198,232,229,199,232,207,231,230,231,221,232,232,198,230,231,232,230,224,233,234,233,235,236,236,237,234,233,236,234,235,238,239,238,240,241,241,242,239,238,241,239,242,243,244,243,245,246,246,237,244,243,246,244,235,239,236,239,242,244,244,237,236,239,244,236,240,247,248,247,249,250,250,251,248,247,250,248,249,252,253,252,110,108,108,105,253,252,108,253,105,103,254,103,96,255,255,251,254,103,255,254,249,253,250,253,105,254,254,251,250,253,254,250,96,94,256,94,91,257,257,258,256,94,257,256,91,89,259,89,80,260,260,261,259,89,260,259,261,262,263,262,245,264,264,258,263,262,264,263,91,259,257,259,261,263,263,258,257,259,263,257,240,248,241,248,251,265,265,242,241,248,265,241,251,255,266,255,96,256,256,258,266,255,256,266,258,264,267,264,245,243,243,242,267,264,243,267,251,266,265,266,258,267,267,242,265,266,267,265,170,190,171,190,193,268,268,172,171,190,268,171,193,202,269,202,201,270,270,271,269,202,270,269,271,272,273,272,175,173,173,172,273,272,173,273,193,269,268,269,271,273,273,172,268,269,273,268,201,227,274,227,226,275,275,276,274,227,275,274,226,225,277,225,224,234,234,237,277,225,234,277,237,246,278,246,245,279,279,276,278,246,279,278,226,277,275,277,237,278,278,276,275,277,278,275,245,262,280,262,261,281,281,282,280,262,281,280,261,260,283,260,80,182,182,179,283,260,182,283,179,177,284,177,175,285,285,282,284,177,285,284,261,283,281,283,179,284,284,282,281,283,284,281,201,274,270,274,276,286,286,271,270,274,286,270,276,279,287,279,245,280,280,282,287,279,280,287,282,285,288,285,175,272,272,271,288,285,272,288,276,287,286,287,282,288,288,271,286,287,288,286,110,252,289,252,249,290,290,291,289,252,290,289,249,247,292,247,240,293,293,294,292,247,293,292,294,295,296,295,297,298,298,291,296,295,298,296,249,292,290,292,294,296,296,291,290,292,296,290,240,238,299,238,235,300,300,301,299,238,300,299,235,233,302,233,224,303,303,304,302,233,303,302,304,305,306,305,307,308,308,301,306,305,308,306,235,302,300,302,304,306,306,301,300,302,306,300,307,309,310,309,311,312,312,313,310,309,312,310,311,314,315,314,316,317,317,318,315,314,317,315,318,319,320,319,297,321,321,313,320,319,321,320,311,315,312,315,318,320,320,313,312,315,320,312,240,299,293,299,301,322,322,294,293,299,322,293,301,308,323,308,307,310,310,313,323,308,310,323,313,321,324,321,297,295,295,294,324,321,295,324,301,323,322,323,313,324,324,294,322,323,324,322,224,222,325,222,219,326,326,327,325,222,326,325,219,217,328,217,215,329,329,330,328,217,329,328,330,331,332,331,333,334,334,327,332,331,334,332,219,328,326,328,330,332,332,327,326,328,332,326,215,213,335,213,212,336,336,337,335,213,336,335,212,211,338,211,210,339,339,340,338,211,339,338,340,341,342,341,343,344,344,337,342,341,344,342,212,338,336,338,340,342,342,337,336,338,342,336,343,345,346,345,347,348,348,349,346,345,348,346,347,350,351,350,352,353,353,354,351,350,353,351,354,355,356,355,333,357,357,349,356,355,357,356,347,351,348,351,354,356,356,349,348,351,356,348,215,335,329,335,337,358,358,330,329,335,358,329,337,344,359,344,343,346,346,349,359,344,346,359,349,357,360,357,333,331,331,330,360,357,331,360,337,359,358,359,349,360,360,330,358,359,360,358,352,361,362,361,363,364,364,365,362,361,364,362,363,366,367,366,368,369,369,370,367,366,369,367,370,371,372,371,373,374,374,365,372,371,374,372,363,367,364,367,370,372,372,365,364,367,372,364,368,375,376,375,377,378,378,379,376,375,378,376,377,380,381,380,382,383,383,384,381,380,383,381,384,385,386,385,387,388,388,379,386,385,388,386,377,381,378,381,384,386,386,379,378,381,386,378,387,389,390,389,391,392,392,393,390,389,392,390,391,394,395,394,316,396,396,397,395,394,396,395,397,398,399,398,373,400,400,393,399,398,400,399,391,395,392,395,397,399,399,393,392,395,399,392,368,376,369,376,379,401,401,370,369,376,401,369,379,388,402,388,387,390,390,393,402,388,390,402,393,400,403,400,373,371,371,370,403,400,371,403,379,402,401,402,393,403,403,370,401,402,403,401,224,325,303,325,327,404,404,304,303,325,404,303,327,334,405,334,333,406,406,407,405,334,406,405,407,408,409,408,307,305,305,304,409,408,305,409,327,405,404,405,407,409,409,304,404,405,409,404,333,355,410,355,354,411,411,412,410,355,411,410,354,353,413,353,352,362,362,365,413,353,362,413,365,374,414,374,373,415,415,412,414,374,415,414,354,413,411,413,365,414,414,412,411,413,414,411,373,398,416,398,397,417,417,418,416,398,417,416,397,396,419,396,316,314,314,311,419,396,314,419,311,309,420,309,307,421,421,418,420,309,421,420,397,419,417,419,311,420,420,418,417,419,420,417,333,410,406,410,412,422,422,407,406,410,422,406,412,415,423,415,373,416,416,418,423,415,416,423,418,421,424,421,307,408,408,407,424,421,408,424,412,423,422,423,418,424,424,407,422,423,424,422,210,425,339,425,426,427,427,340,339,425,427,339,426,428,429,428,430,431,431,432,429,428,431,429,432,433,434,433,343,341,341,340,434,433,341,434,426,429,427,429,432,434,434,340,427,429,434,427,430,435,436,435,437,438,438,439,436,435,438,436,437,440,441,440,442,443,443,444,441,440,443,441,444,445,446,445,447,448,448,439,446,445,448,446,437,441,438,441,444,446,446,439,438,441,446,438,447,449,450,449,451,452,452,453,450,449,452,450,451,454,455,454,352,350,350,347,455,454,350,455,347,345,456,345,343,457,457,453,456,345,457,456,451,455,452,455,347,456,456,453,452,455,456,452,430,436,431,436,439,458,458,432,431,436,458,431,439,448,459,448,447,450,450,453,459,448,450,459,453,457,460,457,343,433,433,432,460,457,433,460,439,459,458,459,453,460,460,432,458,459,460,458,442,461,462,461,463,464,464,465,462,461,464,462,463,466,467,466,468,469,469,470,467,466,469,467,470,471,472,471,473,474,474,465,472,471,474,472,463,467,464,467,470,472,472,465,464,467,472,464,468,475,476,475,477,478,478,479,476,475,478,476,477,480,481,480,482,483,483,484,481,480,483,481,484,485,486,485,487,488,488,479,486,485,488,486,477,481,478,481,484,486,486,479,478,481,486,478,487,489,490,489,491,492,492,493,490,489,492,490,491,494,495,494,496,497,497,498,495,494,497,495,498,499,500,499,473,501,501,493,500,499,501,500,491,495,492,495,498,500,500,493,492,495,500,492,468,476,469,476,479,502,502,470,469,476,502,469,479,488,503,488,487,490,490,493,503,488,490,503,493,501,504,501,473,471,471,470,504,501,471,504,479,503,502,503,493,504,504,470,502,503,504,502,496,505,506,505,507,508,508,509,506,505,508,506,507,510,511,510,512,513,513,514,511,510,513,511,514,515,516,515,517,518,518,509,516,515,518,516,507,511,508,511,514,516,516,509,508,511,516,508,512,519,520,519,521,522,522,523,520,519,522,520,521,524,525,524,382,380,380,377,525,524,380,525,377,375,526,375,368,527,527,523,526,375,527,526,521,525,522,525,377,526,526,523,522,525,526,522,368,366,528,366,363,529,529,530,528,366,529,528,363,361,531,361,352,532,532,533,531,361,532,531,533,534,535,534,517,536,536,530,535,534,536,535,363,531,529,531,533,535,535,530,529,531,535,529,512,520,513,520,523,537,537,514,513,520,537,513,523,527,538,527,368,528,528,530,538,527,528,538,530,536,539,536,517,515,515,514,539,536,515,539,523,538,537,538,530,539,539,514,537,538,539,537,442,462,443,462,465,540,540,444,443,462,540,443,465,474,541,474,473,542,542,543,541,474,542,541,543,544,545,544,447,445,445,444,545,544,445,545,465,541,540,541,543,545,545,444,540,541,545,540,473,499,546,499,498,547,547,548,546,499,547,546,498,497,549,497,496,506,506,509,549,497,506,549,509,518,550,518,517,551,551,548,550,518,551,550,498,549,547,549,509,550,550,548,547,549,550,547,517,534,552,534,533,553,553,554,552,534,553,552,533,532,555,532,352,454,454,451,555,532,454,555,451,449,556,449,447,557,557,554,556,449,557,556,533,555,553,555,451,556,556,554,553,555,556,553,473,546,542,546,548,558,558,543,542,546,558,542,548,551,559,551,517,552,552,554,559,551,552,559,554,557,560,557,447,544,544,543,560,557,544,560,548,559,558,559,554,560,560,543,558,559,560,558,0,2,561,2,5,562,562,563,561,2,562,561,5,14,564,14,13,565,565,566,564,14,565,564,566,567,568,567,569,570,570,563,568,567,570,568,5,564,562,564,566,568,568,563,562,564,568,562,13,39,571,39,38,572,572,573,571,39,572,571,38,37,574,37,36,575,575,576,574,37,575,574,576,577,578,577,579,580,580,573,578,577,580,578,38,574,572,574,576,578,578,573,572,574,578,572,579,581,582,581,583,584,584,585,582,581,584,582,583,586,587,586,588,589,589,590,587,586,589,587,590,591,592,591,569,593,593,585,592,591,593,592,583,587,584,587,590,592,592,585,584,587,592,584,13,571,565,571,573,594,594,566,565,571,594,565,573,580,595,580,579,582,582,585,595,580,582,595,585,593,596,593,569,567,567,566,596,593,567,596,573,595,594,595,585,596,596,566,594,595,596,594,36,122,597,122,119,598,598,599,597,122,598,597,119,117,600,117,115,601,601,602,600,117,601,600,602,603,604,603,605,606,606,599,604,603,606,604,119,600,598,600,602,604,604,599,598,600,604,598,115,113,607,113,112,608,608,609,607,113,608,607,112,111,610,111,110,611,611,612,610,111,611,610,612,613,614,613,615,616,616,609,614,613,616,614,112,610,608,610,612,614,614,609,608,610,614,608,615,617,618,617,619,620,620,621,618,617,620,618,619,622,623,622,624,625,625,626,623,622,625,623,626,627,628,627,605,629,629,621,628,627,629,628,619,623,620,623,626,628,628,621,620,623,628,620,115,607,601,607,609,630,630,602,601,607,630,601,609,616,631,616,615,618,618,621,631,616,618,631,621,629,632,629,605,603,603,602,632,629,603,632,609,631,630,631,621,632,632,602,630,631,632,630,624,633,634,633,635,636,636,637,634,633,636,634,635,638,639,638,640,641,641,642,639,638,641,639,642,643,644,643,645,646,646,637,644,643,646,644,635,639,636,639,642,644,644,637,636,639,644,636,640,647,648,647,649,650,650,651,648,647,650,648,649,652,653,652,654,655,655,656,653,652,655,653,656,657,658,657,659,660,660,651,658,657,660,658,649,653,650,653,656,658,658,651,650,653,658,650,659,661,662,661,663,664,664,665,662,661,664,662,663,666,667,666,588,668,668,669,667,666,668,667,669,670,671,670,645,672,672,665,671,670,672,671,663,667,664,667,669,671,671,665,664,667,671,664,640,648,641,648,651,673,673,642,641,648,673,641,651,660,674,660,659,662,662,665,674,660,662,674,665,672,675,672,645,643,643,642,675,672,643,675,651,674,673,674,665,675,675,642,673,674,675,673,36,597,575,597,599,676,676,576,575,597,676,575,599,606,677,606,605,678,678,679,677,606,678,677,679,680,681,680,579,577,577,576,681,680,577,681,599,677,676,677,679,681,681,576,676,677,681,676,605,627,682,627,626,683,683,684,682,627,683,682,626,625,685,625,624,634,634,637,685,625,634,685,637,646,686,646,645,687,687,684,686,646,687,686,626,685,683,685,637,686,686,684,683,685,686,683,645,670,688,670,669,689,689,690,688,670,689,688,669,668,691,668,588,586,586,583,691,668,586,691,583,581,692,581,579,693,693,690,692,581,693,692,669,691,689,691,583,692,692,690,689,691,692,689,605,682,678,682,684,694,694,679,678,682,694,678,684,687,695,687,645,688,688,690,695,687,688,695,690,693,696,693,579,680,680,679,696,693,680,696,684,695,694,695,690,696,696,679,694,695,696,694,110,289,611,289,291,697,697,612,611,289,697,611,291,298,698,298,297,699,699,700,698,298,699,698,700,701,702,701,615,613,613,612,702,701,613,702,291,698,697,698,700,702,702,612,697,698,702,697,297,319,703,319,318,704,704,705,703,319,704,703,318,317,706,317,316,707,707,708,706,317,707,706,708,709,710,709,711,712,712,705,710,709,712,710,318,706,704,706,708,710,710,705,704,706,710,704,711,713,714,713,715,716,716,717,714,713,716,714,715,718,719,718,624,622,622,619,719,718,622,719,619,617,720,617,615,721,721,717,720,617,721,720,715,719,716,719,619,720,720,717,716,719,720,716,297,703,699,703,705,722,722,700,699,703,722,699,705,712,723,712,711,714,714,717,723,712,714,723,717,721,724,721,615,701,701,700,724,721,701,724,705,723,722,723,717,724,724,700,722,723,724,722,316,394,725,394,391,726,726,727,725,394,726,725,391,389,728,389,387,729,729,730,728,389,729,728,730,731,732,731,733,734,734,727,732,731,734,732,391,728,726,728,730,732,732,727,726,728,732,726,387,385,735,385,384,736,736,737,735,385,736,735,384,383,738,383,382,739,739,740,738,383,739,738,740,741,742,741,743,744,744,737,742,741,744,742,384,738,736,738,740,742,742,737,736,738,742,736,743,745,746,745,747,748,748,749,746,745,748,746,747,750,751,750,752,753,753,754,751,750,753,751,754,755,756,755,733,757,757,749,756,755,757,756,747,751,748,751,754,756,756,749,748,751,756,748,387,735,729,735,737,758,758,730,729,735,758,729,737,744,759,744,743,746,746,749,759,744,746,759,749,757,760,757,733,731,731,730,760,757,731,760,737,759,758,759,749,760,760,730,758,759,760,758,752,761,762,761,763,764,764,765,762,761,764,762,763,766,767,766,768,769,769,770,767,766,769,767,770,771,772,771,773,774,774,765,772,771,774,772,763,767,764,767,770,772,772,765,764,767,772,764,768,775,776,775,777,778,778,779,776,775,778,776,777,780,781,780,654,652,652,649,781,780,652,781,649,647,782,647,640,783,783,779,782,647,783,782,777,781,778,781,649,782,782,779,778,781,782,778,640,638,784,638,635,785,785,786,784,638,785,784,635,633,787,633,624,788,788,789,787,633,788,787,789,790,791,790,773,792,792,786,791,790,792,791,635,787,785,787,789,791,791,786,785,787,791,785,768,776,769,776,779,793,793,770,769,776,793,769,779,783,794,783,640,784,784,786,794,783,784,794,786,792,795,792,773,771,771,770,795,792,771,795,779,794,793,794,786,795,795,770,793,794,795,793,316,725,707,725,727,796,796,708,707,725,796,707,727,734,797,734,733,798,798,799,797,734,798,797,799,800,801,800,711,709,709,708,801,800,709,801,727,797,796,797,799,801,801,708,796,797,801,796,733,755,802,755,754,803,803,804,802,755,803,802,754,753,805,753,752,762,762,765,805,753,762,805,765,774,806,774,773,807,807,804,806,774,807,806,754,805,803,805,765,806,806,804,803,805,806,803,773,790,808,790,789,809,809,810,808,790,809,808,789,788,811,788,624,718,718,715,811,788,718,811,715,713,812,713,711,813,813,810,812,713,813,812,789,811,809,811,715,812,812,810,809,811,812,809,733,802,798,802,804,814,814,799,798,802,814,798,804,807,815,807,773,808,808,810,815,807,808,815,810,813,816,813,711,800,800,799,816,813,800,816,804,815,814,815,810,816,816,799,814,815,816,814,654,780,817,780,777,818,818,819,817,780,818,817,777,775,820,775,768,821,821,822,820,775,821,820,822,823,824,823,825,826,826,819,824,823,826,824,777,820,818,820,822,824,824,819,818,820,824,818,768,766,827,766,763,828,828,829,827,766,828,827,763,761,830,761,752,831,831,832,830,761,831,830,832,833,834,833,835,836,836,829,834,833,836,834,763,830,828,830,832,834,834,829,828,830,834,828,835,837,838,837,839,840,840,841,838,837,840,838,839,842,843,842,844,845,845,846,843,842,845,843,846,847,848,847,825,849,849,841,848,847,849,848,839,843,840,843,846,848,848,841,840,843,848,840,768,827,821,827,829,850,850,822,821,827,850,821,829,836,851,836,835,838,838,841,851,836,838,851,841,849,852,849,825,823,823,822,852,849,823,852,829,851,850,851,841,852,852,822,850,851,852,850,752,750,853,750,747,854,854,855,853,750,854,853,747,745,856,745,743,857,857,858,856,745,857,856,858,859,860,859,861,862,862,855,860,859,862,860,747,856,854,856,858,860,860,855,854,856,860,854,743,741,863,741,740,864,864,865,863,741,864,863,740,739,866,739,382,867,867,868,866,739,867,866,868,869,870,869,871,872,872,865,870,869,872,870,740,866,864,866,868,870,870,865,864,866,870,864,871,873,874,873,875,876,876,877,874,873,876,874,875,878,879,878,880,881,881,882,879,878,881,879,882,883,884,883,861,885,885,877,884,883,885,884,875,879,876,879,882,884,884,877,876,879,884,876,743,863,857,863,865,886,886,858,857,863,886,857,865,872,887,872,871,874,874,877,887,872,874,887,877,885,888,885,861,859,859,858,888,885,859,888,865,887,886,887,877,888,888,858,886,887,888,886,880,889,890,889,891,892,892,893,890,889,892,890,891,894,895,894,896,897,897,898,895,894,897,895,898,899,900,899,901,902,902,893,900,899,902,900,891,895,892,895,898,900,900,893,892,895,900,892,896,903,904,903,905,906,906,907,904,903,906,904,905,908,909,908,910,911,911,912,909,908,911,909,912,913,914,913,915,916,916,907,914,913,916,914,905,909,906,909,912,914,914,907,906,909,914,906,915,917,918,917,919,920,920,921,918,917,920,918,919,922,923,922,844,924,924,925,923,922,924,923,925,926,927,926,901,928,928,921,927,926,928,927,919,923,920,923,925,927,927,921,920,923,927,920,896,904,897,904,907,929,929,898,897,904,929,897,907,916,930,916,915,918,918,921,930,916,918,930,921,928,931,928,901,899,899,898,931,928,899,931,907,930,929,930,921,931,931,898,929,930,931,929,752,853,831,853,855,932,932,832,831,853,932,831,855,862,933,862,861,934,934,935,933,862,934,933,935,936,937,936,835,833,833,832,937,936,833,937,855,933,932,933,935,937,937,832,932,933,937,932,861,883,938,883,882,939,939,940,938,883,939,938,882,881,941,881,880,890,890,893,941,881,890,941,893,902,942,902,901,943,943,940,942,902,943,942,882,941,939,941,893,942,942,940,939,941,942,939,901,926,944,926,925,945,945,946,944,926,945,944,925,924,947,924,844,842,842,839,947,924,842,947,839,837,948,837,835,949,949,946,948,837,949,948,925,947,945,947,839,948,948,946,945,947,948,945,861,938,934,938,940,950,950,935,934,938,950,934,940,943,951,943,901,944,944,946,951,943,944,951,946,949,952,949,835,936,936,935,952,949,936,952,940,951,950,951,946,952,952,935,950,951,952,950,382,524,867,524,521,953,953,868,867,524,953,867,521,519,954,519,512,955,955,956,954,519,955,954,956,957,958,957,871,869,869,868,958,957,869,958,521,954,953,954,956,958,958,868,953,954,958,953,512,510,959,510,507,960,960,961,959,510,960,959,507,505,962,505,496,963,963,964,962,505,963,962,964,965,966,965,967,968,968,961,966,965,968,966,507,962,960,962,964,966,966,961,960,962,966,960,967,969,970,969,971,972,972,973,970,969,972,970,971,974,975,974,880,878,878,875,975,974,878,975,875,873,976,873,871,977,977,973,976,873,977,976,971,975,972,975,875,976,976,973,972,975,976,972,512,959,955,959,961,978,978,956,955,959,978,955,961,968,979,968,967,970,970,973,979,968,970,979,973,977,980,977,871,957,957,956,980,977,957,980,961,979,978,979,973,980,980,956,978,979,980,978,496,494,981,494,491,982,982,983,981,494,982,981,491,489,984,489,487,985,985,986,984,489,985,984,986,987,988,987,989,990,990,983,988,987,990,988,491,984,982,984,986,988,988,983,982,984,988,982,487,485,991,485,484,992,992,993,991,485,992,991,484,483,994,483,482,995,995,996,994,483,995,994,996,997,998,997,999,1000,1000,993,998,997,1000,998,484,994,992,994,996,998,998,993,992,994,998,992,999,1001,1002,1001,1003,1004,1004,1005,1002,1001,1004,1002,1003,1006,1007,1006,1008,1009,1009,1010,1007,1006,1009,1007,1010,1011,1012,1011,989,1013,1013,1005,1012,1011,1013,1012,1003,1007,1004,1007,1010,1012,1012,1005,1004,1007,1012,1004,487,991,985,991,993,1014,1014,986,985,991,1014,985,993,1000,1015,1000,999,1002,1002,1005,1015,1000,1002,1015,1005,1013,1016,1013,989,987,987,986,1016,1013,987,1016,993,1015,1014,1015,1005,1016,1016,986,1014,1015,1016,1014,1008,1017,1018,1017,1019,1020,1020,1021,1018,1017,1020,1018,1019,1022,1023,1022,1024,1025,1025,1026,1023,1022,1025,1023,1026,1027,1028,1027,1029,1030,1030,1021,1028,1027,1030,1028,1019,1023,1020,1023,1026,1028,1028,1021,1020,1023,1028,1020,1024,1031,1032,1031,1033,1034,1034,1035,1032,1031,1034,1032,1033,1036,1037,1036,910,908,908,905,1037,1036,908,1037,905,903,1038,903,896,1039,1039,1035,1038,903,1039,1038,1033,1037,1034,1037,905,1038,1038,1035,1034,1037,1038,1034,896,894,1040,894,891,1041,1041,1042,1040,894,1041,1040,891,889,1043,889,880,1044,1044,1045,1043,889,1044,1043,1045,1046,1047,1046,1029,1048,1048,1042,1047,1046,1048,1047,891,1043,1041,1043,1045,1047,1047,1042,1041,1043,1047,1041,1024,1032,1025,1032,1035,1049,1049,1026,1025,1032,1049,1025,1035,1039,1050,1039,896,1040,1040,1042,1050,1039,1040,1050,1042,1048,1051,1048,1029,1027,1027,1026,1051,1048,1027,1051,1035,1050,1049,1050,1042,1051,1051,1026,1049,1050,1051,1049,496,981,963,981,983,1052,1052,964,963,981,1052,963,983,990,1053,990,989,1054,1054,1055,1053,990,1054,1053,1055,1056,1057,1056,967,965,965,964,1057,1056,965,1057,983,1053,1052,1053,1055,1057,1057,964,1052,1053,1057,1052,989,1011,1058,1011,1010,1059,1059,1060,1058,1011,1059,1058,1010,1009,1061,1009,1008,1018,1018,1021,1061,1009,1018,1061,1021,1030,1062,1030,1029,1063,1063,1060,1062,1030,1063,1062,1010,1061,1059,1061,1021,1062,1062,1060,1059,1061,1062,1059,1029,1046,1064,1046,1045,1065,1065,1066,1064,1046,1065,1064,1045,1044,1067,1044,880,974,974,971,1067,1044,974,1067,971,969,1068,969,967,1069,1069,1066,1068,969,1069,1068,1045,1067,1065,1067,971,1068,1068,1066,1065,1067,1068,1065,989,1058,1054,1058,1060,1070,1070,1055,1054,1058,1070,1054,1060,1063,1071,1063,1029,1064,1064,1066,1071,1063,1064,1071,1066,1069,1072,1069,967,1056,1056,1055,1072,1069,1056,1072,1060,1071,1070,1071,1066,1072,1072,1055,1070,1071,1072,1070,0,561,1073,561,563,1074,1074,1075,1073,561,1074,1073,563,570,1076,570,569,1077,1077,1078,1076,570,1077,1076,1078,1079,1080,1079,1081,1082,1082,1075,1080,1079,1082,1080,563,1076,1074,1076,1078,1080,1080,1075,1074,1076,1080,1074,569,591,1083,591,590,1084,1084,1085,1083,591,1084,1083,590,589,1086,589,588,1087,1087,1088,1086,589,1087,1086,1088,1089,1090,1089,1091,1092,1092,1085,1090,1089,1092,1090,590,1086,1084,1086,1088,1090,1090,1085,1084,1086,1090,1084,1091,1093,1094,1093,1095,1096,1096,1097,1094,1093,1096,1094,1095,1098,1099,1098,1100,1101,1101,1102,1099,1098,1101,1099,1102,1103,1104,1103,1081,1105,1105,1097,1104,1103,1105,1104,1095,1099,1096,1099,1102,1104,1104,1097,1096,1099,1104,1096,569,1083,1077,1083,1085,1106,1106,1078,1077,1083,1106,1077,1085,1092,1107,1092,1091,1094,1094,1097,1107,1092,1094,1107,1097,1105,1108,1105,1081,1079,1079,1078,1108,1105,1079,1108,1085,1107,1106,1107,1097,1108,1108,1078,1106,1107,1108,1106,588,666,1109,666,663,1110,1110,1111,1109,666,1110,1109,663,661,1112,661,659,1113,1113,1114,1112,661,1113,1112,1114,1115,1116,1115,1117,1118,1118,1111,1116,1115,1118,1116,663,1112,1110,1112,1114,1116,1116,1111,1110,1112,1116,1110,659,657,1119,657,656,1120,1120,1121,1119,657,1120,1119,656,655,1122,655,654,1123,1123,1124,1122,655,1123,1122,1124,1125,1126,1125,1127,1128,1128,1121,1126,1125,1128,1126,656,1122,1120,1122,1124,1126,1126,1121,1120,1122,1126,1120,1127,1129,1130,1129,1131,1132,1132,1133,1130,1129,1132,1130,1131,1134,1135,1134,1136,1137,1137,1138,1135,1134,1137,1135,1138,1139,1140,1139,1117,1141,1141,1133,1140,1139,1141,1140,1131,1135,1132,1135,1138,1140,1140,1133,1132,1135,1140,1132,659,1119,1113,1119,1121,1142,1142,1114,1113,1119,1142,1113,1121,1128,1143,1128,1127,1130,1130,1133,1143,1128,1130,1143,1133,1141,1144,1141,1117,1115,1115,1114,1144,1141,1115,1144,1121,1143,1142,1143,1133,1144,1144,1114,1142,1143,1144,1142,1136,1145,1146,1145,1147,1148,1148,1149,1146,1145,1148,1146,1147,1150,1151,1150,1152,1153,1153,1154,1151,1150,1153,1151,1154,1155,1156,1155,1157,1158,1158,1149,1156,1155,1158,1156,1147,1151,1148,1151,1154,1156,1156,1149,1148,1151,1156,1148,1152,1159,1160,1159,1161,1162,1162,1163,1160,1159,1162,1160,1161,1164,1165,1164,1166,1167,1167,1168,1165,1164,1167,1165,1168,1169,1170,1169,1171,1172,1172,1163,1170,1169,1172,1170,1161,1165,1162,1165,1168,1170,1170,1163,1162,1165,1170,1162,1171,1173,1174,1173,1175,1176,1176,1177,1174,1173,1176,1174,1175,1178,1179,1178,1100,1180,1180,1181,1179,1178,1180,1179,1181,1182,1183,1182,1157,1184,1184,1177,1183,1182,1184,1183,1175,1179,1176,1179,1181,1183,1183,1177,1176,1179,1183,1176,1152,1160,1153,1160,1163,1185,1185,1154,1153,1160,1185,1153,1163,1172,1186,1172,1171,1174,1174,1177,1186,1172,1174,1186,1177,1184,1187,1184,1157,1155,1155,1154,1187,1184,1155,1187,1163,1186,1185,1186,1177,1187,1187,1154,1185,1186,1187,1185,588,1109,1087,1109,1111,1188,1188,1088,1087,1109,1188,1087,1111,1118,1189,1118,1117,1190,1190,1191,1189,1118,1190,1189,1191,1192,1193,1192,1091,1089,1089,1088,1193,1192,1089,1193,1111,1189,1188,1189,1191,1193,1193,1088,1188,1189,1193,1188,1117,1139,1194,1139,1138,1195,1195,1196,1194,1139,1195,1194,1138,1137,1197,1137,1136,1146,1146,1149,1197,1137,1146,1197,1149,1158,1198,1158,1157,1199,1199,1196,1198,1158,1199,1198,1138,1197,1195,1197,1149,1198,1198,1196,1195,1197,1198,1195,1157,1182,1200,1182,1181,1201,1201,1202,1200,1182,1201,1200,1181,1180,1203,1180,1100,1098,1098,1095,1203,1180,1098,1203,1095,1093,1204,1093,1091,1205,1205,1202,1204,1093,1205,1204,1181,1203,1201,1203,1095,1204,1204,1202,1201,1203,1204,1201,1117,1194,1190,1194,1196,1206,1206,1191,1190,1194,1206,1190,1196,1199,1207,1199,1157,1200,1200,1202,1207,1199,1200,1207,1202,1205,1208,1205,1091,1192,1192,1191,1208,1205,1192,1208,1196,1207,1206,1207,1202,1208,1208,1191,1206,1207,1208,1206,654,817,1123,817,819,1209,1209,1124,1123,817,1209,1123,819,826,1210,826,825,1211,1211,1212,1210,826,1211,1210,1212,1213,1214,1213,1127,1125,1125,1124,1214,1213,1125,1214,819,1210,1209,1210,1212,1214,1214,1124,1209,1210,1214,1209,825,847,1215,847,846,1216,1216,1217,1215,847,1216,1215,846,845,1218,845,844,1219,1219,1220,1218,845,1219,1218,1220,1221,1222,1221,1223,1224,1224,1217,1222,1221,1224,1222,846,1218,1216,1218,1220,1222,1222,1217,1216,1218,1222,1216,1223,1225,1226,1225,1227,1228,1228,1229,1226,1225,1228,1226,1227,1230,1231,1230,1136,1134,1134,1131,1231,1230,1134,1231,1131,1129,1232,1129,1127,1233,1233,1229,1232,1129,1233,1232,1227,1231,1228,1231,1131,1232,1232,1229,1228,1231,1232,1228,825,1215,1211,1215,1217,1234,1234,1212,1211,1215,1234,1211,1217,1224,1235,1224,1223,1226,1226,1229,1235,1224,1226,1235,1229,1233,1236,1233,1127,1213,1213,1212,1236,1233,1213,1236,1217,1235,1234,1235,1229,1236,1236,1212,1234,1235,1236,1234,844,922,1237,922,919,1238,1238,1239,1237,922,1238,1237,919,917,1240,917,915,1241,1241,1242,1240,917,1241,1240,1242,1243,1244,1243,1245,1246,1246,1239,1244,1243,1246,1244,919,1240,1238,1240,1242,1244,1244,1239,1238,1240,1244,1238,915,913,1247,913,912,1248,1248,1249,1247,913,1248,1247,912,911,1250,911,910,1251,1251,1252,1250,911,1251,1250,1252,1253,1254,1253,1255,1256,1256,1249,1254,1253,1256,1254,912,1250,1248,1250,1252,1254,1254,1249,1248,1250,1254,1248,1255,1257,1258,1257,1259,1260,1260,1261,1258,1257,1260,1258,1259,1262,1263,1262,1264,1265,1265,1266,1263,1262,1265,1263,1266,1267,1268,1267,1245,1269,1269,1261,1268,1267,1269,1268,1259,1263,1260,1263,1266,1268,1268,1261,1260,1263,1268,1260,915,1247,1241,1247,1249,1270,1270,1242,1241,1247,1270,1241,1249,1256,1271,1256,1255,1258,1258,1261,1271,1256,1258,1271,1261,1269,1272,1269,1245,1243,1243,1242,1272,1269,1243,1272,1249,1271,1270,1271,1261,1272,1272,1242,1270,1271,1272,1270,1264,1273,1274,1273,1275,1276,1276,1277,1274,1273,1276,1274,1275,1278,1279,1278,1280,1281,1281,1282,1279,1278,1281,1279,1282,1283,1284,1283,1285,1286,1286,1277,1284,1283,1286,1284,1275,1279,1276,1279,1282,1284,1284,1277,1276,1279,1284,1276,1280,1287,1288,1287,1289,1290,1290,1291,1288,1287,1290,1288,1289,1292,1293,1292,1166,1164,1164,1161,1293,1292,1164,1293,1161,1159,1294,1159,1152,1295,1295,1291,1294,1159,1295,1294,1289,1293,1290,1293,1161,1294,1294,1291,1290,1293,1294,1290,1152,1150,1296,1150,1147,1297,1297,1298,1296,1150,1297,1296,1147,1145,1299,1145,1136,1300,1300,1301,1299,1145,1300,1299,1301,1302,1303,1302,1285,1304,1304,1298,1303,1302,1304,1303,1147,1299,1297,1299,1301,1303,1303,1298,1297,1299,1303,1297,1280,1288,1281,1288,1291,1305,1305,1282,1281,1288,1305,1281,1291,1295,1306,1295,1152,1296,1296,1298,1306,1295,1296,1306,1298,1304,1307,1304,1285,1283,1283,1282,1307,1304,1283,1307,1291,1306,1305,1306,1298,1307,1307,1282,1305,1306,1307,1305,844,1237,1219,1237,1239,1308,1308,1220,1219,1237,1308,1219,1239,1246,1309,1246,1245,1310,1310,1311,1309,1246,1310,1309,1311,1312,1313,1312,1223,1221,1221,1220,1313,1312,1221,1313,1239,1309,1308,1309,1311,1313,1313,1220,1308,1309,1313,1308,1245,1267,1314,1267,1266,1315,1315,1316,1314,1267,1315,1314,1266,1265,1317,1265,1264,1274,1274,1277,1317,1265,1274,1317,1277,1286,1318,1286,1285,1319,1319,1316,1318,1286,1319,1318,1266,1317,1315,1317,1277,1318,1318,1316,1315,1317,1318,1315,1285,1302,1320,1302,1301,1321,1321,1322,1320,1302,1321,1320,1301,1300,1323,1300,1136,1230,1230,1227,1323,1300,1230,1323,1227,1225,1324,1225,1223,1325,1325,1322,1324,1225,1325,1324,1301,1323,1321,1323,1227,1324,1324,1322,1321,1323,1324,1321,1245,1314,1310,1314,1316,1326,1326,1311,1310,1314,1326,1310,1316,1319,1327,1319,1285,1320,1320,1322,1327,1319,1320,1327,1322,1325,1328,1325,1223,1312,1312,1311,1328,1325,1312,1328,1316,1327,1326,1327,1322,1328,1328,1311,1326,1327,1328,1326,1166,1292,1329,1292,1289,1330,1330,1331,1329,1292,1330,1329,1289,1287,1332,1287,1280,1333,1333,1334,1332,1287,1333,1332,1334,1335,1336,1335,1337,1338,1338,1331,1336,1335,1338,1336,1289,1332,1330,1332,1334,1336,1336,1331,1330,1332,1336,1330,1280,1278,1339,1278,1275,1340,1340,1341,1339,1278,1340,1339,1275,1273,1342,1273,1264,1343,1343,1344,1342,1273,1343,1342,1344,1345,1346,1345,1347,1348,1348,1341,1346,1345,1348,1346,1275,1342,1340,1342,1344,1346,1346,1341,1340,1342,1346,1340,1347,1349,1350,1349,1351,1352,1352,1353,1350,1349,1352,1350,1351,1354,1355,1354,1356,1357,1357,1358,1355,1354,1357,1355,1358,1359,1360,1359,1337,1361,1361,1353,1360,1359,1361,1360,1351,1355,1352,1355,1358,1360,1360,1353,1352,1355,1360,1352,1280,1339,1333,1339,1341,1362,1362,1334,1333,1339,1362,1333,1341,1348,1363,1348,1347,1350,1350,1353,1363,1348,1350,1363,1353,1361,1364,1361,1337,1335,1335,1334,1364,1361,1335,1364,1341,1363,1362,1363,1353,1364,1364,1334,1362,1363,1364,1362,1264,1262,1365,1262,1259,1366,1366,1367,1365,1262,1366,1365,1259,1257,1368,1257,1255,1369,1369,1370,1368,1257,1369,1368,1370,1371,1372,1371,1373,1374,1374,1367,1372,1371,1374,1372,1259,1368,1366,1368,1370,1372,1372,1367,1366,1368,1372,1366,1255,1253,1375,1253,1252,1376,1376,1377,1375,1253,1376,1375,1252,1251,1378,1251,910,1379,1379,1380,1378,1251,1379,1378,1380,1381,1382,1381,1383,1384,1384,1377,1382,1381,1384,1382,1252,1378,1376,1378,1380,1382,1382,1377,1376,1378,1382,1376,1383,1385,1386,1385,1387,1388,1388,1389,1386,1385,1388,1386,1387,1390,1391,1390,1392,1393,1393,1394,1391,1390,1393,1391,1394,1395,1396,1395,1373,1397,1397,1389,1396,1395,1397,1396,1387,1391,1388,1391,1394,1396,1396,1389,1388,1391,1396,1388,1255,1375,1369,1375,1377,1398,1398,1370,1369,1375,1398,1369,1377,1384,1399,1384,1383,1386,1386,1389,1399,1384,1386,1399,1389,1397,1400,1397,1373,1371,1371,1370,1400,1397,1371,1400,1377,1399,1398,1399,1389,1400,1400,1370,1398,1399,1400,1398,1392,1401,1402,1401,1403,1404,1404,1405,1402,1401,1404,1402,1403,1406,1407,1406,1408,1409,1409,1410,1407,1406,1409,1407,1410,1411,1412,1411,1413,1414,1414,1405,1412,1411,1414,1412,1403,1407,1404,1407,1410,1412,1412,1405,1404,1407,1412,1404,1408,1415,1416,1415,1417,1418,1418,1419,1416,1415,1418,1416,1417,1420,1421,1420,1422,1423,1423,1424,1421,1420,1423,1421,1424,1425,1426,1425,1427,1428,1428,1419,1426,1425,1428,1426,1417,1421,1418,1421,1424,1426,1426,1419,1418,1421,1426,1418,1427,1429,1430,1429,1431,1432,1432,1433,1430,1429,1432,1430,1431,1434,1435,1434,1356,1436,1436,1437,1435,1434,1436,1435,1437,1438,1439,1438,1413,1440,1440,1433,1439,1438,1440,1439,1431,1435,1432,1435,1437,1439,1439,1433,1432,1435,1439,1432,1408,1416,1409,1416,1419,1441,1441,1410,1409,1416,1441,1409,1419,1428,1442,1428,1427,1430,1430,1433,1442,1428,1430,1442,1433,1440,1443,1440,1413,1411,1411,1410,1443,1440,1411,1443,1419,1442,1441,1442,1433,1443,1443,1410,1441,1442,1443,1441,1264,1365,1343,1365,1367,1444,1444,1344,1343,1365,1444,1343,1367,1374,1445,1374,1373,1446,1446,1447,1445,1374,1446,1445,1447,1448,1449,1448,1347,1345,1345,1344,1449,1448,1345,1449,1367,1445,1444,1445,1447,1449,1449,1344,1444,1445,1449,1444,1373,1395,1450,1395,1394,1451,1451,1452,1450,1395,1451,1450,1394,1393,1453,1393,1392,1402,1402,1405,1453,1393,1402,1453,1405,1414,1454,1414,1413,1455,1455,1452,1454,1414,1455,1454,1394,1453,1451,1453,1405,1454,1454,1452,1451,1453,1454,1451,1413,1438,1456,1438,1437,1457,1457,1458,1456,1438,1457,1456,1437,1436,1459,1436,1356,1354,1354,1351,1459,1436,1354,1459,1351,1349,1460,1349,1347,1461,1461,1458,1460,1349,1461,1460,1437,1459,1457,1459,1351,1460,1460,1458,1457,1459,1460,1457,1373,1450,1446,1450,1452,1462,1462,1447,1446,1450,1462,1446,1452,1455,1463,1455,1413,1456,1456,1458,1463,1455,1456,1463,1458,1461,1464,1461,1347,1448,1448,1447,1464,1461,1448,1464,1452,1463,1462,1463,1458,1464,1464,1447,1462,1463,1464,1462,910,1036,1379,1036,1033,1465,1465,1380,1379,1036,1465,1379,1033,1031,1466,1031,1024,1467,1467,1468,1466,1031,1467,1466,1468,1469,1470,1469,1383,1381,1381,1380,1470,1469,1381,1470,1033,1466,1465,1466,1468,1470,1470,1380,1465,1466,1470,1465,1024,1022,1471,1022,1019,1472,1472,1473,1471,1022,1472,1471,1019,1017,1474,1017,1008,1475,1475,1476,1474,1017,1475,1474,1476,1477,1478,1477,1479,1480,1480,1473,1478,1477,1480,1478,1019,1474,1472,1474,1476,1478,1478,1473,1472,1474,1478,1472,1479,1481,1482,1481,1483,1484,1484,1485,1482,1481,1484,1482,1483,1486,1487,1486,1392,1390,1390,1387,1487,1486,1390,1487,1387,1385,1488,1385,1383,1489,1489,1485,1488,1385,1489,1488,1483,1487,1484,1487,1387,1488,1488,1485,1484,1487,1488,1484,1024,1471,1467,1471,1473,1490,1490,1468,1467,1471,1490,1467,1473,1480,1491,1480,1479,1482,1482,1485,1491,1480,1482,1491,1485,1489,1492,1489,1383,1469,1469,1468,1492,1489,1469,1492,1473,1491,1490,1491,1485,1492,1492,1468,1490,1491,1492,1490,1008,1006,1493,1006,1003,1494,1494,1495,1493,1006,1494,1493,1003,1001,1496,1001,999,1497,1497,1498,1496,1001,1497,1496,1498,1499,1500,1499,1501,1502,1502,1495,1500,1499,1502,1500,1003,1496,1494,1496,1498,1500,1500,1495,1494,1496,1500,1494,999,997,1503,997,996,1504,1504,1505,1503,997,1504,1503,996,995,1506,995,482,1507,1507,1508,1506,995,1507,1506,1508,1509,1510,1509,1511,1512,1512,1505,1510,1509,1512,1510,996,1506,1504,1506,1508,1510,1510,1505,1504,1506,1510,1504,1511,1513,1514,1513,1515,1516,1516,1517,1514,1513,1516,1514,1515,1518,1519,1518,1520,1521,1521,1522,1519,1518,1521,1519,1522,1523,1524,1523,1501,1525,1525,1517,1524,1523,1525,1524,1515,1519,1516,1519,1522,1524,1524,1517,1516,1519,1524,1516,999,1503,1497,1503,1505,1526,1526,1498,1497,1503,1526,1497,1505,1512,1527,1512,1511,1514,1514,1517,1527,1512,1514,1527,1517,1525,1528,1525,1501,1499,1499,1498,1528,1525,1499,1528,1505,1527,1526,1527,1517,1528,1528,1498,1526,1527,1528,1526,1520,1529,1530,1529,1531,1532,1532,1533,1530,1529,1532,1530,1531,1534,1535,1534,1536,1537,1537,1538,1535,1534,1537,1535,1538,1539,1540,1539,1541,1542,1542,1533,1540,1539,1542,1540,1531,1535,1532,1535,1538,1540,1540,1533,1532,1535,1540,1532,1536,1543,1544,1543,1545,1546,1546,1547,1544,1543,1546,1544,1545,1548,1549,1548,1422,1420,1420,1417,1549,1548,1420,1549,1417,1415,1550,1415,1408,1551,1551,1547,1550,1415,1551,1550,1545,1549,1546,1549,1417,1550,1550,1547,1546,1549,1550,1546,1408,1406,1552,1406,1403,1553,1553,1554,1552,1406,1553,1552,1403,1401,1555,1401,1392,1556,1556,1557,1555,1401,1556,1555,1557,1558,1559,1558,1541,1560,1560,1554,1559,1558,1560,1559,1403,1555,1553,1555,1557,1559,1559,1554,1553,1555,1559,1553,1536,1544,1537,1544,1547,1561,1561,1538,1537,1544,1561,1537,1547,1551,1562,1551,1408,1552,1552,1554,1562,1551,1552,1562,1554,1560,1563,1560,1541,1539,1539,1538,1563,1560,1539,1563,1547,1562,1561,1562,1554,1563,1563,1538,1561,1562,1563,1561,1008,1493,1475,1493,1495,1564,1564,1476,1475,1493,1564,1475,1495,1502,1565,1502,1501,1566,1566,1567,1565,1502,1566,1565,1567,1568,1569,1568,1479,1477,1477,1476,1569,1568,1477,1569,1495,1565,1564,1565,1567,1569,1569,1476,1564,1565,1569,1564,1501,1523,1570,1523,1522,1571,1571,1572,1570,1523,1571,1570,1522,1521,1573,1521,1520,1530,1530,1533,1573,1521,1530,1573,1533,1542,1574,1542,1541,1575,1575,1572,1574,1542,1575,1574,1522,1573,1571,1573,1533,1574,1574,1572,1571,1573,1574,1571,1541,1558,1576,1558,1557,1577,1577,1578,1576,1558,1577,1576,1557,1556,1579,1556,1392,1486,1486,1483,1579,1556,1486,1579,1483,1481,1580,1481,1479,1581,1581,1578,1580,1481,1581,1580,1557,1579,1577,1579,1483,1580,1580,1578,1577,1579,1580,1577,1501,1570,1566,1570,1572,1582,1582,1567,1566,1570,1582,1566,1572,1575,1583,1575,1541,1576,1576,1578,1583,1575,1576,1583,1578,1581,1584,1581,1479,1568,1568,1567,1584,1581,1568,1584,1572,1583,1582,1583,1578,1584,1584,1567,1582,1583,1584,1582,0,1073,1585,1073,1075,1586,1586,1587,1585,1073,1586,1585,1075,1082,1588,1082,1081,1589,1589,1590,1588,1082,1589,1588,1590,1591,1592,1591,1593,1594,1594,1587,1592,1591,1594,1592,1075,1588,1586,1588,1590,1592,1592,1587,1586,1588,1592,1586,1081,1103,1595,1103,1102,1596,1596,1597,1595,1103,1596,1595,1102,1101,1598,1101,1100,1599,1599,1600,1598,1101,1599,1598,1600,1601,1602,1601,1603,1604,1604,1597,1602,1601,1604,1602,1102,1598,1596,1598,1600,1602,1602,1597,1596,1598,1602,1596,1603,1605,1606,1605,1607,1608,1608,1609,1606,1605,1608,1606,1607,1610,1611,1610,1612,1613,1613,1614,1611,1610,1613,1611,1614,1615,1616,1615,1593,1617,1617,1609,1616,1615,1617,1616,1607,1611,1608,1611,1614,1616,1616,1609,1608,1611,1616,1608,1081,1595,1589,1595,1597,1618,1618,1590,1589,1595,1618,1589,1597,1604,1619,1604,1603,1606,1606,1609,1619,1604,1606,1619,1609,1617,1620,1617,1593,1591,1591,1590,1620,1617,1591,1620,1597,1619,1618,1619,1609,1620,1620,1590,1618,1619,1620,1618,1100,1178,1621,1178,1175,1622,1622,1623,1621,1178,1622,1621,1175,1173,1624,1173,1171,1625,1625,1626,1624,1173,1625,1624,1626,1627,1628,1627,1629,1630,1630,1623,1628,1627,1630,1628,1175,1624,1622,1624,1626,1628,1628,1623,1622,1624,1628,1622,1171,1169,1631,1169,1168,1632,1632,1633,1631,1169,1632,1631,1168,1167,1634,1167,1166,1635,1635,1636,1634,1167,1635,1634,1636,1637,1638,1637,1639,1640,1640,1633,1638,1637,1640,1638,1168,1634,1632,1634,1636,1638,1638,1633,1632,1634,1638,1632,1639,1641,1642,1641,1643,1644,1644,1645,1642,1641,1644,1642,1643,1646,1647,1646,1648,1649,1649,1650,1647,1646,1649,1647,1650,1651,1652,1651,1629,1653,1653,1645,1652,1651,1653,1652,1643,1647,1644,1647,1650,1652,1652,1645,1644,1647,1652,1644,1171,1631,1625,1631,1633,1654,1654,1626,1625,1631,1654,1625,1633,1640,1655,1640,1639,1642,1642,1645,1655,1640,1642,1655,1645,1653,1656,1653,1629,1627,1627,1626,1656,1653,1627,1656,1633,1655,1654,1655,1645,1656,1656,1626,1654,1655,1656,1654,1648,1657,1658,1657,1659,1660,1660,1661,1658,1657,1660,1658,1659,1662,1663,1662,1664,1665,1665,1666,1663,1662,1665,1663,1666,1667,1668,1667,1669,1670,1670,1661,1668,1667,1670,1668,1659,1663,1660,1663,1666,1668,1668,1661,1660,1663,1668,1660,1664,1671,1672,1671,1673,1674,1674,1675,1672,1671,1674,1672,1673,1676,1677,1676,1678,1679,1679,1680,1677,1676,1679,1677,1680,1681,1682,1681,1683,1684,1684,1675,1682,1681,1684,1682,1673,1677,1674,1677,1680,1682,1682,1675,1674,1677,1682,1674,1683,1685,1686,1685,1687,1688,1688,1689,1686,1685,1688,1686,1687,1690,1691,1690,1612,1692,1692,1693,1691,1690,1692,1691,1693,1694,1695,1694,1669,1696,1696,1689,1695,1694,1696,1695,1687,1691,1688,1691,1693,1695,1695,1689,1688,1691,1695,1688,1664,1672,1665,1672,1675,1697,1697,1666,1665,1672,1697,1665,1675,1684,1698,1684,1683,1686,1686,1689,1698,1684,1686,1698,1689,1696,1699,1696,1669,1667,1667,1666,1699,1696,1667,1699,1675,1698,1697,1698,1689,1699,1699,1666,1697,1698,1699,1697,1100,1621,1599,1621,1623,1700,1700,1600,1599,1621,1700,1599,1623,1630,1701,1630,1629,1702,1702,1703,1701,1630,1702,1701,1703,1704,1705,1704,1603,1601,1601,1600,1705,1704,1601,1705,1623,1701,1700,1701,1703,1705,1705,1600,1700,1701,1705,1700,1629,1651,1706,1651,1650,1707,1707,1708,1706,1651,1707,1706,1650,1649,1709,1649,1648,1658,1658,1661,1709,1649,1658,1709,1661,1670,1710,1670,1669,1711,1711,1708,1710,1670,1711,1710,1650,1709,1707,1709,1661,1710,1710,1708,1707,1709,1710,1707,1669,1694,1712,1694,1693,1713,1713,1714,1712,1694,1713,1712,1693,1692,1715,1692,1612,1610,1610,1607,1715,1692,1610,1715,1607,1605,1716,1605,1603,1717,1717,1714,1716,1605,1717,1716,1693,1715,1713,1715,1607,1716,1716,1714,1713,1715,1716,1713,1629,1706,1702,1706,1708,1718,1718,1703,1702,1706,1718,1702,1708,1711,1719,1711,1669,1712,1712,1714,1719,1711,1712,1719,1714,1717,1720,1717,1603,1704,1704,1703,1720,1717,1704,1720,1708,1719,1718,1719,1714,1720,1720,1703,1718,1719,1720,1718,1166,1329,1635,1329,1331,1721,1721,1636,1635,1329,1721,1635,1331,1338,1722,1338,1337,1723,1723,1724,1722,1338,1723,1722,1724,1725,1726,1725,1639,1637,1637,1636,1726,1725,1637,1726,1331,1722,1721,1722,1724,1726,1726,1636,1721,1722,1726,1721,1337,1359,1727,1359,1358,1728,1728,1729,1727,1359,1728,1727,1358,1357,1730,1357,1356,1731,1731,1732,1730,1357,1731,1730,1732,1733,1734,1733,1735,1736,1736,1729,1734,1733,1736,1734,1358,1730,1728,1730,1732,1734,1734,1729,1728,1730,1734,1728,1735,1737,1738,1737,1739,1740,1740,1741,1738,1737,1740,1738,1739,1742,1743,1742,1648,1646,1646,1643,1743,1742,1646,1743,1643,1641,1744,1641,1639,1745,1745,1741,1744,1641,1745,1744,1739,1743,1740,1743,1643,1744,1744,1741,1740,1743,1744,1740,1337,1727,1723,1727,1729,1746,1746,1724,1723,1727,1746,1723,1729,1736,1747,1736,1735,1738,1738,1741,1747,1736,1738,1747,1741,1745,1748,1745,1639,1725,1725,1724,1748,1745,1725,1748,1729,1747,1746,1747,1741,1748,1748,1724,1746,1747,1748,1746,1356,1434,1749,1434,1431,1750,1750,1751,1749,1434,1750,1749,1431,1429,1752,1429,1427,1753,1753,1754,1752,1429,1753,1752,1754,1755,1756,1755,1757,1758,1758,1751,1756,1755,1758,1756,1431,1752,1750,1752,1754,1756,1756,1751,1750,1752,1756,1750,1427,1425,1759,1425,1424,1760,1760,1761,1759,1425,1760,1759,1424,1423,1762,1423,1422,1763,1763,1764,1762,1423,1763,1762,1764,1765,1766,1765,1767,1768,1768,1761,1766,1765,1768,1766,1424,1762,1760,1762,1764,1766,1766,1761,1760,1762,1766,1760,1767,1769,1770,1769,1771,1772,1772,1773,1770,1769,1772,1770,1771,1774,1775,1774,1776,1777,1777,1778,1775,1774,1777,1775,1778,1779,1780,1779,1757,1781,1781,1773,1780,1779,1781,1780,1771,1775,1772,1775,1778,1780,1780,1773,1772,1775,1780,1772,1427,1759,1753,1759,1761,1782,1782,1754,1753,1759,1782,1753,1761,1768,1783,1768,1767,1770,1770,1773,1783,1768,1770,1783,1773,1781,1784,1781,1757,1755,1755,1754,1784,1781,1755,1784,1761,1783,1782,1783,1773,1784,1784,1754,1782,1783,1784,1782,1776,1785,1786,1785,1787,1788,1788,1789,1786,1785,1788,1786,1787,1790,1791,1790,1792,1793,1793,1794,1791,1790,1793,1791,1794,1795,1796,1795,1797,1798,1798,1789,1796,1795,1798,1796,1787,1791,1788,1791,1794,1796,1796,1789,1788,1791,1796,1788,1792,1799,1800,1799,1801,1802,1802,1803,1800,1799,1802,1800,1801,1804,1805,1804,1678,1676,1676,1673,1805,1804,1676,1805,1673,1671,1806,1671,1664,1807,1807,1803,1806,1671,1807,1806,1801,1805,1802,1805,1673,1806,1806,1803,1802,1805,1806,1802,1664,1662,1808,1662,1659,1809,1809,1810,1808,1662,1809,1808,1659,1657,1811,1657,1648,1812,1812,1813,1811,1657,1812,1811,1813,1814,1815,1814,1797,1816,1816,1810,1815,1814,1816,1815,1659,1811,1809,1811,1813,1815,1815,1810,1809,1811,1815,1809,1792,1800,1793,1800,1803,1817,1817,1794,1793,1800,1817,1793,1803,1807,1818,1807,1664,1808,1808,1810,1818,1807,1808,1818,1810,1816,1819,1816,1797,1795,1795,1794,1819,1816,1795,1819,1803,1818,1817,1818,1810,1819,1819,1794,1817,1818,1819,1817,1356,1749,1731,1749,1751,1820,1820,1732,1731,1749,1820,1731,1751,1758,1821,1758,1757,1822,1822,1823,1821,1758,1822,1821,1823,1824,1825,1824,1735,1733,1733,1732,1825,1824,1733,1825,1751,1821,1820,1821,1823,1825,1825,1732,1820,1821,1825,1820,1757,1779,1826,1779,1778,1827,1827,1828,1826,1779,1827,1826,1778,1777,1829,1777,1776,1786,1786,1789,1829,1777,1786,1829,1789,1798,1830,1798,1797,1831,1831,1828,1830,1798,1831,1830,1778,1829,1827,1829,1789,1830,1830,1828,1827,1829,1830,1827,1797,1814,1832,1814,1813,1833,1833,1834,1832,1814,1833,1832,1813,1812,1835,1812,1648,1742,1742,1739,1835,1812,1742,1835,1739,1737,1836,1737,1735,1837,1837,1834,1836,1737,1837,1836,1813,1835,1833,1835,1739,1836,1836,1834,1833,1835,1836,1833,1757,1826,1822,1826,1828,1838,1838,1823,1822,1826,1838,1822,1828,1831,1839,1831,1797,1832,1832,1834,1839,1831,1832,1839,1834,1837,1840,1837,1735,1824,1824,1823,1840,1837,1824,1840,1828,1839,1838,1839,1834,1840,1840,1823,1838,1839,1840,1838,1678,1804,1841,1804,1801,1842,1842,1843,1841,1804,1842,1841,1801,1799,1844,1799,1792,1845,1845,1846,1844,1799,1845,1844,1846,1847,1848,1847,1849,1850,1850,1843,1848,1847,1850,1848,1801,1844,1842,1844,1846,1848,1848,1843,1842,1844,1848,1842,1792,1790,1851,1790,1787,1852,1852,1853,1851,1790,1852,1851,1787,1785,1854,1785,1776,1855,1855,1856,1854,1785,1855,1854,1856,1857,1858,1857,1859,1860,1860,1853,1858,1857,1860,1858,1787,1854,1852,1854,1856,1858,1858,1853,1852,1854,1858,1852,1859,1861,1862,1861,1863,1864,1864,1865,1862,1861,1864,1862,1863,1866,1867,1866,1868,1869,1869,1870,1867,1866,1869,1867,1870,1871,1872,1871,1849,1873,1873,1865,1872,1871,1873,1872,1863,1867,1864,1867,1870,1872,1872,1865,1864,1867,1872,1864,1792,1851,1845,1851,1853,1874,1874,1846,1845,1851,1874,1845,1853,1860,1875,1860,1859,1862,1862,1865,1875,1860,1862,1875,1865,1873,1876,1873,1849,1847,1847,1846,1876,1873,1847,1876,1853,1875,1874,1875,1865,1876,1876,1846,1874,1875,1876,1874,1776,1774,1877,1774,1771,1878,1878,1879,1877,1774,1878,1877,1771,1769,1880,1769,1767,1881,1881,1882,1880,1769,1881,1880,1882,1883,1884,1883,1885,1886,1886,1879,1884,1883,1886,1884,1771,1880,1878,1880,1882,1884,1884,1879,1878,1880,1884,1878,1767,1765,1887,1765,1764,1888,1888,1889,1887,1765,1888,1887,1764,1763,1890,1763,1422,1891,1891,1892,1890,1763,1891,1890,1892,1893,1894,1893,1895,1896,1896,1889,1894,1893,1896,1894,1764,1890,1888,1890,1892,1894,1894,1889,1888,1890,1894,1888,1895,1897,1898,1897,1899,1900,1900,1901,1898,1897,1900,1898,1899,1902,1903,1902,1904,1905,1905,1906,1903,1902,1905,1903,1906,1907,1908,1907,1885,1909,1909,1901,1908,1907,1909,1908,1899,1903,1900,1903,1906,1908,1908,1901,1900,1903,1908,1900,1767,1887,1881,1887,1889,1910,1910,1882,1881,1887,1910,1881,1889,1896,1911,1896,1895,1898,1898,1901,1911,1896,1898,1911,1901,1909,1912,1909,1885,1883,1883,1882,1912,1909,1883,1912,1889,1911,1910,1911,1901,1912,1912,1882,1910,1911,1912,1910,1904,1913,1914,1913,1915,1916,1916,1917,1914,1913,1916,1914,1915,1918,1919,1918,1920,1921,1921,1922,1919,1918,1921,1919,1922,1923,1924,1923,1925,1926,1926,1917,1924,1923,1926,1924,1915,1919,1916,1919,1922,1924,1924,1917,1916,1919,1924,1916,1920,1927,1928,1927,1929,1930,1930,1931,1928,1927,1930,1928,1929,1932,1933,1932,1934,1935,1935,1936,1933,1932,1935,1933,1936,1937,1938,1937,1939,1940,1940,1931,1938,1937,1940,1938,1929,1933,1930,1933,1936,1938,1938,1931,1930,1933,1938,1930,1939,1941,1942,1941,1943,1944,1944,1945,1942,1941,1944,1942,1943,1946,1947,1946,1868,1948,1948,1949,1947,1946,1948,1947,1949,1950,1951,1950,1925,1952,1952,1945,1951,1950,1952,1951,1943,1947,1944,1947,1949,1951,1951,1945,1944,1947,1951,1944,1920,1928,1921,1928,1931,1953,1953,1922,1921,1928,1953,1921,1931,1940,1954,1940,1939,1942,1942,1945,1954,1940,1942,1954,1945,1952,1955,1952,1925,1923,1923,1922,1955,1952,1923,1955,1931,1954,1953,1954,1945,1955,1955,1922,1953,1954,1955,1953,1776,1877,1855,1877,1879,1956,1956,1856,1855,1877,1956,1855,1879,1886,1957,1886,1885,1958,1958,1959,1957,1886,1958,1957,1959,1960,1961,1960,1859,1857,1857,1856,1961,1960,1857,1961,1879,1957,1956,1957,1959,1961,1961,1856,1956,1957,1961,1956,1885,1907,1962,1907,1906,1963,1963,1964,1962,1907,1963,1962,1906,1905,1965,1905,1904,1914,1914,1917,1965,1905,1914,1965,1917,1926,1966,1926,1925,1967,1967,1964,1966,1926,1967,1966,1906,1965,1963,1965,1917,1966,1966,1964,1963,1965,1966,1963,1925,1950,1968,1950,1949,1969,1969,1970,1968,1950,1969,1968,1949,1948,1971,1948,1868,1866,1866,1863,1971,1948,1866,1971,1863,1861,1972,1861,1859,1973,1973,1970,1972,1861,1973,1972,1949,1971,1969,1971,1863,1972,1972,1970,1969,1971,1972,1969,1885,1962,1958,1962,1964,1974,1974,1959,1958,1962,1974,1958,1964,1967,1975,1967,1925,1968,1968,1970,1975,1967,1968,1975,1970,1973,1976,1973,1859,1960,1960,1959,1976,1973,1960,1976,1964,1975,1974,1975,1970,1976,1976,1959,1974,1975,1976,1974,1422,1548,1891,1548,1545,1977,1977,1892,1891,1548,1977,1891,1545,1543,1978,1543,1536,1979,1979,1980,1978,1543,1979,1978,1980,1981,1982,1981,1895,1893,1893,1892,1982,1981,1893,1982,1545,1978,1977,1978,1980,1982,1982,1892,1977,1978,1982,1977,1536,1534,1983,1534,1531,1984,1984,1985,1983,1534,1984,1983,1531,1529,1986,1529,1520,1987,1987,1988,1986,1529,1987,1986,1988,1989,1990,1989,1991,1992,1992,1985,1990,1989,1992,1990,1531,1986,1984,1986,1988,1990,1990,1985,1984,1986,1990,1984,1991,1993,1994,1993,1995,1996,1996,1997,1994,1993,1996,1994,1995,1998,1999,1998,1904,1902,1902,1899,1999,1998,1902,1999,1899,1897,2000,1897,1895,2001,2001,1997,2000,1897,2001,2000,1995,1999,1996,1999,1899,2000,2000,1997,1996,1999,2000,1996,1536,1983,1979,1983,1985,2002,2002,1980,1979,1983,2002,1979,1985,1992,2003,1992,1991,1994,1994,1997,2003,1992,1994,2003,1997,2001,2004,2001,1895,1981,1981,1980,2004,2001,1981,2004,1985,2003,2002,2003,1997,2004,2004,1980,2002,2003,2004,2002,1520,1518,2005,1518,1515,2006,2006,2007,2005,1518,2006,2005,1515,1513,2008,1513,1511,2009,2009,2010,2008,1513,2009,2008,2010,2011,2012,2011,2013,2014,2014,2007,2012,2011,2014,2012,1515,2008,2006,2008,2010,2012,2012,2007,2006,2008,2012,2006,1511,1509,2015,1509,1508,2016,2016,2017,2015,1509,2016,2015,1508,1507,2018,1507,482,2019,2019,2020,2018,1507,2019,2018,2020,2021,2022,2021,2023,2024,2024,2017,2022,2021,2024,2022,1508,2018,2016,2018,2020,2022,2022,2017,2016,2018,2022,2016,2023,2025,2026,2025,2027,2028,2028,2029,2026,2025,2028,2026,2027,2030,2031,2030,2032,2033,2033,2034,2031,2030,2033,2031,2034,2035,2036,2035,2013,2037,2037,2029,2036,2035,2037,2036,2027,2031,2028,2031,2034,2036,2036,2029,2028,2031,2036,2028,1511,2015,2009,2015,2017,2038,2038,2010,2009,2015,2038,2009,2017,2024,2039,2024,2023,2026,2026,2029,2039,2024,2026,2039,2029,2037,2040,2037,2013,2011,2011,2010,2040,2037,2011,2040,2017,2039,2038,2039,2029,2040,2040,2010,2038,2039,2040,2038,2032,2041,2042,2041,2043,2044,2044,2045,2042,2041,2044,2042,2043,2046,2047,2046,2048,2049,2049,2050,2047,2046,2049,2047,2050,2051,2052,2051,2053,2054,2054,2045,2052,2051,2054,2052,2043,2047,2044,2047,2050,2052,2052,2045,2044,2047,2052,2044,2048,2055,2056,2055,2057,2058,2058,2059,2056,2055,2058,2056,2057,2060,2061,2060,1934,1932,1932,1929,2061,2060,1932,2061,1929,1927,2062,1927,1920,2063,2063,2059,2062,1927,2063,2062,2057,2061,2058,2061,1929,2062,2062,2059,2058,2061,2062,2058,1920,1918,2064,1918,1915,2065,2065,2066,2064,1918,2065,2064,1915,1913,2067,1913,1904,2068,2068,2069,2067,1913,2068,2067,2069,2070,2071,2070,2053,2072,2072,2066,2071,2070,2072,2071,1915,2067,2065,2067,2069,2071,2071,2066,2065,2067,2071,2065,2048,2056,2049,2056,2059,2073,2073,2050,2049,2056,2073,2049,2059,2063,2074,2063,1920,2064,2064,2066,2074,2063,2064,2074,2066,2072,2075,2072,2053,2051,2051,2050,2075,2072,2051,2075,2059,2074,2073,2074,2066,2075,2075,2050,2073,2074,2075,2073,1520,2005,1987,2005,2007,2076,2076,1988,1987,2005,2076,1987,2007,2014,2077,2014,2013,2078,2078,2079,2077,2014,2078,2077,2079,2080,2081,2080,1991,1989,1989,1988,2081,2080,1989,2081,2007,2077,2076,2077,2079,2081,2081,1988,2076,2077,2081,2076,2013,2035,2082,2035,2034,2083,2083,2084,2082,2035,2083,2082,2034,2033,2085,2033,2032,2042,2042,2045,2085,2033,2042,2085,2045,2054,2086,2054,2053,2087,2087,2084,2086,2054,2087,2086,2034,2085,2083,2085,2045,2086,2086,2084,2083,2085,2086,2083,2053,2070,2088,2070,2069,2089,2089,2090,2088,2070,2089,2088,2069,2068,2091,2068,1904,1998,1998,1995,2091,2068,1998,2091,1995,1993,2092,1993,1991,2093,2093,2090,2092,1993,2093,2092,2069,2091,2089,2091,1995,2092,2092,2090,2089,2091,2092,2089,2013,2082,2078,2082,2084,2094,2094,2079,2078,2082,2094,2078,2084,2087,2095,2087,2053,2088,2088,2090,2095,2087,2088,2095,2090,2093,2096,2093,1991,2080,2080,2079,2096,2093,2080,2096,2084,2095,2094,2095,2090,2096,2096,2079,2094,2095,2096,2094,0,1585,2097,1585,1587,2098,2098,2099,2097,1585,2098,2097,1587,1594,2100,1594,1593,2101,2101,2102,2100,1594,2101,2100,2102,2103,2104,2103,2105,2106,2106,2099,2104,2103,2106,2104,1587,2100,2098,2100,2102,2104,2104,2099,2098,2100,2104,2098,1593,1615,2107,1615,1614,2108,2108,2109,2107,1615,2108,2107,1614,1613,2110,1613,1612,2111,2111,2112,2110,1613,2111,2110,2112,2113,2114,2113,2115,2116,2116,2109,2114,2113,2116,2114,1614,2110,2108,2110,2112,2114,2114,2109,2108,2110,2114,2108,2115,2117,2118,2117,2119,2120,2120,2121,2118,2117,2120,2118,2119,2122,2123,2122,2124,2125,2125,2126,2123,2122,2125,2123,2126,2127,2128,2127,2105,2129,2129,2121,2128,2127,2129,2128,2119,2123,2120,2123,2126,2128,2128,2121,2120,2123,2128,2120,1593,2107,2101,2107,2109,2130,2130,2102,2101,2107,2130,2101,2109,2116,2131,2116,2115,2118,2118,2121,2131,2116,2118,2131,2121,2129,2132,2129,2105,2103,2103,2102,2132,2129,2103,2132,2109,2131,2130,2131,2121,2132,2132,2102,2130,2131,2132,2130,1612,1690,2133,1690,1687,2134,2134,2135,2133,1690,2134,2133,1687,1685,2136,1685,1683,2137,2137,2138,2136,1685,2137,2136,2138,2139,2140,2139,2141,2142,2142,2135,2140,2139,2142,2140,1687,2136,2134,2136,2138,2140,2140,2135,2134,2136,2140,2134,1683,1681,2143,1681,1680,2144,2144,2145,2143,1681,2144,2143,1680,1679,2146,1679,1678,2147,2147,2148,2146,1679,2147,2146,2148,2149,2150,2149,2151,2152,2152,2145,2150,2149,2152,2150,1680,2146,2144,2146,2148,2150,2150,2145,2144,2146,2150,2144,2151,2153,2154,2153,2155,2156,2156,2157,2154,2153,2156,2154,2155,2158,2159,2158,2160,2161,2161,2162,2159,2158,2161,2159,2162,2163,2164,2163,2141,2165,2165,2157,2164,2163,2165,2164,2155,2159,2156,2159,2162,2164,2164,2157,2156,2159,2164,2156,1683,2143,2137,2143,2145,2166,2166,2138,2137,2143,2166,2137,2145,2152,2167,2152,2151,2154,2154,2157,2167,2152,2154,2167,2157,2165,2168,2165,2141,2139,2139,2138,2168,2165,2139,2168,2145,2167,2166,2167,2157,2168,2168,2138,2166,2167,2168,2166,2160,2169,2170,2169,2171,2172,2172,2173,2170,2169,2172,2170,2171,2174,2175,2174,2176,2177,2177,2178,2175,2174,2177,2175,2178,2179,2180,2179,2181,2182,2182,2173,2180,2179,2182,2180,2171,2175,2172,2175,2178,2180,2180,2173,2172,2175,2180,2172,2176,2183,2184,2183,2185,2186,2186,2187,2184,2183,2186,2184,2185,2188,2189,2188,2190,2191,2191,2192,2189,2188,2191,2189,2192,2193,2194,2193,2195,2196,2196,2187,2194,2193,2196,2194,2185,2189,2186,2189,2192,2194,2194,2187,2186,2189,2194,2186,2195,2197,2198,2197,2199,2200,2200,2201,2198,2197,2200,2198,2199,2202,2203,2202,2124,2204,2204,2205,2203,2202,2204,2203,2205,2206,2207,2206,2181,2208,2208,2201,2207,2206,2208,2207,2199,2203,2200,2203,2205,2207,2207,2201,2200,2203,2207,2200,2176,2184,2177,2184,2187,2209,2209,2178,2177,2184,2209,2177,2187,2196,2210,2196,2195,2198,2198,2201,2210,2196,2198,2210,2201,2208,2211,2208,2181,2179,2179,2178,2211,2208,2179,2211,2187,2210,2209,2210,2201,2211,2211,2178,2209,2210,2211,2209,1612,2133,2111,2133,2135,2212,2212,2112,2111,2133,2212,2111,2135,2142,2213,2142,2141,2214,2214,2215,2213,2142,2214,2213,2215,2216,2217,2216,2115,2113,2113,2112,2217,2216,2113,2217,2135,2213,2212,2213,2215,2217,2217,2112,2212,2213,2217,2212,2141,2163,2218,2163,2162,2219,2219,2220,2218,2163,2219,2218,2162,2161,2221,2161,2160,2170,2170,2173,2221,2161,2170,2221,2173,2182,2222,2182,2181,2223,2223,2220,2222,2182,2223,2222,2162,2221,2219,2221,2173,2222,2222,2220,2219,2221,2222,2219,2181,2206,2224,2206,2205,2225,2225,2226,2224,2206,2225,2224,2205,2204,2227,2204,2124,2122,2122,2119,2227,2204,2122,2227,2119,2117,2228,2117,2115,2229,2229,2226,2228,2117,2229,2228,2205,2227,2225,2227,2119,2228,2228,2226,2225,2227,2228,2225,2141,2218,2214,2218,2220,2230,2230,2215,2214,2218,2230,2214,2220,2223,2231,2223,2181,2224,2224,2226,2231,2223,2224,2231,2226,2229,2232,2229,2115,2216,2216,2215,2232,2229,2216,2232,2220,2231,2230,2231,2226,2232,2232,2215,2230,2231,2232,2230,1678,1841,2147,1841,1843,2233,2233,2148,2147,1841,2233,2147,1843,1850,2234,1850,1849,2235,2235,2236,2234,1850,2235,2234,2236,2237,2238,2237,2151,2149,2149,2148,2238,2237,2149,2238,1843,2234,2233,2234,2236,2238,2238,2148,2233,2234,2238,2233,1849,1871,2239,1871,1870,2240,2240,2241,2239,1871,2240,2239,1870,1869,2242,1869,1868,2243,2243,2244,2242,1869,2243,2242,2244,2245,2246,2245,2247,2248,2248,2241,2246,2245,2248,2246,1870,2242,2240,2242,2244,2246,2246,2241,2240,2242,2246,2240,2247,2249,2250,2249,2251,2252,2252,2253,2250,2249,2252,2250,2251,2254,2255,2254,2160,2158,2158,2155,2255,2254,2158,2255,2155,2153,2256,2153,2151,2257,2257,2253,2256,2153,2257,2256,2251,2255,2252,2255,2155,2256,2256,2253,2252,2255,2256,2252,1849,2239,2235,2239,2241,2258,2258,2236,2235,2239,2258,2235,2241,2248,2259,2248,2247,2250,2250,2253,2259,2248,2250,2259,2253,2257,2260,2257,2151,2237,2237,2236,2260,2257,2237,2260,2241,2259,2258,2259,2253,2260,2260,2236,2258,2259,2260,2258,1868,1946,2261,1946,1943,2262,2262,2263,2261,1946,2262,2261,1943,1941,2264,1941,1939,2265,2265,2266,2264,1941,2265,2264,2266,2267,2268,2267,2269,2270,2270,2263,2268,2267,2270,2268,1943,2264,2262,2264,2266,2268,2268,2263,2262,2264,2268,2262,1939,1937,2271,1937,1936,2272,2272,2273,2271,1937,2272,2271,1936,1935,2274,1935,1934,2275,2275,2276,2274,1935,2275,2274,2276,2277,2278,2277,2279,2280,2280,2273,2278,2277,2280,2278,1936,2274,2272,2274,2276,2278,2278,2273,2272,2274,2278,2272,2279,2281,2282,2281,2283,2284,2284,2285,2282,2281,2284,2282,2283,2286,2287,2286,2288,2289,2289,2290,2287,2286,2289,2287,2290,2291,2292,2291,2269,2293,2293,2285,2292,2291,2293,2292,2283,2287,2284,2287,2290,2292,2292,2285,2284,2287,2292,2284,1939,2271,2265,2271,2273,2294,2294,2266,2265,2271,2294,2265,2273,2280,2295,2280,2279,2282,2282,2285,2295,2280,2282,2295,2285,2293,2296,2293,2269,2267,2267,2266,2296,2293,2267,2296,2273,2295,2294,2295,2285,2296,2296,2266,2294,2295,2296,2294,2288,2297,2298,2297,2299,2300,2300,2301,2298,2297,2300,2298,2299,2302,2303,2302,2304,2305,2305,2306,2303,2302,2305,2303,2306,2307,2308,2307,2309,2310,2310,2301,2308,2307,2310,2308,2299,2303,2300,2303,2306,2308,2308,2301,2300,2303,2308,2300,2304,2311,2312,2311,2313,2314,2314,2315,2312,2311,2314,2312,2313,2316,2317,2316,2190,2188,2188,2185,2317,2316,2188,2317,2185,2183,2318,2183,2176,2319,2319,2315,2318,2183,2319,2318,2313,2317,2314,2317,2185,2318,2318,2315,2314,2317,2318,2314,2176,2174,2320,2174,2171,2321,2321,2322,2320,2174,2321,2320,2171,2169,2323,2169,2160,2324,2324,2325,2323,2169,2324,2323,2325,2326,2327,2326,2309,2328,2328,2322,2327,2326,2328,2327,2171,2323,2321,2323,2325,2327,2327,2322,2321,2323,2327,2321,2304,2312,2305,2312,2315,2329,2329,2306,2305,2312,2329,2305,2315,2319,2330,2319,2176,2320,2320,2322,2330,2319,2320,2330,2322,2328,2331,2328,2309,2307,2307,2306,2331,2328,2307,2331,2315,2330,2329,2330,2322,2331,2331,2306,2329,2330,2331,2329,1868,2261,2243,2261,2263,2332,2332,2244,2243,2261,2332,2243,2263,2270,2333,2270,2269,2334,2334,2335,2333,2270,2334,2333,2335,2336,2337,2336,2247,2245,2245,2244,2337,2336,2245,2337,2263,2333,2332,2333,2335,2337,2337,2244,2332,2333,2337,2332,2269,2291,2338,2291,2290,2339,2339,2340,2338,2291,2339,2338,2290,2289,2341,2289,2288,2298,2298,2301,2341,2289,2298,2341,2301,2310,2342,2310,2309,2343,2343,2340,2342,2310,2343,2342,2290,2341,2339,2341,2301,2342,2342,2340,2339,2341,2342,2339,2309,2326,2344,2326,2325,2345,2345,2346,2344,2326,2345,2344,2325,2324,2347,2324,2160,2254,2254,2251,2347,2324,2254,2347,2251,2249,2348,2249,2247,2349,2349,2346,2348,2249,2349,2348,2325,2347,2345,2347,2251,2348,2348,2346,2345,2347,2348,2345,2269,2338,2334,2338,2340,2350,2350,2335,2334,2338,2350,2334,2340,2343,2351,2343,2309,2344,2344,2346,2351,2343,2344,2351,2346,2349,2352,2349,2247,2336,2336,2335,2352,2349,2336,2352,2340,2351,2350,2351,2346,2352,2352,2335,2350,2351,2352,2350,2190,2316,2353,2316,2313,2354,2354,2355,2353,2316,2354,2353,2313,2311,2356,2311,2304,2357,2357,2358,2356,2311,2357,2356,2358,2359,2360,2359,2361,2362,2362,2355,2360,2359,2362,2360,2313,2356,2354,2356,2358,2360,2360,2355,2354,2356,2360,2354,2304,2302,2363,2302,2299,2364,2364,2365,2363,2302,2364,2363,2299,2297,2366,2297,2288,2367,2367,2368,2366,2297,2367,2366,2368,2369,2370,2369,2371,2372,2372,2365,2370,2369,2372,2370,2299,2366,2364,2366,2368,2370,2370,2365,2364,2366,2370,2364,2371,2373,2374,2373,2375,2376,2376,2377,2374,2373,2376,2374,2375,2378,2379,2378,2380,2381,2381,2382,2379,2378,2381,2379,2382,2383,2384,2383,2361,2385,2385,2377,2384,2383,2385,2384,2375,2379,2376,2379,2382,2384,2384,2377,2376,2379,2384,2376,2304,2363,2357,2363,2365,2386,2386,2358,2357,2363,2386,2357,2365,2372,2387,2372,2371,2374,2374,2377,2387,2372,2374,2387,2377,2385,2388,2385,2361,2359,2359,2358,2388,2385,2359,2388,2365,2387,2386,2387,2377,2388,2388,2358,2386,2387,2388,2386,2288,2286,2389,2286,2283,2390,2390,2391,2389,2286,2390,2389,2283,2281,2392,2281,2279,2393,2393,2394,2392,2281,2393,2392,2394,2395,2396,2395,2397,2398,2398,2391,2396,2395,2398,2396,2283,2392,2390,2392,2394,2396,2396,2391,2390,2392,2396,2390,2279,2277,2399,2277,2276,2400,2400,2401,2399,2277,2400,2399,2276,2275,2402,2275,1934,2403,2403,2404,2402,2275,2403,2402,2404,2405,2406,2405,2407,2408,2408,2401,2406,2405,2408,2406,2276,2402,2400,2402,2404,2406,2406,2401,2400,2402,2406,2400,2407,2409,2410,2409,2411,2412,2412,2413,2410,2409,2412,2410,2411,2414,2415,2414,2416,2417,2417,2418,2415,2414,2417,2415,2418,2419,2420,2419,2397,2421,2421,2413,2420,2419,2421,2420,2411,2415,2412,2415,2418,2420,2420,2413,2412,2415,2420,2412,2279,2399,2393,2399,2401,2422,2422,2394,2393,2399,2422,2393,2401,2408,2423,2408,2407,2410,2410,2413,2423,2408,2410,2423,2413,2421,2424,2421,2397,2395,2395,2394,2424,2421,2395,2424,2401,2423,2422,2423,2413,2424,2424,2394,2422,2423,2424,2422,2416,2425,2426,2425,2427,2428,2428,2429,2426,2425,2428,2426,2427,2430,2431,2430,2432,2433,2433,2434,2431,2430,2433,2431,2434,2435,2436,2435,2437,2438,2438,2429,2436,2435,2438,2436,2427,2431,2428,2431,2434,2436,2436,2429,2428,2431,2436,2428,2432,2439,2440,2439,2441,2442,2442,2443,2440,2439,2442,2440,2441,2444,2445,2444,2446,2447,2447,2448,2445,2444,2447,2445,2448,2449,2450,2449,2451,2452,2452,2443,2450,2449,2452,2450,2441,2445,2442,2445,2448,2450,2450,2443,2442,2445,2450,2442,2451,2453,2454,2453,2455,2456,2456,2457,2454,2453,2456,2454,2455,2458,2459,2458,2380,2460,2460,2461,2459,2458,2460,2459,2461,2462,2463,2462,2437,2464,2464,2457,2463,2462,2464,2463,2455,2459,2456,2459,2461,2463,2463,2457,2456,2459,2463,2456,2432,2440,2433,2440,2443,2465,2465,2434,2433,2440,2465,2433,2443,2452,2466,2452,2451,2454,2454,2457,2466,2452,2454,2466,2457,2464,2467,2464,2437,2435,2435,2434,2467,2464,2435,2467,2443,2466,2465,2466,2457,2467,2467,2434,2465,2466,2467,2465,2288,2389,2367,2389,2391,2468,2468,2368,2367,2389,2468,2367,2391,2398,2469,2398,2397,2470,2470,2471,2469,2398,2470,2469,2471,2472,2473,2472,2371,2369,2369,2368,2473,2472,2369,2473,2391,2469,2468,2469,2471,2473,2473,2368,2468,2469,2473,2468,2397,2419,2474,2419,2418,2475,2475,2476,2474,2419,2475,2474,2418,2417,2477,2417,2416,2426,2426,2429,2477,2417,2426,2477,2429,2438,2478,2438,2437,2479,2479,2476,2478,2438,2479,2478,2418,2477,2475,2477,2429,2478,2478,2476,2475,2477,2478,2475,2437,2462,2480,2462,2461,2481,2481,2482,2480,2462,2481,2480,2461,2460,2483,2460,2380,2378,2378,2375,2483,2460,2378,2483,2375,2373,2484,2373,2371,2485,2485,2482,2484,2373,2485,2484,2461,2483,2481,2483,2375,2484,2484,2482,2481,2483,2484,2481,2397,2474,2470,2474,2476,2486,2486,2471,2470,2474,2486,2470,2476,2479,2487,2479,2437,2480,2480,2482,2487,2479,2480,2487,2482,2485,2488,2485,2371,2472,2472,2471,2488,2485,2472,2488,2476,2487,2486,2487,2482,2488,2488,2471,2486,2487,2488,2486,1934,2060,2403,2060,2057,2489,2489,2404,2403,2060,2489,2403,2057,2055,2490,2055,2048,2491,2491,2492,2490,2055,2491,2490,2492,2493,2494,2493,2407,2405,2405,2404,2494,2493,2405,2494,2057,2490,2489,2490,2492,2494,2494,2404,2489,2490,2494,2489,2048,2046,2495,2046,2043,2496,2496,2497,2495,2046,2496,2495,2043,2041,2498,2041,2032,2499,2499,2500,2498,2041,2499,2498,2500,2501,2502,2501,2503,2504,2504,2497,2502,2501,2504,2502,2043,2498,2496,2498,2500,2502,2502,2497,2496,2498,2502,2496,2503,2505,2506,2505,2507,2508,2508,2509,2506,2505,2508,2506,2507,2510,2511,2510,2416,2414,2414,2411,2511,2510,2414,2511,2411,2409,2512,2409,2407,2513,2513,2509,2512,2409,2513,2512,2507,2511,2508,2511,2411,2512,2512,2509,2508,2511,2512,2508,2048,2495,2491,2495,2497,2514,2514,2492,2491,2495,2514,2491,2497,2504,2515,2504,2503,2506,2506,2509,2515,2504,2506,2515,2509,2513,2516,2513,2407,2493,2493,2492,2516,2513,2493,2516,2497,2515,2514,2515,2509,2516,2516,2492,2514,2515,2516,2514,2032,2030,2517,2030,2027,2518,2518,2519,2517,2030,2518,2517,2027,2025,2520,2025,2023,2521,2521,2522,2520,2025,2521,2520,2522,2523,2524,2523,2525,2526,2526,2519,2524,2523,2526,2524,2027,2520,2518,2520,2522,2524,2524,2519,2518,2520,2524,2518,2023,2021,2527,2021,2020,2528,2528,2529,2527,2021,2528,2527,2020,2019,2530,2019,482,2531,2531,2532,2530,2019,2531,2530,2532,2533,2534,2533,2535,2536,2536,2529,2534,2533,2536,2534,2020,2530,2528,2530,2532,2534,2534,2529,2528,2530,2534,2528,2535,2537,2538,2537,2539,2540,2540,2541,2538,2537,2540,2538,2539,2542,2543,2542,2544,2545,2545,2546,2543,2542,2545,2543,2546,2547,2548,2547,2525,2549,2549,2541,2548,2547,2549,2548,2539,2543,2540,2543,2546,2548,2548,2541,2540,2543,2548,2540,2023,2527,2521,2527,2529,2550,2550,2522,2521,2527,2550,2521,2529,2536,2551,2536,2535,2538,2538,2541,2551,2536,2538,2551,2541,2549,2552,2549,2525,2523,2523,2522,2552,2549,2523,2552,2529,2551,2550,2551,2541,2552,2552,2522,2550,2551,2552,2550,2544,2553,2554,2553,2555,2556,2556,2557,2554,2553,2556,2554,2555,2558,2559,2558,2560,2561,2561,2562,2559,2558,2561,2559,2562,2563,2564,2563,2565,2566,2566,2557,2564,2563,2566,2564,2555,2559,2556,2559,2562,2564,2564,2557,2556,2559,2564,2556,2560,2567,2568,2567,2569,2570,2570,2571,2568,2567,2570,2568,2569,2572,2573,2572,2446,2444,2444,2441,2573,2572,2444,2573,2441,2439,2574,2439,2432,2575,2575,2571,2574,2439,2575,2574,2569,2573,2570,2573,2441,2574,2574,2571,2570,2573,2574,2570,2432,2430,2576,2430,2427,2577,2577,2578,2576,2430,2577,2576,2427,2425,2579,2425,2416,2580,2580,2581,2579,2425,2580,2579,2581,2582,2583,2582,2565,2584,2584,2578,2583,2582,2584,2583,2427,2579,2577,2579,2581,2583,2583,2578,2577,2579,2583,2577,2560,2568,2561,2568,2571,2585,2585,2562,2561,2568,2585,2561,2571,2575,2586,2575,2432,2576,2576,2578,2586,2575,2576,2586,2578,2584,2587,2584,2565,2563,2563,2562,2587,2584,2563,2587,2571,2586,2585,2586,2578,2587,2587,2562,2585,2586,2587,2585,2032,2517,2499,2517,2519,2588,2588,2500,2499,2517,2588,2499,2519,2526,2589,2526,2525,2590,2590,2591,2589,2526,2590,2589,2591,2592,2593,2592,2503,2501,2501,2500,2593,2592,2501,2593,2519,2589,2588,2589,2591,2593,2593,2500,2588,2589,2593,2588,2525,2547,2594,2547,2546,2595,2595,2596,2594,2547,2595,2594,2546,2545,2597,2545,2544,2554,2554,2557,2597,2545,2554,2597,2557,2566,2598,2566,2565,2599,2599,2596,2598,2566,2599,2598,2546,2597,2595,2597,2557,2598,2598,2596,2595,2597,2598,2595,2565,2582,2600,2582,2581,2601,2601,2602,2600,2582,2601,2600,2581,2580,2603,2580,2416,2510,2510,2507,2603,2580,2510,2603,2507,2505,2604,2505,2503,2605,2605,2602,2604,2505,2605,2604,2581,2603,2601,2603,2507,2604,2604,2602,2601,2603,2604,2601,2525,2594,2590,2594,2596,2606,2606,2591,2590,2594,2606,2590,2596,2599,2607,2599,2565,2600,2600,2602,2607,2599,2600,2607,2602,2605,2608,2605,2503,2592,2592,2591,2608,2605,2592,2608,2596,2607,2606,2607,2602,2608,2608,2591,2606,2607,2608,2606]}
diff --git a/webgl-maps-poc/webgl.css b/webgl-maps-poc/webgl.css
new file mode 100644
index 0000000000..5f065b8cdd
--- /dev/null
+++ b/webgl-maps-poc/webgl.css
@@ -0,0 +1,7 @@
+canvas {
+ border: 2px solid black;
+ background-color: black;
+}
+video {
+ display: none;
+}